{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/bBdwiNZKeH4G0eJlkuCZ/itArGwqj9Rf4usEYNym8/FormSpark_1.js", "ssg:https://framerusercontent.com/modules/UG2pBTBuT7as5V7t5ihe/v8ci1vh22VsqX3iGkaRq/MMakbvF4R.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget,withCSS}from\"framer\";import{motion}from\"framer-motion\";import{containerStyles,usePadding,useRadius,paddingControl,borderRadiusControl,fontControls,useFontControls}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{useCallback,useMemo,useState}from\"react\";const emailRegex=/^(([^<>()[\\]\\\\.,;:\\s@\"]+(\\.[^<>()[\\]\\\\.,;:\\s@\"]+)*)|(\".+\"))@((\\[[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\])|(([a-zA-Z\\-0-9]+\\.)+[a-zA-Z]{2,}))$/;const validateEmail=email=>{return emailRegex.test(String(email).toLowerCase());};/**\n * FORMSPARK\n *\n * @framerIntrinsicWidth 550\n * @framerIntrinsicHeight 290\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */const FormSpark=withCSS(function FormSpark({formId,withName,nameField:name,withEmail,email,withMessage,message,layout,inputs,button,style,gap,onSubmit,...props}){const[nameValue,setName]=useState(name===null||name===void 0?void 0:name.value);const[emailValue,setEmail]=useState(email===null||email===void 0?void 0:email.value);const[messageValue,setMessage]=useState(message===null||message===void 0?void 0:message.value);const[isNameError,setNameError]=useState(false);const[isEmailError,setEmailError]=useState(false);const[isMessageError,setMessageError]=useState(false);const[isLoading,setLoading]=useState(false);const[isSuccess,setSuccess]=useState(false);const isCanvas=useMemo(()=>{return RenderTarget.current()===RenderTarget.canvas;},[]);const gridTemplateRows=useMemo(()=>{const rows=[];if(withName||withMessage){rows.push(\"max-content\");}if(withMessage){rows.push(\"1fr\");}return[...rows,\"max-content\"].join(\" \");},[withName,withEmail,withMessage]);const gridTemplateColumns=useMemo(()=>{const cols=[];if((withName&&!withEmail||withEmail&&!withName)&&!withMessage&&layout===\"horizontal\"){return\"1fr max-content\";}return\"1fr\";},[withName,withEmail,withMessage,layout]);const{fontFamily,fontSize,fontWeight}=useFontControls(props);const borderRadius=useRadius(props);const paddingValue=usePadding(props);const validateForm=useCallback(()=>{let error=false;setNameError(false);setEmailError(false);setMessageError(false);if(withName&&!nameValue){setNameError(true);error=true;}if(withEmail&&(!emailValue||!validateEmail(emailValue))){setEmailError(true);error=true;}if(withMessage&&!messageValue){setMessageError(true);error=true;}return error;},[validateEmail,withName,withEmail,withMessage,nameValue,emailValue,messageValue]);const handleSubmit=useCallback(event=>{setLoading(true);event.preventDefault();if(validateForm()){setLoading(false);}else{const data=new FormData(event.target);const entries=Object.fromEntries(data.entries());fetch(`https://api.formspark.io/${formId}`,{method:\"POST\",headers:{\"Content-Type\":\"application/json\",Accept:\"application/json\"},body:JSON.stringify(entries)}).then(()=>{setSuccess(true);onSubmit();}).catch(()=>setLoading(false));}},[formId,onSubmit,validateForm]);const handleNameChange=useCallback(event=>{setNameError(false);setName(event.target.value);},[]);const handleEmailChange=useCallback(event=>{setEmailError(false);setEmail(event.target.value);},[]);const handleMessageChange=useCallback(event=>{setMessageError(false);setMessage(event.target.value);},[]);return /*#__PURE__*/_jsx(motion.div,{style:{...style,...containerStyles,flexDirection:\"column\",\"--framer-formspark-placeholder-color\":inputs.placeholderColor},children:isSuccess?/*#__PURE__*/_jsx(motion.div,{style:{height:\"60px\",width:\"60px\",background:button.fill,color:button.color,borderRadius:\"50%\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\"},initial:{scale:0},animate:{scale:1},transition:{duration:.3},children:/*#__PURE__*/_jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",width:\"28\",height:\"28\",children:/*#__PURE__*/_jsx(\"path\",{d:\"M 2 14 L 10 22 L 26 6\",fill:\"transparent\",strokeWidth:\"4\",stroke:\"currentColor\",strokeLinecap:\"round\"})})}):/*#__PURE__*/_jsxs(\"form\",{style:{display:\"grid\",gridTemplateRows,gridTemplateColumns,gap,width:\"100%\",height:\"100%\"},onSubmit:handleSubmit,method:\"POST\",children:[(withName||withEmail)&&/*#__PURE__*/_jsxs(\"div\",{style:{width:\"100%\",display:\"grid\",gridAutoFlow:layout===\"horizontal\"?\"column\":\"row\",gap},children:[withName&&/*#__PURE__*/_jsx(\"input\",{className:\"framer-formspark-input\",type:\"text\",name:\"name\",placeholder:name.placeholder,value:isCanvas?name.value:nameValue,onChange:handleNameChange,style:{...defaultStyle,padding:paddingValue,borderRadius,fontFamily,fontWeight,fontSize,background:inputs.fill,color:inputs.color,boxShadow:`inset 0 0 0 1px ${isNameError?inputs.error:\"transparent\"}`}}),withEmail&&/*#__PURE__*/_jsx(\"input\",{className:\"framer-formspark-input\",type:\"email\",name:\"email\",placeholder:email.placeholder,value:isCanvas?email.value:emailValue,onChange:handleEmailChange,style:{...defaultStyle,padding:paddingValue,borderRadius,fontFamily,fontWeight,fontSize,background:inputs.fill,color:inputs.color,boxShadow:`inset 0 0 0 1px ${isEmailError?inputs.error:\"transparent\"}`}})]}),withMessage&&/*#__PURE__*/_jsx(\"textarea\",{className:\"framer-formspark-input\",placeholder:message.placeholder,name:\"message\",value:isCanvas?message.value:messageValue,onChange:handleMessageChange,style:{...defaultStyle,minHeight:0,padding:paddingValue,resize:\"vertical\",borderRadius,background:inputs.fill,fontFamily,fontWeight,fontSize,color:inputs.color,boxShadow:`inset 0 0 0 1px ${isMessageError?inputs.error:\"transparent\"}`}}),/*#__PURE__*/_jsxs(\"div\",{children:[/*#__PURE__*/_jsx(motion.input,{type:\"submit\",value:button.label,style:{...defaultStyle,borderRadius,padding:paddingValue,fontFamily,fontWeight:button.fontWeight,fontSize,background:button.fill,cursor:\"pointer\",color:button.color,zIndex:1},transition:{type:\"ease\",duration:.3},whileHover:{opacity:.8}}),isLoading&&/*#__PURE__*/_jsx(\"div\",{style:{borderRadius,position:\"absolute\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\",width:\"100%\",height:\"100%\",left:0,top:0,zIndex:2,color:button.color,background:button.fill},children:/*#__PURE__*/_jsx(motion.div,{style:{height:16,width:16},initial:{rotate:0},animate:{rotate:360},transition:{duration:2,repeat:Infinity},children:/*#__PURE__*/_jsxs(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",width:\"16\",height:\"16\",children:[/*#__PURE__*/_jsx(\"path\",{d:\"M 8 0 C 3.582 0 0 3.582 0 8 C 0 12.419 3.582 16 8 16 C 12.418 16 16 12.419 16 8 C 15.999 3.582 12.418 0 8 0 Z M 8 14 C 4.687 14 2 11.314 2 8 C 2 4.687 4.687 2 8 2 C 11.314 2 14 4.687 14 8 C 14 11.314 11.314 14 8 14 Z\",fill:\"currentColor\",opacity:\"0.2\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M 8 0 C 12.418 0 15.999 3.582 16 8 C 16 8 16 9 15 9 C 14 9 14 8 14 8 C 14 4.687 11.314 2 8 2 C 4.687 2 2 4.687 2 8 C 2 8 2 9 1 9 C 0 9 0 8 0 8 C 0 3.582 3.582 0 8 0 Z\",fill:\"currentColor\"})]})})})]})]})});},[\".framer-formspark-input::placeholder { color: var(--framer-formspark-placeholder-color) !important; }\"]);FormSpark.defaultProps={fontSize:16,fontFamily:\"Inter\",fontWeight:400,padding:15,paddingTop:15,paddingBottom:15,paddingLeft:15,paddingRight:15,borderRadius:8,topLeftRadius:8,topRightRadius:8,bottomRightRadius:8,bottomLeftRadius:8,gap:15,nameField:{value:undefined,placeholder:\"Name\"},email:{value:undefined,placeholder:\"Email\"},message:{value:undefined,placeholder:\"Message\"},inputs:{fill:\"#EBEBEB\",color:\"#000\",placeholderColor:\"rgba(0, 0, 0, 0.5)\",error:\"#EE4444\"},layout:{fill:\"#EBEBEB\",color:\"#000\",placeholderColor:\"rgba(0, 0, 0, 0.5)\",error:\"#EE4444\"},button:{label:\"Sign Up\",fontWeight:600,fill:\"#000\",color:\"#FFF\"}};addPropertyControls(FormSpark,{formId:{title:\"ID\",placeholder:\"7PbPpGN3\",type:ControlType.String,description:\"Create a [FormSpark](https://formspark.io/) account, add a new form and copy its ID. [Learn more\u2026](https://www.framer.com/sites/integrations/formspark/)\"},withName:{title:\"Name\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:true},nameField:{title:\" \",type:ControlType.Object,controls:{placeholder:{title:\"Placeholder\",type:ControlType.String,defaultValue:\"Name\"},value:{title:\"Value\",type:ControlType.String,defaultValue:\"\"}},hidden:props=>!props.withName},withEmail:{title:\"Email\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:true},email:{title:\" \",type:ControlType.Object,controls:{placeholder:{title:\"Placeholder\",type:ControlType.String,defaultValue:\"Email\"},value:{title:\"Value\",type:ControlType.String}},hidden:props=>!props.withEmail},withMessage:{title:\"Message\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:true},message:{title:\" \",type:ControlType.Object,controls:{placeholder:{title:\"Placeholder\",type:ControlType.String,defaultValue:\"Message\"},value:{title:\"Value\",type:ControlType.String}},hidden:props=>!props.withMessage},layout:{title:\"Layout\",type:ControlType.Enum,options:[\"horizontal\",\"vertical\"],displaySegmentedControl:true,defaultValue:\"horizontal\"},inputs:{title:\"Inputs\",type:ControlType.Object,controls:{fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#EBEBEB\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#000\"},placeholderColor:{title:\"Placeholder\",type:ControlType.Color,defaultValue:\"rgba(0, 0, 0, 0.5)\"},error:{title:\"Error\",type:ControlType.Color,defaultValue:\"#EE4444\"}}},button:{title:\"Button\",type:ControlType.Object,controls:{label:{title:\"Label\",type:ControlType.String,defaultValue:\"Sign Up\"},fontWeight:{...fontControls.fontWeight,defaultValue:600},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#000\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#FFF\"}}},...fontControls,fontSize:{title:\"Font Size\",type:ControlType.Number,displayStepper:true,defaultValue:16},...paddingControl,...borderRadiusControl,gap:{title:\"Gap\",type:ControlType.Number,displayStepper:true,min:0},onSubmit:{type:ControlType.EventHandler}});const defaultStyle={WebkitAppearance:\"none\",display:\"inline-block\",width:\"100%\",lineHeight:\"1.4em\",outline:\"none\",border:\"none\"};export default FormSpark;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FormSpark\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"290\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"550\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FormSpark_1.map", "// Generated by Framer (03f754e)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,LazyValue,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,SVG,useCustomCursors,useHydratedBreakpointVariants,useLocaleCode,useLocaleInfo,useQueryData,useRouter,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Topbar from\"#framer/local/canvasComponent/dZl3lXaZ5/dZl3lXaZ5.js\";import ButtonSecondary from\"#framer/local/canvasComponent/RTUWXGWlG/RTUWXGWlG.js\";import Footer from\"#framer/local/canvasComponent/Vqkc0PtBU/Vqkc0PtBU.js\";import CustomersReview from\"#framer/local/canvasComponent/WSXxYn9lK/WSXxYn9lK.js\";import FormSpark from\"#framer/local/codeFile/oWK44iu/FormSpark_1.js\";import Insights from\"#framer/local/collection/Q9i29QH7H/Q9i29QH7H.js\";import*as sharedStyle5 from\"#framer/local/css/etU6_jTST/etU6_jTST.js\";import*as sharedStyle6 from\"#framer/local/css/fVxnimdqP/fVxnimdqP.js\";import*as sharedStyle2 from\"#framer/local/css/RKCmYZ7lS/RKCmYZ7lS.js\";import*as sharedStyle from\"#framer/local/css/VhSQBb15H/VhSQBb15H.js\";import*as sharedStyle4 from\"#framer/local/css/xZndidUCt/xZndidUCt.js\";import*as sharedStyle3 from\"#framer/local/css/YAP816Y5n/YAP816Y5n.js\";import*as sharedStyle1 from\"#framer/local/css/zMpsiMOLk/zMpsiMOLk.js\";import metadataProvider from\"#framer/local/webPageMetadata/MMakbvF4R/MMakbvF4R.js\";const FormSparkFonts=getFonts(FormSpark);const CustomersReviewFonts=getFonts(CustomersReview);const ButtonSecondaryFonts=getFonts(ButtonSecondary);const FooterFonts=getFonts(Footer);const TopbarFonts=getFonts(Topbar);const breakpoints={g7YCDYbJF:\"(min-width: 428px) and (max-width: 573px)\",hi1qEE9VH:\"(min-width: 1440px)\",isva_AQdV:\"(min-width: 574px) and (max-width: 639px)\",QLjhjFsKn:\"(min-width: 920px) and (max-width: 1239px)\",TIVB8YZwK:\"(min-width: 640px) and (max-width: 919px)\",Tuox6m32K:\"(min-width: 1240px) and (max-width: 1439px)\",xgqJwzdg4:\"(max-width: 427px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-faobN\";const variantClassNames={g7YCDYbJF:\"framer-v-oca0ff\",hi1qEE9VH:\"framer-v-1kqgmi6\",isva_AQdV:\"framer-v-wpl2x8\",QLjhjFsKn:\"framer-v-2gfbyq\",TIVB8YZwK:\"framer-v-1nzons2\",Tuox6m32K:\"framer-v-lkgsjk\",xgqJwzdg4:\"framer-v-1s3nyng\"};const valuesByLocaleId={A5oTq7UuT:new LazyValue(()=>import(\"./MMakbvF4R-0.js\"))};function preloadLocalizedValues(locale){const promises=[];while(locale){const values=valuesByLocaleId[locale.id];if(values){const promise=values.preload();if(promise){promises.push(promise);}}locale=locale.fallback;}if(promises.length>0){return Promise.all(promises);}}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;}}const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const display=options.display?options.display:\"date\";const dateOptions={dateStyle:display!==\"time\"?options.dateStyle:undefined,timeStyle:display===\"date\"?undefined:\"short\",timeZone:\"UTC\"};const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;// We add a try block because an invalid language code results in a crash\ntry{return date.toLocaleString(locale,dateOptions);}catch{return date.toLocaleString(fallbackLocale,dateOptions);}};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const metadata=metadataProvider();const humanReadableVariantMap={\"1240\":\"Tuox6m32K\",\"1440\":\"hi1qEE9VH\",\"390\":\"xgqJwzdg4\",\"428\":\"g7YCDYbJF\",\"574\":\"isva_AQdV\",\"640\":\"TIVB8YZwK\",\"920\":\"QLjhjFsKn\"};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:\"hi1qEE9VH\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,KY0B5iF7EA4tB5MMvg,nJdBvYnwBA4tB5MMvg,ANpv8OKOnA4tB5MMvg,wTc9AGsRGA4tB5MMvg,DLYmabcRZA4tB5MMvg,idA4tB5MMvg,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);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);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-faobN`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-faobN`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const preloadPromise=preloadLocalizedValues(activeLocale);if(preloadPromise)throw preloadPromise;const ref1=React.useRef(null);const router=useRouter();const activeLocaleCode=useLocaleCode();const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className];useCustomCursors({});var _getLocalizedValue,_getLocalizedValue1,_getLocalizedValue2,_getLocalizedValue3,_getLocalizedValue4,_getLocalizedValue5,_getLocalizedValue6,_getLocalizedValue7,_getLocalizedValue8,_getLocalizedValue9,_getLocalizedValue10,_getLocalizedValue11,_getLocalizedValue12,_getLocalizedValue13,_getLocalizedValue14,_getLocalizedValue15;return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"hi1qEE9VH\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1kqgmi6\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-u9xw4m\",\"data-framer-name\":\"header\",name:\"header\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-obfyix\",\"data-framer-name\":\"content\",name:\"content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8n6ymo\",\"data-framer-name\":\"breadcrumbs\",name:\"breadcrumbs\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-14qzs2e\",\"data-framer-name\":\"-breadcrumbs-parts\",name:\"-breadcrumbs-parts\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-4r25g2\",\"data-styles-preset\":\"VhSQBb15H\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"v_sIExKrH\"},nodeId:\"JQfWINxBX\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-57rakp\",\"data-styles-preset\":\"zMpsiMOLk\",children:\"Home\"})})})}),className:\"framer-1puitlg\",\"data-framer-name\":\"text\",fonts:[\"Inter\"],name:\"text\",verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12kulu\",\"data-framer-name\":\"-breadcrumbs-parts\",name:\"-breadcrumbs-parts\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yn323s\",\"data-framer-name\":\"ic-chevron-tiny-16\",name:\"ic-chevron-tiny-16\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1b6go5d\",\"data-framer-name\":\"base\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:9,name:\"base\",svg:'<svg width=\"9\" height=\"12\" viewBox=\"-1 -1 9 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0.96967 0.96967C1.26256 0.676777 1.73744 0.676777 2.03033 0.96967L6.06066 5L2.03033 9.03033C1.73744 9.32322 1.26256 9.32322 0.96967 9.03033C0.676777 8.73744 0.676777 8.26256 0.96967 7.96967L3.93934 5L0.96967 2.03033C0.676777 1.73744 0.676777 1.26256 0.96967 0.96967Z\" fill=\"#9DA0A7\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1k9caut\",\"data-framer-name\":\"-breadcrumbs-parts\",name:\"-breadcrumbs-parts\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue1=getLocalizedValue(\"v1\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-959c0b87-496b-45b3-b4d4-566637372bb1, rgb(123, 126, 133))\"},children:\"Book a Demo\"})}),className:\"framer-1hydm0a\",\"data-framer-name\":\"text\",fonts:[\"Inter-Medium\"],name:\"text\",verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14gyimk\",\"data-framer-name\":\"Frame 1105\",name:\"Frame 1105\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oqqkhx\",\"data-framer-name\":\"left-column\",name:\"left-column\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1751wz9\",\"data-framer-name\":\"title-bar\",name:\"title-bar\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g7YCDYbJF:{children:(_getLocalizedValue2=getLocalizedValue(\"v3\",activeLocale))!==null&&_getLocalizedValue2!==void 0?_getLocalizedValue2:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-3nqyhf\",\"data-styles-preset\":\"YAP816Y5n\",children:\"Book Your Real-Time Intelocate Demo\"})})},xgqJwzdg4:{children:(_getLocalizedValue3=getLocalizedValue(\"v3\",activeLocale))!==null&&_getLocalizedValue3!==void 0?_getLocalizedValue3:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-3nqyhf\",\"data-styles-preset\":\"YAP816Y5n\",children:\"Book Your Real-Time Intelocate Demo\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue4=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue4!==void 0?_getLocalizedValue4:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-pj4f9v\",\"data-styles-preset\":\"RKCmYZ7lS\",children:\"Book Your Real-Time Intelocate Demo\"})}),className:\"framer-1dz0nb3\",\"data-framer-name\":\"title\",fonts:[\"Inter\"],name:\"title\",verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue5=getLocalizedValue(\"v4\",activeLocale))!==null&&_getLocalizedValue5!==void 0?_getLocalizedValue5:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-959c0b87-496b-45b3-b4d4-566637372bb1, rgb(123, 126, 133))\"},children:\"Thank you for your interest in Intelocate! Please fill out the form below and a team member will be in touch to set up a discovery meeting.\"})}),className:\"framer-152rour\",\"data-framer-name\":\"subtitle\",fonts:[\"Inter\"],name:\"subtitle\",verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-es88ml-container\",children:/*#__PURE__*/_jsx(FormSpark,{borderRadius:8,bottomLeftRadius:8,bottomRightRadius:8,button:{color:\"rgb(22, 82, 97)\",fill:\"rgb(183, 240, 255)\",fontWeight:600,label:(_getLocalizedValue6=getLocalizedValue(\"v8\",activeLocale))!==null&&_getLocalizedValue6!==void 0?_getLocalizedValue6:\"Submit\"},email:{placeholder:(_getLocalizedValue7=getLocalizedValue(\"v6\",activeLocale))!==null&&_getLocalizedValue7!==void 0?_getLocalizedValue7:\"Email\",value:\"\"},font:true,fontFamily:\"Inter\",fontSize:16,fontWeight:400,formId:\"P74SyF7El\",gap:16,height:\"100%\",id:\"QQ7hz2NRY\",inputs:{color:\"var(--token-44b4965e-8b14-4233-afda-d6c45909c972, rgb(26, 27, 30))\",error:\"rgb(246, 115, 118)\",fill:\"rgb(249, 249, 249)\",placeholderColor:\"rgb(123, 126, 133)\"},isMixedBorderRadius:false,layout:\"horizontal\",layoutId:\"QQ7hz2NRY\",message:{placeholder:(_getLocalizedValue8=getLocalizedValue(\"v7\",activeLocale))!==null&&_getLocalizedValue8!==void 0?_getLocalizedValue8:\"Let us know a time and a date that suits you for a demo, as well as any additional information you might think useful!\",value:\"\"},nameField:{placeholder:(_getLocalizedValue9=getLocalizedValue(\"v5\",activeLocale))!==null&&_getLocalizedValue9!==void 0?_getLocalizedValue9:\"Name\",value:\"\"},padding:16,paddingBottom:16,paddingLeft:16,paddingPerSide:false,paddingRight:16,paddingTop:16,style:{height:\"100%\",width:\"100%\"},topLeftRadius:8,topRightRadius:8,width:\"100%\",withEmail:true,withMessage:true,withName:true})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-pe1bzu\",\"data-framer-name\":\"card-small\",name:\"card-small\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-jengrm\",\"data-framer-name\":\"text\",name:\"text\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lw82vw\",\"data-framer-name\":\"title+text\",name:\"title+text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue10=getLocalizedValue(\"v9\",activeLocale))!==null&&_getLocalizedValue10!==void 0?_getLocalizedValue10:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-3nqyhf\",\"data-styles-preset\":\"YAP816Y5n\",children:\"What to Expect?\"})}),className:\"framer-tj391o\",\"data-framer-name\":\"title\",fonts:[\"Inter\"],name:\"title\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue11=getLocalizedValue(\"v10\",activeLocale))!==null&&_getLocalizedValue11!==void 0?_getLocalizedValue11:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"During our initial meeting, our primary goal is to learn about your business. We\u2019ll discuss your current pain points, goals, and processes to gain an understanding of your current operations, and the opportunities for Intelocate to help improve your business.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"Taking what we learn from our initial call, and assuming you like what you hear about Intelocate, we\u2019ll schedule a follow-up demo with you and your team. During this demo, we\u2019ll show you in real-time precisely how Intelocate can benefit your business, using a staging environment created to reflect your organizational structure.\"})]}),className:\"framer-fxm140\",\"data-framer-name\":\"text-box\",fonts:[\"Inter\"],name:\"text-box\",verticalAlignment:\"center\",withExternalLayout:true})]})})})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g7YCDYbJF:{y:1088},isva_AQdV:{y:1122},QLjhjFsKn:{y:1130},TIVB8YZwK:{y:1122},xgqJwzdg4:{y:1088}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:648,width:\"100vw\",y:720,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1d8csy3-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g7YCDYbJF:{variant:\"HtKTtVWto\"},isva_AQdV:{variant:\"XZlYFysZ5\"},QLjhjFsKn:{variant:\"o5iBTHGEj\"},TIVB8YZwK:{variant:\"nadOr2jHI\"},Tuox6m32K:{variant:\"baTWwU1dI\"},xgqJwzdg4:{variant:\"C5Jgv5VHX\"}},children:/*#__PURE__*/_jsx(CustomersReview,{height:\"100%\",id:\"UEBexjiyC\",layoutId:\"UEBexjiyC\",style:{width:\"100%\"},variant:\"EwjN71EzO\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-cj2z2m\",\"data-framer-name\":\"reviews-bottom\",name:\"reviews-bottom\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5oniov\",\"data-framer-name\":\"content\",name:\"content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hej5rq\",\"data-framer-name\":\"title-bar\",name:\"title-bar\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-66xtmi\",\"data-framer-name\":\"title+button\",name:\"title+button\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g7YCDYbJF:{children:(_getLocalizedValue12=getLocalizedValue(\"v12\",activeLocale))!==null&&_getLocalizedValue12!==void 0?_getLocalizedValue12:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-3nqyhf\",\"data-styles-preset\":\"YAP816Y5n\",children:\"Read the Latest Insights from Your Intelocate Team\"})})},xgqJwzdg4:{children:(_getLocalizedValue13=getLocalizedValue(\"v12\",activeLocale))!==null&&_getLocalizedValue13!==void 0?_getLocalizedValue13:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-3nqyhf\",\"data-styles-preset\":\"YAP816Y5n\",children:\"Read the Latest Insights from Your Intelocate Team\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue14=getLocalizedValue(\"v11\",activeLocale))!==null&&_getLocalizedValue14!==void 0?_getLocalizedValue14:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-pj4f9v\",\"data-styles-preset\":\"RKCmYZ7lS\",children:\"Read the Latest Insights from Your Intelocate Team\"})}),className:\"framer-1309h9q\",\"data-framer-name\":\"title\",fonts:[\"Inter\"],name:\"title\",verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"fSwf9IyDM\"},implicitPathVariables:undefined},{href:{webPageId:\"fSwf9IyDM\"},implicitPathVariables:undefined},{href:{webPageId:\"fSwf9IyDM\"},implicitPathVariables:undefined},{href:{webPageId:\"fSwf9IyDM\"},implicitPathVariables:undefined},{href:{webPageId:\"fSwf9IyDM\"},implicitPathVariables:undefined},{href:{webPageId:\"fSwf9IyDM\"},implicitPathVariables:undefined},{href:{webPageId:\"fSwf9IyDM\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/{var _getLocalizedValue;return _jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g7YCDYbJF:{y:1822},isva_AQdV:{y:1874},QLjhjFsKn:{y:1826},TIVB8YZwK:{y:1874},xgqJwzdg4:{y:1822}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:1416,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mru2o9-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g7YCDYbJF:{qyc0pdQIy:resolvedLinks[5]},isva_AQdV:{qyc0pdQIy:resolvedLinks[4]},QLjhjFsKn:{qyc0pdQIy:resolvedLinks[2]},TIVB8YZwK:{qyc0pdQIy:resolvedLinks[3]},Tuox6m32K:{qyc0pdQIy:resolvedLinks[1]},xgqJwzdg4:{qyc0pdQIy:resolvedLinks[6]}},children:/*#__PURE__*/_jsx(ButtonSecondary,{g8V0gYAXM:\"var(--token-6a2a33ed-049a-4f3f-90e5-3b014458e1ca, rgb(243, 244, 245))\",height:\"100%\",id:\"df4toeCGW\",jIdzXnFsa:(_getLocalizedValue=getLocalizedValue(\"v13\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"See All Articles\",layoutId:\"df4toeCGW\",OgMIvbyik:{borderColor:'var(--token-951ffdcf-227c-44b6-bd48-862ccc115442, rgb(210, 214, 221)) /* {\"name\":\"grey_2\"} */',borderStyle:\"solid\",borderWidth:1},qyc0pdQIy:resolvedLinks[0],variant:\"LjkHo7d2w\",width:\"100%\",YrrAb7eUb:\"rgba(255, 255, 255, 0.24)\"})})})})});}})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue15=getLocalizedValue(\"v14\",activeLocale))!==null&&_getLocalizedValue15!==void 0?_getLocalizedValue15:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-959c0b87-496b-45b3-b4d4-566637372bb1, rgb(123, 126, 133))\"},children:\"The Intelocate team is always keeping up to date with the latest developments in business efficiency, and we\u2019re constantly adding new ideas to help you streamline your day-to-day operations and get the most out of the Intelocate platform.\"})}),className:\"framer-dyu8fq\",\"data-framer-name\":\"subtitle\",fonts:[\"Inter\"],name:\"subtitle\",verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1eurm6l\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QLjhjFsKn:{query:{from:{alias:\"A4tB5MMvg\",data:Insights,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},select:[{collection:\"A4tB5MMvg\",name:\"KY0B5iF7E\",type:\"Identifier\"},{collection:\"A4tB5MMvg\",name:\"nJdBvYnwB\",type:\"Identifier\"},{collection:\"A4tB5MMvg\",name:\"ANpv8OKOn\",type:\"Identifier\"},{collection:\"A4tB5MMvg\",name:\"wTc9AGsRG\",type:\"Identifier\"},{collection:\"A4tB5MMvg\",name:\"DLYmabcRZ\",type:\"Identifier\"},{collection:\"A4tB5MMvg\",name:\"id\",type:\"Identifier\"}]}}},children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"A4tB5MMvg\",data:Insights,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"A4tB5MMvg\",name:\"KY0B5iF7E\",type:\"Identifier\"},{collection:\"A4tB5MMvg\",name:\"nJdBvYnwB\",type:\"Identifier\"},{collection:\"A4tB5MMvg\",name:\"ANpv8OKOn\",type:\"Identifier\"},{collection:\"A4tB5MMvg\",name:\"wTc9AGsRG\",type:\"Identifier\"},{collection:\"A4tB5MMvg\",name:\"DLYmabcRZ\",type:\"Identifier\"},{collection:\"A4tB5MMvg\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection.map(({\"KY0B5iF7E\":KY0B5iF7EA4tB5MMvg,\"nJdBvYnwB\":nJdBvYnwBA4tB5MMvg,\"ANpv8OKOn\":ANpv8OKOnA4tB5MMvg,\"wTc9AGsRG\":wTc9AGsRGA4tB5MMvg,\"DLYmabcRZ\":DLYmabcRZA4tB5MMvg,\"id\":idA4tB5MMvg},i)=>{KY0B5iF7EA4tB5MMvg!==null&&KY0B5iF7EA4tB5MMvg!==void 0?KY0B5iF7EA4tB5MMvg:KY0B5iF7EA4tB5MMvg=\"\";ANpv8OKOnA4tB5MMvg!==null&&ANpv8OKOnA4tB5MMvg!==void 0?ANpv8OKOnA4tB5MMvg:ANpv8OKOnA4tB5MMvg=\"\";wTc9AGsRGA4tB5MMvg!==null&&wTc9AGsRGA4tB5MMvg!==void 0?wTc9AGsRGA4tB5MMvg:wTc9AGsRGA4tB5MMvg=\"\";const textContent=toDateString(DLYmabcRZA4tB5MMvg,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);return /*#__PURE__*/_jsx(LayoutGroup,{id:`A4tB5MMvg-${idA4tB5MMvg}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{KY0B5iF7E:KY0B5iF7EA4tB5MMvg},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{KY0B5iF7E:KY0B5iF7EA4tB5MMvg},webPageId:\"J9Sd81eaX\"},nodeId:\"PsDW8mYuL\",openInNewTab:false,children:/*#__PURE__*/_jsxs(\"a\",{className:\"framer-l5yl27 framer-aacf9t\",\"data-framer-name\":\"card\",name:\"card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g7YCDYbJF:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(2042),pixelHeight:1e3,pixelWidth:1800,sizes:\"372px\",...toResponsiveImage(nJdBvYnwBA4tB5MMvg)}},isva_AQdV:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(2094),pixelHeight:1e3,pixelWidth:1800,sizes:\"494px\",...toResponsiveImage(nJdBvYnwBA4tB5MMvg)}},QLjhjFsKn:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(2046),pixelHeight:1e3,pixelWidth:1800,sizes:\"394px\",...toResponsiveImage(nJdBvYnwBA4tB5MMvg)}},TIVB8YZwK:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(2094),pixelHeight:1e3,pixelWidth:1800,sizes:\"552px\",...toResponsiveImage(nJdBvYnwBA4tB5MMvg)}},Tuox6m32K:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(1636),pixelHeight:1e3,pixelWidth:1800,sizes:\"349.3333px\",...toResponsiveImage(nJdBvYnwBA4tB5MMvg)}},xgqJwzdg4:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(2042),pixelHeight:1e3,pixelWidth:1800,sizes:\"334px\",...toResponsiveImage(nJdBvYnwBA4tB5MMvg)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(1636),pixelHeight:1e3,pixelWidth:1800,sizes:\"402px\",...toResponsiveImage(nJdBvYnwBA4tB5MMvg)},className:\"framer-1byx3nj\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q0fcp2\",\"data-framer-name\":\"content\",name:\"content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-v9bpxz\",\"data-border\":true,\"data-framer-name\":\"badge\",name:\"badge\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-9nwtjr\",\"data-styles-preset\":\"etU6_jTST\",style:{\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"Type of content\"})}),className:\"framer-m657h6\",\"data-framer-name\":\"Type of content\",fonts:[\"Inter\"],name:\"Type of content\",text:ANpv8OKOnA4tB5MMvg,verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-p68xwp\",\"data-framer-name\":\"title_container\",name:\"title_container\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-alignment\":\"left\"},children:\"Title\"})}),className:\"framer-1g3z7el\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],name:\"Title\",text:wTc9AGsRGA4tB5MMvg,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-959c0b87-496b-45b3-b4d4-566637372bb1, rgb(123, 126, 133))\"},children:\"Content\"})}),className:\"framer-1r078a7\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],name:\"Date\",text:textContent,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})},idA4tB5MMvg);})})})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g7YCDYbJF:{y:23034},isva_AQdV:{y:24006},QLjhjFsKn:{y:2998},TIVB8YZwK:{y:24006},xgqJwzdg4:{y:22426}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:380,width:\"100vw\",y:2124,children:/*#__PURE__*/_jsx(Container,{className:\"framer-11adjcz-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g7YCDYbJF:{variant:\"dp53VlpiQ\"},isva_AQdV:{variant:\"VD0dL9fWQ\"},QLjhjFsKn:{variant:\"VHoq12chL\"},TIVB8YZwK:{variant:\"mnDqyOinU\"},Tuox6m32K:{variant:\"m_HwY0lTA\"},xgqJwzdg4:{variant:\"a0ondV4zb\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"aMFn4olz6\",layoutId:\"aMFn4olz6\",style:{width:\"100%\"},variant:\"NNGge9K62\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:84,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-znu2ti-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g7YCDYbJF:{style:{width:\"100%\"},variant:\"GuKPMpw9L\"},isva_AQdV:{style:{width:\"100%\"},variant:\"MbSYMYqql\"},QLjhjFsKn:{style:{width:\"100%\"},variant:\"MbSYMYqql\"},TIVB8YZwK:{style:{width:\"100%\"},variant:\"MbSYMYqql\"},Tuox6m32K:{variant:\"YcVlzAgI8\"},xgqJwzdg4:{style:{width:\"100%\"},variant:\"PaTTAvPn0\"}},children:/*#__PURE__*/_jsx(Topbar,{height:\"100%\",id:\"V9yLFBD9Z\",layoutId:\"V9yLFBD9Z\",style:{height:\"100%\",width:\"100%\"},variant:\"cGlDjaAod\",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-faobN { background: var(--token-4fadc5d1-1a05-41ef-a682-81bca3c46956, rgb(255, 255, 255)) /* {\"name\":\"bg_white\"} */; }`,\".framer-faobN.framer-aacf9t, .framer-faobN .framer-aacf9t { display: block; }\",\".framer-faobN.framer-1kqgmi6 { align-content: center; align-items: center; background-color: var(--token-4fadc5d1-1a05-41ef-a682-81bca3c46956, #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: 1440px; }\",\".framer-faobN .framer-u9xw4m { 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: 100%; }\",\".framer-faobN .framer-obfyix { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 124px 0px 48px 0px; position: relative; width: 1272px; }\",\".framer-faobN .framer-8n6ymo { align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-faobN .framer-14qzs2e, .framer-faobN .framer-1k9caut { align-content: center; align-items: center; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 2px 6px 2px 6px; position: relative; width: min-content; }\",\".framer-faobN .framer-1puitlg, .framer-faobN .framer-1hydm0a { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-faobN .framer-12kulu { align-content: center; align-items: center; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 4px 0px 4px 0px; position: relative; width: min-content; }\",\".framer-faobN .framer-1yn323s { flex: none; height: 16px; overflow: visible; position: relative; width: 16px; }\",\".framer-faobN .framer-1b6go5d { flex: none; height: 12px; left: 4px; position: absolute; top: 2px; width: 9px; }\",\".framer-faobN .framer-14gyimk { align-content: flex-start; align-items: flex-start; 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: 100%; }\",\".framer-faobN .framer-1oqqkhx { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 40px 0px 0px; position: relative; width: 1px; }\",\".framer-faobN .framer-1751wz9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-faobN .framer-1dz0nb3, .framer-faobN .framer-152rour, .framer-faobN .framer-tj391o, .framer-faobN .framer-fxm140, .framer-faobN .framer-dyu8fq, .framer-faobN .framer-1r078a7 { --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-faobN .framer-es88ml-container { flex: none; height: 290px; position: relative; width: 100%; }\",\".framer-faobN .framer-pe1bzu { align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 1px 8px 2px rgba(0, 0, 0, 0.04), 0px 8px 24px 1px rgba(0, 0, 0, 0.05999999865889549), 0px 0px 4px 0px rgba(0, 0, 0, 0.03999999910593033); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 28px 32px 28px 32px; position: relative; width: 624px; }\",\".framer-faobN .framer-jengrm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-faobN .framer-lw82vw { 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; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-faobN .framer-1d8csy3-container, .framer-faobN .framer-11adjcz-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-faobN .framer-cj2z2m { align-content: center; align-items: center; background-color: var(--token-bfa23b8b-bd1c-4fce-b3dc-5c14f48ba9c0, #f9f9f9); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: visible; padding: 48px 0px 48px 0px; position: relative; width: 100%; }\",\".framer-faobN .framer-5oniov { 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: 1272px; }\",\".framer-faobN .framer-hej5rq { 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: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-faobN .framer-66xtmi { align-content: flex-start; align-items: flex-start; 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: 100%; }\",\".framer-faobN .framer-1309h9q, .framer-faobN .framer-1g3z7el { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-faobN .framer-1mru2o9-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-faobN .framer-1eurm6l { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 20px; height: 444px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-faobN .framer-l5yl27 { align-content: center; align-items: center; background-color: var(--token-4fadc5d1-1a05-41ef-a682-81bca3c46956, #ffffff); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.18), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.15889), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.0625); display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 0px; height: min-content; justify-content: flex-start; padding: 4px; position: relative; text-decoration: none; width: 410px; }\",\".framer-faobN .framer-1byx3nj { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: 224px; position: relative; width: 100%; }\",\".framer-faobN .framer-q0fcp2 { 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: center; overflow: hidden; padding: 24px 24px 20px 24px; position: relative; width: 100%; }\",\".framer-faobN .framer-v9bpxz { --border-bottom-width: 1px; --border-color: rgba(26, 27, 30, 0.24); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-4fadc5d1-1a05-41ef-a682-81bca3c46956, #ffffff); border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 8px 0px 8px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-faobN .framer-m657h6 { flex: none; height: 24px; position: relative; white-space: pre; width: auto; }\",\".framer-faobN .framer-p68xwp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 96px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-faobN .framer-znu2ti-container { flex: none; height: 84px; left: 0px; position: fixed; top: 0px; width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-faobN.framer-1kqgmi6, .framer-faobN .framer-u9xw4m, .framer-faobN .framer-obfyix, .framer-faobN .framer-8n6ymo, .framer-faobN .framer-14qzs2e, .framer-faobN .framer-12kulu, .framer-faobN .framer-1k9caut, .framer-faobN .framer-14gyimk, .framer-faobN .framer-1oqqkhx, .framer-faobN .framer-1751wz9, .framer-faobN .framer-pe1bzu, .framer-faobN .framer-jengrm, .framer-faobN .framer-lw82vw, .framer-faobN .framer-cj2z2m, .framer-faobN .framer-5oniov, .framer-faobN .framer-hej5rq, .framer-faobN .framer-66xtmi, .framer-faobN .framer-1eurm6l, .framer-faobN .framer-l5yl27, .framer-faobN .framer-q0fcp2, .framer-faobN .framer-v9bpxz, .framer-faobN .framer-p68xwp { gap: 0px; } .framer-faobN.framer-1kqgmi6 > *, .framer-faobN .framer-u9xw4m > *, .framer-faobN .framer-14qzs2e > *, .framer-faobN .framer-12kulu > *, .framer-faobN .framer-1k9caut > *, .framer-faobN .framer-l5yl27 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-faobN.framer-1kqgmi6 > :first-child, .framer-faobN .framer-u9xw4m > :first-child, .framer-faobN .framer-obfyix > :first-child, .framer-faobN .framer-14qzs2e > :first-child, .framer-faobN .framer-12kulu > :first-child, .framer-faobN .framer-1k9caut > :first-child, .framer-faobN .framer-1oqqkhx > :first-child, .framer-faobN .framer-1751wz9 > :first-child, .framer-faobN .framer-pe1bzu > :first-child, .framer-faobN .framer-jengrm > :first-child, .framer-faobN .framer-lw82vw > :first-child, .framer-faobN .framer-cj2z2m > :first-child, .framer-faobN .framer-5oniov > :first-child, .framer-faobN .framer-hej5rq > :first-child, .framer-faobN .framer-1eurm6l > :first-child, .framer-faobN .framer-l5yl27 > :first-child, .framer-faobN .framer-q0fcp2 > :first-child { margin-top: 0px; } .framer-faobN.framer-1kqgmi6 > :last-child, .framer-faobN .framer-u9xw4m > :last-child, .framer-faobN .framer-obfyix > :last-child, .framer-faobN .framer-14qzs2e > :last-child, .framer-faobN .framer-12kulu > :last-child, .framer-faobN .framer-1k9caut > :last-child, .framer-faobN .framer-1oqqkhx > :last-child, .framer-faobN .framer-1751wz9 > :last-child, .framer-faobN .framer-pe1bzu > :last-child, .framer-faobN .framer-jengrm > :last-child, .framer-faobN .framer-lw82vw > :last-child, .framer-faobN .framer-cj2z2m > :last-child, .framer-faobN .framer-5oniov > :last-child, .framer-faobN .framer-hej5rq > :last-child, .framer-faobN .framer-1eurm6l > :last-child, .framer-faobN .framer-l5yl27 > :last-child, .framer-faobN .framer-q0fcp2 > :last-child { margin-bottom: 0px; } .framer-faobN .framer-obfyix > *, .framer-faobN .framer-1oqqkhx > *, .framer-faobN .framer-pe1bzu > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-faobN .framer-8n6ymo > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-faobN .framer-8n6ymo > :first-child, .framer-faobN .framer-14gyimk > :first-child, .framer-faobN .framer-66xtmi > :first-child, .framer-faobN .framer-v9bpxz > :first-child, .framer-faobN .framer-p68xwp > :first-child { margin-left: 0px; } .framer-faobN .framer-8n6ymo > :last-child, .framer-faobN .framer-14gyimk > :last-child, .framer-faobN .framer-66xtmi > :last-child, .framer-faobN .framer-v9bpxz > :last-child, .framer-faobN .framer-p68xwp > :last-child { margin-right: 0px; } .framer-faobN .framer-14gyimk > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-faobN .framer-1751wz9 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-faobN .framer-jengrm > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-faobN .framer-lw82vw > *, .framer-faobN .framer-hej5rq > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-faobN .framer-cj2z2m > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-faobN .framer-5oniov > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-faobN .framer-66xtmi > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-faobN .framer-1eurm6l > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-faobN .framer-q0fcp2 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-faobN .framer-v9bpxz > *, .framer-faobN .framer-p68xwp > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",`@media (min-width: 1240px) and (max-width: 1439px) { .${metadata.bodyClassName}-framer-faobN { background: var(--token-4fadc5d1-1a05-41ef-a682-81bca3c46956, rgb(255, 255, 255)) /* {\"name\":\"bg_white\"} */; } .framer-faobN.framer-1kqgmi6 { width: 1240px; } .framer-faobN .framer-obfyix, .framer-faobN .framer-5oniov { width: 1112px; } .framer-faobN .framer-pe1bzu { width: 532px; } .framer-faobN .framer-1eurm6l { align-content: unset; align-items: unset; display: grid; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(200px, 1fr)); justify-content: center; } .framer-faobN .framer-l5yl27 { align-self: start; justify-self: start; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-faobN .framer-1eurm6l { gap: 0px; } .framer-faobN .framer-1eurm6l > *, .framer-faobN .framer-1eurm6l > :first-child, .framer-faobN .framer-1eurm6l > :last-child { margin: 0px; } }}`,`@media (min-width: 920px) and (max-width: 1239px) { .${metadata.bodyClassName}-framer-faobN { background: var(--token-4fadc5d1-1a05-41ef-a682-81bca3c46956, rgb(255, 255, 255)) /* {\"name\":\"bg_white\"} */; } .framer-faobN.framer-1kqgmi6 { width: 920px; } .framer-faobN .framer-obfyix, .framer-faobN .framer-5oniov { width: 824px; } .framer-faobN .framer-14gyimk { flex-direction: column; gap: 48px; } .framer-faobN .framer-1oqqkhx { flex: none; padding: 0px; width: 100%; } .framer-faobN .framer-pe1bzu { width: 100%; } .framer-faobN .framer-1eurm6l { align-content: unset; align-items: unset; display: grid; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(200px, 1fr)); height: 908px; justify-content: center; } .framer-faobN .framer-l5yl27 { align-self: start; justify-self: start; width: 100%; } .framer-faobN .framer-znu2ti-container { height: auto; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-faobN .framer-14gyimk, .framer-faobN .framer-1eurm6l { gap: 0px; } .framer-faobN .framer-14gyimk > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-faobN .framer-14gyimk > :first-child { margin-top: 0px; } .framer-faobN .framer-14gyimk > :last-child { margin-bottom: 0px; } .framer-faobN .framer-1eurm6l > *, .framer-faobN .framer-1eurm6l > :first-child, .framer-faobN .framer-1eurm6l > :last-child { margin: 0px; } }}`,`@media (min-width: 640px) and (max-width: 919px) { .${metadata.bodyClassName}-framer-faobN { background: var(--token-4fadc5d1-1a05-41ef-a682-81bca3c46956, rgb(255, 255, 255)) /* {\"name\":\"bg_white\"} */; } .framer-faobN.framer-1kqgmi6 { width: 640px; } .framer-faobN .framer-obfyix { padding: 116px 0px 48px 0px; width: 560px; } .framer-faobN .framer-14gyimk { flex-direction: column; gap: 48px; } .framer-faobN .framer-1oqqkhx { flex: none; padding: 0px; width: 100%; } .framer-faobN .framer-pe1bzu { width: 100%; } .framer-faobN .framer-5oniov { width: 560px; } .framer-faobN .framer-66xtmi { flex-direction: column; } .framer-faobN .framer-1309h9q { flex: none; width: 100%; } .framer-faobN .framer-1eurm6l { align-content: unset; align-items: unset; display: grid; grid-auto-rows: min-content; grid-template-columns: repeat(1, minmax(200px, 1fr)); height: min-content; justify-content: center; } .framer-faobN .framer-l5yl27 { align-self: start; justify-self: start; width: 100%; } .framer-faobN .framer-1byx3nj { height: 240px; } .framer-faobN .framer-znu2ti-container { height: auto; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-faobN .framer-14gyimk, .framer-faobN .framer-66xtmi, .framer-faobN .framer-1eurm6l { gap: 0px; } .framer-faobN .framer-14gyimk > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-faobN .framer-14gyimk > :first-child, .framer-faobN .framer-66xtmi > :first-child { margin-top: 0px; } .framer-faobN .framer-14gyimk > :last-child, .framer-faobN .framer-66xtmi > :last-child { margin-bottom: 0px; } .framer-faobN .framer-66xtmi > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-faobN .framer-1eurm6l > *, .framer-faobN .framer-1eurm6l > :first-child, .framer-faobN .framer-1eurm6l > :last-child { margin: 0px; } }}`,`@media (min-width: 574px) and (max-width: 639px) { .${metadata.bodyClassName}-framer-faobN { background: var(--token-4fadc5d1-1a05-41ef-a682-81bca3c46956, rgb(255, 255, 255)) /* {\"name\":\"bg_white\"} */; } .framer-faobN.framer-1kqgmi6 { width: 574px; } .framer-faobN .framer-obfyix { padding: 116px 0px 48px 0px; width: 502px; } .framer-faobN .framer-14gyimk { flex-direction: column; gap: 48px; } .framer-faobN .framer-1oqqkhx { flex: none; padding: 0px; width: 100%; } .framer-faobN .framer-pe1bzu { width: 100%; } .framer-faobN .framer-5oniov { width: 502px; } .framer-faobN .framer-66xtmi { flex-direction: column; } .framer-faobN .framer-1309h9q { flex: none; width: 100%; } .framer-faobN .framer-1eurm6l { align-content: unset; align-items: unset; display: grid; grid-auto-rows: min-content; grid-template-columns: repeat(1, minmax(200px, 1fr)); height: min-content; justify-content: center; } .framer-faobN .framer-l5yl27 { align-self: start; justify-self: start; width: 100%; } .framer-faobN .framer-1byx3nj { height: 240px; } .framer-faobN .framer-znu2ti-container { height: auto; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-faobN .framer-14gyimk, .framer-faobN .framer-66xtmi, .framer-faobN .framer-1eurm6l { gap: 0px; } .framer-faobN .framer-14gyimk > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-faobN .framer-14gyimk > :first-child, .framer-faobN .framer-66xtmi > :first-child { margin-top: 0px; } .framer-faobN .framer-14gyimk > :last-child, .framer-faobN .framer-66xtmi > :last-child { margin-bottom: 0px; } .framer-faobN .framer-66xtmi > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-faobN .framer-1eurm6l > *, .framer-faobN .framer-1eurm6l > :first-child, .framer-faobN .framer-1eurm6l > :last-child { margin: 0px; } }}`,`@media (min-width: 428px) and (max-width: 573px) { .${metadata.bodyClassName}-framer-faobN { background: var(--token-4fadc5d1-1a05-41ef-a682-81bca3c46956, rgb(255, 255, 255)) /* {\"name\":\"bg_white\"} */; } .framer-faobN.framer-1kqgmi6 { width: 428px; } .framer-faobN .framer-obfyix { padding: 108px 0px 40px 0px; width: 380px; } .framer-faobN .framer-14gyimk { flex-direction: column; gap: 40px; } .framer-faobN .framer-1oqqkhx { flex: none; padding: 0px; width: 100%; } .framer-faobN .framer-pe1bzu { width: 100%; } .framer-faobN .framer-cj2z2m { padding: 40px 0px 40px 0px; } .framer-faobN .framer-5oniov { width: 380px; } .framer-faobN .framer-66xtmi { flex-direction: column; } .framer-faobN .framer-1309h9q { flex: none; width: 100%; } .framer-faobN .framer-1eurm6l { align-content: unset; align-items: unset; display: grid; grid-auto-rows: min-content; grid-template-columns: repeat(1, minmax(200px, 1fr)); height: min-content; justify-content: center; } .framer-faobN .framer-l5yl27 { align-self: start; justify-self: start; width: 100%; } .framer-faobN .framer-1byx3nj { height: 216px; } .framer-faobN .framer-znu2ti-container { height: auto; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-faobN .framer-14gyimk, .framer-faobN .framer-66xtmi, .framer-faobN .framer-1eurm6l { gap: 0px; } .framer-faobN .framer-14gyimk > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-faobN .framer-14gyimk > :first-child, .framer-faobN .framer-66xtmi > :first-child { margin-top: 0px; } .framer-faobN .framer-14gyimk > :last-child, .framer-faobN .framer-66xtmi > :last-child { margin-bottom: 0px; } .framer-faobN .framer-66xtmi > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-faobN .framer-1eurm6l > *, .framer-faobN .framer-1eurm6l > :first-child, .framer-faobN .framer-1eurm6l > :last-child { margin: 0px; } }}`,`@media (max-width: 427px) { .${metadata.bodyClassName}-framer-faobN { background: var(--token-4fadc5d1-1a05-41ef-a682-81bca3c46956, rgb(255, 255, 255)) /* {\"name\":\"bg_white\"} */; } .framer-faobN.framer-1kqgmi6 { width: 390px; } .framer-faobN .framer-obfyix { padding: 108px 0px 40px 0px; width: 342px; } .framer-faobN .framer-14gyimk { flex-direction: column; gap: 40px; } .framer-faobN .framer-1oqqkhx { flex: none; padding: 0px; width: 100%; } .framer-faobN .framer-pe1bzu { width: 100%; } .framer-faobN .framer-cj2z2m { padding: 40px 0px 40px 0px; } .framer-faobN .framer-5oniov { width: 342px; } .framer-faobN .framer-66xtmi { flex-direction: column; } .framer-faobN .framer-1309h9q { flex: none; width: 100%; } .framer-faobN .framer-1eurm6l { align-content: unset; align-items: unset; display: grid; grid-auto-rows: min-content; grid-template-columns: repeat(1, minmax(200px, 1fr)); height: min-content; justify-content: center; } .framer-faobN .framer-l5yl27 { align-self: start; justify-self: start; width: 100%; } .framer-faobN .framer-1byx3nj { height: 200px; } .framer-faobN .framer-znu2ti-container { height: auto; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-faobN .framer-14gyimk, .framer-faobN .framer-66xtmi, .framer-faobN .framer-1eurm6l { gap: 0px; } .framer-faobN .framer-14gyimk > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-faobN .framer-14gyimk > :first-child, .framer-faobN .framer-66xtmi > :first-child { margin-top: 0px; } .framer-faobN .framer-14gyimk > :last-child, .framer-faobN .framer-66xtmi > :last-child { margin-bottom: 0px; } .framer-faobN .framer-66xtmi > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-faobN .framer-1eurm6l > *, .framer-faobN .framer-1eurm6l > :first-child, .framer-faobN .framer-1eurm6l > :last-child { margin: 0px; } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,'.framer-faobN[data-border=\"true\"]::after, .framer-faobN [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 2360\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Tuox6m32K\":{\"layout\":[\"fixed\",\"auto\"]},\"QLjhjFsKn\":{\"layout\":[\"fixed\",\"auto\"]},\"TIVB8YZwK\":{\"layout\":[\"fixed\",\"auto\"]},\"isva_AQdV\":{\"layout\":[\"fixed\",\"auto\"]},\"g7YCDYbJF\":{\"layout\":[\"fixed\",\"auto\"]},\"xgqJwzdg4\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerMMakbvF4R=withCSS(Component,css,\"framer-faobN\");export default FramerMMakbvF4R;FramerMMakbvF4R.displayName=\"Page\";FramerMMakbvF4R.defaultProps={height:2360,width:1440};addFonts(FramerMMakbvF4R,[{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...FormSparkFonts,...CustomersReviewFonts,...ButtonSecondaryFonts,...FooterFonts,...TopbarFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerMMakbvF4R\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Tuox6m32K\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QLjhjFsKn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TIVB8YZwK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"isva_AQdV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"g7YCDYbJF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xgqJwzdg4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1440\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"2360\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerResponsiveScreen\":\"\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["emailRegex", "validateEmail", "email", "FormSpark", "withCSS", "formId", "withName", "name", "withEmail", "withMessage", "message", "layout", "inputs", "button", "style", "gap", "onSubmit", "props", "nameValue", "setName", "ye", "emailValue", "setEmail", "messageValue", "setMessage", "isNameError", "setNameError", "isEmailError", "setEmailError", "isMessageError", "setMessageError", "isLoading", "setLoading", "isSuccess", "setSuccess", "isCanvas", "se", "RenderTarget", "gridTemplateRows", "rows", "gridTemplateColumns", "cols", "fontFamily", "fontSize", "fontWeight", "useFontControls", "borderRadius", "useRadius", "paddingValue", "usePadding", "validateForm", "te", "error", "handleSubmit", "event", "data", "entries", "handleNameChange", "handleEmailChange", "handleMessageChange", "p", "motion", "containerStyles", "u", "defaultStyle", "addPropertyControls", "ControlType", "fontControls", "paddingControl", "borderRadiusControl", "FormSpark_1_default", "FormSparkFonts", "getFonts", "FormSpark_1_default", "CustomersReviewFonts", "WSXxYn9lK_default", "ButtonSecondaryFonts", "RTUWXGWlG_default", "FooterFonts", "Vqkc0PtBU_default", "TopbarFonts", "dZl3lXaZ5_default", "breakpoints", "serializationHash", "variantClassNames", "valuesByLocaleId", "LazyValue", "preloadLocalizedValues", "locale", "promises", "values", "promise", "getLocalizedValue", "key", "value", "toResponsiveImage", "toDateString", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "KY0B5iF7EA4tB5MMvg", "nJdBvYnwBA4tB5MMvg", "ANpv8OKOnA4tB5MMvg", "wTc9AGsRGA4tB5MMvg", "DLYmabcRZA4tB5MMvg", "idA4tB5MMvg", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "preloadPromise", "ref1", "pe", "router", "useRouter", "activeLocaleCode", "useLocaleCode", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "_getLocalizedValue", "_getLocalizedValue1", "_getLocalizedValue2", "_getLocalizedValue3", "_getLocalizedValue4", "_getLocalizedValue5", "_getLocalizedValue6", "_getLocalizedValue7", "_getLocalizedValue8", "_getLocalizedValue9", "_getLocalizedValue10", "_getLocalizedValue11", "_getLocalizedValue12", "_getLocalizedValue13", "_getLocalizedValue14", "_getLocalizedValue15", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "RichText", "x", "Link", "SVG", "PropertyOverrides2", "ComponentViewportProvider", "Container", "FormSpark_1_default", "WSXxYn9lK_default", "ResolveLinks", "resolvedLinks", "RTUWXGWlG_default", "ChildrenCanSuspend", "Q9i29QH7H_default", "collection", "paginationInfo", "loadMore", "l", "i", "textContent", "PathVariablesContext", "getLoadingLazyAtYPosition", "Image2", "Vqkc0PtBU_default", "dZl3lXaZ5_default", "css", "FramerMMakbvF4R", "withCSS", "MMakbvF4R_default", "addFonts", "FormSparkFonts", "CustomersReviewFonts", "ButtonSecondaryFonts", "FooterFonts", "TopbarFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
