{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/vkHAj2Yk0mTnbM6ZdN5c/Foxm7T4YpJpvPgDlEus0/FormSpark.js", "ssg:https://framerusercontent.com/modules/zSuAny6bQVRc3n7AB2XZ/WNhCZVEIsei6ojolp96d/AXBITYX1s.js", "ssg:https://framerusercontent.com/modules/w8v2BROyQfAQEquDgH0J/OmAuiJzAlv6ApLJqpyQs/bLF6mWok1.js", "ssg:https://framerusercontent.com/modules/uUEWaAzxrklrXlIhNigr/s2pyv0ZtgnOykOqRAm4r/NwInoyh_x.js", "ssg:https://framerusercontent.com/modules/pMJMX5Dk1io1PZ1tqQgr/Rba2p9qkHFHFStJEgUHY/SvCgENg1G.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget,withCSS}from\"framer\";import{motion}from\"framer-motion\";import{containerStyles,usePadding,useRadius,paddingControl,borderRadiusControl,fontControls,useFontControls}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{useCallback,useMemo,useState}from\"react\";const emailRegex=/^(([^<>()[\\]\\\\.,;:\\s@\"]+(\\.[^<>()[\\]\\\\.,;:\\s@\"]+)*)|(\".+\"))@((\\[[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\])|(([a-zA-Z\\-0-9]+\\.)+[a-zA-Z]{2,}))$/;const validateEmail=email=>{return emailRegex.test(String(email).toLowerCase());};/**\n * FORMSPARK\n *\n * @framerIntrinsicWidth 550\n * @framerIntrinsicHeight 290\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ const FormSpark=withCSS(function FormSpark({formId,withName,nameField:name,withEmail,email,withMessage,message,layout,inputs,button,style,gap,onSubmit,...props}){const[nameValue,setName]=useState(name===null||name===void 0?void 0:name.value);const[emailValue,setEmail]=useState(email===null||email===void 0?void 0:email.value);const[messageValue,setMessage]=useState(message===null||message===void 0?void 0:message.value);const[isNameError,setNameError]=useState(false);const[isEmailError,setEmailError]=useState(false);const[isMessageError,setMessageError]=useState(false);const[isLoading,setLoading]=useState(false);const[isSuccess,setSuccess]=useState(false);const isCanvas=useMemo(()=>{return RenderTarget.current()===RenderTarget.canvas;},[]);const gridTemplateRows=useMemo(()=>{const rows=[];if(withName||withMessage){rows.push(\"max-content\");}if(withMessage){rows.push(\"1fr\");}return[...rows,\"max-content\"].join(\" \");},[withName,withEmail,withMessage]);const gridTemplateColumns=useMemo(()=>{const cols=[];if((withName&&!withEmail||withEmail&&!withName)&&!withMessage&&layout===\"horizontal\"){return\"1fr max-content\";}return\"1fr\";},[withName,withEmail,withMessage,layout]);const{fontFamily,fontSize,fontWeight}=useFontControls(props);const borderRadius=useRadius(props);const paddingValue=usePadding(props);const validateForm=useCallback(()=>{let error=false;setNameError(false);setEmailError(false);setMessageError(false);if(withName&&!nameValue){setNameError(true);error=true;}if(withEmail&&(!emailValue||!validateEmail(emailValue))){setEmailError(true);error=true;}if(withMessage&&!messageValue){setMessageError(true);error=true;}return error;},[validateEmail,withName,withEmail,withMessage,nameValue,emailValue,messageValue,]);const handleSubmit=useCallback(event=>{setLoading(true);event.preventDefault();if(validateForm()){setLoading(false);}else{const data=new FormData(event.target);const entries=Object.fromEntries(data.entries());fetch(`https://api.formspark.io/${formId}`,{method:\"POST\",headers:{\"Content-Type\":\"application/json\",Accept:\"application/json\"},body:JSON.stringify(entries)}).then(()=>{setSuccess(true);onSubmit();}).catch(()=>setLoading(false));}},[formId,onSubmit,validateForm]);const handleNameChange=useCallback(event=>{setNameError(false);setName(event.target.value);},[]);const handleEmailChange=useCallback(event=>{setEmailError(false);setEmail(event.target.value);},[]);const handleMessageChange=useCallback(event=>{setMessageError(false);setMessage(event.target.value);},[]);return /*#__PURE__*/ _jsx(motion.div,{style:{...style,...containerStyles,flexDirection:\"column\",\"--framer-formspark-placeholder-color\":inputs.placeholderColor},children:isSuccess?/*#__PURE__*/ _jsx(motion.div,{style:{height:\"60px\",width:\"60px\",background:button.fill,color:button.color,borderRadius:\"50%\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\"},initial:{scale:0},animate:{scale:1},transition:{duration:.3},children:/*#__PURE__*/ _jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",width:\"28\",height:\"28\",children:/*#__PURE__*/ _jsx(\"path\",{d:\"M 2 14 L 10 22 L 26 6\",fill:\"transparent\",strokeWidth:\"4\",stroke:\"currentColor\",strokeLinecap:\"round\"})})}):/*#__PURE__*/ _jsxs(\"form\",{style:{display:\"grid\",gridTemplateRows,gridTemplateColumns,gap,width:\"100%\",height:\"100%\"},onSubmit:handleSubmit,method:\"POST\",children:[(withName||withEmail)&&/*#__PURE__*/ _jsxs(\"div\",{style:{width:\"100%\",display:\"grid\",gridAutoFlow:layout===\"horizontal\"?\"column\":\"row\",gap},children:[withName&&/*#__PURE__*/ _jsx(\"input\",{className:\"framer-formspark-input\",type:\"text\",name:\"name\",placeholder:name.placeholder,value:isCanvas?name.value:nameValue,onChange:handleNameChange,style:{...defaultStyle,padding:paddingValue,borderRadius,fontFamily,fontWeight,fontSize,background:inputs.fill,color:inputs.color,boxShadow:`inset 0 0 0 1px ${isNameError?inputs.error:\"transparent\"}`}}),withEmail&&/*#__PURE__*/ _jsx(\"input\",{className:\"framer-formspark-input\",type:\"email\",name:\"email\",placeholder:email.placeholder,value:isCanvas?email.value:emailValue,onChange:handleEmailChange,style:{...defaultStyle,padding:paddingValue,borderRadius,fontFamily,fontWeight,fontSize,background:inputs.fill,color:inputs.color,boxShadow:`inset 0 0 0 1px ${isEmailError?inputs.error:\"transparent\"}`}})]}),withMessage&&/*#__PURE__*/ _jsx(\"textarea\",{className:\"framer-formspark-input\",placeholder:message.placeholder,name:\"message\",value:isCanvas?message.value:messageValue,onChange:handleMessageChange,style:{...defaultStyle,minHeight:0,padding:paddingValue,resize:\"vertical\",borderRadius,background:inputs.fill,fontFamily,fontWeight,fontSize,color:inputs.color,boxShadow:`inset 0 0 0 1px ${isMessageError?inputs.error:\"transparent\"}`}}),/*#__PURE__*/ _jsxs(\"div\",{children:[/*#__PURE__*/ _jsx(motion.input,{type:\"submit\",value:button.label,style:{...defaultStyle,borderRadius,padding:paddingValue,fontFamily,fontWeight:button.fontWeight,fontSize,background:button.fill,cursor:\"pointer\",color:button.color,zIndex:1},transition:{type:\"ease\",duration:.3},whileHover:{opacity:.8}}),isLoading&&/*#__PURE__*/ _jsx(\"div\",{style:{borderRadius,position:\"absolute\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\",width:\"100%\",height:\"100%\",left:0,top:0,zIndex:2,color:button.color,background:button.fill},children:/*#__PURE__*/ _jsx(motion.div,{style:{height:16,width:16},initial:{rotate:0},animate:{rotate:360},transition:{duration:2,repeat:Infinity},children:/*#__PURE__*/ _jsxs(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",width:\"16\",height:\"16\",children:[/*#__PURE__*/ _jsx(\"path\",{d:\"M 8 0 C 3.582 0 0 3.582 0 8 C 0 12.419 3.582 16 8 16 C 12.418 16 16 12.419 16 8 C 15.999 3.582 12.418 0 8 0 Z M 8 14 C 4.687 14 2 11.314 2 8 C 2 4.687 4.687 2 8 2 C 11.314 2 14 4.687 14 8 C 14 11.314 11.314 14 8 14 Z\",fill:\"currentColor\",opacity:\"0.2\"}),/*#__PURE__*/ _jsx(\"path\",{d:\"M 8 0 C 12.418 0 15.999 3.582 16 8 C 16 8 16 9 15 9 C 14 9 14 8 14 8 C 14 4.687 11.314 2 8 2 C 4.687 2 2 4.687 2 8 C 2 8 2 9 1 9 C 0 9 0 8 0 8 C 0 3.582 3.582 0 8 0 Z\",fill:\"currentColor\"})]})})})]})]})});},[\".framer-formspark-input::placeholder { color: var(--framer-formspark-placeholder-color) !important; }\",]);FormSpark.defaultProps={fontSize:16,fontFamily:\"Inter\",fontWeight:400,padding:15,paddingTop:15,paddingBottom:15,paddingLeft:15,paddingRight:15,borderRadius:8,topLeftRadius:8,topRightRadius:8,bottomRightRadius:8,bottomLeftRadius:8,gap:15,nameField:{value:undefined,placeholder:\"Name\"},email:{value:undefined,placeholder:\"Email\"},message:{value:undefined,placeholder:\"Message\"},inputs:{fill:\"#EBEBEB\",color:\"#000\",placeholderColor:\"rgba(0, 0, 0, 0.5)\",error:\"#EE4444\"},layout:{fill:\"#EBEBEB\",color:\"#000\",placeholderColor:\"rgba(0, 0, 0, 0.5)\",error:\"#EE4444\"},button:{label:\"Sign Up\",fontWeight:600,fill:\"#000\",color:\"#FFF\"}};addPropertyControls(FormSpark,{formId:{title:\"ID\",placeholder:\"7PbPpGN3\",type:ControlType.String,description:\"Create a [FormSpark](https://formspark.io/) account, add a new form and copy its ID. [Learn more\u2026](https://www.framer.com/sites/integrations/formspark/)\"},withName:{title:\"Name\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:true},nameField:{title:\" \",type:ControlType.Object,controls:{placeholder:{title:\"Placeholder\",type:ControlType.String,defaultValue:\"Name\"},value:{title:\"Value\",type:ControlType.String,defaultValue:\"\"}},hidden:props=>!props.withName},withEmail:{title:\"Email\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:true},email:{title:\" \",type:ControlType.Object,controls:{placeholder:{title:\"Placeholder\",type:ControlType.String,defaultValue:\"Email\"},value:{title:\"Value\",type:ControlType.String}},hidden:props=>!props.withEmail},withMessage:{title:\"Message\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:true},message:{title:\" \",type:ControlType.Object,controls:{placeholder:{title:\"Placeholder\",type:ControlType.String,defaultValue:\"Message\"},value:{title:\"Value\",type:ControlType.String}},hidden:props=>!props.withMessage},layout:{title:\"Layout\",type:ControlType.Enum,options:[\"horizontal\",\"vertical\"],displaySegmentedControl:true,defaultValue:\"horizontal\"},inputs:{title:\"Inputs\",type:ControlType.Object,controls:{fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#EBEBEB\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#000\"},placeholderColor:{title:\"Placeholder\",type:ControlType.Color,defaultValue:\"rgba(0, 0, 0, 0.5)\"},error:{title:\"Error\",type:ControlType.Color,defaultValue:\"#EE4444\"}}},button:{title:\"Button\",type:ControlType.Object,controls:{label:{title:\"Label\",type:ControlType.String,defaultValue:\"Sign Up\"},fontWeight:{...fontControls.fontWeight,defaultValue:600},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#000\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#FFF\"}}},...fontControls,fontSize:{title:\"Font Size\",type:ControlType.Number,displayStepper:true,defaultValue:16},...paddingControl,...borderRadiusControl,gap:{title:\"Gap\",type:ControlType.Number,displayStepper:true,min:0},onSubmit:{type:ControlType.EventHandler}});const defaultStyle={WebkitAppearance:\"none\",display:\"inline-block\",width:\"100%\",lineHeight:\"1.4em\",outline:\"none\",border:\"none\"};export default FormSpark;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FormSpark\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"290\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"550\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FormSpark.map", "// Generated by Framer (92f3d02)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-IvVlr .framer-styles-preset-adndvr:not(.rich-text-wrapper), .framer-IvVlr .framer-styles-preset-adndvr.rich-text-wrapper a { --framer-link-current-text-color: #111111; --framer-link-current-text-decoration: none; --framer-link-hover-text-color: #000000; --framer-link-hover-text-decoration: none; --framer-link-text-color: #451297; --framer-link-text-decoration: none; }\"];export const className=\"framer-IvVlr\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ea53337)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-Bold\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{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/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:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/mkY5Sgyq51ik0AMrSBwhm9DJg.woff2\",weight:\"900\"},{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/X5hj6qzcHUYv7h1390c8Rhm6550.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/gQhNpS3tN86g8RcVKYUUaKt2oMQ.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cugnVhSraaRyANCaUtI5FV17wk.woff2\",weight:\"900\"},{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/5HcVoGak8k5agFJSaKa4floXVu0.woff2\",weight:\"900\"},{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/jn4BtSPLlS0NDp1KiFAtFKiiY0o.woff2\",weight:\"900\"},{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/P2Bw01CtL0b9wqygO0sSVogWbo.woff2\",weight:\"900\"},{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/05KsVHGDmqXSBXM4yRZ65P8i0s.woff2\",weight:\"900\"},{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/ky8ovPukK4dJ1Pxq74qGhOqCYI.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/vvNSqIj42qeQ2bvCRBIWKHscrc.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/3ZmXbBKToJifDV9gwcifVd1tEY.woff2\",weight:\"900\"},{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/FNfhX3dt4ChuLJq2PwdlxHO7PU.woff2\",weight:\"900\"},{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/g0c8vEViiXNlKAgI4Ymmk3Ig.woff2\",weight:\"900\"},{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/efTfQcBJ53kM2pB1hezSZ3RDUFs.woff2\",weight:\"900\"},{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\"}]}];export const css=['.framer-82m4x .framer-styles-preset-10ray22:not(.rich-text-wrapper), .framer-82m4x .framer-styles-preset-10ray22.rich-text-wrapper h1 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 30px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.01em; --framer-line-height: 1.3em; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: capitalize; }','@media (max-width: 1439px) and (min-width: 1200px) { .framer-82m4x .framer-styles-preset-10ray22:not(.rich-text-wrapper), .framer-82m4x .framer-styles-preset-10ray22.rich-text-wrapper h1 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 28px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.01em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: capitalize; } }','@media (max-width: 1199px) and (min-width: 0px) { .framer-82m4x .framer-styles-preset-10ray22:not(.rich-text-wrapper), .framer-82m4x .framer-styles-preset-10ray22.rich-text-wrapper h1 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 22px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.01em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: capitalize; } }'];export const className=\"framer-82m4x\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (838580a)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-6oGxF .framer-styles-preset-1swr5t3:not(.rich-text-wrapper), .framer-6oGxF .framer-styles-preset-1swr5t3.rich-text-wrapper a { --framer-link-current-text-color: #111111; --framer-link-current-text-decoration: none; --framer-link-hover-text-color: #0088ff; --framer-link-hover-text-decoration: none; --framer-link-text-color: #0099ff; --framer-link-text-decoration: none; }\"];export const className=\"framer-6oGxF\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (400c93f)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PathVariablesContext,PropertyOverrides,RichText,useActiveVariantCallback,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useOverlayState,useQueryData,useRouteElementId,withCSS}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js\";import FormSpark from\"https://framerusercontent.com/modules/vkHAj2Yk0mTnbM6ZdN5c/Foxm7T4YpJpvPgDlEus0/FormSpark.js\";import Calendly from\"https://framerusercontent.com/modules/WIJbzyan03eQVbqqCNqQ/ZVFGE0CIYem9dXbVNw5j/Calendly.js\";import AnimatedGradientBorder from\"#framer/local/codeFile/L0imkM6/AnimatedGradientBorder.js\";import Blog from\"#framer/local/collection/XCkFvkGIP/XCkFvkGIP.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle5 from\"#framer/local/css/AXBITYX1s/AXBITYX1s.js\";import*as sharedStyle10 from\"#framer/local/css/AylC4Rf3j/AylC4Rf3j.js\";import*as sharedStyle1 from\"#framer/local/css/bLF6mWok1/bLF6mWok1.js\";import*as sharedStyle18 from\"#framer/local/css/CgXOoYiwy/CgXOoYiwy.js\";import*as sharedStyle17 from\"#framer/local/css/CQCfWkNZY/CQCfWkNZY.js\";import*as sharedStyle14 from\"#framer/local/css/d1fjX1sjz/d1fjX1sjz.js\";import*as sharedStyle3 from\"#framer/local/css/gAN4hmW3P/gAN4hmW3P.js\";import*as sharedStyle from\"#framer/local/css/hQdvxvNrG/hQdvxvNrG.js\";import*as sharedStyle12 from\"#framer/local/css/iHM5p1F_G/iHM5p1F_G.js\";import*as sharedStyle9 from\"#framer/local/css/jFjhqeiu7/jFjhqeiu7.js\";import*as sharedStyle15 from\"#framer/local/css/nHHSkky4J/nHHSkky4J.js\";import*as sharedStyle13 from\"#framer/local/css/nRjfGDUBP/nRjfGDUBP.js\";import*as sharedStyle4 from\"#framer/local/css/NwInoyh_x/NwInoyh_x.js\";import*as sharedStyle8 from\"#framer/local/css/U3PK1jrd3/U3PK1jrd3.js\";import*as sharedStyle2 from\"#framer/local/css/vvBsOFby_/vvBsOFby_.js\";import*as sharedStyle16 from\"#framer/local/css/vWH_WAgtd/vWH_WAgtd.js\";import*as sharedStyle11 from\"#framer/local/css/vx8tBMkV6/vx8tBMkV6.js\";import*as sharedStyle7 from\"#framer/local/css/xLnKFaj5u/xLnKFaj5u.js\";import*as sharedStyle6 from\"#framer/local/css/yKog0klpW/yKog0klpW.js\";import*as sharedStyle19 from\"#framer/local/css/Z26PKjv7q/Z26PKjv7q.js\";import*as sharedStyle20 from\"#framer/local/css/zHHIXDd_L/zHHIXDd_L.js\";import metadataProvider from\"#framer/local/webPageMetadata/SvCgENg1G/SvCgENg1G.js\";const AnimatedGradientBorderFonts=getFonts(AnimatedGradientBorder);const EmbedFonts=getFonts(Embed);const CalendlyFonts=getFonts(Calendly);const FormSparkFonts=getFonts(FormSpark);const breakpoints={eJEl4ihpQ:\"(min-width: 1440px)\",vKoL52zFv:\"(min-width: 1200px) and (max-width: 1439px)\",vtn9bkNeF:\"(max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-hTGKN\";const variantClassNames={eJEl4ihpQ:\"framer-v-ra8kig\",vKoL52zFv:\"framer-v-1hcqjo7\",vtn9bkNeF:\"framer-v-1u2o3rv\"};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 isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop 3\":\"vKoL52zFv\",Desktop:\"eJEl4ihpQ\",Phone:\"vtn9bkNeF\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"eJEl4ihpQ\"};};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 currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"SvCgENg1G\",data:Blog,type:\"Collection\"},select:[{collection:\"SvCgENg1G\",name:\"qeASQ4SST\",type:\"Identifier\"},{collection:\"SvCgENg1G\",name:\"KcRhGnSTa\",type:\"Identifier\"},{collection:\"SvCgENg1G\",name:\"uDrxxPznB\",type:\"Identifier\"},{collection:\"SvCgENg1G\",name:\"NtFdXLjzV\",type:\"Identifier\"},{collection:\"SvCgENg1G\",name:\"o4Ki1dTrf\",type:\"Identifier\"},{collection:\"SvCgENg1G\",name:\"QbfjVqbvC\",type:\"Identifier\"},{collection:\"SvCgENg1G\",name:\"cukvsiXPf\",type:\"Identifier\"},{collection:\"SvCgENg1G\",name:\"oyAAYn9FC\",type:\"Identifier\"},{collection:\"SvCgENg1G\",name:\"ZUFYJdDsg\",type:\"Identifier\"},{collection:\"SvCgENg1G\",name:\"b64KhQpFU\",type:\"Identifier\"},{collection:\"SvCgENg1G\",name:\"Zjhurq1bu\",type:\"Identifier\"},{collection:\"SvCgENg1G\",name:\"F8Lhnb6Sv\",type:\"Identifier\"},{collection:\"SvCgENg1G\",name:\"V57sdpzlb\",type:\"Identifier\"},{collection:\"SvCgENg1G\",name:\"VixcT9S9z\",type:\"Identifier\"},{collection:\"SvCgENg1G\",name:\"a4KQybDUF\",type:\"Identifier\"},{collection:\"SvCgENg1G\",name:\"D3AgJgVlD\",type:\"Identifier\"},{collection:\"SvCgENg1G\",name:\"u93Z9mDdv\",type:\"Identifier\"},{collection:\"SvCgENg1G\",name:\"bhs3Yez8e\",type:\"Identifier\"},{collection:\"SvCgENg1G\",name:\"Gyc2feMZO\",type:\"Identifier\"},{collection:\"SvCgENg1G\",name:\"GjREPmqHu\",type:\"Identifier\"},{collection:\"SvCgENg1G\",name:\"bgxAJpl8P\",type:\"Identifier\"},{collection:\"SvCgENg1G\",name:\"LA5FbjBfe\",type:\"Identifier\"},{collection:\"SvCgENg1G\",name:\"y7HqmhqcD\",type:\"Identifier\"},{collection:\"SvCgENg1G\",name:\"Sm1W6hJQb\",type:\"Identifier\"},{collection:\"SvCgENg1G\",name:\"ca8vFseQg\",type:\"Identifier\"},{collection:\"SvCgENg1G\",name:\"KatIVmTHd\",type:\"Identifier\"},{collection:\"SvCgENg1G\",name:\"T4wJ2sfZt\",type:\"Identifier\"},{collection:\"SvCgENg1G\",name:\"TMSCXBwIi\",type:\"Identifier\"},{collection:\"SvCgENg1G\",name:\"KyX0DkhVV\",type:\"Identifier\"},{collection:\"SvCgENg1G\",name:\"cAw2bWAHJ\",type:\"Identifier\"},{collection:\"SvCgENg1G\",name:\"iwpPeExZ_\",type:\"Identifier\"},{collection:\"SvCgENg1G\",name:\"OBCNWdAAy\",type:\"Identifier\"},{collection:\"SvCgENg1G\",name:\"sUHBWQzi2\",type:\"Identifier\"},{collection:\"SvCgENg1G\",name:\"wgtU5EuTz\",type:\"Identifier\"},{collection:\"SvCgENg1G\",name:\"F0EcQA_6_\",type:\"Identifier\"},{collection:\"SvCgENg1G\",name:\"bmJbO3amR\",type:\"Identifier\"},{collection:\"SvCgENg1G\",name:\"J12HSFoyE\",type:\"Identifier\"},{collection:\"SvCgENg1G\",name:\"oyzcOju8o\",type:\"Identifier\"},{collection:\"SvCgENg1G\",name:\"P3PUX9z8z\",type:\"Identifier\"},{collection:\"SvCgENg1G\",name:\"Cjt7ccScN\",type:\"Identifier\"},{collection:\"SvCgENg1G\",name:\"dxDsW444Q\",type:\"Identifier\"},{collection:\"SvCgENg1G\",name:\"tQlUoyASs\",type:\"Identifier\"},{collection:\"SvCgENg1G\",name:\"vYehRqH3k\",type:\"Identifier\"},{collection:\"SvCgENg1G\",name:\"OeHQI2Lhe\",type:\"Identifier\"},{collection:\"SvCgENg1G\",name:\"bi30ATmVE\",type:\"Identifier\"},{collection:\"SvCgENg1G\",name:\"PDDl5WEru\",type:\"Identifier\"},{collection:\"SvCgENg1G\",name:\"XcvzrrRWg\",type:\"Identifier\"},{collection:\"SvCgENg1G\",name:\"gXs3RBIE6\",type:\"Identifier\"},{collection:\"SvCgENg1G\",name:\"LXaNNrnlh\",type:\"Identifier\"},{collection:\"SvCgENg1G\",name:\"UnSg69u5D\",type:\"Identifier\"},{collection:\"SvCgENg1G\",name:\"X9ysh5_0a\",type:\"Identifier\"},{collection:\"SvCgENg1G\",name:\"Ym7JaTd2S\",type:\"Identifier\"},{collection:\"SvCgENg1G\",name:\"dheZ8iAVf\",type:\"Identifier\"},{collection:\"SvCgENg1G\",name:\"v9bSNnxmm\",type:\"Identifier\"},{collection:\"SvCgENg1G\",name:\"h5B64GeqZ\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"SvCgENg1G\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,o4Ki1dTrf=getFromCurrentRouteData(\"o4Ki1dTrf\"),NtFdXLjzV=getFromCurrentRouteData(\"NtFdXLjzV\"),qeASQ4SST=getFromCurrentRouteData(\"qeASQ4SST\")??\"\",QbfjVqbvC=getFromCurrentRouteData(\"QbfjVqbvC\")??\"\",uDrxxPznB=getFromCurrentRouteData(\"uDrxxPznB\")??\"\",oyAAYn9FC=getFromCurrentRouteData(\"oyAAYn9FC\")??\"\",b64KhQpFU=getFromCurrentRouteData(\"b64KhQpFU\")??\"\",F8Lhnb6Sv=getFromCurrentRouteData(\"F8Lhnb6Sv\")??\"\",VixcT9S9z=getFromCurrentRouteData(\"VixcT9S9z\")??\"\",D3AgJgVlD=getFromCurrentRouteData(\"D3AgJgVlD\")??\"\",bhs3Yez8e=getFromCurrentRouteData(\"bhs3Yez8e\")??\"\",GjREPmqHu=getFromCurrentRouteData(\"GjREPmqHu\")??\"\",LA5FbjBfe=getFromCurrentRouteData(\"LA5FbjBfe\")??\"\",Sm1W6hJQb=getFromCurrentRouteData(\"Sm1W6hJQb\")??\"\",KatIVmTHd=getFromCurrentRouteData(\"KatIVmTHd\")??\"\",TMSCXBwIi=getFromCurrentRouteData(\"TMSCXBwIi\")??\"\",cAw2bWAHJ=getFromCurrentRouteData(\"cAw2bWAHJ\")??\"\",OBCNWdAAy=getFromCurrentRouteData(\"OBCNWdAAy\")??\"\",wgtU5EuTz=getFromCurrentRouteData(\"wgtU5EuTz\")??\"\",bmJbO3amR=getFromCurrentRouteData(\"bmJbO3amR\")??\"\",oyzcOju8o=getFromCurrentRouteData(\"oyzcOju8o\")??\"\",Cjt7ccScN=getFromCurrentRouteData(\"Cjt7ccScN\")??\"\",tQlUoyASs=getFromCurrentRouteData(\"tQlUoyASs\")??\"\",OeHQI2Lhe=getFromCurrentRouteData(\"OeHQI2Lhe\")??\"\",PDDl5WEru=getFromCurrentRouteData(\"PDDl5WEru\")??\"\",gXs3RBIE6=getFromCurrentRouteData(\"gXs3RBIE6\")??\"\",UnSg69u5D=getFromCurrentRouteData(\"UnSg69u5D\")??\"\",Ym7JaTd2S=getFromCurrentRouteData(\"Ym7JaTd2S\")??\"\",v9bSNnxmm=getFromCurrentRouteData(\"v9bSNnxmm\")??\"\",cukvsiXPf=getFromCurrentRouteData(\"cukvsiXPf\")??\"\",ZUFYJdDsg=getFromCurrentRouteData(\"ZUFYJdDsg\")??\"\",Zjhurq1bu=getFromCurrentRouteData(\"Zjhurq1bu\")??\"\",V57sdpzlb=getFromCurrentRouteData(\"V57sdpzlb\")??\"\",a4KQybDUF=getFromCurrentRouteData(\"a4KQybDUF\")??\"\",u93Z9mDdv=getFromCurrentRouteData(\"u93Z9mDdv\")??\"\",Gyc2feMZO=getFromCurrentRouteData(\"Gyc2feMZO\")??\"\",bgxAJpl8P=getFromCurrentRouteData(\"bgxAJpl8P\")??\"\",y7HqmhqcD=getFromCurrentRouteData(\"y7HqmhqcD\")??\"\",ca8vFseQg=getFromCurrentRouteData(\"ca8vFseQg\")??\"\",T4wJ2sfZt=getFromCurrentRouteData(\"T4wJ2sfZt\")??\"\",KyX0DkhVV=getFromCurrentRouteData(\"KyX0DkhVV\")??\"\",iwpPeExZ_=getFromCurrentRouteData(\"iwpPeExZ_\")??\"\",sUHBWQzi2=getFromCurrentRouteData(\"sUHBWQzi2\")??\"\",F0EcQA_6_=getFromCurrentRouteData(\"F0EcQA_6_\")??\"\",J12HSFoyE=getFromCurrentRouteData(\"J12HSFoyE\")??\"\",P3PUX9z8z=getFromCurrentRouteData(\"P3PUX9z8z\")??\"\",dxDsW444Q=getFromCurrentRouteData(\"dxDsW444Q\")??\"\",vYehRqH3k=getFromCurrentRouteData(\"vYehRqH3k\")??\"\",bi30ATmVE=getFromCurrentRouteData(\"bi30ATmVE\")??\"\",XcvzrrRWg=getFromCurrentRouteData(\"XcvzrrRWg\")??\"\",LXaNNrnlh=getFromCurrentRouteData(\"LXaNNrnlh\")??\"\",X9ysh5_0a=getFromCurrentRouteData(\"X9ysh5_0a\")??\"\",dheZ8iAVf=getFromCurrentRouteData(\"dheZ8iAVf\")??\"\",h5B64GeqZ=getFromCurrentRouteData(\"h5B64GeqZ\")??\"\",uDrxxPznBj8ORwpw1Z,o4Ki1dTrfj8ORwpw1Z,NtFdXLjzVj8ORwpw1Z,qeASQ4SSTj8ORwpw1Z,KcRhGnSTaj8ORwpw1Z,idj8ORwpw1Z,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const onTap3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className,sharedStyle11.className,sharedStyle12.className,sharedStyle13.className,sharedStyle14.className,sharedStyle15.className,sharedStyle16.className,sharedStyle17.className,sharedStyle18.className,sharedStyle19.className,sharedStyle20.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const activeLocaleCode=useLocaleCode();const textContent=toDateString(NtFdXLjzV,{dateStyle:\"medium\",locale:\"en\"},activeLocaleCode);const visible=isSet(QbfjVqbvC);const visible1=isSet(oyAAYn9FC);const visible2=isSet(b64KhQpFU);const visible3=isSet(F8Lhnb6Sv);const visible4=isSet(VixcT9S9z);const visible5=isSet(D3AgJgVlD);const visible6=isSet(bhs3Yez8e);const visible7=isSet(GjREPmqHu);const visible8=isSet(LA5FbjBfe);const visible9=isSet(Sm1W6hJQb);const visible10=isSet(KatIVmTHd);const visible11=isSet(TMSCXBwIi);const visible12=isSet(cAw2bWAHJ);const visible13=isSet(OBCNWdAAy);const visible14=isSet(wgtU5EuTz);const visible15=isSet(bmJbO3amR);const visible16=isSet(oyzcOju8o);const visible17=isSet(Cjt7ccScN);const visible18=isSet(tQlUoyASs);const visible19=isSet(OeHQI2Lhe);const visible20=isSet(PDDl5WEru);const visible21=isSet(gXs3RBIE6);const visible22=isSet(UnSg69u5D);const visible23=isSet(Ym7JaTd2S);const visible24=isSet(v9bSNnxmm);const visible25=isSet(cukvsiXPf);const elementId=useRouteElementId(\"lL7cehj0s\");const ref1=React.useRef(null);const visible26=isSet(ZUFYJdDsg);const elementId1=useRouteElementId(\"Hz0GmnVHi\");const ref2=React.useRef(null);const visible27=isSet(Zjhurq1bu);const elementId2=useRouteElementId(\"GnIytdJvA\");const ref3=React.useRef(null);const visible28=isSet(V57sdpzlb);const elementId3=useRouteElementId(\"lxapBZMDC\");const ref4=React.useRef(null);const visible29=isSet(a4KQybDUF);const elementId4=useRouteElementId(\"zUnBhzmse\");const ref5=React.useRef(null);const visible30=isSet(u93Z9mDdv);const elementId5=useRouteElementId(\"Aosg8GeVO\");const ref6=React.useRef(null);const visible31=isSet(Gyc2feMZO);const elementId6=useRouteElementId(\"SuGLlbO2O\");const ref7=React.useRef(null);const visible32=isSet(bgxAJpl8P);const elementId7=useRouteElementId(\"dbMYNWrGv\");const ref8=React.useRef(null);const visible33=isSet(y7HqmhqcD);const elementId8=useRouteElementId(\"e99NvPdqY\");const ref9=React.useRef(null);const visible34=isSet(ca8vFseQg);const elementId9=useRouteElementId(\"E1rLzVAqL\");const ref10=React.useRef(null);const visible35=isSet(T4wJ2sfZt);const elementId10=useRouteElementId(\"mCEkyqEFW\");const ref11=React.useRef(null);const visible36=isSet(KyX0DkhVV);const elementId11=useRouteElementId(\"z7s9qih9q\");const ref12=React.useRef(null);const visible37=isSet(iwpPeExZ_);const elementId12=useRouteElementId(\"b2qgBBDpO\");const ref13=React.useRef(null);const visible38=isSet(sUHBWQzi2);const elementId13=useRouteElementId(\"ZRRl_H4K4\");const ref14=React.useRef(null);const visible39=isSet(F0EcQA_6_);const elementId14=useRouteElementId(\"lOOCB0BfB\");const ref15=React.useRef(null);const visible40=isSet(J12HSFoyE);const elementId15=useRouteElementId(\"E1sTQnqSA\");const ref16=React.useRef(null);const visible41=isSet(P3PUX9z8z);const elementId16=useRouteElementId(\"EOkCxNBDi\");const ref17=React.useRef(null);const visible42=isSet(dxDsW444Q);const elementId17=useRouteElementId(\"hm28EX0O6\");const ref18=React.useRef(null);const visible43=isSet(vYehRqH3k);const elementId18=useRouteElementId(\"kmCSOT5sd\");const ref19=React.useRef(null);const visible44=isSet(bi30ATmVE);const elementId19=useRouteElementId(\"Nw6te_Hi6\");const ref20=React.useRef(null);const visible45=isSet(XcvzrrRWg);const elementId20=useRouteElementId(\"w5s5TtHH4\");const ref21=React.useRef(null);const visible46=isSet(LXaNNrnlh);const elementId21=useRouteElementId(\"NQQ2LJjJu\");const ref22=React.useRef(null);const visible47=isSet(X9ysh5_0a);const elementId22=useRouteElementId(\"jBVXVJbDw\");const ref23=React.useRef(null);const visible48=isSet(dheZ8iAVf);const elementId23=useRouteElementId(\"AmkzxlRbh\");const ref24=React.useRef(null);const visible49=isSet(h5B64GeqZ);const elementId24=useRouteElementId(\"xhvjdC5yM\");const ref25=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"eJEl4ihpQ\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(250, 250, 250); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-ra8kig\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ra2zl6\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1l5f49\",\"data-framer-name\":\"Post\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tcv8yx\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vKoL52zFv:{background:{alt:\"\",fit:\"fill\",sizes:`calc(min(max(${componentViewport?.width||\"100vw\"} - 344px, 1px), 700px) - 40px)`,...toResponsiveImage(o4Ki1dTrf)}},vtn9bkNeF:{background:{alt:\"\",fit:\"fill\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 800px) - 40px)`,...toResponsiveImage(o4Ki1dTrf)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:`calc(min(max(${componentViewport?.width||\"100vw\"} - 344px, 1px), 800px) - 40px)`,...toResponsiveImage(o4Ki1dTrf)},className:\"framer-1c19a99\",\"data-framer-name\":\"Banner\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gvo7zs\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vtn9bkNeF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.7em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"Content\"})}),fonts:[\"GF;Poppins-regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1v3e10n\",\"data-styles-preset\":\"hQdvxvNrG\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(130, 130, 130)\"},children:\"Content\"})}),className:\"framer-eybcd3\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vtn9bkNeF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-10ray22\",\"data-styles-preset\":\"bLF6mWok1\",children:\"Online Business Acquisition Process (A Step-by-Step Blueprint)\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-10ray22\",\"data-styles-preset\":\"bLF6mWok1\",children:\"Content\"})}),className:\"framer-1r6jvn3\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:qeASQ4SST,verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-63rxth\",\"data-framer-name\":\"table\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pqwn5n\",\"data-border\":true,\"data-framer-name\":\"Right Table\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-vgxq8x\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-ayzf4l\",\"data-styles-preset\":\"vvBsOFby_\",children:\"Table Of Contents\"})}),className:\"framer-6jt12d\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),visible&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dwmw0h\",\"data-framer-name\":\"1\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-cq3ii1\",\"data-styles-preset\":\"gAN4hmW3P\",children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{uDrxxPznB},webPageId:\"SvCgENg1G\"},motionChild:true,nodeId:\"wmKDZ_IbX\",openInNewTab:false,scopeId:\"SvCgENg1G\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1swr5t3\",\"data-styles-preset\":\"NwInoyh_x\",children:\"Content\"})})})}),className:\"framer-p5k01d\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],text:QbfjVqbvC,verticalAlignment:\"top\",withExternalLayout:true})}),visible1&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-21m1ix\",\"data-framer-name\":\"2\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-cq3ii1\",\"data-styles-preset\":\"gAN4hmW3P\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":Hz0GmnVHi\",pathVariables:{uDrxxPznB},webPageId:\"SvCgENg1G\"},motionChild:true,nodeId:\"OJJEOO_vy\",openInNewTab:false,scopeId:\"SvCgENg1G\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-adndvr\",\"data-styles-preset\":\"AXBITYX1s\",children:\"Step 1: Identifying the Right Online Business to Acquire\"})})})}),className:\"framer-1mh6tab\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],text:oyAAYn9FC,verticalAlignment:\"top\",withExternalLayout:true})}),visible2&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-17axpv9\",\"data-framer-name\":\"3\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-cq3ii1\",\"data-styles-preset\":\"gAN4hmW3P\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":GnIytdJvA\",pathVariables:{uDrxxPznB},webPageId:\"SvCgENg1G\"},motionChild:true,nodeId:\"cduRcX3XA\",openInNewTab:false,scopeId:\"SvCgENg1G\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-adndvr\",\"data-styles-preset\":\"AXBITYX1s\",children:\"Step 2: Conducting Due Diligence\"})})})}),className:\"framer-n88ovp\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],text:b64KhQpFU,verticalAlignment:\"top\",withExternalLayout:true})}),visible3&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-141f9h0\",\"data-framer-name\":\"4\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-cq3ii1\",\"data-styles-preset\":\"gAN4hmW3P\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":lxapBZMDC\",pathVariables:{uDrxxPznB},webPageId:\"SvCgENg1G\"},motionChild:true,nodeId:\"mrvS4xU_A\",openInNewTab:false,scopeId:\"SvCgENg1G\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-adndvr\",\"data-styles-preset\":\"AXBITYX1s\",children:\"Step 3: Valuation and Negotiation\"})})})}),className:\"framer-1z028jr\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],text:F8Lhnb6Sv,verticalAlignment:\"top\",withExternalLayout:true})}),visible4&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-tz2ip5\",\"data-framer-name\":\"5\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-cq3ii1\",\"data-styles-preset\":\"gAN4hmW3P\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":zUnBhzmse\",pathVariables:{uDrxxPznB},webPageId:\"SvCgENg1G\"},motionChild:true,nodeId:\"p5x2nkoyj\",openInNewTab:false,scopeId:\"SvCgENg1G\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-adndvr\",\"data-styles-preset\":\"AXBITYX1s\",children:\"Step 4: Transition and Post-Acquisition Strategy\"})})})}),className:\"framer-w9qlie\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],text:VixcT9S9z,verticalAlignment:\"top\",withExternalLayout:true})}),visible5&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vxg4ca\",\"data-framer-name\":\"6\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-cq3ii1\",\"data-styles-preset\":\"gAN4hmW3P\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":Aosg8GeVO\",pathVariables:{uDrxxPznB},webPageId:\"SvCgENg1G\"},motionChild:true,nodeId:\"nuFScOs71\",openInNewTab:false,scopeId:\"SvCgENg1G\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-adndvr\",\"data-styles-preset\":\"AXBITYX1s\",children:\"FAQs About the Online Business Acquisition Process\"})})})}),className:\"framer-1dj3y1s\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],text:D3AgJgVlD,verticalAlignment:\"top\",withExternalLayout:true})}),visible6&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-14x1h69\",\"data-framer-name\":\"7\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-cq3ii1\",\"data-styles-preset\":\"gAN4hmW3P\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":SuGLlbO2O\",pathVariables:{uDrxxPznB},webPageId:\"SvCgENg1G\"},motionChild:true,nodeId:\"C521zVnUf\",openInNewTab:false,scopeId:\"SvCgENg1G\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-adndvr\",\"data-styles-preset\":\"AXBITYX1s\",children:\"Conclusion\"})})})}),className:\"framer-1duj20k\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],text:bhs3Yez8e,verticalAlignment:\"top\",withExternalLayout:true})}),visible7&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-461heh\",\"data-framer-name\":\"8\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-cq3ii1\",\"data-styles-preset\":\"gAN4hmW3P\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":dbMYNWrGv\",pathVariables:{uDrxxPznB},webPageId:\"SvCgENg1G\"},motionChild:true,nodeId:\"JwnCWxKdN\",openInNewTab:false,scopeId:\"SvCgENg1G\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-adndvr\",\"data-styles-preset\":\"AXBITYX1s\",children:\"Content\"})})})}),className:\"framer-j48v3l\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],text:GjREPmqHu,verticalAlignment:\"top\",withExternalLayout:true})}),visible8&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-epwe2v\",\"data-framer-name\":\"9\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-cq3ii1\",\"data-styles-preset\":\"gAN4hmW3P\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":e99NvPdqY\",pathVariables:{uDrxxPznB},webPageId:\"SvCgENg1G\"},motionChild:true,nodeId:\"b53E0tB3G\",openInNewTab:false,scopeId:\"SvCgENg1G\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-adndvr\",\"data-styles-preset\":\"AXBITYX1s\",children:\"Content\"})})})}),className:\"framer-1r2ow4d\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],text:LA5FbjBfe,verticalAlignment:\"top\",withExternalLayout:true})}),visible9&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dc7v7e\",\"data-framer-name\":\"10\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-cq3ii1\",\"data-styles-preset\":\"gAN4hmW3P\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":E1rLzVAqL\",pathVariables:{uDrxxPznB},webPageId:\"SvCgENg1G\"},motionChild:true,nodeId:\"DWNtbvhSf\",openInNewTab:false,scopeId:\"SvCgENg1G\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-adndvr\",\"data-styles-preset\":\"AXBITYX1s\",children:\"Content\"})})})}),className:\"framer-e7o32p\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],text:Sm1W6hJQb,verticalAlignment:\"top\",withExternalLayout:true})}),visible10&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1669p9y\",\"data-framer-name\":\"11\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-cq3ii1\",\"data-styles-preset\":\"gAN4hmW3P\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":mCEkyqEFW\",pathVariables:{uDrxxPznB},webPageId:\"SvCgENg1G\"},motionChild:true,nodeId:\"ZVlBCWOue\",openInNewTab:false,scopeId:\"SvCgENg1G\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-adndvr\",\"data-styles-preset\":\"AXBITYX1s\",children:\"Content\"})})})}),className:\"framer-1rjwhtd\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],text:KatIVmTHd,verticalAlignment:\"top\",withExternalLayout:true})}),visible11&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-9y2gte\",\"data-framer-name\":\"12\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-cq3ii1\",\"data-styles-preset\":\"gAN4hmW3P\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":z7s9qih9q\",pathVariables:{uDrxxPznB},webPageId:\"SvCgENg1G\"},motionChild:true,nodeId:\"IBFLL3H5M\",openInNewTab:false,scopeId:\"SvCgENg1G\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-adndvr\",\"data-styles-preset\":\"AXBITYX1s\",children:\"Content\"})})})}),className:\"framer-i07fpk\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],text:TMSCXBwIi,verticalAlignment:\"top\",withExternalLayout:true})}),visible12&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-cwfhiy\",\"data-framer-name\":\"13\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-cq3ii1\",\"data-styles-preset\":\"gAN4hmW3P\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":b2qgBBDpO\",pathVariables:{uDrxxPznB},webPageId:\"SvCgENg1G\"},motionChild:true,nodeId:\"BBCLdBudv\",openInNewTab:false,scopeId:\"SvCgENg1G\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-adndvr\",\"data-styles-preset\":\"AXBITYX1s\",children:\"Content\"})})})}),className:\"framer-10eb2fi\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],text:cAw2bWAHJ,verticalAlignment:\"top\",withExternalLayout:true})}),visible13&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1anfjig\",\"data-framer-name\":\"14\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-cq3ii1\",\"data-styles-preset\":\"gAN4hmW3P\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":ZRRl_H4K4\",pathVariables:{uDrxxPznB},webPageId:\"SvCgENg1G\"},motionChild:true,nodeId:\"g4CweHOQx\",openInNewTab:false,scopeId:\"SvCgENg1G\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-adndvr\",\"data-styles-preset\":\"AXBITYX1s\",children:\"Content\"})})})}),className:\"framer-1rwksvw\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],text:OBCNWdAAy,verticalAlignment:\"top\",withExternalLayout:true})}),visible14&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sd2mfy\",\"data-framer-name\":\"15\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-cq3ii1\",\"data-styles-preset\":\"gAN4hmW3P\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":lOOCB0BfB\",pathVariables:{uDrxxPznB},webPageId:\"SvCgENg1G\"},motionChild:true,nodeId:\"L_FR1v4G3\",openInNewTab:false,scopeId:\"SvCgENg1G\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-adndvr\",\"data-styles-preset\":\"AXBITYX1s\",children:\"Content\"})})})}),className:\"framer-fufw97\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],text:wgtU5EuTz,verticalAlignment:\"top\",withExternalLayout:true})}),visible15&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-yjxxvl\",\"data-framer-name\":\"16\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-cq3ii1\",\"data-styles-preset\":\"gAN4hmW3P\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":E1sTQnqSA\",pathVariables:{uDrxxPznB},webPageId:\"SvCgENg1G\"},motionChild:true,nodeId:\"r7tD37T9F\",openInNewTab:false,scopeId:\"SvCgENg1G\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-adndvr\",\"data-styles-preset\":\"AXBITYX1s\",children:\"Content\"})})})}),className:\"framer-1gr4wuz\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],text:bmJbO3amR,verticalAlignment:\"top\",withExternalLayout:true})}),visible16&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yqeu0x\",\"data-framer-name\":\"17\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-cq3ii1\",\"data-styles-preset\":\"gAN4hmW3P\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":EOkCxNBDi\",pathVariables:{uDrxxPznB},webPageId:\"SvCgENg1G\"},motionChild:true,nodeId:\"DwWtaHjFf\",openInNewTab:false,scopeId:\"SvCgENg1G\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-adndvr\",\"data-styles-preset\":\"AXBITYX1s\",children:\"Content\"})})})}),className:\"framer-42ojmo\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],text:oyzcOju8o,verticalAlignment:\"top\",withExternalLayout:true})}),visible17&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1u9qw4u\",\"data-framer-name\":\"18\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-cq3ii1\",\"data-styles-preset\":\"gAN4hmW3P\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":hm28EX0O6\",pathVariables:{uDrxxPznB},webPageId:\"SvCgENg1G\"},motionChild:true,nodeId:\"gXfRuNBOd\",openInNewTab:false,scopeId:\"SvCgENg1G\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-adndvr\",\"data-styles-preset\":\"AXBITYX1s\",children:\"Content\"})})})}),className:\"framer-lesjar\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],text:Cjt7ccScN,verticalAlignment:\"top\",withExternalLayout:true})}),visible18&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-b9w61h\",\"data-framer-name\":\"19\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-cq3ii1\",\"data-styles-preset\":\"gAN4hmW3P\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":kmCSOT5sd\",pathVariables:{uDrxxPznB},webPageId:\"SvCgENg1G\"},motionChild:true,nodeId:\"d01SqCEFx\",openInNewTab:false,scopeId:\"SvCgENg1G\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-adndvr\",\"data-styles-preset\":\"AXBITYX1s\",children:\"Content\"})})})}),className:\"framer-10k1na7\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],text:tQlUoyASs,verticalAlignment:\"top\",withExternalLayout:true})}),visible19&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-14cpzxx\",\"data-framer-name\":\"20\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-cq3ii1\",\"data-styles-preset\":\"gAN4hmW3P\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":Nw6te_Hi6\",pathVariables:{uDrxxPznB},webPageId:\"SvCgENg1G\"},motionChild:true,nodeId:\"Wuwc1v4Ev\",openInNewTab:false,scopeId:\"SvCgENg1G\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-adndvr\",\"data-styles-preset\":\"AXBITYX1s\",children:\"Content\"})})})}),className:\"framer-x93c9o\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],text:OeHQI2Lhe,verticalAlignment:\"top\",withExternalLayout:true})}),visible20&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-zu74dn\",\"data-framer-name\":\"21\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-cq3ii1\",\"data-styles-preset\":\"gAN4hmW3P\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":w5s5TtHH4\",pathVariables:{uDrxxPznB},webPageId:\"SvCgENg1G\"},motionChild:true,nodeId:\"RAdkXUL7f\",openInNewTab:false,scopeId:\"SvCgENg1G\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-adndvr\",\"data-styles-preset\":\"AXBITYX1s\",children:\"Content\"})})})}),className:\"framer-e4yka3\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],text:PDDl5WEru,verticalAlignment:\"top\",withExternalLayout:true})}),visible21&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1htnpea\",\"data-framer-name\":\"22\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-cq3ii1\",\"data-styles-preset\":\"gAN4hmW3P\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":NQQ2LJjJu\",pathVariables:{uDrxxPznB},webPageId:\"SvCgENg1G\"},motionChild:true,nodeId:\"oef0BXEP2\",openInNewTab:false,scopeId:\"SvCgENg1G\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-adndvr\",\"data-styles-preset\":\"AXBITYX1s\",children:\"Content\"})})})}),className:\"framer-5bw28m\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],text:gXs3RBIE6,verticalAlignment:\"top\",withExternalLayout:true})}),visible22&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-k13jav\",\"data-framer-name\":\"23\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-cq3ii1\",\"data-styles-preset\":\"gAN4hmW3P\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":NQQ2LJjJu\",pathVariables:{uDrxxPznB},webPageId:\"SvCgENg1G\"},motionChild:true,nodeId:\"Qx1f5kd7O\",openInNewTab:false,scopeId:\"SvCgENg1G\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-adndvr\",\"data-styles-preset\":\"AXBITYX1s\",children:\"Content\"})})})}),className:\"framer-1daca5n\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],text:UnSg69u5D,verticalAlignment:\"top\",withExternalLayout:true})}),visible23&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qdbe87\",\"data-framer-name\":\"24\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":AmkzxlRbh\",pathVariables:{uDrxxPznB},webPageId:\"SvCgENg1G\"},motionChild:true,nodeId:\"MrGU9Zp9Q\",openInNewTab:false,scopeId:\"SvCgENg1G\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-adndvr\",\"data-styles-preset\":\"AXBITYX1s\",children:\"Conclusion\"})})})}),className:\"framer-1sy2ane\",\"data-framer-name\":\"Content\",fonts:[\"Inter-Medium\"],text:Ym7JaTd2S,verticalAlignment:\"top\",withExternalLayout:true})}),visible24&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-cq3ii1\",\"data-styles-preset\":\"gAN4hmW3P\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":xhvjdC5yM\",pathVariables:{uDrxxPznB},webPageId:\"SvCgENg1G\"},motionChild:true,nodeId:\"JYd2fmrRM\",openInNewTab:false,scopeId:\"SvCgENg1G\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-adndvr\",\"data-styles-preset\":\"AXBITYX1s\",children:\"Content\"})})})}),className:\"framer-164v0e7\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],text:v9bSNnxmm,verticalAlignment:\"top\",withExternalLayout:true})]})}),visible25&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1feyfbx\",\"data-framer-name\":\"section1\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-fhkcq5\",\"data-styles-preset\":\"yKog0klpW\",children:\"Content\"})}),className:\"framer-15q0g3r\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],text:QbfjVqbvC,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/8aCGinfRQO68tQ3QF42d/YouTube.js:Youtube\":componentPresets.props[\"jmmNeJQSi\"],\"module:pVk4QsoHxASnVtUBp6jr/HTBsNkEMAb7TUGaO3DBy/CodeBlock.js:default\":componentPresets.props[\"agc8HmdW4\"]},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vtn9bkNeF:{stylesPresetsClassNames:{a:\"framer-styles-preset-1kmiwy4\",blockquote:\"framer-styles-preset-1jpssqk\",code:\"framer-styles-preset-fvx4zx\",h1:\"framer-styles-preset-4mp8yu\",h2:\"framer-styles-preset-fhkcq5\",h3:\"framer-styles-preset-78xy23\",h4:\"framer-styles-preset-ayzf4l\",h5:\"framer-styles-preset-10h21ca\",h6:\"framer-styles-preset-ccstqd\",img:\"framer-styles-preset-1n9pugo\",p:\"framer-styles-preset-gtf7ra\",table:\"framer-styles-preset-dpny6d\"}}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:cukvsiXPf,className:\"framer-bjtmrh\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1kmiwy4\",blockquote:\"framer-styles-preset-1jpssqk\",code:\"framer-styles-preset-fvx4zx\",h1:\"framer-styles-preset-4mp8yu\",h2:\"framer-styles-preset-fhkcq5\",h3:\"framer-styles-preset-78xy23\",h4:\"framer-styles-preset-ayzf4l\",h5:\"framer-styles-preset-10h21ca\",h6:\"framer-styles-preset-1fvs3hn\",img:\"framer-styles-preset-1n9pugo\",p:\"framer-styles-preset-gtf7ra\",table:\"framer-styles-preset-dpny6d\"},verticalAlignment:\"top\",withExternalLayout:true})})})]}),visible26&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1av1x5j\",\"data-framer-name\":\"section2\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-fhkcq5\",\"data-styles-preset\":\"yKog0klpW\",children:\"Step 1: Identifying the Right Online Business to Acquire\"})}),className:\"framer-1h2q4ot\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],text:oyAAYn9FC,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/8aCGinfRQO68tQ3QF42d/YouTube.js:Youtube\":componentPresets.props[\"jmmNeJQSi\"],\"module:pVk4QsoHxASnVtUBp6jr/HTBsNkEMAb7TUGaO3DBy/CodeBlock.js:default\":componentPresets.props[\"agc8HmdW4\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:ZUFYJdDsg,className:\"framer-vw62y9\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1kmiwy4\",blockquote:\"framer-styles-preset-1jpssqk\",code:\"framer-styles-preset-fvx4zx\",h1:\"framer-styles-preset-4mp8yu\",h2:\"framer-styles-preset-fhkcq5\",h3:\"framer-styles-preset-78xy23\",h4:\"framer-styles-preset-ayzf4l\",h5:\"framer-styles-preset-10h21ca\",h6:\"framer-styles-preset-ccstqd\",img:\"framer-styles-preset-1n9pugo\",p:\"framer-styles-preset-gtf7ra\",table:\"framer-styles-preset-dpny6d\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bl37uj\",\"data-framer-name\":\"special section\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-nnt2bw-container\",isAuthoredByUser:true,nodeId:\"r1Ch1cMIJ\",scopeId:\"SvCgENg1G\",children:/*#__PURE__*/_jsx(AnimatedGradientBorder,{borderColor:\"rgb(27, 122, 67)\",borderWidth:6,direction:\"cw\",duration:5,fill:\"rgb(255, 255, 255)\",height:\"100%\",id:\"r1Ch1cMIJ\",layoutId:\"r1Ch1cMIJ\",radius:16,radiusBottomLeft:16,radiusBottomRight:16,radiusIsMixed:false,radiusTopLeft:16,radiusTopRight:16,randomize:true,shadows:\"\",shineColor:\"rgb(255, 255, 255)\",shineRange:45,shineStyle:\"sharp\",startAngle:0,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1glqtf6\",\"data-framer-name\":\"Special Section\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-jj2clt\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vtn9bkNeF:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:464.8,intrinsicWidth:403.2,pixelHeight:960,pixelWidth:1e3,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/79E2kPKUulRjEy6mEGaUVJKU4.png?scale-down-to=512\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:464.8,intrinsicWidth:403.2,pixelHeight:960,pixelWidth:1e3,src:\"https://framerusercontent.com/images/79E2kPKUulRjEy6mEGaUVJKU4.png?scale-down-to=512\"},className:\"framer-1wcijtu\",\"data-framer-name\":\"YdUHporARefyoaWA9VC0GYpSwDI\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3bk1xm\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wc8pqu\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-ayzf4l\",\"data-styles-preset\":\"vvBsOFby_\",children:\"We Help You Buy / Build, Manage and Scale E-commerce Brands for an EXIT\"})}),className:\"framer-jantf0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1rjcvfl\",\"data-styles-preset\":\"CQCfWkNZY\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"E-commerce Simplified for Busy Individuals\"}),\" \u2013 We handle the buying, building, and scaling, so you can focus on what matters.\"]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1rjcvfl\",\"data-styles-preset\":\"CQCfWkNZY\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Growth-Focused Strategies\"}),\" \u2013 From sourcing to marketing, we drive growth and prepare you for a profitable exit.\"]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1rjcvfl\",\"data-styles-preset\":\"CQCfWkNZY\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Expertly Managed Exits\"}),\" \u2013 We build a high-value brand designed for a Lucrative exit.\"]})]}),className:\"framer-18cafg4\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"TrCKV8js2\"},motionChild:true,nodeId:\"LJoiwxlAn\",scopeId:\"SvCgENg1G\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-ulz7m8 framer-cck9vb\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vKoL52zFv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Book Your Free Consultation\"})})},vtn9bkNeF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Book Your Free Consultation\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Book Your Free Consultation\"})}),className:\"framer-1tey1nc\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]})]})]}),visible27&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tx5xih\",\"data-framer-name\":\"section3\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-fhkcq5\",\"data-styles-preset\":\"yKog0klpW\",children:\"Step 2: Conducting Due Diligence\"})}),className:\"framer-1rr8pgn\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],text:b64KhQpFU,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/8aCGinfRQO68tQ3QF42d/YouTube.js:Youtube\":componentPresets.props[\"jmmNeJQSi\"],\"module:pVk4QsoHxASnVtUBp6jr/HTBsNkEMAb7TUGaO3DBy/CodeBlock.js:default\":componentPresets.props[\"agc8HmdW4\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:Zjhurq1bu,className:\"framer-1wo7fc0\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1kmiwy4\",blockquote:\"framer-styles-preset-1jpssqk\",code:\"framer-styles-preset-fvx4zx\",h1:\"framer-styles-preset-4mp8yu\",h2:\"framer-styles-preset-fhkcq5\",h3:\"framer-styles-preset-78xy23\",h4:\"framer-styles-preset-ayzf4l\",h5:\"framer-styles-preset-10h21ca\",h6:\"framer-styles-preset-ccstqd\",img:\"framer-styles-preset-1n9pugo\",p:\"framer-styles-preset-gtf7ra\",table:\"framer-styles-preset-dpny6d\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),visible28&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ufjbuj\",\"data-framer-name\":\"section4\",id:elementId3,ref:ref4,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-fhkcq5\",\"data-styles-preset\":\"yKog0klpW\",children:\"Step 3: Valuation and Negotiation\"})}),className:\"framer-y27ns7\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],text:F8Lhnb6Sv,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/8aCGinfRQO68tQ3QF42d/YouTube.js:Youtube\":componentPresets.props[\"jmmNeJQSi\"],\"module:pVk4QsoHxASnVtUBp6jr/HTBsNkEMAb7TUGaO3DBy/CodeBlock.js:default\":componentPresets.props[\"agc8HmdW4\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:V57sdpzlb,className:\"framer-14inw75\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1kmiwy4\",blockquote:\"framer-styles-preset-1jpssqk\",code:\"framer-styles-preset-fvx4zx\",h1:\"framer-styles-preset-4mp8yu\",h2:\"framer-styles-preset-fhkcq5\",h3:\"framer-styles-preset-78xy23\",h4:\"framer-styles-preset-ayzf4l\",h5:\"framer-styles-preset-10h21ca\",h6:\"framer-styles-preset-ccstqd\",img:\"framer-styles-preset-1n9pugo\",p:\"framer-styles-preset-gtf7ra\",table:\"framer-styles-preset-dpny6d\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),visible29&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ype73l\",\"data-framer-name\":\"section5\",id:elementId4,ref:ref5,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-fhkcq5\",\"data-styles-preset\":\"yKog0klpW\",children:\"Step 4: Transition and Post-Acquisition Strategy\"})}),className:\"framer-ckikdm\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],text:VixcT9S9z,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/8aCGinfRQO68tQ3QF42d/YouTube.js:Youtube\":componentPresets.props[\"jmmNeJQSi\"],\"module:pVk4QsoHxASnVtUBp6jr/HTBsNkEMAb7TUGaO3DBy/CodeBlock.js:default\":componentPresets.props[\"agc8HmdW4\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:a4KQybDUF,className:\"framer-1wpxrid\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1kmiwy4\",blockquote:\"framer-styles-preset-1jpssqk\",code:\"framer-styles-preset-fvx4zx\",h1:\"framer-styles-preset-4mp8yu\",h2:\"framer-styles-preset-fhkcq5\",h3:\"framer-styles-preset-78xy23\",h4:\"framer-styles-preset-ayzf4l\",h5:\"framer-styles-preset-10h21ca\",h6:\"framer-styles-preset-ccstqd\",img:\"framer-styles-preset-1n9pugo\",p:\"framer-styles-preset-gtf7ra\",table:\"framer-styles-preset-dpny6d\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),visible30&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cn04wb\",\"data-framer-name\":\"section6\",id:elementId5,ref:ref6,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-fhkcq5\",\"data-styles-preset\":\"yKog0klpW\",children:\"FAQs About the Online Business Acquisition Process\"})}),className:\"framer-v49321\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],text:D3AgJgVlD,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/8aCGinfRQO68tQ3QF42d/YouTube.js:Youtube\":componentPresets.props[\"jmmNeJQSi\"],\"module:pVk4QsoHxASnVtUBp6jr/HTBsNkEMAb7TUGaO3DBy/CodeBlock.js:default\":componentPresets.props[\"agc8HmdW4\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:u93Z9mDdv,className:\"framer-5ai1u6\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1kmiwy4\",blockquote:\"framer-styles-preset-1jpssqk\",code:\"framer-styles-preset-fvx4zx\",h1:\"framer-styles-preset-4mp8yu\",h2:\"framer-styles-preset-fhkcq5\",h3:\"framer-styles-preset-78xy23\",h4:\"framer-styles-preset-ayzf4l\",h5:\"framer-styles-preset-10h21ca\",h6:\"framer-styles-preset-ccstqd\",img:\"framer-styles-preset-1n9pugo\",p:\"framer-styles-preset-gtf7ra\",table:\"framer-styles-preset-dpny6d\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1omxbmg\",\"data-framer-name\":\"special section\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-7jm2mr-container\",isAuthoredByUser:true,nodeId:\"kqUgMkyL2\",scopeId:\"SvCgENg1G\",children:/*#__PURE__*/_jsx(AnimatedGradientBorder,{borderColor:\"rgb(27, 122, 67)\",borderWidth:6,direction:\"cw\",duration:5,fill:\"rgb(255, 255, 255)\",height:\"100%\",id:\"kqUgMkyL2\",layoutId:\"kqUgMkyL2\",radius:16,radiusBottomLeft:16,radiusBottomRight:16,radiusIsMixed:false,radiusTopLeft:16,radiusTopRight:16,randomize:true,shadows:\"\",shineColor:\"rgb(255, 255, 255)\",shineRange:45,shineStyle:\"sharp\",startAngle:0,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cc8e61\",\"data-framer-name\":\"Special Section\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-s4tl3q\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vtn9bkNeF:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:464.8,intrinsicWidth:403.2,pixelHeight:960,pixelWidth:1e3,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/79E2kPKUulRjEy6mEGaUVJKU4.png?scale-down-to=512\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:464.8,intrinsicWidth:403.2,pixelHeight:960,pixelWidth:1e3,src:\"https://framerusercontent.com/images/79E2kPKUulRjEy6mEGaUVJKU4.png?scale-down-to=512\"},className:\"framer-sevafk\",\"data-framer-name\":\"YdUHporARefyoaWA9VC0GYpSwDI\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d9hvrk\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n15ae4\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-ayzf4l\",\"data-styles-preset\":\"vvBsOFby_\",children:\"We Help You Buy / Build, Manage and Scale E-commerce Brands for an EXIT\"})}),className:\"framer-1ofj891\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1rjcvfl\",\"data-styles-preset\":\"CQCfWkNZY\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"E-commerce Simplified for Busy Individuals\"}),\" \u2013 We handle the buying, building, and scaling, so you can focus on what matters.\"]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1rjcvfl\",\"data-styles-preset\":\"CQCfWkNZY\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Growth-Focused Strategies\"}),\" \u2013 From sourcing to marketing, we drive growth and prepare you for a profitable exit.\"]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1rjcvfl\",\"data-styles-preset\":\"CQCfWkNZY\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Expertly Managed Exits\"}),\" \u2013 We build a high-value brand designed for a Lucrative exit.\"]})]}),className:\"framer-p8pbwe\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"TrCKV8js2\"},motionChild:true,nodeId:\"JkDqxgHdS\",scopeId:\"SvCgENg1G\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-19oblh4 framer-cck9vb\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vKoL52zFv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Book Your Free Consultation\"})})},vtn9bkNeF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Book Your Free Consultation\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Book Your Free Consultation\"})}),className:\"framer-oq9epp\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]})]})]}),visible31&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19t9iee\",\"data-framer-name\":\"section7\",id:elementId6,ref:ref7,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-fhkcq5\",\"data-styles-preset\":\"yKog0klpW\",children:\"Conclusion\"})}),className:\"framer-p2dune\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],text:bhs3Yez8e,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/8aCGinfRQO68tQ3QF42d/YouTube.js:Youtube\":componentPresets.props[\"jmmNeJQSi\"],\"module:pVk4QsoHxASnVtUBp6jr/HTBsNkEMAb7TUGaO3DBy/CodeBlock.js:default\":componentPresets.props[\"agc8HmdW4\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:Gyc2feMZO,className:\"framer-jjnbff\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1kmiwy4\",blockquote:\"framer-styles-preset-1jpssqk\",code:\"framer-styles-preset-fvx4zx\",h1:\"framer-styles-preset-4mp8yu\",h2:\"framer-styles-preset-fhkcq5\",h3:\"framer-styles-preset-78xy23\",h4:\"framer-styles-preset-ayzf4l\",h5:\"framer-styles-preset-10h21ca\",h6:\"framer-styles-preset-ccstqd\",img:\"framer-styles-preset-1n9pugo\",p:\"framer-styles-preset-gtf7ra\",table:\"framer-styles-preset-dpny6d\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),visible32&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t7nlq4\",\"data-framer-name\":\"section8\",id:elementId7,ref:ref8,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-fhkcq5\",\"data-styles-preset\":\"yKog0klpW\",children:\"Content\"})}),className:\"framer-fwri6s\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],text:GjREPmqHu,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/8aCGinfRQO68tQ3QF42d/YouTube.js:Youtube\":componentPresets.props[\"jmmNeJQSi\"],\"module:pVk4QsoHxASnVtUBp6jr/HTBsNkEMAb7TUGaO3DBy/CodeBlock.js:default\":componentPresets.props[\"agc8HmdW4\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:bgxAJpl8P,className:\"framer-18lqzc9\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1kmiwy4\",blockquote:\"framer-styles-preset-1jpssqk\",code:\"framer-styles-preset-fvx4zx\",h1:\"framer-styles-preset-4mp8yu\",h2:\"framer-styles-preset-fhkcq5\",h3:\"framer-styles-preset-78xy23\",h4:\"framer-styles-preset-ayzf4l\",h5:\"framer-styles-preset-10h21ca\",h6:\"framer-styles-preset-ccstqd\",img:\"framer-styles-preset-1n9pugo\",p:\"framer-styles-preset-gtf7ra\",table:\"framer-styles-preset-dpny6d\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),visible33&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-spa1p1\",\"data-framer-name\":\"section9\",id:elementId8,ref:ref9,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-fhkcq5\",\"data-styles-preset\":\"yKog0klpW\",children:\"Content\"})}),className:\"framer-1603u7k\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],text:LA5FbjBfe,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/8aCGinfRQO68tQ3QF42d/YouTube.js:Youtube\":componentPresets.props[\"jmmNeJQSi\"],\"module:pVk4QsoHxASnVtUBp6jr/HTBsNkEMAb7TUGaO3DBy/CodeBlock.js:default\":componentPresets.props[\"agc8HmdW4\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:y7HqmhqcD,className:\"framer-12y225u\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1kmiwy4\",blockquote:\"framer-styles-preset-1jpssqk\",code:\"framer-styles-preset-fvx4zx\",h1:\"framer-styles-preset-4mp8yu\",h2:\"framer-styles-preset-fhkcq5\",h3:\"framer-styles-preset-78xy23\",h4:\"framer-styles-preset-ayzf4l\",h5:\"framer-styles-preset-10h21ca\",h6:\"framer-styles-preset-ccstqd\",img:\"framer-styles-preset-1n9pugo\",p:\"framer-styles-preset-gtf7ra\",table:\"framer-styles-preset-dpny6d\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),visible34&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s7a1yq\",\"data-framer-name\":\"section10\",id:elementId9,ref:ref10,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-fhkcq5\",\"data-styles-preset\":\"yKog0klpW\",children:\"Content\"})}),className:\"framer-8xtbgz\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],text:Sm1W6hJQb,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/8aCGinfRQO68tQ3QF42d/YouTube.js:Youtube\":componentPresets.props[\"jmmNeJQSi\"],\"module:pVk4QsoHxASnVtUBp6jr/HTBsNkEMAb7TUGaO3DBy/CodeBlock.js:default\":componentPresets.props[\"agc8HmdW4\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:ca8vFseQg,className:\"framer-2o4sye\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1kmiwy4\",blockquote:\"framer-styles-preset-1jpssqk\",code:\"framer-styles-preset-fvx4zx\",h1:\"framer-styles-preset-4mp8yu\",h2:\"framer-styles-preset-fhkcq5\",h3:\"framer-styles-preset-78xy23\",h4:\"framer-styles-preset-ayzf4l\",h5:\"framer-styles-preset-10h21ca\",h6:\"framer-styles-preset-ccstqd\",img:\"framer-styles-preset-1n9pugo\",p:\"framer-styles-preset-gtf7ra\",table:\"framer-styles-preset-dpny6d\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),visible35&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mnvwk1\",\"data-framer-name\":\"section11\",id:elementId10,ref:ref11,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-fhkcq5\",\"data-styles-preset\":\"yKog0klpW\",children:\"Content\"})}),className:\"framer-97g7xw\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],text:KatIVmTHd,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/8aCGinfRQO68tQ3QF42d/YouTube.js:Youtube\":componentPresets.props[\"jmmNeJQSi\"],\"module:pVk4QsoHxASnVtUBp6jr/HTBsNkEMAb7TUGaO3DBy/CodeBlock.js:default\":componentPresets.props[\"agc8HmdW4\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:T4wJ2sfZt,className:\"framer-i2f5n8\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1kmiwy4\",blockquote:\"framer-styles-preset-1jpssqk\",code:\"framer-styles-preset-fvx4zx\",h1:\"framer-styles-preset-4mp8yu\",h2:\"framer-styles-preset-fhkcq5\",h3:\"framer-styles-preset-78xy23\",h4:\"framer-styles-preset-ayzf4l\",h5:\"framer-styles-preset-10h21ca\",h6:\"framer-styles-preset-ccstqd\",img:\"framer-styles-preset-1n9pugo\",p:\"framer-styles-preset-gtf7ra\",table:\"framer-styles-preset-dpny6d\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),visible36&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-r57xq7\",\"data-framer-name\":\"section12\",id:elementId11,ref:ref12,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-fhkcq5\",\"data-styles-preset\":\"yKog0klpW\",children:\"Content\"})}),className:\"framer-6cjvzz\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],text:TMSCXBwIi,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/8aCGinfRQO68tQ3QF42d/YouTube.js:Youtube\":componentPresets.props[\"jmmNeJQSi\"],\"module:pVk4QsoHxASnVtUBp6jr/HTBsNkEMAb7TUGaO3DBy/CodeBlock.js:default\":componentPresets.props[\"agc8HmdW4\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:KyX0DkhVV,className:\"framer-92c31q\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1kmiwy4\",blockquote:\"framer-styles-preset-1jpssqk\",code:\"framer-styles-preset-fvx4zx\",h1:\"framer-styles-preset-4mp8yu\",h2:\"framer-styles-preset-fhkcq5\",h3:\"framer-styles-preset-78xy23\",h4:\"framer-styles-preset-ayzf4l\",h5:\"framer-styles-preset-10h21ca\",h6:\"framer-styles-preset-ccstqd\",img:\"framer-styles-preset-1n9pugo\",p:\"framer-styles-preset-gtf7ra\",table:\"framer-styles-preset-dpny6d\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),visible37&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jmyeaz\",\"data-framer-name\":\"section13\",id:elementId12,ref:ref13,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-fhkcq5\",\"data-styles-preset\":\"yKog0klpW\",children:\"Content\"})}),className:\"framer-oidqpw\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],text:cAw2bWAHJ,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/8aCGinfRQO68tQ3QF42d/YouTube.js:Youtube\":componentPresets.props[\"jmmNeJQSi\"],\"module:pVk4QsoHxASnVtUBp6jr/HTBsNkEMAb7TUGaO3DBy/CodeBlock.js:default\":componentPresets.props[\"agc8HmdW4\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:iwpPeExZ_,className:\"framer-11f8r71\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1kmiwy4\",blockquote:\"framer-styles-preset-1jpssqk\",code:\"framer-styles-preset-fvx4zx\",h1:\"framer-styles-preset-4mp8yu\",h2:\"framer-styles-preset-fhkcq5\",h3:\"framer-styles-preset-78xy23\",h4:\"framer-styles-preset-ayzf4l\",h5:\"framer-styles-preset-10h21ca\",h6:\"framer-styles-preset-ccstqd\",img:\"framer-styles-preset-1n9pugo\",p:\"framer-styles-preset-gtf7ra\",table:\"framer-styles-preset-dpny6d\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),visible38&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13xfsd3\",\"data-framer-name\":\"section14\",id:elementId13,ref:ref14,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-fhkcq5\",\"data-styles-preset\":\"yKog0klpW\",children:\"Content\"})}),className:\"framer-1hw8i0o\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],text:OBCNWdAAy,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/8aCGinfRQO68tQ3QF42d/YouTube.js:Youtube\":componentPresets.props[\"jmmNeJQSi\"],\"module:pVk4QsoHxASnVtUBp6jr/HTBsNkEMAb7TUGaO3DBy/CodeBlock.js:default\":componentPresets.props[\"agc8HmdW4\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:sUHBWQzi2,className:\"framer-wpk8ec\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1kmiwy4\",blockquote:\"framer-styles-preset-1jpssqk\",code:\"framer-styles-preset-fvx4zx\",h1:\"framer-styles-preset-4mp8yu\",h2:\"framer-styles-preset-fhkcq5\",h3:\"framer-styles-preset-78xy23\",h4:\"framer-styles-preset-ayzf4l\",h5:\"framer-styles-preset-10h21ca\",h6:\"framer-styles-preset-ccstqd\",img:\"framer-styles-preset-1n9pugo\",p:\"framer-styles-preset-gtf7ra\",table:\"framer-styles-preset-dpny6d\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),visible39&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5wskc0\",\"data-framer-name\":\"section15\",id:elementId14,ref:ref15,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-fhkcq5\",\"data-styles-preset\":\"yKog0klpW\",children:\"Content\"})}),className:\"framer-1mt3yp4\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],text:wgtU5EuTz,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/8aCGinfRQO68tQ3QF42d/YouTube.js:Youtube\":componentPresets.props[\"jmmNeJQSi\"],\"module:pVk4QsoHxASnVtUBp6jr/HTBsNkEMAb7TUGaO3DBy/CodeBlock.js:default\":componentPresets.props[\"agc8HmdW4\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:F0EcQA_6_,className:\"framer-11ocu3j\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1kmiwy4\",blockquote:\"framer-styles-preset-1jpssqk\",code:\"framer-styles-preset-fvx4zx\",h1:\"framer-styles-preset-4mp8yu\",h2:\"framer-styles-preset-fhkcq5\",h3:\"framer-styles-preset-78xy23\",h4:\"framer-styles-preset-ayzf4l\",h5:\"framer-styles-preset-10h21ca\",h6:\"framer-styles-preset-ccstqd\",img:\"framer-styles-preset-1n9pugo\",p:\"framer-styles-preset-gtf7ra\",table:\"framer-styles-preset-dpny6d\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),visible40&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gj8nky\",\"data-framer-name\":\"section16\",id:elementId15,ref:ref16,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-fhkcq5\",\"data-styles-preset\":\"yKog0klpW\",children:\"Content\"})}),className:\"framer-mscti2\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],text:bmJbO3amR,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/8aCGinfRQO68tQ3QF42d/YouTube.js:Youtube\":componentPresets.props[\"jmmNeJQSi\"],\"module:pVk4QsoHxASnVtUBp6jr/HTBsNkEMAb7TUGaO3DBy/CodeBlock.js:default\":componentPresets.props[\"agc8HmdW4\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:J12HSFoyE,className:\"framer-1kdtjlr\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1kmiwy4\",blockquote:\"framer-styles-preset-1jpssqk\",code:\"framer-styles-preset-fvx4zx\",h1:\"framer-styles-preset-4mp8yu\",h2:\"framer-styles-preset-fhkcq5\",h3:\"framer-styles-preset-78xy23\",h4:\"framer-styles-preset-ayzf4l\",h5:\"framer-styles-preset-10h21ca\",h6:\"framer-styles-preset-ccstqd\",img:\"framer-styles-preset-1n9pugo\",p:\"framer-styles-preset-gtf7ra\",table:\"framer-styles-preset-dpny6d\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),visible41&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oez73i\",\"data-framer-name\":\"section17\",id:elementId16,ref:ref17,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-fhkcq5\",\"data-styles-preset\":\"yKog0klpW\",children:\"Content\"})}),className:\"framer-hksjqi\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],text:oyzcOju8o,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/8aCGinfRQO68tQ3QF42d/YouTube.js:Youtube\":componentPresets.props[\"jmmNeJQSi\"],\"module:pVk4QsoHxASnVtUBp6jr/HTBsNkEMAb7TUGaO3DBy/CodeBlock.js:default\":componentPresets.props[\"agc8HmdW4\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:P3PUX9z8z,className:\"framer-1kpkr72\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1kmiwy4\",blockquote:\"framer-styles-preset-1jpssqk\",code:\"framer-styles-preset-fvx4zx\",h1:\"framer-styles-preset-4mp8yu\",h2:\"framer-styles-preset-fhkcq5\",h3:\"framer-styles-preset-78xy23\",h4:\"framer-styles-preset-ayzf4l\",h5:\"framer-styles-preset-10h21ca\",h6:\"framer-styles-preset-ccstqd\",img:\"framer-styles-preset-1n9pugo\",p:\"framer-styles-preset-gtf7ra\",table:\"framer-styles-preset-dpny6d\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),visible42&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w5subv\",\"data-framer-name\":\"section18\",id:elementId17,ref:ref18,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-fhkcq5\",\"data-styles-preset\":\"yKog0klpW\",children:\"Content\"})}),className:\"framer-1wtrbkf\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],text:Cjt7ccScN,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/8aCGinfRQO68tQ3QF42d/YouTube.js:Youtube\":componentPresets.props[\"jmmNeJQSi\"],\"module:pVk4QsoHxASnVtUBp6jr/HTBsNkEMAb7TUGaO3DBy/CodeBlock.js:default\":componentPresets.props[\"agc8HmdW4\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:dxDsW444Q,className:\"framer-tyo0a7\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1kmiwy4\",blockquote:\"framer-styles-preset-1jpssqk\",code:\"framer-styles-preset-fvx4zx\",h1:\"framer-styles-preset-4mp8yu\",h2:\"framer-styles-preset-fhkcq5\",h3:\"framer-styles-preset-78xy23\",h4:\"framer-styles-preset-ayzf4l\",h5:\"framer-styles-preset-10h21ca\",h6:\"framer-styles-preset-ccstqd\",img:\"framer-styles-preset-1n9pugo\",p:\"framer-styles-preset-gtf7ra\",table:\"framer-styles-preset-dpny6d\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),visible43&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ikd7o0\",\"data-framer-name\":\"section19\",id:elementId18,ref:ref19,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-fhkcq5\",\"data-styles-preset\":\"yKog0klpW\",children:\"Content\"})}),className:\"framer-1mp4ls6\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],text:tQlUoyASs,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/8aCGinfRQO68tQ3QF42d/YouTube.js:Youtube\":componentPresets.props[\"jmmNeJQSi\"],\"module:pVk4QsoHxASnVtUBp6jr/HTBsNkEMAb7TUGaO3DBy/CodeBlock.js:default\":componentPresets.props[\"agc8HmdW4\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:vYehRqH3k,className:\"framer-ytln4v\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1kmiwy4\",blockquote:\"framer-styles-preset-1jpssqk\",code:\"framer-styles-preset-fvx4zx\",h1:\"framer-styles-preset-4mp8yu\",h2:\"framer-styles-preset-fhkcq5\",h3:\"framer-styles-preset-78xy23\",h4:\"framer-styles-preset-ayzf4l\",h5:\"framer-styles-preset-10h21ca\",h6:\"framer-styles-preset-ccstqd\",img:\"framer-styles-preset-1n9pugo\",p:\"framer-styles-preset-gtf7ra\",table:\"framer-styles-preset-dpny6d\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),visible44&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ddmu2w\",\"data-framer-name\":\"section20\",id:elementId19,ref:ref20,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-fhkcq5\",\"data-styles-preset\":\"yKog0klpW\",children:\"Content\"})}),className:\"framer-1ypzdco\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],text:OeHQI2Lhe,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/8aCGinfRQO68tQ3QF42d/YouTube.js:Youtube\":componentPresets.props[\"jmmNeJQSi\"],\"module:pVk4QsoHxASnVtUBp6jr/HTBsNkEMAb7TUGaO3DBy/CodeBlock.js:default\":componentPresets.props[\"agc8HmdW4\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:bi30ATmVE,className:\"framer-18lzme0\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1kmiwy4\",blockquote:\"framer-styles-preset-1jpssqk\",code:\"framer-styles-preset-fvx4zx\",h1:\"framer-styles-preset-4mp8yu\",h2:\"framer-styles-preset-fhkcq5\",h3:\"framer-styles-preset-78xy23\",h4:\"framer-styles-preset-ayzf4l\",h5:\"framer-styles-preset-10h21ca\",h6:\"framer-styles-preset-ccstqd\",img:\"framer-styles-preset-1n9pugo\",p:\"framer-styles-preset-gtf7ra\",table:\"framer-styles-preset-dpny6d\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),visible45&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wgf8n7\",\"data-framer-name\":\"section21\",id:elementId20,ref:ref21,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-fhkcq5\",\"data-styles-preset\":\"yKog0klpW\",children:\"Content\"})}),className:\"framer-1wwguds\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],text:PDDl5WEru,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/8aCGinfRQO68tQ3QF42d/YouTube.js:Youtube\":componentPresets.props[\"jmmNeJQSi\"],\"module:pVk4QsoHxASnVtUBp6jr/HTBsNkEMAb7TUGaO3DBy/CodeBlock.js:default\":componentPresets.props[\"agc8HmdW4\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:XcvzrrRWg,className:\"framer-jgeekf\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1kmiwy4\",blockquote:\"framer-styles-preset-1jpssqk\",code:\"framer-styles-preset-fvx4zx\",h1:\"framer-styles-preset-4mp8yu\",h2:\"framer-styles-preset-fhkcq5\",h3:\"framer-styles-preset-78xy23\",h4:\"framer-styles-preset-ayzf4l\",h5:\"framer-styles-preset-10h21ca\",h6:\"framer-styles-preset-ccstqd\",img:\"framer-styles-preset-1n9pugo\",p:\"framer-styles-preset-gtf7ra\",table:\"framer-styles-preset-dpny6d\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),visible46&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xrow0\",\"data-framer-name\":\"section22\",id:elementId21,ref:ref22,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-fhkcq5\",\"data-styles-preset\":\"yKog0klpW\",children:\"Content\"})}),className:\"framer-kvgdp2\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],text:gXs3RBIE6,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/8aCGinfRQO68tQ3QF42d/YouTube.js:Youtube\":componentPresets.props[\"jmmNeJQSi\"],\"module:pVk4QsoHxASnVtUBp6jr/HTBsNkEMAb7TUGaO3DBy/CodeBlock.js:default\":componentPresets.props[\"agc8HmdW4\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:LXaNNrnlh,className:\"framer-a8qcei\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1kmiwy4\",blockquote:\"framer-styles-preset-1jpssqk\",code:\"framer-styles-preset-fvx4zx\",h1:\"framer-styles-preset-4mp8yu\",h2:\"framer-styles-preset-fhkcq5\",h3:\"framer-styles-preset-78xy23\",h4:\"framer-styles-preset-ayzf4l\",h5:\"framer-styles-preset-10h21ca\",h6:\"framer-styles-preset-ccstqd\",img:\"framer-styles-preset-1n9pugo\",p:\"framer-styles-preset-gtf7ra\",table:\"framer-styles-preset-dpny6d\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),visible47&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8359ao\",\"data-framer-name\":\"section23\",id:elementId22,ref:ref23,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-fhkcq5\",\"data-styles-preset\":\"yKog0klpW\",children:\"Content\"})}),className:\"framer-cc34su\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],text:UnSg69u5D,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/8aCGinfRQO68tQ3QF42d/YouTube.js:Youtube\":componentPresets.props[\"jmmNeJQSi\"],\"module:pVk4QsoHxASnVtUBp6jr/HTBsNkEMAb7TUGaO3DBy/CodeBlock.js:default\":componentPresets.props[\"agc8HmdW4\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:X9ysh5_0a,className:\"framer-1qfhaez\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1kmiwy4\",blockquote:\"framer-styles-preset-1jpssqk\",code:\"framer-styles-preset-fvx4zx\",h1:\"framer-styles-preset-4mp8yu\",h2:\"framer-styles-preset-fhkcq5\",h3:\"framer-styles-preset-78xy23\",h4:\"framer-styles-preset-ayzf4l\",h5:\"framer-styles-preset-10h21ca\",h6:\"framer-styles-preset-ccstqd\",img:\"framer-styles-preset-1n9pugo\",p:\"framer-styles-preset-gtf7ra\",table:\"framer-styles-preset-dpny6d\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),visible48&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pght60\",\"data-framer-name\":\"section24\",id:elementId23,ref:ref24,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-fhkcq5\",\"data-styles-preset\":\"yKog0klpW\",children:\"Content\"})}),className:\"framer-3w3pwy\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],text:Ym7JaTd2S,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/8aCGinfRQO68tQ3QF42d/YouTube.js:Youtube\":componentPresets.props[\"jmmNeJQSi\"],\"module:pVk4QsoHxASnVtUBp6jr/HTBsNkEMAb7TUGaO3DBy/CodeBlock.js:default\":componentPresets.props[\"agc8HmdW4\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:dheZ8iAVf,className:\"framer-cgqr7a\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1kmiwy4\",blockquote:\"framer-styles-preset-1jpssqk\",code:\"framer-styles-preset-fvx4zx\",h1:\"framer-styles-preset-4mp8yu\",h2:\"framer-styles-preset-fhkcq5\",h3:\"framer-styles-preset-78xy23\",h4:\"framer-styles-preset-ayzf4l\",h5:\"framer-styles-preset-10h21ca\",h6:\"framer-styles-preset-ccstqd\",img:\"framer-styles-preset-1n9pugo\",p:\"framer-styles-preset-gtf7ra\",table:\"framer-styles-preset-dpny6d\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),visible49&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x9h8oi\",\"data-framer-name\":\"section25\",id:elementId24,ref:ref25,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-fhkcq5\",\"data-styles-preset\":\"yKog0klpW\",children:\"Content\"})}),className:\"framer-18tlbs6\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],text:v9bSNnxmm,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/8aCGinfRQO68tQ3QF42d/YouTube.js:Youtube\":componentPresets.props[\"jmmNeJQSi\"],\"module:pVk4QsoHxASnVtUBp6jr/HTBsNkEMAb7TUGaO3DBy/CodeBlock.js:default\":componentPresets.props[\"agc8HmdW4\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:h5B64GeqZ,className:\"framer-27nhat\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1kmiwy4\",blockquote:\"framer-styles-preset-1jpssqk\",code:\"framer-styles-preset-fvx4zx\",h1:\"framer-styles-preset-4mp8yu\",h2:\"framer-styles-preset-fhkcq5\",h3:\"framer-styles-preset-78xy23\",h4:\"framer-styles-preset-ayzf4l\",h5:\"framer-styles-preset-10h21ca\",h6:\"framer-styles-preset-ccstqd\",img:\"framer-styles-preset-1n9pugo\",p:\"framer-styles-preset-gtf7ra\",table:\"framer-styles-preset-dpny6d\"},verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19g60vx\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-15df81r\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8zxdsa\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hftd61\",\"data-border\":true,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lv7u12\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:5800,pixelWidth:6600,src:\"https://framerusercontent.com/images/nVLpfmbvN5Umsg5LgQiTtwR8YY.png?scale-down-to=512\"},className:\"framer-1g4e4v4\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ynsypk\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vtn9bkNeF:{viewBox:\"0 0 357 29\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-10h21ca\",\"data-styles-preset\":\"jFjhqeiu7\",children:\"Millionaire Playbook Building Business Assets\"})}),className:\"framer-18gec80\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19edy6t\",\"data-styles-preset\":\"CgXOoYiwy\",children:\"Discover How we Build, Launch, and Scale ecom Businesses\"})}),className:\"framer-zvrsze\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1icu5vw\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"AZckml2qK\"},motionChild:true,nodeId:\"vACgP7LrJ\",scopeId:\"SvCgENg1G\",children:/*#__PURE__*/_jsx(motion.a,{\"aria-label\":\"upsells\",className:\"framer-1lla039 framer-cck9vb\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"div\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"capitalize\"},children:\"Learn more\"})}),className:\"framer-sa39a9\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n4ie2h\",\"data-border\":true,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1y9y0ev\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:5800,pixelWidth:6600,src:\"https://framerusercontent.com/images/doIg9TTBqYidlKfvLjbYekdp0.png?scale-down-to=512\"},className:\"framer-1cqdt7g\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-68yed6\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vtn9bkNeF:{viewBox:\"0 0 357 29\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-10h21ca\",\"data-styles-preset\":\"jFjhqeiu7\",children:\"Acquire and flip a $100K business for $1M\"})}),className:\"framer-1b281gq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19edy6t\",\"data-styles-preset\":\"CgXOoYiwy\",children:\"Discover how we Acquire, Scale, and Exit ecom Businesses\"})}),className:\"framer-o75lf6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-108ldqs\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"A_i9e7t3i\"},motionChild:true,nodeId:\"vqybCvMoI\",openInNewTab:true,scopeId:\"SvCgENg1G\",children:/*#__PURE__*/_jsx(motion.a,{\"aria-label\":\"upsells\",className:\"framer-1ott64b framer-cck9vb\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"div\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"capitalize\"},children:\"Learn more\"})}),className:\"framer-yaor9r\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19pkkyc\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ymvujn\",\"data-border\":true,children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1500,pixelWidth:1e3,src:\"https://framerusercontent.com/images/mP5zhqOWSKc8Kzd1Ftnx16t15I.png?scale-down-to=512\"},className:\"framer-jmv9ut\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vec5wc\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"A Done-For-You E-commerce Business\"})}),className:\"framer-7dwabb\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"Discover how we Build, Launch, and Scale a 6-figure/month Business for You\"})}),className:\"framer-18dd7ga\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1aswlus\",children:/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1508870\",id:\"1508870\",onTap:onTap3bnx0g({overlay}),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"capitalize\"},children:\"Learn more\"})}),className:\"framer-1n7e9re\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1m87n0d\"),\"data-framer-portal-id\":\"1508870\",exit:{opacity:0,transition:{delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0}},\"ff_VSGAVt\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-cqlzep-container\"),\"data-framer-portal-id\":\"1508870\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"WnKRTi3r3\",scopeId:\"SvCgENg1G\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<div class=\"klaviyo-form-Uzbrq9\"></div>',id:\"WnKRTi3r3\",layoutId:\"WnKRTi3r3\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})]}),getContainer())})})]})})})})]})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ggzmyw\",\"data-framer-name\":\"Booking \",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vtn9bkNeF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-transform\":\"capitalize\"},children:\"book a free discovery call\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"47px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-transform\":\"capitalize\"},children:\"book a free discovery call\"})}),className:\"framer-1rhtkjc\",fonts:[\"GF;Poppins-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-123csry-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ejzk8Un3Q\",scopeId:\"SvCgENg1G\",children:/*#__PURE__*/_jsx(Calendly,{calendar:\"trendhijacking/discovery-call-with-trend-hijacking\",height:\"100%\",hideGdprBanner:true,hideLandingPageDetails:true,id:\"ejzk8Un3Q\",layoutId:\"ejzk8Un3Q\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1i1et92\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vtn9bkNeF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-transform\":\"capitalize\"},children:\"More Guides and Resources\u23EC\"})}),fonts:[\"GF;Outfit-600\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-4mp8yu\",\"data-styles-preset\":\"xLnKFaj5u\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"More Guides and Resources\u23EC\"})}),className:\"framer-rknd05\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1958a5p\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"j8ORwpw1Z\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:5},select:[{collection:\"j8ORwpw1Z\",name:\"uDrxxPznB\",type:\"Identifier\"},{collection:\"j8ORwpw1Z\",name:\"o4Ki1dTrf\",type:\"Identifier\"},{collection:\"j8ORwpw1Z\",name:\"NtFdXLjzV\",type:\"Identifier\"},{collection:\"j8ORwpw1Z\",name:\"qeASQ4SST\",type:\"Identifier\"},{collection:\"j8ORwpw1Z\",name:\"KcRhGnSTa\",type:\"Identifier\"},{collection:\"j8ORwpw1Z\",name:\"id\",type:\"Identifier\"}],where:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"j8ORwpw1Z\",name:\"qeASQ4SST\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:qeASQ4SST},type:\"BinaryOperation\"}}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({id:idj8ORwpw1Z,KcRhGnSTa:KcRhGnSTaj8ORwpw1Z,NtFdXLjzV:NtFdXLjzVj8ORwpw1Z,o4Ki1dTrf:o4Ki1dTrfj8ORwpw1Z,qeASQ4SST:qeASQ4SSTj8ORwpw1Z,uDrxxPznB:uDrxxPznBj8ORwpw1Z},index)=>{uDrxxPznBj8ORwpw1Z??=\"\";qeASQ4SSTj8ORwpw1Z??=\"\";KcRhGnSTaj8ORwpw1Z??=\"\";const textContent1=toDateString(NtFdXLjzVj8ORwpw1Z,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);return /*#__PURE__*/_jsx(LayoutGroup,{id:`j8ORwpw1Z-${idj8ORwpw1Z}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{uDrxxPznB:uDrxxPznBj8ORwpw1Z},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{uDrxxPznB:uDrxxPznBj8ORwpw1Z},webPageId:\"SvCgENg1G\"},motionChild:true,nodeId:\"wT2ccNkhw\",scopeId:\"SvCgENg1G\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-14sic9h framer-cck9vb\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vKoL52zFv:{background:{alt:\"\",fit:\"fill\",sizes:`min(${componentViewport?.width||\"100vw\"}, 1102px)`,...toResponsiveImage(o4Ki1dTrfj8ORwpw1Z)}},vtn9bkNeF:{background:{alt:\"\",fit:\"fill\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,...toResponsiveImage(o4Ki1dTrfj8ORwpw1Z)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:`min(${componentViewport?.width||\"100vw\"}, 1200px)`,...toResponsiveImage(o4Ki1dTrfj8ORwpw1Z)},className:\"framer-1ttfq5\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jwqzss\",\"data-framer-name\":\"Post\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vtn9bkNeF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"Content\"})}),fonts:[\"GF;Poppins-regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ccjtx9\",\"data-styles-preset\":\"Z26PKjv7q\",style:{\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:\"Content\"})}),className:\"framer-1pxwmiw\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],text:textContent1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-fhkcq5\",\"data-styles-preset\":\"yKog0klpW\",children:\"Best Prebuilt Shopify Stores (Complete Buyer\u2019s Guide 2025)\"})}),className:\"framer-iaqbin\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:qeASQ4SSTj8ORwpw1Z,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vtn9bkNeF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(89, 89, 89)\"},children:\"Boost sales with video marketing! Learn how videos grab attention, build trust, and increase conversions. Start transforming your business today!\"})}),fonts:[\"GF;Poppins-regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-gtf7ra\",\"data-styles-preset\":\"vx8tBMkV6\",children:[\"An in-depth guide to the best prebuilt Shopify stores. Tips on how to choose, optimize, and scale your new e-commerce business.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})]})}),className:\"framer-15yaldb\",\"data-framer-name\":\"Meta\",fonts:[\"Inter\"],text:KcRhGnSTaj8ORwpw1Z,verticalAlignment:\"top\",withExternalLayout:true})})]})]})})})},idj8ORwpw1Z);})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-e7t7yi\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-blir0u\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vtn9bkNeF:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-ckvugk\",\"data-styles-preset\":\"zHHIXDd_L\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Get the Latest Scoop from\"}),/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-ckvugk\",\"data-styles-preset\":\"zHHIXDd_L\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Trend Hijacking Connected\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-ckvugk\",\"data-styles-preset\":\"zHHIXDd_L\",style:{\"--framer-text-alignment\":\"center\"},children:\"Get the Latest Scoop from\"}),/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-ckvugk\",\"data-styles-preset\":\"zHHIXDd_L\",style:{\"--framer-text-alignment\":\"center\"},children:\"Trend Hijacking Connected\"})]}),className:\"framer-cbwdj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vtn9bkNeF:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\"},children:\"Be the first to know about new blog\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\"},children:\"& exclusive offers.\"})]}),fonts:[\"GF;Inter-regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-gtf7ra\",\"data-styles-preset\":\"vx8tBMkV6\",style:{\"--framer-text-alignment\":\"center\"},children:\"Be the first to know about new blog and exclusive offers.\"})}),className:\"framer-1jv1nr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ekq5oe-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"eM6AvUjS7\",scopeId:\"SvCgENg1G\",children:/*#__PURE__*/_jsx(FormSpark,{borderRadius:8,bottomLeftRadius:8,bottomRightRadius:8,button:{color:\"rgb(255, 255, 255)\",fill:\"rgb(0, 0, 0)\",fontWeight:600,label:\"Sign Up\"},email:{placeholder:\"Email\",value:\"\"},font:false,fontFamily:\"Inter\",fontSize:16,fontWeight:400,formId:\"GcdtEggdD\",gap:15,height:\"100%\",id:\"eM6AvUjS7\",inputs:{color:\"rgb(0, 0, 0)\",error:\"rgb(238, 68, 68)\",fill:\"rgb(235, 235, 235)\",placeholderColor:\"rgba(0, 0, 0, 0.5)\"},isMixedBorderRadius:false,layout:\"horizontal\",layoutId:\"eM6AvUjS7\",message:{placeholder:\"Message\",value:\"\"},nameField:{placeholder:\"Name\",value:\"\"},padding:15,paddingBottom:15,paddingLeft:15,paddingPerSide:false,paddingRight:15,paddingTop:15,style:{height:\"100%\",width:\"100%\"},topLeftRadius:8,topRightRadius:8,width:\"100%\",withEmail:true,withMessage:true,withName:true})})})]})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-hTGKN.framer-cck9vb, .framer-hTGKN .framer-cck9vb { display: block; }\",\".framer-hTGKN.framer-ra8kig { align-content: center; align-items: center; background-color: #fafafa; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1440px; }\",\".framer-hTGKN .framer-1ra2zl6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 30px 0px 30px 0px; position: relative; width: 100%; }\",\".framer-hTGKN .framer-1l5f49 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 800px; padding: 0px 20px 0px 20px; position: relative; width: 1px; }\",\".framer-hTGKN .framer-1tcv8yx { 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-hTGKN .framer-1c19a99 { aspect-ratio: 1.7837235228539576 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: var(--framer-aspect-ratio-supported, 426px); position: relative; width: 100%; }\",\".framer-hTGKN .framer-1gvo7zs, .framer-hTGKN .framer-17axpv9, .framer-hTGKN .framer-141f9h0, .framer-hTGKN .framer-tz2ip5, .framer-hTGKN .framer-461heh, .framer-hTGKN .framer-epwe2v, .framer-hTGKN .framer-1wc8pqu, .framer-hTGKN .framer-1n15ae4, .framer-hTGKN .framer-blir0u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-hTGKN .framer-eybcd3, .framer-hTGKN .framer-1r6jvn3, .framer-hTGKN .framer-1pxwmiw, .framer-hTGKN .framer-iaqbin, .framer-hTGKN .framer-15yaldb { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-hTGKN .framer-63rxth { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-hTGKN .framer-1pqwn5n { --border-bottom-width: 2px; --border-color: rgba(0, 0, 0, 0.08); --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: flex-start; align-items: flex-start; background-color: #f4f4f4; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 24px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-hTGKN .framer-vgxq8x { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 12px 0px; position: relative; width: 100%; }\",\".framer-hTGKN .framer-6jt12d, .framer-hTGKN .framer-1tey1nc, .framer-hTGKN .framer-oq9epp, .framer-hTGKN .framer-sa39a9, .framer-hTGKN .framer-yaor9r, .framer-hTGKN .framer-1n7e9re, .framer-hTGKN .framer-rknd05 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-hTGKN .framer-1dwmw0h, .framer-hTGKN .framer-21m1ix, .framer-hTGKN .framer-1vxg4ca, .framer-hTGKN .framer-14x1h69, .framer-hTGKN .framer-1dc7v7e, .framer-hTGKN .framer-1669p9y, .framer-hTGKN .framer-9y2gte, .framer-hTGKN .framer-cwfhiy, .framer-hTGKN .framer-1anfjig, .framer-hTGKN .framer-1sd2mfy, .framer-hTGKN .framer-yjxxvl, .framer-hTGKN .framer-1yqeu0x, .framer-hTGKN .framer-1u9qw4u, .framer-hTGKN .framer-b9w61h, .framer-hTGKN .framer-14cpzxx, .framer-hTGKN .framer-zu74dn, .framer-hTGKN .framer-1htnpea, .framer-hTGKN .framer-k13jav, .framer-hTGKN .framer-1qdbe87 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-hTGKN .framer-p5k01d, .framer-hTGKN .framer-1mh6tab, .framer-hTGKN .framer-1dj3y1s, .framer-hTGKN .framer-1duj20k, .framer-hTGKN .framer-e7o32p, .framer-hTGKN .framer-1rjwhtd, .framer-hTGKN .framer-i07fpk, .framer-hTGKN .framer-10eb2fi, .framer-hTGKN .framer-1rwksvw, .framer-hTGKN .framer-fufw97, .framer-hTGKN .framer-1gr4wuz, .framer-hTGKN .framer-42ojmo, .framer-hTGKN .framer-lesjar, .framer-hTGKN .framer-10k1na7, .framer-hTGKN .framer-x93c9o, .framer-hTGKN .framer-e4yka3, .framer-hTGKN .framer-5bw28m, .framer-hTGKN .framer-1daca5n { --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-hTGKN .framer-n88ovp, .framer-hTGKN .framer-1z028jr, .framer-hTGKN .framer-w9qlie, .framer-hTGKN .framer-j48v3l, .framer-hTGKN .framer-1r2ow4d, .framer-hTGKN .framer-164v0e7 { --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-hTGKN .framer-1sy2ane { --framer-paragraph-spacing: 36px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-hTGKN .framer-1feyfbx, .framer-hTGKN .framer-1av1x5j, .framer-hTGKN .framer-tx5xih, .framer-hTGKN .framer-ufjbuj, .framer-hTGKN .framer-ype73l, .framer-hTGKN .framer-1cn04wb, .framer-hTGKN .framer-19t9iee, .framer-hTGKN .framer-1t7nlq4, .framer-hTGKN .framer-spa1p1, .framer-hTGKN .framer-s7a1yq, .framer-hTGKN .framer-1mnvwk1, .framer-hTGKN .framer-r57xq7, .framer-hTGKN .framer-1jmyeaz, .framer-hTGKN .framer-13xfsd3, .framer-hTGKN .framer-5wskc0, .framer-hTGKN .framer-1gj8nky, .framer-hTGKN .framer-oez73i, .framer-hTGKN .framer-1w5subv, .framer-hTGKN .framer-1ikd7o0, .framer-hTGKN .framer-1ddmu2w, .framer-hTGKN .framer-wgf8n7, .framer-hTGKN .framer-xrow0, .framer-hTGKN .framer-8359ao, .framer-hTGKN .framer-1pght60 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; scroll-margin-top: 80px; width: 100%; }\",\".framer-hTGKN .framer-15q0g3r, .framer-hTGKN .framer-bjtmrh, .framer-hTGKN .framer-1h2q4ot, .framer-hTGKN .framer-1rr8pgn, .framer-hTGKN .framer-y27ns7, .framer-hTGKN .framer-ckikdm, .framer-hTGKN .framer-v49321, .framer-hTGKN .framer-p2dune, .framer-hTGKN .framer-fwri6s, .framer-hTGKN .framer-1603u7k, .framer-hTGKN .framer-8xtbgz, .framer-hTGKN .framer-97g7xw, .framer-hTGKN .framer-6cjvzz, .framer-hTGKN .framer-oidqpw, .framer-hTGKN .framer-1hw8i0o, .framer-hTGKN .framer-1mt3yp4, .framer-hTGKN .framer-mscti2, .framer-hTGKN .framer-hksjqi, .framer-hTGKN .framer-1wtrbkf, .framer-hTGKN .framer-1mp4ls6, .framer-hTGKN .framer-1ypzdco, .framer-hTGKN .framer-1wwguds, .framer-hTGKN .framer-kvgdp2, .framer-hTGKN .framer-cc34su, .framer-hTGKN .framer-3w3pwy, .framer-hTGKN .framer-18tlbs6 { --framer-paragraph-spacing: 36px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-hTGKN .framer-vw62y9, .framer-hTGKN .framer-1wo7fc0, .framer-hTGKN .framer-14inw75, .framer-hTGKN .framer-1wpxrid, .framer-hTGKN .framer-5ai1u6, .framer-hTGKN .framer-jjnbff, .framer-hTGKN .framer-18lqzc9, .framer-hTGKN .framer-12y225u, .framer-hTGKN .framer-2o4sye, .framer-hTGKN .framer-i2f5n8, .framer-hTGKN .framer-92c31q, .framer-hTGKN .framer-11f8r71, .framer-hTGKN .framer-wpk8ec, .framer-hTGKN .framer-11ocu3j, .framer-hTGKN .framer-1kdtjlr, .framer-hTGKN .framer-1kpkr72, .framer-hTGKN .framer-tyo0a7, .framer-hTGKN .framer-ytln4v, .framer-hTGKN .framer-18lzme0, .framer-hTGKN .framer-jgeekf, .framer-hTGKN .framer-a8qcei, .framer-hTGKN .framer-1qfhaez, .framer-hTGKN .framer-cgqr7a, .framer-hTGKN .framer-27nhat { --framer-paragraph-spacing: 24px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-hTGKN .framer-1bl37uj, .framer-hTGKN .framer-1omxbmg { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-hTGKN .framer-nnt2bw-container, .framer-hTGKN .framer-7jm2mr-container { aspect-ratio: 1.5899581589958158 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 478px); position: relative; width: 100%; z-index: 0; }\",\".framer-hTGKN .framer-1glqtf6, .framer-hTGKN .framer-1cc8e61 { align-content: center; align-items: center; border-bottom-left-radius: 11px; border-bottom-right-radius: 11px; border-top-left-radius: 11px; border-top-right-radius: 11px; bottom: 6px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; left: 6px; overflow: hidden; padding: 0px; position: absolute; right: 6px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-hTGKN .framer-jj2clt, .framer-hTGKN .framer-s4tl3q { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 280px; }\",\".framer-hTGKN .framer-1wcijtu { aspect-ratio: 0.6 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 466px); overflow: visible; position: relative; width: 100%; }\",\".framer-hTGKN .framer-3bk1xm, .framer-hTGKN .framer-1d9hvrk { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 30px 0px 24px; position: relative; width: 1px; }\",\".framer-hTGKN .framer-jantf0, .framer-hTGKN .framer-1ofj891 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-text-wrap-override: none; flex: none; height: auto; position: relative; width: 100%; }\",\".framer-hTGKN .framer-18cafg4, .framer-hTGKN .framer-p8pbwe { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 12px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-hTGKN .framer-ulz7m8, .framer-hTGKN .framer-19oblh4 { align-content: center; align-items: center; background-color: #1b7a43; 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: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 14px 22px 14px 22px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-hTGKN .framer-sevafk { aspect-ratio: 0.6 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 467px); overflow: visible; position: relative; width: 100%; }\",\".framer-hTGKN .framer-1x9h8oi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; scroll-margin-top: 80px; width: 100%; }\",\".framer-hTGKN .framer-19g60vx { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: auto; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 320px; z-index: 1; }\",\".framer-hTGKN .framer-15df81r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 2000px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-hTGKN .framer-8zxdsa { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: sticky; top: 60px; width: 100%; z-index: 1; }\",\".framer-hTGKN .framer-hftd61, .framer-hTGKN .framer-1n4ie2h { --border-bottom-width: 1px; --border-color: rgba(34, 34, 34, 0.12); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #f4f4f4; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 16px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-hTGKN .framer-1lv7u12, .framer-hTGKN .framer-1y9y0ev { align-content: center; align-items: center; aspect-ratio: 1 / 1; 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: 10px; height: var(--framer-aspect-ratio-supported, 288px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-hTGKN .framer-1g4e4v4, .framer-hTGKN .framer-1cqdt7g { aspect-ratio: 0.5433962264150943 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 530px); overflow: hidden; position: relative; width: 1px; }\",\".framer-hTGKN .framer-ynsypk, .framer-hTGKN .framer-68yed6, .framer-hTGKN .framer-1vec5wc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-hTGKN .framer-18gec80, .framer-hTGKN .framer-zvrsze, .framer-hTGKN .framer-1b281gq, .framer-hTGKN .framer-o75lf6, .framer-hTGKN .framer-7dwabb, .framer-hTGKN .framer-18dd7ga, .framer-hTGKN .framer-1rhtkjc, .framer-hTGKN .framer-cbwdj, .framer-hTGKN .framer-1jv1nr { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-hTGKN .framer-1icu5vw, .framer-hTGKN .framer-108ldqs, .framer-hTGKN .framer-1aswlus { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-hTGKN .framer-1lla039, .framer-hTGKN .framer-1ott64b { align-content: center; align-items: center; background-color: #451297; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 12px 24px 12px 24px; position: relative; text-decoration: none; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-hTGKN .framer-19pkkyc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: sticky; top: 60px; width: 320px; z-index: 1; }\",\".framer-hTGKN .framer-ymvujn { --border-bottom-width: 1px; --border-color: rgba(34, 34, 34, 0.12); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #f4f4f4; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 16px; position: relative; width: 320px; will-change: var(--framer-will-change-override, transform); }\",\".framer-hTGKN .framer-jmv9ut { aspect-ratio: 1 / 1; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: var(--framer-aspect-ratio-supported, 288px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-hTGKN .framer-1508870 { align-content: center; align-items: center; background-color: #451297; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; cursor: pointer; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 12px 24px 12px 24px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-hTGKN.framer-1m87n0d { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 2; }\",\".framer-hTGKN.framer-cqlzep-container { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); position: fixed; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 2; }\",\".framer-hTGKN .framer-ggzmyw { align-content: center; align-items: center; background-color: #fbfcfd; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 50px 0px 30px 0px; position: relative; width: 100%; }\",\".framer-hTGKN .framer-123csry-container { aspect-ratio: 1.5 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 800px); position: relative; width: 1200px; }\",\".framer-hTGKN .framer-1i1et92 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 122px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-hTGKN .framer-1958a5p { 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; max-width: 1200px; padding: 0px; position: relative; width: 100%; }\",\".framer-hTGKN .framer-14sic9h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-hTGKN .framer-1ttfq5 { aspect-ratio: 1.7518248175182483 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 331px); position: relative; width: 1px; }\",\".framer-hTGKN .framer-1jwqzss { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; min-width: 200px; padding: 0px; position: relative; width: 1px; }\",\".framer-hTGKN .framer-e7t7yi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 900px; overflow: hidden; padding: 60px; position: relative; width: 100%; }\",\".framer-hTGKN .framer-ekq5oe-container { flex: none; height: 251px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-hTGKN.framer-ra8kig, .framer-hTGKN .framer-1ra2zl6, .framer-hTGKN .framer-1l5f49, .framer-hTGKN .framer-1tcv8yx, .framer-hTGKN .framer-1gvo7zs, .framer-hTGKN .framer-63rxth, .framer-hTGKN .framer-1pqwn5n, .framer-hTGKN .framer-vgxq8x, .framer-hTGKN .framer-1dwmw0h, .framer-hTGKN .framer-21m1ix, .framer-hTGKN .framer-17axpv9, .framer-hTGKN .framer-141f9h0, .framer-hTGKN .framer-tz2ip5, .framer-hTGKN .framer-1vxg4ca, .framer-hTGKN .framer-14x1h69, .framer-hTGKN .framer-461heh, .framer-hTGKN .framer-epwe2v, .framer-hTGKN .framer-1dc7v7e, .framer-hTGKN .framer-1669p9y, .framer-hTGKN .framer-9y2gte, .framer-hTGKN .framer-cwfhiy, .framer-hTGKN .framer-1anfjig, .framer-hTGKN .framer-1sd2mfy, .framer-hTGKN .framer-yjxxvl, .framer-hTGKN .framer-1yqeu0x, .framer-hTGKN .framer-1u9qw4u, .framer-hTGKN .framer-b9w61h, .framer-hTGKN .framer-14cpzxx, .framer-hTGKN .framer-zu74dn, .framer-hTGKN .framer-1htnpea, .framer-hTGKN .framer-k13jav, .framer-hTGKN .framer-1qdbe87, .framer-hTGKN .framer-1feyfbx, .framer-hTGKN .framer-1av1x5j, .framer-hTGKN .framer-1bl37uj, .framer-hTGKN .framer-1glqtf6, .framer-hTGKN .framer-jj2clt, .framer-hTGKN .framer-3bk1xm, .framer-hTGKN .framer-1wc8pqu, .framer-hTGKN .framer-ulz7m8, .framer-hTGKN .framer-tx5xih, .framer-hTGKN .framer-ufjbuj, .framer-hTGKN .framer-ype73l, .framer-hTGKN .framer-1cn04wb, .framer-hTGKN .framer-1omxbmg, .framer-hTGKN .framer-1cc8e61, .framer-hTGKN .framer-s4tl3q, .framer-hTGKN .framer-1d9hvrk, .framer-hTGKN .framer-1n15ae4, .framer-hTGKN .framer-19oblh4, .framer-hTGKN .framer-19t9iee, .framer-hTGKN .framer-1t7nlq4, .framer-hTGKN .framer-spa1p1, .framer-hTGKN .framer-s7a1yq, .framer-hTGKN .framer-1mnvwk1, .framer-hTGKN .framer-r57xq7, .framer-hTGKN .framer-1jmyeaz, .framer-hTGKN .framer-13xfsd3, .framer-hTGKN .framer-5wskc0, .framer-hTGKN .framer-1gj8nky, .framer-hTGKN .framer-oez73i, .framer-hTGKN .framer-1w5subv, .framer-hTGKN .framer-1ikd7o0, .framer-hTGKN .framer-1ddmu2w, .framer-hTGKN .framer-wgf8n7, .framer-hTGKN .framer-xrow0, .framer-hTGKN .framer-8359ao, .framer-hTGKN .framer-1pght60, .framer-hTGKN .framer-1x9h8oi, .framer-hTGKN .framer-19g60vx, .framer-hTGKN .framer-15df81r, .framer-hTGKN .framer-8zxdsa, .framer-hTGKN .framer-hftd61, .framer-hTGKN .framer-1lv7u12, .framer-hTGKN .framer-ynsypk, .framer-hTGKN .framer-1icu5vw, .framer-hTGKN .framer-1lla039, .framer-hTGKN .framer-1n4ie2h, .framer-hTGKN .framer-1y9y0ev, .framer-hTGKN .framer-68yed6, .framer-hTGKN .framer-108ldqs, .framer-hTGKN .framer-1ott64b, .framer-hTGKN .framer-19pkkyc, .framer-hTGKN .framer-ymvujn, .framer-hTGKN .framer-1vec5wc, .framer-hTGKN .framer-1aswlus, .framer-hTGKN .framer-1508870, .framer-hTGKN .framer-ggzmyw, .framer-hTGKN .framer-1i1et92, .framer-hTGKN .framer-1958a5p, .framer-hTGKN .framer-14sic9h, .framer-hTGKN .framer-1jwqzss, .framer-hTGKN .framer-e7t7yi, .framer-hTGKN .framer-blir0u { gap: 0px; } .framer-hTGKN.framer-ra8kig > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-hTGKN.framer-ra8kig > :first-child, .framer-hTGKN .framer-1l5f49 > :first-child, .framer-hTGKN .framer-1tcv8yx > :first-child, .framer-hTGKN .framer-1gvo7zs > :first-child, .framer-hTGKN .framer-63rxth > :first-child, .framer-hTGKN .framer-1pqwn5n > :first-child, .framer-hTGKN .framer-17axpv9 > :first-child, .framer-hTGKN .framer-141f9h0 > :first-child, .framer-hTGKN .framer-tz2ip5 > :first-child, .framer-hTGKN .framer-461heh > :first-child, .framer-hTGKN .framer-epwe2v > :first-child, .framer-hTGKN .framer-1feyfbx > :first-child, .framer-hTGKN .framer-1av1x5j > :first-child, .framer-hTGKN .framer-1bl37uj > :first-child, .framer-hTGKN .framer-jj2clt > :first-child, .framer-hTGKN .framer-3bk1xm > :first-child, .framer-hTGKN .framer-1wc8pqu > :first-child, .framer-hTGKN .framer-tx5xih > :first-child, .framer-hTGKN .framer-ufjbuj > :first-child, .framer-hTGKN .framer-ype73l > :first-child, .framer-hTGKN .framer-1cn04wb > :first-child, .framer-hTGKN .framer-1omxbmg > :first-child, .framer-hTGKN .framer-s4tl3q > :first-child, .framer-hTGKN .framer-1d9hvrk > :first-child, .framer-hTGKN .framer-1n15ae4 > :first-child, .framer-hTGKN .framer-19t9iee > :first-child, .framer-hTGKN .framer-1t7nlq4 > :first-child, .framer-hTGKN .framer-spa1p1 > :first-child, .framer-hTGKN .framer-s7a1yq > :first-child, .framer-hTGKN .framer-1mnvwk1 > :first-child, .framer-hTGKN .framer-r57xq7 > :first-child, .framer-hTGKN .framer-1jmyeaz > :first-child, .framer-hTGKN .framer-13xfsd3 > :first-child, .framer-hTGKN .framer-5wskc0 > :first-child, .framer-hTGKN .framer-1gj8nky > :first-child, .framer-hTGKN .framer-oez73i > :first-child, .framer-hTGKN .framer-1w5subv > :first-child, .framer-hTGKN .framer-1ikd7o0 > :first-child, .framer-hTGKN .framer-1ddmu2w > :first-child, .framer-hTGKN .framer-wgf8n7 > :first-child, .framer-hTGKN .framer-xrow0 > :first-child, .framer-hTGKN .framer-8359ao > :first-child, .framer-hTGKN .framer-1pght60 > :first-child, .framer-hTGKN .framer-1x9h8oi > :first-child, .framer-hTGKN .framer-19g60vx > :first-child, .framer-hTGKN .framer-15df81r > :first-child, .framer-hTGKN .framer-8zxdsa > :first-child, .framer-hTGKN .framer-hftd61 > :first-child, .framer-hTGKN .framer-ynsypk > :first-child, .framer-hTGKN .framer-1n4ie2h > :first-child, .framer-hTGKN .framer-68yed6 > :first-child, .framer-hTGKN .framer-19pkkyc > :first-child, .framer-hTGKN .framer-ymvujn > :first-child, .framer-hTGKN .framer-1vec5wc > :first-child, .framer-hTGKN .framer-ggzmyw > :first-child, .framer-hTGKN .framer-1958a5p > :first-child, .framer-hTGKN .framer-1jwqzss > :first-child, .framer-hTGKN .framer-e7t7yi > :first-child, .framer-hTGKN .framer-blir0u > :first-child { margin-top: 0px; } .framer-hTGKN.framer-ra8kig > :last-child, .framer-hTGKN .framer-1l5f49 > :last-child, .framer-hTGKN .framer-1tcv8yx > :last-child, .framer-hTGKN .framer-1gvo7zs > :last-child, .framer-hTGKN .framer-63rxth > :last-child, .framer-hTGKN .framer-1pqwn5n > :last-child, .framer-hTGKN .framer-17axpv9 > :last-child, .framer-hTGKN .framer-141f9h0 > :last-child, .framer-hTGKN .framer-tz2ip5 > :last-child, .framer-hTGKN .framer-461heh > :last-child, .framer-hTGKN .framer-epwe2v > :last-child, .framer-hTGKN .framer-1feyfbx > :last-child, .framer-hTGKN .framer-1av1x5j > :last-child, .framer-hTGKN .framer-1bl37uj > :last-child, .framer-hTGKN .framer-jj2clt > :last-child, .framer-hTGKN .framer-3bk1xm > :last-child, .framer-hTGKN .framer-1wc8pqu > :last-child, .framer-hTGKN .framer-tx5xih > :last-child, .framer-hTGKN .framer-ufjbuj > :last-child, .framer-hTGKN .framer-ype73l > :last-child, .framer-hTGKN .framer-1cn04wb > :last-child, .framer-hTGKN .framer-1omxbmg > :last-child, .framer-hTGKN .framer-s4tl3q > :last-child, .framer-hTGKN .framer-1d9hvrk > :last-child, .framer-hTGKN .framer-1n15ae4 > :last-child, .framer-hTGKN .framer-19t9iee > :last-child, .framer-hTGKN .framer-1t7nlq4 > :last-child, .framer-hTGKN .framer-spa1p1 > :last-child, .framer-hTGKN .framer-s7a1yq > :last-child, .framer-hTGKN .framer-1mnvwk1 > :last-child, .framer-hTGKN .framer-r57xq7 > :last-child, .framer-hTGKN .framer-1jmyeaz > :last-child, .framer-hTGKN .framer-13xfsd3 > :last-child, .framer-hTGKN .framer-5wskc0 > :last-child, .framer-hTGKN .framer-1gj8nky > :last-child, .framer-hTGKN .framer-oez73i > :last-child, .framer-hTGKN .framer-1w5subv > :last-child, .framer-hTGKN .framer-1ikd7o0 > :last-child, .framer-hTGKN .framer-1ddmu2w > :last-child, .framer-hTGKN .framer-wgf8n7 > :last-child, .framer-hTGKN .framer-xrow0 > :last-child, .framer-hTGKN .framer-8359ao > :last-child, .framer-hTGKN .framer-1pght60 > :last-child, .framer-hTGKN .framer-1x9h8oi > :last-child, .framer-hTGKN .framer-19g60vx > :last-child, .framer-hTGKN .framer-15df81r > :last-child, .framer-hTGKN .framer-8zxdsa > :last-child, .framer-hTGKN .framer-hftd61 > :last-child, .framer-hTGKN .framer-ynsypk > :last-child, .framer-hTGKN .framer-1n4ie2h > :last-child, .framer-hTGKN .framer-68yed6 > :last-child, .framer-hTGKN .framer-19pkkyc > :last-child, .framer-hTGKN .framer-ymvujn > :last-child, .framer-hTGKN .framer-1vec5wc > :last-child, .framer-hTGKN .framer-ggzmyw > :last-child, .framer-hTGKN .framer-1958a5p > :last-child, .framer-hTGKN .framer-1jwqzss > :last-child, .framer-hTGKN .framer-e7t7yi > :last-child, .framer-hTGKN .framer-blir0u > :last-child { margin-bottom: 0px; } .framer-hTGKN .framer-1ra2zl6 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-hTGKN .framer-1ra2zl6 > :first-child, .framer-hTGKN .framer-vgxq8x > :first-child, .framer-hTGKN .framer-1dwmw0h > :first-child, .framer-hTGKN .framer-21m1ix > :first-child, .framer-hTGKN .framer-1vxg4ca > :first-child, .framer-hTGKN .framer-14x1h69 > :first-child, .framer-hTGKN .framer-1dc7v7e > :first-child, .framer-hTGKN .framer-1669p9y > :first-child, .framer-hTGKN .framer-9y2gte > :first-child, .framer-hTGKN .framer-cwfhiy > :first-child, .framer-hTGKN .framer-1anfjig > :first-child, .framer-hTGKN .framer-1sd2mfy > :first-child, .framer-hTGKN .framer-yjxxvl > :first-child, .framer-hTGKN .framer-1yqeu0x > :first-child, .framer-hTGKN .framer-1u9qw4u > :first-child, .framer-hTGKN .framer-b9w61h > :first-child, .framer-hTGKN .framer-14cpzxx > :first-child, .framer-hTGKN .framer-zu74dn > :first-child, .framer-hTGKN .framer-1htnpea > :first-child, .framer-hTGKN .framer-k13jav > :first-child, .framer-hTGKN .framer-1qdbe87 > :first-child, .framer-hTGKN .framer-1glqtf6 > :first-child, .framer-hTGKN .framer-ulz7m8 > :first-child, .framer-hTGKN .framer-1cc8e61 > :first-child, .framer-hTGKN .framer-19oblh4 > :first-child, .framer-hTGKN .framer-1lv7u12 > :first-child, .framer-hTGKN .framer-1icu5vw > :first-child, .framer-hTGKN .framer-1lla039 > :first-child, .framer-hTGKN .framer-1y9y0ev > :first-child, .framer-hTGKN .framer-108ldqs > :first-child, .framer-hTGKN .framer-1ott64b > :first-child, .framer-hTGKN .framer-1aswlus > :first-child, .framer-hTGKN .framer-1508870 > :first-child, .framer-hTGKN .framer-1i1et92 > :first-child, .framer-hTGKN .framer-14sic9h > :first-child { margin-left: 0px; } .framer-hTGKN .framer-1ra2zl6 > :last-child, .framer-hTGKN .framer-vgxq8x > :last-child, .framer-hTGKN .framer-1dwmw0h > :last-child, .framer-hTGKN .framer-21m1ix > :last-child, .framer-hTGKN .framer-1vxg4ca > :last-child, .framer-hTGKN .framer-14x1h69 > :last-child, .framer-hTGKN .framer-1dc7v7e > :last-child, .framer-hTGKN .framer-1669p9y > :last-child, .framer-hTGKN .framer-9y2gte > :last-child, .framer-hTGKN .framer-cwfhiy > :last-child, .framer-hTGKN .framer-1anfjig > :last-child, .framer-hTGKN .framer-1sd2mfy > :last-child, .framer-hTGKN .framer-yjxxvl > :last-child, .framer-hTGKN .framer-1yqeu0x > :last-child, .framer-hTGKN .framer-1u9qw4u > :last-child, .framer-hTGKN .framer-b9w61h > :last-child, .framer-hTGKN .framer-14cpzxx > :last-child, .framer-hTGKN .framer-zu74dn > :last-child, .framer-hTGKN .framer-1htnpea > :last-child, .framer-hTGKN .framer-k13jav > :last-child, .framer-hTGKN .framer-1qdbe87 > :last-child, .framer-hTGKN .framer-1glqtf6 > :last-child, .framer-hTGKN .framer-ulz7m8 > :last-child, .framer-hTGKN .framer-1cc8e61 > :last-child, .framer-hTGKN .framer-19oblh4 > :last-child, .framer-hTGKN .framer-1lv7u12 > :last-child, .framer-hTGKN .framer-1icu5vw > :last-child, .framer-hTGKN .framer-1lla039 > :last-child, .framer-hTGKN .framer-1y9y0ev > :last-child, .framer-hTGKN .framer-108ldqs > :last-child, .framer-hTGKN .framer-1ott64b > :last-child, .framer-hTGKN .framer-1aswlus > :last-child, .framer-hTGKN .framer-1508870 > :last-child, .framer-hTGKN .framer-1i1et92 > :last-child, .framer-hTGKN .framer-14sic9h > :last-child { margin-right: 0px; } .framer-hTGKN .framer-1l5f49 > *, .framer-hTGKN .framer-1tcv8yx > *, .framer-hTGKN .framer-19g60vx > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-hTGKN .framer-1gvo7zs > *, .framer-hTGKN .framer-63rxth > *, .framer-hTGKN .framer-17axpv9 > *, .framer-hTGKN .framer-141f9h0 > *, .framer-hTGKN .framer-tz2ip5 > *, .framer-hTGKN .framer-461heh > *, .framer-hTGKN .framer-epwe2v > *, .framer-hTGKN .framer-1feyfbx > *, .framer-hTGKN .framer-1av1x5j > *, .framer-hTGKN .framer-jj2clt > *, .framer-hTGKN .framer-1wc8pqu > *, .framer-hTGKN .framer-tx5xih > *, .framer-hTGKN .framer-ufjbuj > *, .framer-hTGKN .framer-ype73l > *, .framer-hTGKN .framer-1cn04wb > *, .framer-hTGKN .framer-s4tl3q > *, .framer-hTGKN .framer-1n15ae4 > *, .framer-hTGKN .framer-19t9iee > *, .framer-hTGKN .framer-1t7nlq4 > *, .framer-hTGKN .framer-spa1p1 > *, .framer-hTGKN .framer-s7a1yq > *, .framer-hTGKN .framer-1mnvwk1 > *, .framer-hTGKN .framer-r57xq7 > *, .framer-hTGKN .framer-1jmyeaz > *, .framer-hTGKN .framer-13xfsd3 > *, .framer-hTGKN .framer-5wskc0 > *, .framer-hTGKN .framer-1gj8nky > *, .framer-hTGKN .framer-oez73i > *, .framer-hTGKN .framer-1w5subv > *, .framer-hTGKN .framer-1ikd7o0 > *, .framer-hTGKN .framer-1ddmu2w > *, .framer-hTGKN .framer-wgf8n7 > *, .framer-hTGKN .framer-xrow0 > *, .framer-hTGKN .framer-8359ao > *, .framer-hTGKN .framer-1pght60 > *, .framer-hTGKN .framer-1x9h8oi > *, .framer-hTGKN .framer-15df81r > *, .framer-hTGKN .framer-8zxdsa > *, .framer-hTGKN .framer-19pkkyc > *, .framer-hTGKN .framer-1jwqzss > *, .framer-hTGKN .framer-e7t7yi > *, .framer-hTGKN .framer-blir0u > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-hTGKN .framer-1pqwn5n > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-hTGKN .framer-vgxq8x > *, .framer-hTGKN .framer-1dwmw0h > *, .framer-hTGKN .framer-21m1ix > *, .framer-hTGKN .framer-1vxg4ca > *, .framer-hTGKN .framer-14x1h69 > *, .framer-hTGKN .framer-1dc7v7e > *, .framer-hTGKN .framer-1669p9y > *, .framer-hTGKN .framer-9y2gte > *, .framer-hTGKN .framer-cwfhiy > *, .framer-hTGKN .framer-1anfjig > *, .framer-hTGKN .framer-1sd2mfy > *, .framer-hTGKN .framer-yjxxvl > *, .framer-hTGKN .framer-1yqeu0x > *, .framer-hTGKN .framer-1u9qw4u > *, .framer-hTGKN .framer-b9w61h > *, .framer-hTGKN .framer-14cpzxx > *, .framer-hTGKN .framer-zu74dn > *, .framer-hTGKN .framer-1htnpea > *, .framer-hTGKN .framer-k13jav > *, .framer-hTGKN .framer-1qdbe87 > *, .framer-hTGKN .framer-ulz7m8 > *, .framer-hTGKN .framer-19oblh4 > *, .framer-hTGKN .framer-1lv7u12 > *, .framer-hTGKN .framer-1lla039 > *, .framer-hTGKN .framer-1y9y0ev > *, .framer-hTGKN .framer-1ott64b > *, .framer-hTGKN .framer-1508870 > *, .framer-hTGKN .framer-1i1et92 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-hTGKN .framer-1bl37uj > *, .framer-hTGKN .framer-1omxbmg > *, .framer-hTGKN .framer-ggzmyw > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-hTGKN .framer-1glqtf6 > *, .framer-hTGKN .framer-1cc8e61 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-hTGKN .framer-3bk1xm > *, .framer-hTGKN .framer-1d9hvrk > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-hTGKN .framer-hftd61 > *, .framer-hTGKN .framer-1n4ie2h > *, .framer-hTGKN .framer-ymvujn > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-hTGKN .framer-ynsypk > *, .framer-hTGKN .framer-68yed6 > *, .framer-hTGKN .framer-1vec5wc > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-hTGKN .framer-1icu5vw > *, .framer-hTGKN .framer-108ldqs > *, .framer-hTGKN .framer-1aswlus > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-hTGKN .framer-1958a5p > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-hTGKN .framer-14sic9h > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,...sharedStyle11.css,...sharedStyle12.css,...sharedStyle13.css,...sharedStyle14.css,...sharedStyle15.css,...sharedStyle16.css,...sharedStyle17.css,...sharedStyle18.css,...sharedStyle19.css,...sharedStyle20.css,'.framer-hTGKN[data-border=\"true\"]::after, .framer-hTGKN [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 (max-width: 1199px) { .framer-hTGKN.framer-ra8kig { gap: 30px; width: 450px; } .framer-hTGKN .framer-1ra2zl6 { flex-direction: column; } .framer-hTGKN .framer-1l5f49 { flex: none; gap: 25px; order: 0; width: 100%; } .framer-hTGKN .framer-1tcv8yx { gap: 6px; } .framer-hTGKN .framer-1c19a99 { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; height: var(--framer-aspect-ratio-supported, 112px); } .framer-hTGKN .framer-nnt2bw-container, .framer-hTGKN .framer-7jm2mr-container { aspect-ratio: unset; bottom: 0px; height: unset; left: 0px; order: 1; position: absolute; right: 0px; top: 0px; width: unset; } .framer-hTGKN .framer-1glqtf6, .framer-hTGKN .framer-1cc8e61 { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; bottom: unset; flex-direction: column; left: unset; order: 0; padding: 6px; position: relative; right: unset; width: 100%; } .framer-hTGKN .framer-jj2clt, .framer-hTGKN .framer-s4tl3q { align-self: unset; border-top-left-radius: 10px; border-top-right-radius: 10px; height: min-content; width: 100%; will-change: var(--framer-will-change-override, transform); } .framer-hTGKN .framer-1wcijtu, .framer-hTGKN .framer-sevafk { aspect-ratio: unset; height: 330px; } .framer-hTGKN .framer-3bk1xm, .framer-hTGKN .framer-1d9hvrk { flex: none; padding: 24px; width: 100%; } .framer-hTGKN .framer-ulz7m8, .framer-hTGKN .framer-19oblh4, .framer-hTGKN .framer-ymvujn { width: 100%; } .framer-hTGKN .framer-19g60vx { align-self: unset; height: min-content; order: 1; padding: 16px; width: 100%; } .framer-hTGKN .framer-15df81r, .framer-hTGKN .framer-1i1et92 { height: min-content; } .framer-hTGKN .framer-8zxdsa { gap: 16px; position: relative; top: unset; } .framer-hTGKN .framer-1lv7u12, .framer-hTGKN .framer-1y9y0ev, .framer-hTGKN .framer-jmv9ut { height: var(--framer-aspect-ratio-supported, 200px); } .framer-hTGKN .framer-1g4e4v4, .framer-hTGKN .framer-1cqdt7g { height: var(--framer-aspect-ratio-supported, 368px); } .framer-hTGKN .framer-18gec80, .framer-hTGKN .framer-1b281gq { white-space: pre; } .framer-hTGKN .framer-19pkkyc { position: relative; top: unset; width: 100%; } .framer-hTGKN .framer-ggzmyw { gap: 20px; } .framer-hTGKN .framer-123csry-container { aspect-ratio: unset; height: 1145px; width: 100%; } .framer-hTGKN .framer-1958a5p { max-width: unset; padding: 20px; } .framer-hTGKN .framer-14sic9h { background-color: #f5f5f5; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; 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.16), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.06); flex-direction: column; gap: 8px; } .framer-hTGKN .framer-1ttfq5 { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: var(--framer-aspect-ratio-supported, 114px); width: 100%; } .framer-hTGKN .framer-1jwqzss { flex: none; padding: 20px; width: 100%; } .framer-hTGKN .framer-e7t7yi { padding: 0px; } .framer-hTGKN .framer-blir0u { padding: 60px 20px 60px 20px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-hTGKN.framer-ra8kig, .framer-hTGKN .framer-1ra2zl6, .framer-hTGKN .framer-1l5f49, .framer-hTGKN .framer-1tcv8yx, .framer-hTGKN .framer-1glqtf6, .framer-hTGKN .framer-1cc8e61, .framer-hTGKN .framer-8zxdsa, .framer-hTGKN .framer-ggzmyw, .framer-hTGKN .framer-14sic9h { gap: 0px; } .framer-hTGKN.framer-ra8kig > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-hTGKN.framer-ra8kig > :first-child, .framer-hTGKN .framer-1ra2zl6 > :first-child, .framer-hTGKN .framer-1l5f49 > :first-child, .framer-hTGKN .framer-1tcv8yx > :first-child, .framer-hTGKN .framer-1glqtf6 > :first-child, .framer-hTGKN .framer-1cc8e61 > :first-child, .framer-hTGKN .framer-8zxdsa > :first-child, .framer-hTGKN .framer-ggzmyw > :first-child, .framer-hTGKN .framer-14sic9h > :first-child { margin-top: 0px; } .framer-hTGKN.framer-ra8kig > :last-child, .framer-hTGKN .framer-1ra2zl6 > :last-child, .framer-hTGKN .framer-1l5f49 > :last-child, .framer-hTGKN .framer-1tcv8yx > :last-child, .framer-hTGKN .framer-1glqtf6 > :last-child, .framer-hTGKN .framer-1cc8e61 > :last-child, .framer-hTGKN .framer-8zxdsa > :last-child, .framer-hTGKN .framer-ggzmyw > :last-child, .framer-hTGKN .framer-14sic9h > :last-child { margin-bottom: 0px; } .framer-hTGKN .framer-1ra2zl6 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-hTGKN .framer-1l5f49 > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-hTGKN .framer-1tcv8yx > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-hTGKN .framer-1glqtf6 > *, .framer-hTGKN .framer-1cc8e61 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-hTGKN .framer-8zxdsa > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-hTGKN .framer-ggzmyw > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-hTGKN .framer-14sic9h > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }}\",\"@media (min-width: 1200px) and (max-width: 1439px) { .framer-hTGKN.framer-ra8kig { width: 1200px; } .framer-hTGKN .framer-1l5f49 { gap: 18px; max-width: 700px; } .framer-hTGKN .framer-1c19a99 { height: var(--framer-aspect-ratio-supported, 370px); } .framer-hTGKN .framer-15q0g3r { order: 0; } .framer-hTGKN .framer-bjtmrh { order: 1; } .framer-hTGKN .framer-nnt2bw-container, .framer-hTGKN .framer-7jm2mr-container { aspect-ratio: 1.6751269035532994 / 1; height: var(--framer-aspect-ratio-supported, 394px); } .framer-hTGKN .framer-1glqtf6, .framer-hTGKN .framer-1cc8e61 { height: 383px; right: unset; width: 648px; } .framer-hTGKN .framer-jj2clt, .framer-hTGKN .framer-s4tl3q { align-self: unset; height: 100%; width: 250px; } .framer-hTGKN .framer-1wcijtu, .framer-hTGKN .framer-sevafk { aspect-ratio: unset; flex: 1 0 0px; height: 1px; } .framer-hTGKN .framer-3bk1xm, .framer-hTGKN .framer-1d9hvrk { padding: 0px 24px 0px 24px; } .framer-hTGKN .framer-ulz7m8, .framer-hTGKN .framer-19oblh4 { padding: 12px 20px 12px 20px; } .framer-hTGKN .framer-ggzmyw { height: 900px; } .framer-hTGKN .framer-1958a5p { max-width: 1102px; } .framer-hTGKN .framer-1ttfq5 { height: var(--framer-aspect-ratio-supported, 303px); } .framer-hTGKN .framer-e7t7yi { max-width: 700px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-hTGKN .framer-1l5f49 { gap: 0px; } .framer-hTGKN .framer-1l5f49 > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-hTGKN .framer-1l5f49 > :first-child { margin-top: 0px; } .framer-hTGKN .framer-1l5f49 > :last-child { margin-bottom: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 16733\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"vtn9bkNeF\":{\"layout\":[\"fixed\",\"auto\"]},\"vKoL52zFv\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"lL7cehj0s\":{\"pattern\":\":lL7cehj0s\",\"name\":\"1\"},\"Hz0GmnVHi\":{\"pattern\":\":Hz0GmnVHi\",\"name\":\"2\"},\"GnIytdJvA\":{\"pattern\":\":GnIytdJvA\",\"name\":\"3\"},\"lxapBZMDC\":{\"pattern\":\":lxapBZMDC\",\"name\":\"4\"},\"zUnBhzmse\":{\"pattern\":\":zUnBhzmse\",\"name\":\"5\"},\"Aosg8GeVO\":{\"pattern\":\":Aosg8GeVO\",\"name\":\"6\"},\"SuGLlbO2O\":{\"pattern\":\":SuGLlbO2O\",\"name\":\"7\"},\"dbMYNWrGv\":{\"pattern\":\":dbMYNWrGv\",\"name\":\"8\"},\"e99NvPdqY\":{\"pattern\":\":e99NvPdqY\",\"name\":\"9\"},\"E1rLzVAqL\":{\"pattern\":\":E1rLzVAqL\",\"name\":\"10\"},\"mCEkyqEFW\":{\"pattern\":\":mCEkyqEFW\",\"name\":\"11\"},\"z7s9qih9q\":{\"pattern\":\":z7s9qih9q\",\"name\":\"12\"},\"b2qgBBDpO\":{\"pattern\":\":b2qgBBDpO\",\"name\":\"13\"},\"ZRRl_H4K4\":{\"pattern\":\":ZRRl_H4K4\",\"name\":\"14\"},\"lOOCB0BfB\":{\"pattern\":\":lOOCB0BfB\",\"name\":\"15\"},\"E1sTQnqSA\":{\"pattern\":\":E1sTQnqSA\",\"name\":\"16\"},\"EOkCxNBDi\":{\"pattern\":\":EOkCxNBDi\",\"name\":\"17\"},\"hm28EX0O6\":{\"pattern\":\":hm28EX0O6\",\"name\":\"18\"},\"kmCSOT5sd\":{\"pattern\":\":kmCSOT5sd\",\"name\":\"19\"},\"Nw6te_Hi6\":{\"pattern\":\":Nw6te_Hi6\",\"name\":\"20\"},\"w5s5TtHH4\":{\"pattern\":\":w5s5TtHH4\",\"name\":\"21\"},\"NQQ2LJjJu\":{\"pattern\":\":NQQ2LJjJu\",\"name\":\"22\"},\"jBVXVJbDw\":{\"pattern\":\":jBVXVJbDw\",\"name\":\"23\"},\"AmkzxlRbh\":{\"pattern\":\":AmkzxlRbh\",\"name\":\"24\"},\"xhvjdC5yM\":{\"pattern\":\":xhvjdC5yM\",\"name\":\"25\"}}\n * @framerResponsiveScreen\n */const FramerSvCgENg1G=withCSS(Component,css,\"framer-hTGKN\");export default FramerSvCgENg1G;FramerSvCgENg1G.displayName=\"Page\";FramerSvCgENg1G.defaultProps={height:16733,width:1440};addFonts(FramerSvCgENg1G,[{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:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiEyp8kv8JHgFVrFJXUc1NECPY.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\"},{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:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLCz7V15vFP-KUEg.woff2\",weight:\"700\"},{family:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4e6yC4S-EiAou6Y.woff2\",weight:\"600\"}]},...AnimatedGradientBorderFonts,...EmbedFonts,...CalendlyFonts,...FormSparkFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts),...getFontsFromSharedStyle(sharedStyle11.fonts),...getFontsFromSharedStyle(sharedStyle12.fonts),...getFontsFromSharedStyle(sharedStyle13.fonts),...getFontsFromSharedStyle(sharedStyle14.fonts),...getFontsFromSharedStyle(sharedStyle15.fonts),...getFontsFromSharedStyle(sharedStyle16.fonts),...getFontsFromSharedStyle(sharedStyle17.fonts),...getFontsFromSharedStyle(sharedStyle18.fonts),...getFontsFromSharedStyle(sharedStyle19.fonts),...getFontsFromSharedStyle(sharedStyle20.fonts),...componentPresets.fonts?.[\"jmmNeJQSi\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"jmmNeJQSi\"]):[],...componentPresets.fonts?.[\"agc8HmdW4\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"agc8HmdW4\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerSvCgENg1G\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerScrollSections\":\"{\\\"lL7cehj0s\\\":{\\\"pattern\\\":\\\":lL7cehj0s\\\",\\\"name\\\":\\\"1\\\"},\\\"Hz0GmnVHi\\\":{\\\"pattern\\\":\\\":Hz0GmnVHi\\\",\\\"name\\\":\\\"2\\\"},\\\"GnIytdJvA\\\":{\\\"pattern\\\":\\\":GnIytdJvA\\\",\\\"name\\\":\\\"3\\\"},\\\"lxapBZMDC\\\":{\\\"pattern\\\":\\\":lxapBZMDC\\\",\\\"name\\\":\\\"4\\\"},\\\"zUnBhzmse\\\":{\\\"pattern\\\":\\\":zUnBhzmse\\\",\\\"name\\\":\\\"5\\\"},\\\"Aosg8GeVO\\\":{\\\"pattern\\\":\\\":Aosg8GeVO\\\",\\\"name\\\":\\\"6\\\"},\\\"SuGLlbO2O\\\":{\\\"pattern\\\":\\\":SuGLlbO2O\\\",\\\"name\\\":\\\"7\\\"},\\\"dbMYNWrGv\\\":{\\\"pattern\\\":\\\":dbMYNWrGv\\\",\\\"name\\\":\\\"8\\\"},\\\"e99NvPdqY\\\":{\\\"pattern\\\":\\\":e99NvPdqY\\\",\\\"name\\\":\\\"9\\\"},\\\"E1rLzVAqL\\\":{\\\"pattern\\\":\\\":E1rLzVAqL\\\",\\\"name\\\":\\\"10\\\"},\\\"mCEkyqEFW\\\":{\\\"pattern\\\":\\\":mCEkyqEFW\\\",\\\"name\\\":\\\"11\\\"},\\\"z7s9qih9q\\\":{\\\"pattern\\\":\\\":z7s9qih9q\\\",\\\"name\\\":\\\"12\\\"},\\\"b2qgBBDpO\\\":{\\\"pattern\\\":\\\":b2qgBBDpO\\\",\\\"name\\\":\\\"13\\\"},\\\"ZRRl_H4K4\\\":{\\\"pattern\\\":\\\":ZRRl_H4K4\\\",\\\"name\\\":\\\"14\\\"},\\\"lOOCB0BfB\\\":{\\\"pattern\\\":\\\":lOOCB0BfB\\\",\\\"name\\\":\\\"15\\\"},\\\"E1sTQnqSA\\\":{\\\"pattern\\\":\\\":E1sTQnqSA\\\",\\\"name\\\":\\\"16\\\"},\\\"EOkCxNBDi\\\":{\\\"pattern\\\":\\\":EOkCxNBDi\\\",\\\"name\\\":\\\"17\\\"},\\\"hm28EX0O6\\\":{\\\"pattern\\\":\\\":hm28EX0O6\\\",\\\"name\\\":\\\"18\\\"},\\\"kmCSOT5sd\\\":{\\\"pattern\\\":\\\":kmCSOT5sd\\\",\\\"name\\\":\\\"19\\\"},\\\"Nw6te_Hi6\\\":{\\\"pattern\\\":\\\":Nw6te_Hi6\\\",\\\"name\\\":\\\"20\\\"},\\\"w5s5TtHH4\\\":{\\\"pattern\\\":\\\":w5s5TtHH4\\\",\\\"name\\\":\\\"21\\\"},\\\"NQQ2LJjJu\\\":{\\\"pattern\\\":\\\":NQQ2LJjJu\\\",\\\"name\\\":\\\"22\\\"},\\\"jBVXVJbDw\\\":{\\\"pattern\\\":\\\":jBVXVJbDw\\\",\\\"name\\\":\\\"23\\\"},\\\"AmkzxlRbh\\\":{\\\"pattern\\\":\\\":AmkzxlRbh\\\",\\\"name\\\":\\\"24\\\"},\\\"xhvjdC5yM\\\":{\\\"pattern\\\":\\\":xhvjdC5yM\\\",\\\"name\\\":\\\"25\\\"}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1440\",\"framerIntrinsicHeight\":\"16733\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vtn9bkNeF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vKoL52zFv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerResponsiveScreen\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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AAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,W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",
  "names": ["emailRegex", "validateEmail", "email", "FormSpark", "withCSS", "formId", "withName", "name", "withEmail", "withMessage", "message", "layout", "inputs", "button", "style", "gap", "onSubmit", "props", "nameValue", "setName", "ye", "emailValue", "setEmail", "messageValue", "setMessage", "isNameError", "setNameError", "isEmailError", "setEmailError", "isMessageError", "setMessageError", "isLoading", "setLoading", "isSuccess", "setSuccess", "isCanvas", "se", "RenderTarget", "gridTemplateRows", "rows", "gridTemplateColumns", "cols", "fontFamily", "fontSize", "fontWeight", "useFontControls", "borderRadius", "useRadius", "paddingValue", "usePadding", "validateForm", "te", "error", "handleSubmit", "event", "data", "entries", "handleNameChange", "handleEmailChange", "handleMessageChange", "p", "motion", "containerStyles", "u", "defaultStyle", "addPropertyControls", "ControlType", "fontControls", "paddingControl", "borderRadiusControl", "FormSpark_default", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "AnimatedGradientBorderFonts", "getFonts", "AnimatedGradientBorder", "EmbedFonts", "Embed", "CalendlyFonts", "Calendly", "FormSparkFonts", "FormSpark_default", "breakpoints", "serializationHash", "variantClassNames", "toResponsiveImage", "value", "toDateString", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "locale", "isSet", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "QueryData", "query", "pageSize", "data", "useQueryData", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "XCkFvkGIP_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "o4Ki1dTrf", "NtFdXLjzV", "qeASQ4SST", "QbfjVqbvC", "uDrxxPznB", "oyAAYn9FC", "b64KhQpFU", "F8Lhnb6Sv", "VixcT9S9z", "D3AgJgVlD", "bhs3Yez8e", "GjREPmqHu", "LA5FbjBfe", "Sm1W6hJQb", "KatIVmTHd", "TMSCXBwIi", "cAw2bWAHJ", "OBCNWdAAy", "wgtU5EuTz", "bmJbO3amR", "oyzcOju8o", "Cjt7ccScN", "tQlUoyASs", "OeHQI2Lhe", "PDDl5WEru", "gXs3RBIE6", "UnSg69u5D", "Ym7JaTd2S", "v9bSNnxmm", "cukvsiXPf", "ZUFYJdDsg", "Zjhurq1bu", "V57sdpzlb", "a4KQybDUF", "u93Z9mDdv", "Gyc2feMZO", "bgxAJpl8P", "y7HqmhqcD", "ca8vFseQg", "T4wJ2sfZt", "KyX0DkhVV", "iwpPeExZ_", "sUHBWQzi2", "F0EcQA_6_", "J12HSFoyE", "P3PUX9z8z", "dxDsW444Q", "vYehRqH3k", "bi30ATmVE", "XcvzrrRWg", "LXaNNrnlh", "X9ysh5_0a", "dheZ8iAVf", "h5B64GeqZ", "uDrxxPznBj8ORwpw1Z", "o4Ki1dTrfj8ORwpw1Z", "NtFdXLjzVj8ORwpw1Z", "qeASQ4SSTj8ORwpw1Z", "KcRhGnSTaj8ORwpw1Z", "idj8ORwpw1Z", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap3bnx0g", "overlay", "loadMore", "args", "scopingClassNames", "cx", "activeLocaleCode", "useLocaleCode", "textContent", "visible1", "visible2", "visible3", "visible4", "visible5", "visible6", "visible7", "visible8", "visible9", "visible10", "visible11", "visible12", "visible13", "visible14", "visible15", "visible16", "visible17", "visible18", "visible19", "visible20", "visible21", "visible22", "visible23", "visible24", "visible25", "elementId", "useRouteElementId", "ref1", "visible26", "elementId1", "ref2", "visible27", "elementId2", "ref3", "visible28", "elementId3", "ref4", "visible29", "elementId4", "ref5", "visible30", "elementId5", "ref6", "visible31", "elementId6", "ref7", "visible32", "elementId7", "ref8", "visible33", "elementId8", "ref9", "visible34", "elementId9", "ref10", "visible35", "elementId10", "ref11", "visible36", "elementId11", "ref12", "visible37", "elementId12", "ref13", "visible38", "elementId13", "ref14", "visible39", "elementId14", "ref15", "visible40", "elementId15", "ref16", "visible41", "elementId16", "ref17", "visible42", "elementId17", "ref18", "visible43", "elementId18", "ref19", "visible44", "elementId19", "ref20", "visible45", "elementId20", "ref21", "visible46", "elementId21", "ref22", "visible47", "elementId22", "ref23", "visible48", "elementId23", "ref24", "visible49", "elementId24", "ref25", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "PropertyOverrides2", "Image2", "x", "RichText2", "Link", "ComponentPresetsProvider", "ComponentViewportProvider", "Container", "AnimatedGradientBorder", "l", "AnimatePresence", "Ga", "Embed", "Calendly", "ChildrenCanSuspend", "collection", "paginationInfo", "index", "textContent1", "PathVariablesContext", "FormSpark_default", "css", "FramerSvCgENg1G", "withCSS", "SvCgENg1G_default", "addFonts", "AnimatedGradientBorderFonts", "EmbedFonts", "CalendlyFonts", "FormSparkFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "__FramerMetadata__"]
}
