{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/LAo0YoxNVX7qni5fSSRa/8eQdirFqm13JBbCxMdUh/FormSpark.js", "ssg:https://framerusercontent.com/modules/i9tVkUGZYIf6bbGp70cr/WonOT5cmxWO59iUqKgJs/Fh5XP8FSr.js", "ssg:https://framerusercontent.com/modules/NHocEqHoUIJzGRuy3wH6/bzyBYORM2oZm1qKgnQUb/Fh5XP8FSr.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\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"550\",\"framerIntrinsicHeight\":\"290\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FormSpark.map", "// Generated by Framer (f030ee3)\nimport{LazyValue}from\"framer\";const valuesByLocaleId={o_DIcIBsD:new LazyValue(()=>import(\"./Fh5XP8FSr-1.js\")),XbqVNP394:new LazyValue(()=>import(\"./Fh5XP8FSr-0.js\"))};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values.read()[key];if(value)return value;}locale=locale.fallback;}}function preload(locale){const promises=[];while(locale){const values=valuesByLocaleId[locale.id];if(values){const promise=values.preload();if(promise)promises.push(promise);}locale=locale.fallback;}if(promises.length>0)return Promise.all(promises);}export function usePreloadLocalizedValues(locale){const preloadPromise=preload(locale);if(preloadPromise)throw preloadPromise;}\nexport const __FramerMetadata__ = {\"exports\":{\"usePreloadLocalizedValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f030ee3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,Link,PropertyOverrides,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import FormSpark from\"https://framerusercontent.com/modules/LAo0YoxNVX7qni5fSSRa/8eQdirFqm13JBbCxMdUh/FormSpark.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Mn69eMnaMcqJ65TjxwR1/Embed.js\";import Embed1 from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js\";import Footer from\"#framer/local/canvasComponent/lPPdNeT3o/lPPdNeT3o.js\";import Header from\"#framer/local/canvasComponent/UWmdp7f9Q/UWmdp7f9Q.js\";import getLocalizedValue,{usePreloadLocalizedValues}from\"#framer/local/localization/Fh5XP8FSr/Fh5XP8FSr.js\";import metadataProvider from\"#framer/local/webPageMetadata/Fh5XP8FSr/Fh5XP8FSr.js\";const HeaderFonts=getFonts(Header);const EmbedFonts=getFonts(Embed);const FormSparkFonts=getFonts(FormSpark);const FooterFonts=getFonts(Footer);const Embed1Fonts=getFonts(Embed1);const breakpoints={ENSFIIoDW:\"(min-width: 1200px) and (max-width: 1439px)\",Gi03s4IsV:\"(max-width: 809px)\",KBRvR1xmu:\"(min-width: 1440px) and (max-width: 1459px)\",oZUP0HN3z:\"(min-width: 1920px)\",PLvB_Dfd1:\"(min-width: 810px) and (max-width: 999px)\",Stqa1c93g:\"(min-width: 1000px) and (max-width: 1199px)\",y6elYsUj5:\"(min-width: 1460px) and (max-width: 1649px)\",ywzqJRGcP:\"(min-width: 1650px) and (max-width: 1919px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-ViVA0\";const variantClassNames={ENSFIIoDW:\"framer-v-dqhuxq\",Gi03s4IsV:\"framer-v-r7mkf6\",KBRvR1xmu:\"framer-v-ki2otv\",oZUP0HN3z:\"framer-v-k7bdku\",PLvB_Dfd1:\"framer-v-1o9s5xy\",Stqa1c93g:\"framer-v-8p4j0c\",y6elYsUj5:\"framer-v-b88t22\",ywzqJRGcP:\"framer-v-1xyk1gn\"};const convertFromEnum=(value,activeLocale)=>{switch(value){case\"o_DIcIBsD\":return true;default:return false;}};const toBoolean=value=>{return Boolean(value);};const equals=(a,b)=>{return typeof a===\"string\"&&typeof b===\"string\"?a.toLowerCase()===b.toLowerCase():a===b;};const negate=value=>{return!value;};const convertFromEnum1=(value,activeLocale)=>{switch(value){case\"default\":return\"Contact us\";case\"XbqVNP394\":return\"Contacta con nosotras\";default:return\"\";}};const toString=value=>{return typeof value===\"string\"?value:String(value);};const convertFromEnum2=(value,activeLocale)=>{switch(value){case\"o_DIcIBsD\":return\"\u0627\u062A\u0635\u0644 \u0628\u0646\u0627\";default:return\"\";}};const convertFromEnum3=(value,activeLocale)=>{switch(value){case\"default\":return\"We have lots to share! Stay tuned to our social media handles.\";case\"XbqVNP394\":return\"\\xa1Tenemos mucho que compartir! Est\\xe9n atentos a nuestras redes sociales.\";default:return\"\";}};const convertFromEnum4=(value,activeLocale)=>{switch(value){case\"o_DIcIBsD\":return\"\u0644\u062F\u064A\u0646\u0627 \u0627\u0644\u0643\u062B\u064A\u0631 \u0644\u0646\u0634\u0627\u0631\u0643\u0647! \u062A\u0631\u0642\u0628\u0648\u0627 \u0645\u0642\u0627\u0628\u0636 \u0648\u0633\u0627\u0626\u0644 \u0627\u0644\u062A\u0648\u0627\u0635\u0644 \u0627\u0644\u0627\u062C\u062A\u0645\u0627\u0639\u064A \u0644\u062F\u064A\u0646\u0627.\";default:return\"\";}};const convertFromEnum5=(value,activeLocale)=>{switch(value){case\"default\":return\"Reach out anytime for assistance!\";case\"XbqVNP394\":return\"\\xa1Comun\\xedquese en cualquier momento para obtener ayuda!\";default:return\"\";}};const convertFromEnum6=(value,activeLocale)=>{switch(value){case\"default\":return\"Reach out anytime for assistance or complaints!\";default:return\"\";}};const convertFromEnum7=(value,activeLocale)=>{switch(value){case\"default\":return\"poppins\";default:return\"\";}};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"1000\":\"Stqa1c93g\",\"1200\":\"ENSFIIoDW\",\"1920\":\"oZUP0HN3z\",\"screen 1460\":\"y6elYsUj5\",Desktop:\"KBRvR1xmu\",Phone:\"Gi03s4IsV\",screen:\"ywzqJRGcP\",Tablet:\"PLvB_Dfd1\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"KBRvR1xmu\"};};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);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const visible=toBoolean(convertFromEnum(activeLocale?.id,activeLocale));const visible1=negate(equals(activeLocale?.id,\"o_DIcIBsD\"));const textContent=toString(convertFromEnum1(activeLocale?.id,activeLocale));const visible2=equals(activeLocale?.id,\"o_DIcIBsD\");const textContent1=toString(convertFromEnum2(activeLocale?.id,activeLocale));const textContent2=toString(convertFromEnum3(activeLocale?.id,activeLocale));const textContent3=toString(convertFromEnum4(activeLocale?.id,activeLocale));const textContent4=toString(convertFromEnum5(activeLocale?.id,activeLocale));const textContent5=toString(convertFromEnum6(activeLocale?.id,activeLocale));usePreloadLocalizedValues(activeLocale);const elementId=useRouteElementId(\"paeKqGCqo\");const ref1=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"KBRvR1xmu\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(252, 252, 252); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-ki2otv\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-4bnqbx-container\",nodeId:\"g1qTHfqGY\",scopeId:\"Fh5XP8FSr\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ENSFIIoDW:{variant:\"A_HPzYBpp\"},Gi03s4IsV:{style:{width:\"100%\"},variant:\"ldEFh1sq8\"},PLvB_Dfd1:{variant:\"ktmZRN0t_\"},Stqa1c93g:{variant:\"naP4i4y3W\"},ywzqJRGcP:{variant:\"JzZ9TOqbq\"}},children:/*#__PURE__*/_jsx(Header,{height:\"100%\",id:\"g1qTHfqGY\",layoutId:\"g1qTHfqGY\",style:{height:\"100%\",width:\"100%\"},variant:\"SHojJAFOh\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-16ow8tl-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"cmGvmRxoO\",scopeId:\"Fh5XP8FSr\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:\"<style>\\n \\n.framer-formspark-input{border: 1px solid #9D97A1 !important;}\\n\\n</style>\",id:\"cmGvmRxoO\",layoutId:\"cmGvmRxoO\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})}),visible&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-u8p3bo-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"kZVt87PmN\",scopeId:\"Fh5XP8FSr\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:\"<style>\\n \\np,input,textarea{    direction: rtl !important;}\\n\\n</style>\",id:\"kZVt87PmN\",layoutId:\"kZVt87PmN\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ikb97u\",\"data-framer-name\":\"Frame 47433\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fvrya0\",\"data-framer-name\":\"Frame 47432\",children:[visible1&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Gi03s4IsV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(57, 29, 68)\"},children:\"Content\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(57, 29, 68)\"},children:\"Content\"})}),className:\"framer-gprjls\",\"data-framer-name\":\"Contact us\",fonts:[\"GF;Poppins-700\"],text:textContent,verticalAlignment:\"center\",withExternalLayout:true})}),visible2&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Gi03s4IsV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(57, 29, 68)\"},children:\"Content\"})}),fonts:[\"GF;Poppins-700\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VGFqYXdhbC03MDA=\",\"--framer-font-family\":'\"Tajawal\", \"Tajawal Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(57, 29, 68)\"},children:\"Content\"})}),className:\"framer-tr9t9a\",\"data-framer-name\":\"Contact us\",fonts:[\"GF;Tajawal-700\"],text:textContent1,verticalAlignment:\"center\",withExternalLayout:true})}),visible1&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Gi03s4IsV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(57, 29, 68)\"},children:\"Content\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(57, 29, 68)\"},children:\"Content\"})}),className:\"framer-1wsaui4\",\"data-framer-name\":\"Subtitle\",fonts:[\"GF;Poppins-regular\"],text:textContent2,verticalAlignment:\"top\",withExternalLayout:true})}),visible2&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Gi03s4IsV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(57, 29, 68)\"},children:\"Content\"})}),fonts:[\"GF;Poppins-regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VGFqYXdhbC1yZWd1bGFy\",\"--framer-font-family\":'\"Tajawal\", \"Tajawal Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(57, 29, 68)\"},children:\"Content\"})}),className:\"framer-v8d51y\",\"data-framer-name\":\"Subtitle\",fonts:[\"GF;Tajawal-regular\"],text:textContent3,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12l5di8\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/virginconnect/\",motionChild:true,nodeId:\"pBnxEO2Gh\",scopeId:\"Fh5XP8FSr\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1d6ywo2 framer-57g0e7\",\"data-framer-name\":\"Social button - Twitter\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:50,intrinsicWidth:51,svg:'<svg width=\"51\" height=\"50\" viewBox=\"0 0 51 50\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect x=\"0.5\" width=\"50\" height=\"50\" rx=\"8\" fill=\"white\"/>\\n<path d=\"M30.8125 12.5H19.5625C17.8226 12.5019 16.1545 13.1939 14.9242 14.4242C13.6939 15.6545 13.0019 17.3226 13 19.0625V30.3125C13.0019 32.0524 13.6939 33.7205 14.9242 34.9508C16.1545 36.1811 17.8226 36.8731 19.5625 36.875H30.8125C32.5524 36.8731 34.2205 36.1811 35.4508 34.9508C36.6811 33.7205 37.3731 32.0524 37.375 30.3125V19.0625C37.3731 17.3226 36.6811 15.6545 35.4508 14.4242C34.2205 13.1939 32.5524 12.5019 30.8125 12.5ZM25.1875 30.3125C24.075 30.3125 22.9874 29.9826 22.0624 29.3645C21.1374 28.7464 20.4164 27.8679 19.9907 26.8401C19.5649 25.8123 19.4535 24.6813 19.6706 23.5901C19.8876 22.499 20.4234 21.4967 21.21 20.71C21.9967 19.9234 22.999 19.3876 24.0901 19.1706C25.1813 18.9535 26.3123 19.0649 27.3401 19.4907C28.3679 19.9164 29.2464 20.6374 29.8645 21.5624C30.4826 22.4874 30.8125 23.575 30.8125 24.6875C30.8109 26.1789 30.2178 27.6087 29.1633 28.6633C28.1087 29.7178 26.6789 30.3109 25.1875 30.3125ZM32.2188 19.0625C31.9406 19.0625 31.6687 18.98 31.4375 18.8255C31.2062 18.671 31.026 18.4514 30.9195 18.1944C30.8131 17.9374 30.7853 17.6547 30.8395 17.3819C30.8938 17.1091 31.0277 16.8585 31.2244 16.6619C31.421 16.4652 31.6716 16.3313 31.9444 16.277C32.2172 16.2228 32.4999 16.2506 32.7569 16.357C33.0139 16.4635 33.2335 16.6437 33.388 16.875C33.5425 17.1062 33.625 17.3781 33.625 17.6562C33.625 18.0292 33.4768 18.3869 33.2131 18.6506C32.9494 18.9143 32.5917 19.0625 32.2188 19.0625ZM28.9375 24.6875C28.9375 25.4292 28.7176 26.1542 28.3055 26.7709C27.8935 27.3876 27.3078 27.8682 26.6226 28.152C25.9373 28.4359 25.1833 28.5101 24.4559 28.3654C23.7285 28.2208 23.0603 27.8636 22.5358 27.3391C22.0114 26.8147 21.6542 26.1465 21.5096 25.4191C21.3649 24.6917 21.4391 23.9377 21.723 23.2524C22.0068 22.5672 22.4874 21.9815 23.1041 21.5695C23.7208 21.1574 24.4458 20.9375 25.1875 20.9375C26.1821 20.9375 27.1359 21.3326 27.8391 22.0358C28.5424 22.7391 28.9375 23.6929 28.9375 24.6875Z\" fill=\"#E10A0A\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.youtube.com/@Virgin_Connect\",motionChild:true,nodeId:\"pLdjjKmrl\",openInNewTab:true,scopeId:\"Fh5XP8FSr\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-z7nfbv framer-57g0e7\",\"data-framer-name\":\"Social button - Twitter\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:50,intrinsicWidth:51,svg:'<svg width=\"51\" height=\"50\" viewBox=\"0 0 51 50\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect x=\"0.5\" width=\"50\" height=\"50\" rx=\"8\" fill=\"white\"/>\\n<path d=\"M37.9605 18.1469C37.8501 17.7149 37.6386 17.3153 37.3433 16.9811C37.0481 16.647 36.6776 16.3878 36.2625 16.225C32.2453 14.6734 25.8516 14.6875 25.5 14.6875C25.1484 14.6875 18.7547 14.6734 14.7375 16.225C14.3224 16.3878 13.9519 16.647 13.6567 16.9811C13.3614 17.3153 13.1499 17.7149 13.0395 18.1469C12.7359 19.3164 12.375 21.4539 12.375 25C12.375 28.5461 12.7359 30.6836 13.0395 31.8531C13.1497 32.2854 13.3612 32.6852 13.6564 33.0195C13.9517 33.3539 14.3222 33.6133 14.7375 33.7762C18.5859 35.2609 24.6094 35.3125 25.4227 35.3125H25.5773C26.3906 35.3125 32.4176 35.2609 36.2625 33.7762C36.6778 33.6133 37.0483 33.3539 37.3436 33.0195C37.6388 32.6852 37.8503 32.2854 37.9605 31.8531C38.2641 30.6813 38.625 28.5461 38.625 25C38.625 21.4539 38.2641 19.3164 37.9605 18.1469ZM29.3191 25.7641L24.6316 29.0453C24.4914 29.1435 24.327 29.2015 24.1562 29.2129C23.9853 29.2243 23.8146 29.1887 23.6626 29.11C23.5106 29.0312 23.383 28.9124 23.2938 28.7663C23.2045 28.6202 23.1569 28.4525 23.1562 28.2813V21.7188C23.1563 21.5473 23.2034 21.3791 23.2924 21.2325C23.3814 21.0859 23.5089 20.9665 23.6611 20.8873C23.8132 20.8082 23.9841 20.7723 24.1553 20.7835C24.3264 20.7948 24.4912 20.8528 24.6316 20.9512L29.3191 24.2324C29.4424 24.3189 29.5431 24.4338 29.6126 24.5674C29.6821 24.701 29.7184 24.8494 29.7184 25C29.7184 25.1506 29.6821 25.299 29.6126 25.4326C29.5431 25.5662 29.4424 25.6811 29.3191 25.7676V25.7641Z\" fill=\"#E10A0A\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.tiktok.com/@virgin_connect\",motionChild:true,nodeId:\"CNIGzL6vv\",scopeId:\"Fh5XP8FSr\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-8vvwhr framer-57g0e7\",\"data-framer-name\":\"Social button - Facebook\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:50,intrinsicWidth:51,svg:'<svg width=\"51\" height=\"50\" viewBox=\"0 0 51 50\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect x=\"0.5\" width=\"50\" height=\"50\" rx=\"8\" fill=\"white\"/>\\n<path d=\"M34.5 20.6995V24.6089C34.5 24.8163 34.423 25.0152 34.286 25.1618C34.1489 25.3085 33.963 25.3908 33.7692 25.3908C32.2427 25.3946 30.738 25.0019 29.3846 24.2463V28.1275C29.3846 30.0975 28.6532 31.9868 27.3513 33.3798C26.0493 34.7729 24.2835 35.5554 22.4423 35.5554C20.6011 35.5554 18.8353 34.7729 17.5334 33.3798C16.2314 31.9868 15.5 30.0975 15.5 28.1275C15.5 24.521 17.9581 21.3328 21.2183 20.7112C21.3234 20.6912 21.4314 20.6961 21.5346 20.7256C21.6378 20.7551 21.7338 20.8084 21.8156 20.8818C21.8975 20.9553 21.9633 21.047 22.0085 21.1506C22.0536 21.2542 22.077 21.3671 22.0769 21.4814V25.6537C22.077 25.8017 22.0378 25.9467 21.9639 26.0718C21.89 26.1969 21.7844 26.2969 21.6595 26.3604C21.3641 26.5103 21.1117 26.7422 20.9287 27.032C20.7456 27.3218 20.6386 27.6589 20.6187 28.008C20.5989 28.3571 20.667 28.7056 20.8159 29.017C20.9648 29.3284 21.1891 29.5913 21.4654 29.7783C21.7416 29.9654 22.0597 30.0697 22.3865 30.0804C22.7132 30.0911 23.0367 30.0078 23.3231 29.8391C23.6095 29.6705 23.8484 29.4227 24.0148 29.1216C24.1812 28.8206 24.2691 28.4772 24.2692 28.1275V15.2262C24.2692 15.0189 24.3462 14.82 24.4833 14.6733C24.6203 14.5267 24.8062 14.4443 25 14.4443H28.6538C28.8477 14.4443 29.0335 14.5267 29.1706 14.6733C29.3076 14.82 29.3846 15.0189 29.3846 15.2262C29.3858 16.4701 29.8482 17.6626 30.6702 18.5421C31.4922 19.4216 32.6067 19.9163 33.7692 19.9176C33.963 19.9176 34.1489 20 34.286 20.1466C34.423 20.2932 34.5 20.4921 34.5 20.6995Z\" fill=\"#E10A0A\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.snapchat.com/add/virgin_connect?invite_id=BE4uN2tX&locale=en_US&share_id=VWKQy6vZT-SesGwioIvKDA&xp_id=1&sid=8ddcaa0cda6d4d21b10725aa19b57c95\",motionChild:true,nodeId:\"ZC8tuNBOr\",scopeId:\"Fh5XP8FSr\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1vidvui framer-57g0e7\",\"data-framer-name\":\"Social button - Twitter\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:50,intrinsicWidth:51,svg:'<svg width=\"51\" height=\"50\" viewBox=\"0 0 51 50\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect x=\"0.5\" width=\"50\" height=\"50\" rx=\"8\" fill=\"white\"/>\\n<path d=\"M35.3891 30.2812C34.7645 30.8679 33.8347 30.9593 32.9365 31.0482C32.3814 31.1027 31.8078 31.1599 31.4946 31.3322C31.1982 31.4958 30.892 31.9145 30.5964 32.3191C30.1214 32.9708 29.5821 33.7088 28.7288 33.9269C28.5379 33.9754 28.3416 33.9993 28.1447 33.9981C27.5394 33.9981 26.9395 33.7941 26.394 33.6085C25.9058 33.4423 25.4439 33.2848 25.056 33.2848C24.668 33.2848 24.2062 33.4423 23.718 33.6085C22.9975 33.8539 22.1811 34.1362 21.3832 33.9269C20.529 33.7088 19.9897 32.9708 19.5147 32.3191C19.2191 31.9145 18.913 31.4958 18.6165 31.3322C18.3033 31.1563 17.7297 31.1027 17.1755 31.0482C16.2765 30.9602 15.3466 30.8679 14.722 30.2812C14.6342 30.1988 14.569 30.0952 14.5327 29.9804C14.4964 29.8655 14.4902 29.7433 14.5147 29.6254C14.5391 29.5075 14.5934 29.3978 14.6724 29.3069C14.7514 29.216 14.8523 29.1469 14.9657 29.1061C14.9736 29.1061 16.0952 28.6787 17.1966 27.435C17.8787 26.6552 18.4081 25.7541 18.7572 24.7788L17.0497 24.0971C16.9639 24.0625 16.8857 24.0113 16.8197 23.9464C16.7536 23.8815 16.701 23.8043 16.6648 23.7191C16.6287 23.634 16.6096 23.5425 16.6088 23.4499C16.6079 23.3574 16.6254 23.2656 16.66 23.1798C16.6947 23.0939 16.7459 23.0158 16.8108 22.9498C16.8756 22.8837 16.9529 22.8311 17.0381 22.7949C17.1233 22.7588 17.2148 22.7397 17.3073 22.7389C17.3999 22.7381 17.4917 22.7555 17.5776 22.7901L19.1478 23.419C19.3382 22.5014 19.4311 21.5662 19.4249 20.6291C19.4249 19.1362 20.0181 17.7044 21.074 16.6487C22.1298 15.5931 23.5619 15 25.0551 15C26.5483 15 27.9804 15.5931 29.0362 16.6487C30.0921 17.7044 30.6853 19.1362 30.6853 20.6291C30.6793 21.5668 30.7739 22.5024 30.9677 23.4199L32.5327 22.7901C32.6185 22.7555 32.7103 22.7381 32.8029 22.7389C32.8955 22.7397 32.987 22.7588 33.0722 22.7949C33.1574 22.8311 33.2346 22.8837 33.2995 22.9498C33.3643 23.0158 33.4156 23.0939 33.4502 23.1798C33.4849 23.2656 33.5023 23.3574 33.5015 23.4499C33.5006 23.5425 33.4816 23.634 33.4454 23.7191C33.4092 23.8043 33.3566 23.8815 33.2906 23.9464C33.2245 24.0113 33.1463 24.0625 33.0605 24.0971L31.3627 24.7761C32.6013 28.1492 35.1138 29.0938 35.1454 29.1061C35.2588 29.1469 35.3598 29.216 35.4387 29.3069C35.5177 29.3978 35.572 29.5075 35.5965 29.6254C35.6209 29.7433 35.6147 29.8655 35.5784 29.9804C35.5421 30.0952 35.4769 30.1988 35.3891 30.2812Z\" fill=\"#E10A0A\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://x.com/_VirginConnect\",motionChild:true,nodeId:\"fouuBpszb\",scopeId:\"Fh5XP8FSr\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1rs720 framer-57g0e7\",\"data-framer-name\":\"Social button - Twitter\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:50,intrinsicWidth:51,svg:'<svg width=\"51\" height=\"50\" viewBox=\"0 0 51 50\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect x=\"0.5\" width=\"50\" height=\"50\" rx=\"8\" fill=\"white\"/>\\n<path d=\"M34.3942 34.993C34.3206 35.1296 34.2124 35.2435 34.0809 35.3229C33.9494 35.4023 33.7994 35.4443 33.6465 35.4446H28.5191C28.3753 35.4445 28.2338 35.4075 28.1077 35.3369C27.9817 35.2664 27.8752 35.1646 27.798 35.0409L23.4729 28.1182L17.1876 35.1595C17.0343 35.3271 16.8224 35.4265 16.5977 35.4361C16.3731 35.4456 16.1537 35.3646 15.9873 35.2106C15.8209 35.0565 15.7208 34.8419 15.7087 34.6132C15.6967 34.3845 15.7736 34.1602 15.9228 33.9889L22.5211 26.5907L15.8341 15.8939C15.7518 15.7623 15.7057 15.6105 15.7007 15.4546C15.6956 15.2986 15.7319 15.1441 15.8056 15.0073C15.8793 14.8705 15.9878 14.7564 16.1197 14.6769C16.2515 14.5975 16.402 14.5556 16.5552 14.5557H21.6826C21.8264 14.5557 21.9679 14.5927 22.0939 14.6633C22.22 14.7338 22.3265 14.8357 22.4036 14.9593L26.7288 21.882L33.0141 14.8407C33.1673 14.6731 33.3792 14.5737 33.6039 14.5641C33.8286 14.5546 34.0479 14.6356 34.2143 14.7896C34.3807 14.9437 34.4808 15.1583 34.4929 15.387C34.505 15.6157 34.4281 15.84 34.2789 16.0114L27.6805 23.4041L34.3675 34.1074C34.4494 34.2391 34.4951 34.3907 34.4998 34.5465C34.5045 34.7023 34.468 34.8565 34.3942 34.993Z\" fill=\"#E10A0A\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.facebook.com/VirginConnect/\",motionChild:true,nodeId:\"SMPqOh3Ci\",scopeId:\"Fh5XP8FSr\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-kvtsz framer-57g0e7\",\"data-framer-name\":\"Social button - Twitter\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:50,intrinsicWidth:50,svg:'<svg width=\"50\" height=\"50\" viewBox=\"0 0 50 50\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"50\" height=\"50\" rx=\"8\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M26.3145 36.3371V24.5482H29.5687L30 20.4858H26.3145L26.32 18.4524C26.32 17.3929 26.4207 16.8252 27.9426 16.8252H29.977V12.7622H26.7223C22.8129 12.7622 21.4369 14.733 21.4369 18.0471V20.4862H19V24.5487H21.4369V36.3371H26.3145Z\" fill=\"#E10A0A\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-3t267h\",\"data-framer-name\":\"Frame 47440\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1giffw3\",\"data-border\":true,\"data-framer-name\":\"Frame 47439\",children:[visible1&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Gi03s4IsV:{text:textContent5}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"rgb(19, 28, 53)\"},children:\"Content\"})}),className:\"framer-kcuv9z\",\"data-framer-name\":\"Subtitle\",fonts:[\"GF;Poppins-700\"],text:textContent4,verticalAlignment:\"top\",withExternalLayout:true})}),visible2&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VGFqYXdhbC03MDA=\",\"--framer-font-family\":'\"Tajawal\", \"Tajawal Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"rgb(19, 28, 53)\",direction:\"rtl\"},children:\"\u062A\u0648\u0627\u0635\u0644 \u0645\u0639\u0646\u0627 \u0641\u064A \u0623\u064A \u0648\u0642\u062A \u0644\u0644\u062D\u0635\u0648\u0644 \u0639\u0644\u0649 \u0627\u0644\u0645\u0633\u0627\u0639\u062F\u0629!\"})}),className:\"framer-76t0i\",\"data-framer-name\":\"Subtitle\",fonts:[\"GF;Tajawal-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1g668dc\",\"data-framer-name\":\"Line 6\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:3,intrinsicWidth:662,svg:'<svg width=\"662\" height=\"3\" viewBox=\"-1 -1 662 3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.5\" y1=\"0.5\" x2=\"659.5\" y2=\"0.5\" stroke=\"#D0D2D7\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1keezkg\",\"data-framer-name\":\"Header\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jjc59b-container\",id:\"1jjc59b\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"aRNnvMpjT\",scopeId:\"Fh5XP8FSr\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Gi03s4IsV:{font:false,layout:\"vertical\"}},children:/*#__PURE__*/_jsx(FormSpark,{borderRadius:8,bottomLeftRadius:8,bottomRightRadius:8,button:{color:\"rgb(255, 255, 255)\",fill:\"var(--token-1268ab5e-ab76-47aa-a12a-d01bbb755174, rgb(225, 10, 10))\",fontWeight:600,label:getLocalizedValue(\"v3\",activeLocale)??\"Submit\"},email:{placeholder:getLocalizedValue(\"v1\",activeLocale)??\"Email\",value:\"\"},font:true,fontFamily:toString(convertFromEnum7(activeLocale?.id,activeLocale)),fontSize:16,fontWeight:600,formId:\"IDCLX2yPk\",gap:15,height:\"100%\",id:\"aRNnvMpjT\",inputs:{color:\"rgb(215, 210, 218)\",error:\"rgb(238, 68, 68)\",fill:\"rgb(255, 255, 255)\",placeholderColor:\"rgb(215, 210, 218)\"},isMixedBorderRadius:false,layout:\"horizontal\",layoutId:\"aRNnvMpjT\",message:{placeholder:getLocalizedValue(\"v2\",activeLocale)??\"Message\",value:\"\"},nameField:{placeholder:getLocalizedValue(\"v0\",activeLocale)??\"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(ComponentViewportProvider,{height:190,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+1142,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lh1rqn-container\",id:elementId,nodeId:\"paeKqGCqo\",ref:ref1,scopeId:\"Fh5XP8FSr\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ENSFIIoDW:{variant:\"RnS1KXdvW\"},Gi03s4IsV:{variant:\"MoXaz3oZT\"},PLvB_Dfd1:{variant:\"x5ADnsMzj\"},Stqa1c93g:{variant:\"akbyLQUoz\"},ywzqJRGcP:{variant:\"OFPLES1L3\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"paeKqGCqo\",layoutId:\"paeKqGCqo\",style:{height:\"100%\",width:\"100%\"},variant:\"v0DLRCPxt\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1k6te68-container\",isModuleExternal:true,nodeId:\"eoUEXL4WH\",scopeId:\"Fh5XP8FSr\",children:/*#__PURE__*/_jsx(Embed1,{height:\"100%\",html:\"<style>#loader {\\n    -moz-animation: cssAnimation 0s ease-in 6s forwards;\\n    /* Firefox */\\n    -webkit-animation: cssAnimation 0s ease-in 6s forwards;\\n    /* Safari and Chrome */\\n    -o-animation: cssAnimation 0s ease-in 6s forwards;\\n    /* Opera */\\n    animation: cssAnimation 0s ease-in 6s forwards;\\n    -webkit-animation-fill-mode: forwards;\\n    animation-fill-mode: forwards;\\n}\\n@keyframes cssAnimation {\\n    to {\\n        width:0;\\n        height:0;\\n        overflow:hidden;\\n    }\\n}\\n@-webkit-keyframes cssAnimation {\\n    to {\\n        width:0;\\n        height:0;\\n        visibility:hidden;\\n    }\\n}\\n</style>\",id:\"eoUEXL4WH\",layoutId:\"eoUEXL4WH\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ViVA0.framer-57g0e7, .framer-ViVA0 .framer-57g0e7 { display: block; }\",\".framer-ViVA0.framer-ki2otv { align-content: center; align-items: center; background-color: #fcfcfc; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-ViVA0 .framer-4bnqbx-container { flex: none; height: 100px; position: relative; width: 100%; z-index: 1; }\",\".framer-ViVA0 .framer-16ow8tl-container, .framer-ViVA0 .framer-u8p3bo-container { flex: none; height: 1px; position: relative; width: 100%; }\",\".framer-ViVA0 .framer-1ikb97u { background-color: #f8f4fb; flex: none; height: 355px; overflow: hidden; position: relative; width: 100%; }\",\".framer-ViVA0 .framer-fvrya0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 78px; transform: translateX(-50%); width: 649px; }\",\".framer-ViVA0 .framer-gprjls { --framer-paragraph-spacing: 0px; flex: none; height: 54px; position: relative; white-space: pre-wrap; width: 110%; word-break: break-word; word-wrap: break-word; }\",\".framer-ViVA0 .framer-tr9t9a { --framer-paragraph-spacing: 0px; flex: none; height: 54px; position: relative; white-space: pre-wrap; width: 541px; word-break: break-word; word-wrap: break-word; }\",\".framer-ViVA0 .framer-1wsaui4 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-ViVA0 .framer-v8d51y { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 470px; word-break: break-word; word-wrap: break-word; }\",\".framer-ViVA0 .framer-12l5di8 { bottom: 62px; flex: none; height: 50px; left: calc(50.00000000000002% - 376px / 2); overflow: hidden; position: absolute; width: 376px; }\",\".framer-ViVA0 .framer-1d6ywo2 { bottom: 0px; flex: none; left: 64px; position: absolute; text-decoration: none; top: 0px; width: 51px; }\",\".framer-ViVA0 .framer-z7nfbv { bottom: 0px; flex: none; left: 129px; position: absolute; text-decoration: none; top: 0px; width: 51px; }\",\".framer-ViVA0 .framer-8vvwhr { bottom: 0px; flex: none; left: 194px; position: absolute; text-decoration: none; top: 0px; width: 51px; }\",\".framer-ViVA0 .framer-1vidvui { bottom: 0px; flex: none; left: 260px; position: absolute; text-decoration: none; top: 0px; width: 51px; }\",\".framer-ViVA0 .framer-1rs720 { bottom: 0px; flex: none; position: absolute; right: 0px; text-decoration: none; top: 0px; width: 51px; }\",\".framer-ViVA0 .framer-kvtsz { flex: none; height: 50px; left: 0px; position: absolute; text-decoration: none; top: 0px; width: 50px; }\",\".framer-ViVA0 .framer-3t267h { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 60px 0px 60px 0px; position: relative; width: 100%; }\",\".framer-ViVA0 .framer-1giffw3 { --border-bottom-width: 1px; --border-color: #d7d2da; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 26px; height: min-content; justify-content: flex-start; overflow: visible; padding: 50px 40px 50px 40px; position: relative; width: 739px; }\",\".framer-ViVA0 .framer-kcuv9z, .framer-ViVA0 .framer-76t0i { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 659px; word-break: break-word; word-wrap: break-word; }\",\".framer-ViVA0 .framer-1g668dc { flex: none; height: 3px; position: relative; width: 662px; }\",\".framer-ViVA0 .framer-1keezkg { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ViVA0 .framer-1jjc59b-container { flex: none; height: 290px; position: relative; width: 100%; }\",\".framer-ViVA0 .framer-1lh1rqn-container { flex: none; height: 190px; position: relative; width: 100%; }\",\".framer-ViVA0 .framer-1k6te68-container { flex: none; height: 1px; position: relative; width: 31%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-ViVA0.framer-ki2otv, .framer-ViVA0 .framer-fvrya0, .framer-ViVA0 .framer-3t267h, .framer-ViVA0 .framer-1giffw3, .framer-ViVA0 .framer-1keezkg { gap: 0px; } .framer-ViVA0.framer-ki2otv > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-ViVA0.framer-ki2otv > :first-child, .framer-ViVA0 .framer-fvrya0 > :first-child, .framer-ViVA0 .framer-1giffw3 > :first-child, .framer-ViVA0 .framer-1keezkg > :first-child { margin-top: 0px; } .framer-ViVA0.framer-ki2otv > :last-child, .framer-ViVA0 .framer-fvrya0 > :last-child, .framer-ViVA0 .framer-1giffw3 > :last-child, .framer-ViVA0 .framer-1keezkg > :last-child { margin-bottom: 0px; } .framer-ViVA0 .framer-fvrya0 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-ViVA0 .framer-3t267h > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-ViVA0 .framer-3t267h > :first-child { margin-left: 0px; } .framer-ViVA0 .framer-3t267h > :last-child { margin-right: 0px; } .framer-ViVA0 .framer-1giffw3 > * { margin: 0px; margin-bottom: calc(26px / 2); margin-top: calc(26px / 2); } .framer-ViVA0 .framer-1keezkg > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }\",'.framer-ViVA0[data-border=\"true\"]::after, .framer-ViVA0 [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; }',\"@media (max-width: 809px) { .framer-ViVA0.framer-ki2otv { width: 390px; } .framer-ViVA0 .framer-4bnqbx-container { height: auto; order: 0; } .framer-ViVA0 .framer-16ow8tl-container { order: 1; } .framer-ViVA0 .framer-u8p3bo-container { order: 2; } .framer-ViVA0 .framer-1ikb97u { order: 4; } .framer-ViVA0 .framer-fvrya0 { padding: 0px 20px 0px 20px; width: 100%; } .framer-ViVA0 .framer-gprjls, .framer-ViVA0 .framer-tr9t9a, .framer-ViVA0 .framer-v8d51y, .framer-ViVA0 .framer-kcuv9z, .framer-ViVA0 .framer-76t0i, .framer-ViVA0 .framer-1g668dc { width: 100%; } .framer-ViVA0 .framer-1d6ywo2 { bottom: unset; height: 41px; left: 86px; top: calc(50.00000000000002% - 41px / 2); width: 42px; } .framer-ViVA0 .framer-z7nfbv { bottom: unset; height: 41px; left: 140px; top: calc(50.00000000000002% - 41px / 2); width: 42px; } .framer-ViVA0 .framer-8vvwhr { bottom: unset; height: 41px; left: 193px; top: calc(50.00000000000002% - 41px / 2); width: 41px; } .framer-ViVA0 .framer-1vidvui { bottom: unset; height: 41px; left: 247px; top: calc(50.00000000000002% - 41px / 2); width: 42px; } .framer-ViVA0 .framer-1rs720 { bottom: unset; height: 41px; left: 301px; right: unset; top: calc(50.00000000000002% - 41px / 2); width: 41px; } .framer-ViVA0 .framer-kvtsz { height: 41px; left: 34px; top: calc(50.00000000000002% - 41px / 2); width: 41px; } .framer-ViVA0 .framer-3t267h { order: 5; padding: 60px 30px 60px 30px; } .framer-ViVA0 .framer-1giffw3 { padding: 50px 20px 50px 20px; width: 100%; } .framer-ViVA0 .framer-1jjc59b-container { order: 0; } .framer-ViVA0 .framer-1lh1rqn-container { order: 6; } .framer-ViVA0 .framer-1k6te68-container { order: 9; }}\",\"@media (min-width: 810px) and (max-width: 999px) { .framer-ViVA0.framer-ki2otv { width: 810px; } .framer-ViVA0 .framer-4bnqbx-container { order: 0; } .framer-ViVA0 .framer-16ow8tl-container { order: 1; } .framer-ViVA0 .framer-u8p3bo-container { order: 2; } .framer-ViVA0 .framer-1ikb97u { order: 3; } .framer-ViVA0 .framer-3t267h { order: 4; } .framer-ViVA0 .framer-1lh1rqn-container { order: 5; } .framer-ViVA0 .framer-1k6te68-container { order: 9; }}\",\"@media (min-width: 1200px) and (max-width: 1439px) { .framer-ViVA0.framer-ki2otv { width: 1200px; }}\",\"@media (min-width: 1920px) { .framer-ViVA0.framer-ki2otv { width: 1920px; }}\",\"@media (min-width: 1650px) and (max-width: 1919px) { .framer-ViVA0.framer-ki2otv { width: 1650px; }}\",\"@media (min-width: 1000px) and (max-width: 1199px) { .framer-ViVA0.framer-ki2otv { width: 1000px; }}\",\"@media (min-width: 1460px) and (max-width: 1649px) { .framer-ViVA0.framer-ki2otv { width: 1460px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1236\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Gi03s4IsV\":{\"layout\":[\"fixed\",\"auto\"]},\"PLvB_Dfd1\":{\"layout\":[\"fixed\",\"auto\"]},\"ENSFIIoDW\":{\"layout\":[\"fixed\",\"auto\"]},\"oZUP0HN3z\":{\"layout\":[\"fixed\",\"auto\"]},\"ywzqJRGcP\":{\"layout\":[\"fixed\",\"auto\"]},\"Stqa1c93g\":{\"layout\":[\"fixed\",\"auto\"]},\"y6elYsUj5\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"paeKqGCqo\":{\"pattern\":\":paeKqGCqo\",\"name\":\"footer\"}}\n * @framerResponsiveScreen\n */const FramerFh5XP8FSr=withCSS(Component,css,\"framer-ViVA0\");export default FramerFh5XP8FSr;FramerFh5XP8FSr.displayName=\"Page\";FramerFh5XP8FSr.defaultProps={height:1236,width:1440};addFonts(FramerFh5XP8FSr,[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLCz7V15vFP-KUEg.woff2\",weight:\"700\"},{family:\"Tajawal\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/tajawal/v10/Iurf6YBj_oCad4k1l4qkLrNjiLlJ-G0.woff2\",weight:\"700\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiEyp8kv8JHgFVrFJXUc1NECPY.woff2\",weight:\"400\"},{family:\"Tajawal\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/tajawal/v10/Iura6YBj_oCad4k1rzOLCr5IlLA.woff2\",weight:\"400\"}]},...HeaderFonts,...EmbedFonts,...FormSparkFonts,...FooterFonts,...Embed1Fonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerFh5XP8FSr\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"1236\",\"framerIntrinsicWidth\":\"1440\",\"framerScrollSections\":\"{\\\"paeKqGCqo\\\":{\\\"pattern\\\":\\\":paeKqGCqo\\\",\\\"name\\\":\\\"footer\\\"}}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Gi03s4IsV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"PLvB_Dfd1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ENSFIIoDW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"oZUP0HN3z\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ywzqJRGcP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Stqa1c93g\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"y6elYsUj5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerResponsiveScreen\":\"\",\"framerAcceptsLayoutTemplate\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["emailRegex", "validateEmail", "email", "FormSpark", "withCSS", "formId", "withName", "name", "withEmail", "withMessage", "message", "layout", "inputs", "button", "style", "gap", "onSubmit", "props", "nameValue", "setName", "ye", "emailValue", "setEmail", "messageValue", "setMessage", "isNameError", "setNameError", "isEmailError", "setEmailError", "isMessageError", "setMessageError", "isLoading", "setLoading", "isSuccess", "setSuccess", "isCanvas", "se", "RenderTarget", "gridTemplateRows", "rows", "gridTemplateColumns", "cols", "fontFamily", "fontSize", "fontWeight", "useFontControls", "borderRadius", "useRadius", "paddingValue", "usePadding", "validateForm", "te", "error", "handleSubmit", "event", "data", "entries", "handleNameChange", "handleEmailChange", "handleMessageChange", "p", "motion", "containerStyles", "u", "defaultStyle", "addPropertyControls", "ControlType", "fontControls", "paddingControl", "borderRadiusControl", "FormSpark_default", "valuesByLocaleId", "LazyValue", "getLocalizedValue", "key", "locale", "values", "value", "preload", "promises", "promise", "usePreloadLocalizedValues", "preloadPromise", "HeaderFonts", "getFonts", "UWmdp7f9Q_default", "EmbedFonts", "Embed", "FormSparkFonts", "FormSpark_default", "FooterFonts", "lPPdNeT3o_default", "Embed1Fonts", "breakpoints", "serializationHash", "variantClassNames", "convertFromEnum", "value", "activeLocale", "toBoolean", "equals", "a", "b", "negate", "convertFromEnum1", "toString", "convertFromEnum2", "convertFromEnum3", "convertFromEnum4", "convertFromEnum5", "convertFromEnum6", "convertFromEnum7", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "visible", "visible1", "textContent", "visible2", "textContent1", "textContent2", "textContent3", "textContent4", "textContent5", "usePreloadLocalizedValues", "elementId", "useRouteElementId", "ref1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "PropertyOverrides2", "UWmdp7f9Q_default", "Embed", "x", "RichText2", "Link", "SVG", "FormSpark_default", "getLocalizedValue", "lPPdNeT3o_default", "css", "FramerFh5XP8FSr", "withCSS", "Fh5XP8FSr_default", "addFonts", "HeaderFonts", "EmbedFonts", "FormSparkFonts", "FooterFonts", "Embed1Fonts", "__FramerMetadata__"]
}
