{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js", "ssg:https://framerusercontent.com/modules/KF0Y4vMRGs0ACWjCU7gQ/UaqszeUUzWoctwSOITWJ/EmISGGQMG.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 (c07a8c1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js\";import FooterMob from\"#framer/local/canvasComponent/fSVtnMms8/fSVtnMms8.js\";import NavbarTab from\"#framer/local/canvasComponent/IbF8lpmGq/IbF8lpmGq.js\";import FooterTab from\"#framer/local/canvasComponent/Iq95TgxH5/Iq95TgxH5.js\";import Menuuuu from\"#framer/local/canvasComponent/qbN5SkFAi/qbN5SkFAi.js\";import FooterWeb from\"#framer/local/canvasComponent/tustmHIiz/tustmHIiz.js\";import Navbar from\"#framer/local/canvasComponent/y9RMYFhYj/y9RMYFhYj.js\";import*as sharedStyle from\"#framer/local/css/HRQzjrOvX/HRQzjrOvX.js\";import metadataProvider from\"#framer/local/webPageMetadata/EmISGGQMG/EmISGGQMG.js\";const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const EmbedFonts=getFonts(Embed);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const NavbarFonts=getFonts(Navbar);const NavbarTabFonts=getFonts(NavbarTab);const FooterWebFonts=getFonts(FooterWeb);const FooterTabFonts=getFonts(FooterTab);const MotionDivWithFX=withFX(motion.div);const MenuuuuFonts=getFonts(Menuuuu);const FooterMobFonts=getFonts(FooterMob);const breakpoints={cnydXLVEX:\"(max-width: 1279px)\",kS8qeXIJv:\"(min-width: 1400px)\",Qf6vZMPfA:\"(min-width: 1280px) and (max-width: 1399px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-RQ89c\";const variantClassNames={cnydXLVEX:\"framer-v-16a894f\",kS8qeXIJv:\"framer-v-11aw39w\",Qf6vZMPfA:\"framer-v-baq4qq\"};const transition1={bounce:.1,delay:.6,duration:.8,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-20};const transition2={bounce:.1,delay:.8,duration:.8,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const transition3={bounce:.1,delay:.9,duration:.8,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const transition4={bounce:.1,delay:1,duration:.8,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const transition5={bounce:.1,delay:.4,duration:.8,type:\"spring\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const animation6={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-32};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition6={bounce:.1,delay:.3,duration:.8,type:\"spring\"};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const animation8={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40};const transition7={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7,x:0,y:40};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"kS8qeXIJv\",Phone:\"cnydXLVEX\",Tablet:\"Qf6vZMPfA\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"kS8qeXIJv\"};};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,fTq2o5Fvj,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,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);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"cnydXLVEX\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"Qf6vZMPfA\")return false;return true;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"Qf6vZMPfA\")return true;return false;};const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"cnydXLVEX\")return true;return false;};const isDisplayed4=()=>{if(!isBrowser())return true;if([\"cnydXLVEX\",\"Qf6vZMPfA\"].includes(baseVariant))return false;return true;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"kS8qeXIJv\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-11aw39w\",className),ref:refBinding,style:{...style},children:[isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5kli61 hidden-16a894f\",\"data-framer-name\":\"Contact Us\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-5ze38r\",\"data-framer-name\":\"Group 1000001766\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-sypbq8\",\"data-framer-name\":\"teenyicons:tick-circle-solid\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15mhro\",\"data-framer-name\":\"Frame 1000002089\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4imazh\",\"data-framer-name\":\"Frame 1000002072\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4kaieg\",\"data-framer-name\":\"Frame 1000002066\",children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dpbHJveS1Cb2xk\",\"--framer-font-family\":'\"Gilroy-Bold\", \"Gilroy-Bold Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"56px\",\"--framer-text-color\":\"rgb(13, 44, 90)\"},children:\"Say Hello!\"})}),className:\"framer-1o4t3qi\",\"data-framer-appear-id\":\"1o4t3qi\",\"data-framer-name\":\"Say Hello!\",fonts:[\"CUSTOM;Gilroy-Bold\"],initial:animation1,optimized:true,verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dpbHJveS1SZWd1bGFyIA==\",\"--framer-font-family\":'\"Gilroy-Regular \", \"Gilroy-Regular  Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"rgb(13, 44, 90)\"},children:\"Please reach out if you want to enquire how we  can help you. We are always available to get in touch!\"})}),className:\"framer-xudcm3\",\"data-framer-appear-id\":\"xudcm3\",\"data-framer-name\":\"Please reach out if you want to enquire how we can help you. We are always available to get in touch!\",fonts:[\"CUSTOM;Gilroy-Regular \"],initial:animation1,optimized:true,verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sc1gj5\",\"data-framer-name\":\"Frame 1000002071\",children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation3,className:\"framer-1szid3\",\"data-framer-appear-id\":\"1szid3\",\"data-framer-name\":\"socials\",initial:animation1,optimized:true,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1avoj0w\",\"data-framer-name\":\"Social Icons\",children:/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/company/wundrsight/\",motionChild:true,nodeId:\"I1810:3476;17:250\",scopeId:\"EmISGGQMG\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1bt194j framer-10quejs\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:33,intrinsicWidth:33,svg:'<svg width=\"33\" height=\"33\" viewBox=\"0 0 33 33\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M30.5572 0.5H2.43633C1.08926 0.5 0 1.53125 0 2.80625V30.1875C0 31.4625 1.08926 32.5 2.43633 32.5H30.5572C31.9043 32.5 33 31.4625 33 30.1938V2.80625C33 1.53125 31.9043 0.5 30.5572 0.5ZM9.79043 27.7687H4.89199V12.4937H9.79043V27.7687ZM7.34121 10.4125C5.76856 10.4125 4.49883 9.18125 4.49883 7.6625C4.49883 6.14375 5.76856 4.9125 7.34121 4.9125C8.90742 4.9125 10.1771 6.14375 10.1771 7.6625C10.1771 9.175 8.90742 10.4125 7.34121 10.4125ZM28.1209 27.7687H23.2289V20.3438C23.2289 18.575 23.1967 16.2937 20.683 16.2937C18.1371 16.2937 17.7504 18.225 17.7504 20.2188V27.7687H12.8648V12.4937H17.557V14.5813H17.6215C18.2725 13.3813 19.8709 12.1125 22.2492 12.1125C27.2057 12.1125 28.1209 15.275 28.1209 19.3875V27.7687Z\" fill=\"#0D2C5A\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-13ey4jy\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:33,intrinsicWidth:32,svg:'<svg width=\"32\" height=\"33\" viewBox=\"0 0 32 33\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M16.0094 3.38181C20.2869 3.38181 20.7934 3.40057 22.4757 3.47558C24.0391 3.54434 24.8833 3.8069 25.4462 4.02569C26.1903 4.31325 26.7282 4.66331 27.2847 5.21967C27.8476 5.78228 28.1915 6.31364 28.4792 7.05753C28.6981 7.62014 28.9607 8.47031 29.0295 10.0269C29.1046 11.7147 29.1233 12.221 29.1233 16.4906C29.1233 20.7665 29.1046 21.2728 29.0295 22.9544C28.9607 24.5172 28.6981 25.3611 28.4792 25.9237C28.1915 26.6676 27.8413 27.2052 27.2847 27.7616C26.7219 28.3242 26.1903 28.668 25.4462 28.9556C24.8833 29.1744 24.0328 29.4369 22.4757 29.5057C20.7872 29.5807 20.2806 29.5994 16.0094 29.5994C11.7319 29.5994 11.2253 29.5807 9.54309 29.5057C7.97968 29.4369 7.13543 29.1744 6.5726 28.9556C5.82841 28.668 5.2906 28.3179 4.73402 27.7616C4.17119 27.199 3.82724 26.6676 3.53957 25.9237C3.3207 25.3611 3.05804 24.5109 2.98925 22.9544C2.91421 21.2666 2.89545 20.7602 2.89545 16.4906C2.89545 12.2148 2.91421 11.7084 2.98925 10.0269C3.05804 8.46406 3.3207 7.62014 3.53957 7.05753C3.82724 6.31364 4.17745 5.77603 4.73402 5.21967C5.29685 4.65706 5.82841 4.31325 6.5726 4.02569C7.13543 3.8069 7.98593 3.54434 9.54309 3.47558C11.2253 3.40057 11.7319 3.38181 16.0094 3.38181ZM16.0094 0.5C11.6631 0.5 11.119 0.518754 9.41176 0.593768C7.71077 0.668783 6.54133 0.943837 5.52824 1.33766C4.47137 1.75024 3.5771 2.2941 2.68908 3.18802C1.7948 4.0757 1.25073 4.96962 0.837991 6.01983C0.44401 7.03878 0.168849 8.2015 0.093805 9.90184C0.018761 11.6147 0 12.1585 0 16.5031C0 20.8477 0.018761 21.3916 0.093805 23.0982C0.168849 24.7985 0.44401 25.9675 0.837991 26.9802C1.25073 28.0366 1.7948 28.9306 2.68908 29.8182C3.5771 30.7059 4.47137 31.256 5.52199 31.6623C6.54133 32.0562 7.70451 32.3312 9.40551 32.4062C11.1128 32.4812 11.6568 32.5 16.0031 32.5C20.3494 32.5 20.8935 32.4812 22.6007 32.4062C24.3017 32.3312 25.4712 32.0562 26.4843 31.6623C27.5349 31.256 28.4292 30.7059 29.3172 29.8182C30.2052 28.9306 30.7555 28.0366 31.162 26.9864C31.556 25.9675 31.8312 24.8047 31.9062 23.1044C31.9812 21.3978 32 20.854 32 16.5094C32 12.1648 31.9812 11.6209 31.9062 9.91434C31.8312 8.21401 31.556 7.04503 31.162 6.03233C30.768 4.96962 30.224 4.0757 29.3297 3.18802C28.4417 2.30035 27.5474 1.75024 26.4968 1.34391C25.4774 0.950088 24.3142 0.675034 22.6132 0.60002C20.8997 0.518754 20.3557 0.5 16.0094 0.5Z\" fill=\"#0D2C5A\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:\"https://www.youtube.com/channel/UCCZDInV5c9ckxki5hG8m0og\",motionChild:true,nodeId:\"esC7vrwRd\",scopeId:\"EmISGGQMG\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1grqbf2 framer-10quejs\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:33,intrinsicWidth:46,svg:'<svg width=\"46\" height=\"33\" viewBox=\"0 0 46 33\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M45.5418 7.40475C45.5418 7.40475 45.0926 4.26784 43.709 2.89045C41.957 1.07762 39.9984 1.06873 39.1 0.962094C32.6672 0.5 23.009 0.5 23.009 0.5H22.991C22.991 0.5 13.3328 0.5 6.9 0.962094C6.00156 1.06873 4.04297 1.07762 2.29102 2.89045C0.907422 4.26784 0.467187 7.40475 0.467187 7.40475C0.467187 7.40475 0 11.0926 0 14.7716V18.2195C0 21.8985 0.458203 25.5864 0.458203 25.5864C0.458203 25.5864 0.907422 28.7233 2.28203 30.1007C4.03398 31.9135 6.33398 31.8513 7.3582 32.0468C11.0418 32.3934 23 32.5 23 32.5C23 32.5 32.6672 32.4822 39.1 32.029C39.9984 31.9224 41.957 31.9135 43.709 30.1007C45.0926 28.7233 45.5418 25.5864 45.5418 25.5864C45.5418 25.5864 46 21.9074 46 18.2195V14.7716C46 11.0926 45.5418 7.40475 45.5418 7.40475ZM18.2473 22.405V9.61747L30.6727 16.0335L18.2473 22.405Z\" fill=\"#0D2C5A\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/wundrsight/\",motionChild:true,nodeId:\"rMltZHf5z\",scopeId:\"EmISGGQMG\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-15b4mzn framer-10quejs\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:19,intrinsicWidth:19,svg:'<svg width=\"19\" height=\"19\" viewBox=\"0 0 19 19\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M9.02344 0.730469C4.05462 0.730469 0.0234375 4.76165 0.0234375 9.73047C0.0234375 14.6993 4.05462 18.7305 9.02344 18.7305C13.9923 18.7305 18.0234 14.6993 18.0234 9.73047C18.0234 4.76165 13.9923 0.730469 9.02344 0.730469ZM9.02344 15.5685C5.79986 15.5685 3.18541 12.954 3.18541 9.73047C3.18541 6.5069 5.79986 3.89245 9.02344 3.89245C12.247 3.89245 14.8615 6.5069 14.8615 9.73047C14.8615 12.954 12.247 15.5685 9.02344 15.5685Z\" fill=\"#0D2C5A\"/>\\n</svg>\\n',withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-u4jl8t\",\"data-framer-name\":\"mail, address\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tjmmzc\",\"data-framer-name\":\"mail, address\",children:[/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation4,className:\"framer-1umollw\",\"data-framer-appear-id\":\"1umollw\",\"data-framer-name\":\"mail\",initial:animation1,optimized:true,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17yevje\",\"data-framer-name\":\"Frame 1000002068\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-169mr22\",\"data-framer-name\":\"ic:sharp-email\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:28,svg:'<svg width=\"28\" height=\"25\" viewBox=\"0 0 28 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M24.8097 4.5H2.25781V20.5H24.8097V4.5ZM22.5546 8.5L13.5338 13.5L4.51301 8.5V6.5L13.5338 11.5L22.5546 6.5V8.5Z\" fill=\"#0D2C5A\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dpbHJveS1SZWd1bGFyIA==\",\"--framer-font-family\":'\"Gilroy-Regular \", \"Gilroy-Regular  Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(13, 44, 90)\"},children:\"hello@wundrsight.com\"})}),className:\"framer-prbpq\",\"data-framer-name\":\"hello@wundrsight.com\",fonts:[\"CUSTOM;Gilroy-Regular \"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation4,className:\"framer-17rr06v\",\"data-framer-appear-id\":\"17rr06v\",\"data-framer-name\":\"address\",initial:animation1,optimized:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-m4rdni\",\"data-framer-name\":\"carbon:location-filled\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:28,svg:'<svg width=\"28\" height=\"25\" viewBox=\"0 0 28 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M13.5292 2C11.0629 2.00258 8.69843 2.8726 6.95447 4.41922C5.21052 5.96584 4.22948 8.06276 4.22657 10.25C4.22362 12.0374 4.88197 13.7763 6.10064 15.2C6.10064 15.2 6.35435 15.4963 6.39579 15.539L13.5292 23L20.6661 15.5353C20.7033 15.4955 20.9578 15.2 20.9578 15.2L20.9587 15.1978C22.1768 13.7747 22.8348 12.0366 22.8319 10.25C22.829 8.06276 21.848 5.96584 20.104 4.41922C18.3601 2.8726 15.9956 2.00258 13.5292 2ZM13.5292 13.25C12.8602 13.25 12.2062 13.0741 11.6499 12.7444C11.0936 12.4148 10.66 11.9462 10.404 11.3981C10.1479 10.8499 10.0809 10.2467 10.2115 9.66473C10.342 9.08279 10.6642 8.54824 11.1372 8.12868C11.6103 7.70912 12.2131 7.4234 12.8693 7.30764C13.5255 7.19189 14.2057 7.2513 14.8238 7.47836C15.4419 7.70542 15.9702 8.08994 16.3419 8.58329C16.7136 9.07664 16.912 9.65666 16.912 10.25C16.9109 11.0453 16.5542 11.8078 15.92 12.3702C15.2858 12.9326 14.4261 13.249 13.5292 13.25Z\" fill=\"#0D2C5A\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dpbHJveS1NZWRpdW0g\",\"--framer-font-family\":'\"Gilroy-Medium \", \"Gilroy-Medium  Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(13, 44, 90)\"},children:\"Registered Address - Site No.36/1,Khata No.11/36/1/11, G.R Queens Pride, Yalenahalli Village, Begur Hobli, Bengaluru, Bengaluru Urban, Karnataka, 560076\\xa0\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2lscm95LU1lZGl1bS1yZWd1bGFy\",\"--framer-font-family\":'\"GF;Gilroy-Medium-regular\", sans-serif',\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(13, 44, 90)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dpbHJveS1NZWRpdW0g\",\"--framer-font-family\":'\"Gilroy-Medium \", \"Gilroy-Medium  Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(13, 44, 90)\"},children:\"Office Address - BHive HSR, AKR Tech Park Block A, 7th Mile Hosur Rd, Krishna Reddy Industrial Area, Bengaluru, Kudlu Gate, Karnataka 560068\"})]}),className:\"framer-h2os9o\",\"data-framer-name\":\"Registered Address - Site No.36/1,Khata No.11/36/1/11, G.R Queens Pride, Yalenahalli Village, Begur Hobli, Bengaluru, Bengaluru Urban, Karnataka, 560076\\xa0 Office Address - BHive HSR, AKR Tech Park Block A, 7th Mile Hosur Rd, Krishna Reddy Industrial Area, Bengaluru, Kudlu Gate, Karnataka 560068\",fonts:[\"CUSTOM;Gilroy-Medium \",\"GF;Gilroy-Medium-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation5,className:\"framer-1vly6ec-container\",\"data-framer-appear-id\":\"1vly6ec\",initial:animation6,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ZPglfcsBh\",optimized:true,rendersWithMotion:true,scopeId:\"EmISGGQMG\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<iframe src=\"https://docs.google.com/forms/d/e/1FAIpQLSdgejj0wpzPplrYTc5221n8k0k5AdF9qOailYzHZdbPFNLXWg/viewform?embedded=true\" width=\"640\" height=\"856\" frameborder=\"0\" marginheight=\"0\" marginwidth=\"0\">Loading\u2026</iframe>',id:\"ZPglfcsBh\",layoutId:\"ZPglfcsBh\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:'<iframe src=\"https://docs.google.com/forms/d/e/1FAIpQLSdgejj0wpzPplrYTc5221n8k0k5AdF9qOailYzHZdbPFNLXWg/viewform?embedded=true\" width=\"640\" height=\"856\" frameborder=\"0\" marginheight=\"0\" marginwidth=\"0\">Loading\u2026</iframe>',width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1d19lso\",\"data-framer-name\":\"Rectangle 3901\"}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation5,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dpbHJveS1Cb2xk\",\"--framer-font-family\":'\"Gilroy-Bold\", \"Gilroy-Bold Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"56px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(13, 44, 90)\"},children:\"Get in touch with Wundrsight Health\"})}),className:\"framer-yg36yu\",\"data-framer-appear-id\":\"yg36yu\",\"data-framer-name\":\"Get in touch with Wundrsight Health\",fonts:[\"CUSTOM;Gilroy-Bold\"],initial:animation1,optimized:true,transformTemplate:transformTemplate1,verticalAlignment:\"center\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"1400px\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-kykbm-container hidden-baq4qq\",\"data-framer-name\":\"navbar desktop\",name:\"navbar desktop\",nodeId:\"BEljInMCA\",scopeId:\"EmISGGQMG\",children:/*#__PURE__*/_jsx(Navbar,{height:\"100%\",id:\"BEljInMCA\",layoutId:\"BEljInMCA\",name:\"navbar desktop\",style:{width:\"100%\"},variant:\"vJuSGUjnZ\",width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Qf6vZMPfA:{height:64,width:\"1280px\",y:(componentViewport?.y||0)+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-18e997w-container hidden-11aw39w\",nodeId:\"Hca2of0vj\",scopeId:\"EmISGGQMG\",children:/*#__PURE__*/_jsx(NavbarTab,{height:\"100%\",id:\"Hca2of0vj\",layoutId:\"Hca2of0vj\",style:{height:\"100%\",width:\"100%\"},variant:\"QwLT7evHs\",width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:487,width:`calc(${componentViewport?.width||\"100vw\"} - 32px)`,y:(componentViewport?.y||0)+0+1101,children:/*#__PURE__*/_jsx(Container,{className:\"framer-wcx81k-container hidden-baq4qq\",nodeId:\"jVNR3IliI\",scopeId:\"EmISGGQMG\",children:/*#__PURE__*/_jsx(FooterWeb,{height:\"100%\",id:\"jVNR3IliI\",layoutId:\"jVNR3IliI\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Qf6vZMPfA:{height:487,width:`calc(${componentViewport?.width||\"100vw\"} - 32px)`,y:(componentViewport?.y||0)+0+1101}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-10t69oe-container hidden-11aw39w\",nodeId:\"FHMoiJiig\",scopeId:\"EmISGGQMG\",children:/*#__PURE__*/_jsx(FooterTab,{height:\"100%\",id:\"FHMoiJiig\",layoutId:\"FHMoiJiig\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-iabi77 hidden-11aw39w hidden-baq4qq\",\"data-framer-name\":\"Frame 1000002113\",children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation7,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dpbHJveS1Cb2xk\",\"--framer-font-family\":'\"Gilroy-Bold\", \"Gilroy-Bold Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"26px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(13, 44, 90)\"},children:\"Get in touch with Wundrsight Health\"})}),className:\"framer-wufzjy\",\"data-framer-appear-id\":\"wufzjy\",\"data-framer-name\":\"Get in touch with Wundrsight Health\",fonts:[\"CUSTOM;Gilroy-Bold\"],initial:animation1,optimized:true,verticalAlignment:\"center\",withExternalLayout:true})}),isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gj267w hidden-11aw39w hidden-baq4qq\",\"data-framer-name\":\"form\",children:isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation5,className:\"framer-1qru3ta-container hidden-11aw39w\",\"data-framer-appear-id\":\"1qru3ta\",id:\"1qru3ta\",initial:animation8,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"fRiTiFsE2\",optimized:true,rendersWithMotion:true,scopeId:\"EmISGGQMG\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<iframe src=\"https://docs.google.com/forms/d/e/1FAIpQLSdgejj0wpzPplrYTc5221n8k0k5AdF9qOailYzHZdbPFNLXWg/viewform?embedded=true\" width=\"343\" height=\"770\" frameborder=\"0\" marginheight=\"0\" marginwidth=\"0\">Loading\u2026</iframe>',id:\"fRiTiFsE2\",layoutId:\"fRiTiFsE2\",style:{height:\"100%\",width:\"100%\"},type:\"url\",url:\"https://docs.google.com/forms/d/e/1FAIpQLSdgejj0wpzPplrYTc5221n8k0k5AdF9qOailYzHZdbPFNLXWg/viewform?usp=sf_link\",width:\"100%\"})})})}),isDisplayed3()&&/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation5,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dpbHJveS1Cb2xk\",\"--framer-font-family\":'\"Gilroy-Bold\", \"Gilroy-Bold Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"rgb(13, 44, 90)\"},children:\"Say Hello!\"})}),className:\"framer-y86wba hidden-11aw39w hidden-baq4qq\",\"data-framer-appear-id\":\"y86wba\",\"data-framer-name\":\"Say Hello!\",fonts:[\"CUSTOM;Gilroy-Bold\"],initial:animation8,optimized:true,transformTemplate:transformTemplate1,verticalAlignment:\"center\",withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation5,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dpbHJveS1SZWd1bGFyIA==\",\"--framer-font-family\":'\"Gilroy-Regular \", \"Gilroy-Regular  Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"rgb(13, 44, 90)\"},children:\"Please reach out if you want to enquire how we  can help you. We are always available to get in touch!\"})}),className:\"framer-1rfmpi4 hidden-11aw39w hidden-baq4qq\",\"data-framer-appear-id\":\"1rfmpi4\",\"data-framer-name\":\"Please reach out if you want to enquire how we can help you. We are always available to get in touch!\",fonts:[\"CUSTOM;Gilroy-Regular \"],initial:animation1,optimized:true,verticalAlignment:\"center\",withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation9,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-9f6esy hidden-16a894f hidden-baq4qq\",\"data-framer-name\":\"footer\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vuxgaf\",\"data-framer-name\":\"Frame 1000001985\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+2854+42+0+0+0),pixelHeight:328,pixelWidth:1096,positionX:\"center\",positionY:\"center\",sizes:\"274px\",src:\"https://framerusercontent.com/images/UuUzwfBjhYgHvCRSYWKqjOOYhYU.png\",srcSet:\"https://framerusercontent.com/images/UuUzwfBjhYgHvCRSYWKqjOOYhYU.png?scale-down-to=512 512w,https://framerusercontent.com/images/UuUzwfBjhYgHvCRSYWKqjOOYhYU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/UuUzwfBjhYgHvCRSYWKqjOOYhYU.png 1096w\"},className:\"framer-176phx6\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w2mkdh\",\"data-framer-name\":\"Frame 1000001984\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13hjv0q\",\"data-framer-name\":\"Frame 1000001983\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18fz6at\",\"data-framer-name\":\"Frame 1000001977\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dpbHJveS1NZWRpdW0=\",\"--framer-font-family\":'\"Gilroy-Medium\", \"Gilroy-Medium Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Reach out to us: hello@wundrsight.com\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2lscm95LU1lZGl1bS1yZWd1bGFy\",\"--framer-font-family\":'\"GF;Gilroy-Medium-regular\", sans-serif',\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dpbHJveS1NZWRpdW0=\",\"--framer-font-family\":'\"Gilroy-Medium\", \"Gilroy-Medium Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Corp. Address: BHive HSR, AKR Tech Park Block A, 7th Mile Hosur Rd, Krishna Reddy Industrial Area, Bengaluru, Kudlu Gate, Karnataka 560068\"})]}),className:\"framer-14bckc7\",\"data-framer-name\":\"Reach out to us: hello@wundrsight.com Corp. Address: BHive HSR, AKR Tech Park Block A, 7th Mile Hosur Rd, Krishna Reddy Industrial Area, Bengaluru, Kudlu Gate, Karnataka 560068\",fonts:[\"CUSTOM;Gilroy-Medium\",\"GF;Gilroy-Medium-regular\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ff64aq\",\"data-framer-name\":\"Group 1000001992\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1j2jb1l\",\"data-framer-name\":\"Social Icons\",children:/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/company/wundrsight\",motionChild:true,nodeId:\"JJHmfzuTR\",scopeId:\"EmISGGQMG\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1n2okdv framer-10quejs\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M18.4269 0.0498047H1.46918C0.656855 0.0498047 0 0.691113 0 1.484V18.5117C0 19.3046 0.656855 19.9498 1.46918 19.9498H18.4269C19.2393 19.9498 19.9 19.3046 19.9 18.5156V1.484C19.9 0.691113 19.2393 0.0498047 18.4269 0.0498047ZM5.90393 17.0076H2.95002V7.50842H5.90393V17.0076ZM4.42697 6.21414C3.47861 6.21414 2.71293 5.44846 2.71293 4.50398C2.71293 3.55951 3.47861 2.79383 4.42697 2.79383C5.37145 2.79383 6.13713 3.55951 6.13713 4.50398C6.13713 5.44457 5.37145 6.21414 4.42697 6.21414ZM16.9578 17.0076H14.0077V12.3901C14.0077 11.2902 13.9883 9.87154 12.4725 9.87154C10.9372 9.87154 10.704 11.0725 10.704 12.3124V17.0076H7.75789V7.50842H10.5874V8.80658H10.6263C11.0188 8.06033 11.9828 7.27133 13.417 7.27133C16.4058 7.27133 16.9578 9.23801 16.9578 11.7955V17.0076Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/wundrsight/\",motionChild:true,nodeId:\"Vy5jd28EE\",scopeId:\"EmISGGQMG\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1gwzr0y framer-10quejs\",\"data-framer-name\":\"Group 1000001921\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:21,svg:'<svg width=\"21\" height=\"20\" viewBox=\"0 0 21 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M10.8902 3.78125C7.53963 3.78125 4.82129 6.68826 4.82129 10.2714C4.82129 13.8546 7.53963 16.7616 10.8902 16.7616C14.2409 16.7616 16.9592 13.8546 16.9592 10.2714C16.9592 6.68826 14.2409 3.78125 10.8902 3.78125ZM10.8902 14.4814C8.7165 14.4814 6.9535 12.5961 6.9535 10.2714C6.9535 7.94681 8.7165 6.06145 10.8902 6.06145C13.064 6.06145 14.827 7.94681 14.827 10.2714C14.827 12.5961 13.064 14.4814 10.8902 14.4814Z\" fill=\"white\"/>\\n<path d=\"M10.7547 1.84193C13.4147 1.84193 13.7297 1.85359 14.7759 1.90024C15.7481 1.94301 16.2732 2.10628 16.6232 2.24234C17.086 2.42117 17.4204 2.63887 17.7665 2.98485C18.1165 3.33472 18.3304 3.66516 18.5093 4.12777C18.6454 4.47764 18.8088 5.00634 18.8516 5.97432C18.8982 7.02394 18.9099 7.33883 18.9099 9.99397C18.9099 12.653 18.8982 12.9679 18.8516 14.0136C18.8088 14.9855 18.6454 15.5103 18.5093 15.8602C18.3304 16.3228 18.1126 16.6571 17.7665 17.0031C17.4165 17.353 17.086 17.5668 16.6232 17.7456C16.2732 17.8817 15.7442 18.0449 14.7759 18.0877C13.7259 18.1344 13.4108 18.146 10.7547 18.146C8.09459 18.146 7.77958 18.1344 6.73344 18.0877C5.76119 18.0449 5.23617 17.8817 4.88616 17.7456C4.42337 17.5668 4.08892 17.3491 3.7428 17.0031C3.39279 16.6532 3.17889 16.3228 3 15.8602C2.86389 15.5103 2.70055 14.9816 2.65777 14.0136C2.6111 12.964 2.59943 12.6491 2.59943 9.99397C2.59943 7.33494 2.6111 7.02005 2.65777 5.97432C2.70055 5.00245 2.86389 4.47764 3 4.12777C3.17889 3.66516 3.39668 3.33084 3.7428 2.98485C4.09281 2.63498 4.42337 2.42117 4.88616 2.24234C5.23617 2.10628 5.76508 1.94301 6.73344 1.90024C7.77958 1.85359 8.09459 1.84193 10.7547 1.84193ZM10.7547 0.0498047C8.05181 0.0498047 7.71347 0.0614671 6.65177 0.108117C5.59396 0.154767 4.86672 0.325816 4.2367 0.570727C3.57946 0.8273 3.02333 1.16551 2.4711 1.72142C1.91497 2.27344 1.57663 2.82935 1.31995 3.48245C1.07495 4.11611 0.903831 4.83918 0.857163 5.89657C0.810495 6.96174 0.798828 7.29995 0.798828 10.0017C0.798828 12.7035 0.810495 13.0418 0.857163 14.103C0.903831 15.1604 1.07495 15.8874 1.31995 16.5172C1.57663 17.1741 1.91497 17.7301 2.4711 18.2821C3.02333 18.8341 3.57946 19.1762 4.23281 19.4289C4.86672 19.6738 5.59007 19.8448 6.64788 19.8915C7.70958 19.9381 8.04792 19.9498 10.7508 19.9498C13.4536 19.9498 13.792 19.9381 14.8537 19.8915C15.9115 19.8448 16.6387 19.6738 17.2687 19.4289C17.9221 19.1762 18.4782 18.8341 19.0304 18.2821C19.5827 17.7301 19.9249 17.1741 20.1777 16.5211C20.4227 15.8874 20.5938 15.1643 20.6405 14.1069C20.6872 13.0456 20.6988 12.7074 20.6988 10.0056C20.6988 7.30384 20.6872 6.96563 20.6405 5.90435C20.5938 4.84695 20.4227 4.11999 20.1777 3.49022C19.9327 2.82935 19.5944 2.27344 19.0382 1.72142C18.486 1.1694 17.9299 0.8273 17.2765 0.574614C16.6426 0.329703 15.9193 0.158654 14.8614 0.112004C13.7959 0.0614671 13.4575 0.0498047 10.7547 0.0498047Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.youtube.com/channel/UCCZDInV5c9ckxki5hG8m0og\",motionChild:true,nodeId:\"Qtox43p3o\",scopeId:\"EmISGGQMG\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-mp11a4 framer-10quejs\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:21,svg:'<svg width=\"21\" height=\"20\" viewBox=\"0 0 21 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M20.3014 4.3437C20.3014 4.3437 20.1071 2.39293 19.5085 1.53636C18.7506 0.409011 17.9033 0.403484 17.5146 0.337169C14.7317 0.0498045 10.5535 0.0498047 10.5535 0.0498047H10.5457C10.5457 0.0498047 6.3675 0.0498045 3.58461 0.337169C3.19594 0.403484 2.34863 0.409011 1.59072 1.53636C0.992168 2.39293 0.801719 4.3437 0.801719 4.3437C0.801719 4.3437 0.599609 6.63709 0.599609 8.92495V11.0691C0.599609 13.357 0.797832 15.6504 0.797832 15.6504C0.797832 15.6504 0.992168 17.6012 1.58684 18.4577C2.34475 19.5851 3.33975 19.5464 3.78283 19.668C5.37639 19.8835 10.5496 19.9498 10.5496 19.9498C10.5496 19.9498 14.7317 19.9388 17.5146 19.6569C17.9033 19.5906 18.7506 19.5851 19.5085 18.4577C20.1071 17.6012 20.3014 15.6504 20.3014 15.6504C20.3014 15.6504 20.4996 13.3625 20.4996 11.0691V8.92495C20.4996 6.63709 20.3014 4.3437 20.3014 4.3437ZM8.49354 13.672V5.71973L13.8689 9.70968L8.49354 13.672Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1izccdx\",\"data-framer-name\":\"Frame 1000001983\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c9jl17\",\"data-framer-name\":\"Frame 1000001979\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dpbHJveS1NZWRpdW0=\",\"--framer-font-family\":'\"Gilroy-Medium\", \"Gilroy-Medium Placeholder\", sans-serif',\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"AtE4CDKUE\"},motionChild:true,nodeId:\"PNfp_cglg\",openInNewTab:false,scopeId:\"EmISGGQMG\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1exac8w\",\"data-styles-preset\":\"HRQzjrOvX\",children:\"Home\"})})})}),className:\"framer-123maho\",\"data-framer-name\":\"Home\",fonts:[\"CUSTOM;Gilroy-Medium\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dpbHJveS1NZWRpdW0=\",\"--framer-font-family\":'\"Gilroy-Medium\", \"Gilroy-Medium Placeholder\", sans-serif',\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Z16JKWJdk\"},motionChild:true,nodeId:\"dpeVwQbQj\",openInNewTab:false,scopeId:\"EmISGGQMG\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1exac8w\",\"data-styles-preset\":\"HRQzjrOvX\",children:\"Product\"})})})}),className:\"framer-2zf6gu\",\"data-framer-name\":\"Product\",fonts:[\"CUSTOM;Gilroy-Medium\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dpbHJveS1NZWRpdW0=\",\"--framer-font-family\":'\"Gilroy-Medium\", \"Gilroy-Medium Placeholder\", sans-serif',\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"dAbc395fu\"},motionChild:true,nodeId:\"eI7QVtEJs\",openInNewTab:false,scopeId:\"EmISGGQMG\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1exac8w\",\"data-styles-preset\":\"HRQzjrOvX\",children:\"For hospitals and Clinics\"})})})}),className:\"framer-fgvbwj\",\"data-framer-name\":\"For hospitals and Clinics\",fonts:[\"CUSTOM;Gilroy-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gs8nlw\",\"data-framer-name\":\"Frame 1000001981\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dpbHJveS1NZWRpdW0=\",\"--framer-font-family\":'\"Gilroy-Medium\", \"Gilroy-Medium Placeholder\", sans-serif',\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"LwZ84UXjJ\"},motionChild:true,nodeId:\"Bxtz7w36K\",openInNewTab:false,scopeId:\"EmISGGQMG\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1exac8w\",\"data-styles-preset\":\"HRQzjrOvX\",children:\"Blogs\"})})})}),className:\"framer-ld5h52\",\"data-framer-name\":\"Blogs\",fonts:[\"CUSTOM;Gilroy-Medium\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dpbHJveS1NZWRpdW0=\",\"--framer-font-family\":'\"Gilroy-Medium\", \"Gilroy-Medium Placeholder\", sans-serif',\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"YnyrhfdUh\"},motionChild:true,nodeId:\"zrY3PtxhM\",openInNewTab:false,scopeId:\"EmISGGQMG\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1exac8w\",\"data-styles-preset\":\"HRQzjrOvX\",children:\"About Us\"})})})}),className:\"framer-10gn7ja\",\"data-framer-name\":\"About Us\",fonts:[\"CUSTOM;Gilroy-Medium\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dpbHJveS1NZWRpdW0=\",\"--framer-font-family\":'\"Gilroy-Medium\", \"Gilroy-Medium Placeholder\", sans-serif',\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"EmISGGQMG\"},motionChild:true,nodeId:\"XCMKMhM33\",openInNewTab:false,scopeId:\"EmISGGQMG\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1exac8w\",\"data-styles-preset\":\"HRQzjrOvX\",children:\"Contact Us\"})})})}),className:\"framer-wxug7w\",\"data-framer-name\":\"Contact Us\",fonts:[\"CUSTOM;Gilroy-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pfw9ak\",\"data-framer-name\":\"Frame 1000001978\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fy9szf\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dpbHJveS1NZWRpdW0=\",\"--framer-font-family\":'\"Gilroy-Medium\", \"Gilroy-Medium Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"YzIqwjsnP\"},motionChild:true,nodeId:\"U1u5cg1YJ\",openInNewTab:false,scopeId:\"EmISGGQMG\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1exac8w\",\"data-styles-preset\":\"HRQzjrOvX\",children:\"Disclaimer\"})})})}),className:\"framer-1u2yt4k\",\"data-framer-name\":\"Disclaimer\",fonts:[\"CUSTOM;Gilroy-Medium\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-127ib7n\",\"data-framer-name\":\"Vertical Divider\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dpbHJveS1NZWRpdW0=\",\"--framer-font-family\":'\"Gilroy-Medium\", \"Gilroy-Medium Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"J2gfWp32_\"},motionChild:true,nodeId:\"Cpfa622Tu\",openInNewTab:false,scopeId:\"EmISGGQMG\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1exac8w\",\"data-styles-preset\":\"HRQzjrOvX\",children:\"Privacy Policy\"})})})}),className:\"framer-16ghc35\",\"data-framer-name\":\"Privacy Policy\",fonts:[\"CUSTOM;Gilroy-Medium\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-gja80n\",\"data-framer-name\":\"Vertical Divider\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14aouyn\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-skaips\",\"data-framer-name\":\"Link\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dpbHJveS1NZWRpdW0=\",\"--framer-font-family\":'\"Gilroy-Medium\", \"Gilroy-Medium Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"qyifDBjFu\"},motionChild:true,nodeId:\"EzizYyABO\",openInNewTab:false,scopeId:\"EmISGGQMG\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1exac8w\",\"data-styles-preset\":\"HRQzjrOvX\",children:\"Terms & Conditions\"})})})}),className:\"framer-ywa5gd\",\"data-framer-name\":\"Terms & Conditions\",fonts:[\"CUSTOM;Gilroy-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-66bf1k\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dpbHJveS1NZWRpdW0=\",\"--framer-font-family\":'\"Gilroy-Medium\", \"Gilroy-Medium Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Copyright \\xa9 2025. All rights reserved\\xa0\"})}),className:\"framer-10lzadq\",\"data-framer-name\":\"Copyright \\xa9 2024. All rights reserved\\xa0\",fonts:[\"CUSTOM;Gilroy-Medium\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dpbHJveS1NZWRpdW0=\",\"--framer-font-family\":'\"Gilroy-Medium\", \"Gilroy-Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Wundrsight Private Limited.\"})}),className:\"framer-1q6nvik\",\"data-framer-name\":\"Wundrsight Private Limited.\",fonts:[\"CUSTOM;Gilroy-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})]})]})]})]})}),isDisplayed3()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cnydXLVEX:{height:70,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-16lr9l9-container hidden-11aw39w hidden-baq4qq\",nodeId:\"sud3mEcRg\",scopeId:\"EmISGGQMG\",children:/*#__PURE__*/_jsx(Menuuuu,{height:\"100%\",id:\"sud3mEcRg\",layoutId:\"sud3mEcRg\",style:{width:\"100%\"},variant:\"hNXlSUkU0\",width:\"100%\"})})})}),isDisplayed3()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cnydXLVEX:{height:199,width:`calc(${componentViewport?.width||\"100vw\"} - 6px)`,y:(componentViewport?.y||0)+1114}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-k7dk5i-container hidden-11aw39w hidden-baq4qq\",id:\"k7dk5i\",nodeId:\"Q7HJehKZc\",scopeId:\"EmISGGQMG\",children:/*#__PURE__*/_jsx(FooterMob,{height:\"100%\",id:\"Q7HJehKZc\",layoutId:\"Q7HJehKZc\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-RQ89c.framer-10quejs, .framer-RQ89c .framer-10quejs { display: block; }\",\".framer-RQ89c.framer-11aw39w { background-color: #ffffff; height: 1604px; overflow: hidden; position: relative; width: 1400px; }\",\".framer-RQ89c .framer-5kli61 { background-color: #ffffff; flex: none; gap: 0px; height: 1604px; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-RQ89c .framer-5ze38r { flex: none; height: 16px; left: 1079px; overflow: visible; position: absolute; top: calc(50.56109725685788% - 16px / 2); width: 43px; }\",\".framer-RQ89c .framer-sypbq8 { flex: none; gap: 0px; height: 16px; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 43px; }\",\".framer-RQ89c .framer-15mhro { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 893px; justify-content: space-between; left: 0px; overflow: visible; padding: 80px; position: absolute; right: 0px; top: 198px; }\",\".framer-RQ89c .framer-4imazh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 469px; }\",\".framer-RQ89c .framer-4kaieg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-RQ89c .framer-1o4t3qi { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 469px; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-RQ89c .framer-xudcm3 { --framer-paragraph-spacing: 0px; flex: none; height: 114px; position: relative; white-space: pre-wrap; width: 469px; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-RQ89c .framer-sc1gj5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 372px; }\",\".framer-RQ89c .framer-1szid3 { flex: none; height: 32px; overflow: visible; position: relative; width: 191px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-RQ89c .framer-1avoj0w { aspect-ratio: 1.03125 / 1; flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 32px); left: 0px; overflow: hidden; position: absolute; top: 0px; width: 33px; }\",\".framer-RQ89c .framer-1bt194j { bottom: 1px; flex: none; left: 0px; position: absolute; right: 0px; text-decoration: none; top: 0px; }\",\".framer-RQ89c .framer-13ey4jy { flex: none; height: 33px; left: 73px; position: absolute; top: 0px; width: 32px; }\",\".framer-RQ89c .framer-1grqbf2 { flex: none; height: 33px; left: 145px; position: absolute; text-decoration: none; top: 0px; width: 46px; }\",\".framer-RQ89c .framer-15b4mzn { flex: none; height: 19px; left: calc(46.59685863874348% - 19px / 2); position: absolute; text-decoration: none; top: calc(50.00000000000002% - 19px / 2); width: 19px; }\",\".framer-RQ89c .framer-u4jl8t { flex: none; height: 260px; overflow: visible; position: relative; width: 372px; }\",\".framer-RQ89c .framer-1tjmmzc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; left: 0px; overflow: visible; padding: 0px; position: absolute; top: 0px; width: 372px; }\",\".framer-RQ89c .framer-1umollw { flex: none; height: 24px; overflow: visible; position: relative; width: 209px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-RQ89c .framer-17yevje { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; left: 0px; overflow: visible; padding: 0px; position: absolute; top: 0px; width: 209px; }\",\".framer-RQ89c .framer-169mr22, .framer-RQ89c .framer-m4rdni { flex: none; height: 25px; position: relative; width: 28px; }\",\".framer-RQ89c .framer-prbpq, .framer-RQ89c .framer-wxug7w, .framer-RQ89c .framer-1u2yt4k, .framer-RQ89c .framer-16ghc35, .framer-RQ89c .framer-ywa5gd, .framer-RQ89c .framer-10lzadq, .framer-RQ89c .framer-1q6nvik { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-RQ89c .framer-17rr06v { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-RQ89c .framer-h2os9o { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 324px; word-break: break-word; word-wrap: break-word; }\",\".framer-RQ89c .framer-1vly6ec-container { flex: none; height: 807px; position: relative; width: 682px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-RQ89c .framer-1d19lso { background-color: #f9fbfc; flex: none; height: 136px; left: 0px; position: absolute; right: 0px; top: 82px; }\",\".framer-RQ89c .framer-yg36yu { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 50%; position: absolute; top: 122px; transform: translateX(-50%); white-space: pre; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-RQ89c .framer-kykbm-container { flex: none; height: auto; left: 50%; position: absolute; top: 0px; transform: translateX(-50%); width: 1400px; }\",\".framer-RQ89c .framer-18e997w-container { flex: none; height: 64px; left: calc(50.00000000000002% - 1280px / 2); position: absolute; top: 0px; width: 1280px; }\",\".framer-RQ89c .framer-wcx81k-container, .framer-RQ89c .framer-10t69oe-container { bottom: 16px; flex: none; left: 16px; position: absolute; right: 16px; top: 1101px; }\",\".framer-RQ89c .framer-iabi77 { align-content: center; align-items: center; background-color: #f9fbfc; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 67px; justify-content: center; left: 0px; overflow: visible; padding: 0px; position: absolute; right: 0px; top: 70px; }\",\".framer-RQ89c .framer-wufzjy { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 203px; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-RQ89c .framer-1gj267w { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; left: 21px; min-height: 793px; overflow: visible; padding: 0px; position: absolute; top: 295px; width: 336px; }\",\".framer-RQ89c .framer-1qru3ta-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-RQ89c .framer-y86wba { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 51%; position: absolute; top: 157px; transform: translateX(-50%); white-space: pre-wrap; width: 342px; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-RQ89c .framer-1rfmpi4 { --framer-paragraph-spacing: 0px; flex: none; height: 64px; left: calc(50.40000000000002% - 336px / 2); position: absolute; top: 191px; white-space: pre-wrap; width: 336px; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-RQ89c .framer-9f6esy { align-content: center; align-items: center; background-color: #0d2c5a; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 487px; justify-content: flex-start; left: calc(50.00000000000002% - 1368px / 2); overflow: visible; padding: 42px 50px 42px 50px; position: absolute; top: 2854px; width: 1368px; }\",\".framer-RQ89c .framer-1vuxgaf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1240px; }\",\".framer-RQ89c .framer-176phx6 { flex: none; height: 82px; position: relative; width: 274px; }\",\".framer-RQ89c .framer-1w2mkdh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 79px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-RQ89c .framer-13hjv0q { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-RQ89c .framer-18fz6at { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 192px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 299px; }\",\".framer-RQ89c .framer-14bckc7 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 299px; word-break: break-word; word-wrap: break-word; }\",\".framer-RQ89c .framer-ff64aq { flex: none; height: 20px; overflow: visible; position: relative; width: 99px; }\",\".framer-RQ89c .framer-1j2jb1l { flex: none; gap: 0px; height: 20px; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 20px; }\",\".framer-RQ89c .framer-1n2okdv { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; text-decoration: none; top: 0px; }\",\".framer-RQ89c .framer-1gwzr0y { flex: none; height: 20px; left: 39px; position: absolute; text-decoration: none; top: 0px; width: 21px; }\",\".framer-RQ89c .framer-mp11a4 { flex: none; height: 20px; position: absolute; right: -5px; text-decoration: none; top: 0px; width: 25px; }\",\".framer-RQ89c .framer-1izccdx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 16px 0px 16px 0px; position: relative; width: min-content; }\",\".framer-RQ89c .framer-c9jl17 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 97px; }\",\".framer-RQ89c .framer-123maho, .framer-RQ89c .framer-2zf6gu, .framer-RQ89c .framer-fgvbwj { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 97px; word-break: break-word; word-wrap: break-word; }\",\".framer-RQ89c .framer-1gs8nlw { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 82px; }\",\".framer-RQ89c .framer-ld5h52, .framer-RQ89c .framer-10gn7ja { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 82px; word-break: break-word; word-wrap: break-word; }\",\".framer-RQ89c .framer-pfw9ak { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-RQ89c .framer-fy9szf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-RQ89c .framer-127ib7n, .framer-RQ89c .framer-gja80n { background-color: #ffffff; flex: none; height: 22px; position: relative; width: 1px; }\",\".framer-RQ89c .framer-14aouyn { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 132px; }\",\".framer-RQ89c .framer-skaips { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-RQ89c .framer-66bf1k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 2px 0px 2px 0px; position: relative; width: 439px; }\",\".framer-RQ89c .framer-16lr9l9-container { flex: none; height: auto; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-RQ89c .framer-k7dk5i-container { bottom: 12px; flex: none; left: 3px; position: absolute; right: 3px; top: 1114px; z-index: 1; }\",...sharedStyle.css,\"@media (max-width: 1279px) { .framer-RQ89c.framer-11aw39w { height: 1325px; width: 375px; } .framer-RQ89c .framer-1qru3ta-container { order: 0; }}\",\"@media (min-width: 1280px) and (max-width: 1399px) { .framer-RQ89c.framer-11aw39w { width: 1280px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1604\n * @framerIntrinsicWidth 1400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"cnydXLVEX\":{\"layout\":[\"fixed\",\"fixed\"]},\"Qf6vZMPfA\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate false\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerEmISGGQMG=withCSS(Component,css,\"framer-RQ89c\");export default FramerEmISGGQMG;FramerEmISGGQMG.displayName=\"Page\";FramerEmISGGQMG.defaultProps={height:1604,width:1400};addFonts(FramerEmISGGQMG,[{explicitInter:true,fonts:[{family:\"Gilroy-Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/IzdqF272mATppHOwrnmZWJwu74.woff2\"},{family:\"Gilroy-Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/h6LVAoR0NeAVd0fjB7Y84IM6fo.woff2\"}]},...EmbedFonts,...NavbarFonts,...NavbarTabFonts,...FooterWebFonts,...FooterTabFonts,...MenuuuuFonts,...FooterMobFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerEmISGGQMG\",\"slots\":[],\"annotations\":{\"framerAcceptsLayoutTemplate\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1400\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"cnydXLVEX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Qf6vZMPfA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerIntrinsicHeight\":\"1604\"}},\"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", "RichTextWithOptimizedAppearEffect", "withOptimizedAppearEffect", "RichText2", "MotionDivWithOptimizedAppearEffect", "motion", "EmbedFonts", "getFonts", "Embed", "ContainerWithOptimizedAppearEffect", "Container", "NavbarFonts", "y9RMYFhYj_default", "NavbarTabFonts", "IbF8lpmGq_default", "FooterWebFonts", "tustmHIiz_default", "FooterTabFonts", "Iq95TgxH5_default", "MotionDivWithFX", "withFX", "MenuuuuFonts", "qbN5SkFAi_default", "FooterMobFonts", "fSVtnMms8_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "transition3", "animation3", "transition4", "animation4", "transition5", "animation5", "animation6", "transformTemplate1", "_", "transition6", "animation7", "animation8", "animation9", "transition7", "animation10", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "fTq2o5Fvj", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "x", "Link", "SVG", "ComponentViewportProvider", "PropertyOverrides2", "Image2", "getLoadingLazyAtYPosition", "css", "FramerEmISGGQMG", "withCSS", "EmISGGQMG_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
