{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/Hbc0lxqGSRzFG6uMT9yO/OPmIEDVRw3amYB3GBzWp/GoogleMaps.js", "ssg:https://framerusercontent.com/modules/vkHAj2Yk0mTnbM6ZdN5c/PlLMu0V3HsBupvdXeFrH/FormSpark.js", "ssg:https://framerusercontent.com/modules/oUXmIG73ZfaGDMQyoLdL/Uv8MsZ3wObOO1PP5QlqZ/IduLYnD6V.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,motion}from\"framer\";import{containerStyles,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{useMemo}from\"react\";const coordinatesRegex=/^((?:\\-?|\\+?)?\\d+(?:\\.\\d+)?),\\s*((?:\\-?|\\+?)?\\d+(?:\\.\\d+)?)$/;/**\n * GOOGLE MAPS\n *\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 400\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export default function GoogleMaps({coordinates,zoom,style,...props}){const borderRadius=useRadius(props);const[latitude1,longitude1]=useMemo(()=>{var ref;const[,latitude,longitude]=(ref=coordinates.match(coordinatesRegex))!==null&&ref!==void 0?ref:[null,\"\",\"\",];return[latitude,longitude];},[coordinates]);return(/*#__PURE__*/ _jsx(motion.div,{style:{...style,...containerStyles,overflow:\"hidden\",borderRadius},...props,children:/*#__PURE__*/ _jsx(\"iframe\",{style:{height:\"100%\",width:\"100%\",border:0},src:`https://maps.google.com/maps?q=${latitude1},${longitude1}&z=${zoom}&output=embed`})}));};addPropertyControls(GoogleMaps,{coordinates:{type:ControlType.String,title:\"Coordinates\",placeholder:\"52.37588, 4.891295\",defaultValue:\"52.37588, 4.891295\",description:\"GPS coordinates can be found directly in [Google Maps](https://maps.google.com).\"},zoom:{type:ControlType.Number,step:1,min:0,max:25,title:\"Zoom\",defaultValue:15},...borderRadiusControl});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"GoogleMaps\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"600\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./GoogleMaps.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget,withCSS}from\"framer\";import{motion}from\"framer-motion\";import{containerStyles,usePadding,useRadius,paddingControl,borderRadiusControl,fontControls,useFontControls}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{useCallback,useMemo,useState}from\"react\";const emailRegex=/^(([^<>()[\\]\\\\.,;:\\s@\"]+(\\.[^<>()[\\]\\\\.,;:\\s@\"]+)*)|(\".+\"))@((\\[[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\])|(([a-zA-Z\\-0-9]+\\.)+[a-zA-Z]{2,}))$/;const validateEmail=email=>{return emailRegex.test(String(email).toLowerCase());};/**\n * FORMSPARK\n *\n * @framerIntrinsicWidth 550\n * @framerIntrinsicHeight 290\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ const FormSpark=withCSS(function FormSpark({formId,withName,nameField:name,withEmail,email,withMessage,message,layout,inputs,button,style,gap,onSubmit,...props}){const[nameValue,setName]=useState(name===null||name===void 0?void 0:name.value);const[emailValue,setEmail]=useState(email===null||email===void 0?void 0:email.value);const[messageValue,setMessage]=useState(message===null||message===void 0?void 0:message.value);const[isNameError,setNameError]=useState(false);const[isEmailError,setEmailError]=useState(false);const[isMessageError,setMessageError]=useState(false);const[isLoading,setLoading]=useState(false);const[isSuccess,setSuccess]=useState(false);const isCanvas=useMemo(()=>{return RenderTarget.current()===RenderTarget.canvas;},[]);const gridTemplateRows=useMemo(()=>{const rows=[];if(withName||withMessage){rows.push(\"max-content\");}if(withMessage){rows.push(\"1fr\");}return[...rows,\"max-content\"].join(\" \");},[withName,withEmail,withMessage]);const gridTemplateColumns=useMemo(()=>{const cols=[];if((withName&&!withEmail||withEmail&&!withName)&&!withMessage&&layout===\"horizontal\"){return\"1fr max-content\";}return\"1fr\";},[withName,withEmail,withMessage,layout]);const{fontFamily,fontSize,fontWeight}=useFontControls(props);const borderRadius=useRadius(props);const paddingValue=usePadding(props);const validateForm=useCallback(()=>{let error=false;setNameError(false);setEmailError(false);setMessageError(false);if(withName&&!nameValue){setNameError(true);error=true;}if(withEmail&&(!emailValue||!validateEmail(emailValue))){setEmailError(true);error=true;}if(withMessage&&!messageValue){setMessageError(true);error=true;}return error;},[validateEmail,withName,withEmail,withMessage,nameValue,emailValue,messageValue,]);const handleSubmit=useCallback(event=>{setLoading(true);event.preventDefault();if(validateForm()){setLoading(false);}else{const data=new FormData(event.target);const entries=Object.fromEntries(data.entries());fetch(`https://submit-form.com/${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:0.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:0.3},whileHover:{opacity:0.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\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"550\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FormSpark.map", "// Generated by Framer (508aa67)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,optimizeAppear,PropertyOverrides,ResolveLinks,RichText,SVG,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useRouter,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";import GoogleMaps from\"https://framerusercontent.com/modules/Hbc0lxqGSRzFG6uMT9yO/OPmIEDVRw3amYB3GBzWp/GoogleMaps.js\";import FormSpark from\"https://framerusercontent.com/modules/vkHAj2Yk0mTnbM6ZdN5c/PlLMu0V3HsBupvdXeFrH/FormSpark.js\";import Navigation from\"#framer/local/canvasComponent/DjKpQKfFL/DjKpQKfFL.js\";import FooterDark from\"#framer/local/canvasComponent/EyGnMbSBi/EyGnMbSBi.js\";import CardAccodion from\"#framer/local/canvasComponent/kLTYd66hS/kLTYd66hS.js\";import ElementsButton from\"#framer/local/canvasComponent/Ndr9XX20U/Ndr9XX20U.js\";import ElementsSocial from\"#framer/local/canvasComponent/nTx7qTZql/nTx7qTZql.js\";import*as sharedStyle2 from\"#framer/local/css/E3zBfRzph/E3zBfRzph.js\";import*as sharedStyle3 from\"#framer/local/css/hB5MPFx5C/hB5MPFx5C.js\";import*as sharedStyle4 from\"#framer/local/css/nIPu1_E6X/nIPu1_E6X.js\";import*as sharedStyle1 from\"#framer/local/css/Oedt4AdKx/Oedt4AdKx.js\";import*as sharedStyle5 from\"#framer/local/css/PH_VmiKck/PH_VmiKck.js\";import*as sharedStyle from\"#framer/local/css/VnwKqd1mv/VnwKqd1mv.js\";import metadataProvider from\"#framer/local/webPageMetadata/IduLYnD6V/IduLYnD6V.js\";const NavigationFonts=getFonts(Navigation);const ContainerWithFX=withFX(Container);const FeatherFonts=getFonts(Feather);const ElementsSocialFonts=getFonts(ElementsSocial);const FormSparkFonts=getFonts(FormSpark);const GoogleMapsFonts=getFonts(GoogleMaps);const MotionDivWithFX=withFX(motion.div);const CardAccodionFonts=getFonts(CardAccodion);const ElementsButtonFonts=getFonts(ElementsButton);const FooterDarkFonts=getFonts(FooterDark);const cycleOrder=[\"c3lI8Y2Ln\",\"Wz_s8B83X\",\"ONVlOYB9C\"];const breakpoints={c3lI8Y2Ln:\"(min-width: 1200px)\",ONVlOYB9C:\"(max-width: 809px)\",Wz_s8B83X:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-jGCkF\";const variantClassNames={c3lI8Y2Ln:\"framer-v-e358in\",ONVlOYB9C:\"framer-v-137j8sc\",Wz_s8B83X:\"framer-v-iu9036\"};const transition1={damping:30,delay:0,mass:1,stiffness:300,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-80};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const transition2={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:150};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:80};const transition3={damping:50,delay:0,mass:1,stiffness:300,type:\"spring\"};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:80};const transition4={damping:30,delay:.2,mass:1,stiffness:300,type:\"spring\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:80};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation7={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:80};const metadata=metadataProvider();const humanReadableVariantMap={\"Desktop 2\":\"c3lI8Y2Ln\",Phone:\"ONVlOYB9C\",Tablet:\"Wz_s8B83X\"};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:\"c3lI8Y2Ln\"};};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-jGCkF`);return()=>{document.body.classList.remove(`${metadata1.bodyClassName}-framer-jGCkF`);};}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const router=useRouter();const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"c3lI8Y2Ln\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-e358in\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ONVlOYB9C:{width:\"calc(100vw - 16px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ONVlOYB9C:{transformTemplate:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:animation},__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1spb3bq-container\",layoutScroll:true,transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ONVlOYB9C:{style:{width:\"100%\"},variant:\"T1JoZ0HLW\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"cEyRK4QZb\",layoutId:\"cEyRK4QZb\",variant:\"JF2OhIxJ3\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qxljpu\",\"data-framer-name\":\"Sections/ Contact  Copy\",name:\"Sections/ Contact  Copy\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1muy6na\",\"data-border\":true,\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jgpl97\",\"data-framer-name\":\"Frame 45576\",name:\"Frame 45576\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-eet63u\",\"data-framer-name\":\"Frame 45571\",name:\"Frame 45571\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-fn5l1c\",\"data-styles-preset\":\"VnwKqd1mv\",style:{\"--framer-text-color\":\"var(--token-825dae40-55d4-4fdb-a9a6-4c865968e205, rgb(255, 255, 255))\"},children:\"Get in touch\"})}),className:\"framer-gkj2p3\",\"data-framer-name\":\"Get in touch\",fonts:[\"Inter\"],name:\"Get in touch\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-zkqcg\",\"data-styles-preset\":\"Oedt4AdKx\",style:{\"--framer-text-color\":\"var(--token-982fe941-ac9b-4624-a058-4a7597b0e9eb, rgb(161, 161, 168))\"},children:\"Have a project? We would love to help\"})}),className:\"framer-62vqsb\",\"data-framer-name\":\"Have a project? We would love to help\",fonts:[\"Inter\"],name:\"Have a project? We would love to help\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12mmhbt\",\"data-framer-name\":\"Frame 45578\",name:\"Frame 45578\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t04v1\",\"data-framer-name\":\"Frame 45577\",name:\"Frame 45577\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kxu12y\",\"data-framer-name\":\"Frame 45579\",name:\"Frame 45579\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1c42mhy-container\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-982fe941-ac9b-4624-a058-4a7597b0e9eb, rgb(161, 161, 168))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"mail\",id:\"KKIoQrzX4\",layoutId:\"KKIoQrzX4\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1l41ie\",\"data-styles-preset\":\"E3zBfRzph\",style:{\"--framer-text-color\":\"var(--token-982fe941-ac9b-4624-a058-4a7597b0e9eb, rgb(161, 161, 168))\"},children:\"hello@genly.com\"})}),className:\"framer-1y85i9b\",\"data-framer-name\":\"hello@squareex.com\",fonts:[\"Inter\"],name:\"hello@squareex.com\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ka15w\",\"data-framer-name\":\"Frame 45580\",name:\"Frame 45580\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-bgnlwo-container\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-982fe941-ac9b-4624-a058-4a7597b0e9eb, rgb(161, 161, 168))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"phone\",id:\"s9uNn3LvM\",layoutId:\"s9uNn3LvM\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1l41ie\",\"data-styles-preset\":\"E3zBfRzph\",style:{\"--framer-text-color\":\"var(--token-982fe941-ac9b-4624-a058-4a7597b0e9eb, rgb(161, 161, 168))\"},children:\"+90 532 680 38 72\"})}),className:\"framer-w46vja\",\"data-framer-name\":\"+90 532 680 38 72\",fonts:[\"Inter\"],name:\"+90 532 680 38 72\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kk7cdw\",\"data-framer-name\":\"Frame 45581\",name:\"Frame 45581\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-vvn9ia-container\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-982fe941-ac9b-4624-a058-4a7597b0e9eb, rgb(161, 161, 168))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"map-pin\",id:\"xU4Xl36P2\",layoutId:\"xU4Xl36P2\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1l41ie\",\"data-styles-preset\":\"E3zBfRzph\",style:{\"--framer-text-color\":\"var(--token-982fe941-ac9b-4624-a058-4a7597b0e9eb, rgb(161, 161, 168))\"},children:\"Singel 99C, 1012 VG Amsterdam,\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1l41ie\",\"data-styles-preset\":\"E3zBfRzph\",style:{\"--framer-text-color\":\"var(--token-982fe941-ac9b-4624-a058-4a7597b0e9eb, rgb(161, 161, 168))\"},children:\"Netherlands\"})]}),className:\"framer-1uhjlus\",\"data-framer-name\":\"FSM Mah. Poligon Cad. Buyaka 2 Sitesi Kule:3No: 8C/1 Umraniye, Istanbul\",fonts:[\"Inter\"],name:\"FSM Mah. Poligon Cad. Buyaka 2 Sitesi Kule:3No: 8C/1 Umraniye, Istanbul\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xlsdzj\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-uxarok-container\",children:/*#__PURE__*/_jsx(ElementsSocial,{height:\"100%\",id:\"qPpd5t7wh\",kcKDRhUjS:\"https://twitter.com/createwithsang\",layoutId:\"qPpd5t7wh\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1x6xd9c-container\",children:/*#__PURE__*/_jsx(ElementsSocial,{BR4yOouKI:addImageAlt({src:\"https://framerusercontent.com/images/TaIOPwdWPpxCcR1IRET6SkFcw6g.svg\"},\"\"),height:\"100%\",id:\"Tw9qvQFrB\",kcKDRhUjS:\"https://discord.com/\",layoutId:\"Tw9qvQFrB\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1sxsg5l-container\",children:/*#__PURE__*/_jsx(ElementsSocial,{BR4yOouKI:addImageAlt({src:\"https://framerusercontent.com/images/hKE1AjSQw5CzvCcTGtzA6Biv6k.svg\"},\"\"),height:\"100%\",id:\"zprzPFQgH\",kcKDRhUjS:\"https://www.youtube.com/\",layoutId:\"zprzPFQgH\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-lxy00q-container\",children:/*#__PURE__*/_jsx(ElementsSocial,{BR4yOouKI:addImageAlt({src:\"https://framerusercontent.com/images/EGSZcywWeGN1UvDAVniHbioV50I.svg\"},\"\"),height:\"100%\",id:\"sJgAsCeiq\",kcKDRhUjS:\"https://www.linkedin.com/\",layoutId:\"sJgAsCeiq\",width:\"100%\"})})})]})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-xprfdx-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ONVlOYB9C:{padding:13,paddingBottom:13,paddingLeft:13,paddingRight:13,paddingTop:13},Wz_s8B83X:{padding:13,paddingBottom:13,paddingLeft:13,paddingRight:13,paddingTop:13}},children:/*#__PURE__*/_jsx(FormSpark,{borderRadius:12,bottomLeftRadius:12,bottomRightRadius:12,button:{color:\"var(--token-22e34c00-f547-475f-b85c-d728de6742b6, rgb(10, 10, 10))\",fill:\"var(--token-728e4b89-be23-46aa-811b-4d3044f13354, rgb(246, 246, 246))\",fontWeight:600,label:\"Submit\"},email:{placeholder:\"Email\",value:\"\"},font:false,fontFamily:\"Inter\",fontSize:16,fontWeight:400,formId:\"\",gap:16,height:\"100%\",id:\"Z8d86FCdC\",inputs:{color:\"var(--token-825dae40-55d4-4fdb-a9a6-4c865968e205, rgb(255, 255, 255))\",error:\"rgb(238, 68, 68)\",fill:\"var(--token-003f808b-da13-42cf-af15-591db01c61d7, rgb(20, 20, 20))\",placeholderColor:\"var(--token-982fe941-ac9b-4624-a058-4a7597b0e9eb, rgb(161, 161, 168))\"},isMixedBorderRadius:false,layout:\"vertical\",layoutId:\"Z8d86FCdC\",message:{placeholder:\"Your message\",value:\"\"},nameField:{placeholder:\"Name\",value:\"\"},padding:16,paddingBottom:16,paddingLeft:16,paddingPerSide:false,paddingRight:16,paddingTop:16,style:{height:\"100%\",width:\"100%\"},topLeftRadius:12,topRightRadius:12,width:\"100%\",withEmail:true,withMessage:true,withName:true})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-p7nxza-container\",children:/*#__PURE__*/_jsx(GoogleMaps,{borderRadius:12,bottomLeftRadius:12,bottomRightRadius:12,coordinates:\"52.37588, 4.891295\",height:\"100%\",id:\"mvvMFUcRi\",isMixedBorderRadius:false,layoutId:\"mvvMFUcRi\",style:{height:\"100%\",width:\"100%\"},topLeftRadius:12,topRightRadius:12,width:\"100%\",zoom:10})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4dluwr\",\"data-framer-name\":\"FAQ\",name:\"FAQ\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-pcddm5\",\"data-framer-name\":\"Container\",name:\"Container\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1h74yi3\",\"data-framer-name\":\"Content\",name:\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1bzgbnv\",\"data-styles-preset\":\"hB5MPFx5C\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgb(76, 76, 76) 0%, rgb(255, 255, 255) 100%)\"},children:\"FAQ\"})})}),className:\"framer-ng9fr5\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],name:\"Title\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i2l7xp\",\"data-framer-name\":\"FAQ listing\",name:\"FAQ listing\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ONVlOYB9C:{width:\"min(min(min(100vw, 1440px) - 40px, 1200px), 900px)\"},Wz_s8B83X:{width:\"min(min(max(min(100vw, 1440px) - 80px, 1px), 1200px), 900px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"min(min(max(min(100vw, 1440px) - 128px, 1px), 1200px), 900px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-piudtj-container\",children:/*#__PURE__*/_jsx(CardAccodion,{height:\"100%\",id:\"PH6ar2uEo\",Jczos0GP_:\"We offer a range of AI solutions, including data analytics, natural language processing, computer vision, and machine learning. Our goal is to empower you with the tools and knowledge needed to leverage AI technology effectively.\",k3pr0NPgd:\"What kind of AI solutions do you offer?\\n\",layoutId:\"PH6ar2uEo\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"vnYKwcHaL\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ONVlOYB9C:{width:\"min(min(min(100vw, 1440px) - 40px, 1200px), 900px)\"},Wz_s8B83X:{width:\"min(min(max(min(100vw, 1440px) - 80px, 1px), 1200px), 900px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"min(min(max(min(100vw, 1440px) - 128px, 1px), 1200px), 900px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-phpzdh-container\",children:/*#__PURE__*/_jsx(CardAccodion,{height:\"100%\",id:\"jh7z2XKyb\",Jczos0GP_:\"By integrating AI into your business processes, you can automate tasks, gain valuable insights from data, improve decision-making, and enhance customer experiences.\",k3pr0NPgd:\"How can AI Dynamics benefit my business?\",layoutId:\"jh7z2XKyb\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"vnYKwcHaL\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ONVlOYB9C:{width:\"min(min(min(100vw, 1440px) - 40px, 1200px), 900px)\"},Wz_s8B83X:{width:\"min(min(max(min(100vw, 1440px) - 80px, 1px), 1200px), 900px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"min(min(max(min(100vw, 1440px) - 128px, 1px), 1200px), 900px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-5eh7po-container\",children:/*#__PURE__*/_jsx(CardAccodion,{height:\"100%\",id:\"PUaXhRsWD\",Jczos0GP_:\"No, you don't need to be a technical expert to use AI Dynamics. Our platform is designed to be user-friendly and accessible to individuals with varying levels of technical knowledge. We provide tutorials, guides, and support to help you get started.\",k3pr0NPgd:\"Do I need technical expertise to use AI?\",layoutId:\"PUaXhRsWD\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"vnYKwcHaL\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ONVlOYB9C:{width:\"min(min(min(100vw, 1440px) - 40px, 1200px), 900px)\"},Wz_s8B83X:{width:\"min(min(max(min(100vw, 1440px) - 80px, 1px), 1200px), 900px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"min(min(max(min(100vw, 1440px) - 128px, 1px), 1200px), 900px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-8ucsrr-container\",children:/*#__PURE__*/_jsx(CardAccodion,{height:\"100%\",id:\"jAE9SdZyk\",Jczos0GP_:\"Yes, we take data security and privacy seriously. We implement robust security measures to protect your data and ensure compliance with industry standards and regulations.\",k3pr0NPgd:\"Is my data secure on AI?\",layoutId:\"jAE9SdZyk\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"vnYKwcHaL\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ONVlOYB9C:{width:\"min(min(min(100vw, 1440px) - 40px, 1200px), 900px)\"},Wz_s8B83X:{width:\"min(min(max(min(100vw, 1440px) - 80px, 1px), 1200px), 900px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"min(min(max(min(100vw, 1440px) - 128px, 1px), 1200px), 900px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mr0t1n-container\",children:/*#__PURE__*/_jsx(CardAccodion,{height:\"100%\",id:\"otMvGh1_7\",Jczos0GP_:\"Yes, our platform is designed to be compatible with a wide range of systems and tools. We offer APIs and integration options to facilitate seamless connectivity with your existing infrastructure\",k3pr0NPgd:\"Can I integrate AI Dynamics with my existing systems and tools?\",layoutId:\"otMvGh1_7\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"vnYKwcHaL\",width:\"100%\"})})})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sdvlcq\",\"data-border\":true,\"data-framer-name\":\"CTA\",name:\"CTA\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ONVlOYB9C:{style:{}},Wz_s8B83X:{style:{}}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1s1wkjl\",\"data-framer-name\":\"Container\",name:\"Container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ONVlOYB9C:{\"data-framer-appear-id\":\"rxbkkj\",animate:optimizeAppear(\"animate\",\"rxbkkj\",animation6,\"137j8sc\"),initial:optimizeAppear(\"initial\",\"rxbkkj\",animation7,\"137j8sc\")},Wz_s8B83X:{\"data-framer-appear-id\":\"12fvrlc\",animate:optimizeAppear(\"animate\",\"12fvrlc\",animation6,\"iu9036\"),initial:optimizeAppear(\"initial\",\"12fvrlc\",animation7,\"iu9036\")}},children:/*#__PURE__*/_jsxs(motion.div,{animate:optimizeAppear(\"animate\",\"10bxxlg\",animation6,\"e358in\"),className:\"framer-10bxxlg\",\"data-framer-appear-id\":\"10bxxlg\",\"data-framer-name\":\"Content\",exit:animation5,initial:optimizeAppear(\"initial\",\"10bxxlg\",animation7,\"e358in\"),name:\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1govdsm\",\"data-framer-name\":\"Row\",name:\"Row\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fyrtzn\",\"data-framer-name\":\"Title\",name:\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-taafpy\",\"data-styles-preset\":\"nIPu1_E6X\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Ready to\",/*#__PURE__*/_jsx(\"br\",{}),\"Experience\"]})}),className:\"framer-1dj0tqq\",\"data-framer-name\":\"Your All In One\",fonts:[\"Inter\"],name:\"Your All In One\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ONVlOYB9C:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-taafpy\",\"data-styles-preset\":\"nIPu1_E6X\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(5848deg, rgb(93, 255, 187) 0%, rgb(128, 107, 255) 31.2453%, rgb(117, 95, 255) 52.0741%, rgb(255, 113, 138) 100%)\"},children:\"the Power of AI?\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-taafpy\",\"data-styles-preset\":\"nIPu1_E6X\",children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(5848deg, rgb(93, 255, 187) 0%, rgb(128, 107, 255) 31.2453%, rgb(117, 95, 255) 52.0741%, rgb(255, 113, 138) 100%)\"},children:\"the Power of AI?\"})})}),className:\"framer-jjfz9r\",\"data-framer-name\":\"Genly System\",fonts:[\"Inter\"],name:\"Genly System\",verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ejcw6o\",\"data-styles-preset\":\"PH_VmiKck\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-982fe941-ac9b-4624-a058-4a7597b0e9eb, rgb(161, 161, 168))\"},children:\"A team of dedicated experts and a commitment to innovation, we strive to make AI accessible and valuable to everyone.\"})}),className:\"framer-1pz90c5\",\"data-framer-name\":\"With a team of dedicated experts and a commitment to innovation, we strive to make AI accessible and valuable to everyone.\",fonts:[\"Inter\"],name:\"With a team of dedicated experts and a commitment to innovation, we strive to make AI accessible and valuable to everyone.\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sj6bo4\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ssv1zj-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ONVlOYB9C:{IdpUuaX0g:resolvedLinks[2]},Wz_s8B83X:{IdpUuaX0g:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(ElementsButton,{DKgEIYaZk:16,height:\"100%\",id:\"SzzIJPdtr\",IdpUuaX0g:resolvedLinks[0],K35sc68JG:\"Get started\",layoutId:\"SzzIJPdtr\",MLTGzzDTD:false,variant:\"IB9uKhp7g\",width:\"100%\",WUC38RPCi:false})})})})})})]})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dgcq78\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-xc9fbt\",\"data-framer-name\":\"Background\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:508,intrinsicWidth:594,name:\"Background\",svg:'<svg width=\"594\" height=\"508\" viewBox=\"0 0 594 508\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.2\">\\n<g opacity=\"0.2\">\\n<path d=\"M159 47.5C159 41.701 163.701 37 169.5 37C175.299 37 180 41.701 180 47.5V349.5C180 355.299 175.299 360 169.5 360C163.701 360 159 355.299 159 349.5V47.5Z\" fill=\"url(#paint0_linear_2154_818)\"/>\\n<path d=\"M291 18.5C291 12.701 295.701 8 301.5 8C307.299 8 312 12.701 312 18.5V320.5C312 326.299 307.299 331 301.5 331C295.701 331 291 326.299 291 320.5V18.5Z\" fill=\"url(#paint1_linear_2154_818)\"/>\\n<path d=\"M357 66.5C357 60.701 361.701 56 367.5 56C373.299 56 378 60.701 378 66.5V369.5C378 375.299 373.299 380 367.5 380C361.701 380 357 375.299 357 369.5V66.5Z\" fill=\"url(#paint2_linear_2154_818)\"/>\\n<path d=\"M423 113.5C423 107.701 427.701 103 433.5 103C439.299 103 444 107.701 444 113.5V415.5C444 421.299 439.299 426 433.5 426C427.701 426 423 421.299 423 415.5V113.5Z\" fill=\"url(#paint3_linear_2154_818)\"/>\\n<path d=\"M489 58.5C489 52.701 493.701 48 499.5 48C505.299 48 510 52.701 510 58.5V361.5C510 367.299 505.299 372 499.5 372C493.701 372 489 367.299 489 361.5V58.5Z\" fill=\"url(#paint4_linear_2154_818)\"/>\\n<path d=\"M555 186.5C555 180.701 559.701 176 565.5 176C571.299 176 576 180.701 576 186.5V489.5C576 495.299 571.299 500 565.5 500C559.701 500 555 495.299 555 489.5V186.5Z\" fill=\"url(#paint5_linear_2154_818)\"/>\\n<path d=\"M93 113.5C93 107.701 97.701 103 103.5 103C109.299 103 114 107.701 114 113.5V415.5C114 421.299 109.299 426 103.5 426C97.701 426 93 421.299 93 415.5V113.5Z\" fill=\"url(#paint6_linear_2154_818)\"/>\\n<path d=\"M18 179.5C18 173.701 22.701 169 28.5 169C34.299 169 39 173.701 39 179.5V481.5C39 487.299 34.299 492 28.5 492C22.701 492 18 487.299 18 481.5V179.5Z\" fill=\"url(#paint7_linear_2154_818)\"/>\\n<path d=\"M225 81.5C225 75.701 229.701 71 235.5 71C241.299 71 246 75.701 246 81.5V384.5C246 390.299 241.299 395 235.5 395C229.701 395 225 390.299 225 384.5V81.5Z\" fill=\"url(#paint8_linear_2154_818)\"/>\\n</g>\\n</g>\\n<defs>\\n<linearGradient id=\"paint0_linear_2154_818\" x1=\"235.5\" y1=\"71\" x2=\"235.5\" y2=\"283.18\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\"/>\\n<stop offset=\"1\" stop-color=\"#0A0A0A\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_2154_818\" x1=\"235.5\" y1=\"71\" x2=\"235.5\" y2=\"283.18\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\"/>\\n<stop offset=\"1\" stop-color=\"#0A0A0A\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_2154_818\" x1=\"235.5\" y1=\"71\" x2=\"235.5\" y2=\"283.18\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\"/>\\n<stop offset=\"1\" stop-color=\"#0A0A0A\"/>\\n</linearGradient>\\n<linearGradient id=\"paint3_linear_2154_818\" x1=\"235.5\" y1=\"71\" x2=\"235.5\" y2=\"283.18\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\"/>\\n<stop offset=\"1\" stop-color=\"#0A0A0A\"/>\\n</linearGradient>\\n<linearGradient id=\"paint4_linear_2154_818\" x1=\"235.5\" y1=\"71\" x2=\"235.5\" y2=\"283.18\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\"/>\\n<stop offset=\"1\" stop-color=\"#0A0A0A\"/>\\n</linearGradient>\\n<linearGradient id=\"paint5_linear_2154_818\" x1=\"235.5\" y1=\"71\" x2=\"235.5\" y2=\"283.18\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\"/>\\n<stop offset=\"1\" stop-color=\"#0A0A0A\"/>\\n</linearGradient>\\n<linearGradient id=\"paint6_linear_2154_818\" x1=\"235.5\" y1=\"71\" x2=\"235.5\" y2=\"283.18\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\"/>\\n<stop offset=\"1\" stop-color=\"#0A0A0A\"/>\\n</linearGradient>\\n<linearGradient id=\"paint7_linear_2154_818\" x1=\"235.5\" y1=\"71\" x2=\"235.5\" y2=\"283.18\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\"/>\\n<stop offset=\"1\" stop-color=\"#0A0A0A\"/>\\n</linearGradient>\\n<linearGradient id=\"paint8_linear_2154_818\" x1=\"235.5\" y1=\"71\" x2=\"235.5\" y2=\"283.18\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\"/>\\n<stop offset=\"1\" stop-color=\"#0A0A0A\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-hki5mf-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ONVlOYB9C:{variant:\"YORed8vkj\"},Wz_s8B83X:{variant:\"DjFtcj8LG\"}},children:/*#__PURE__*/_jsx(FooterDark,{height:\"100%\",id:\"m8qJX3j7N\",layoutId:\"m8qJX3j7N\",style:{width:\"100%\"},variant:\"qMw2yuijj\",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-jGCkF { background: var(--token-22e34c00-f547-475f-b85c-d728de6742b6, rgb(28, 28, 28)) /* {\"name\":\"Neutral/900\"} */; }`,\".framer-jGCkF.framer-1ho5qlc, .framer-jGCkF .framer-1ho5qlc { display: block; }\",\".framer-jGCkF.framer-e358in { align-content: center; align-items: center; background-color: var(--token-22e34c00-f547-475f-b85c-d728de6742b6, #1c1c1c); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-jGCkF .framer-1spb3bq-container { flex: none; height: auto; left: 50%; position: fixed; top: 8px; transform: translateX(-50%); width: auto; z-index: 10; }\",\".framer-jGCkF .framer-qxljpu { align-content: center; align-items: center; background-color: var(--token-22e34c00-f547-475f-b85c-d728de6742b6, #0a0a0a); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: visible; padding: 160px 80px 120px 80px; position: relative; width: 100%; }\",\".framer-jGCkF .framer-1muy6na { --border-bottom-width: 1px; --border-color: var(--token-84a40457-4278-48a9-918c-5ea0d323b01b, #2f2f33); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: flex-start; overflow: visible; padding: 56px; position: relative; width: 100%; }\",\".framer-jGCkF .framer-jgpl97 { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: auto; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-jGCkF .framer-eet63u { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-jGCkF .framer-gkj2p3, .framer-jGCkF .framer-62vqsb, .framer-jGCkF .framer-ng9fr5 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-jGCkF .framer-12mmhbt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-jGCkF .framer-1t04v1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-jGCkF .framer-kxu12y, .framer-jGCkF .framer-1ka15w { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-jGCkF .framer-1c42mhy-container, .framer-jGCkF .framer-bgnlwo-container { flex: none; height: 16px; position: relative; width: 16px; }\",\".framer-jGCkF .framer-1y85i9b, .framer-jGCkF .framer-w46vja, .framer-jGCkF .framer-1uhjlus, .framer-jGCkF .framer-jjfz9r { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-jGCkF .framer-kk7cdw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-jGCkF .framer-vvn9ia-container { flex: none; height: 23px; position: relative; width: 16px; }\",\".framer-jGCkF .framer-1xlsdzj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-jGCkF .framer-uxarok-container, .framer-jGCkF .framer-1x6xd9c-container, .framer-jGCkF .framer-1sxsg5l-container, .framer-jGCkF .framer-lxy00q-container, .framer-jGCkF .framer-ssv1zj-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-jGCkF .framer-xprfdx-container { flex: none; height: 395px; position: relative; width: 45%; }\",\".framer-jGCkF .framer-p7nxza-container { flex: none; height: 363px; position: relative; width: 100%; }\",\".framer-jGCkF .framer-4dluwr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 80px 64px 200px 64px; position: relative; width: 100%; }\",\".framer-jGCkF .framer-pcddm5 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 46px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-jGCkF .framer-1h74yi3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 800px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-jGCkF .framer-i2l7xp { align-content: center; align-items: center; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; max-width: 900px; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-jGCkF .framer-piudtj-container, .framer-jGCkF .framer-phpzdh-container, .framer-jGCkF .framer-5eh7po-container, .framer-jGCkF .framer-8ucsrr-container, .framer-jGCkF .framer-1mr0t1n-container { flex: none; height: auto; max-width: 900px; position: relative; width: 100%; }\",\".framer-jGCkF .framer-1sdvlcq { --border-bottom-width: 1px; --border-color: var(--token-84a40457-4278-48a9-918c-5ea0d323b01b, #2f2f33); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; background-color: var(--token-22e34c00-f547-475f-b85c-d728de6742b6, #0a0a0a); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 140px 64px 100px 64px; position: relative; width: 100%; }\",\".framer-jGCkF .framer-1s1wkjl { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 46px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 1px; z-index: 2; }\",\".framer-jGCkF .framer-10bxxlg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-jGCkF .framer-1govdsm { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-jGCkF .framer-1fyrtzn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-jGCkF .framer-1dj0tqq { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 450px; word-break: break-word; word-wrap: break-word; }\",\".framer-jGCkF .framer-1pz90c5 { --framer-paragraph-spacing: 0px; align-self: stretch; flex: none; height: auto; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-jGCkF .framer-1sj6bo4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-jGCkF .framer-1dgcq78 { -webkit-filter: blur(100px); background-color: var(--token-825dae40-55d4-4fdb-a9a6-4c865968e205, #ffffff); border-bottom-left-radius: 170px; border-bottom-right-radius: 170px; border-top-left-radius: 170px; border-top-right-radius: 170px; bottom: -144px; filter: blur(100px); flex: none; height: 184px; left: calc(50.00000000000002% - 401px / 2); opacity: 0.14; overflow: hidden; position: absolute; width: 401px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-jGCkF .framer-xc9fbt { flex: none; height: 508px; left: calc(50.00000000000002% - 594px / 2); position: absolute; top: -40px; width: 594px; z-index: 1; }\",\".framer-jGCkF .framer-hki5mf-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-jGCkF.framer-e358in, .framer-jGCkF .framer-qxljpu, .framer-jGCkF .framer-1muy6na, .framer-jGCkF .framer-eet63u, .framer-jGCkF .framer-12mmhbt, .framer-jGCkF .framer-1t04v1, .framer-jGCkF .framer-kxu12y, .framer-jGCkF .framer-1ka15w, .framer-jGCkF .framer-kk7cdw, .framer-jGCkF .framer-1xlsdzj, .framer-jGCkF .framer-4dluwr, .framer-jGCkF .framer-pcddm5, .framer-jGCkF .framer-1h74yi3, .framer-jGCkF .framer-i2l7xp, .framer-jGCkF .framer-1sdvlcq, .framer-jGCkF .framer-1s1wkjl, .framer-jGCkF .framer-10bxxlg, .framer-jGCkF .framer-1govdsm, .framer-jGCkF .framer-1fyrtzn, .framer-jGCkF .framer-1sj6bo4 { gap: 0px; } .framer-jGCkF.framer-e358in > *, .framer-jGCkF .framer-1fyrtzn > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-jGCkF.framer-e358in > :first-child, .framer-jGCkF .framer-qxljpu > :first-child, .framer-jGCkF .framer-eet63u > :first-child, .framer-jGCkF .framer-12mmhbt > :first-child, .framer-jGCkF .framer-1t04v1 > :first-child, .framer-jGCkF .framer-pcddm5 > :first-child, .framer-jGCkF .framer-1h74yi3 > :first-child, .framer-jGCkF .framer-i2l7xp > :first-child, .framer-jGCkF .framer-1s1wkjl > :first-child, .framer-jGCkF .framer-10bxxlg > :first-child, .framer-jGCkF .framer-1govdsm > :first-child, .framer-jGCkF .framer-1fyrtzn > :first-child { margin-top: 0px; } .framer-jGCkF.framer-e358in > :last-child, .framer-jGCkF .framer-qxljpu > :last-child, .framer-jGCkF .framer-eet63u > :last-child, .framer-jGCkF .framer-12mmhbt > :last-child, .framer-jGCkF .framer-1t04v1 > :last-child, .framer-jGCkF .framer-pcddm5 > :last-child, .framer-jGCkF .framer-1h74yi3 > :last-child, .framer-jGCkF .framer-i2l7xp > :last-child, .framer-jGCkF .framer-1s1wkjl > :last-child, .framer-jGCkF .framer-10bxxlg > :last-child, .framer-jGCkF .framer-1govdsm > :last-child, .framer-jGCkF .framer-1fyrtzn > :last-child { margin-bottom: 0px; } .framer-jGCkF .framer-qxljpu > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-jGCkF .framer-1muy6na > * { margin: 0px; margin-left: calc(56px / 2); margin-right: calc(56px / 2); } .framer-jGCkF .framer-1muy6na > :first-child, .framer-jGCkF .framer-kxu12y > :first-child, .framer-jGCkF .framer-1ka15w > :first-child, .framer-jGCkF .framer-kk7cdw > :first-child, .framer-jGCkF .framer-1xlsdzj > :first-child, .framer-jGCkF .framer-4dluwr > :first-child, .framer-jGCkF .framer-1sdvlcq > :first-child, .framer-jGCkF .framer-1sj6bo4 > :first-child { margin-left: 0px; } .framer-jGCkF .framer-1muy6na > :last-child, .framer-jGCkF .framer-kxu12y > :last-child, .framer-jGCkF .framer-1ka15w > :last-child, .framer-jGCkF .framer-kk7cdw > :last-child, .framer-jGCkF .framer-1xlsdzj > :last-child, .framer-jGCkF .framer-4dluwr > :last-child, .framer-jGCkF .framer-1sdvlcq > :last-child, .framer-jGCkF .framer-1sj6bo4 > :last-child { margin-right: 0px; } .framer-jGCkF .framer-eet63u > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-jGCkF .framer-12mmhbt > *, .framer-jGCkF .framer-10bxxlg > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-jGCkF .framer-1t04v1 > *, .framer-jGCkF .framer-i2l7xp > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-jGCkF .framer-kxu12y > *, .framer-jGCkF .framer-1ka15w > *, .framer-jGCkF .framer-kk7cdw > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-jGCkF .framer-1xlsdzj > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-jGCkF .framer-4dluwr > *, .framer-jGCkF .framer-1sdvlcq > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-jGCkF .framer-pcddm5 > *, .framer-jGCkF .framer-1s1wkjl > * { margin: 0px; margin-bottom: calc(46px / 2); margin-top: calc(46px / 2); } .framer-jGCkF .framer-1h74yi3 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-jGCkF .framer-1govdsm > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-jGCkF .framer-1sj6bo4 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } }\",\"@media (min-width: 1200px) { .framer-jGCkF .hidden-e358in { display: none !important; } }\",`@media (min-width: 810px) and (max-width: 1199px) { .framer-jGCkF .hidden-iu9036 { display: none !important; } .${metadata.bodyClassName}-framer-jGCkF { background: var(--token-22e34c00-f547-475f-b85c-d728de6742b6, rgb(28, 28, 28)) /* {\"name\":\"Neutral/900\"} */; } .framer-jGCkF.framer-e358in { width: 810px; } .framer-jGCkF .framer-qxljpu { padding: 160px 40px 80px 40px; } .framer-jGCkF .framer-1muy6na { gap: 40px; padding: 56px 32px 56px 32px; } .framer-jGCkF .framer-4dluwr { padding: 80px 40px 120px 40px; } .framer-jGCkF .framer-1sdvlcq { padding: 64px 32px 64px 32px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-jGCkF .framer-1muy6na { gap: 0px; } .framer-jGCkF .framer-1muy6na > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-jGCkF .framer-1muy6na > :first-child { margin-left: 0px; } .framer-jGCkF .framer-1muy6na > :last-child { margin-right: 0px; } }}`,`@media (max-width: 809px) { .framer-jGCkF .hidden-137j8sc { display: none !important; } .${metadata.bodyClassName}-framer-jGCkF { background: var(--token-22e34c00-f547-475f-b85c-d728de6742b6, rgb(28, 28, 28)) /* {\"name\":\"Neutral/900\"} */; } .framer-jGCkF.framer-e358in { width: 390px; } .framer-jGCkF .framer-1spb3bq-container { left: 8px; right: 8px; transform: unset; width: unset; } .framer-jGCkF .framer-qxljpu { padding: 120px 20px 64px 20px; } .framer-jGCkF .framer-1muy6na { flex-direction: column; gap: 40px; padding: 32px 20px 32px 20px; } .framer-jGCkF .framer-jgpl97 { align-self: unset; flex: none; gap: 56px; height: min-content; justify-content: flex-start; width: 100%; } .framer-jGCkF .framer-xprfdx-container, .framer-jGCkF .framer-10bxxlg, .framer-jGCkF .framer-1govdsm, .framer-jGCkF .framer-1fyrtzn, .framer-jGCkF .framer-1dj0tqq { width: 100%; } .framer-jGCkF .framer-4dluwr { flex-direction: column; padding: 80px 20px 120px 20px; } .framer-jGCkF .framer-pcddm5, .framer-jGCkF .framer-1s1wkjl { flex: none; width: 100%; } .framer-jGCkF .framer-1sdvlcq { flex-direction: column; overflow: hidden; padding: 64px 32px 64px 32px; } .framer-jGCkF .framer-jjfz9r { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-jGCkF .framer-1pz90c5 { align-self: unset; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-jGCkF .framer-1muy6na, .framer-jGCkF .framer-jgpl97, .framer-jGCkF .framer-4dluwr, .framer-jGCkF .framer-1sdvlcq { gap: 0px; } .framer-jGCkF .framer-1muy6na > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-jGCkF .framer-1muy6na > :first-child, .framer-jGCkF .framer-jgpl97 > :first-child, .framer-jGCkF .framer-4dluwr > :first-child, .framer-jGCkF .framer-1sdvlcq > :first-child { margin-top: 0px; } .framer-jGCkF .framer-1muy6na > :last-child, .framer-jGCkF .framer-jgpl97 > :last-child, .framer-jGCkF .framer-4dluwr > :last-child, .framer-jGCkF .framer-1sdvlcq > :last-child { margin-bottom: 0px; } .framer-jGCkF .framer-jgpl97 > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-jGCkF .framer-4dluwr > *, .framer-jGCkF .framer-1sdvlcq > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,'.framer-jGCkF[data-border=\"true\"]::after, .framer-jGCkF [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 3081\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Wz_s8B83X\":{\"layout\":[\"fixed\",\"auto\"]},\"ONVlOYB9C\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerIduLYnD6V=withCSS(Component,css,\"framer-jGCkF\");export default FramerIduLYnD6V;FramerIduLYnD6V.displayName=\"Features\";FramerIduLYnD6V.defaultProps={height:3081,width:1200};addFonts(FramerIduLYnD6V,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...NavigationFonts,...FeatherFonts,...ElementsSocialFonts,...FormSparkFonts,...GoogleMapsFonts,...CardAccodionFonts,...ElementsButtonFonts,...FooterDarkFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerIduLYnD6V\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"3081\",\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Wz_s8B83X\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ONVlOYB9C\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerResponsiveScreen\":\"\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["coordinatesRegex", "GoogleMaps", "coordinates", "zoom", "style", "props", "borderRadius", "useRadius", "latitude1", "longitude1", "se", "ref", "latitude", "longitude", "p", "motion", "containerStyles", "addPropertyControls", "ControlType", "borderRadiusControl", "emailRegex", "validateEmail", "email", "FormSpark", "withCSS", "formId", "withName", "name", "withEmail", "withMessage", "message", "layout", "inputs", "button", "style", "gap", "onSubmit", "props", "nameValue", "setName", "ye", "emailValue", "setEmail", "messageValue", "setMessage", "isNameError", "setNameError", "isEmailError", "setEmailError", "isMessageError", "setMessageError", "isLoading", "setLoading", "isSuccess", "setSuccess", "isCanvas", "se", "RenderTarget", "gridTemplateRows", "rows", "gridTemplateColumns", "cols", "fontFamily", "fontSize", "fontWeight", "useFontControls", "borderRadius", "useRadius", "paddingValue", "usePadding", "validateForm", "te", "error", "handleSubmit", "event", "data", "entries", "handleNameChange", "handleEmailChange", "handleMessageChange", "p", "motion", "containerStyles", "u", "defaultStyle", "addPropertyControls", "ControlType", "fontControls", "paddingControl", "borderRadiusControl", "FormSpark_default", "NavigationFonts", "getFonts", "DjKpQKfFL_default", "ContainerWithFX", "withFX", "Container", "FeatherFonts", "Icon", "ElementsSocialFonts", "nTx7qTZql_default", "FormSparkFonts", "FormSpark_default", "GoogleMapsFonts", "GoogleMaps", "MotionDivWithFX", "motion", "CardAccodionFonts", "kLTYd66hS_default", "ElementsButtonFonts", "Ndr9XX20U_default", "FooterDarkFonts", "EyGnMbSBi_default", "breakpoints", "serializationHash", "variantClassNames", "transition1", "animation", "transformTemplate1", "_", "t", "addImageAlt", "image", "alt", "animation1", "transition2", "animation2", "animation3", "transition3", "animation4", "transition4", "animation5", "animation6", "animation7", "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", "ref1", "pe", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "PropertyOverrides2", "ComponentViewportProvider", "ContainerWithFX", "DjKpQKfFL_default", "RichText2", "x", "Container", "Icon", "nTx7qTZql_default", "FormSpark_default", "GoogleMaps", "MotionDivWithFX", "kLTYd66hS_default", "optimizeAppear", "ResolveLinks", "resolvedLinks", "Ndr9XX20U_default", "SVG", "EyGnMbSBi_default", "css", "FramerIduLYnD6V", "withCSS", "IduLYnD6V_default", "addFonts", "NavigationFonts", "FeatherFonts", "ElementsSocialFonts", "FormSparkFonts", "GoogleMapsFonts", "CardAccodionFonts", "ElementsButtonFonts", "FooterDarkFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
