{"version":3,"file":"psSZ7psQkhOYavrQ7nXNITF6o1JM9dtUD9JnUPkJU2o.CpEt14RX.mjs","names":["FormSpark","SectionNavigation","FormSpark","SectionTestimonial","SectionFAQ","SectionCTA","SectionFooter","metadata","className","PropertyOverrides","Image","css"],"sources":["https:/framerusercontent.com/modules/vkHAj2Yk0mTnbM6ZdN5c/PlLMu0V3HsBupvdXeFrH/FormSpark.js","https:/framerusercontent.com/modules/6R0mrI8kAk0QI4u9onEA/av934x25uGJiWAGBNi8r/iDWvkOGQG.js","https:/framerusercontent.com/modules/7uCPeMmLWGJ7RvEFAM09/YfcIBTz5bTpQhRCknmrp/iDWvkOGQG.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://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…](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 (9e04080)\nimport{LazyValue}from\"framer\";const valuesByLocaleId={hlZdVLzlu:new LazyValue(()=>import(\"./iDWvkOGQG-0.js\"))};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values.read()[key];if(value)return value;}locale=locale.fallback;}}function preload(locale){const promises=[];while(locale){const values=valuesByLocaleId[locale.id];if(values){const promise=values.preload();if(promise)promises.push(promise);}locale=locale.fallback;}if(promises.length>0)return Promise.all(promises);}export function usePreloadLocalizedValues(locale){const preloadPromise=preload(locale);if(preloadPromise)throw preloadPromise;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePreloadLocalizedValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (9e04080)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useMetadata,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/9zLIz4fn80IR9zpOx18Q/Embed.js\";import FormSpark from\"https://framerusercontent.com/modules/vkHAj2Yk0mTnbM6ZdN5c/PlLMu0V3HsBupvdXeFrH/FormSpark.js\";import SectionFAQ from\"#framer/local/canvasComponent/MJy394tQs/MJy394tQs.js\";import SectionFooter from\"#framer/local/canvasComponent/QV9tb1Zz7/QV9tb1Zz7.js\";import SectionCTA from\"#framer/local/canvasComponent/uF2KFxXeA/uF2KFxXeA.js\";import SectionTestimonial from\"#framer/local/canvasComponent/X8cF6A7XN/X8cF6A7XN.js\";import SectionNavigation from\"#framer/local/canvasComponent/yUEd_Xtsv/yUEd_Xtsv.js\";import*as sharedStyle2 from\"#framer/local/css/BI3GVuOrO/BI3GVuOrO.js\";import*as sharedStyle1 from\"#framer/local/css/cbPJe4qRL/cbPJe4qRL.js\";import*as sharedStyle4 from\"#framer/local/css/gzpYa8j6n/gzpYa8j6n.js\";import*as sharedStyle3 from\"#framer/local/css/rfmetDLSM/rfmetDLSM.js\";import*as sharedStyle from\"#framer/local/css/T1UvfRJOS/T1UvfRJOS.js\";import getLocalizedValue,{usePreloadLocalizedValues}from\"#framer/local/localization/iDWvkOGQG/iDWvkOGQG.js\";import metadataProvider from\"#framer/local/webPageMetadata/iDWvkOGQG/iDWvkOGQG.js\";const SectionNavigationFonts=getFonts(SectionNavigation);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const MotionDivWithFX=withFX(motion.div);const FormSparkFonts=getFonts(FormSpark);const SectionTestimonialFonts=getFonts(SectionTestimonial);const ContainerWithFX=withFX(Container);const SectionFAQFonts=getFonts(SectionFAQ);const SectionCTAFonts=getFonts(SectionCTA);const SectionFooterFonts=getFonts(SectionFooter);const EmbedFonts=getFonts(Embed);const breakpoints={EFFUwMJj9:\"(max-width: 809px)\",G4oVY35bX:\"(min-width: 1200px)\",jgETSG4iM:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-vzcRy\";const variantClassNames={EFFUwMJj9:\"framer-v-1iphvp4\",G4oVY35bX:\"framer-v-s8ym03\",jgETSG4iM:\"framer-v-g63bgo\"};const transition1={delay:.2,duration:.5,ease:[.12,.23,.5,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:32};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:32};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:24,y:0};const transition2={delay:.4,duration:.5,ease:[.12,.23,.5,1],type:\"tween\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:24,y:0};const transition3={delay:.5,duration:.5,ease:[.12,.23,.5,1],type:\"tween\"};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:24,y:0};const transition4={delay:.6,duration:.5,ease:[.12,.23,.5,1],type:\"tween\"};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:24,y:0};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:32};const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:32};const animation13={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const animation14={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const animation15={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const animation16={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:50};const animation17={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"G4oVY35bX\",Phone:\"EFFUwMJj9\",Tablet:\"jgETSG4iM\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"G4oVY35bX\"};};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 metadata=React.useMemo(()=>metadataProvider(undefined,activeLocale),[undefined,activeLocale]);useMetadata(metadata);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);usePreloadLocalizedValues(activeLocale);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"G4oVY35bX\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-80b54a4c-d17d-4dc6-a07c-27f85bbcda1b, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-s8ym03\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-qukyw2\",\"data-framer-name\":\"Navigation\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EFFUwMJj9:{width:\"min(100vw - 48px, 1344px)\",y:24},jgETSG4iM:{width:\"min(max(100vw - 48px, 1px), 1344px)\",y:24}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:90,width:`min(max(${componentViewport?.width||\"100vw\"} - 48px, 1px), 1344px)`,y:(componentViewport?.y||0)+0+32,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-1k2498n-container\",\"data-framer-appear-id\":\"1k2498n\",initial:animation1,nodeId:\"qjmFDHFix\",optimized:true,rendersWithMotion:true,scopeId:\"iDWvkOGQG\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EFFUwMJj9:{variant:\"jlaY2GTco\"},jgETSG4iM:{variant:\"jlaY2GTco\"}},children:/*#__PURE__*/_jsx(SectionNavigation,{height:\"100%\",id:\"qjmFDHFix\",layoutId:\"qjmFDHFix\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"RtcwkVOLf\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mw16sd\",\"data-framer-name\":\"Section\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-r2vmea\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yzh1ch\",\"data-framer-name\":\"Grid\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-18lgqg9\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ybs5a7\",\"data-framer-name\":\"Wrap\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16q7lz3\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u0z6ek\",\"data-framer-name\":\"Wrap\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1o5ofqg\",\"data-styles-preset\":\"T1UvfRJOS\",style:{\"--framer-text-color\":\"var(--token-17700126-54c9-46dd-926e-b1b94ca3a29b, rgb(110, 81, 224))\"},children:\"Nous contacter\"})}),className:\"framer-1yrgr71\",\"data-framer-name\":\"Stellar Contact\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1r8dgxj\",\"data-styles-preset\":\"cbPJe4qRL\",children:\"R\\xe9ponse en 24h seulement\"})}),className:\"framer-t9m2am\",\"data-framer-name\":\"Contact Sales,\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v2\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"-0.18px\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"rgb(53, 61, 79)\"},children:\"Notre \\xe9quipe s'engage \\xe0 vous r\\xe9pondre rapidement en vous proposant un rendez-vous t\\xe9l\\xe9phonique. \"})}),className:\"framer-jxngiw\",\"data-framer-name\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam ut lorem quis lectus molestie.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13npzvp\",\"data-framer-name\":\"Wrap\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v3\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"-0.18px\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"rgb(6, 11, 19)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Comment vous r\\xe9pondre au mieux ? \"})})}),className:\"framer-tyld7l\",\"data-framer-name\":\"How we can help:\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c2gfy\",\"data-framer-name\":\"Checklist\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-gf8kw3\",\"data-framer-name\":\"Checklist Item\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EFFUwMJj9:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+164+0+0+0+0+0+0+0+0+328.6+0+172+0+0+49.5),pixelHeight:96,pixelWidth:96,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/GzjeBfu2CzDw5eNjKmiPWlTq7k.png\"}},jgETSG4iM:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+164+0+0+0+0+0+0+0+0+328.6+0+172+0+0+49.5),pixelHeight:96,pixelWidth:96,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/GzjeBfu2CzDw5eNjKmiPWlTq7k.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+208+0+0+0+0+0+0+0+0+328.6+0+172+0+0+49.5),pixelHeight:96,pixelWidth:96,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/GzjeBfu2CzDw5eNjKmiPWlTq7k.png\"},className:\"framer-1g53x20\",\"data-framer-name\":\"Icon Wrap\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EFFUwMJj9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:24,intrinsicWidth:24,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+164+0+0+0+0+0+0+0+0+328.6+0+172+0+0+49.5+0),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/cI6c5diYPfHXoWrZ6wMyhJ0IGs.svg\"}},jgETSG4iM:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:24,intrinsicWidth:24,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+164+0+0+0+0+0+0+0+0+328.6+0+172+0+0+49.5+0),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/cI6c5diYPfHXoWrZ6wMyhJ0IGs.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:24,intrinsicWidth:24,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+208+0+0+0+0+0+0+0+0+328.6+0+172+0+0+49.5+0),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/cI6c5diYPfHXoWrZ6wMyhJ0IGs.svg\"},className:\"framer-xyol80\",\"data-framer-name\":\"Icon\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v4\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1kawe4l\",\"data-styles-preset\":\"BI3GVuOrO\",style:{\"--framer-text-color\":\"var(--token-d9d2ea48-61a3-4823-aea6-754b3a00759f, rgb(6, 11, 19))\"},children:\"Ajoutez des d\\xe9tails sur votre projet\"})}),className:\"framer-1tkg9d0\",\"data-framer-name\":\"Share the extra text you want to add as a feature.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1a5s4f4\",\"data-framer-name\":\"Checklist Item\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EFFUwMJj9:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+164+0+0+0+0+0+0+0+0+328.6+0+172+0+135+49.5),pixelHeight:96,pixelWidth:96,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/GzjeBfu2CzDw5eNjKmiPWlTq7k.png\"}},jgETSG4iM:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+164+0+0+0+0+0+0+0+0+328.6+0+172+0+135+49.5),pixelHeight:96,pixelWidth:96,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/GzjeBfu2CzDw5eNjKmiPWlTq7k.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+208+0+0+0+0+0+0+0+0+328.6+0+172+0+135+49.5),pixelHeight:96,pixelWidth:96,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/GzjeBfu2CzDw5eNjKmiPWlTq7k.png\"},className:\"framer-1aq5yw7\",\"data-framer-name\":\"Icon Wrap\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EFFUwMJj9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:24,intrinsicWidth:24,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+164+0+0+0+0+0+0+0+0+328.6+0+172+0+135+49.5+0),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/cI6c5diYPfHXoWrZ6wMyhJ0IGs.svg\"}},jgETSG4iM:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:24,intrinsicWidth:24,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+164+0+0+0+0+0+0+0+0+328.6+0+172+0+135+49.5+0),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/cI6c5diYPfHXoWrZ6wMyhJ0IGs.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:24,intrinsicWidth:24,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+208+0+0+0+0+0+0+0+0+328.6+0+172+0+135+49.5+0),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/cI6c5diYPfHXoWrZ6wMyhJ0IGs.svg\"},className:\"framer-1wwkct8\",\"data-framer-name\":\"Icon\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v5\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1kawe4l\",\"data-styles-preset\":\"BI3GVuOrO\",style:{\"--framer-text-color\":\"var(--token-d9d2ea48-61a3-4823-aea6-754b3a00759f, rgb(6, 11, 19))\"},children:\"Envoyez nous vos coordonn\\xe9es (num\\xe9ro de t\\xe9l\\xe9phone)\"})}),className:\"framer-m9o8jb\",\"data-framer-name\":\"Share the extra text you want to add as a feature.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1etd5lo\",\"data-framer-name\":\"Checklist Item\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EFFUwMJj9:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+164+0+0+0+0+0+0+0+0+328.6+0+172+0+270+49.5),pixelHeight:96,pixelWidth:96,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/GzjeBfu2CzDw5eNjKmiPWlTq7k.png\"}},jgETSG4iM:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+164+0+0+0+0+0+0+0+0+328.6+0+172+0+270+49.5),pixelHeight:96,pixelWidth:96,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/GzjeBfu2CzDw5eNjKmiPWlTq7k.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+208+0+0+0+0+0+0+0+0+328.6+0+172+0+270+49.5),pixelHeight:96,pixelWidth:96,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/GzjeBfu2CzDw5eNjKmiPWlTq7k.png\"},className:\"framer-1g7l7ed\",\"data-framer-name\":\"Icon Wrap\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EFFUwMJj9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:24,intrinsicWidth:24,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+164+0+0+0+0+0+0+0+0+328.6+0+172+0+270+49.5+0),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/cI6c5diYPfHXoWrZ6wMyhJ0IGs.svg\"}},jgETSG4iM:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:24,intrinsicWidth:24,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+164+0+0+0+0+0+0+0+0+328.6+0+172+0+270+49.5+0),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/cI6c5diYPfHXoWrZ6wMyhJ0IGs.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:24,intrinsicWidth:24,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+208+0+0+0+0+0+0+0+0+328.6+0+172+0+270+49.5+0),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/cI6c5diYPfHXoWrZ6wMyhJ0IGs.svg\"},className:\"framer-3l5g8v\",\"data-framer-name\":\"Icon\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v6\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1kawe4l\",\"data-styles-preset\":\"BI3GVuOrO\",style:{\"--framer-text-color\":\"var(--token-d9d2ea48-61a3-4823-aea6-754b3a00759f, rgb(6, 11, 19))\"},children:\"Donnez nous vos disponibilit\\xe9s\"})}),className:\"framer-n2due\",\"data-framer-name\":\"Share the extra text you want to add as a feature.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EFFUwMJj9:{__framer__animate:{transition:transition1},__framer__exit:animation10},jgETSG4iM:{__framer__animate:{transition:transition1},__framer__exit:animation10}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-g5mdxm\",\"data-border\":true,\"data-framer-name\":\"Form Wrap\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mpbtjq\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1m0njv8-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"OoFL5AUms\",scopeId:\"iDWvkOGQG\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EFFUwMJj9:{layout:\"vertical\"}},children:/*#__PURE__*/_jsx(FormSpark,{borderRadius:12,bottomLeftRadius:12,bottomRightRadius:12,button:{color:\"var(--token-80b54a4c-d17d-4dc6-a07c-27f85bbcda1b, rgb(255, 255, 255))\",fill:\"var(--token-17700126-54c9-46dd-926e-b1b94ca3a29b, rgb(110, 81, 224))\",fontWeight:600,label:getLocalizedValue(\"v8\",activeLocale)??\"Envoyer\"},email:{placeholder:\"Email\",value:\"\"},font:false,fontFamily:\"Inter\",fontSize:14,fontWeight:400,formId:\"Uh2tRd1q\",gap:24,height:\"100%\",id:\"OoFL5AUms\",inputs:{color:\"var(--token-d9d2ea48-61a3-4823-aea6-754b3a00759f, rgb(6, 11, 19))\",error:\"rgb(238, 68, 68)\",fill:\"var(--token-b1a0df13-deed-435b-a9b8-300dfd691ccb, rgb(247, 248, 250))\",placeholderColor:\"var(--token-0938f783-37fb-44bb-97cd-ec4a3b4ffedb, rgb(151, 159, 180))\"},isMixedBorderRadius:false,layout:\"horizontal\",layoutId:\"OoFL5AUms\",message:{placeholder:\"Message\",value:\"\"},nameField:{placeholder:getLocalizedValue(\"v7\",activeLocale)??\"Nom\",value:\"\"},padding:14,paddingBottom:14,paddingLeft:14,paddingPerSide:false,paddingRight:14,paddingTop:14,style:{height:\"100%\",width:\"100%\"},topLeftRadius:12,topRightRadius:12,width:\"100%\",withEmail:true,withMessage:true,withName:true})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v9\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"-0.18px\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"rgb(53, 61, 79)\"},children:/*#__PURE__*/_jsx(\"em\",{children:/*#__PURE__*/_jsx(\"strong\",{children:\"Attention, nous ne r\\xe9pondons qu'aux solicitations de projets vid\\xe9o via ce formulaire.\"})})})}),className:\"framer-x71is0\",\"data-framer-name\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam ut lorem quis lectus molestie.\",fonts:[\"Inter\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"],verticalAlignment:\"top\",withExternalLayout:true})]})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vqrwo3\",\"data-framer-name\":\"Background\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-r35yh3\",\"data-framer-name\":\"Background Inner\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EFFUwMJj9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:422,intrinsicWidth:2880,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+1625.6),pixelHeight:422,pixelWidth:2880,sizes:\"1440px\",src:\"https://framerusercontent.com/images/nmEaxL8LSgujlwueSi45RLHlLn8.webp\",srcSet:\"https://framerusercontent.com/images/nmEaxL8LSgujlwueSi45RLHlLn8.webp?scale-down-to=512 512w,https://framerusercontent.com/images/nmEaxL8LSgujlwueSi45RLHlLn8.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/nmEaxL8LSgujlwueSi45RLHlLn8.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/nmEaxL8LSgujlwueSi45RLHlLn8.webp 2880w\"}},jgETSG4iM:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:422,intrinsicWidth:2880,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+1603.6),pixelHeight:422,pixelWidth:2880,sizes:\"1440px\",src:\"https://framerusercontent.com/images/nmEaxL8LSgujlwueSi45RLHlLn8.webp\",srcSet:\"https://framerusercontent.com/images/nmEaxL8LSgujlwueSi45RLHlLn8.webp?scale-down-to=512 512w,https://framerusercontent.com/images/nmEaxL8LSgujlwueSi45RLHlLn8.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/nmEaxL8LSgujlwueSi45RLHlLn8.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/nmEaxL8LSgujlwueSi45RLHlLn8.webp 2880w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:422,intrinsicWidth:2880,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+965.6),pixelHeight:422,pixelWidth:2880,sizes:\"1440px\",src:\"https://framerusercontent.com/images/nmEaxL8LSgujlwueSi45RLHlLn8.webp\",srcSet:\"https://framerusercontent.com/images/nmEaxL8LSgujlwueSi45RLHlLn8.webp?scale-down-to=512 512w,https://framerusercontent.com/images/nmEaxL8LSgujlwueSi45RLHlLn8.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/nmEaxL8LSgujlwueSi45RLHlLn8.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/nmEaxL8LSgujlwueSi45RLHlLn8.webp 2880w\"},className:\"framer-1yggpfi\",\"data-framer-name\":\"Bottom\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1j0hx94\",\"data-framer-name\":\"Section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-2dpfv2\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h6vn83\",\"data-framer-name\":\"Grid\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1xwtj5a\",\"data-border\":true,\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-14lhiw0\",\"data-border\":true,\"data-framer-name\":\"Icon Wrap\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EFFUwMJj9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:36,intrinsicWidth:36,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1837.6+72+0+0+0+0+0+48+0+14),pixelHeight:36,pixelWidth:36,src:\"https://framerusercontent.com/images/5FZtOw9PnigXBt9Y9rWIBNhGIQ.svg\"}},jgETSG4iM:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:36,intrinsicWidth:36,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1815.6+120+0+0+0+0+0+48+0+14),pixelHeight:36,pixelWidth:36,src:\"https://framerusercontent.com/images/5FZtOw9PnigXBt9Y9rWIBNhGIQ.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:36,intrinsicWidth:36,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1177.6+164+0+0+0+0+0+48+0+14),pixelHeight:36,pixelWidth:36,src:\"https://framerusercontent.com/images/5FZtOw9PnigXBt9Y9rWIBNhGIQ.svg\"},className:\"framer-5l5le4\",\"data-framer-name\":\"Icon\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18q7wee\",\"data-framer-name\":\"Wrap\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-asfoh0\",\"data-styles-preset\":\"rfmetDLSM\",style:{\"--framer-text-alignment\":\"center\"},children:\"Email\"})}),className:\"framer-wp8ghp\",\"data-framer-name\":\"Message Us\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-97thtb\",\"data-styles-preset\":\"gzpYa8j6n\",style:{\"--framer-text-alignment\":\"center\"},children:\"contact@minidoc.fr\"})}),className:\"framer-993lpu\",\"data-framer-name\":\"stellartemplate@flowbase.co\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EFFUwMJj9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:308,intrinsicWidth:326,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1837.6+72+0+0+0+0+0+40),pixelHeight:308,pixelWidth:326,src:\"https://framerusercontent.com/images/DgHWoYZBUU3g92K7uGcb3P2NH8.svg\"}},jgETSG4iM:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:308,intrinsicWidth:326,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1815.6+120+0+0+0+0+0+40),pixelHeight:308,pixelWidth:326,src:\"https://framerusercontent.com/images/DgHWoYZBUU3g92K7uGcb3P2NH8.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:308,intrinsicWidth:326,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1177.6+164+0+0+0+0+0+40),pixelHeight:308,pixelWidth:326,src:\"https://framerusercontent.com/images/DgHWoYZBUU3g92K7uGcb3P2NH8.svg\"},className:\"framer-1eat56v\",\"data-framer-name\":\"Pattern\"})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EFFUwMJj9:{__framer__animate:{transition:transition1},__framer__exit:animation3}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-uwal16\",\"data-border\":true,\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-126hu8k\",\"data-border\":true,\"data-framer-name\":\"Icon Wrap\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EFFUwMJj9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:36,intrinsicWidth:36,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1837.6+72+0+0+0+0+416.8+48+0+14),pixelHeight:36,pixelWidth:36,src:\"https://framerusercontent.com/images/fQHwxq1dNNNcnRsffHvWgIfl2E.svg\"}},jgETSG4iM:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:36,intrinsicWidth:36,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1815.6+120+0+0+0+0+0+48+0+14),pixelHeight:36,pixelWidth:36,src:\"https://framerusercontent.com/images/fQHwxq1dNNNcnRsffHvWgIfl2E.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:36,intrinsicWidth:36,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1177.6+164+0+0+0+0+0+48+0+14),pixelHeight:36,pixelWidth:36,src:\"https://framerusercontent.com/images/fQHwxq1dNNNcnRsffHvWgIfl2E.svg\"},className:\"framer-12tk66t\",\"data-framer-name\":\"Icon\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17ly59f\",\"data-framer-name\":\"Wrap\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v10\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-asfoh0\",\"data-styles-preset\":\"rfmetDLSM\",style:{\"--framer-text-alignment\":\"center\"},children:\"T\\xe9l\\xe9phone\"})}),className:\"framer-e4c75w\",\"data-framer-name\":\"Message Us\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-97thtb\",\"data-styles-preset\":\"gzpYa8j6n\",style:{\"--framer-text-alignment\":\"center\"},children:\"+33787937787\"})}),className:\"framer-o12aq0\",\"data-framer-name\":\"stellartemplate@flowbase.co\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EFFUwMJj9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:308,intrinsicWidth:326,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1837.6+72+0+0+0+0+416.8+40),pixelHeight:308,pixelWidth:326,src:\"https://framerusercontent.com/images/DgHWoYZBUU3g92K7uGcb3P2NH8.svg\"}},jgETSG4iM:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:308,intrinsicWidth:326,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1815.6+120+0+0+0+0+0+40),pixelHeight:308,pixelWidth:326,src:\"https://framerusercontent.com/images/DgHWoYZBUU3g92K7uGcb3P2NH8.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:308,intrinsicWidth:326,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1177.6+164+0+0+0+0+0+40),pixelHeight:308,pixelWidth:326,src:\"https://framerusercontent.com/images/DgHWoYZBUU3g92K7uGcb3P2NH8.svg\"},className:\"framer-14mkmlk\",\"data-framer-name\":\"Pattern\"})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EFFUwMJj9:{__framer__animate:{transition:transition1},__framer__exit:animation3},jgETSG4iM:{__framer__animate:{transition:transition1},__framer__exit:animation3}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-dmtebj\",\"data-border\":true,\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1di84ll\",\"data-border\":true,\"data-framer-name\":\"Icon Wrap\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EFFUwMJj9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:36,intrinsicWidth:36,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1837.6+72+0+0+0+0+833.6+48+0+14),pixelHeight:36,pixelWidth:36,src:\"https://framerusercontent.com/images/Rs9kQ4BcwxOw86EaAZRMxoCunU.svg\"}},jgETSG4iM:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:36,intrinsicWidth:36,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1815.6+120+0+0+0+0+416.8+48+0+14),pixelHeight:36,pixelWidth:36,src:\"https://framerusercontent.com/images/Rs9kQ4BcwxOw86EaAZRMxoCunU.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:36,intrinsicWidth:36,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1177.6+164+0+0+0+0+0+48+0+14),pixelHeight:36,pixelWidth:36,src:\"https://framerusercontent.com/images/Rs9kQ4BcwxOw86EaAZRMxoCunU.svg\"},className:\"framer-179pl6e\",\"data-framer-name\":\"Icon\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i9rqc6\",\"data-framer-name\":\"Wrap\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v11\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-asfoh0\",\"data-styles-preset\":\"rfmetDLSM\",style:{\"--framer-text-alignment\":\"center\"},children:\"Adresse\"})}),className:\"framer-1pfa1fg\",\"data-framer-name\":\"Message Us\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-97thtb\",\"data-styles-preset\":\"gzpYa8j6n\",style:{\"--framer-text-alignment\":\"center\"},children:\"86 rue du Cherche-midi, 75006 Paris\"})}),className:\"framer-rpxay6\",\"data-framer-name\":\"stellartemplate@flowbase.co\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EFFUwMJj9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:308,intrinsicWidth:326,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1837.6+72+0+0+0+0+833.6+40),pixelHeight:308,pixelWidth:326,src:\"https://framerusercontent.com/images/DgHWoYZBUU3g92K7uGcb3P2NH8.svg\"}},jgETSG4iM:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:308,intrinsicWidth:326,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1815.6+120+0+0+0+0+416.8+40),pixelHeight:308,pixelWidth:326,src:\"https://framerusercontent.com/images/DgHWoYZBUU3g92K7uGcb3P2NH8.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:308,intrinsicWidth:326,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1177.6+164+0+0+0+0+0+40),pixelHeight:308,pixelWidth:326,src:\"https://framerusercontent.com/images/DgHWoYZBUU3g92K7uGcb3P2NH8.svg\"},className:\"framer-mqnkli\",\"data-framer-name\":\"Pattern\"})})]})})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EFFUwMJj9:{y:(componentViewport?.y||0)+0+3200},jgETSG4iM:{y:(componentViewport?.y||0)+0+2857.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1192,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+1890.4,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation13,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-be7mnd-container\",nodeId:\"hTQZ0yMSj\",rendersWithMotion:true,scopeId:\"iDWvkOGQG\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EFFUwMJj9:{variant:\"xZwyVBzeI\"},jgETSG4iM:{variant:\"eIWlR7qeb\"}},children:/*#__PURE__*/_jsx(SectionTestimonial,{height:\"100%\",id:\"hTQZ0yMSj\",layoutId:\"hTQZ0yMSj\",style:{width:\"100%\"},variant:\"T8Y4YBWRo\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EFFUwMJj9:{y:(componentViewport?.y||0)+0+4392},jgETSG4iM:{y:(componentViewport?.y||0)+0+4049.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1526,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+3082.4,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation15,__framer__exit:animation16,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1042vv8-container\",nodeId:\"XQK9iDg28\",rendersWithMotion:true,scopeId:\"iDWvkOGQG\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(SectionFAQ,{height:\"100%\",id:\"XQK9iDg28\",layoutId:\"XQK9iDg28\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EFFUwMJj9:{y:(componentViewport?.y||0)+0+5918},jgETSG4iM:{y:(componentViewport?.y||0)+0+5575.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:417,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+4608.4,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation13,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-15w26eg-container\",nodeId:\"fl6zcYRmf\",rendersWithMotion:true,scopeId:\"iDWvkOGQG\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EFFUwMJj9:{variant:\"QvQOOtMZU\"},jgETSG4iM:{variant:\"G9s4t_ZvB\"}},children:/*#__PURE__*/_jsx(SectionCTA,{height:\"100%\",id:\"fl6zcYRmf\",layoutId:\"fl6zcYRmf\",style:{width:\"100%\"},variant:\"oOcU0wSdy\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EFFUwMJj9:{y:(componentViewport?.y||0)+0+6335},jgETSG4iM:{y:(componentViewport?.y||0)+0+5992.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:651,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+5025.4,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EFFUwMJj9:{__framer__animate:{transition:transition2},__framer__exit:animation17},jgETSG4iM:{__framer__animate:{transition:transition2},__framer__exit:animation17}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation13,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1q1pbg1-container\",nodeId:\"BNR7RFJhi\",rendersWithMotion:true,scopeId:\"iDWvkOGQG\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EFFUwMJj9:{variant:\"QYLcTkHgw\"},jgETSG4iM:{variant:\"SIb_pfO7n\"}},children:/*#__PURE__*/_jsx(SectionFooter,{height:\"100%\",id:\"BNR7RFJhi\",layoutId:\"BNR7RFJhi\",style:{width:\"100%\"},variant:\"cUSWxwSqv\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-2ks40g-container\",\"data-framer-name\":\"Translate\",isAuthoredByUser:true,isModuleExternal:true,name:\"Translate\",nodeId:\"oiBylygus\",scopeId:\"iDWvkOGQG\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:' <div class=\"gtranslate_wrapper\"></div>\\n<script>window.gtranslateSettings = {\"default_language\":\"fr\",\"languages\":[\"en\",\"fr\",\"de\",\"it\",\"es\",\"pl\"],\"wrapper_selector\":\".gtranslate_wrapper\"}</script>\\n<script src=\"https://cdn.gtranslate.net/widgets/latest/float.js\" defer></script>',id:\"oiBylygus\",layoutId:\"oiBylygus\",name:\"Translate\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-vzcRy.framer-1lja8no, .framer-vzcRy .framer-1lja8no { display: block; }\",\".framer-vzcRy.framer-s8ym03 { align-content: center; align-items: center; background-color: var(--token-80b54a4c-d17d-4dc6-a07c-27f85bbcda1b, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-vzcRy .framer-qukyw2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 32px 24px 6px 24px; position: absolute; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-vzcRy .framer-1k2498n-container { flex: 1 0 0px; height: auto; max-width: 1344px; position: relative; width: 1px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-vzcRy .framer-1mw16sd { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 208px 24px 80px 24px; position: relative; width: 100%; }\",\".framer-vzcRy .framer-r2vmea { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: center; max-width: 1216px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 5; }\",\".framer-vzcRy .framer-1yzh1ch { display: grid; flex: none; gap: 32px; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(1px, 1fr)); grid-template-rows: repeat(1, min-content); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-vzcRy .framer-18lgqg9 { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; justify-self: start; max-width: 520px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-vzcRy .framer-1ybs5a7 { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-vzcRy .framer-16q7lz3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; max-width: 410px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-vzcRy .framer-u0z6ek { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-vzcRy .framer-1yrgr71 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-vzcRy .framer-t9m2am, .framer-vzcRy .framer-jxngiw, .framer-vzcRy .framer-tyld7l, .framer-vzcRy .framer-x71is0, .framer-vzcRy .framer-wp8ghp, .framer-vzcRy .framer-993lpu, .framer-vzcRy .framer-e4c75w, .framer-vzcRy .framer-o12aq0, .framer-vzcRy .framer-1pfa1fg, .framer-vzcRy .framer-rpxay6 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-vzcRy .framer-13npzvp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-vzcRy .framer-c2gfy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-vzcRy .framer-gf8kw3, .framer-vzcRy .framer-1a5s4f4, .framer-vzcRy .framer-1etd5lo { align-content: center; align-items: center; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; 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-vzcRy .framer-1g53x20, .framer-vzcRy .framer-1aq5yw7, .framer-vzcRy .framer-1g7l7ed { align-content: center; align-items: center; aspect-ratio: 1 / 1; border-bottom-left-radius: 999px; border-bottom-right-radius: 999px; border-top-left-radius: 999px; border-top-right-radius: 999px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 20px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 20px; will-change: var(--framer-will-change-override, transform); }\",\".framer-vzcRy .framer-xyol80, .framer-vzcRy .framer-1wwkct8, .framer-vzcRy .framer-3l5g8v { aspect-ratio: 1 / 1; flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 20px); overflow: hidden; position: relative; width: 20px; }\",\".framer-vzcRy .framer-1tkg9d0, .framer-vzcRy .framer-m9o8jb, .framer-vzcRy .framer-n2due { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-vzcRy .framer-g5mdxm { --border-bottom-width: 1px; --border-color: var(--token-eee4fe02-6f5f-43b9-9ec5-c604ccc6d354, #e9ebf1); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; align-self: start; background-color: var(--token-80b54a4c-d17d-4dc6-a07c-27f85bbcda1b, #ffffff); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 0px 16px 96px 0px rgba(6, 11, 19, 0.06), 0px 0px 0px 4px var(--token-80b54a4c-d17d-4dc6-a07c-27f85bbcda1b, rgb(255, 255, 255)); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; justify-self: start; overflow: hidden; padding: 48px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-vzcRy .framer-1mpbtjq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-vzcRy .framer-1m0njv8-container { flex: none; height: 290px; position: relative; width: 100%; }\",\".framer-vzcRy .framer-1vqrwo3 { align-content: center; align-items: center; background-color: var(--token-b1a0df13-deed-435b-a9b8-300dfd691ccb, #f7f8fa); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: flex-start; left: calc(50.00000000000002% - min(1440px, 100%) / 2); max-width: 1440px; overflow: hidden; padding: 0px; position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-vzcRy .framer-r35yh3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-vzcRy .framer-1yggpfi { flex: none; height: 212px; overflow: hidden; position: relative; width: 100%; }\",\".framer-vzcRy .framer-1j0hx94 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 164px 24px 164px 24px; position: relative; width: 100%; }\",\".framer-vzcRy .framer-2dpfv2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; max-width: 1216px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-vzcRy .framer-1h6vn83 { display: grid; flex: none; gap: 32px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(1px, 1fr)); grid-template-rows: repeat(1, min-content); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-vzcRy .framer-1xwtj5a, .framer-vzcRy .framer-uwal16, .framer-vzcRy .framer-dmtebj { --border-bottom-width: 3px; --border-color: var(--token-80b54a4c-d17d-4dc6-a07c-27f85bbcda1b, #ffffff); --border-left-width: 3px; --border-right-width: 3px; --border-style: solid; --border-top-width: 3px; align-content: center; align-items: center; align-self: start; background-color: var(--token-b1a0df13-deed-435b-a9b8-300dfd691ccb, #f7f8fa); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 0px 0px 0px 1px var(--token-eee4fe02-6f5f-43b9-9ec5-c604ccc6d354, #e9ebf1); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; justify-self: start; overflow: hidden; padding: 48px 40px 48px 40px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-vzcRy .framer-14lhiw0, .framer-vzcRy .framer-126hu8k, .framer-vzcRy .framer-1di84ll { --border-bottom-width: 1px; --border-color: var(--token-eee4fe02-6f5f-43b9-9ec5-c604ccc6d354, #e9ebf1); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-80b54a4c-d17d-4dc6-a07c-27f85bbcda1b, #ffffff); border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 14px; position: relative; width: min-content; }\",\".framer-vzcRy .framer-5l5le4, .framer-vzcRy .framer-12tk66t, .framer-vzcRy .framer-179pl6e { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 36px); overflow: hidden; position: relative; width: 36px; }\",\".framer-vzcRy .framer-18q7wee, .framer-vzcRy .framer-17ly59f, .framer-vzcRy .framer-i9rqc6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-vzcRy .framer-1eat56v, .framer-vzcRy .framer-14mkmlk, .framer-vzcRy .framer-mqnkli { flex: none; height: 308px; overflow: hidden; position: absolute; right: -232px; top: 40px; width: 308px; z-index: 0; }\",\".framer-vzcRy .framer-be7mnd-container, .framer-vzcRy .framer-1042vv8-container, .framer-vzcRy .framer-15w26eg-container, .framer-vzcRy .framer-1q1pbg1-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-vzcRy .framer-2ks40g-container { bottom: 23px; flex: none; height: 45px; left: 20px; position: absolute; width: 122px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,'.framer-vzcRy[data-border=\"true\"]::after, .framer-vzcRy [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-vzcRy.framer-s8ym03 { width: 810px; } .framer-vzcRy .framer-qukyw2 { padding: 24px 24px 0px 24px; position: fixed; } .framer-vzcRy .framer-1mw16sd { padding: 164px 24px 96px 24px; } .framer-vzcRy .framer-1yzh1ch { gap: 96px; grid-template-columns: repeat(1, minmax(1px, 1fr)); } .framer-vzcRy .framer-18lgqg9 { justify-self: center; } .framer-vzcRy .framer-1j0hx94 { padding: 120px 24px 120px 24px; } .framer-vzcRy .framer-1h6vn83 { grid-template-columns: repeat(2, minmax(1px, 1fr)); }}\",\"@media (max-width: 809px) { .framer-vzcRy.framer-s8ym03 { width: 390px; } .framer-vzcRy .framer-qukyw2 { flex-direction: column; padding: 24px 24px 0px 24px; position: fixed; } .framer-vzcRy .framer-1k2498n-container { flex: none; width: 100%; } .framer-vzcRy .framer-1mw16sd { padding: 164px 24px 96px 24px; } .framer-vzcRy .framer-1yzh1ch { gap: 96px; grid-template-columns: repeat(1, minmax(1px, 1fr)); } .framer-vzcRy .framer-g5mdxm { padding: 24px; } .framer-vzcRy .framer-1m0njv8-container { height: 360px; } .framer-vzcRy .framer-1j0hx94 { padding: 72px 24px 72px 24px; } .framer-vzcRy .framer-1h6vn83 { grid-template-columns: repeat(1, minmax(1px, 1fr)); }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5183\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"jgETSG4iM\":{\"layout\":[\"fixed\",\"auto\"]},\"EFFUwMJj9\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FrameriDWvkOGQG=withCSS(Component,css,\"framer-vzcRy\");export default FrameriDWvkOGQG;FrameriDWvkOGQG.displayName=\"Contact\";FrameriDWvkOGQG.defaultProps={height:5183,width:1200};addFonts(FrameriDWvkOGQG,[{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://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.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://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.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://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.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://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.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://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{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://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{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://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{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://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{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://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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://framerusercontent.com/assets/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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://framerusercontent.com/assets/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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://framerusercontent.com/assets/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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://framerusercontent.com/assets/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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://framerusercontent.com/assets/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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://framerusercontent.com/assets/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"}]},...SectionNavigationFonts,...FormSparkFonts,...SectionTestimonialFonts,...SectionFAQFonts,...SectionCTAFonts,...SectionFooterFonts,...EmbedFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameriDWvkOGQG\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerImmutableVariables\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jgETSG4iM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"EFFUwMJj9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerIntrinsicHeight\":\"5183\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],"mappings":"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"}