{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js", "ssg:https://framerusercontent.com/modules/YlKU53CdDss9o1Y3l19z/0whb5n5y2kIiM1vdG8DN/NLuCNm8M5.js", "ssg:https://framerusercontent.com/modules/tKdtKTVSXe4DpqI9TqRo/xxwmvAnUJS9LUXNanH2u/Qi0Xjl_eU.js", "ssg:https://framerusercontent.com/modules/J4PCDh2ne90VNwej8FEP/P1wAUlkmJbBUXjr5tNZn/tTccd7Ihc.js", "ssg:https://framerusercontent.com/modules/L89Tc6J3kLqtNbSmqbQd/JyTvCIUCAtj0mosNe9Pv/Kic_ker1.js", "ssg:https://framerusercontent.com/modules/oh6N2By0d35fLLNTS4un/jI3LoHCgqVh3DPvg2V3m/componentPresets.js", "ssg:https://framerusercontent.com/modules/qYksMfSOrkS6JK6BejpN/dKrGUM8SFxONVg9Qb3nO/fzBbhM85H.js", "ssg:https://framerusercontent.com/modules/fRMEsOSoqMs8Hfy4Xpdv/Ls5D947I7XsVMsSjdFjQ/hC10odCHY.js", "ssg:https://framerusercontent.com/modules/xVXcROJ03s0hhwEcg6rh/LDZO7VzmByxOPs3bk64p/uUtLIISFH.js", "ssg:https://framerusercontent.com/modules/esmMrvYfrK3DPdYjmQ3T/dmXJK9YN7RQ7fMWxIaX5/m2qBlSG23.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useRef,useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles}from\"https://framer.com/m/framer/default-utils.js\";/**\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 400\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n *\n * @framerDisableUnlink\n */export default function Embed({type,url,html,style={}}){if(type===\"url\"&&url){return /*#__PURE__*/_jsx(EmbedUrl,{url:url,style:style});}if(type===\"html\"&&html){return /*#__PURE__*/_jsx(EmbedHtml,{html:html,style:style});}return /*#__PURE__*/_jsx(Instructions,{style:style});}addPropertyControls(Embed,{type:{type:ControlType.Enum,defaultValue:\"url\",displaySegmentedControl:true,options:[\"url\",\"html\"],optionTitles:[\"URL\",\"HTML\"]},url:{title:\"URL\",type:ControlType.String,description:\"Some websites don\u2019t support embedding.\",hidden(props){return props.type!==\"url\";}},html:{title:\"HTML\",type:ControlType.String,displayTextArea:true,hidden(props){return props.type!==\"html\";}}});function Instructions({style}){return /*#__PURE__*/_jsx(\"div\",{style:{minHeight:getMinHeight(style),...emptyStateStyle,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedUrl({url,style}){const hasAutoHeight=!style.height;// Add https:// if the URL does not have a protocol.\nif(!/[a-z]+:\\/\\//.test(url)){url=\"https://\"+url;}const onCanvas=useIsOnCanvas();// We need to check if the url is blocked inside an iframe by the X-Frame-Options\n// or Content-Security-Policy headers on the backend.\nconst[state,setState]=useState(onCanvas?undefined:false);useEffect(()=>{// We only want to check on the canvas.\n// On the website we want to avoid the additional delay.\nif(!onCanvas)return;// TODO: We could also use AbortController here.\nlet isLastEffect=true;setState(undefined);async function load(){const response=await fetch(\"https://api.framer.com/functions/check-iframe-url?url=\"+encodeURIComponent(url));if(response.status==200){const{isBlocked}=await response.json();if(isLastEffect){setState(isBlocked);}}else{const message=await response.text();console.error(message);const error=new Error(\"This site can\u2019t be reached.\");setState(error);}}load().catch(error=>{console.error(error);setState(error);});return()=>{isLastEffect=false;};},[url]);if(onCanvas&&hasAutoHeight){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"URL embeds do not support auto height.\",style:style});}if(!url.startsWith(\"https://\")){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Unsupported protocol.\",style:style});}if(state===undefined){return /*#__PURE__*/_jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/_jsx(ErrorMessage,{message:state.message,style:style});}if(state===true){const message=`Can\u2019t embed ${url} due to its content security policy.`;return /*#__PURE__*/_jsx(ErrorMessage,{message:message,style:style});}return /*#__PURE__*/_jsx(\"iframe\",{src:url,style:{...iframeStyle,...style},loading:\"lazy\",// @ts-ignore\nfetchPriority:onCanvas?\"low\":\"auto\",referrerPolicy:\"no-referrer\",sandbox:getSandbox(onCanvas)});}const iframeStyle={width:\"100%\",height:\"100%\",border:\"none\"};function getSandbox(onCanvas){const result=[\"allow-same-origin\",\"allow-scripts\"];if(!onCanvas){result.push(\"allow-downloads\",\"allow-forms\",\"allow-modals\",\"allow-orientation-lock\",\"allow-pointer-lock\",\"allow-popups\",\"allow-popups-to-escape-sandbox\",\"allow-presentation\",\"allow-storage-access-by-user-activation\",\"allow-top-navigation-by-user-activation\");}return result.join(\" \");}function EmbedHtml({html,...props}){const hasScript=html.includes(\"</script>\");if(hasScript){const hasSplineViewer=html.includes(\"</spline-viewer>\");const hasComment=html.includes(\"<!-- framer-direct-embed -->\");if(hasSplineViewer||hasComment){return /*#__PURE__*/_jsx(EmbedHtmlWithScripts,{html:html,...props});}return /*#__PURE__*/_jsx(EmbedHtmlInsideIframe,{html:html,...props});}return /*#__PURE__*/_jsx(EmbedHtmlWithoutScripts,{html:html,...props});}function EmbedHtmlInsideIframe({html,style}){const ref=useRef();const[iframeHeight,setIframeHeight]=useState(0);// Handle auto sizing\nuseEffect(()=>{var _ref_current;const iframeWindow=(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.contentWindow;function handleMessage(event){if(event.source!==iframeWindow)return;const data=event.data;if(typeof data!==\"object\"||data===null)return;const height=data.embedHeight;if(typeof height!==\"number\")return;setIframeHeight(height);}window.addEventListener(\"message\",handleMessage);// After SSG the iframe loads before we attach the event handler,\n// therefore we need to request the latest height from the iframe.\niframeWindow===null||iframeWindow===void 0?void 0:iframeWindow.postMessage(\"getEmbedHeight\",\"*\");return()=>{window.removeEventListener(\"message\",handleMessage);};},[]);// The CSS is mainly copied from:\n// FramerStudio/src/app/vekter/src/renderer/setDefaultFont.ts\n// FramerStudio/src/app/vekter/src/export/globalStylesForExport.ts\nconst srcDoc=`\n<html>\n    <head>\n        <style>\n            html, body {\n                margin: 0;\n                padding: 0;\n            }\n\n            body {\n                display: flex;\n                justify-content: center;\n                align-items: center;\n                min-height: 100vh;\n            }\n\n            :root {\n                -webkit-font-smoothing: antialiased;\n                -moz-osx-font-smoothing: grayscale;\n            }\n\n            * {\n                box-sizing: border-box;\n                -webkit-font-smoothing: inherit;\n            }\n\n            h1, h2, h3, h4, h5, h6, p, figure {\n                margin: 0;\n            }\n\n            body, input, textarea, select, button {\n                font-size: 12px;\n                font-family: sans-serif;\n            }\n        </style>\n    </head>\n    <body>\n        ${html}\n        <script type=\"module\">\n            let height = 0\n\n            function sendEmbedHeight() {\n                window.parent.postMessage({\n                    embedHeight: height\n                }, \"*\")\n            }\n\n            const observer = new ResizeObserver((entries) => {\n                if (entries.length !== 1) return\n                const entry = entries[0]\n                if (entry.target !== document.body) return\n\n                height = entry.contentRect.height\n                sendEmbedHeight()\n            })\n\n            observer.observe(document.body)\n\n            window.addEventListener(\"message\", (event) => {\n                if (event.source !== window.parent) return\n                if (event.data !== \"getEmbedHeight\") return\n                sendEmbedHeight()\n            })\n        </script>\n    <body>\n</html>\n`;const currentStyle={...iframeStyle,...style};const hasAutoHeight=!style.height;if(hasAutoHeight){currentStyle.height=iframeHeight+\"px\";}return /*#__PURE__*/_jsx(\"iframe\",{ref:ref,style:currentStyle,srcDoc:srcDoc});}function EmbedHtmlWithScripts({html,style}){const ref=useRef();useEffect(()=>{const div=ref.current;if(!div)return;div.innerHTML=html;executeScripts(div);return()=>{div.innerHTML=\"\";};},[html]);return /*#__PURE__*/_jsx(\"div\",{ref:ref,style:{...htmlStyle,...style}});}function EmbedHtmlWithoutScripts({html,style}){return /*#__PURE__*/_jsx(\"div\",{style:{...htmlStyle,...style},dangerouslySetInnerHTML:{__html:html}});}const htmlStyle={width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};// This function replaces scripts with executable ones.\n// https://stackoverflow.com/questions/1197575/can-scripts-be-inserted-with-innerhtml\nfunction executeScripts(node){if(node instanceof Element&&node.tagName===\"SCRIPT\"){const script=document.createElement(\"script\");script.text=node.innerHTML;for(const{name,value}of node.attributes){script.setAttribute(name,value);}node.parentElement.replaceChild(script,node);}else{for(const child of node.childNodes){executeScripts(child);}}}// Generic components\nfunction LoadingIndicator(){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-componentPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"Loading\u2026\"})});}function ErrorMessage({message,style}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{minHeight:getMinHeight(style),...containerStyles,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:message})});}const centerTextStyle={textAlign:\"center\",minWidth:140};// Returns a min-height if the component is using auto-height.\nfunction getMinHeight(style){const hasAutoHeight=!style.height;if(hasAutoHeight)return 200;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"400\",\"framerIntrinsicWidth\":\"600\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "// Generated by Framer (d5d9708)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const MotionDivWithFX=withFX(motion.div);const enabledGestures={Rg61MhywJ:{hover:true,pressed:true}};const cycleOrder=[\"Rg61MhywJ\",\"zNkuqWxeD\",\"I8EdpZ_Ls\",\"kkGSMI0fp\",\"UwtCtGrpQ\"];const serializationHash=\"framer-KGu8n\";const variantClassNames={I8EdpZ_Ls:\"framer-v-1e46sy8\",kkGSMI0fp:\"framer-v-19p7bw7\",Rg61MhywJ:\"framer-v-jxmfz4\",UwtCtGrpQ:\"framer-v-61lr07\",zNkuqWxeD:\"framer-v-1nbmguo\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.2,ease:[.44,0,.56,1],type:\"tween\"};const transition2={delay:0,duration:1,ease:[0,0,1,1],type:\"tween\"};const animation={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Default:\"Rg61MhywJ\",Disabled:\"I8EdpZ_Ls\",Error:\"UwtCtGrpQ\",Loading:\"zNkuqWxeD\",Success:\"kkGSMI0fp\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"Rg61MhywJ\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Rg61MhywJ\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"zNkuqWxeD\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"zNkuqWxeD\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.button,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-jxmfz4\",className,classNames),\"data-framer-name\":\"Default\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"Rg61MhywJ\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(51, 51, 51)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,opacity:1,...style},variants:{\"Rg61MhywJ-hover\":{backgroundColor:\"rgba(51, 51, 51, 0.85)\"},I8EdpZ_Ls:{opacity:.5},UwtCtGrpQ:{backgroundColor:\"rgba(255, 34, 68, 0.15)\"}},...addPropertyOverrides({\"Rg61MhywJ-hover\":{\"data-framer-name\":undefined},\"Rg61MhywJ-pressed\":{\"data-framer-name\":undefined},I8EdpZ_Ls:{\"data-framer-name\":\"Disabled\"},kkGSMI0fp:{\"data-framer-name\":\"Success\"},UwtCtGrpQ:{\"data-framer-name\":\"Error\"},zNkuqWxeD:{\"data-framer-name\":\"Loading\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Submit\"})}),className:\"framer-1ylka0v\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"aupLp1P7E\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{UwtCtGrpQ:{\"--extracted-r6o4lv\":\"rgb(255, 34, 68)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({kkGSMI0fp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Thank you\"})})},UwtCtGrpQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 34, 68))\"},children:\"Something went wrong\"})})}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hu553w\",\"data-framer-name\":\"Spinner\",layoutDependency:layoutDependency,layoutId:\"GNADUy1jV\",style:{mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-15z0lj4\",\"data-framer-name\":\"Conic\",layoutDependency:layoutDependency,layoutId:\"M7qDTjw3X\",style:{background:\"conic-gradient(from 180deg at 50% 50%, #4cf 0deg, #4cf 360deg)\"},variants:{zNkuqWxeD:{background:\"conic-gradient(from 0deg at 50% 50%, rgba(255, 255, 255, 0) 7.208614864864882deg, rgb(255, 255, 255) 342deg)\",mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-6aq4xb\",\"data-framer-name\":\"Rounding\",layoutDependency:layoutDependency,layoutId:\"T4dBhag3V\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:1,borderBottomRightRadius:1,borderTopLeftRadius:1,borderTopRightRadius:1},transformTemplate:transformTemplate1})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-KGu8n.framer-1j7qjtx, .framer-KGu8n .framer-1j7qjtx { display: block; }\",\".framer-KGu8n.framer-jxmfz4 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 40px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 240px; }\",\".framer-KGu8n .framer-1ylka0v { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-KGu8n .framer-1hu553w { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); overflow: hidden; position: relative; width: 20px; }\",\".framer-KGu8n .framer-15z0lj4 { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-KGu8n .framer-6aq4xb { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 2px); left: 50%; overflow: visible; position: absolute; top: 0px; width: 2px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-KGu8n.framer-jxmfz4 { gap: 0px; } .framer-KGu8n.framer-jxmfz4 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-KGu8n.framer-jxmfz4 > :first-child { margin-left: 0px; } .framer-KGu8n.framer-jxmfz4 > :last-child { margin-right: 0px; } }\",\".framer-KGu8n.framer-v-1nbmguo.framer-jxmfz4, .framer-KGu8n.framer-v-1e46sy8.framer-jxmfz4, .framer-KGu8n.framer-v-19p7bw7.framer-jxmfz4, .framer-KGu8n.framer-v-61lr07.framer-jxmfz4 { cursor: unset; }\",\".framer-KGu8n.framer-v-1nbmguo .framer-15z0lj4 { overflow: hidden; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 240\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"zNkuqWxeD\":{\"layout\":[\"fixed\",\"fixed\"]},\"I8EdpZ_Ls\":{\"layout\":[\"fixed\",\"fixed\"]},\"kkGSMI0fp\":{\"layout\":[\"fixed\",\"fixed\"]},\"UwtCtGrpQ\":{\"layout\":[\"fixed\",\"fixed\"]},\"KTweHps4J\":{\"layout\":[\"fixed\",\"fixed\"]},\"z0YTEBWxk\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerNLuCNm8M5=withCSS(Component,css,\"framer-KGu8n\");export default FramerNLuCNm8M5;FramerNLuCNm8M5.displayName=\"Button\";FramerNLuCNm8M5.defaultProps={height:40,width:240};addPropertyControls(FramerNLuCNm8M5,{variant:{options:[\"Rg61MhywJ\",\"zNkuqWxeD\",\"I8EdpZ_Ls\",\"kkGSMI0fp\",\"UwtCtGrpQ\"],optionTitles:[\"Default\",\"Loading\",\"Disabled\",\"Success\",\"Error\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerNLuCNm8M5,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-SemiBold.cyrillic-ext-C7KWUKA7.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://app.framerstatic.com/Inter-SemiBold.cyrillic-JWV7SOZ6.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-SemiBold.greek-ext-FBKSFTSU.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-SemiBold.greek-EQ3PSENU.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://app.framerstatic.com/Inter-SemiBold.latin-ext-ULRSO3ZR.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://app.framerstatic.com/Inter-SemiBold.latin-RDYY2AG2.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://app.framerstatic.com/Inter-SemiBold.vietnamese-ESQNSEQ3.woff2\",weight:\"600\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerNLuCNm8M5\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"40\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"240\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"zNkuqWxeD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"I8EdpZ_Ls\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"kkGSMI0fp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"UwtCtGrpQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"KTweHps4J\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"z0YTEBWxk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./NLuCNm8M5.map", "// Generated by Framer (3d3d426)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Hedvig Letters Serif-regular\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Hedvig Letters Serif\",openType:true,source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/hedviglettersserif/v2/OD5puN2I2mekHmyoU1Kj2AXOd5_7v7gIDlX8quj7viQ_N1HixEAZerfcvSGpZg.woff2\",weight:\"400\"}]}];export const css=[\".framer-QmzpW .framer-styles-preset-1gdrxby:not(.rich-text-wrapper), .framer-QmzpW .framer-styles-preset-1gdrxby.rich-text-wrapper p { --framer-font-family: \\\"Hedvig Letters Serif\\\", \\\"Hedvig Letters Serif Placeholder\\\", serif; --framer-font-open-type-features: 'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on; --framer-font-size: 37px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.02em; --framer-line-height: 1.6em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #0f1701; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; --framer-text-wrap: balance; }\",\"@media (max-width: 1199px) and (min-width: 0px) { .framer-QmzpW .framer-styles-preset-1gdrxby:not(.rich-text-wrapper), .framer-QmzpW .framer-styles-preset-1gdrxby.rich-text-wrapper p { --framer-font-family: \\\"Hedvig Letters Serif\\\", \\\"Hedvig Letters Serif Placeholder\\\", serif; --framer-font-open-type-features: 'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on; --framer-font-size: 30px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.02em; --framer-line-height: 1.6em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #0f1701; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; --framer-text-wrap: balance; } }\"];export const className=\"framer-QmzpW\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (3d3d426)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,FormContainer,FormPlainTextInput,FormSelect,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import Button from\"https://framerusercontent.com/modules/YlKU53CdDss9o1Y3l19z/0whb5n5y2kIiM1vdG8DN/NLuCNm8M5.js\";import{UpiPaymentSection}from\"https://framerusercontent.com/modules/VDgg7Y8ZTcTy1iaCE1M0/6KJDQv5p2UROnbuERwmM/Qrflex.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/90tiPT8wMDnRVqNSrNb3/TgWnUUK5B6Hhchf2mwYc/I8cdBjeDw.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/tKdtKTVSXe4DpqI9TqRo/xxwmvAnUJS9LUXNanH2u/Qi0Xjl_eU.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/oeOdsqzftf6itqvaLsvc/PKPG2yHltCfphMIFtLvJ/X435GKo_y.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/W31izxRe6S7gYLICKISQ/eVRyvqgojoqOpKSIgeHl/YqCpqrbAN.js\";const VideoFonts=getFonts(Video);const UpiPaymentSectionFonts=getFonts(UpiPaymentSection);const ButtonFonts=getFonts(Button);const serializationHash=\"framer-XQhJT\";const variantClassNames={D2B5_Eh_W:\"framer-v-9jmdvh\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const convertFromBoolean=(value,activeLocale)=>{if(value){return\"\";}else{return\"\";}};const toString=value=>{return typeof value===\"string\"?value:String(value);};const prefix=(value,prefix)=>{if(typeof value===\"string\"&&typeof prefix===\"string\"){return prefix+value;}else if(typeof value===\"string\"){return value;}else if(typeof prefix===\"string\"){return prefix;}return\"\";};const suffix=(value,suffix)=>{if(typeof value===\"string\"&&typeof suffix===\"string\"){return value+suffix;}else if(typeof value===\"string\"){return value;}else if(typeof suffix===\"string\"){return suffix;}return\"\";};const formVariants=(form,variants,currentVariant)=>{switch(form.state){case\"success\":return variants.success??currentVariant;case\"pending\":return variants.pending??currentVariant;case\"error\":return variants.error??currentVariant;case\"incomplete\":return variants.incomplete??currentVariant;}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,image3,link,next,previous,thumbnaillink1,title,title2,width,...props})=>{return{...props,EXOvpKLX9:link??props.EXOvpKLX9,IWN6BLHC_:image3??props.IWN6BLHC_??{pixelHeight:540,pixelWidth:960,src:\"https://framerusercontent.com/images/mO4Vyq6gSPHoZ5m0pxhMkTDT3Jk.jpg\",srcSet:\"https://framerusercontent.com/images/mO4Vyq6gSPHoZ5m0pxhMkTDT3Jk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/mO4Vyq6gSPHoZ5m0pxhMkTDT3Jk.jpg 960w\"},NukYIF6wx:title??props.NukYIF6wx,o74CPaMYD:previous??props.o74CPaMYD,sYKU43_Eq:next??props.sYKU43_Eq??\"mT2snpq5_\",wk10RADba:thumbnaillink1??props.wk10RADba,wqN6Q3HsI:title2??props.wqN6Q3HsI??\"HOMA Technology: Early Detection for Diabetes & Heart Disease\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,wk10RADba,EXOvpKLX9,o74CPaMYD,NukYIF6wx,IWN6BLHC_,sYKU43_Eq,wqN6Q3HsI,previousItemId_smfTyzFRBm2qBlSG23,nextItemId_smfTyzFRBm2qBlSG23,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"D2B5_Eh_W\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const visible=isSet(o74CPaMYD);const textContent=prefix(NukYIF6wx,\"\u2039 \");const visible1=isSet(sYKU43_Eq);const textContent1=suffix(wqN6Q3HsI,\" \u203A\");return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-9jmdvh\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"D2B5_Eh_W\",ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1m9e7hp\",\"data-framer-name\":\"qrcode\",layoutDependency:layoutDependency,layoutId:\"P70NG3GeQ\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||2158)-10-2156.5)/2+0+0)+0+0),pixelHeight:200,pixelWidth:200,sizes:\"390px\",...toResponsiveImage(wk10RADba),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1oxn86c\",layoutDependency:layoutDependency,layoutId:\"riFVQUPg5\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ymzyem\",\"data-framer-name\":\"dynamicstacking\",layoutDependency:layoutDependency,layoutId:\"iZljq7CYm\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-14qi2im\",\"data-framer-name\":\"media container\",layoutDependency:layoutDependency,layoutId:\"ItGzGwD2Q\",style:{backgroundColor:\"rgba(244, 227, 250, 0.98)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1dngaqf-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"H3ZzLxG07-container\",nodeId:\"H3ZzLxG07\",rendersWithMotion:true,scopeId:\"tTccd7Ihc\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"H3ZzLxG07\",isMixedBorderRadius:false,layoutId:\"H3ZzLxG07\",loop:true,muted:false,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/a6UucGzvrUPOFBSkk208NUG30w.mp4\",srcType:\"Upload\",srcUrl:toString(convertFromBoolean(isSet(EXOvpKLX9),activeLocale)),startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})}),visible&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-1asccip\",\"data-styles-preset\":\"X435GKo_y\",children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{smfTyzFRB:previousItemId_smfTyzFRBm2qBlSG23},webPageId:\"m2qBlSG23\"},motionChild:true,nodeId:\"aZ6UTeEXJ\",openInNewTab:false,scopeId:\"tTccd7Ihc\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-12r9scb\",\"data-styles-preset\":\"YqCpqrbAN\",children:\"\u2039 \"})})})}),className:\"framer-radmwl\",\"data-framer-name\":\"Previous\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"aZ6UTeEXJ\",text:textContent,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||2158)-10-2156.5)/2+1064.4+30)),sizes:\"385px\",...toResponsiveImage(IWN6BLHC_),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-asajwk\",\"data-border\":true,\"data-framer-name\":\"Banner\",layoutDependency:layoutDependency,layoutId:\"O3k5_nz3k\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(34, 34, 34)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24}}),visible1&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1gdrxby\",\"data-styles-preset\":\"Qi0Xjl_eU\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(38, 4, 4))\"},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{smfTyzFRB:nextItemId_smfTyzFRBm2qBlSG23},webPageId:\"m2qBlSG23\"},motionChild:true,nodeId:\"dSUcRqYOj\",openInNewTab:false,scopeId:\"tTccd7Ihc\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-12r9scb\",\"data-styles-preset\":\"YqCpqrbAN\",children:\"HOMA Technology: Early Detection for Diabetes & Heart Disease \u203A\"})})})}),className:\"framer-15f3yrt\",\"data-framer-name\":\"Next\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"dSUcRqYOj\",style:{\"--extracted-r6o4lv\":\"rgb(38, 4, 4)\"},text:textContent1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1sv76fm\",\"data-styles-preset\":\"I8cdBjeDw\",children:\"Donate\"})}),className:\"framer-144jbeg\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"nqrN8CfHl\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1vni82m-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"GbK1HDA3i-container\",nodeId:\"GbK1HDA3i\",rendersWithMotion:true,scopeId:\"tTccd7Ihc\",children:/*#__PURE__*/_jsx(UpiPaymentSection,{height:\"100%\",id:\"GbK1HDA3i\",layoutId:\"GbK1HDA3i\",width:\"100%\"})})}),/*#__PURE__*/_jsx(FormContainer,{action:\"https://api.framer.com/forms/v1/forms/2e28efa1-e002-408b-8a88-3670efd31e42/submit\",className:\"framer-qqqfir\",layoutDependency:layoutDependency,layoutId:\"epaak1AbO\",nodeId:\"epaak1AbO\",children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsxs(motion.label,{className:\"framer-1o1i2la\",layoutDependency:layoutDependency,layoutId:\"nfU2Tvw7H\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 136, 136))\"},children:\"Name\"})}),className:\"framer-3jqodw\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"VMBp_YwcK\",style:{\"--extracted-r6o4lv\":\"rgb(136, 136, 136)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-w1cq0a\",inputName:\"Name\",layoutDependency:layoutDependency,layoutId:\"Tzzdwwi24\",placeholder:\"Jane Smith\",style:{\"--framer-input-background\":\"rgba(187, 187, 187, 0.15)\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgba(136, 136, 136, 0.1)\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-radius-bottom-left\":\"10px\",\"--framer-input-border-radius-bottom-right\":\"10px\",\"--framer-input-border-radius-top-left\":\"10px\",\"--framer-input-border-radius-top-right\":\"10px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-font-color\":\"rgb(153, 153, 153)\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"rgb(153, 153, 153)\"},type:\"text\"})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-1ha5l87\",layoutDependency:layoutDependency,layoutId:\"utyRqlYim\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 136, 136))\"},children:\"Email\"})}),className:\"framer-1u29h51\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"fzqevnPcf\",style:{\"--extracted-r6o4lv\":\"rgb(136, 136, 136)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-140rbie\",inputName:\"Email\",layoutDependency:layoutDependency,layoutId:\"nMZVf1miS\",placeholder:\"jane@framer.com\",style:{\"--framer-input-background\":\"rgba(187, 187, 187, 0.15)\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgba(136, 136, 136, 0.1)\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-radius-bottom-left\":\"10px\",\"--framer-input-border-radius-bottom-right\":\"10px\",\"--framer-input-border-radius-top-left\":\"10px\",\"--framer-input-border-radius-top-right\":\"10px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-font-color\":\"rgb(153, 153, 153)\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"rgb(153, 153, 153)\"},type:\"email\"})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-9xgsqi\",layoutDependency:layoutDependency,layoutId:\"O4VGzhfNn\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 136, 136))\"},children:\"Location\"})}),className:\"framer-1xoogp5\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"Va4svMCuX\",style:{\"--extracted-r6o4lv\":\"rgb(136, 136, 136)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormSelect,{className:\"framer-12wh69m\",defaultValue:\"\",inputName:\"Location\",layoutDependency:layoutDependency,layoutId:\"HuyDIV7tz\",required:true,selectOptions:[{disabled:true,title:\"Select\u2026\",type:\"option\",value:\"\"},{title:\"Barcelona\",type:\"option\",value:\"barcelona\"},{type:\"option\",value:\"india\"},{type:\"option\",value:\"\"}],style:{\"--framer-input-background\":\"rgba(187, 187, 187, 0.15)\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgba(136, 136, 136, 0.1)\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-radius-bottom-left\":\"10px\",\"--framer-input-border-radius-bottom-right\":\"10px\",\"--framer-input-border-radius-top-left\":\"10px\",\"--framer-input-border-radius-top-right\":\"10px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-font-color\":\"rgb(153, 153, 153)\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-invalid-text-color\":\"rgb(153, 153, 153)\"}})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"280px\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||2158)-10-2156.5)/2+1793.3+70)+0+253.2,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-x6ig76-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"flX1Avqpj-container\",nodeId:\"flX1Avqpj\",rendersWithMotion:true,scopeId:\"tTccd7Ihc\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"flX1Avqpj\",layoutId:\"flX1Avqpj\",style:{height:\"100%\",width:\"100%\"},type:\"submit\",variant:formVariants(formState,{pending:\"zNkuqWxeD\",success:\"kkGSMI0fp\"},\"Rg61MhywJ\"),width:\"100%\"})})})]})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-XQhJT.framer-1f6nnff, .framer-XQhJT .framer-1f6nnff { display: block; }\",\".framer-XQhJT.framer-9jmdvh { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 600px; padding: 0px 30px 10px 10px; position: relative; width: 600px; }\",\".framer-XQhJT .framer-1m9e7hp { 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: 390px; }\",\".framer-XQhJT .framer-1oxn86c { flex: none; height: 300px; position: relative; width: 100%; }\",\".framer-XQhJT .framer-ymzyem { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 10px 0px 10px 0px; position: relative; width: 100%; }\",\".framer-XQhJT .framer-14qi2im { aspect-ratio: 0.8571428571428571 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 653px); overflow: hidden; position: relative; width: 100%; }\",\".framer-XQhJT .framer-1dngaqf-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-XQhJT .framer-radmwl { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-XQhJT .framer-asajwk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; height: 400px; justify-content: space-around; max-width: 600px; padding: 20px 0px 0px 20px; position: relative; width: 385px; }\",\".framer-XQhJT .framer-15f3yrt, .framer-XQhJT .framer-3jqodw, .framer-XQhJT .framer-1u29h51, .framer-XQhJT .framer-1xoogp5 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-XQhJT .framer-144jbeg { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 200px; word-break: break-word; word-wrap: break-word; }\",\".framer-XQhJT .framer-1vni82m-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-XQhJT .framer-qqqfir { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 20px; position: relative; width: 280px; }\",\".framer-XQhJT .framer-1o1i2la, .framer-XQhJT .framer-1ha5l87, .framer-XQhJT .framer-9xgsqi { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",'.framer-XQhJT .framer-w1cq0a, .framer-XQhJT .framer-140rbie, .framer-XQhJT .framer-12wh69m { --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-family: \"Inter\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 14px; --framer-input-font-weight: 400; --framer-input-padding: 12px; flex: none; height: 40px; position: relative; width: 100%; }',\".framer-XQhJT .framer-x6ig76-container { flex: none; height: 40px; position: relative; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,'.framer-XQhJT[data-border=\"true\"]::after, .framer-XQhJT [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 2158\n * @framerIntrinsicWidth 600\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"600px\",null,null]}}}\n * @framerVariables {\"wk10RADba\":\"thumbnaillink1\",\"EXOvpKLX9\":\"link\",\"o74CPaMYD\":\"previous\",\"NukYIF6wx\":\"title\",\"IWN6BLHC_\":\"image3\",\"sYKU43_Eq\":\"next\",\"wqN6Q3HsI\":\"title2\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramertTccd7Ihc=withCSS(Component,css,\"framer-XQhJT\");export default FramertTccd7Ihc;FramertTccd7Ihc.displayName=\"PAYMENT QR CODE\";FramertTccd7Ihc.defaultProps={height:2158,width:600};addPropertyControls(FramertTccd7Ihc,{wk10RADba:{title:\"thumbnaillink1\",type:ControlType.ResponsiveImage},EXOvpKLX9:{title:\"Link\",type:ControlType.Link},o74CPaMYD:{dataIdentifier:\"local-module:collection/z1_d0phb5:default\",title:\"Previous\",type:ControlType.CollectionReference},NukYIF6wx:{defaultValue:\"\",title:\"Title\",type:ControlType.String},IWN6BLHC_:{__defaultAssetReference:\"data:framer/asset-reference,mO4Vyq6gSPHoZ5m0pxhMkTDT3Jk.jpg?originalFilename=latest+%2822%29.jpg&preferredSize=auto\",title:\"image3\",type:ControlType.ResponsiveImage},sYKU43_Eq:{dataIdentifier:\"local-module:collection/z1_d0phb5:default\",defaultValue:\"mT2snpq5_\",title:\"Next\",type:ControlType.CollectionReference},wqN6Q3HsI:{defaultValue:\"HOMA Technology: Early Detection for Diabetes & Heart Disease\",title:\"Title 2\",type:ControlType.String}});addFonts(FramertTccd7Ihc,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...VideoFonts,...UpiPaymentSectionFonts,...ButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramertTccd7Ihc\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"600px\\\",null,null]}}}\",\"framerIntrinsicWidth\":\"600\",\"framerIntrinsicHeight\":\"2158\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"wk10RADba\\\":\\\"thumbnaillink1\\\",\\\"EXOvpKLX9\\\":\\\"link\\\",\\\"o74CPaMYD\\\":\\\"previous\\\",\\\"NukYIF6wx\\\":\\\"title\\\",\\\"IWN6BLHC_\\\":\\\"image3\\\",\\\"sYKU43_Eq\\\":\\\"next\\\",\\\"wqN6Q3HsI\\\":\\\"title2\\\"}\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./tTccd7Ihc.map", "\"use client\";import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";export function HeroKicker(props){const orange=\"#FF8800\"// Attractive orange color for stars\n;return /*#__PURE__*/_jsxs(\"div\",{...props,className:\"flex flex-col items-center mb-4\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"flex items-center space-x-2\",children:[...Array(5)].map((_,i)=>/*#__PURE__*/_jsx(\"svg\",{width:\"24\",height:\"24\",viewBox:\"0 0 24 24\",fill:orange,stroke:orange,strokeWidth:\"1\",strokeLinejoin:\"round\",className:\"drop-shadow-md\",children:/*#__PURE__*/_jsx(\"polygon\",{points:\"12,2 15,9 22,9.5 17,14 18.5,21 12,17.5 5.5,21 7,14 2,9.5 9,9\"})},i))}),/*#__PURE__*/_jsxs(\"div\",{className:\"mt-2 text-center\",children:[/*#__PURE__*/_jsx(\"span\",{className:\"font-semibold text-lg text-gray-800\",children:\"Dr. M Surendra Nehru, MD \u2013 Physician\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{className:\"text-gray-600 text-base\",children:\"32 years experience \u2022 300,000+ satisfied patients\"})]})]});}\nexport const __FramerMetadata__ = {\"exports\":{\"HeroKicker\":{\"type\":\"reactComponent\",\"name\":\"HeroKicker\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Kic_ker1.map", "// Generated by Framer (722666c)\nexport const props={fTeTAOdCX:{borderRadius:15,bottomLeftRadius:15,bottomRightRadius:15,darkTheme:\"framerDark\",font:{fontFamily:'\"Fragment Mono\", monospace',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1.5em\"},isMixedBorderRadius:false,lightTheme:\"framerLight\",padding:30,paddingBottom:30,paddingLeft:30,paddingPerSide:false,paddingRight:30,paddingTop:30,theme:\"framerDark\",themeMode:\"Static\",topLeftRadius:15,topRightRadius:15},oWyVL6Hji:{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,isMixedBorderRadius:false,isRed:true,topLeftRadius:0,topRightRadius:0}};export const fonts={fTeTAOdCX:[{explicitInter:true,fonts:[{family:\"Fragment Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/fragmentmono/v4/4iCr6K5wfMRRjxp0DA6-2CLnN4FNh4UI_1U.woff2\",weight:\"400\"}]}]};\nexport const __FramerMetadata__ = {\"exports\":{\"props\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (be619af)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Fragment Mono-regular\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Fragment Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/fragmentmono/v4/4iCr6K5wfMRRjxp0DA6-2CLnN4FNh4UI_1U.woff2\",weight:\"400\"}]}];export const css=['.framer-Ylrnj .framer-styles-preset-3nbk5y { --framer-code-font-family: \"Fragment Mono\", monospace; --framer-code-font-style: normal; --framer-code-font-weight: 400; --framer-code-text-color: #333; --framer-font-size-scale: 1; background-color: rgba(0, 0, 0, 0.1); border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; padding-bottom: 0.1em; padding-left: 0.2em; padding-right: 0.2em; padding-top: 0.1em; }'];export const className=\"framer-Ylrnj\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (99f3353)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Hina Mincho-regular\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Hina Mincho\",openType:true,source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/hinamincho/v14/2sDaZGBRhpXa2Jjz5w5LAGW5KbkVZTHR.woff2\",weight:\"400\"}]}];export const css=[\".framer-4h49T .framer-styles-preset-c98m33:not(.rich-text-wrapper), .framer-4h49T .framer-styles-preset-c98m33.rich-text-wrapper h3 { --framer-font-family: \\\"Hina Mincho\\\", \\\"Hina Mincho Placeholder\\\", serif; --framer-font-open-type-features: 'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on; --framer-font-size: 26px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.04em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #0d0101; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }\",\"@media (max-width: 1199px) and (min-width: 0px) { .framer-4h49T .framer-styles-preset-c98m33:not(.rich-text-wrapper), .framer-4h49T .framer-styles-preset-c98m33.rich-text-wrapper h3 { --framer-font-family: \\\"Hina Mincho\\\", \\\"Hina Mincho Placeholder\\\", serif; --framer-font-open-type-features: 'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on; --framer-font-size: 40px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.04em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #0d0101; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }\"];export const className=\"framer-4h49T\";\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 (be619af)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-JIY7P .framer-styles-preset-kpndjx {  }\"];export const className=\"framer-JIY7P\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (d65f646)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PropertyOverrides,RichText,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useQueryData,useRouteElementId,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/s801VqobGI0Gkh3K9b41/Embed.js\";import Embed1 from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js\";import FAQ from\"#framer/local/canvasComponent/E7fYql7kA/E7fYql7kA.js\";import BookAConsult from\"#framer/local/canvasComponent/EGzR0qNaM/EGzR0qNaM.js\";import Navbargood from\"#framer/local/canvasComponent/FjkNcsf30/FjkNcsf30.js\";import BookAppointment from\"#framer/local/canvasComponent/i2UoQ8VvI/i2UoQ8VvI.js\";import PAYMENTQRCODE from\"#framer/local/canvasComponent/tTccd7Ihc/tTccd7Ihc.js\";import TetsAnsWebsite from\"#framer/local/canvasComponent/xA20v23Id/xA20v23Id.js\";import WhyHoma from\"#framer/local/canvasComponent/xWlTTs1zG/xWlTTs1zG.js\";import HealthDashboard from\"#framer/local/codeFile/utAh6_O/Activity_code1.js\";import{Footer}from\"#framer/local/codeFile/PSsJUVk/FOOTER.js\";import HomaServices from\"#framer/local/codeFile/xD8jK55/Gst_1.js\";import{HeroKicker}from\"#framer/local/codeFile/FevQSHc/Kic_ker1.js\";import Mailchimp from\"#framer/local/codeFile/qYcXCgg/Mailchimp.js\";import HomaPackageCalculator from\"#framer/local/codeFile/AAybY0l/Quote4.js\";import SocialMediaLinks from\"#framer/local/codeFile/mu6IBWj/Socialmedialinks.js\";import AUTHOR from\"#framer/local/collection/drgQZNLDZ/drgQZNLDZ.js\";import Articles from\"#framer/local/collection/z1_d0phb5/z1_d0phb5.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle19 from\"#framer/local/css/Abc1qCQS6/Abc1qCQS6.js\";import*as sharedStyle18 from\"#framer/local/css/aI_kdPbLb/aI_kdPbLb.js\";import*as sharedStyle5 from\"#framer/local/css/BW9SVMDS0/BW9SVMDS0.js\";import*as sharedStyle3 from\"#framer/local/css/cZYVQoHtS/cZYVQoHtS.js\";import*as sharedStyle from\"#framer/local/css/F2xgwzhKQ/F2xgwzhKQ.js\";import*as sharedStyle13 from\"#framer/local/css/ffpvCDiQf/ffpvCDiQf.js\";import*as sharedStyle17 from\"#framer/local/css/fvZD4LTcm/fvZD4LTcm.js\";import*as sharedStyle14 from\"#framer/local/css/fwomoqPBn/fwomoqPBn.js\";import*as sharedStyle8 from\"#framer/local/css/fzBbhM85H/fzBbhM85H.js\";import*as sharedStyle16 from\"#framer/local/css/gtHpNnR7u/gtHpNnR7u.js\";import*as sharedStyle2 from\"#framer/local/css/hC10odCHY/hC10odCHY.js\";import*as sharedStyle1 from\"#framer/local/css/I8cdBjeDw/I8cdBjeDw.js\";import*as sharedStyle11 from\"#framer/local/css/kjtFH8iPF/kjtFH8iPF.js\";import*as sharedStyle15 from\"#framer/local/css/LwZkDBBLE/LwZkDBBLE.js\";import*as sharedStyle6 from\"#framer/local/css/Qi0Xjl_eU/Qi0Xjl_eU.js\";import*as sharedStyle20 from\"#framer/local/css/ro7OPezbn/ro7OPezbn.js\";import*as sharedStyle4 from\"#framer/local/css/tBLMVSfWm/tBLMVSfWm.js\";import*as sharedStyle9 from\"#framer/local/css/uUtLIISFH/uUtLIISFH.js\";import*as sharedStyle10 from\"#framer/local/css/wG7uUfOTS/wG7uUfOTS.js\";import*as sharedStyle7 from\"#framer/local/css/YqCpqrbAN/YqCpqrbAN.js\";import*as sharedStyle12 from\"#framer/local/css/ZpWg5ocY9/ZpWg5ocY9.js\";import metadataProvider from\"#framer/local/webPageMetadata/m2qBlSG23/m2qBlSG23.js\";const NavbargoodFonts=getFonts(Navbargood);const HeroKickerFonts=getFonts(HeroKicker);const WhyHomaFonts=getFonts(WhyHoma);const MotionDivWithFX=withFX(motion.div);const EmbedFonts=getFonts(Embed);const HealthDashboardFonts=getFonts(HealthDashboard);const Embed1Fonts=getFonts(Embed1);const SocialMediaLinksFonts=getFonts(SocialMediaLinks);const PAYMENTQRCODEFonts=getFonts(PAYMENTQRCODE);const MailchimpFonts=getFonts(Mailchimp);const HomaPackageCalculatorFonts=getFonts(HomaPackageCalculator);const HomaServicesFonts=getFonts(HomaServices);const FAQFonts=getFonts(FAQ);const BookAConsultFonts=getFonts(BookAConsult);const TetsAnsWebsiteFonts=getFonts(TetsAnsWebsite);const BookAppointmentFonts=getFonts(BookAppointment);const FooterFonts=getFonts(Footer);const breakpoints={dsOrQQm86:\"(min-width: 1000px)\",WKd2n1rex:\"(max-width: 999px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-DDTNw\";const variantClassNames={dsOrQQm86:\"framer-v-1nxh6jd\",WKd2n1rex:\"framer-v-1h87wot\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition1={delay:3.3,duration:2.2,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:3.9,skewX:0,skewY:0,x:0,y:0};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 HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"dsOrQQm86\",iphone:\"WKd2n1rex\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"dsOrQQm86\"};};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:{constraint:{left:{collection:\"m2qBlSG23\",name:\"nextItemId\",type:\"Identifier\"},operator:\"==\",right:{collection:\"nextItemId\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{constraint:{left:{collection:\"m2qBlSG23\",name:\"previousItemId\",type:\"Identifier\"},operator:\"==\",right:{collection:\"previousItemId\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{constraint:{left:{collection:\"m2qBlSG23\",name:\"jvXuKnZjj\",type:\"Identifier\"},operator:\"==\",right:{collection:\"jvXuKnZjj\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{alias:\"m2qBlSG23\",data:Articles,type:\"Collection\"},right:{alias:\"jvXuKnZjj\",data:AUTHOR,type:\"Collection\"},type:\"LeftJoin\"},right:{alias:\"previousItemId\",data:Articles,type:\"Collection\"},type:\"LeftJoin\"},right:{alias:\"nextItemId\",data:Articles,type:\"Collection\"},type:\"LeftJoin\"},select:[{collection:\"m2qBlSG23\",name:\"YmxbJBww1\",type:\"Identifier\"},{collection:\"m2qBlSG23\",name:\"ZMfRthFau\",type:\"Identifier\"},{collection:\"m2qBlSG23\",name:\"FdYZPyl84\",type:\"Identifier\"},{collection:\"m2qBlSG23\",name:\"TkddEdlLX\",type:\"Identifier\"},{collection:\"m2qBlSG23\",name:\"tAJoU_HZq\",type:\"Identifier\"},{alias:\"jvXuKnZjj.Kq_mH3OpT\",collection:\"jvXuKnZjj\",name:\"Kq_mH3OpT\",type:\"Identifier\"},{collection:\"m2qBlSG23\",name:\"gAjP230md\",type:\"Identifier\"},{collection:\"m2qBlSG23\",name:\"HMkygVwke\",type:\"Identifier\"},{collection:\"m2qBlSG23\",name:\"hEhFOrMbp\",type:\"Identifier\"},{collection:\"m2qBlSG23\",name:\"vZgHBxWD8\",type:\"Identifier\"},{collection:\"m2qBlSG23\",name:\"uotHGn_v0\",type:\"Identifier\"},{alias:\"previousItemId.YmxbJBww1\",collection:\"previousItemId\",name:\"YmxbJBww1\",type:\"Identifier\"},{alias:\"previousItemId\",collection:\"previousItemId\",name:\"id\",type:\"Identifier\"},{alias:\"nextItemId\",collection:\"nextItemId\",name:\"id\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"m2qBlSG23\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,tAJoU_HZq=getFromCurrentRouteData(\"tAJoU_HZq\")??\"\",FdYZPyl84=getFromCurrentRouteData(\"FdYZPyl84\"),hEhFOrMbp=getFromCurrentRouteData(\"hEhFOrMbp\")??\"\",vZgHBxWD8=getFromCurrentRouteData(\"vZgHBxWD8\"),YmxbJBww1=getFromCurrentRouteData(\"YmxbJBww1\")??\"\",jvXuKnZjj_Kq_mH3OpT=getFromCurrentRouteData(\"jvXuKnZjj.Kq_mH3OpT\"),ZMfRthFau=getFromCurrentRouteData(\"ZMfRthFau\"),uotHGn_v0=getFromCurrentRouteData(\"uotHGn_v0\")??\"\",TkddEdlLX=getFromCurrentRouteData(\"TkddEdlLX\")??\"\",HMkygVwke=getFromCurrentRouteData(\"HMkygVwke\")??\"\",gAjP230md=getFromCurrentRouteData(\"gAjP230md\"),previousItemId=getFromCurrentRouteData(\"previousItemId\"),previousItemId_YmxbJBww1=getFromCurrentRouteData(\"previousItemId.YmxbJBww1\")??\"\",nextItemId=getFromCurrentRouteData(\"nextItemId\"),...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 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 elementId=useRouteElementId(\"ZFtzjZSeS\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"wDEZIorsI\");const ref2=React.useRef(null);const activeLocaleCode=useLocaleCode();const textContent=toDateString(ZMfRthFau,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"WKd2n1rex\")return false;return true;};const elementId2=useRouteElementId(\"DL3jOxAb0\");const ref3=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"dsOrQQm86\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: none; }\"}),/*#__PURE__*/_jsxs(Image,{...restProps,background:{alt:\"Dr. M. Surendra Nehru, a leading physician and professor of medicine with over 500 success stories! \",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:1200,pixelWidth:600,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/rI6peiKOWVo4ntDbqDRxUe2cXE.png\",srcSet:\"https://framerusercontent.com/images/rI6peiKOWVo4ntDbqDRxUe2cXE.png?scale-down-to=1024 512w,https://framerusercontent.com/images/rI6peiKOWVo4ntDbqDRxUe2cXE.png 600w\"},className:cx(scopingClassNames,\"framer-1nxh6jd\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1daek9f\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WKd2n1rex:{width:\"390px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:366,width:\"1000px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1b96ssn-container\",nodeId:\"sqr7_yvQo\",scopeId:\"m2qBlSG23\",children:/*#__PURE__*/_jsx(Navbargood,{height:\"100%\",id:\"sqr7_yvQo\",layoutId:\"sqr7_yvQo\",m4LpwjDZL:\"WOMEN AND HOMA\",nHngVCHSU:\"wUGohnL0P\",style:{width:\"100%\"},sWbc6M4go:\"rgb(172, 230, 201)\",variant:\"QoQyxTYTT\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14hq4wk\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-z959jv-container\",isAuthoredByUser:true,nodeId:\"Z2T36ykRX\",scopeId:\"m2qBlSG23\",children:/*#__PURE__*/_jsx(HeroKicker,{height:\"100%\",id:\"Z2T36ykRX\",layoutId:\"Z2T36ykRX\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1v97iy1\",\"data-styles-preset\":\"F2xgwzhKQ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(26, 2, 2)\"},children:\"INDIA OBESITY EPIDEMIC AND ROLE OF HOMA IN  early detection of silent diseases\"})}),className:\"framer-1ssvko5\",\"data-framer-name\":\"keyword\",fonts:[\"Inter\"],text:tAJoU_HZq,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WKd2n1rex:{background:{alt:\"\",fit:\"fit\",sizes:\"385px\",...toResponsiveImage(FdYZPyl84),...{positionX:\"center\",positionY:\"center\"}}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:\"980px\",...toResponsiveImage(FdYZPyl84),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-if6e21\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cqbasl\",children:/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\":componentPresets.props[\"oWyVL6Hji\"],\"module:pVk4QsoHxASnVtUBp6jr/QVzZltTawVJTjmjAWG3C/CodeBlock.js:default\":componentPresets.props[\"fTeTAOdCX\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:hEhFOrMbp,className:\"framer-16dyudd\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-12r9scb\",code:\"framer-styles-preset-3nbk5y\",h1:\"framer-styles-preset-1v97iy1\",h2:\"framer-styles-preset-1sv76fm\",h3:\"framer-styles-preset-c98m33\",h4:\"framer-styles-preset-188o9p\",h5:\"framer-styles-preset-s7ab6u\",h6:\"framer-styles-preset-1ejmy3n\",img:\"framer-styles-preset-kpndjx\",p:\"framer-styles-preset-1gdrxby\"},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WKd2n1rex:{width:\"387px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1062,width:\"890px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-flargv-container\",nodeId:\"CBCA52eWn\",scopeId:\"m2qBlSG23\",children:/*#__PURE__*/_jsx(WhyHoma,{height:\"100%\",id:\"CBCA52eWn\",layoutId:\"CBCA52eWn\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-yqkjbu\",\"data-framer-name\":\"scroll1\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:animation},__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-19tnhg1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WKd2n1rex:{background:{alt:\"iron fill chart\",fit:\"fit\",pixelHeight:864,pixelWidth:1536,positionX:\"center\",positionY:\"center\",sizes:\"385px\",src:\"https://framerusercontent.com/images/v6iXFzQs5QwoSsbM6GqQEwIovo.jpg\",srcSet:\"https://framerusercontent.com/images/v6iXFzQs5QwoSsbM6GqQEwIovo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/v6iXFzQs5QwoSsbM6GqQEwIovo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/v6iXFzQs5QwoSsbM6GqQEwIovo.jpg 1536w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"iron fill chart\",fit:\"fit\",pixelHeight:864,pixelWidth:1536,positionX:\"center\",positionY:\"center\",sizes:\"980px\",src:\"https://framerusercontent.com/images/v6iXFzQs5QwoSsbM6GqQEwIovo.jpg\",srcSet:\"https://framerusercontent.com/images/v6iXFzQs5QwoSsbM6GqQEwIovo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/v6iXFzQs5QwoSsbM6GqQEwIovo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/v6iXFzQs5QwoSsbM6GqQEwIovo.jpg 1536w\"},className:\"framer-lyjegs\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WKd2n1rex:{background:{alt:\"\",fit:\"fit\",pixelHeight:1350,pixelWidth:2400,sizes:\"385px\",...toResponsiveImage(vZgHBxWD8),...{positionX:\"center\",positionY:\"center\"}}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:1350,pixelWidth:2400,sizes:\"1000px\",...toResponsiveImage(vZgHBxWD8),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1xnn1yj\"})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:864,pixelWidth:1536,sizes:\"400px\",src:\"https://framerusercontent.com/images/Tacxb8eg9WvaOPCkXHVDAHnHTcQ.jpg\",srcSet:\"https://framerusercontent.com/images/Tacxb8eg9WvaOPCkXHVDAHnHTcQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Tacxb8eg9WvaOPCkXHVDAHnHTcQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Tacxb8eg9WvaOPCkXHVDAHnHTcQ.jpg 1536w\"},className:\"framer-1rv7xvx\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:864,pixelWidth:1536,positionX:\"center\",positionY:\"center\",sizes:\"400px\",src:\"https://framerusercontent.com/images/vvd6sXcHgzrRgyHHfBGmrPpbE.jpg\",srcSet:\"https://framerusercontent.com/images/vvd6sXcHgzrRgyHHfBGmrPpbE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/vvd6sXcHgzrRgyHHfBGmrPpbE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/vvd6sXcHgzrRgyHHfBGmrPpbE.jpg 1536w\"},className:\"framer-19xqbw3\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:864,pixelWidth:1536,positionX:\"center\",positionY:\"center\",sizes:\"400px\",src:\"https://framerusercontent.com/images/hYJTZdh0RkkHlxZBd1TIjoAU.jpg\",srcSet:\"https://framerusercontent.com/images/hYJTZdh0RkkHlxZBd1TIjoAU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/hYJTZdh0RkkHlxZBd1TIjoAU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/hYJTZdh0RkkHlxZBd1TIjoAU.jpg 1536w\"},className:\"framer-bi0m65\"})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-11yp1br-container\",id:elementId,isModuleExternal:true,nodeId:\"ZFtzjZSeS\",ref:ref1,scopeId:\"m2qBlSG23\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/fls6dGpvdjY?si=SZuLF2qDCiMMX5mc\" title=\"YouTube video player\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>',id:\"ZFtzjZSeS\",layoutId:\"ZFtzjZSeS\",radius:\"0px\",style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\",zoom:1})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pqkc14\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WKd2n1rex:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-v4w5z9\",\"data-styles-preset\":\"kjtFH8iPF\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(242, 10, 52)\"},children:\"Iron-Rich Plant-Based Foods: Best Sources & Benefits\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-czl9h9\",\"data-styles-preset\":\"wG7uUfOTS\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(242, 10, 52)\"},children:\"Global Diabetes Burden (2023-2045):\"})}),className:\"framer-d2t55i\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:YmxbJBww1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WKd2n1rex:{background:{alt:\"\",fit:\"fill\",sizes:\"100px\",...toResponsiveImage(jvXuKnZjj_Kq_mH3OpT)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"40px\",...toResponsiveImage(jvXuKnZjj_Kq_mH3OpT)},className:\"framer-1e1bd8q\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-gqqk23\",id:elementId1,ref:ref2,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1eqcoca\",\"data-styles-preset\":\"ZpWg5ocY9\",children:\"Global Diabetes Burden (2023-2045):\"})}),className:\"framer-168u6ae\",fonts:[\"Inter\"],text:YmxbJBww1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1gdrxby\",\"data-styles-preset\":\"Qi0Xjl_eU\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"Mar 26, 2025\"})}),className:\"framer-16fp4cw\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\":componentPresets.props[\"oWyVL6Hji\"],\"module:pVk4QsoHxASnVtUBp6jr/QVzZltTawVJTjmjAWG3C/CodeBlock.js:default\":componentPresets.props[\"fTeTAOdCX\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:hEhFOrMbp,className:\"framer-sgfo6y hidden-1h87wot\",fonts:[\"GF;Inter-700\"],id:elementId2,ref:ref3,stylesPresetsClassNames:{a:\"framer-styles-preset-12r9scb\",code:\"framer-styles-preset-3nbk5y\",h1:\"framer-styles-preset-1v97iy1\",h2:\"framer-styles-preset-1sv76fm\",h3:\"framer-styles-preset-68uri5\",h4:\"framer-styles-preset-188o9p\",h5:\"framer-styles-preset-s7ab6u\",h6:\"framer-styles-preset-1oe90vj\",img:\"framer-styles-preset-kpndjx\",p:\"framer-styles-preset-1gdrxby\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1a6zh36\",\"data-framer-name\":\"connect nehru\",children:/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\":componentPresets.props[\"oWyVL6Hji\"],\"module:pVk4QsoHxASnVtUBp6jr/QVzZltTawVJTjmjAWG3C/CodeBlock.js:default\":componentPresets.props[\"fTeTAOdCX\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:uotHGn_v0,className:\"framer-stu1xm\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-12r9scb\",code:\"framer-styles-preset-3nbk5y\",h1:\"framer-styles-preset-1v97iy1\",h2:\"framer-styles-preset-1sv76fm\",h3:\"framer-styles-preset-1h1a9qn\",h4:\"framer-styles-preset-1ue1he\",h5:\"framer-styles-preset-s7ab6u\",h6:\"framer-styles-preset-141eii2\",img:\"framer-styles-preset-kpndjx\",p:\"framer-styles-preset-rskrtm\"},verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-11z9bm9-container\",isAuthoredByUser:true,nodeId:\"NAbHTk7xE\",scopeId:\"m2qBlSG23\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WKd2n1rex:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(HealthDashboard,{height:\"100%\",id:\"NAbHTk7xE\",layoutId:\"NAbHTk7xE\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-14nsh1t-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"raAHQ_IsH\",scopeId:\"m2qBlSG23\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WKd2n1rex:{style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(Embed1,{height:\"100%\",html:'<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/kkbNPlRW3ZU?si=rSoAW-yC68OEJxE1\" title=\"YouTube video player\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>',id:\"raAHQ_IsH\",layoutId:\"raAHQ_IsH\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-z4e95x-container\",isAuthoredByUser:true,nodeId:\"W9THAdVV4\",scopeId:\"m2qBlSG23\",children:/*#__PURE__*/_jsx(SocialMediaLinks,{height:\"100%\",id:\"W9THAdVV4\",layoutId:\"W9THAdVV4\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WKd2n1rex:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1sv76fm\",\"data-styles-preset\":\"I8cdBjeDw\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})}),className:\"framer-velvwo\",\"data-framer-name\":\"introduction\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ffa4ib\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WKd2n1rex:{background:{alt:\"\",fit:\"fit\",pixelHeight:540,pixelWidth:960,positionX:\"center\",positionY:\"center\",sizes:\"305px\",src:\"https://framerusercontent.com/images/5yK0Eg5Bbg8xs5EiabOqbTdox7U.jpg\",srcSet:\"https://framerusercontent.com/images/5yK0Eg5Bbg8xs5EiabOqbTdox7U.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/5yK0Eg5Bbg8xs5EiabOqbTdox7U.jpg 960w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:\"1000px\",...toResponsiveImage(vZgHBxWD8),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-6pnxe9\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tym09b\",children:/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\":componentPresets.props[\"oWyVL6Hji\"],\"module:pVk4QsoHxASnVtUBp6jr/QVzZltTawVJTjmjAWG3C/CodeBlock.js:default\":componentPresets.props[\"fTeTAOdCX\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:TkddEdlLX,className:\"framer-19g56lh\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-12r9scb\",code:\"framer-styles-preset-3nbk5y\",h1:\"framer-styles-preset-1v97iy1\",h2:\"framer-styles-preset-1sv76fm\",h3:\"framer-styles-preset-68uri5\",h4:\"framer-styles-preset-188o9p\",h5:\"framer-styles-preset-s7ab6u\",h6:\"framer-styles-preset-1ejmy3n\",img:\"framer-styles-preset-kpndjx\",p:\"framer-styles-preset-1gdrxby\"},verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WKd2n1rex:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:4e3,intrinsicWidth:2250,pixelHeight:904,pixelWidth:1200,positionX:\"center\",positionY:\"center\",sizes:\"390px\",src:\"https://framerusercontent.com/images/0TwhYsUYUvGFSmCaCp5q6c98.png\",srcSet:\"https://framerusercontent.com/images/0TwhYsUYUvGFSmCaCp5q6c98.png?scale-down-to=512 512w,https://framerusercontent.com/images/0TwhYsUYUvGFSmCaCp5q6c98.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0TwhYsUYUvGFSmCaCp5q6c98.png 1200w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"header\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:2250,pixelHeight:904,pixelWidth:1200,sizes:\"1000px\",src:\"https://framerusercontent.com/images/0TwhYsUYUvGFSmCaCp5q6c98.png\",srcSet:\"https://framerusercontent.com/images/0TwhYsUYUvGFSmCaCp5q6c98.png?scale-down-to=512 512w,https://framerusercontent.com/images/0TwhYsUYUvGFSmCaCp5q6c98.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0TwhYsUYUvGFSmCaCp5q6c98.png 1200w\"},className:\"framer-1c0qpd6\",\"data-framer-name\":\"telugu homa\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ka258e\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ieflbe\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WKd2n1rex:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"KTHZHj8VO\"},motionChild:true,nodeId:\"SLjSKhbKt\",openInNewTab:false,scopeId:\"m2qBlSG23\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-12r9scb\",\"data-styles-preset\":\"YqCpqrbAN\",children:\"Get Started\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Get Started\"})}),className:\"framer-1y0zyqu\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-d3ktmi\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Learn More\"})}),className:\"framer-sz7b4n\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\":componentPresets.props[\"oWyVL6Hji\"],\"module:pVk4QsoHxASnVtUBp6jr/QVzZltTawVJTjmjAWG3C/CodeBlock.js:default\":componentPresets.props[\"fTeTAOdCX\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:HMkygVwke,className:\"framer-1eye417\",\"data-framer-name\":\"tag\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-12r9scb\",code:\"framer-styles-preset-3nbk5y\",h1:\"framer-styles-preset-1v97iy1\",h2:\"framer-styles-preset-1sv76fm\",h3:\"framer-styles-preset-68uri5\",h4:\"framer-styles-preset-188o9p\",h5:\"framer-styles-preset-s7ab6u\",h6:\"framer-styles-preset-1ejmy3n\",img:\"framer-styles-preset-kpndjx\",p:\"framer-styles-preset-1ryab0a\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WKd2n1rex:{width:\"380px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:2158,width:\"600px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gu4260-container\",nodeId:\"BLSRre6wA\",scopeId:\"m2qBlSG23\",children:/*#__PURE__*/_jsx(PAYMENTQRCODE,{height:\"100%\",id:\"BLSRre6wA\",IWN6BLHC_:toResponsiveImage(vZgHBxWD8),layoutId:\"BLSRre6wA\",NukYIF6wx:previousItemId_YmxbJBww1,o74CPaMYD:previousItemId,style:{width:\"100%\"},sYKU43_Eq:nextItemId,width:\"100%\",wk10RADba:toResponsiveImage(gAjP230md),wqN6Q3HsI:YmxbJBww1})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kzm1zr-container\",isAuthoredByUser:true,nodeId:\"TTkGX_fd1\",scopeId:\"m2qBlSG23\",children:/*#__PURE__*/_jsx(Mailchimp,{borderRadius:8,bottomLeftRadius:8,bottomRightRadius:8,button:{color:\"rgb(255, 255, 255)\",fill:\"rgb(0, 0, 0)\",fontWeight:600,label:\"Sign Up\"},font:false,fontFamily:\"Inter\",fontSize:16,fontWeight:400,gap:15,height:\"100%\",id:\"TTkGX_fd1\",input:{color:\"rgb(0, 0, 0)\",error:\"rgb(238, 68, 68)\",fill:\"rgb(235, 235, 235)\",placeholder:\"email@framer.com\",placeholderColor:\"rgba(0, 0, 0, 0.3)\",value:\"\"},isMixedBorderRadius:false,layout:\"horizontal\",layoutId:\"TTkGX_fd1\",padding:15,paddingBottom:15,paddingLeft:15,paddingPerSide:false,paddingRight:15,paddingTop:15,style:{width:\"100%\"},topLeftRadius:8,topRightRadius:8,url:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-f73bx7-container\",isAuthoredByUser:true,nodeId:\"icefJWeDp\",scopeId:\"m2qBlSG23\",children:/*#__PURE__*/_jsx(HomaPackageCalculator,{height:\"100%\",id:\"icefJWeDp\",layoutId:\"icefJWeDp\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ft1m4g-container\",isAuthoredByUser:true,nodeId:\"KlWBqAaZe\",scopeId:\"m2qBlSG23\",children:/*#__PURE__*/_jsx(HomaServices,{height:\"100%\",id:\"KlWBqAaZe\",layoutId:\"KlWBqAaZe\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WKd2n1rex:{width:\"389px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:514,width:\"890px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fq8cb-container\",nodeId:\"uH4FOpYA0\",scopeId:\"m2qBlSG23\",children:/*#__PURE__*/_jsx(FAQ,{height:\"100%\",id:\"uH4FOpYA0\",layoutId:\"uH4FOpYA0\",style:{width:\"100%\"},variant:\"lv9cM3whR\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-upu6vf-container\",isAuthoredByUser:true,nodeId:\"WrN3chpIV\",scopeId:\"m2qBlSG23\",children:/*#__PURE__*/_jsx(SocialMediaLinks,{height:\"100%\",id:\"WrN3chpIV\",layoutId:\"WrN3chpIV\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WKd2n1rex:{width:\"290px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,width:\"980px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-ww2ft-container\",nodeId:\"CjNvcUEwv\",scopeId:\"m2qBlSG23\",children:/*#__PURE__*/_jsx(BookAConsult,{height:\"100%\",id:\"CjNvcUEwv\",layoutId:\"CjNvcUEwv\",style:{width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WKd2n1rex:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(225, 230, 235)\"},children:\"Sign up today.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Sign up today.\"})}),className:\"framer-1aw8yxj\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-a4xekr\",\"data-framer-name\":\"footer1\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1iabv0o\",\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-kwzrwm-container\",isAuthoredByUser:true,nodeId:\"CsQ045GTY\",scopeId:\"m2qBlSG23\",children:/*#__PURE__*/_jsx(HomaServices,{height:\"100%\",id:\"CsQ045GTY\",layoutId:\"CsQ045GTY\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WKd2n1rex:{width:\"387px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:364,width:\"890px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-4o95wo-container\",nodeId:\"ieBW77YnO\",scopeId:\"m2qBlSG23\",children:/*#__PURE__*/_jsx(TetsAnsWebsite,{height:\"100%\",id:\"ieBW77YnO\",layoutId:\"ieBW77YnO\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WKd2n1rex:{width:\"390px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1190,width:\"933px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1umrcc1-container\",nodeId:\"vWGztshlV\",scopeId:\"m2qBlSG23\",children:/*#__PURE__*/_jsx(BookAppointment,{height:\"100%\",id:\"vWGztshlV\",layoutId:\"vWGztshlV\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-13e0f1y-container\",isAuthoredByUser:true,nodeId:\"X4rzek9EQ\",scopeId:\"m2qBlSG23\",children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"X4rzek9EQ\",layoutId:\"X4rzek9EQ\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-65jziw\",\"data-framer-name\":\"Buttons\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"QKO1QCcAh\"},motionChild:true,nodeId:\"LQJpOYagr\",scopeId:\"m2qBlSG23\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-iybd3y framer-1q55fwy\",\"data-framer-name\":\"Button\",\"data-reset\":\"button\",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\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(17, 17, 17))\"},children:\"Learn More\"})}),className:\"framer-fvps2t\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"button\",{className:\"framer-340trg\",\"data-framer-name\":\"Button\",\"data-reset\":\"button\",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\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"JE57E1JZH\"},motionChild:true,nodeId:\"zvY7DiASK\",openInNewTab:false,scopeId:\"m2qBlSG23\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Get Started\"})})})}),className:\"framer-s6mgqw\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-DDTNw.framer-1q55fwy, .framer-DDTNw .framer-1q55fwy { display: block; }\",\".framer-DDTNw.framer-1nxh6jd { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: wrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1000px; }\",\".framer-DDTNw .framer-1daek9f { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; max-width: 1000px; padding: 50px 10px 20px 10px; position: relative; width: 1000px; }\",\".framer-DDTNw .framer-1b96ssn-container { flex: none; height: auto; position: relative; width: 1000px; }\",\".framer-DDTNw .framer-14hq4wk { 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: 0px; position: relative; width: 900px; }\",\".framer-DDTNw .framer-z959jv-container, .framer-DDTNw .framer-11z9bm9-container, .framer-DDTNw .framer-z4e95x-container, .framer-DDTNw .framer-f73bx7-container, .framer-DDTNw .framer-1ft1m4g-container, .framer-DDTNw .framer-upu6vf-container, .framer-DDTNw .framer-kwzrwm-container, .framer-DDTNw .framer-13e0f1y-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-DDTNw .framer-1ssvko5, .framer-DDTNw .framer-d2t55i, .framer-DDTNw .framer-16fp4cw, .framer-DDTNw .framer-1eye417 { flex: none; height: auto; max-width: 600px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-DDTNw .framer-if6e21 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: center; max-width: 1000px; min-height: 300px; overflow: hidden; padding: 0px; position: relative; width: 980px; }\",\".framer-DDTNw .framer-1cqbasl { align-content: center; align-items: center; background-color: rgba(244, 227, 250, 0.98); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 900px; overflow: hidden; padding: 0px 10px 0px 10px; position: relative; width: 900px; }\",\".framer-DDTNw .framer-16dyudd { --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-DDTNw .framer-flargv-container, .framer-DDTNw .framer-1fq8cb-container, .framer-DDTNw .framer-4o95wo-container { flex: none; height: auto; position: relative; width: 890px; }\",\".framer-DDTNw .framer-yqkjbu { 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: hidden; padding: 0px 0px 30px 0px; position: relative; width: 100%; }\",\".framer-DDTNw .framer-19tnhg1 { align-content: center; align-items: center; background-color: rgba(244, 227, 250, 0.98); 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: 980px; }\",\".framer-DDTNw .framer-lyjegs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 300px; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-DDTNw .framer-1xnn1yj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 300px; justify-content: center; padding: 0px; position: relative; width: 1000px; }\",\".framer-DDTNw .framer-1rv7xvx, .framer-DDTNw .framer-19xqbw3, .framer-DDTNw .framer-bi0m65 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 300px; justify-content: center; padding: 0px; position: relative; width: 400px; }\",\".framer-DDTNw .framer-11yp1br-container { flex: none; height: 400px; max-width: 980px; position: relative; width: 100%; }\",\".framer-DDTNw .framer-pqkc14 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; max-width: 100%; padding: 0px; position: relative; width: 1000px; }\",\".framer-DDTNw .framer-1e1bd8q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 40px; }\",\".framer-DDTNw .framer-gqqk23 { align-content: center; align-items: center; background-color: rgba(238, 235, 240, 0.98); display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 32px; height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 10px; position: relative; width: 600px; }\",\".framer-DDTNw .framer-168u6ae, .framer-DDTNw .framer-19g56lh { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-DDTNw .framer-sgfo6y { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-DDTNw .framer-1a6zh36 { align-content: center; align-items: center; background-color: rgba(244, 227, 250, 0.98); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 10px 0px 0px 30px; position: relative; width: 1000px; }\",\".framer-DDTNw .framer-stu1xm { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-DDTNw .framer-14nsh1t-container { flex: none; height: 400px; position: relative; width: 600px; }\",\".framer-DDTNw .framer-velvwo { --framer-paragraph-spacing: 32px; flex: none; height: auto; max-width: 600px; position: relative; white-space: pre-wrap; width: 600px; word-break: break-word; word-wrap: break-word; }\",\".framer-DDTNw .framer-1ffa4ib { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 10px 0px 10px 0px; position: relative; width: 1000px; }\",\".framer-DDTNw .framer-6pnxe9 { flex: none; height: 300px; position: relative; width: 100%; }\",\".framer-DDTNw .framer-1tym09b { align-content: center; align-items: center; background-color: #44ccff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 980px; overflow: hidden; padding: 0px 0px 0px 10px; position: relative; width: 100%; }\",\".framer-DDTNw .framer-1c0qpd6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 10px 60px 60px 60px; position: relative; width: 1000px; }\",\".framer-DDTNw .framer-1ka258e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; z-index: 1; }\",\".framer-DDTNw .framer-1ieflbe { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 15px; position: relative; width: min-content; }\",\".framer-DDTNw .framer-1y0zyqu, .framer-DDTNw .framer-sz7b4n, .framer-DDTNw .framer-fvps2t { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-DDTNw .framer-d3ktmi { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0.25); 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: 40px; justify-content: center; overflow: visible; padding: 15px; position: relative; width: min-content; }\",\".framer-DDTNw .framer-1gu4260-container { flex: none; height: auto; position: relative; width: 600px; }\",\".framer-DDTNw .framer-1kzm1zr-container { flex: none; height: auto; position: relative; width: 430px; }\",\".framer-DDTNw .framer-ww2ft-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-DDTNw .framer-1aw8yxj { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-DDTNw .framer-a4xekr { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 10px 20px 30px 50px; position: relative; width: 1000px; }\",\".framer-DDTNw .framer-1iabv0o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 1000px; }\",\".framer-DDTNw .framer-1umrcc1-container { flex: none; height: auto; position: relative; width: 933px; }\",\".framer-DDTNw .framer-65jziw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-DDTNw .framer-iybd3y { align-content: center; align-items: center; background-color: #f2f2f2; 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: 40px; justify-content: center; overflow: visible; padding: 15px; position: relative; text-decoration: none; width: min-content; }\",\".framer-DDTNw .framer-340trg { align-content: center; align-items: center; background-color: #f5a9a9; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 0.7065919983928324px 0.7065919983928324px -0.625px rgba(0, 0, 0, 0.15), 0px 1.8065619053231785px 1.8065619053231785px -1.25px rgba(0, 0, 0, 0.14), 0px 3.6217592146567767px 3.6217592146567767px -1.875px rgba(0, 0, 0, 0.14), 0px 6.8655999097303715px 6.8655999097303715px -2.5px rgba(0, 0, 0, 0.13), 0px 13.646761411524492px 13.646761411524492px -3.125px rgba(0, 0, 0, 0.1), 0px 30px 30px -3.75px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 15px; position: relative; width: min-content; }\",\".framer-DDTNw .framer-s6mgqw { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",...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,\"@media (max-width: 999px) { .framer-DDTNw.framer-1nxh6jd, .framer-DDTNw .framer-yqkjbu, .framer-DDTNw .framer-1umrcc1-container { width: 390px; } .framer-DDTNw .framer-1daek9f { max-width: 390px; padding: 10px 50px 10px 50px; width: 390px; } .framer-DDTNw .framer-1b96ssn-container { order: 0; width: 390px; } .framer-DDTNw .framer-14hq4wk { order: 1; width: 390px; } .framer-DDTNw .framer-if6e21 { max-width: 385px; width: 385px; } .framer-DDTNw .framer-1cqbasl { width: 100%; } .framer-DDTNw .framer-flargv-container, .framer-DDTNw .framer-4o95wo-container { width: 387px; } .framer-DDTNw .framer-19tnhg1 { width: 385px; } .framer-DDTNw .framer-1xnn1yj { max-width: 390px; width: 385px; } .framer-DDTNw .framer-pqkc14 { max-width: 390px; order: 2; padding: 10px 30px 10px 3px; width: 385px; } .framer-DDTNw .framer-1e1bd8q { height: 100px; width: 100px; } .framer-DDTNw .framer-gqqk23 { padding: 10px 30px 10px 10px; width: 340px; } .framer-DDTNw .framer-1a6zh36 { flex-direction: column; width: 390px; } .framer-DDTNw .framer-stu1xm { flex: none; width: 100%; } .framer-DDTNw .framer-11z9bm9-container { order: 3; width: 386px; } .framer-DDTNw .framer-14nsh1t-container { max-width: 390px; order: 4; width: 350px; } .framer-DDTNw .framer-z4e95x-container { order: 5; } .framer-DDTNw .framer-velvwo { max-width: 390px; order: 6; width: 356px; } .framer-DDTNw .framer-1ffa4ib { max-width: 390px; order: 7; padding: 10px 75px 10px 10px; width: 390px; } .framer-DDTNw .framer-19g56lh { order: 0; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-DDTNw .framer-1c0qpd6 { max-width: 390px; order: 8; width: 390px; } .framer-DDTNw .framer-1eye417 { order: 9; } .framer-DDTNw .framer-1gu4260-container { order: 10; width: 380px; } .framer-DDTNw .framer-1kzm1zr-container { order: 11; width: 360px; } .framer-DDTNw .framer-f73bx7-container { order: 12; } .framer-DDTNw .framer-1ft1m4g-container { order: 13; } .framer-DDTNw .framer-1fq8cb-container { order: 14; width: 389px; } .framer-DDTNw .framer-upu6vf-container { order: 15; } .framer-DDTNw .framer-ww2ft-container { order: 16; } .framer-DDTNw .framer-a4xekr { padding: 10px 20px 30px 20px; width: 390px; } .framer-DDTNw .framer-1iabv0o { max-width: 390px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 18404\n * @framerIntrinsicWidth 1000\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"WKd2n1rex\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"ZFtzjZSeS\":{\"pattern\":\":ZFtzjZSeS\",\"name\":\"video\"},\"wDEZIorsI\":{\"pattern\":\":wDEZIorsI\",\"name\":\"s1\"},\"DL3jOxAb0\":{\"pattern\":\":DL3jOxAb0\",\"name\":\"section4\\\\\"}}\n * @framerResponsiveScreen\n */const Framerm2qBlSG23=withCSS(Component,css,\"framer-DDTNw\");export default Framerm2qBlSG23;Framerm2qBlSG23.displayName=\"Articles\";Framerm2qBlSG23.defaultProps={height:18404,width:1e3};addFonts(Framerm2qBlSG23,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"}]},...NavbargoodFonts,...HeroKickerFonts,...WhyHomaFonts,...EmbedFonts,...HealthDashboardFonts,...Embed1Fonts,...SocialMediaLinksFonts,...PAYMENTQRCODEFonts,...MailchimpFonts,...HomaPackageCalculatorFonts,...HomaServicesFonts,...FAQFonts,...BookAConsultFonts,...TetsAnsWebsiteFonts,...BookAppointmentFonts,...FooterFonts,...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?.[\"oWyVL6Hji\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"oWyVL6Hji\"]):[],...componentPresets.fonts?.[\"fTeTAOdCX\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"fTeTAOdCX\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerm2qBlSG23\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerResponsiveScreen\":\"\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WKd2n1rex\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1000\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerScrollSections\":\"{\\\"ZFtzjZSeS\\\":{\\\"pattern\\\":\\\":ZFtzjZSeS\\\",\\\"name\\\":\\\"video\\\"},\\\"wDEZIorsI\\\":{\\\"pattern\\\":\\\":wDEZIorsI\\\",\\\"name\\\":\\\"s1\\\"},\\\"DL3jOxAb0\\\":{\\\"pattern\\\":\\\":DL3jOxAb0\\\",\\\"name\\\":\\\"section4\\\\\\\\\\\"}}\",\"framerIntrinsicHeight\":\"18404\",\"framerAcceptsLayoutTemplate\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["Embed", "type", "url", "html", "style", "p", "EmbedUrl", "EmbedHtml", "Instructions", "addPropertyControls", "ControlType", "props", "getMinHeight", "emptyStateStyle", "centerTextStyle", "hasAutoHeight", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "hasSplineViewer", "hasComment", "EmbedHtmlWithScripts", "EmbedHtmlInsideIframe", "EmbedHtmlWithoutScripts", "ref", "pe", "iframeHeight", "setIframeHeight", "_ref_current", "iframeWindow", "handleMessage", "event", "data", "height", "window", "srcDoc", "currentStyle", "div", "executeScripts", "htmlStyle", "node", "script", "name", "value", "child", "containerStyles", "MotionDivWithFX", "withFX", "motion", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "transformTemplate1", "_", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "css", "FramerNLuCNm8M5", "withCSS", "NLuCNm8M5_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "VideoFonts", "getFonts", "Video", "UpiPaymentSectionFonts", "UpiPaymentSection", "ButtonFonts", "NLuCNm8M5_default", "serializationHash", "variantClassNames", "transition1", "toResponsiveImage", "value", "isSet", "convertFromBoolean", "activeLocale", "toString", "prefix", "suffix", "formVariants", "form", "variants", "currentVariant", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "image3", "link", "next", "previous", "thumbnaillink1", "title", "title2", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "wk10RADba", "EXOvpKLX9", "o74CPaMYD", "NukYIF6wx", "IWN6BLHC_", "sYKU43_Eq", "wqN6Q3HsI", "previousItemId_smfTyzFRBm2qBlSG23", "nextItemId_smfTyzFRBm2qBlSG23", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "visible", "textContent", "visible1", "textContent1", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "SmartComponentScopedContainer", "Video", "RichText2", "Link", "UpiPaymentSection", "FormContainer", "formState", "l", "FormPlainTextInput2", "FormSelect", "NLuCNm8M5_default", "css", "FramertTccd7Ihc", "withCSS", "tTccd7Ihc_default", "addPropertyControls", "ControlType", "addFonts", "VideoFonts", "UpiPaymentSectionFonts", "ButtonFonts", "getFontsFromSharedStyle", "fonts", "HeroKicker", "props", "orange", "u", "p", "_", "i", "props", "fonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "NavbargoodFonts", "getFonts", "FjkNcsf30_default", "HeroKickerFonts", "HeroKicker", "WhyHomaFonts", "xWlTTs1zG_default", "MotionDivWithFX", "withFX", "motion", "EmbedFonts", "Embed", "HealthDashboardFonts", "HealthDashboard", "Embed1Fonts", "SocialMediaLinksFonts", "SocialMediaLinks", "PAYMENTQRCODEFonts", "tTccd7Ihc_default", "MailchimpFonts", "Mailchimp_default", "HomaPackageCalculatorFonts", "HomaPackageCalculator", "HomaServicesFonts", "Gst_1_default", "FAQFonts", "E7fYql7kA_default", "BookAConsultFonts", "EGzR0qNaM_default", "TetsAnsWebsiteFonts", "xA20v23Id_default", "BookAppointmentFonts", "i2UoQ8VvI_default", "FooterFonts", "Footer", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "toResponsiveImage", "value", "transition1", "animation", "toDateString", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "locale", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "useQueryData", "z1_d0phb5_default", "drgQZNLDZ_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "tAJoU_HZq", "FdYZPyl84", "hEhFOrMbp", "vZgHBxWD8", "YmxbJBww1", "jvXuKnZjj_Kq_mH3OpT", "ZMfRthFau", "uotHGn_v0", "TkddEdlLX", "HMkygVwke", "gAjP230md", "previousItemId", "previousItemId_YmxbJBww1", "nextItemId", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "activeLocaleCode", "useLocaleCode", "textContent", "isDisplayed", "elementId2", "ref3", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "Image2", "getLoadingLazyAtYPosition", "PropertyOverrides2", "ComponentViewportProvider", "Container", "RichText2", "x", "ComponentPresetsProvider", "Link", "css", "Framerm2qBlSG23", "withCSS", "m2qBlSG23_default", "addFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "__FramerMetadata__"]
}
