{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/vkHAj2Yk0mTnbM6ZdN5c/Foxm7T4YpJpvPgDlEus0/FormSpark.js", "ssg:https://framerusercontent.com/modules/wn91G7rs74k436VZCkC0/lsDlmgvSJE60IvJnvSQ0/jAHqCnYYY.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget,withCSS}from\"framer\";import{motion}from\"framer-motion\";import{containerStyles,usePadding,useRadius,paddingControl,borderRadiusControl,fontControls,useFontControls}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{useCallback,useMemo,useState}from\"react\";const emailRegex=/^(([^<>()[\\]\\\\.,;:\\s@\"]+(\\.[^<>()[\\]\\\\.,;:\\s@\"]+)*)|(\".+\"))@((\\[[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\])|(([a-zA-Z\\-0-9]+\\.)+[a-zA-Z]{2,}))$/;const validateEmail=email=>{return emailRegex.test(String(email).toLowerCase());};/**\n * FORMSPARK\n *\n * @framerIntrinsicWidth 550\n * @framerIntrinsicHeight 290\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ const FormSpark=withCSS(function FormSpark({formId,withName,nameField:name,withEmail,email,withMessage,message,layout,inputs,button,style,gap,onSubmit,...props}){const[nameValue,setName]=useState(name===null||name===void 0?void 0:name.value);const[emailValue,setEmail]=useState(email===null||email===void 0?void 0:email.value);const[messageValue,setMessage]=useState(message===null||message===void 0?void 0:message.value);const[isNameError,setNameError]=useState(false);const[isEmailError,setEmailError]=useState(false);const[isMessageError,setMessageError]=useState(false);const[isLoading,setLoading]=useState(false);const[isSuccess,setSuccess]=useState(false);const isCanvas=useMemo(()=>{return RenderTarget.current()===RenderTarget.canvas;},[]);const gridTemplateRows=useMemo(()=>{const rows=[];if(withName||withMessage){rows.push(\"max-content\");}if(withMessage){rows.push(\"1fr\");}return[...rows,\"max-content\"].join(\" \");},[withName,withEmail,withMessage]);const gridTemplateColumns=useMemo(()=>{const cols=[];if((withName&&!withEmail||withEmail&&!withName)&&!withMessage&&layout===\"horizontal\"){return\"1fr max-content\";}return\"1fr\";},[withName,withEmail,withMessage,layout]);const{fontFamily,fontSize,fontWeight}=useFontControls(props);const borderRadius=useRadius(props);const paddingValue=usePadding(props);const validateForm=useCallback(()=>{let error=false;setNameError(false);setEmailError(false);setMessageError(false);if(withName&&!nameValue){setNameError(true);error=true;}if(withEmail&&(!emailValue||!validateEmail(emailValue))){setEmailError(true);error=true;}if(withMessage&&!messageValue){setMessageError(true);error=true;}return error;},[validateEmail,withName,withEmail,withMessage,nameValue,emailValue,messageValue,]);const handleSubmit=useCallback(event=>{setLoading(true);event.preventDefault();if(validateForm()){setLoading(false);}else{const data=new FormData(event.target);const entries=Object.fromEntries(data.entries());fetch(`https://api.formspark.io/${formId}`,{method:\"POST\",headers:{\"Content-Type\":\"application/json\",Accept:\"application/json\"},body:JSON.stringify(entries)}).then(()=>{setSuccess(true);onSubmit();}).catch(()=>setLoading(false));}},[formId,onSubmit,validateForm]);const handleNameChange=useCallback(event=>{setNameError(false);setName(event.target.value);},[]);const handleEmailChange=useCallback(event=>{setEmailError(false);setEmail(event.target.value);},[]);const handleMessageChange=useCallback(event=>{setMessageError(false);setMessage(event.target.value);},[]);return /*#__PURE__*/ _jsx(motion.div,{style:{...style,...containerStyles,flexDirection:\"column\",\"--framer-formspark-placeholder-color\":inputs.placeholderColor},children:isSuccess?/*#__PURE__*/ _jsx(motion.div,{style:{height:\"60px\",width:\"60px\",background:button.fill,color:button.color,borderRadius:\"50%\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\"},initial:{scale:0},animate:{scale:1},transition:{duration:.3},children:/*#__PURE__*/ _jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",width:\"28\",height:\"28\",children:/*#__PURE__*/ _jsx(\"path\",{d:\"M 2 14 L 10 22 L 26 6\",fill:\"transparent\",strokeWidth:\"4\",stroke:\"currentColor\",strokeLinecap:\"round\"})})}):/*#__PURE__*/ _jsxs(\"form\",{style:{display:\"grid\",gridTemplateRows,gridTemplateColumns,gap,width:\"100%\",height:\"100%\"},onSubmit:handleSubmit,method:\"POST\",children:[(withName||withEmail)&&/*#__PURE__*/ _jsxs(\"div\",{style:{width:\"100%\",display:\"grid\",gridAutoFlow:layout===\"horizontal\"?\"column\":\"row\",gap},children:[withName&&/*#__PURE__*/ _jsx(\"input\",{className:\"framer-formspark-input\",type:\"text\",name:\"name\",placeholder:name.placeholder,value:isCanvas?name.value:nameValue,onChange:handleNameChange,style:{...defaultStyle,padding:paddingValue,borderRadius,fontFamily,fontWeight,fontSize,background:inputs.fill,color:inputs.color,boxShadow:`inset 0 0 0 1px ${isNameError?inputs.error:\"transparent\"}`}}),withEmail&&/*#__PURE__*/ _jsx(\"input\",{className:\"framer-formspark-input\",type:\"email\",name:\"email\",placeholder:email.placeholder,value:isCanvas?email.value:emailValue,onChange:handleEmailChange,style:{...defaultStyle,padding:paddingValue,borderRadius,fontFamily,fontWeight,fontSize,background:inputs.fill,color:inputs.color,boxShadow:`inset 0 0 0 1px ${isEmailError?inputs.error:\"transparent\"}`}})]}),withMessage&&/*#__PURE__*/ _jsx(\"textarea\",{className:\"framer-formspark-input\",placeholder:message.placeholder,name:\"message\",value:isCanvas?message.value:messageValue,onChange:handleMessageChange,style:{...defaultStyle,minHeight:0,padding:paddingValue,resize:\"vertical\",borderRadius,background:inputs.fill,fontFamily,fontWeight,fontSize,color:inputs.color,boxShadow:`inset 0 0 0 1px ${isMessageError?inputs.error:\"transparent\"}`}}),/*#__PURE__*/ _jsxs(\"div\",{children:[/*#__PURE__*/ _jsx(motion.input,{type:\"submit\",value:button.label,style:{...defaultStyle,borderRadius,padding:paddingValue,fontFamily,fontWeight:button.fontWeight,fontSize,background:button.fill,cursor:\"pointer\",color:button.color,zIndex:1},transition:{type:\"ease\",duration:.3},whileHover:{opacity:.8}}),isLoading&&/*#__PURE__*/ _jsx(\"div\",{style:{borderRadius,position:\"absolute\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\",width:\"100%\",height:\"100%\",left:0,top:0,zIndex:2,color:button.color,background:button.fill},children:/*#__PURE__*/ _jsx(motion.div,{style:{height:16,width:16},initial:{rotate:0},animate:{rotate:360},transition:{duration:2,repeat:Infinity},children:/*#__PURE__*/ _jsxs(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",width:\"16\",height:\"16\",children:[/*#__PURE__*/ _jsx(\"path\",{d:\"M 8 0 C 3.582 0 0 3.582 0 8 C 0 12.419 3.582 16 8 16 C 12.418 16 16 12.419 16 8 C 15.999 3.582 12.418 0 8 0 Z M 8 14 C 4.687 14 2 11.314 2 8 C 2 4.687 4.687 2 8 2 C 11.314 2 14 4.687 14 8 C 14 11.314 11.314 14 8 14 Z\",fill:\"currentColor\",opacity:\"0.2\"}),/*#__PURE__*/ _jsx(\"path\",{d:\"M 8 0 C 12.418 0 15.999 3.582 16 8 C 16 8 16 9 15 9 C 14 9 14 8 14 8 C 14 4.687 11.314 2 8 2 C 4.687 2 2 4.687 2 8 C 2 8 2 9 1 9 C 0 9 0 8 0 8 C 0 3.582 3.582 0 8 0 Z\",fill:\"currentColor\"})]})})})]})]})});},[\".framer-formspark-input::placeholder { color: var(--framer-formspark-placeholder-color) !important; }\",]);FormSpark.defaultProps={fontSize:16,fontFamily:\"Inter\",fontWeight:400,padding:15,paddingTop:15,paddingBottom:15,paddingLeft:15,paddingRight:15,borderRadius:8,topLeftRadius:8,topRightRadius:8,bottomRightRadius:8,bottomLeftRadius:8,gap:15,nameField:{value:undefined,placeholder:\"Name\"},email:{value:undefined,placeholder:\"Email\"},message:{value:undefined,placeholder:\"Message\"},inputs:{fill:\"#EBEBEB\",color:\"#000\",placeholderColor:\"rgba(0, 0, 0, 0.5)\",error:\"#EE4444\"},layout:{fill:\"#EBEBEB\",color:\"#000\",placeholderColor:\"rgba(0, 0, 0, 0.5)\",error:\"#EE4444\"},button:{label:\"Sign Up\",fontWeight:600,fill:\"#000\",color:\"#FFF\"}};addPropertyControls(FormSpark,{formId:{title:\"ID\",placeholder:\"7PbPpGN3\",type:ControlType.String,description:\"Create a [FormSpark](https://formspark.io/) account, add a new form and copy its ID. [Learn more\u2026](https://www.framer.com/sites/integrations/formspark/)\"},withName:{title:\"Name\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:true},nameField:{title:\" \",type:ControlType.Object,controls:{placeholder:{title:\"Placeholder\",type:ControlType.String,defaultValue:\"Name\"},value:{title:\"Value\",type:ControlType.String,defaultValue:\"\"}},hidden:props=>!props.withName},withEmail:{title:\"Email\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:true},email:{title:\" \",type:ControlType.Object,controls:{placeholder:{title:\"Placeholder\",type:ControlType.String,defaultValue:\"Email\"},value:{title:\"Value\",type:ControlType.String}},hidden:props=>!props.withEmail},withMessage:{title:\"Message\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:true},message:{title:\" \",type:ControlType.Object,controls:{placeholder:{title:\"Placeholder\",type:ControlType.String,defaultValue:\"Message\"},value:{title:\"Value\",type:ControlType.String}},hidden:props=>!props.withMessage},layout:{title:\"Layout\",type:ControlType.Enum,options:[\"horizontal\",\"vertical\"],displaySegmentedControl:true,defaultValue:\"horizontal\"},inputs:{title:\"Inputs\",type:ControlType.Object,controls:{fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#EBEBEB\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#000\"},placeholderColor:{title:\"Placeholder\",type:ControlType.Color,defaultValue:\"rgba(0, 0, 0, 0.5)\"},error:{title:\"Error\",type:ControlType.Color,defaultValue:\"#EE4444\"}}},button:{title:\"Button\",type:ControlType.Object,controls:{label:{title:\"Label\",type:ControlType.String,defaultValue:\"Sign Up\"},fontWeight:{...fontControls.fontWeight,defaultValue:600},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#000\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#FFF\"}}},...fontControls,fontSize:{title:\"Font Size\",type:ControlType.Number,displayStepper:true,defaultValue:16},...paddingControl,...borderRadiusControl,gap:{title:\"Gap\",type:ControlType.Number,displayStepper:true,min:0},onSubmit:{type:ControlType.EventHandler}});const defaultStyle={WebkitAppearance:\"none\",display:\"inline-block\",width:\"100%\",lineHeight:\"1.4em\",outline:\"none\",border:\"none\"};export default FormSpark;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FormSpark\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"290\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"550\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FormSpark.map", "// Generated by Framer (2a8efd8)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,Container,cx,GeneratedComponentContext,getFonts,Image,PropertyOverrides,RichText,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import FormSpark from\"https://framerusercontent.com/modules/vkHAj2Yk0mTnbM6ZdN5c/Foxm7T4YpJpvPgDlEus0/FormSpark.js\";import Footer from\"#framer/local/canvasComponent/Oop6fdMXi/Oop6fdMXi.js\";import SocialIcon from\"#framer/local/canvasComponent/Q_OF4rLyQ/Q_OF4rLyQ.js\";import Navbar from\"#framer/local/canvasComponent/SdDdkaawt/SdDdkaawt.js\";import*as sharedStyle1 from\"#framer/local/css/xZndidUCt/xZndidUCt.js\";import*as sharedStyle from\"#framer/local/css/YAP816Y5n/YAP816Y5n.js\";import metadataProvider from\"#framer/local/webPageMetadata/jAHqCnYYY/jAHqCnYYY.js\";const NavbarFonts=getFonts(Navbar);const RichTextWithFX=withFX(RichText);const MotionDivWithFX=withFX(motion.div);const FormSparkFonts=getFonts(FormSpark);const ContainerWithFX=withFX(Container);const SocialIconFonts=getFonts(SocialIcon);const ImageWithFX=withFX(Image);const FooterFonts=getFonts(Footer);const cycleOrder=[\"kdChlkUtE\",\"mWsty2JPO\",\"Kdo0cMXG_\"];const breakpoints={kdChlkUtE:\"(min-width: 1440px)\",Kdo0cMXG_:\"(max-width: 809px)\",mWsty2JPO:\"(min-width: 810px) and (max-width: 1439px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-2dOMk\";const variantClassNames={kdChlkUtE:\"framer-v-144m0wc\",Kdo0cMXG_:\"framer-v-onc3lo\",mWsty2JPO:\"framer-v-1y5cbfa\"};const transitions={default:{duration:0}};const animation={opacity:0,rotate:0,scale:1,x:0,y:20};const transition1={delay:0,duration:1,ease:[.5,1,.89,1],type:\"tween\"};const animation1={opacity:0,rotate:0,scale:1,transition:transition1,x:0,y:20};const transformTemplate1=(_,t)=>`perspective(1200px) ${t}`;const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"kdChlkUtE\",Phone:\"Kdo0cMXG_\",Tablet:\"mWsty2JPO\"};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:\"kdChlkUtE\"};};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-2dOMk`);return()=>{document.body.classList.remove(`${metadata1.bodyClassName}-framer-2dOMk`);};}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const transition=transitions.default;const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"kdChlkUtE\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-144m0wc\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(Container,{className:\"framer-dhkd2p-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Kdo0cMXG_:{variant:\"MbD1jMt_9\"},mWsty2JPO:{variant:\"QzC9Uvp7Y\"}},children:/*#__PURE__*/_jsx(Navbar,{height:\"100%\",id:\"wLhnVLaBZ\",layoutId:\"wLhnVLaBZ\",style:{width:\"100%\"},variant:\"UWSlmjqwC\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-4f9jj2\",\"data-framer-name\":\"Section Hero\",name:\"Section Hero\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Kdo0cMXG_:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1267,intrinsicWidth:1900,pixelHeight:1267,pixelWidth:1900,sizes:\"calc(100vw - 39px)\",src:\"https://framerusercontent.com/images/uwqKe5HwLQCc33G60q99vsaTTs.jpeg\",srcSet:\"https://framerusercontent.com/images/uwqKe5HwLQCc33G60q99vsaTTs.jpeg?scale-down-to=512 512w, https://framerusercontent.com/images/uwqKe5HwLQCc33G60q99vsaTTs.jpeg?scale-down-to=1024 1024w, https://framerusercontent.com/images/uwqKe5HwLQCc33G60q99vsaTTs.jpeg 1900w\"}},mWsty2JPO:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1267,intrinsicWidth:1900,pixelHeight:1267,pixelWidth:1900,sizes:\"calc(100vw - 480px)\",src:\"https://framerusercontent.com/images/uwqKe5HwLQCc33G60q99vsaTTs.jpeg\",srcSet:\"https://framerusercontent.com/images/uwqKe5HwLQCc33G60q99vsaTTs.jpeg?scale-down-to=512 512w, https://framerusercontent.com/images/uwqKe5HwLQCc33G60q99vsaTTs.jpeg?scale-down-to=1024 1024w, https://framerusercontent.com/images/uwqKe5HwLQCc33G60q99vsaTTs.jpeg 1900w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1267,intrinsicWidth:1900,pixelHeight:1267,pixelWidth:1900,sizes:\"761px\",src:\"https://framerusercontent.com/images/uwqKe5HwLQCc33G60q99vsaTTs.jpeg\",srcSet:\"https://framerusercontent.com/images/uwqKe5HwLQCc33G60q99vsaTTs.jpeg?scale-down-to=512 512w, https://framerusercontent.com/images/uwqKe5HwLQCc33G60q99vsaTTs.jpeg?scale-down-to=1024 1024w, https://framerusercontent.com/images/uwqKe5HwLQCc33G60q99vsaTTs.jpeg 1900w\"},className:\"framer-a2s1ov\",\"data-framer-name\":\"Img\",name:\"Img\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Kdo0cMXG_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-3nqyhf\",\"data-styles-preset\":\"YAP816Y5n\",style:{\"--framer-text-color\":\"var(--token-09a05a34-e9dd-4f0b-adc7-c9f4c0f84fc8, rgb(255, 255, 255))\"},children:\"Contact\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-3nqyhf\",\"data-styles-preset\":\"YAP816Y5n\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-09a05a34-e9dd-4f0b-adc7-c9f4c0f84fc8, rgb(255, 255, 255))\"},children:\"Contact\"})}),className:\"framer-145uj1l\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--token-09a05a34-e9dd-4f0b-adc7-c9f4c0f84fc8, rgb(255, 255, 255))\"},children:\"We'd love to hear from you\"})}),className:\"framer-1il1jum\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-19gae66\",\"data-framer-name\":\"Section Information\",name:\"Section Information\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1703mhc\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-gz5eq9\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-5ueych-container\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Kdo0cMXG_:{fontSize:14},mWsty2JPO:{fontSize:16}},children:/*#__PURE__*/_jsx(FormSpark,{borderRadius:10,bottomLeftRadius:10,bottomRightRadius:10,button:{color:\"rgb(255, 255, 255)\",fill:\"rgb(0, 0, 0)\",fontWeight:600,label:\"Send Message\"},email:{placeholder:\"Email\",value:\"\"},font:true,fontFamily:\"Manrope\",fontSize:18,fontWeight:400,formId:\"zaj1XeeUd\",gap:20,height:\"100%\",id:\"alVJTGfK5\",inputs:{color:\"rgb(0, 0, 0)\",error:\"rgb(238, 68, 68)\",fill:\"rgb(247, 247, 247)\",placeholderColor:\"rgb(0, 0, 0)\"},isMixedBorderRadius:false,layout:\"horizontal\",layoutId:\"alVJTGfK5\",message:{placeholder:\"Message\",value:\"\"},nameField:{placeholder:\"Name\",value:\"\"},padding:20,paddingBottom:20,paddingLeft:20,paddingPerSide:false,paddingRight:20,paddingTop:20,style:{height:\"100%\",width:\"100%\"},topLeftRadius:10,topRightRadius:10,width:\"100%\",withEmail:true,withMessage:true,withName:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cf3hzr\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"Max Ibiza stands as your trusted partner, dedicated to ensuring your safety remains uncompromised while you experience the charm of these exquisite islands.\"})})}),className:\"framer-elvdw8\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1btdt0y\",children:[/*#__PURE__*/_jsx(Container,{className:\"framer-13o71vt-container\",children:/*#__PURE__*/_jsx(SocialIcon,{height:\"100%\",id:\"yRfccDp7i\",layoutId:\"yRfccDp7i\",NQzGMZolX:\"https://twitter.com/MaxIbizaOficial\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",wjnELBkgB:\"TwitterLogo\"})}),/*#__PURE__*/_jsx(Container,{className:\"framer-18at4du-container\",children:/*#__PURE__*/_jsx(SocialIcon,{height:\"100%\",id:\"dU99gWzX9\",layoutId:\"dU99gWzX9\",NQzGMZolX:\"https://www.instagram.com/max.ibiza.official/\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",wjnELBkgB:\"InstagramLogo\"})}),/*#__PURE__*/_jsx(Container,{className:\"framer-tp0lmx-container\",children:/*#__PURE__*/_jsx(SocialIcon,{height:\"100%\",id:\"uHogkRq7q\",layoutId:\"uHogkRq7q\",NQzGMZolX:\"https://www.youtube.com/channel/UCVeBq-DBJMx2I0hJAAarxpg?view_as=subscriber\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",wjnELBkgB:\"YoutubeLogo\"})}),/*#__PURE__*/_jsx(Container,{className:\"framer-11lt842-container\",children:/*#__PURE__*/_jsx(SocialIcon,{height:\"100%\",id:\"HPakkVBLJ\",layoutId:\"HPakkVBLJ\",NQzGMZolX:\"https://www.facebook.com/LuxuryTravelIbiza/\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",wjnELBkgB:\"FacebookLogo\"})})]})]})]})})}),/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:596,intrinsicWidth:2e3,loading:\"lazy\",pixelHeight:596,pixelWidth:2e3,sizes:\"100vw\",src:\"https://framerusercontent.com/images/H2cXpXNV9daV96I0bXJqOGSkU2Y.jpg\",srcSet:\"https://framerusercontent.com/images/H2cXpXNV9daV96I0bXJqOGSkU2Y.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/H2cXpXNV9daV96I0bXJqOGSkU2Y.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/H2cXpXNV9daV96I0bXJqOGSkU2Y.jpg 2000w\"},className:\"framer-50lny9\",\"data-border\":true,\"data-framer-name\":\"Section Map\",name:\"Section Map\",transformTemplate:transformTemplate1}),/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1cgys6n-container\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Kdo0cMXG_:{variant:\"gMKB_Zvvi\"},mWsty2JPO:{variant:\"FdQzKRMEH\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"BgPuuEWjV\",layoutId:\"BgPuuEWjV\",style:{width:\"100%\"},variant:\"ZPHDSjhlN\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=['.framer-2dOMk[data-border=\"true\"]::after, .framer-2dOMk [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-2dOMk { background: var(--token-09a05a34-e9dd-4f0b-adc7-c9f4c0f84fc8, rgb(255, 255, 255)) /* {\"name\":\"White\"} */; }`,\".framer-2dOMk.framer-cyo1w2, .framer-2dOMk .framer-cyo1w2 { display: block; }\",\".framer-2dOMk.framer-144m0wc { align-content: center; align-items: center; background-color: var(--token-09a05a34-e9dd-4f0b-adc7-c9f4c0f84fc8, #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: 1440px; }\",\".framer-2dOMk .framer-dhkd2p-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-2dOMk .framer-4f9jj2 { align-content: flex-start; align-items: flex-start; background-color: var(--token-92a5f7c8-87fe-40c9-a4db-ebb253caaa2e, #181818); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: auto; justify-content: center; overflow: visible; padding: 220px 40px 100px 40px; position: relative; transform: perspective(1200px); width: 100%; z-index: 1; }\",\".framer-2dOMk .framer-a2s1ov { flex: none; height: 488px; left: calc(66.45833333333336% - 761px / 2); overflow: hidden; position: absolute; top: calc(58.93909626719059% - 488px / 2); width: 761px; z-index: 1; }\",\".framer-2dOMk .framer-145uj1l { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 1360px; position: relative; transform: perspective(1200px); white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-2dOMk .framer-1il1jum { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 740px; position: relative; transform: perspective(1200px); white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-2dOMk .framer-19gae66 { align-content: center; align-items: center; background-color: var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, #ffffff); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 140px; height: auto; justify-content: center; max-width: 1440px; overflow: hidden; padding: 140px 40px 100px 40px; position: relative; transform: perspective(1200px); width: 100%; }\",\".framer-2dOMk .framer-1703mhc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-2dOMk .framer-gz5eq9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: visible; padding: 0px 0px 0px 0px; position: relative; transform: perspective(1200px); width: 100%; }\",\".framer-2dOMk .framer-5ueych-container { align-self: stretch; flex: 1 0 0px; height: auto; position: relative; transform: perspective(1200px); width: 1px; }\",\".framer-2dOMk .framer-1cf3hzr { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 400px; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-2dOMk .framer-elvdw8 { --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-2dOMk .framer-1btdt0y { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-2dOMk .framer-13o71vt-container, .framer-2dOMk .framer-18at4du-container, .framer-2dOMk .framer-tp0lmx-container, .framer-2dOMk .framer-11lt842-container { flex: none; height: 35px; position: relative; width: 35px; }\",\".framer-2dOMk .framer-50lny9 { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.08); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; aspect-ratio: 3.257918552036199 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 442px); justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; transform: perspective(1200px); width: 100%; }\",\".framer-2dOMk .framer-1cgys6n-container { flex: none; height: auto; position: relative; transform: perspective(1200px); width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-2dOMk.framer-144m0wc, .framer-2dOMk .framer-4f9jj2, .framer-2dOMk .framer-19gae66, .framer-2dOMk .framer-1703mhc, .framer-2dOMk .framer-gz5eq9, .framer-2dOMk .framer-1cf3hzr, .framer-2dOMk .framer-1btdt0y, .framer-2dOMk .framer-50lny9 { gap: 0px; } .framer-2dOMk.framer-144m0wc > *, .framer-2dOMk .framer-50lny9 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-2dOMk.framer-144m0wc > :first-child, .framer-2dOMk .framer-4f9jj2 > :first-child, .framer-2dOMk .framer-1703mhc > :first-child, .framer-2dOMk .framer-1cf3hzr > :first-child, .framer-2dOMk .framer-50lny9 > :first-child { margin-top: 0px; } .framer-2dOMk.framer-144m0wc > :last-child, .framer-2dOMk .framer-4f9jj2 > :last-child, .framer-2dOMk .framer-1703mhc > :last-child, .framer-2dOMk .framer-1cf3hzr > :last-child, .framer-2dOMk .framer-50lny9 > :last-child { margin-bottom: 0px; } .framer-2dOMk .framer-4f9jj2 > *, .framer-2dOMk .framer-1cf3hzr > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-2dOMk .framer-19gae66 > * { margin: 0px; margin-left: calc(140px / 2); margin-right: calc(140px / 2); } .framer-2dOMk .framer-19gae66 > :first-child, .framer-2dOMk .framer-gz5eq9 > :first-child, .framer-2dOMk .framer-1btdt0y > :first-child { margin-left: 0px; } .framer-2dOMk .framer-19gae66 > :last-child, .framer-2dOMk .framer-gz5eq9 > :last-child, .framer-2dOMk .framer-1btdt0y > :last-child { margin-right: 0px; } .framer-2dOMk .framer-1703mhc > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-2dOMk .framer-gz5eq9 > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-2dOMk .framer-1btdt0y > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } }\",\"@media (min-width: 1440px) { .framer-2dOMk .hidden-144m0wc { display: none !important; } }\",`@media (min-width: 810px) and (max-width: 1439px) { .framer-2dOMk .hidden-1y5cbfa { display: none !important; } .${metadata.bodyClassName}-framer-2dOMk { background: var(--token-09a05a34-e9dd-4f0b-adc7-c9f4c0f84fc8, rgb(255, 255, 255)) /* {\"name\":\"White\"} */; } .framer-2dOMk.framer-144m0wc { width: 810px; } .framer-2dOMk .framer-4f9jj2 { padding: 220px 40px 80px 40px; } .framer-2dOMk .framer-a2s1ov { bottom: -42px; height: 415px; left: 480px; right: 0px; top: unset; width: unset; } .framer-2dOMk .framer-145uj1l { max-width: 100%; } .framer-2dOMk .framer-19gae66 { flex-direction: column; gap: 50px; padding: 0px 40px 80px 40px; } .framer-2dOMk .framer-1703mhc { padding: 140px 0px 0px 0px; } .framer-2dOMk .framer-gz5eq9 { flex-direction: column; } .framer-2dOMk .framer-5ueych-container { align-self: unset; flex: none; height: 400px; width: 100%; } .framer-2dOMk .framer-1cf3hzr { flex: none; width: 100%; } .framer-2dOMk .framer-elvdw8 { order: 0; } .framer-2dOMk .framer-1btdt0y { order: 1; } .framer-2dOMk .framer-50lny9 { height: var(--framer-aspect-ratio-supported, 249px); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-2dOMk .framer-19gae66, .framer-2dOMk .framer-gz5eq9 { gap: 0px; } .framer-2dOMk .framer-19gae66 > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-2dOMk .framer-19gae66 > :first-child, .framer-2dOMk .framer-gz5eq9 > :first-child { margin-top: 0px; } .framer-2dOMk .framer-19gae66 > :last-child, .framer-2dOMk .framer-gz5eq9 > :last-child { margin-bottom: 0px; } .framer-2dOMk .framer-gz5eq9 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } }}`,`@media (max-width: 809px) { .framer-2dOMk .hidden-onc3lo { display: none !important; } .${metadata.bodyClassName}-framer-2dOMk { background: var(--token-09a05a34-e9dd-4f0b-adc7-c9f4c0f84fc8, rgb(255, 255, 255)) /* {\"name\":\"White\"} */; } .framer-2dOMk.framer-144m0wc { width: 390px; } .framer-2dOMk .framer-4f9jj2 { height: 397px; justify-content: flex-start; padding: 90px 20px 60px 20px; } .framer-2dOMk .framer-a2s1ov { height: 231px; left: 20px; right: 19px; top: calc(91.18387909319901% - 231px / 2); width: unset; } .framer-2dOMk .framer-19gae66 { flex-direction: column; gap: 50px; padding: 60px 20px 50px 20px; } .framer-2dOMk .framer-1703mhc { padding: 60px 20px 0px 20px; } .framer-2dOMk .framer-gz5eq9 { flex-direction: column; } .framer-2dOMk .framer-5ueych-container { align-self: unset; flex: none; height: 400px; width: 100%; } .framer-2dOMk .framer-1cf3hzr { flex: none; width: 100%; } .framer-2dOMk .framer-50lny9 { height: var(--framer-aspect-ratio-supported, 120px); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-2dOMk .framer-19gae66, .framer-2dOMk .framer-gz5eq9 { gap: 0px; } .framer-2dOMk .framer-19gae66 > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-2dOMk .framer-19gae66 > :first-child, .framer-2dOMk .framer-gz5eq9 > :first-child { margin-top: 0px; } .framer-2dOMk .framer-19gae66 > :last-child, .framer-2dOMk .framer-gz5eq9 > :last-child { margin-bottom: 0px; } .framer-2dOMk .framer-gz5eq9 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1787.5\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"mWsty2JPO\":{\"layout\":[\"fixed\",\"auto\"]},\"Kdo0cMXG_\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerResponsiveScreen\n */const FramerjAHqCnYYY=withCSS(Component,css,\"framer-2dOMk\");export default FramerjAHqCnYYY;FramerjAHqCnYYY.displayName=\"Contact\";FramerjAHqCnYYY.defaultProps={height:1787.5,width:1440};addFonts(FramerjAHqCnYYY,[...NavbarFonts,...FormSparkFonts,...SocialIconFonts,...FooterFonts,...sharedStyle.fonts,...sharedStyle1.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerjAHqCnYYY\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mWsty2JPO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Kdo0cMXG_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicHeight\":\"1787.5\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1440\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"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", "NavbarFonts", "getFonts", "SdDdkaawt_default", "RichTextWithFX", "withFX", "RichText", "MotionDivWithFX", "motion", "FormSparkFonts", "FormSpark_default", "ContainerWithFX", "Container", "SocialIconFonts", "Q_OF4rLyQ_default", "ImageWithFX", "Image2", "FooterFonts", "Oop6fdMXi_default", "breakpoints", "serializationHash", "variantClassNames", "transitions", "animation", "transition1", "animation1", "transformTemplate1", "_", "t", "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", "ref1", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "Container", "PropertyOverrides", "SdDdkaawt_default", "MotionDivWithFX", "Image2", "x", "RichTextWithFX", "ContainerWithFX", "FormSpark_default", "RichText", "Q_OF4rLyQ_default", "ImageWithFX", "Oop6fdMXi_default", "css", "FramerjAHqCnYYY", "withCSS", "jAHqCnYYY_default", "addFonts", "NavbarFonts", "FormSparkFonts", "SocialIconFonts", "FooterFonts", "fonts", "__FramerMetadata__"]
}
