{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/Hbc0lxqGSRzFG6uMT9yO/OPmIEDVRw3amYB3GBzWp/GoogleMaps.js", "ssg:https://framerusercontent.com/modules/vkHAj2Yk0mTnbM6ZdN5c/Foxm7T4YpJpvPgDlEus0/FormSpark.js", "ssg:https://framerusercontent.com/modules/3cStiHsrnVvf3x40eQKM/VNvMBpRiTufWLeVQG2aq/eQBIlxkH6.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,motion}from\"framer\";import{containerStyles,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{useMemo}from\"react\";const coordinatesRegex=/^((?:\\-?|\\+?)?\\d+(?:\\.\\d+)?),\\s*((?:\\-?|\\+?)?\\d+(?:\\.\\d+)?)$/;/**\n * GOOGLE MAPS\n *\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 400\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export default function GoogleMaps({coordinates,zoom,style,...props}){const borderRadius=useRadius(props);const[latitude1,longitude1]=useMemo(()=>{var ref;const[,latitude,longitude]=(ref=coordinates.match(coordinatesRegex))!==null&&ref!==void 0?ref:[null,\"\",\"\",];return[latitude,longitude];},[coordinates]);return(/*#__PURE__*/ _jsx(motion.div,{style:{...style,...containerStyles,overflow:\"hidden\",borderRadius},...props,children:/*#__PURE__*/ _jsx(\"iframe\",{style:{height:\"100%\",width:\"100%\",border:0},src:`https://maps.google.com/maps?q=${latitude1},${longitude1}&z=${zoom}&output=embed`})}));};addPropertyControls(GoogleMaps,{coordinates:{type:ControlType.String,title:\"Coordinates\",placeholder:\"52.37588, 4.891295\",defaultValue:\"52.37588, 4.891295\",description:\"GPS coordinates can be found directly in [Google Maps](https://maps.google.com).\"},zoom:{type:ControlType.Number,step:1,min:0,max:25,title:\"Zoom\",defaultValue:15},...borderRadiusControl});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"GoogleMaps\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"600\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./GoogleMaps.map", "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", "// Generated by Framer (e1022ef)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,Container,cx,GeneratedComponentContext,getFonts,LazyValue,Link,PropertyOverrides,RichText,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useRouteElementId,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{Icon as Material}from\"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";import GoogleMaps from\"https://framerusercontent.com/modules/Hbc0lxqGSRzFG6uMT9yO/OPmIEDVRw3amYB3GBzWp/GoogleMaps.js\";import FormSpark from\"https://framerusercontent.com/modules/vkHAj2Yk0mTnbM6ZdN5c/Foxm7T4YpJpvPgDlEus0/FormSpark.js\";import Navigation from\"#framer/local/canvasComponent/iE5ooTEvg/iE5ooTEvg.js\";import Footer from\"#framer/local/canvasComponent/zC49miqVx/zC49miqVx.js\";import metadataProvider from\"#framer/local/webPageMetadata/eQBIlxkH6/eQBIlxkH6.js\";const NavigationFonts=getFonts(Navigation);const FormSparkFonts=getFonts(FormSpark);const MaterialFonts=getFonts(Material);const GoogleMapsFonts=getFonts(GoogleMaps);const FooterFonts=getFonts(Footer);const cycleOrder=[\"qLObhi6ZC\",\"wkE7yHu0H\",\"L3qnnSc3e\"];const breakpoints={L3qnnSc3e:\"(max-width: 809px)\",qLObhi6ZC:\"(min-width: 1200px)\",wkE7yHu0H:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-JqZeC\";const variantClassNames={L3qnnSc3e:\"framer-v-1329dkj\",qLObhi6ZC:\"framer-v-702ap5\",wkE7yHu0H:\"framer-v-1izdnfq\"};const transitions={default:{duration:0}};const valuesByLocaleId={CRGLIlUaL:new LazyValue(()=>import(\"./eQBIlxkH6-0.js\"))};const preloadLocalizedValues=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);}};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values.read()[key];if(value){return value;}}locale=locale.fallback;}};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"qLObhi6ZC\",Phone:\"L3qnnSc3e\",Tablet:\"wkE7yHu0H\"};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:\"qLObhi6ZC\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useLayoutEffect(()=>{const metadata1=metadataProvider(undefined,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);}if(metadata1.bodyClassName){Array.from(document.body.classList).filter(c=>c.startsWith(\"framer-body-\")).map(c=>document.body.classList.remove(c));document.body.classList.add(`${metadata1.bodyClassName}-framer-JqZeC`);return()=>{document.body.classList.remove(`${metadata1.bodyClassName}-framer-JqZeC`);};}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const transition=transitions.default;const preloadPromise=preloadLocalizedValues(activeLocale);if(preloadPromise)throw preloadPromise;const ref1=React.useRef(null);const id=useRouteElementId(\"jWPqPhdcW\");const ref2=React.useRef(null);const id1=useRouteElementId(\"ReSL4CTPO\");const ref3=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];useCustomCursors({});var _getLocalizedValue,_getLocalizedValue1,_getLocalizedValue2,_getLocalizedValue3,_getLocalizedValue4,_getLocalizedValue5,_getLocalizedValue6,_getLocalizedValue7,_getLocalizedValue8,_getLocalizedValue9,_getLocalizedValue10,_getLocalizedValue11,_getLocalizedValue12,_getLocalizedValue13,_getLocalizedValue14,_getLocalizedValue15,_getLocalizedValue16,_getLocalizedValue17,_getLocalizedValue18,_getLocalizedValue19,_getLocalizedValue20,_getLocalizedValue21,_getLocalizedValue22,_getLocalizedValue23,_getLocalizedValue24,_getLocalizedValue25,_getLocalizedValue26,_getLocalizedValue27,_getLocalizedValue28,_getLocalizedValue29,_getLocalizedValue30,_getLocalizedValue31,_getLocalizedValue32;return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"qLObhi6ZC\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-702ap5\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(Container,{className:\"framer-dr0yl0-container\",id:id,layoutScroll:true,ref:ref2,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3qnnSc3e:{variant:\"OMSyalsBq\"},wkE7yHu0H:{variant:\"Uc1SOXsV7\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"jWPqPhdcW\",layoutId:\"jWPqPhdcW\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"t2Ic12yDQ\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1aj5v6m\",\"data-framer-name\":\"Form Section\",name:\"Form Section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-befgjt\",\"data-framer-name\":\"Form section col\",name:\"Form section col\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-flvtn2\",\"data-framer-name\":\"Form wrap\",name:\"Form wrap\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3qnnSc3e:{children:(_getLocalizedValue=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0Jvb2ttYW4gT2xkIFN0eWxlIEJvbGQ=\",\"--framer-font-family\":'\"Bookman Old Style Bold\", \"Bookman Old Style Bold Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2cab5475-78ad-49c5-9d10-498adc1f18bf, rgb(27, 33, 45))\"},children:\"Send us a message\"})})},wkE7yHu0H:{children:(_getLocalizedValue1=getLocalizedValue(\"v1\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0Jvb2ttYW4gT2xkIFN0eWxlIEJvbGQ=\",\"--framer-font-family\":'\"Bookman Old Style Bold\", \"Bookman Old Style Bold Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-2cab5475-78ad-49c5-9d10-498adc1f18bf, rgb(27, 33, 45))\"},children:\"Send us a message\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue2=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue2!==void 0?_getLocalizedValue2:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0Jvb2ttYW4gT2xkIFN0eWxlIEJvbGQ=\",\"--framer-font-family\":'\"Bookman Old Style Bold\", \"Bookman Old Style Bold Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-2cab5475-78ad-49c5-9d10-498adc1f18bf, rgb(27, 33, 45))\"},children:\"Send us a message\"})}),className:\"framer-1hc0p1v\",fonts:[\"CUSTOM;Bookman Old Style Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3qnnSc3e:{children:(_getLocalizedValue3=getLocalizedValue(\"v5\",activeLocale))!==null&&_getLocalizedValue3!==void 0?_getLocalizedValue3:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1e6aa030-b9a6-4d7d-9eed-12ec3ce25c6d, rgb(46, 50, 56))\"},children:[\"You can reach us anytime via \",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(71, 10, 140)\"},children:\"info@vision360global.ca\"})]})})},wkE7yHu0H:{children:(_getLocalizedValue4=getLocalizedValue(\"v4\",activeLocale))!==null&&_getLocalizedValue4!==void 0?_getLocalizedValue4:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1e6aa030-b9a6-4d7d-9eed-12ec3ce25c6d, rgb(46, 50, 56))\"},children:[\"You can reach us anytime via \",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(71, 10, 140)\"},children:\"info@vision360global.ca\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue5=getLocalizedValue(\"v3\",activeLocale))!==null&&_getLocalizedValue5!==void 0?_getLocalizedValue5:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1e6aa030-b9a6-4d7d-9eed-12ec3ce25c6d, rgb(46, 50, 56))\"},children:[\"You can reach us anytime via \",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(71, 10, 140)\"},children:\"info@vision360global.ca\"})]})}),className:\"framer-1qb1b95\",\"data-framer-name\":\"You can reach us anytime via hi@untitledui.com\",fonts:[\"GF;Instrument Sans-500\"],name:\"You can reach us anytime via hi@untitledui.com\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Container,{className:\"framer-9l54m7-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3qnnSc3e:{button:{color:\"rgb(255, 255, 255)\",fill:\"var(--token-2cab5475-78ad-49c5-9d10-498adc1f18bf, rgb(27, 33, 45))\",fontWeight:600,label:(_getLocalizedValue6=getLocalizedValue(\"v19\",activeLocale))!==null&&_getLocalizedValue6!==void 0?_getLocalizedValue6:\"Submit\"},email:{placeholder:(_getLocalizedValue7=getLocalizedValue(\"v17\",activeLocale))!==null&&_getLocalizedValue7!==void 0?_getLocalizedValue7:\"Email\",value:\"\"},fontFamily:(_getLocalizedValue8=getLocalizedValue(\"v20\",activeLocale))!==null&&_getLocalizedValue8!==void 0?_getLocalizedValue8:\"Trebuchet MS\",message:{placeholder:(_getLocalizedValue9=getLocalizedValue(\"v18\",activeLocale))!==null&&_getLocalizedValue9!==void 0?_getLocalizedValue9:\"Message\",value:\"\"},nameField:{placeholder:(_getLocalizedValue10=getLocalizedValue(\"v16\",activeLocale))!==null&&_getLocalizedValue10!==void 0?_getLocalizedValue10:\"Name\",value:\"\"}},wkE7yHu0H:{button:{color:\"rgb(255, 255, 255)\",fill:\"var(--token-2cab5475-78ad-49c5-9d10-498adc1f18bf, rgb(27, 33, 45))\",fontWeight:600,label:(_getLocalizedValue11=getLocalizedValue(\"v14\",activeLocale))!==null&&_getLocalizedValue11!==void 0?_getLocalizedValue11:\"Submit\"},email:{placeholder:(_getLocalizedValue12=getLocalizedValue(\"v12\",activeLocale))!==null&&_getLocalizedValue12!==void 0?_getLocalizedValue12:\"Email\",value:\"\"},fontFamily:(_getLocalizedValue13=getLocalizedValue(\"v15\",activeLocale))!==null&&_getLocalizedValue13!==void 0?_getLocalizedValue13:\"Trebuchet MS\",message:{placeholder:(_getLocalizedValue14=getLocalizedValue(\"v13\",activeLocale))!==null&&_getLocalizedValue14!==void 0?_getLocalizedValue14:\"Message\",value:\"\"},nameField:{placeholder:(_getLocalizedValue15=getLocalizedValue(\"v11\",activeLocale))!==null&&_getLocalizedValue15!==void 0?_getLocalizedValue15:\"Name\",value:\"\"}}},children:/*#__PURE__*/_jsx(FormSpark,{borderRadius:8,bottomLeftRadius:8,bottomRightRadius:8,button:{color:\"rgb(255, 255, 255)\",fill:\"var(--token-2cab5475-78ad-49c5-9d10-498adc1f18bf, rgb(27, 33, 45))\",fontWeight:600,label:(_getLocalizedValue16=getLocalizedValue(\"v9\",activeLocale))!==null&&_getLocalizedValue16!==void 0?_getLocalizedValue16:\"Submit\"},email:{placeholder:(_getLocalizedValue17=getLocalizedValue(\"v7\",activeLocale))!==null&&_getLocalizedValue17!==void 0?_getLocalizedValue17:\"Email\",value:\"\"},font:true,fontFamily:(_getLocalizedValue18=getLocalizedValue(\"v10\",activeLocale))!==null&&_getLocalizedValue18!==void 0?_getLocalizedValue18:\"Trebuchet MS\",fontSize:18,fontWeight:400,formId:\"\",gap:20,height:\"100%\",id:\"NqGisxPa0\",inputs:{color:\"rgb(0, 0, 0)\",error:\"rgb(238, 68, 68)\",fill:\"rgb(252, 252, 252)\",placeholderColor:\"rgba(0, 0, 0, 0.5)\"},isMixedBorderRadius:false,layout:\"vertical\",layoutId:\"NqGisxPa0\",message:{placeholder:(_getLocalizedValue19=getLocalizedValue(\"v8\",activeLocale))!==null&&_getLocalizedValue19!==void 0?_getLocalizedValue19:\"Message\",value:\"\"},nameField:{placeholder:(_getLocalizedValue20=getLocalizedValue(\"v6\",activeLocale))!==null&&_getLocalizedValue20!==void 0?_getLocalizedValue20:\"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:true,withName:true})})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1b7b5ik\",\"data-framer-name\":\"Logos\",name:\"Logos\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ql130j\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/vision360global/\",children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-18ig2hf framer-1lwhqiy\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-jh2y90-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3qnnSc3e:{iconSearch:(_getLocalizedValue21=getLocalizedValue(\"v23\",activeLocale))!==null&&_getLocalizedValue21!==void 0?_getLocalizedValue21:\"Home\"},wkE7yHu0H:{iconSearch:(_getLocalizedValue22=getLocalizedValue(\"v22\",activeLocale))!==null&&_getLocalizedValue22!==void 0?_getLocalizedValue22:\"Home\"}},children:/*#__PURE__*/_jsx(Material,{color:\"rgb(71, 10, 140)\",height:\"100%\",iconSearch:(_getLocalizedValue23=getLocalizedValue(\"v21\",activeLocale))!==null&&_getLocalizedValue23!==void 0?_getLocalizedValue23:\"Home\",iconSelection:\"Instagram\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"uLp7edX0m\",layoutId:\"uLp7edX0m\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.facebook.com/VisionGlobal360\",openInNewTab:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-65xliq framer-1lwhqiy\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pb05hj-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3qnnSc3e:{iconSearch:(_getLocalizedValue24=getLocalizedValue(\"v26\",activeLocale))!==null&&_getLocalizedValue24!==void 0?_getLocalizedValue24:\"Home\"},wkE7yHu0H:{iconSearch:(_getLocalizedValue25=getLocalizedValue(\"v25\",activeLocale))!==null&&_getLocalizedValue25!==void 0?_getLocalizedValue25:\"Home\"}},children:/*#__PURE__*/_jsx(Material,{color:\"rgb(71, 10, 140)\",height:\"100%\",iconSearch:(_getLocalizedValue26=getLocalizedValue(\"v24\",activeLocale))!==null&&_getLocalizedValue26!==void 0?_getLocalizedValue26:\"Home\",iconSelection:\"Facebook\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"GdBtsC4Sn\",layoutId:\"GdBtsC4Sn\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Link,{href:\"+1 (514) 515 1288\",children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-1heq5h framer-1lwhqiy\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-7xujbv-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3qnnSc3e:{iconSearch:(_getLocalizedValue27=getLocalizedValue(\"v29\",activeLocale))!==null&&_getLocalizedValue27!==void 0?_getLocalizedValue27:\"Home\"},wkE7yHu0H:{iconSearch:(_getLocalizedValue28=getLocalizedValue(\"v28\",activeLocale))!==null&&_getLocalizedValue28!==void 0?_getLocalizedValue28:\"Home\"}},children:/*#__PURE__*/_jsx(Material,{color:\"rgb(71, 10, 140)\",height:\"100%\",iconSearch:(_getLocalizedValue29=getLocalizedValue(\"v27\",activeLocale))!==null&&_getLocalizedValue29!==void 0?_getLocalizedValue29:\"Home\",iconSelection:\"Phone\",iconStyle15:\"Outlined\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"bhlbfJJZl\",layoutId:\"bhlbfJJZl\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(Container,{className:\"framer-k7yo6x-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3qnnSc3e:{coordinates:(_getLocalizedValue30=getLocalizedValue(\"v32\",activeLocale))!==null&&_getLocalizedValue30!==void 0?_getLocalizedValue30:\"45.50264929688197, -73.5803396271821\"},wkE7yHu0H:{coordinates:(_getLocalizedValue31=getLocalizedValue(\"v31\",activeLocale))!==null&&_getLocalizedValue31!==void 0?_getLocalizedValue31:\"45.50264929688197, -73.5803396271821\"}},children:/*#__PURE__*/_jsx(GoogleMaps,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,coordinates:(_getLocalizedValue32=getLocalizedValue(\"v30\",activeLocale))!==null&&_getLocalizedValue32!==void 0?_getLocalizedValue32:\"45.50264929688197, -73.5803396271821\",height:\"100%\",id:\"NYt2V2hir\",isMixedBorderRadius:false,layoutId:\"NYt2V2hir\",style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,width:\"100%\",zoom:15})})}),/*#__PURE__*/_jsx(Container,{className:\"framer-1rck3om-container\",\"data-framer-name\":\"Footer\",id:id1,name:\"Footer\",ref:ref3,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3qnnSc3e:{variant:\"ZMeiRGSEs\"},wkE7yHu0H:{variant:\"OapY_7H28\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"ReSL4CTPO\",layoutId:\"ReSL4CTPO\",name:\"Footer\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"ZZn_gboVM\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=['.framer-JqZeC[data-border=\"true\"]::after, .framer-JqZeC [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-JqZeC { background: white; }`,\".framer-JqZeC.framer-1lwhqiy, .framer-JqZeC .framer-1lwhqiy { display: block; }\",\".framer-JqZeC.framer-702ap5 { 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 0px 0px 0px; position: relative; width: 1200px; }\",\".framer-JqZeC .framer-dr0yl0-container { flex: none; height: auto; left: 50%; max-width: 100%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-JqZeC .framer-1aj5v6m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 180px 100px 0px 100px; position: relative; width: 100%; }\",\".framer-JqZeC .framer-befgjt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 148px; height: 540px; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1000px; }\",\".framer-JqZeC .framer-flvtn2 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 540px; justify-content: center; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-JqZeC .framer-1hc0p1v { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-JqZeC .framer-1qb1b95 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-JqZeC .framer-9l54m7-container { flex: none; height: 300px; position: relative; width: 420px; }\",\".framer-JqZeC .framer-1b7b5ik { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: 133px; justify-content: center; overflow: hidden; padding: 40px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-JqZeC .framer-1ql130j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 60px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 89%; }\",\".framer-JqZeC .framer-18ig2hf, .framer-JqZeC .framer-65xliq, .framer-JqZeC .framer-1heq5h { flex: none; height: 43px; overflow: hidden; position: relative; text-decoration: none; width: 40px; }\",\".framer-JqZeC .framer-jh2y90-container, .framer-JqZeC .framer-1pb05hj-container, .framer-JqZeC .framer-7xujbv-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-JqZeC .framer-k7yo6x-container { flex: none; height: 313px; position: relative; width: 100%; }\",\".framer-JqZeC .framer-1rck3om-container { flex: none; height: auto; max-width: 100%; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-JqZeC.framer-702ap5, .framer-JqZeC .framer-1aj5v6m, .framer-JqZeC .framer-befgjt, .framer-JqZeC .framer-flvtn2, .framer-JqZeC .framer-1b7b5ik, .framer-JqZeC .framer-1ql130j { gap: 0px; } .framer-JqZeC.framer-702ap5 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-JqZeC.framer-702ap5 > :first-child, .framer-JqZeC .framer-flvtn2 > :first-child, .framer-JqZeC .framer-1b7b5ik > :first-child { margin-top: 0px; } .framer-JqZeC.framer-702ap5 > :last-child, .framer-JqZeC .framer-flvtn2 > :last-child, .framer-JqZeC .framer-1b7b5ik > :last-child { margin-bottom: 0px; } .framer-JqZeC .framer-1aj5v6m > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-JqZeC .framer-1aj5v6m > :first-child, .framer-JqZeC .framer-befgjt > :first-child, .framer-JqZeC .framer-1ql130j > :first-child { margin-left: 0px; } .framer-JqZeC .framer-1aj5v6m > :last-child, .framer-JqZeC .framer-befgjt > :last-child, .framer-JqZeC .framer-1ql130j > :last-child { margin-right: 0px; } .framer-JqZeC .framer-befgjt > * { margin: 0px; margin-left: calc(148px / 2); margin-right: calc(148px / 2); } .framer-JqZeC .framer-flvtn2 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-JqZeC .framer-1b7b5ik > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-JqZeC .framer-1ql130j > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } }\",\"@media (min-width: 1200px) { .framer-JqZeC .hidden-702ap5 { display: none !important; } }\",`@media (min-width: 810px) and (max-width: 1199px) { .framer-JqZeC .hidden-1izdnfq { display: none !important; } .${metadata.bodyClassName}-framer-JqZeC { background: white; } .framer-JqZeC.framer-702ap5 { width: 810px; } .framer-JqZeC .framer-befgjt { flex: 1 0 0px; width: 1px; } .framer-JqZeC .framer-1b7b5ik { height: auto; padding: 0px 40px 80px 40px; }}`,`@media (max-width: 809px) { .framer-JqZeC .hidden-1329dkj { display: none !important; } .${metadata.bodyClassName}-framer-JqZeC { background: white; } .framer-JqZeC.framer-702ap5 { width: 390px; } .framer-JqZeC .framer-1aj5v6m { flex-direction: column; height: 700px; padding: 70px 25px 0px 25px; } .framer-JqZeC .framer-befgjt { height: 500px; width: 354px; } .framer-JqZeC .framer-flvtn2 { height: min-content; order: 0; } .framer-JqZeC .framer-1hc0p1v { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-JqZeC .framer-9l54m7-container { width: 100%; } .framer-JqZeC .framer-1b7b5ik { height: auto; padding: 0px 25px 30px 25px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-JqZeC .framer-1aj5v6m { gap: 0px; } .framer-JqZeC .framer-1aj5v6m > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-JqZeC .framer-1aj5v6m > :first-child { margin-top: 0px; } .framer-JqZeC .framer-1aj5v6m > :last-child { margin-bottom: 0px; } }}`];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1461\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"wkE7yHu0H\":{\"layout\":[\"fixed\",\"auto\"]},\"L3qnnSc3e\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerResponsiveScreen\n */const FramereQBIlxkH6=withCSS(Component,css,\"framer-JqZeC\");export default FramereQBIlxkH6;FramereQBIlxkH6.displayName=\"Page\";FramereQBIlxkH6.defaultProps={height:1461,width:1200};addFonts(FramereQBIlxkH6,[{family:\"Bookman Old Style Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/YVxiKcNyvbwERpfDyTw6opD2gk.woff2\"},{family:\"Instrument Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npST3-QfwmS0v3_7Y.woff2\",weight:\"500\"},...NavigationFonts,...FormSparkFonts,...MaterialFonts,...GoogleMapsFonts,...FooterFonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramereQBIlxkH6\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wkE7yHu0H\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"L3qnnSc3e\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"1461\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicWidth\":\"1200\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["coordinatesRegex", "GoogleMaps", "coordinates", "zoom", "style", "props", "borderRadius", "useRadius", "latitude1", "longitude1", "se", "ref", "latitude", "longitude", "p", "motion", "containerStyles", "addPropertyControls", "ControlType", "borderRadiusControl", "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", "NavigationFonts", "getFonts", "iE5ooTEvg_default", "FormSparkFonts", "FormSpark_default", "MaterialFonts", "Icon", "GoogleMapsFonts", "GoogleMaps", "FooterFonts", "zC49miqVx_default", "breakpoints", "serializationHash", "variantClassNames", "transitions", "valuesByLocaleId", "LazyValue", "preloadLocalizedValues", "locale", "promises", "values", "promise", "getLocalizedValue", "key", "value", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "fe", "metadata1", "_document_querySelector", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "transition", "preloadPromise", "ref1", "pe", "useRouteElementId", "ref2", "id1", "ref3", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "_getLocalizedValue", "_getLocalizedValue1", "_getLocalizedValue2", "_getLocalizedValue3", "_getLocalizedValue4", "_getLocalizedValue5", "_getLocalizedValue6", "_getLocalizedValue7", "_getLocalizedValue8", "_getLocalizedValue9", "_getLocalizedValue10", "_getLocalizedValue11", "_getLocalizedValue12", "_getLocalizedValue13", "_getLocalizedValue14", "_getLocalizedValue15", "_getLocalizedValue16", "_getLocalizedValue17", "_getLocalizedValue18", "_getLocalizedValue19", "_getLocalizedValue20", "_getLocalizedValue21", "_getLocalizedValue22", "_getLocalizedValue23", "_getLocalizedValue24", "_getLocalizedValue25", "_getLocalizedValue26", "_getLocalizedValue27", "_getLocalizedValue28", "_getLocalizedValue29", "_getLocalizedValue30", "_getLocalizedValue31", "_getLocalizedValue32", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "Container", "PropertyOverrides2", "iE5ooTEvg_default", "x", "RichText2", "FormSpark_default", "Link", "Icon", "GoogleMaps", "zC49miqVx_default", "css", "FramereQBIlxkH6", "withCSS", "eQBIlxkH6_default", "addFonts", "NavigationFonts", "FormSparkFonts", "MaterialFonts", "GoogleMapsFonts", "FooterFonts", "__FramerMetadata__"]
}
