{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/vkHAj2Yk0mTnbM6ZdN5c/Foxm7T4YpJpvPgDlEus0/FormSpark.js", "ssg:https://framerusercontent.com/modules/awDKEzzcT1CJdUhsy7vc/hAt0V20zN4ZCI9HGaujL/FTbASwQwH.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 (a4439fa)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,Image,LazyValue,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 FooterFooter from\"#framer/local/canvasComponent/Q7IClRTvI/Q7IClRTvI.js\";import NavbarNav from\"#framer/local/canvasComponent/stV_yiev2/stV_yiev2.js\";import metadataProvider from\"#framer/local/webPageMetadata/FTbASwQwH/FTbASwQwH.js\";const NavbarNavFonts=getFonts(NavbarNav);const RichTextWithFX=withFX(RichText);const MotionDivWithFX=withFX(motion.div);const FormSparkFonts=getFonts(FormSpark);const FooterFooterFonts=getFonts(FooterFooter);const cycleOrder=[\"IPnrvQbri\",\"uTvcR6KUs\",\"EnXI1sBV_\"];const breakpoints={EnXI1sBV_:\"(max-width: 809px)\",IPnrvQbri:\"(min-width: 1300px)\",uTvcR6KUs:\"(min-width: 810px) and (max-width: 1299px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-2nT6N\";const variantClassNames={EnXI1sBV_:\"framer-v-8hmgrp\",IPnrvQbri:\"framer-v-3pbhk\",uTvcR6KUs:\"framer-v-2ykfmb\"};const valuesByLocaleId={prQBfdUoW:new LazyValue(()=>import(\"./FTbASwQwH-0.js\"))};const preloadLocalizedValues=locale=>{const promises=[];while(locale){const values=valuesByLocaleId[locale.id];if(values){const promise=values.preload();if(promise){promises.push(promise);}}locale=locale.fallback;}if(promises.length>0){return Promise.all(promises);}};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values.read()[key];if(value){return value;}}locale=locale.fallback;}};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:80};const transition1={damping:45,delay:0,mass:1,stiffness:260,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:80};const transition2={damping:45,delay:.3,mass:1,stiffness:260,type:\"spring\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:80};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"IPnrvQbri\",Phone:\"EnXI1sBV_\",Tablet:\"uTvcR6KUs\"};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:\"IPnrvQbri\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useInsertionEffect(()=>{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-2nT6N`);return()=>{document.body.classList.remove(`${metadata1.bodyClassName}-framer-2nT6N`);};}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const preloadPromise=preloadLocalizedValues(activeLocale);if(preloadPromise)throw preloadPromise;const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];useCustomCursors({});var _getLocalizedValue,_getLocalizedValue1,_getLocalizedValue2,_getLocalizedValue3,_getLocalizedValue4,_getLocalizedValue5,_getLocalizedValue6,_getLocalizedValue7,_getLocalizedValue8,_getLocalizedValue9,_getLocalizedValue10,_getLocalizedValue11,_getLocalizedValue12,_getLocalizedValue13,_getLocalizedValue14,_getLocalizedValue15,_getLocalizedValue16,_getLocalizedValue17,_getLocalizedValue18,_getLocalizedValue19,_getLocalizedValue20,_getLocalizedValue21,_getLocalizedValue22,_getLocalizedValue23;return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"IPnrvQbri\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-3pbhk\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1b62wdi\",\"data-framer-name\":\"Navbar\",name:\"Navbar\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EnXI1sBV_:{width:\"calc(100vw - 20px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"max(100vw - 20px, 1px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-aw09w3-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EnXI1sBV_:{variant:\"pIMPPscSS\"},uTvcR6KUs:{variant:\"pIMPPscSS\"}},children:/*#__PURE__*/_jsx(NavbarNav,{height:\"100%\",id:\"i9mINW02y\",layoutId:\"i9mINW02y\",style:{width:\"100%\"},variant:\"RkOiY3MSE\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1836,intrinsicWidth:2211,pixelHeight:1836,pixelWidth:2211,src:\"https://framerusercontent.com/images/YifzqxRQgf5IkaaaSMickF1KqQE.webp\"},className:\"framer-12krzgm\",\"data-framer-name\":\"Hero Section\",name:\"Hero Section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cgus7\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yeqzki\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EnXI1sBV_:{children:(_getLocalizedValue=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO015cmlhZCBQcm8gTGlnaHQgU2VtaUV4dGVuZGVk\",\"--framer-font-family\":'\"Myriad Pro Light SemiExtended\", \"Myriad Pro Light SemiExtended Placeholder\", sans-serif',\"--framer-font-size\":\"108.52345687079502px\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--token-73fb25dd-b443-4340-a9a5-4e417c6a7b19, rgb(255, 255, 255))\"},children:\"CONTACTA CON\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO015cmlhZCBQcm8gTGlnaHQgU2VtaUV4dGVuZGVk\",\"--framer-font-family\":'\"Myriad Pro Light SemiExtended\", \"Myriad Pro Light SemiExtended Placeholder\", sans-serif',\"--framer-font-size\":\"108.52345687079502px\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--token-73fb25dd-b443-4340-a9a5-4e417c6a7b19, rgb(255, 255, 255))\"},children:\"NOSOTROS\"})]})},uTvcR6KUs:{children:(_getLocalizedValue1=getLocalizedValue(\"v1\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO015cmlhZCBQcm8gTGlnaHQgU2VtaUV4dGVuZGVk\",\"--framer-font-family\":'\"Myriad Pro Light SemiExtended\", \"Myriad Pro Light SemiExtended Placeholder\", sans-serif',\"--framer-font-size\":\"108.52345687079502px\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--token-73fb25dd-b443-4340-a9a5-4e417c6a7b19, rgb(255, 255, 255))\"},children:\"CONTACTA CON\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO015cmlhZCBQcm8gTGlnaHQgU2VtaUV4dGVuZGVk\",\"--framer-font-family\":'\"Myriad Pro Light SemiExtended\", \"Myriad Pro Light SemiExtended Placeholder\", sans-serif',\"--framer-font-size\":\"108.52345687079502px\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--token-73fb25dd-b443-4340-a9a5-4e417c6a7b19, rgb(255, 255, 255))\"},children:\"NOSOTROS\"})]})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:(_getLocalizedValue2=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue2!==void 0?_getLocalizedValue2:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO015cmlhZCBQcm8gTGlnaHQgU2VtaUV4dGVuZGVk\",\"--framer-font-family\":'\"Myriad Pro Light SemiExtended\", \"Myriad Pro Light SemiExtended Placeholder\", sans-serif',\"--framer-font-size\":\"108.52345687079502px\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--token-73fb25dd-b443-4340-a9a5-4e417c6a7b19, rgb(255, 255, 255))\"},children:\"CONTACTA CON\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO015cmlhZCBQcm8gTGlnaHQgU2VtaUV4dGVuZGVk\",\"--framer-font-family\":'\"Myriad Pro Light SemiExtended\", \"Myriad Pro Light SemiExtended Placeholder\", sans-serif',\"--framer-font-size\":\"108.52345687079502px\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--token-73fb25dd-b443-4340-a9a5-4e417c6a7b19, rgb(255, 255, 255))\"},children:\"NOSOTROS\"})]}),className:\"framer-1rn2fdq\",fonts:[\"CUSTOM;Myriad Pro Light SemiExtended\"],style:{transformPerspective:1200},verticalAlignment:\"top\",viewBox:\"0 0 784 217\",viewBoxScale:.99,withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jjmk8h\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17ayii5\",\"data-framer-name\":\"Group 110\",name:\"Group 110\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-xgcu3i\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EnXI1sBV_:{children:(_getLocalizedValue3=getLocalizedValue(\"v5\",activeLocale))!==null&&_getLocalizedValue3!==void 0?_getLocalizedValue3:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO015cmlhZCBQcm8gU2VtaWJvbGQgU2VtaUV4dGVuZGVk\",\"--framer-font-family\":'\"Myriad Pro Semibold SemiExtended\", \"Myriad Pro Semibold SemiExtended Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-b558833d-2284-4eb0-b8c9-6bd3ee73f716, rgb(193, 232, 255))\"},children:\"Oficinas Centrales Bayport C\\xe1diz\"})})},uTvcR6KUs:{children:(_getLocalizedValue4=getLocalizedValue(\"v4\",activeLocale))!==null&&_getLocalizedValue4!==void 0?_getLocalizedValue4:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO015cmlhZCBQcm8gU2VtaWJvbGQgU2VtaUV4dGVuZGVk\",\"--framer-font-family\":'\"Myriad Pro Semibold SemiExtended\", \"Myriad Pro Semibold SemiExtended Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-b558833d-2284-4eb0-b8c9-6bd3ee73f716, rgb(193, 232, 255))\"},children:\"Oficinas Centrales Bayport C\\xe1diz\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue5=getLocalizedValue(\"v3\",activeLocale))!==null&&_getLocalizedValue5!==void 0?_getLocalizedValue5:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO015cmlhZCBQcm8gU2VtaWJvbGQgU2VtaUV4dGVuZGVk\",\"--framer-font-family\":'\"Myriad Pro Semibold SemiExtended\", \"Myriad Pro Semibold SemiExtended Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-b558833d-2284-4eb0-b8c9-6bd3ee73f716, rgb(193, 232, 255))\"},children:\"Oficinas Centrales Bayport C\\xe1diz\"})}),className:\"framer-nw5bve\",\"data-framer-name\":\"Oficinas Centrales Bayport C\\xe1diz\",fonts:[\"CUSTOM;Myriad Pro Semibold SemiExtended\"],name:\"Oficinas Centrales Bayport C\\xe1diz\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EnXI1sBV_:{children:(_getLocalizedValue6=getLocalizedValue(\"v8\",activeLocale))!==null&&_getLocalizedValue6!==void 0?_getLocalizedValue6:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO015cmlhZCBQcm8gTGlnaHQgU2VtaUV4dGVuZGVk\",\"--framer-font-family\":'\"Myriad Pro Light SemiExtended\", \"Myriad Pro Light SemiExtended Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Pol. Ind. Las Salinas de Poniente C/ Pit\\xe1goras, 44\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO015cmlhZCBQcm8gTGlnaHQgU2VtaUV4dGVuZGVk\",\"--framer-font-family\":'\"Myriad Pro Light SemiExtended\", \"Myriad Pro Light SemiExtended Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"11500 \u2013 El Puerto de Santa Mar\\xeda (C\\xe1diz)\"})]})},uTvcR6KUs:{children:(_getLocalizedValue7=getLocalizedValue(\"v7\",activeLocale))!==null&&_getLocalizedValue7!==void 0?_getLocalizedValue7:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO015cmlhZCBQcm8gTGlnaHQgU2VtaUV4dGVuZGVk\",\"--framer-font-family\":'\"Myriad Pro Light SemiExtended\", \"Myriad Pro Light SemiExtended Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Pol. Ind. Las Salinas de Poniente C/ Pit\\xe1goras, 44\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO015cmlhZCBQcm8gTGlnaHQgU2VtaUV4dGVuZGVk\",\"--framer-font-family\":'\"Myriad Pro Light SemiExtended\", \"Myriad Pro Light SemiExtended Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"11500 \u2013 El Puerto de Santa Mar\\xeda (C\\xe1diz)\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue8=getLocalizedValue(\"v6\",activeLocale))!==null&&_getLocalizedValue8!==void 0?_getLocalizedValue8:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO015cmlhZCBQcm8gTGlnaHQgU2VtaUV4dGVuZGVk\",\"--framer-font-family\":'\"Myriad Pro Light SemiExtended\", \"Myriad Pro Light SemiExtended Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Pol. Ind. Las Salinas de Poniente C/ Pit\\xe1goras, 44\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO015cmlhZCBQcm8gTGlnaHQgU2VtaUV4dGVuZGVk\",\"--framer-font-family\":'\"Myriad Pro Light SemiExtended\", \"Myriad Pro Light SemiExtended Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"11500 \u2013 El Puerto de Santa Mar\\xeda (C\\xe1diz)\"})]}),className:\"framer-1flzx62\",\"data-framer-name\":\"Pol. Ind. Las Salinas de Poniente C/ Pit\\xe1goras, 44 11500 \u2013 El Puerto de Santa Mar\\xeda (C\\xe1diz)\",fonts:[\"CUSTOM;Myriad Pro Light SemiExtended\"],name:\"Pol. Ind. Las Salinas de Poniente C/ Pit\\xe1goras, 44 11500 \u2013 El Puerto de Santa Mar\\xeda (C\\xe1diz)\",verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1v64e5f\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EnXI1sBV_:{children:(_getLocalizedValue9=getLocalizedValue(\"v11\",activeLocale))!==null&&_getLocalizedValue9!==void 0?_getLocalizedValue9:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO015cmlhZCBQcm8gTGlnaHQgU2VtaUV4dGVuZGVk\",\"--framer-font-family\":'\"Myriad Pro Light SemiExtended\", \"Myriad Pro Light SemiExtended Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"+34 956 28 28 07\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO015cmlhZCBQcm8gTGlnaHQgU2VtaUV4dGVuZGVk\",\"--framer-font-family\":'\"Myriad Pro Light SemiExtended\", \"Myriad Pro Light SemiExtended Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"spain@bayport.eu\"})]})},uTvcR6KUs:{children:(_getLocalizedValue10=getLocalizedValue(\"v10\",activeLocale))!==null&&_getLocalizedValue10!==void 0?_getLocalizedValue10:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO015cmlhZCBQcm8gTGlnaHQgU2VtaUV4dGVuZGVk\",\"--framer-font-family\":'\"Myriad Pro Light SemiExtended\", \"Myriad Pro Light SemiExtended Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"+34 956 28 28 07\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO015cmlhZCBQcm8gTGlnaHQgU2VtaUV4dGVuZGVk\",\"--framer-font-family\":'\"Myriad Pro Light SemiExtended\", \"Myriad Pro Light SemiExtended Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"spain@bayport.eu\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue11=getLocalizedValue(\"v9\",activeLocale))!==null&&_getLocalizedValue11!==void 0?_getLocalizedValue11:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO015cmlhZCBQcm8gTGlnaHQgU2VtaUV4dGVuZGVk\",\"--framer-font-family\":'\"Myriad Pro Light SemiExtended\", \"Myriad Pro Light SemiExtended Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"+34 956 28 28 07\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO015cmlhZCBQcm8gTGlnaHQgU2VtaUV4dGVuZGVk\",\"--framer-font-family\":'\"Myriad Pro Light SemiExtended\", \"Myriad Pro Light SemiExtended Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"spain@bayport.eu\"})]}),className:\"framer-8edlxi\",\"data-framer-name\":\"+34 956 28 28 07 spain@bayport.eu\",fonts:[\"CUSTOM;Myriad Pro Light SemiExtended\"],name:\"+34 956 28 28 07 spain@bayport.eu\",verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1nl4wye\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-m2shrj-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EnXI1sBV_:{button:{color:\"var(--token-66babdb1-2c8b-45b8-a56e-2d5f1680de8f, rgb(0, 5, 23))\",fill:\"var(--token-73fb25dd-b443-4340-a9a5-4e417c6a7b19, rgb(255, 255, 255))\",fontWeight:600,label:(_getLocalizedValue12=getLocalizedValue(\"v23\",activeLocale))!==null&&_getLocalizedValue12!==void 0?_getLocalizedValue12:\"Enviar\"},email:{placeholder:(_getLocalizedValue13=getLocalizedValue(\"v21\",activeLocale))!==null&&_getLocalizedValue13!==void 0?_getLocalizedValue13:\"Correo electr\\xf3nico\",value:\"\"},message:{placeholder:(_getLocalizedValue14=getLocalizedValue(\"v22\",activeLocale))!==null&&_getLocalizedValue14!==void 0?_getLocalizedValue14:\"Mensaje\",value:\"\"},nameField:{placeholder:(_getLocalizedValue15=getLocalizedValue(\"v20\",activeLocale))!==null&&_getLocalizedValue15!==void 0?_getLocalizedValue15:\"Nombre\",value:\"\"}},uTvcR6KUs:{button:{color:\"var(--token-66babdb1-2c8b-45b8-a56e-2d5f1680de8f, rgb(0, 5, 23))\",fill:\"var(--token-73fb25dd-b443-4340-a9a5-4e417c6a7b19, rgb(255, 255, 255))\",fontWeight:600,label:(_getLocalizedValue16=getLocalizedValue(\"v19\",activeLocale))!==null&&_getLocalizedValue16!==void 0?_getLocalizedValue16:\"Enviar\"},email:{placeholder:(_getLocalizedValue17=getLocalizedValue(\"v17\",activeLocale))!==null&&_getLocalizedValue17!==void 0?_getLocalizedValue17:\"Correo electr\\xf3nico\",value:\"\"},message:{placeholder:(_getLocalizedValue18=getLocalizedValue(\"v18\",activeLocale))!==null&&_getLocalizedValue18!==void 0?_getLocalizedValue18:\"Mensaje\",value:\"\"},nameField:{placeholder:(_getLocalizedValue19=getLocalizedValue(\"v16\",activeLocale))!==null&&_getLocalizedValue19!==void 0?_getLocalizedValue19:\"Nombre\",value:\"\"}}},children:/*#__PURE__*/_jsx(FormSpark,{borderRadius:8,bottomLeftRadius:8,bottomRightRadius:8,button:{color:\"var(--token-66babdb1-2c8b-45b8-a56e-2d5f1680de8f, rgb(0, 5, 23))\",fill:\"var(--token-73fb25dd-b443-4340-a9a5-4e417c6a7b19, rgb(255, 255, 255))\",fontWeight:600,label:(_getLocalizedValue20=getLocalizedValue(\"v15\",activeLocale))!==null&&_getLocalizedValue20!==void 0?_getLocalizedValue20:\"Enviar\"},email:{placeholder:(_getLocalizedValue21=getLocalizedValue(\"v13\",activeLocale))!==null&&_getLocalizedValue21!==void 0?_getLocalizedValue21:\"Correo electr\\xf3nico\",value:\"\"},font:true,fontFamily:\"\",fontSize:16,fontWeight:400,formId:\"K6auGnsAq\",gap:15,height:\"100%\",id:\"mGNZdWonO\",inputs:{color:\"var(--token-73fb25dd-b443-4340-a9a5-4e417c6a7b19, rgb(255, 255, 255))\",error:\"rgb(238, 68, 68)\",fill:\"rgba(138, 184, 227, 0.6)\",placeholderColor:\"rgb(255, 255, 255)\"},isMixedBorderRadius:false,layout:\"vertical\",layoutId:\"mGNZdWonO\",message:{placeholder:(_getLocalizedValue22=getLocalizedValue(\"v14\",activeLocale))!==null&&_getLocalizedValue22!==void 0?_getLocalizedValue22:\"Mensaje\",value:\"\"},nameField:{placeholder:(_getLocalizedValue23=getLocalizedValue(\"v12\",activeLocale))!==null&&_getLocalizedValue23!==void 0?_getLocalizedValue23:\"Nombre\",value:\"\"},padding:15,paddingBottom:15,paddingLeft:15,paddingPerSide:false,paddingRight:15,paddingTop:15,style:{height:\"100%\",width:\"100%\"},topLeftRadius:8,topRightRadius:8,width:\"100%\",withEmail:true,withMessage:true,withName:true})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-l2grv8\",\"data-framer-name\":\"Rectangle 31\",name:\"Rectangle 31\"})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-dalb3e-container\",children:/*#__PURE__*/_jsx(FooterFooter,{height:\"100%\",id:\"wWP1h2gLP\",layoutId:\"wWP1h2gLP\",style:{width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-2nT6N { background: var(--token-66babdb1-2c8b-45b8-a56e-2d5f1680de8f, rgb(0, 5, 23)) /* {\"name\":\"Dark Blue\"} */; }`,\".framer-2nT6N.framer-1dmxmzi, .framer-2nT6N .framer-1dmxmzi { display: block; }\",\".framer-2nT6N.framer-3pbhk { align-content: center; align-items: center; background-color: var(--token-66babdb1-2c8b-45b8-a56e-2d5f1680de8f, #000517); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1300px; }\",\".framer-2nT6N .framer-1b62wdi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 10px; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 2; }\",\".framer-2nT6N .framer-aw09w3-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-2nT6N .framer-12krzgm { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: flex-end; min-height: 100vh; overflow: hidden; padding: 0px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-2nT6N .framer-cgus7 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 200px 61px 50px 61px; position: relative; width: 1px; }\",\".framer-2nT6N .framer-1yeqzki { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-2nT6N .framer-1rn2fdq { flex: none; height: auto; position: relative; white-space: pre; width: 60%; }\",\".framer-2nT6N .framer-jjmk8h { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-2nT6N .framer-17ayii5 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 58px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 0; }\",\".framer-2nT6N .framer-xgcu3i { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 86px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 484px; }\",\".framer-2nT6N .framer-nw5bve, .framer-2nT6N .framer-1flzx62, .framer-2nT6N .framer-8edlxi { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-2nT6N .framer-1v64e5f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-2nT6N .framer-1nl4wye { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 290px; justify-content: center; overflow: hidden; padding: 0px 30px 0px 30px; position: relative; width: 1px; }\",\".framer-2nT6N .framer-m2shrj-container { flex: 1 0 0px; height: 290px; position: relative; width: 1px; }\",'.framer-2nT6N .framer-l2grv8 { background: linear-gradient(180deg, rgba(0, 5, 23, 0) 0%, var(--token-66babdb1-2c8b-45b8-a56e-2d5f1680de8f, rgb(0, 16, 68)) /* {\"name\":\"Dark Blue\"} */ 100%); bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 646px; z-index: 0; }',\".framer-2nT6N .framer-dalb3e-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-2nT6N.framer-3pbhk, .framer-2nT6N .framer-1b62wdi, .framer-2nT6N .framer-12krzgm, .framer-2nT6N .framer-cgus7, .framer-2nT6N .framer-1yeqzki, .framer-2nT6N .framer-17ayii5, .framer-2nT6N .framer-xgcu3i, .framer-2nT6N .framer-1v64e5f, .framer-2nT6N .framer-1nl4wye { gap: 0px; } .framer-2nT6N.framer-3pbhk > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-2nT6N.framer-3pbhk > :first-child, .framer-2nT6N .framer-cgus7 > :first-child, .framer-2nT6N .framer-17ayii5 > :first-child, .framer-2nT6N .framer-xgcu3i > :first-child { margin-top: 0px; } .framer-2nT6N.framer-3pbhk > :last-child, .framer-2nT6N .framer-cgus7 > :last-child, .framer-2nT6N .framer-17ayii5 > :last-child, .framer-2nT6N .framer-xgcu3i > :last-child { margin-bottom: 0px; } .framer-2nT6N .framer-1b62wdi > *, .framer-2nT6N .framer-1yeqzki > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-2nT6N .framer-1b62wdi > :first-child, .framer-2nT6N .framer-12krzgm > :first-child, .framer-2nT6N .framer-1yeqzki > :first-child, .framer-2nT6N .framer-1v64e5f > :first-child, .framer-2nT6N .framer-1nl4wye > :first-child { margin-left: 0px; } .framer-2nT6N .framer-1b62wdi > :last-child, .framer-2nT6N .framer-12krzgm > :last-child, .framer-2nT6N .framer-1yeqzki > :last-child, .framer-2nT6N .framer-1v64e5f > :last-child, .framer-2nT6N .framer-1nl4wye > :last-child { margin-right: 0px; } .framer-2nT6N .framer-12krzgm > * { margin: 0px; margin-left: calc(22px / 2); margin-right: calc(22px / 2); } .framer-2nT6N .framer-cgus7 > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-2nT6N .framer-17ayii5 > * { margin: 0px; margin-bottom: calc(58px / 2); margin-top: calc(58px / 2); } .framer-2nT6N .framer-xgcu3i > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-2nT6N .framer-1v64e5f > *, .framer-2nT6N .framer-1nl4wye > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\"@media (min-width: 1300px) { .framer-2nT6N .hidden-3pbhk { display: none !important; } }\",`@media (min-width: 810px) and (max-width: 1299px) { .framer-2nT6N .hidden-2ykfmb { display: none !important; } .${metadata.bodyClassName}-framer-2nT6N { background: var(--token-66babdb1-2c8b-45b8-a56e-2d5f1680de8f, rgb(0, 5, 23)) /* {\"name\":\"Dark Blue\"} */; } .framer-2nT6N.framer-3pbhk { width: 810px; } .framer-2nT6N .framer-cgus7 { padding: 200px 62px 50px 62px; } .framer-2nT6N .framer-1rn2fdq { width: 100%; } .framer-2nT6N .framer-jjmk8h { flex-direction: column; gap: 60px; justify-content: flex-start; } .framer-2nT6N .framer-17ayii5 { flex: none; gap: 25px; order: 0; width: 100%; } .framer-2nT6N .framer-1v64e5f { justify-content: flex-end; width: 100%; } .framer-2nT6N .framer-1nl4wye { flex: none; order: 1; padding: 0px; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-2nT6N .framer-jjmk8h, .framer-2nT6N .framer-17ayii5 { gap: 0px; } .framer-2nT6N .framer-jjmk8h > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-2nT6N .framer-jjmk8h > :first-child, .framer-2nT6N .framer-17ayii5 > :first-child { margin-top: 0px; } .framer-2nT6N .framer-jjmk8h > :last-child, .framer-2nT6N .framer-17ayii5 > :last-child { margin-bottom: 0px; } .framer-2nT6N .framer-17ayii5 > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } }}`,`@media (max-width: 809px) { .framer-2nT6N .hidden-8hmgrp { display: none !important; } .${metadata.bodyClassName}-framer-2nT6N { background: var(--token-66babdb1-2c8b-45b8-a56e-2d5f1680de8f, rgb(0, 5, 23)) /* {\"name\":\"Dark Blue\"} */; } .framer-2nT6N.framer-3pbhk { width: 390px; } .framer-2nT6N .framer-1b62wdi, .framer-2nT6N .framer-12krzgm { flex-direction: column; } .framer-2nT6N .framer-aw09w3-container { flex: none; width: 100%; } .framer-2nT6N .framer-cgus7 { flex: none; padding: 200px 20px 50px 20px; width: 100%; } .framer-2nT6N .framer-1rn2fdq { width: 100%; } .framer-2nT6N .framer-jjmk8h { flex-direction: column; gap: 100px; justify-content: flex-start; } .framer-2nT6N .framer-17ayii5 { flex: none; gap: 29px; width: 100%; } .framer-2nT6N .framer-1v64e5f { justify-content: flex-start; width: 100%; } .framer-2nT6N .framer-1nl4wye { flex: none; padding: 0px; width: 100%; } .framer-2nT6N .framer-l2grv8 { bottom: unset; height: 100%; left: 20px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-2nT6N .framer-1b62wdi, .framer-2nT6N .framer-12krzgm, .framer-2nT6N .framer-jjmk8h, .framer-2nT6N .framer-17ayii5 { gap: 0px; } .framer-2nT6N .framer-1b62wdi > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-2nT6N .framer-1b62wdi > :first-child, .framer-2nT6N .framer-12krzgm > :first-child, .framer-2nT6N .framer-jjmk8h > :first-child, .framer-2nT6N .framer-17ayii5 > :first-child { margin-top: 0px; } .framer-2nT6N .framer-1b62wdi > :last-child, .framer-2nT6N .framer-12krzgm > :last-child, .framer-2nT6N .framer-jjmk8h > :last-child, .framer-2nT6N .framer-17ayii5 > :last-child { margin-bottom: 0px; } .framer-2nT6N .framer-12krzgm > * { margin: 0px; margin-bottom: calc(22px / 2); margin-top: calc(22px / 2); } .framer-2nT6N .framer-jjmk8h > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-2nT6N .framer-17ayii5 > * { margin: 0px; margin-bottom: calc(29px / 2); margin-top: calc(29px / 2); } }}`];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1575\n * @framerIntrinsicWidth 1300\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"uTvcR6KUs\":{\"layout\":[\"fixed\",\"auto\"]},\"EnXI1sBV_\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerFTbASwQwH=withCSS(Component,css,\"framer-2nT6N\");export default FramerFTbASwQwH;FramerFTbASwQwH.displayName=\"Page\";FramerFTbASwQwH.defaultProps={height:1575,width:1300};addFonts(FramerFTbASwQwH,[{explicitInter:true,fonts:[{family:\"Myriad Pro Light SemiExtended\",source:\"custom\",url:\"https://framerusercontent.com/assets/RgnEcGlkVXUQuDPP45O1sNiN8Q4.woff2\"},{family:\"Myriad Pro Semibold SemiExtended\",source:\"custom\",url:\"https://framerusercontent.com/assets/j4bkYdPzrPeta5Rji9KUMXKfzg.woff2\"}]},...NavbarNavFonts,...FormSparkFonts,...FooterFooterFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerFTbASwQwH\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"1575\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uTvcR6KUs\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"EnXI1sBV_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1300\",\"framerComponentViewportWidth\":\"true\",\"framerResponsiveScreen\":\"\",\"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", "NavbarNavFonts", "getFonts", "stV_yiev2_default", "RichTextWithFX", "withFX", "RichText2", "MotionDivWithFX", "motion", "FormSparkFonts", "FormSpark_default", "FooterFooterFonts", "Q7IClRTvI_default", "breakpoints", "serializationHash", "variantClassNames", "valuesByLocaleId", "LazyValue", "preloadLocalizedValues", "locale", "promises", "values", "promise", "getLocalizedValue", "key", "value", "animation", "transition1", "animation1", "transition2", "animation2", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ie", "metadata1", "_document_querySelector", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "preloadPromise", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "_getLocalizedValue", "_getLocalizedValue1", "_getLocalizedValue2", "_getLocalizedValue3", "_getLocalizedValue4", "_getLocalizedValue5", "_getLocalizedValue6", "_getLocalizedValue7", "_getLocalizedValue8", "_getLocalizedValue9", "_getLocalizedValue10", "_getLocalizedValue11", "_getLocalizedValue12", "_getLocalizedValue13", "_getLocalizedValue14", "_getLocalizedValue15", "_getLocalizedValue16", "_getLocalizedValue17", "_getLocalizedValue18", "_getLocalizedValue19", "_getLocalizedValue20", "_getLocalizedValue21", "_getLocalizedValue22", "_getLocalizedValue23", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "PropertyOverrides2", "ComponentViewportProvider", "Container", "stV_yiev2_default", "Image2", "x", "RichTextWithFX", "MotionDivWithFX", "RichText2", "FormSpark_default", "Q7IClRTvI_default", "css", "FramerFTbASwQwH", "withCSS", "FTbASwQwH_default", "addFonts", "NavbarNavFonts", "FormSparkFonts", "FooterFooterFonts", "__FramerMetadata__"]
}
