{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/vkHAj2Yk0mTnbM6ZdN5c/Foxm7T4YpJpvPgDlEus0/FormSpark.js", "ssg:https://framerusercontent.com/modules/XCFLP7QsBqhAxTdJ5BPY/phuL6vfoNO3lK1BS5rR4/mqYFA7DBV.js", "ssg:https://framerusercontent.com/modules/4HnqiM1qcutE1frSLzp6/JVJvQqhKlaGo08tqllNF/BwdoziTC5.js", "ssg:https://framerusercontent.com/modules/PeOBLApu4nNjBrBavbfj/Z1CQ5eahxmMxPln2X0zL/LxxSmtfB5.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 (f7d95e4)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-fXDmJ .framer-styles-preset-env547:not(.rich-text-wrapper), .framer-fXDmJ .framer-styles-preset-env547.rich-text-wrapper a { --framer-link-current-text-decoration: none; --framer-link-hover-text-color: var(--token-fa6e90e6-b47d-4706-a82f-fbecf7ba28fd, #111111); --framer-link-hover-text-decoration: none; --framer-link-text-color: var(--token-f9be6f01-b8dd-4c9c-8373-85115479757b, #727272); --framer-link-text-decoration: none; transition: color 0.2s cubic-bezier(0.44, 0, 0.56, 1) 0s; }\"];export const className=\"framer-fXDmJ\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (3266cfb)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import FormSpark from\"https://framerusercontent.com/modules/vkHAj2Yk0mTnbM6ZdN5c/Foxm7T4YpJpvPgDlEus0/FormSpark.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/XCFLP7QsBqhAxTdJ5BPY/phuL6vfoNO3lK1BS5rR4/mqYFA7DBV.js\";const FormSparkFonts=getFonts(FormSpark);const cycleOrder=[\"wnZVLUA24\",\"C8ko28McG\",\"Yp_e0Etz9\",\"FbqZ71RrY\"];const serializationHash=\"framer-rMklA\";const variantClassNames={C8ko28McG:\"framer-v-b87hbp\",FbqZ71RrY:\"framer-v-x7cv3k\",wnZVLUA24:\"framer-v-115koqq\",Yp_e0Etz9:\"framer-v-1nn8e96\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"wnZVLUA24\",\"Variant 2\":\"C8ko28McG\",\"Variant 3\":\"Yp_e0Etz9\",\"Variant 4\":\"FbqZ71RrY\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"wnZVLUA24\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"wnZVLUA24\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-115koqq\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"wnZVLUA24\",ref:refBinding,style:{backgroundColor:\"var(--token-fcebba19-0a74-4be5-a700-2911dd034854, rgb(255, 240, 212))\",...style},...addPropertyOverrides({C8ko28McG:{\"data-framer-name\":\"Variant 2\"},FbqZ71RrY:{\"data-framer-name\":\"Variant 4\"},Yp_e0Etz9:{\"data-framer-name\":\"Variant 3\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",backgroundSize:2,fit:\"tile\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:126,pixelWidth:126,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/9c47fOR3CNoSsEtr6IEYJoKM.svg\"},className:\"framer-80abw6\",layoutDependency:layoutDependency,layoutId:\"TT34hyTI8\",style:{opacity:.03}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-13jacws\",layoutDependency:layoutDependency,layoutId:\"gAff9HKmD\",style:{background:\"linear-gradient(0deg, rgba(255, 216, 43, 0) 46%, var(--token-fcebba19-0a74-4be5-a700-2911dd034854, rgb(255, 240, 212)) 109.00000000000001%, var(--token-fcebba19-0a74-4be5-a700-2911dd034854, rgb(255, 240, 212)) 115.00000000000001%)\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7jx4pb\",layoutDependency:layoutDependency,layoutId:\"Dq447uxV7\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18h271h\",layoutDependency:layoutDependency,layoutId:\"qvwLfxTli\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a2ba9250-cecf-45de-ad8b-3f6f736d1d74, rgb(255, 43, 167)))\"},children:\"Socials\"})}),className:\"framer-153yqh1\",fonts:[\"GF;Montserrat-700\"],layoutDependency:layoutDependency,layoutId:\"gikQ5LS_x\",style:{\"--extracted-r6o4lv\":\"var(--token-a2ba9250-cecf-45de-ad8b-3f6f736d1d74, rgb(255, 43, 167))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(114, 114, 114))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/jumplabs.co/\",motionChild:true,nodeId:\"eRlSC0Tuo\",openInNewTab:true,scopeId:\"BwdoziTC5\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-env547\",\"data-styles-preset\":\"mqYFA7DBV\",children:\"Instagram\"})})})}),className:\"framer-lb9tgh\",fonts:[\"GF;Montserrat-600\"],layoutDependency:layoutDependency,layoutId:\"eRlSC0Tuo\",style:{\"--extracted-r6o4lv\":\"rgb(114, 114, 114)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(114, 114, 114))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/company/jumplabs/\",motionChild:true,nodeId:\"sJLkjJBLm\",openInNewTab:true,scopeId:\"BwdoziTC5\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-env547\",\"data-styles-preset\":\"mqYFA7DBV\",children:\"LinkedIn\"})})})}),className:\"framer-pz8rz0\",fonts:[\"GF;Montserrat-600\"],layoutDependency:layoutDependency,layoutId:\"sJLkjJBLm\",style:{\"--extracted-r6o4lv\":\"rgb(114, 114, 114)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(114, 114, 114))\"},children:\"info.jumplabs@gmail.com\"})}),className:\"framer-1tpf4y6\",fonts:[\"GF;Montserrat-600\"],layoutDependency:layoutDependency,layoutId:\"Eyaq8mxO1\",style:{\"--extracted-r6o4lv\":\"rgb(114, 114, 114)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(114, 114, 114))\"},children:\"Call Us\"})}),className:\"framer-17nvm4p\",fonts:[\"GF;Montserrat-600\"],layoutDependency:layoutDependency,layoutId:\"W0ov2l50s\",style:{\"--extracted-r6o4lv\":\"rgb(114, 114, 114)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(114, 114, 114))\"},children:\"+4550142069\"})}),className:\"framer-k5lmyr\",fonts:[\"GF;Montserrat-regular\"],layoutDependency:layoutDependency,layoutId:\"g2D25HVHz\",style:{\"--extracted-r6o4lv\":\"rgb(114, 114, 114)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(114, 114, 114))\"},children:\"+91 9910566229\"})}),className:\"framer-1dibao4\",fonts:[\"GF;Montserrat-regular\"],layoutDependency:layoutDependency,layoutId:\"AJthhMK9D\",style:{\"--extracted-r6o4lv\":\"rgb(114, 114, 114)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(114, 114, 114))\"},children:\"Damgade 82, 6400 S\\xf8nderborg\"})}),className:\"framer-1r6vbij\",fonts:[\"GF;Montserrat-regular\"],layoutDependency:layoutDependency,layoutId:\"xc0MMBcm9\",style:{\"--extracted-r6o4lv\":\"rgb(114, 114, 114)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wvcwcy\",layoutDependency:layoutDependency,layoutId:\"qHP1gPZhM\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"s2RUlKsgb\"},motionChild:true,nodeId:\"ZJ0nnQGbe\",openInNewTab:false,scopeId:\"BwdoziTC5\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-ygn0qo framer-1diym8a\",\"data-framer-name\":\"Asset 7\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:29,intrinsicWidth:286,layoutDependency:layoutDependency,layoutId:\"ZJ0nnQGbe\",svg:'<svg width=\"286\" height=\"29\" viewBox=\"0 0 286 29\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_169_419)\">\\n<path d=\"M26.4579 1.11005C29.5721 4.14159 31.3072 8.22483 31.2861 12.4718C31.2649 16.7188 29.4892 20.7862 26.345 23.7893C23.2009 26.7924 18.9425 28.4885 14.496 28.5087C10.0495 28.5288 5.77451 26.8715 2.60059 23.8971\" fill=\"#F6C445\"/>\\n<path d=\"M59.9576 28.3954H33.9248V0.773102\" fill=\"#E45F2B\"/>\\n<path d=\"M5.62283 18.7287C8.72823 18.7287 11.2457 16.3242 11.2457 13.3581C11.2457 10.392 8.72823 7.98755 5.62283 7.98755C2.51743 7.98755 0 10.392 0 13.3581C0 16.3242 2.51743 18.7287 5.62283 18.7287Z\" fill=\"#A0E548\"/>\\n<path d=\"M74.7806 29C72.6475 29.0293 70.5284 28.6671 68.5384 27.933C66.7485 27.2699 65.1539 26.2016 63.8916 24.82L69.2479 18.7792C69.9066 19.5785 70.6883 20.2778 71.5664 20.8533C72.2641 21.3046 73.0855 21.5494 73.928 21.5572C76.0643 21.5572 77.1331 20.3891 77.1344 18.0529V7.33049H67.1058V0.16098H86.967V17.4801C86.967 21.3488 85.9269 24.2353 83.8469 26.1397C81.7668 28.0441 78.7447 28.9975 74.7806 29Z\" fill=\"#14142B\"/>\\n<path d=\"M103.538 29C99.013 29 95.4853 27.8319 92.9544 25.4957C90.4236 23.1596 89.1582 19.8837 89.1582 15.6681V0.16098H99.1104V15.3854C99.1104 17.5344 99.518 19.0582 100.333 19.9567C101.149 20.8552 102.245 21.3051 103.622 21.3063C105.029 21.3063 106.133 20.8565 106.932 19.9567C107.732 19.0569 108.133 17.5332 108.135 15.3854V0.16098H117.917V15.6681C117.917 19.8837 116.652 23.1596 114.123 25.4957C111.593 27.8319 108.065 29 103.538 29Z\" fill=\"#14142B\"/>\\n<path d=\"M120.362 28.3542V0.16098H128.543L140.351 18.5677H136.039L147.51 0.16098H155.691L155.775 28.3542H146.718L146.634 13.2102H148.067L140.227 25.8177H135.839L127.659 13.214H129.423V28.3579L120.362 28.3542Z\" fill=\"#14142B\"/>\\n<path d=\"M158.483 28.3542V0.16098H172.694C175.449 0.16098 177.831 0.590901 179.842 1.45074C181.853 2.31058 183.406 3.53857 184.501 5.13471C185.597 6.73334 186.145 8.61963 186.145 10.7936C186.145 12.9675 185.597 14.8475 184.501 16.4337C183.404 18.0174 181.851 19.2453 179.842 20.1177C177.832 20.99 175.45 21.4268 172.694 21.428H164.006L168.434 17.3603V28.3542H158.483ZM168.434 18.4067L164.006 14.1013H172.061C173.437 14.1013 174.456 13.8055 175.119 13.214C175.781 12.6224 176.111 11.8169 176.108 10.7973C176.108 9.77773 175.778 8.9728 175.119 8.38251C174.459 7.79223 173.44 7.49646 172.061 7.49522H164.006L168.434 3.18977V18.4067Z\" fill=\"#14142B\"/>\\n<path d=\"M190.694 28.3542V0.16098H192.129V27.1056H209.417V28.3542H190.694Z\" fill=\"#14142B\"/>\\n<path d=\"M210.14 28.3542L223.802 0.16098H225.193L238.855 28.3542H237.288L224.18 1.08759H224.813L211.7 28.3542H210.14ZM214.861 20.0989L215.41 18.9309H233.458L234.007 20.0989H214.861Z\" fill=\"#14142B\"/>\\n<path d=\"M240.375 28.3542V0.16098H252.35C255.442 0.16098 257.881 0.764991 259.666 1.97301C261.451 3.18103 262.343 4.96686 262.343 7.33049C262.343 8.86173 261.957 10.1509 261.185 11.1979C260.384 12.264 259.268 13.0774 257.98 13.5341C256.476 14.0667 254.881 14.3257 253.277 14.2978L253.994 13.6539C256.188 13.6539 258.017 13.9359 259.482 14.5C260.946 15.0641 262.058 15.8834 262.817 16.9578C263.575 18.0323 263.955 19.3614 263.956 20.9451C263.956 23.3087 263.064 25.1351 261.279 26.4242C259.494 27.7134 256.802 28.3573 253.202 28.356L240.375 28.3542ZM241.808 27.1468H253.277C256.282 27.1468 258.574 26.6432 260.152 25.6361C261.73 24.629 262.514 23.0516 262.504 20.9039C262.504 18.7287 261.72 17.1375 260.152 16.1304C258.584 15.1233 256.292 14.6198 253.277 14.6198H241.555V13.4536H252.393C255.091 13.4536 257.192 12.9432 258.696 11.9223C260.2 10.9015 260.952 9.39773 260.952 7.41098C260.952 5.42548 260.2 3.9217 258.696 2.89962C257.192 1.87754 255.091 1.36775 252.393 1.37025H241.81L241.808 27.1468Z\" fill=\"#14142B\"/>\\n<path d=\"M275.711 28.517C273.611 28.5291 271.527 28.1528 269.577 27.4089C267.651 26.6688 266.182 25.7328 265.169 24.601L265.927 23.6332C266.884 24.6527 268.241 25.5188 269.998 26.2314C271.794 26.9502 273.723 27.3132 275.67 27.2984C277.72 27.2984 279.407 27.0301 280.73 26.4935C282.054 25.9569 283.03 25.2387 283.66 24.3389C284.287 23.4555 284.618 22.4109 284.609 21.3438C284.609 20.0546 284.272 19.0207 283.597 18.242C282.872 17.4286 281.954 16.7931 280.918 16.3888C279.746 15.9147 278.533 15.5389 277.293 15.2656C275.986 14.9699 274.664 14.6541 273.328 14.3184C272.063 14.0073 270.834 13.5758 269.659 13.0305C268.59 12.5399 267.674 11.7898 267.003 10.8553C266.344 9.92811 266.013 8.72633 266.012 7.25C266.009 5.99789 266.375 4.77026 267.066 3.70643C267.769 2.60573 268.866 1.71282 270.357 1.02769C271.847 0.342564 273.759 0 276.091 0C277.701 0.00147753 279.3 0.239503 280.834 0.705719C282.263 1.11306 283.61 1.74576 284.82 2.57765L284.18 3.66712C282.996 2.83526 281.67 2.20802 280.26 1.8139C278.919 1.42528 277.527 1.22229 276.127 1.21114C274.159 1.21114 272.522 1.48632 271.215 2.03666C269.909 2.58701 268.948 3.31769 268.332 4.2287C267.718 5.12644 267.395 6.17749 267.403 7.25C267.403 8.56659 267.741 9.61363 268.416 10.3911C269.14 11.2049 270.059 11.8405 271.094 12.2443C272.272 12.7211 273.493 13.0969 274.741 13.3675C276.062 13.6632 277.383 13.979 278.706 14.3147C279.965 14.6303 281.188 15.0694 282.353 15.625C283.412 16.122 284.325 16.8631 285.009 17.7815C285.668 18.68 285.999 19.8544 286 21.3045C286.003 22.5601 285.629 23.7902 284.924 24.8499C284.21 25.9506 283.085 26.8367 281.551 27.5081C280.017 28.1795 278.071 28.5158 275.711 28.517Z\" fill=\"#14142B\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_169_419\">\\n<rect width=\"286\" height=\"29\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(114, 114, 114))\"},children:\"\\xa9 Jumplabs Inc. 2023\"})}),className:\"framer-111iqdw\",fonts:[\"GF;Montserrat-500\"],layoutDependency:layoutDependency,layoutId:\"WZVhvQhyP\",style:{\"--extracted-r6o4lv\":\"rgb(114, 114, 114)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11xtbs2\",layoutDependency:layoutDependency,layoutId:\"Jd_DGBw3y\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a2ba9250-cecf-45de-ad8b-3f6f736d1d74, rgb(255, 43, 167)))\"},children:\"Quick Links\"})}),className:\"framer-1nxqmpx\",fonts:[\"GF;Montserrat-700\"],layoutDependency:layoutDependency,layoutId:\"Oj_2Lxnkc\",style:{\"--extracted-r6o4lv\":\"var(--token-a2ba9250-cecf-45de-ad8b-3f6f736d1d74, rgb(255, 43, 167))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(114, 114, 114))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"s2RUlKsgb\"},motionChild:true,nodeId:\"khWVdh5bT\",openInNewTab:false,scopeId:\"BwdoziTC5\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-env547\",\"data-styles-preset\":\"mqYFA7DBV\",children:\"Home\"})})})}),className:\"framer-k1q00\",fonts:[\"GF;Montserrat-600\"],layoutDependency:layoutDependency,layoutId:\"khWVdh5bT\",style:{\"--extracted-r6o4lv\":\"rgb(114, 114, 114)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(114, 114, 114))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"nkUxQFCSr\"},motionChild:true,nodeId:\"zG6dw1fOh\",openInNewTab:false,scopeId:\"BwdoziTC5\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-env547\",\"data-styles-preset\":\"mqYFA7DBV\",children:\"About Us\"})})})}),className:\"framer-qn9p4t\",fonts:[\"GF;Montserrat-600\"],layoutDependency:layoutDependency,layoutId:\"zG6dw1fOh\",style:{\"--extracted-r6o4lv\":\"rgb(114, 114, 114)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(114, 114, 114))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"oyrUnzBYQ\"},motionChild:true,nodeId:\"Cx9J8757j\",openInNewTab:false,scopeId:\"BwdoziTC5\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-env547\",\"data-styles-preset\":\"mqYFA7DBV\",children:\"Our Products\"})})})}),className:\"framer-1nzckmp\",fonts:[\"GF;Montserrat-600\"],layoutDependency:layoutDependency,layoutId:\"Cx9J8757j\",style:{\"--extracted-r6o4lv\":\"rgb(114, 114, 114)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(114, 114, 114))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ck1N0LNE_\"},motionChild:true,nodeId:\"PmhOU5UaI\",openInNewTab:false,scopeId:\"BwdoziTC5\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-env547\",\"data-styles-preset\":\"mqYFA7DBV\",children:\"Education\"})})})}),className:\"framer-dex90g\",fonts:[\"GF;Montserrat-600\"],layoutDependency:layoutDependency,layoutId:\"PmhOU5UaI\",style:{\"--extracted-r6o4lv\":\"rgb(114, 114, 114)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(114, 114, 114))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"PGCZefr6x\"},motionChild:true,nodeId:\"U_K4G5ylk\",openInNewTab:false,scopeId:\"BwdoziTC5\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-env547\",\"data-styles-preset\":\"mqYFA7DBV\",children:\"Contact\"})})})}),className:\"framer-1e2542p\",fonts:[\"GF;Montserrat-600\"],layoutDependency:layoutDependency,layoutId:\"U_K4G5ylk\",style:{\"--extracted-r6o4lv\":\"rgb(114, 114, 114)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lmyxm8\",layoutDependency:layoutDependency,layoutId:\"wuN3UD0Wo\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a2ba9250-cecf-45de-ad8b-3f6f736d1d74, rgb(255, 43, 167)))\"},children:\"Reach out to Us\"})}),className:\"framer-w6r6yy\",fonts:[\"GF;Montserrat-700\"],layoutDependency:layoutDependency,layoutId:\"HSam8bysh\",style:{\"--extracted-r6o4lv\":\"var(--token-a2ba9250-cecf-45de-ad8b-3f6f736d1d74, rgb(255, 43, 167))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-xat1p2-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"mxdV45rBq-container\",nodeId:\"mxdV45rBq\",rendersWithMotion:true,scopeId:\"BwdoziTC5\",children:/*#__PURE__*/_jsx(FormSpark,{borderRadius:8,bottomLeftRadius:8,bottomRightRadius:8,button:{color:\"rgb(255, 255, 255)\",fill:\"rgb(17, 17, 17)\",fontWeight:600,label:\"Send\"},email:{placeholder:\"Email\",value:\"\"},font:false,fontFamily:\"Inter\",fontSize:16,fontWeight:400,formId:\"bwjxFEBeU\",gap:10,height:\"100%\",id:\"mxdV45rBq\",inputs:{color:\"rgb(17, 17, 17)\",error:\"rgb(238, 68, 68)\",fill:\"rgb(249, 249, 249)\",placeholderColor:\"rgba(114, 114, 114, 0.5)\"},isMixedBorderRadius:false,layout:\"horizontal\",layoutId:\"mxdV45rBq\",message:{placeholder:\"Message\",value:\"\"},nameField:{placeholder:\"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})})})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-rMklA.framer-1diym8a, .framer-rMklA .framer-1diym8a { display: block; }\",\".framer-rMklA.framer-115koqq { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 70px; height: min-content; justify-content: flex-start; overflow: visible; padding: 40px 48px 70px 48px; position: relative; width: 1200px; }\",\".framer-rMklA .framer-80abw6 { bottom: 0px; flex: none; left: -6px; mix-blend-mode: multiply; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-rMklA .framer-13jacws { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-rMklA .framer-7jx4pb { display: grid; flex: none; gap: 0px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(200px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-rMklA .framer-18h271h, .framer-rMklA .framer-11xtbs2, .framer-rMklA .framer-lmyxm8 { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: 100%; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-rMklA .framer-153yqh1, .framer-rMklA .framer-lb9tgh, .framer-rMklA .framer-pz8rz0, .framer-rMklA .framer-1tpf4y6, .framer-rMklA .framer-17nvm4p, .framer-rMklA .framer-k5lmyr, .framer-rMklA .framer-1dibao4, .framer-rMklA .framer-1r6vbij, .framer-rMklA .framer-111iqdw, .framer-rMklA .framer-1nxqmpx, .framer-rMklA .framer-k1q00, .framer-rMklA .framer-qn9p4t, .framer-rMklA .framer-1nzckmp, .framer-rMklA .framer-dex90g, .framer-rMklA .framer-1e2542p, .framer-rMklA .framer-w6r6yy { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-rMklA .framer-wvcwcy { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 11px; height: min-content; justify-content: center; overflow: visible; padding: 1px; position: relative; width: 81%; }\",\".framer-rMklA .framer-ygn0qo { aspect-ratio: 9.443298969072165 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 22px); position: relative; text-decoration: none; width: 208px; }\",\".framer-rMklA .framer-xat1p2-container { flex: none; height: 290px; position: relative; width: 100%; }\",\".framer-rMklA.framer-v-b87hbp.framer-115koqq { width: 832px; }\",\".framer-rMklA.framer-v-1nn8e96.framer-115koqq, .framer-rMklA.framer-v-x7cv3k.framer-115koqq { padding: 20px 20px 70px 20px; width: 365px; }\",\".framer-rMklA.framer-v-1nn8e96 .framer-7jx4pb, .framer-rMklA.framer-v-x7cv3k .framer-7jx4pb { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 30px; }\",\".framer-rMklA.framer-v-1nn8e96 .framer-18h271h, .framer-rMklA.framer-v-1nn8e96 .framer-11xtbs2, .framer-rMklA.framer-v-x7cv3k .framer-18h271h, .framer-rMklA.framer-v-x7cv3k .framer-11xtbs2 { align-self: unset; height: min-content; width: min-content; }\",\".framer-rMklA.framer-v-1nn8e96 .framer-lmyxm8, .framer-rMklA.framer-v-x7cv3k .framer-lmyxm8 { align-self: unset; height: min-content; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 469\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"C8ko28McG\":{\"layout\":[\"fixed\",\"auto\"]},\"Yp_e0Etz9\":{\"layout\":[\"fixed\",\"auto\"]},\"FbqZ71RrY\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerBwdoziTC5=withCSS(Component,css,\"framer-rMklA\");export default FramerBwdoziTC5;FramerBwdoziTC5.displayName=\"Footer\";FramerBwdoziTC5.defaultProps={height:469,width:1200};addPropertyControls(FramerBwdoziTC5,{variant:{options:[\"wnZVLUA24\",\"C8ko28McG\",\"Yp_e0Etz9\",\"FbqZ71RrY\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 4\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerBwdoziTC5,[{explicitInter:true,fonts:[{family:\"Montserrat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v29/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCuM70w7Y3tcoqK5.woff2\",weight:\"700\"},{family:\"Montserrat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v29/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCu170w7Y3tcoqK5.woff2\",weight:\"600\"},{family:\"Montserrat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v29/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Ew7Y3tcoqK5.woff2\",weight:\"400\"},{family:\"Montserrat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v29/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Ew7Y3tcoqK5.woff2\",weight:\"500\"}]},...FormSparkFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerBwdoziTC5\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"C8ko28McG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Yp_e0Etz9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FbqZ71RrY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicHeight\":\"469\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./BwdoziTC5.map", "// Generated by Framer (890879b)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"tMLGUlQt_\",\"t46yYVnkL\",\"xAIxFxlDH\"];const serializationHash=\"framer-Okxlh\";const variantClassNames={t46yYVnkL:\"framer-v-1pkyjpx\",tMLGUlQt_:\"framer-v-ldnvyh\",xAIxFxlDH:\"framer-v-5eygkf\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Phone Open\":\"xAIxFxlDH\",Desktop:\"tMLGUlQt_\",Phone:\"t46yYVnkL\"};const getProps=({height,hover,id,width,...props})=>{return{...props,qefjXQd5s:hover??props.qefjXQd5s,variant:humanReadableVariantMap[props.variant]??props.variant??\"tMLGUlQt_\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,qefjXQd5s,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"tMLGUlQt_\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnterbnmd7t=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});if(qefjXQd5s){const res=await qefjXQd5s(...args);if(res===false)return false;}});const onTapv2zwki=activeVariantCallback(async(...args)=>{setVariant(\"xAIxFxlDH\");});const onTap16ooz6z=activeVariantCallback(async(...args)=>{setVariant(\"t46yYVnkL\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"t46yYVnkL\",\"xAIxFxlDH\"].includes(baseVariant))return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.nav,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-ldnvyh\",className,classNames),\"data-framer-name\":\"Desktop\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"tMLGUlQt_\",onMouseEnter:onMouseEnterbnmd7t,ref:refBinding,style:{backgroundColor:\"var(--token-fcebba19-0a74-4be5-a700-2911dd034854, rgb(255, 240, 212))\",...style},...addPropertyOverrides({t46yYVnkL:{\"data-framer-name\":\"Phone\"},xAIxFxlDH:{\"data-framer-name\":\"Phone Open\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vg08ag\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"kyyYEX5VG\",style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"var(--token-bf1045fe-3c54-49d7-98e2-31789ee5f7a8, rgb(255, 216, 43))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},variants:{t46yYVnkL:{\"--border-bottom-width\":\"0px\"},xAIxFxlDH:{\"--border-bottom-width\":\"0px\"}},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-muy3q3\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"k8kj6Gq4i\",...addPropertyOverrides({t46yYVnkL:{\"data-highlight\":true,onTap:onTapv2zwki,transformTemplate:transformTemplate1},xAIxFxlDH:{\"data-highlight\":true,onTap:onTap16ooz6z}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fxjoj7\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"vX9_fqpY3\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-zm7r5f\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"kCU1K68bM\",style:{backgroundColor:\"rgb(153, 153, 153)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{t46yYVnkL:{backgroundColor:\"var(--token-fa6e90e6-b47d-4706-a82f-fbecf7ba28fd, rgb(17, 17, 17))\"},xAIxFxlDH:{rotate:-45}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-bv2pd0\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"TNg2BLVhZ\",style:{backgroundColor:\"rgb(153, 153, 153)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{t46yYVnkL:{backgroundColor:\"var(--token-fa6e90e6-b47d-4706-a82f-fbecf7ba28fd, rgb(17, 17, 17))\"},xAIxFxlDH:{rotate:45}}})]}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"s2RUlKsgb\"},motionChild:true,nodeId:\"ybeALlBfe\",scopeId:\"LxxSmtfB5\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-45xj42 framer-ee3tr6\",\"data-framer-name\":\"Asset_1\",fill:\"var(--token-fa6e90e6-b47d-4706-a82f-fbecf7ba28fd, rgb(17, 17, 17))\",intrinsicHeight:155,intrinsicWidth:1459,layoutDependency:layoutDependency,layoutId:\"ybeALlBfe\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1459.29 154.92\"><g data-name=\"Layer 2\"><g data-name=\"Layer 1\"><path d=\"M135 5.93A86.08 86.08 0 0 1 13.27 127.66m292.66 24.03H173.1V4.13\"/><circle cx=\"28.69\" cy=\"71.36\" r=\"28.69\"/><path d=\"M381.56 154.92a85 85 0 0 1-31.85-5.7A60.51 60.51 0 0 1 326 132.59l27.33-32.27a53.8 53.8 0 0 0 11.83 11.08 21.87 21.87 0 0 0 12.05 3.76q16.35 0 16.36-18.72V39.16H342.4V.86h101.34v92.52q0 31-15.92 46.26t-46.26 15.28Zm146.73 0q-34.63 0-54-18.72t-19.37-52.5V.86h50.78v81.33q0 17.22 6.24 24.42t16.78 7.21q10.77 0 16.89-7.21t6.14-24.42V.86h49.91V83.7q0 33.78-19.36 52.5t-54.01 18.72Zm85.85-3.45V.86h41.74l60.25 98.33h-22L752.66.86h41.74l.43 150.61h-46.21l-.43-80.9h7.31l-40 67.35h-22.39l-41.74-67.33h9v80.9Zm194.51 0V.86h72.51q21.08 0 36.47 6.89t23.77 19.68q8.39 12.81 8.39 30.23t-8.39 30.13q-8.39 12.69-23.77 19.68t-36.47 7h-44.33l22.59-21.73v58.73Zm50.77-53.14-22.59-23h41.1q10.53 0 15.6-4.74t5.05-12.91q0-8.17-5.05-12.9t-15.6-4.74h-41.1l22.59-23ZM973 151.47V.86h7.32V144.8h88.21v6.67Zm99.22 0L1141.93.86h7.1l69.71 150.61h-8L1143.86 5.81h3.23l-66.91 145.66Zm24.09-44.1 2.8-6.24h92.09l2.8 6.24Zm130.18 44.1V.86h61.1q23.67 0 37.33 9.68t13.66 28.62q0 12.27-5.91 20.66a35.2 35.2 0 0 1-16.35 12.48 65.61 65.61 0 0 1-24 4.08l3.66-3.44q16.79 0 28 4.52T1341 90.59q5.8 8.61 5.81 21.3 0 18.94-13.66 29.27t-41.21 10.32Zm7.31-6.45h58.52q23 0 35.08-8.07t12-25.28q0-17.43-12-25.5t-35.08-8.07h-59.81v-6.23h55.3q20.65 0 32.16-8.18t11.51-24.1q0-15.91-11.51-24.1t-32.16-8.17h-54Zm172.99 7.32a83.06 83.06 0 0 1-31.3-5.92q-14.74-5.93-22.49-15l3.87-5.17q7.32 8.17 20.77 13.88a73.36 73.36 0 0 0 28.94 5.7q15.69 0 25.82-4.3t14.95-11.51a28.11 28.11 0 0 0 4.84-16q0-10.33-5.16-16.57a35.7 35.7 0 0 0-13.67-9.9 112.06 112.06 0 0 0-18.5-6q-10-2.37-20.23-5.06a99.73 99.73 0 0 1-18.72-6.88 34.59 34.59 0 0 1-13.55-11.62q-5.05-7.43-5.06-19.26a35.78 35.78 0 0 1 5.38-18.93q5.38-8.82 16.79-14.31T1408.73 0a80.05 80.05 0 0 1 24.2 3.77 68.23 68.23 0 0 1 20.34 10l-3.27 5.82a64.11 64.11 0 0 0-20-9.9 74.76 74.76 0 0 0-21.09-3.22q-15.06 0-25.06 4.41t-14.71 11.71a29.09 29.09 0 0 0-4.74 16.14q0 10.55 5.17 16.78a35.58 35.58 0 0 0 13.66 9.9 110.34 110.34 0 0 0 18.61 6q10.11 2.37 20.23 5.06a96.46 96.46 0 0 1 18.61 7 36.24 36.24 0 0 1 13.55 11.52q5.05 7.2 5.06 18.82a35.2 35.2 0 0 1-5.49 18.94q-5.47 8.82-17.21 14.2t-29.8 5.39Z\"/></g></g></svg>',withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bctbt2\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"xQThpwfCF\",style:{opacity:1},variants:{t46yYVnkL:{opacity:0},xAIxFxlDH:{opacity:1}},children:[/*#__PURE__*/_jsx(Link,{href:{hash:\":ftEwrd7ky\",webPageId:\"s2RUlKsgb\"},motionChild:true,nodeId:\"l_yWxI2Gg\",openInNewTab:false,scopeId:\"LxxSmtfB5\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1b39tkh framer-ee3tr6\",layoutDependency:layoutDependency,layoutId:\"l_yWxI2Gg\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.04em\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fa6e90e6-b47d-4706-a82f-fbecf7ba28fd, rgb(17, 17, 17)))\"},children:\"Home\"})}),className:\"framer-ljqjec\",fonts:[\"GF;Montserrat-700\"],layoutDependency:layoutDependency,layoutId:\"dqL8Pfsq2\",style:{\"--extracted-r6o4lv\":\"var(--token-fa6e90e6-b47d-4706-a82f-fbecf7ba28fd, rgb(17, 17, 17))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({t46yYVnkL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.04em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"Home\"})}),fonts:[\"GF;Inter Tight-600\"]}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"nkUxQFCSr\"},motionChild:true,nodeId:\"FLkzkQzIW\",scopeId:\"LxxSmtfB5\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1ylkyji framer-ee3tr6\",layoutDependency:layoutDependency,layoutId:\"FLkzkQzIW\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.04em\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fa6e90e6-b47d-4706-a82f-fbecf7ba28fd, rgb(17, 17, 17)))\"},children:\"About Us\"})}),className:\"framer-1kok0jz\",fonts:[\"GF;Montserrat-700\"],layoutDependency:layoutDependency,layoutId:\"ccty7RwQL\",style:{\"--extracted-r6o4lv\":\"var(--token-fa6e90e6-b47d-4706-a82f-fbecf7ba28fd, rgb(17, 17, 17))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({t46yYVnkL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.04em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"About Us\"})}),fonts:[\"GF;Inter Tight-600\"]}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ck1N0LNE_\"},motionChild:true,nodeId:\"fYKhkrHJO\",scopeId:\"LxxSmtfB5\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-q9jek framer-ee3tr6\",layoutDependency:layoutDependency,layoutId:\"fYKhkrHJO\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.4px\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fa6e90e6-b47d-4706-a82f-fbecf7ba28fd, rgb(17, 17, 17)))\"},children:\"Education\"})}),className:\"framer-1oeim2v\",fonts:[\"GF;Montserrat-700\"],layoutDependency:layoutDependency,layoutId:\"ARvoVlDI0\",style:{\"--extracted-r6o4lv\":\"var(--token-fa6e90e6-b47d-4706-a82f-fbecf7ba28fd, rgb(17, 17, 17))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({t46yYVnkL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"Education\"})}),fonts:[\"GF;Inter Tight-600\"]}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"PGCZefr6x\"},motionChild:true,nodeId:\"wFXyUf_fy\",scopeId:\"LxxSmtfB5\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-z3z3bo framer-ee3tr6\",layoutDependency:layoutDependency,layoutId:\"wFXyUf_fy\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.4px\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fa6e90e6-b47d-4706-a82f-fbecf7ba28fd, rgb(17, 17, 17)))\"},children:\"Contact\"})}),className:\"framer-1q365me\",fonts:[\"GF;Montserrat-700\"],layoutDependency:layoutDependency,layoutId:\"KCsb7Rlsi\",style:{\"--extracted-r6o4lv\":\"var(--token-fa6e90e6-b47d-4706-a82f-fbecf7ba28fd, rgb(17, 17, 17))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({t46yYVnkL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"Contact\"})}),fonts:[\"GF;Inter Tight-600\"]}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"oyrUnzBYQ\"},motionChild:true,nodeId:\"SicE0ghO8\",scopeId:\"LxxSmtfB5\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1rw6xvk framer-ee3tr6\",layoutDependency:layoutDependency,layoutId:\"SicE0ghO8\",style:{backgroundColor:\"var(--token-a2ba9250-cecf-45de-ad8b-3f6f736d1d74, rgb(255, 43, 167))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.04em\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-010bc40a-3c57-4372-8f1c-75e35c850437, rgb(255, 255, 255)))\"},children:\"Shop\"})}),className:\"framer-1mda19l\",fonts:[\"GF;Montserrat-700\"],layoutDependency:layoutDependency,layoutId:\"o72Z77AgE\",style:{\"--extracted-r6o4lv\":\"var(--token-010bc40a-3c57-4372-8f1c-75e35c850437, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Okxlh.framer-ee3tr6, .framer-Okxlh .framer-ee3tr6 { display: block; }\",\".framer-Okxlh.framer-ldnvyh { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: 80px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-Okxlh .framer-1vg08ag { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: 80px; justify-content: space-between; max-width: 1200px; overflow: visible; padding: 0px 16px 0px 16px; position: relative; width: 1px; }\",\".framer-Okxlh .framer-muy3q3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Okxlh .framer-fxjoj7 { flex: none; height: 40px; overflow: hidden; position: relative; width: 40px; }\",\".framer-Okxlh .framer-zm7r5f { flex: none; height: 2px; left: calc(50.00000000000002% - 20px / 2); overflow: hidden; position: absolute; top: calc(62.50000000000002% - 2px / 2); width: 20px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Okxlh .framer-bv2pd0 { flex: none; height: 2px; left: calc(50.00000000000002% - 20px / 2); overflow: hidden; position: absolute; top: calc(37.50000000000002% - 2px / 2); width: 20px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Okxlh .framer-45xj42 { flex: none; height: 20px; position: relative; text-decoration: none; width: 197px; }\",\".framer-Okxlh .framer-bctbt2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Okxlh .framer-1b39tkh, .framer-Okxlh .framer-1ylkyji, .framer-Okxlh .framer-q9jek, .framer-Okxlh .framer-z3z3bo { 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: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-Okxlh .framer-ljqjec, .framer-Okxlh .framer-1kok0jz, .framer-Okxlh .framer-1oeim2v, .framer-Okxlh .framer-1q365me, .framer-Okxlh .framer-1mda19l { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-Okxlh .framer-1rw6xvk { 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: visible; padding: 8px 16px 8px 16px; position: relative; text-decoration: none; width: min-content; }\",\".framer-Okxlh.framer-v-1pkyjpx.framer-ldnvyh { flex-direction: column; gap: 0px; height: min-content; min-height: 80px; padding: 0px 16px 0px 16px; width: 390px; }\",\".framer-Okxlh.framer-v-1pkyjpx .framer-1vg08ag { flex: none; left: calc(50.00000000000002% - min(1200px, 100%) / 2); position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-Okxlh.framer-v-1pkyjpx .framer-muy3q3 { cursor: pointer; gap: unset; justify-content: space-between; left: 50%; order: 0; padding: 18px 10px 18px 10px; position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-Okxlh.framer-v-1pkyjpx .framer-fxjoj7, .framer-Okxlh.framer-v-5eygkf .framer-fxjoj7 { height: 44px; width: 44px; }\",\".framer-Okxlh.framer-v-1pkyjpx .framer-bctbt2 { align-content: flex-start; align-items: flex-start; flex: 1 0 0px; flex-direction: column; gap: 0px; justify-content: flex-start; order: 1; padding: 20px; width: 1px; }\",\".framer-Okxlh.framer-v-5eygkf.framer-ldnvyh { flex-direction: column; gap: 0px; height: min-content; max-height: calc(var(--framer-viewport-height, 100vh) * 1); padding: 0px 10px 0px 10px; width: 390px; }\",\".framer-Okxlh.framer-v-5eygkf .framer-1vg08ag { flex: none; flex-direction: column; gap: 0px; height: min-content; justify-content: center; padding: 0px; width: 100%; }\",\".framer-Okxlh.framer-v-5eygkf .framer-muy3q3 { cursor: pointer; gap: unset; height: 80px; justify-content: space-between; width: 100%; }\",\".framer-Okxlh.framer-v-5eygkf .framer-zm7r5f, .framer-Okxlh.framer-v-5eygkf .framer-bv2pd0 { top: calc(50.00000000000002% - 2px / 2); }\",\".framer-Okxlh.framer-v-5eygkf .framer-bctbt2 { flex-direction: column; justify-content: flex-start; padding: 20px; width: 100%; }\",'.framer-Okxlh[data-border=\"true\"]::after, .framer-Okxlh [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; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 80\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"t46yYVnkL\":{\"layout\":[\"fixed\",\"auto\"]},\"xAIxFxlDH\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,null,\"100vh\"]}}}\n * @framerVariables {\"qefjXQd5s\":\"hover\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerLxxSmtfB5=withCSS(Component,css,\"framer-Okxlh\");export default FramerLxxSmtfB5;FramerLxxSmtfB5.displayName=\"Navigation\";FramerLxxSmtfB5.defaultProps={height:80,width:1200};addPropertyControls(FramerLxxSmtfB5,{variant:{options:[\"tMLGUlQt_\",\"t46yYVnkL\",\"xAIxFxlDH\"],optionTitles:[\"Desktop\",\"Phone\",\"Phone Open\"],title:\"Variant\",type:ControlType.Enum},qefjXQd5s:{title:\"Hover\",type:ControlType.EventHandler}});addFonts(FramerLxxSmtfB5,[{explicitInter:true,fonts:[{family:\"Montserrat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v29/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCuM70w7Y3tcoqK5.woff2\",weight:\"700\"},{family:\"Inter Tight\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mj0QiqWSRToK8EPg.woff2\",weight:\"600\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerLxxSmtfB5\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"t46yYVnkL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xAIxFxlDH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,null,\\\"100vh\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"qefjXQd5s\\\":\\\"hover\\\"}\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"80\",\"framerIntrinsicWidth\":\"1200\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./LxxSmtfB5.map"],
  "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", "fontStore", "fonts", "css", "className", "FormSparkFonts", "getFonts", "FormSpark_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "Link", "SVG", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerBwdoziTC5", "withCSS", "BwdoziTC5_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "hover", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "qefjXQd5s", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnterbnmd7t", "args", "onTapv2zwki", "onTap16ooz6z", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "u", "Link", "SVG", "RichText2", "css", "FramerLxxSmtfB5", "withCSS", "LxxSmtfB5_default", "addPropertyControls", "ControlType", "addFonts"]
}
