{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/9zLIz4fn80IR9zpOx18Q/Embed.js", "ssg:https://framerusercontent.com/modules/MX5z1LzFn1HjBLKsdarg/v0rcAjIAShaiENsU00VS/ex7_WCK8A.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}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 fixed\n *\n * @framerDisableUnlink\n */ export default function Embed({type,url,html}){if(type===\"url\"&&url){return /*#__PURE__*/ _jsx(EmbedURL,{url:url});}if(type===\"html\"&&html){return /*#__PURE__*/ _jsx(EmbedHTML,{html:html});}return /*#__PURE__*/ _jsx(Instructions,{});};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\",displayTextArea:true,type:ControlType.String,hidden(props){return props.type!==\"html\";}}});function Instructions(){return /*#__PURE__*/ _jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/ _jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedURL({url}){// 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(!url.startsWith(\"https://\")){return /*#__PURE__*/ _jsx(ErrorMessage,{message:\"Unsupported protocol.\"});}if(state===undefined){return /*#__PURE__*/ _jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/ _jsx(ErrorMessage,{message:state.message});}if(state===true){const message=`Can't embed ${url} due to its content security policy.`;return /*#__PURE__*/ _jsx(ErrorMessage,{message:message});}return /*#__PURE__*/ _jsx(\"iframe\",{src:url,style:iframeStyle,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}){const ref=useRef();// If the HTML contains a script tag we can't use\n// dangerouslySetInnerHTML because it doesn't execute\n// scripts on the client. Otherwise, we can benefit\n// from SSG by using dangerouslySetInnerHTML.\nconst hasScript=html.includes(\"</script>\");useEffect(()=>{if(!hasScript)return;const div=ref.current;div.innerHTML=html;executeScripts(div);return()=>{div.innerHTML=\"\";};},[html,hasScript]);return /*#__PURE__*/ _jsx(\"div\",{ref:ref,style:htmlStyle,dangerouslySetInnerHTML:!hasScript?{__html:html}:undefined});}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}){return /*#__PURE__*/ _jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/ _jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}const centerTextStyle={textAlign:\"center\",minWidth:140};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"\",\"framerIntrinsicWidth\":\"600\",\"framerIntrinsicHeight\":\"400\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "// Generated by Framer (ddd30d5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/9zLIz4fn80IR9zpOx18Q/Embed.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/Vkl3L5BDIv4nhrDwezEZ/QxXBN0kke2eFrsRxbnHj/V4jp4vZWX.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/WNn68L7Ib2diZgqhaOVe/RyhG9TOkUDWFeEauyJn6/zZa6IrWOd.js\";const MotionAWithFX=withFX(motion.a);const EmbedFonts=getFonts(Embed);const cycleOrder=[\"BtF44W6e0\",\"YUSwMDcQv\",\"nJsPuUD2R\"];const serializationHash=\"framer-83w4y\";const variantClassNames={BtF44W6e0:\"framer-v-1r5btqb\",nJsPuUD2R:\"framer-v-ei1i2g\",YUSwMDcQv:\"framer-v-vd9blg\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};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 humanReadableVariantMap={Desktop:\"BtF44W6e0\",Mobile:\"nJsPuUD2R\",Tablet:\"YUSwMDcQv\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"BtF44W6e0\"};};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,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"BtF44W6e0\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.section,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1r5btqb\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"BtF44W6e0\",ref:ref??ref1,style:{backgroundColor:\"rgba(255, 255, 255, 0.1)\",...style},...addPropertyOverrides({nJsPuUD2R:{\"data-framer-name\":\"Mobile\"},YUSwMDcQv:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-e088b3\",\"data-framer-name\":\"recognitions\",layoutDependency:layoutDependency,layoutId:\"n04F1l5iu\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1koczpg\",\"data-framer-name\":\"title\",layoutDependency:layoutDependency,layoutId:\"HxLuxcbl2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1loqr0c\",\"data-styles-preset\":\"V4jp4vZWX\",style:{\"--framer-text-alignment\":\"center\"},children:\"Everybody loves Sivi\"})}),className:\"framer-yin3tl\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"T5yDG2N3H\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ino3en\",\"data-styles-preset\":\"zZa6IrWOd\",style:{\"--framer-text-alignment\":\"center\"},children:\"as much as they love the AI designs.\"})}),className:\"framer-166f3eb\",\"data-framer-name\":\"In just a minute\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"AYXFoNWtv\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1w2g1pw\",\"data-framer-name\":\"recognitions\",layoutDependency:layoutDependency,layoutId:\"yLonu3f7T\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1eo4e4h\",\"data-framer-name\":\"list\",layoutDependency:layoutDependency,layoutId:\"o1XkiY_Mx\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"A9wogMGlS\"},nodeId:\"me04Lf1qq\",children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1oupbtt framer-1qic22\",\"data-framer-name\":\"Sivi: Google AI Academy APAC Startup\",layoutDependency:layoutDependency,layoutId:\"me04Lf1qq\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Sivi: Google AI Academy APAC Startup\",fit:\"fill\",intrinsicHeight:260,intrinsicWidth:540,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+80+(((componentViewport?.height||1403)-180-1222.2)/2+0+0)+0+138.6+0+0+0+0+0+9.5),pixelHeight:260,pixelWidth:540,sizes:`min(max((min(${componentViewport?.width||\"100vw\"} - 80px, 960px) - 120px) / 3, 50px), 270px)`,src:\"https://framerusercontent.com/images/RU6ccnLndI4ndUHh8cimjewC1V0.png\",srcSet:\"https://framerusercontent.com/images/RU6ccnLndI4ndUHh8cimjewC1V0.png?scale-down-to=512 512w,https://framerusercontent.com/images/RU6ccnLndI4ndUHh8cimjewC1V0.png 540w\"},className:\"framer-6u3jgz\",\"data-framer-name\":\"Sivi: Google AI Academy APAC Startup\",layoutDependency:layoutDependency,layoutId:\"vblxhuhv6\",...addPropertyOverrides({nJsPuUD2R:{background:{alt:\"Sivi: Google AI Academy APAC Startup\",fit:\"fill\",intrinsicHeight:260,intrinsicWidth:540,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+(((componentViewport?.height||3559)-160-3493.4)/2+0+0)+0+234.6+0+0+0+0+0+9.5),pixelHeight:260,pixelWidth:540,sizes:`min(max(min(${componentViewport?.width||\"100vw\"} - 32px, 270px), 50px), 270px)`,src:\"https://framerusercontent.com/images/RU6ccnLndI4ndUHh8cimjewC1V0.png\",srcSet:\"https://framerusercontent.com/images/RU6ccnLndI4ndUHh8cimjewC1V0.png?scale-down-to=512 512w,https://framerusercontent.com/images/RU6ccnLndI4ndUHh8cimjewC1V0.png 540w\"}},YUSwMDcQv:{background:{alt:\"Sivi: Google AI Academy APAC Startup\",fit:\"fill\",intrinsicHeight:260,intrinsicWidth:540,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+80+(((componentViewport?.height||1947)-180-1862)/2+0+0)+0+234.6+0+0+0+0+0+9.5),pixelHeight:260,pixelWidth:540,sizes:\"270px\",src:\"https://framerusercontent.com/images/RU6ccnLndI4ndUHh8cimjewC1V0.png\",srcSet:\"https://framerusercontent.com/images/RU6ccnLndI4ndUHh8cimjewC1V0.png?scale-down-to=512 512w,https://framerusercontent.com/images/RU6ccnLndI4ndUHh8cimjewC1V0.png 540w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1eung3n, rgb(51, 51, 51))\"},children:\"Google AI Academy APAC Startup\"})}),className:\"framer-15zgjv2\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"fMREjzQp9\",style:{\"--extracted-1eung3n\":\"rgb(51, 51, 51)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"A9wogMGlS\"},nodeId:\"Dwr1FyWn2\",children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1700y8z framer-1qic22\",\"data-framer-name\":\"Sivi: NASSCOM Gen AI Foundry Cohort 2\",layoutDependency:layoutDependency,layoutId:\"Dwr1FyWn2\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Sivi: NASSCOM Gen AI Foundry Cohort 2\",fit:\"fill\",intrinsicHeight:260,intrinsicWidth:540,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+80+(((componentViewport?.height||1403)-180-1222.2)/2+0+0)+0+138.6+0+0+0+0+0+15.5),pixelHeight:260,pixelWidth:540,sizes:`min(max((min(${componentViewport?.width||\"100vw\"} - 80px, 960px) - 120px) / 3, 50px), 270px)`,src:\"https://framerusercontent.com/images/Rh8jJYUmvJjVJqsl1r8sQtFJUc.png\",srcSet:\"https://framerusercontent.com/images/Rh8jJYUmvJjVJqsl1r8sQtFJUc.png?scale-down-to=512 512w,https://framerusercontent.com/images/Rh8jJYUmvJjVJqsl1r8sQtFJUc.png 540w\"},className:\"framer-zyd772\",\"data-framer-name\":\"Sivi: NASSCOM Gen AI Foundry Cohort 2\",layoutDependency:layoutDependency,layoutId:\"Lot1vXDwi\",...addPropertyOverrides({nJsPuUD2R:{background:{alt:\"Sivi: NASSCOM Gen AI Foundry Cohort 2\",fit:\"fill\",intrinsicHeight:260,intrinsicWidth:540,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+(((componentViewport?.height||3559)-160-3493.4)/2+0+0)+0+234.6+0+0+0+227.4+0+15.5),pixelHeight:260,pixelWidth:540,sizes:`min(max(min(${componentViewport?.width||\"100vw\"} - 32px, 270px), 50px), 270px)`,src:\"https://framerusercontent.com/images/Rh8jJYUmvJjVJqsl1r8sQtFJUc.png\",srcSet:\"https://framerusercontent.com/images/Rh8jJYUmvJjVJqsl1r8sQtFJUc.png?scale-down-to=512 512w,https://framerusercontent.com/images/Rh8jJYUmvJjVJqsl1r8sQtFJUc.png 540w\"}},YUSwMDcQv:{background:{alt:\"Sivi: NASSCOM Gen AI Foundry Cohort 2\",fit:\"fill\",intrinsicHeight:260,intrinsicWidth:540,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+80+(((componentViewport?.height||1947)-180-1862)/2+0+0)+0+234.6+0+0+0+0+0+15.5),pixelHeight:260,pixelWidth:540,sizes:\"270px\",src:\"https://framerusercontent.com/images/Rh8jJYUmvJjVJqsl1r8sQtFJUc.png\",srcSet:\"https://framerusercontent.com/images/Rh8jJYUmvJjVJqsl1r8sQtFJUc.png?scale-down-to=512 512w,https://framerusercontent.com/images/Rh8jJYUmvJjVJqsl1r8sQtFJUc.png 540w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1eung3n, rgb(51, 51, 51))\"},children:\"NASSCOM Gen AI Foundry\"})}),className:\"framer-kqs8he\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"sYuNFjjpJ\",style:{\"--extracted-1eung3n\":\"rgb(51, 51, 51)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"A9wogMGlS\"},nodeId:\"aI22VqOu_\",children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-4n7owg framer-1qic22\",\"data-framer-name\":\"Sivi: Forbes India DGEMS 2023 Select 200\",layoutDependency:layoutDependency,layoutId:\"aI22VqOu_\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Sivi: Forbes India DGEMS 2023 Select 200\",fit:\"fill\",intrinsicHeight:260,intrinsicWidth:540,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+80+(((componentViewport?.height||1403)-180-1222.2)/2+0+0)+0+138.6+0+0+0+0+0+9.5),pixelHeight:260,pixelWidth:540,sizes:`min(max((min(${componentViewport?.width||\"100vw\"} - 80px, 960px) - 120px) / 3, 50px), 270px)`,src:\"https://framerusercontent.com/images/JKMpN79LnaJBcbKRWcIAP5FkqU.png\",srcSet:\"https://framerusercontent.com/images/JKMpN79LnaJBcbKRWcIAP5FkqU.png?scale-down-to=512 512w,https://framerusercontent.com/images/JKMpN79LnaJBcbKRWcIAP5FkqU.png 540w\"},className:\"framer-ar6vuv\",\"data-framer-name\":\"Sivi: Forbes India DGEMS 2023 Select 200\",layoutDependency:layoutDependency,layoutId:\"h5jvxb9J3\",...addPropertyOverrides({nJsPuUD2R:{background:{alt:\"Sivi: Forbes India DGEMS 2023 Select 200\",fit:\"fill\",intrinsicHeight:260,intrinsicWidth:540,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+(((componentViewport?.height||3559)-160-3493.4)/2+0+0)+0+234.6+0+0+0+454.8+0+9.5),pixelHeight:260,pixelWidth:540,sizes:`min(max(min(${componentViewport?.width||\"100vw\"} - 32px, 270px), 50px), 270px)`,src:\"https://framerusercontent.com/images/JKMpN79LnaJBcbKRWcIAP5FkqU.png\",srcSet:\"https://framerusercontent.com/images/JKMpN79LnaJBcbKRWcIAP5FkqU.png?scale-down-to=512 512w,https://framerusercontent.com/images/JKMpN79LnaJBcbKRWcIAP5FkqU.png 540w\"}},YUSwMDcQv:{background:{alt:\"Sivi: Forbes India DGEMS 2023 Select 200\",fit:\"fill\",intrinsicHeight:260,intrinsicWidth:540,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+80+(((componentViewport?.height||1947)-180-1862)/2+0+0)+0+234.6+0+0+0+227.4+0+9.5),pixelHeight:260,pixelWidth:540,sizes:\"270px\",src:\"https://framerusercontent.com/images/JKMpN79LnaJBcbKRWcIAP5FkqU.png\",srcSet:\"https://framerusercontent.com/images/JKMpN79LnaJBcbKRWcIAP5FkqU.png?scale-down-to=512 512w,https://framerusercontent.com/images/JKMpN79LnaJBcbKRWcIAP5FkqU.png 540w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1eung3n, rgb(51, 51, 51))\"},children:\"Forbes India DGEMS Select 200\"})}),className:\"framer-3b7fhd\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"uZNoGl6j9\",style:{\"--extracted-1eung3n\":\"rgb(51, 51, 51)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"A9wogMGlS\"},nodeId:\"aTjkKiXUo\",children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1dx3rvb framer-1qic22\",\"data-framer-name\":\"Sivi: Yourstory Techsparks Tech30 2023\",layoutDependency:layoutDependency,layoutId:\"aTjkKiXUo\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Sivi: Yourstory Techsparks Tech30 2023\",fit:\"fill\",intrinsicHeight:260,intrinsicWidth:540,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+80+(((componentViewport?.height||1403)-180-1222.2)/2+0+0)+0+138.6+0+0+0+227.4+0+9.5),pixelHeight:260,pixelWidth:540,src:\"https://framerusercontent.com/images/QOLXI4b1NaZKv8KlbfSNm8K0cg.png\"},className:\"framer-hipwyd\",\"data-framer-name\":\"Sivi: Yourstory Techsparks Tech30 2023\",layoutDependency:layoutDependency,layoutId:\"wvQPjvdTk\",...addPropertyOverrides({nJsPuUD2R:{background:{alt:\"Sivi: Yourstory Techsparks Tech30 2023\",fit:\"fill\",intrinsicHeight:260,intrinsicWidth:540,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+(((componentViewport?.height||3559)-160-3493.4)/2+0+0)+0+234.6+0+0+0+682.2+0+9.5),pixelHeight:260,pixelWidth:540,src:\"https://framerusercontent.com/images/QOLXI4b1NaZKv8KlbfSNm8K0cg.png\"}},YUSwMDcQv:{background:{alt:\"Sivi: Yourstory Techsparks Tech30 2023\",fit:\"fill\",intrinsicHeight:260,intrinsicWidth:540,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+80+(((componentViewport?.height||1947)-180-1862)/2+0+0)+0+234.6+0+0+0+227.4+0+9.5),pixelHeight:260,pixelWidth:540,src:\"https://framerusercontent.com/images/QOLXI4b1NaZKv8KlbfSNm8K0cg.png\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1eung3n, rgb(51, 51, 51))\"},children:\"Tech30 Top 3 Startups\"})}),className:\"framer-1jiggxo\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"kfbq4fdD8\",style:{\"--extracted-1eung3n\":\"rgb(51, 51, 51)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"A9wogMGlS\"},nodeId:\"mlFSs8jxp\",children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1om7p3y framer-1qic22\",\"data-framer-name\":\"Sivi: Salesforce Startup\",layoutDependency:layoutDependency,layoutId:\"mlFSs8jxp\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Sivi: Salesforce Startup\",fit:\"fill\",intrinsicHeight:260,intrinsicWidth:540,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+80+(((componentViewport?.height||1403)-180-1222.2)/2+0+0)+0+138.6+0+0+0+227.4+0+15.5),pixelHeight:260,pixelWidth:540,sizes:`min(max((min(${componentViewport?.width||\"100vw\"} - 80px, 960px) - 120px) / 3, 50px), 270px)`,src:\"https://framerusercontent.com/images/5qu36SGUdhiCtqr1l13NmRG0NM.png\",srcSet:\"https://framerusercontent.com/images/5qu36SGUdhiCtqr1l13NmRG0NM.png?scale-down-to=512 512w,https://framerusercontent.com/images/5qu36SGUdhiCtqr1l13NmRG0NM.png 540w\"},className:\"framer-5rs5bt\",\"data-framer-name\":\"Sivi: Salesforce Startup\",layoutDependency:layoutDependency,layoutId:\"abrBHXnav\",...addPropertyOverrides({nJsPuUD2R:{background:{alt:\"Sivi: Salesforce Startup\",fit:\"fill\",intrinsicHeight:260,intrinsicWidth:540,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+(((componentViewport?.height||3559)-160-3493.4)/2+0+0)+0+234.6+0+0+0+909.6+0+15.5),pixelHeight:260,pixelWidth:540,sizes:`min(max(min(${componentViewport?.width||\"100vw\"} - 32px, 270px), 50px), 270px)`,src:\"https://framerusercontent.com/images/5qu36SGUdhiCtqr1l13NmRG0NM.png\",srcSet:\"https://framerusercontent.com/images/5qu36SGUdhiCtqr1l13NmRG0NM.png?scale-down-to=512 512w,https://framerusercontent.com/images/5qu36SGUdhiCtqr1l13NmRG0NM.png 540w\"}},YUSwMDcQv:{background:{alt:\"Sivi: Salesforce Startup\",fit:\"fill\",intrinsicHeight:260,intrinsicWidth:540,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+80+(((componentViewport?.height||1947)-180-1862)/2+0+0)+0+234.6+0+0+0+454.8+0+15.5),pixelHeight:260,pixelWidth:540,sizes:\"270px\",src:\"https://framerusercontent.com/images/5qu36SGUdhiCtqr1l13NmRG0NM.png\",srcSet:\"https://framerusercontent.com/images/5qu36SGUdhiCtqr1l13NmRG0NM.png?scale-down-to=512 512w,https://framerusercontent.com/images/5qu36SGUdhiCtqr1l13NmRG0NM.png 540w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1eung3n, rgb(51, 51, 51))\"},children:\"Salesforce Startup\"})}),className:\"framer-brfu01\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ona1RAeIm\",style:{\"--extracted-1eung3n\":\"rgb(51, 51, 51)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"A9wogMGlS\"},nodeId:\"kZF04It9K\",children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-ckvchl framer-1qic22\",\"data-framer-name\":\"Sivi: NVIDIA Inception Startup\",layoutDependency:layoutDependency,layoutId:\"kZF04It9K\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Sivi: NVIDIA Inception Startup\",fit:\"fill\",intrinsicHeight:260,intrinsicWidth:540,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+80+(((componentViewport?.height||1403)-180-1222.2)/2+0+0)+0+138.6+0+0+0+227.4+0+15.5),pixelHeight:260,pixelWidth:540,sizes:`min(max((min(${componentViewport?.width||\"100vw\"} - 80px, 960px) - 120px) / 3, 50px), 270px)`,src:\"https://framerusercontent.com/images/JM2f6R56oxG5t3gQ6ZsHDQmPs.png\",srcSet:\"https://framerusercontent.com/images/JM2f6R56oxG5t3gQ6ZsHDQmPs.png?scale-down-to=512 512w,https://framerusercontent.com/images/JM2f6R56oxG5t3gQ6ZsHDQmPs.png 540w\"},className:\"framer-1irm82c\",\"data-framer-name\":\"Sivi: NVIDIA Inception Startup\",layoutDependency:layoutDependency,layoutId:\"U_Qg4Ee3y\",...addPropertyOverrides({nJsPuUD2R:{background:{alt:\"Sivi: NVIDIA Inception Startup\",fit:\"fill\",intrinsicHeight:260,intrinsicWidth:540,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+(((componentViewport?.height||3559)-160-3493.4)/2+0+0)+0+234.6+0+0+0+1137+0+15.5),pixelHeight:260,pixelWidth:540,sizes:`min(max(min(${componentViewport?.width||\"100vw\"} - 32px, 270px), 50px), 270px)`,src:\"https://framerusercontent.com/images/JM2f6R56oxG5t3gQ6ZsHDQmPs.png\",srcSet:\"https://framerusercontent.com/images/JM2f6R56oxG5t3gQ6ZsHDQmPs.png?scale-down-to=512 512w,https://framerusercontent.com/images/JM2f6R56oxG5t3gQ6ZsHDQmPs.png 540w\"}},YUSwMDcQv:{background:{alt:\"Sivi: NVIDIA Inception Startup\",fit:\"fill\",intrinsicHeight:260,intrinsicWidth:540,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+80+(((componentViewport?.height||1947)-180-1862)/2+0+0)+0+234.6+0+0+0+454.8+0+15.5),pixelHeight:260,pixelWidth:540,sizes:\"270px\",src:\"https://framerusercontent.com/images/JM2f6R56oxG5t3gQ6ZsHDQmPs.png\",srcSet:\"https://framerusercontent.com/images/JM2f6R56oxG5t3gQ6ZsHDQmPs.png?scale-down-to=512 512w,https://framerusercontent.com/images/JM2f6R56oxG5t3gQ6ZsHDQmPs.png 540w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1eung3n, rgb(51, 51, 51))\"},children:\"NVIDIA Inception Startup\"})}),className:\"framer-1baydig\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"CuyMH_Nw7\",style:{\"--extracted-1eung3n\":\"rgb(51, 51, 51)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"A9wogMGlS\"},nodeId:\"vSHZXZT1J\",children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-3awm5c framer-1qic22\",\"data-framer-name\":\"Sivi: Startup Product Launch at BTS 2022 \",layoutDependency:layoutDependency,layoutId:\"vSHZXZT1J\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Sivi: Startup Product Launch at BTS 2022 \",fit:\"fill\",intrinsicHeight:260,intrinsicWidth:540,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+80+(((componentViewport?.height||1403)-180-1222.2)/2+0+0)+0+138.6+0+0+0+454.8+0+9.5),pixelHeight:260,pixelWidth:540,src:\"https://framerusercontent.com/images/O08zQ6T2uEUi8n1Gr8TxGMPJ64k.png\"},className:\"framer-e2lx0i\",\"data-framer-name\":\"Sivi: Startup Product Launch at BTS 2022 \",layoutDependency:layoutDependency,layoutId:\"wMgJ8Sup3\",...addPropertyOverrides({nJsPuUD2R:{background:{alt:\"Sivi: Startup Product Launch at BTS 2022 \",fit:\"fill\",intrinsicHeight:260,intrinsicWidth:540,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+(((componentViewport?.height||3559)-160-3493.4)/2+0+0)+0+234.6+0+0+0+1364.4+0+9.5),pixelHeight:260,pixelWidth:540,src:\"https://framerusercontent.com/images/O08zQ6T2uEUi8n1Gr8TxGMPJ64k.png\"}},YUSwMDcQv:{background:{alt:\"Sivi: Startup Product Launch at BTS 2022 \",fit:\"fill\",intrinsicHeight:260,intrinsicWidth:540,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+80+(((componentViewport?.height||1947)-180-1862)/2+0+0)+0+234.6+0+0+0+682.2+0+9.5),pixelHeight:260,pixelWidth:540,src:\"https://framerusercontent.com/images/O08zQ6T2uEUi8n1Gr8TxGMPJ64k.png\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1eung3n, rgb(51, 51, 51))\"},children:\"Startup Product Launch at BTS 2022 \"})}),className:\"framer-1y8589v\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"rcT85i91e\",style:{\"--extracted-1eung3n\":\"rgb(51, 51, 51)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"A9wogMGlS\"},nodeId:\"GiDIx7Zva\",children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-9ub1ck framer-1qic22\",\"data-framer-name\":\"Sivi: Google Cloud Startup\",layoutDependency:layoutDependency,layoutId:\"GiDIx7Zva\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Sivi: Google Cloud Startup\",fit:\"fill\",intrinsicHeight:260,intrinsicWidth:540,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+80+(((componentViewport?.height||1403)-180-1222.2)/2+0+0)+0+138.6+0+0+0+454.8+0+9.5),pixelHeight:260,pixelWidth:540,src:\"https://framerusercontent.com/images/iMwv7uGVY2z478jM9Db2MLDMY.png\"},className:\"framer-9nne15\",\"data-framer-name\":\"Sivi: Google Cloud Startup\",layoutDependency:layoutDependency,layoutId:\"FRriKkqwo\",...addPropertyOverrides({nJsPuUD2R:{background:{alt:\"Sivi: Google Cloud Startup\",fit:\"fill\",intrinsicHeight:260,intrinsicWidth:540,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+(((componentViewport?.height||3559)-160-3493.4)/2+0+0)+0+234.6+0+0+0+1591.8+0+9.5),pixelHeight:260,pixelWidth:540,src:\"https://framerusercontent.com/images/iMwv7uGVY2z478jM9Db2MLDMY.png\"}},YUSwMDcQv:{background:{alt:\"Sivi: Google Cloud Startup\",fit:\"fill\",intrinsicHeight:260,intrinsicWidth:540,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+80+(((componentViewport?.height||1947)-180-1862)/2+0+0)+0+234.6+0+0+0+682.2+0+9.5),pixelHeight:260,pixelWidth:540,src:\"https://framerusercontent.com/images/iMwv7uGVY2z478jM9Db2MLDMY.png\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1eung3n, rgb(51, 51, 51))\"},children:\"Google Cloud Startup\"})}),className:\"framer-18qmw9j\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"RQpPQsFxY\",style:{\"--extracted-1eung3n\":\"rgb(51, 51, 51)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"A9wogMGlS\"},nodeId:\"t2B_em22V\",children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-17m5m0o framer-1qic22\",\"data-framer-name\":\"Sivi: TiE Women Bangalore Finalist\",layoutDependency:layoutDependency,layoutId:\"t2B_em22V\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Sivi: TiE Women Bangalore Finalist\",fit:\"fill\",intrinsicHeight:260,intrinsicWidth:540,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+80+(((componentViewport?.height||1403)-180-1222.2)/2+0+0)+0+138.6+0+0+0+454.8+0+9.5),pixelHeight:260,pixelWidth:540,sizes:`min(max((min(${componentViewport?.width||\"100vw\"} - 80px, 960px) - 120px) / 3, 50px), 270px)`,src:\"https://framerusercontent.com/images/xKnBOl2YKIDcQmfihm8s5ycm4.png\",srcSet:\"https://framerusercontent.com/images/xKnBOl2YKIDcQmfihm8s5ycm4.png?scale-down-to=512 512w,https://framerusercontent.com/images/xKnBOl2YKIDcQmfihm8s5ycm4.png 540w\"},className:\"framer-mns5hy\",\"data-framer-name\":\"Sivi: TiE Women Bangalore Finalist\",layoutDependency:layoutDependency,layoutId:\"Zou4YbsIv\",...addPropertyOverrides({nJsPuUD2R:{background:{alt:\"Sivi: TiE Women Bangalore Finalist\",fit:\"fill\",intrinsicHeight:260,intrinsicWidth:540,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+(((componentViewport?.height||3559)-160-3493.4)/2+0+0)+0+234.6+0+0+0+1819.2+0+9.5),pixelHeight:260,pixelWidth:540,sizes:`min(max(min(${componentViewport?.width||\"100vw\"} - 32px, 270px), 50px), 270px)`,src:\"https://framerusercontent.com/images/xKnBOl2YKIDcQmfihm8s5ycm4.png\",srcSet:\"https://framerusercontent.com/images/xKnBOl2YKIDcQmfihm8s5ycm4.png?scale-down-to=512 512w,https://framerusercontent.com/images/xKnBOl2YKIDcQmfihm8s5ycm4.png 540w\"}},YUSwMDcQv:{background:{alt:\"Sivi: TiE Women Bangalore Finalist\",fit:\"fill\",intrinsicHeight:260,intrinsicWidth:540,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+80+(((componentViewport?.height||1947)-180-1862)/2+0+0)+0+234.6+0+0+0+909.6+0+9.5),pixelHeight:260,pixelWidth:540,sizes:\"270px\",src:\"https://framerusercontent.com/images/xKnBOl2YKIDcQmfihm8s5ycm4.png\",srcSet:\"https://framerusercontent.com/images/xKnBOl2YKIDcQmfihm8s5ycm4.png?scale-down-to=512 512w,https://framerusercontent.com/images/xKnBOl2YKIDcQmfihm8s5ycm4.png 540w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1eung3n, rgb(51, 51, 51))\"},children:\"TiE Women Bangalore Finalist\"})}),className:\"framer-1rxo2xx\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ZsR1jePO5\",style:{\"--extracted-1eung3n\":\"rgb(51, 51, 51)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"A9wogMGlS\"},nodeId:\"XYRi5_726\",children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-lmq2b5 framer-1qic22\",\"data-framer-name\":\"Sivi: NASSCOM 10K Startup\",layoutDependency:layoutDependency,layoutId:\"XYRi5_726\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Sivi: NASSCOM 10K Startup\",fit:\"fill\",intrinsicHeight:260,intrinsicWidth:540,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+80+(((componentViewport?.height||1403)-180-1222.2)/2+0+0)+0+138.6+0+0+0+682.2+0+0),pixelHeight:260,pixelWidth:540,sizes:`min(max((min(${componentViewport?.width||\"100vw\"} - 80px, 960px) - 120px) / 3, 50px), 270px)`,src:\"https://framerusercontent.com/images/BPUYuqnRO5ew4peNIcBDtM09YU.png\",srcSet:\"https://framerusercontent.com/images/BPUYuqnRO5ew4peNIcBDtM09YU.png?scale-down-to=512 512w,https://framerusercontent.com/images/BPUYuqnRO5ew4peNIcBDtM09YU.png 540w\"},className:\"framer-6vfzln\",\"data-framer-name\":\"Sivi: NASSCOM 10K Startup\",layoutDependency:layoutDependency,layoutId:\"zb5eBMz1R\",...addPropertyOverrides({nJsPuUD2R:{background:{alt:\"Sivi: NASSCOM 10K Startup\",fit:\"fill\",intrinsicHeight:260,intrinsicWidth:540,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+(((componentViewport?.height||3559)-160-3493.4)/2+0+0)+0+234.6+0+0+0+2046.6000000000001+0+0),pixelHeight:260,pixelWidth:540,sizes:`min(max(min(${componentViewport?.width||\"100vw\"} - 32px, 270px), 50px), 270px)`,src:\"https://framerusercontent.com/images/BPUYuqnRO5ew4peNIcBDtM09YU.png\",srcSet:\"https://framerusercontent.com/images/BPUYuqnRO5ew4peNIcBDtM09YU.png?scale-down-to=512 512w,https://framerusercontent.com/images/BPUYuqnRO5ew4peNIcBDtM09YU.png 540w\"}},YUSwMDcQv:{background:{alt:\"Sivi: NASSCOM 10K Startup\",fit:\"fill\",intrinsicHeight:260,intrinsicWidth:540,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+80+(((componentViewport?.height||1947)-180-1862)/2+0+0)+0+234.6+0+0+0+909.6+0+0),pixelHeight:260,pixelWidth:540,sizes:\"270px\",src:\"https://framerusercontent.com/images/BPUYuqnRO5ew4peNIcBDtM09YU.png\",srcSet:\"https://framerusercontent.com/images/BPUYuqnRO5ew4peNIcBDtM09YU.png?scale-down-to=512 512w,https://framerusercontent.com/images/BPUYuqnRO5ew4peNIcBDtM09YU.png 540w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1eung3n, rgb(51, 51, 51))\"},children:\"NASSCOM 10k Startups\"})}),className:\"framer-ten2rt\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"i005SdGca\",style:{\"--extracted-1eung3n\":\"rgb(51, 51, 51)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"A9wogMGlS\"},nodeId:\"GDflqH2cc\",children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-gmnwl4 framer-1qic22\",\"data-framer-name\":\"Sivi: KTech Elevate Winner\",layoutDependency:layoutDependency,layoutId:\"GDflqH2cc\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Sivi: KTech Elevate Winner\",fit:\"fill\",intrinsicHeight:260,intrinsicWidth:540,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+80+(((componentViewport?.height||1403)-180-1222.2)/2+0+0)+0+138.6+0+0+0+682.2+0+9.5),pixelHeight:260,pixelWidth:540,sizes:`min(max((min(${componentViewport?.width||\"100vw\"} - 80px, 960px) - 120px) / 3, 50px), 270px)`,src:\"https://framerusercontent.com/images/HY6AJW2R5UJtcuHyjfdBXkqia4.png\",srcSet:\"https://framerusercontent.com/images/HY6AJW2R5UJtcuHyjfdBXkqia4.png?scale-down-to=512 512w,https://framerusercontent.com/images/HY6AJW2R5UJtcuHyjfdBXkqia4.png 540w\"},className:\"framer-7yunaj\",\"data-framer-name\":\"Sivi: KTech Elevate Winner\",layoutDependency:layoutDependency,layoutId:\"ab02ybCTg\",...addPropertyOverrides({nJsPuUD2R:{background:{alt:\"Sivi: KTech Elevate Winner\",fit:\"fill\",intrinsicHeight:260,intrinsicWidth:540,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+(((componentViewport?.height||3559)-160-3493.4)/2+0+0)+0+234.6+0+0+0+2274+0+9.5),pixelHeight:260,pixelWidth:540,sizes:`min(max(min(${componentViewport?.width||\"100vw\"} - 32px, 270px), 50px), 270px)`,src:\"https://framerusercontent.com/images/HY6AJW2R5UJtcuHyjfdBXkqia4.png\",srcSet:\"https://framerusercontent.com/images/HY6AJW2R5UJtcuHyjfdBXkqia4.png?scale-down-to=512 512w,https://framerusercontent.com/images/HY6AJW2R5UJtcuHyjfdBXkqia4.png 540w\"}},YUSwMDcQv:{background:{alt:\"Sivi: KTech Elevate Winner\",fit:\"fill\",intrinsicHeight:260,intrinsicWidth:540,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+80+(((componentViewport?.height||1947)-180-1862)/2+0+0)+0+234.6+0+0+0+1137+0+9.5),pixelHeight:260,pixelWidth:540,sizes:\"270px\",src:\"https://framerusercontent.com/images/HY6AJW2R5UJtcuHyjfdBXkqia4.png\",srcSet:\"https://framerusercontent.com/images/HY6AJW2R5UJtcuHyjfdBXkqia4.png?scale-down-to=512 512w,https://framerusercontent.com/images/HY6AJW2R5UJtcuHyjfdBXkqia4.png 540w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1eung3n, rgb(51, 51, 51))\"},children:\"KTech Elevate Winner\"})}),className:\"framer-15npad\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"IVdlxd0ON\",style:{\"--extracted-1eung3n\":\"rgb(51, 51, 51)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"A9wogMGlS\"},nodeId:\"IZSt00Coe\",children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1rp8lki framer-1qic22\",\"data-framer-name\":\"Sivi: Top 5 NTLF Super Startups\",layoutDependency:layoutDependency,layoutId:\"IZSt00Coe\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Sivi: Top 5 NTLF Super Startups\",fit:\"fill\",intrinsicHeight:260,intrinsicWidth:540,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+80+(((componentViewport?.height||1403)-180-1222.2)/2+0+0)+0+138.6+0+0+0+682.2+0+15.5),pixelHeight:260,pixelWidth:540,sizes:`min(max((min(${componentViewport?.width||\"100vw\"} - 80px, 960px) - 120px) / 3, 50px), 270px)`,src:\"https://framerusercontent.com/images/sMN9Qx5AYRicOrf04R3ZrchLtg.png\",srcSet:\"https://framerusercontent.com/images/sMN9Qx5AYRicOrf04R3ZrchLtg.png?scale-down-to=512 512w,https://framerusercontent.com/images/sMN9Qx5AYRicOrf04R3ZrchLtg.png 540w\"},className:\"framer-1f0qisw\",\"data-framer-name\":\"Sivi: Top 5 NTLF Super Startups\",layoutDependency:layoutDependency,layoutId:\"odaekn6HX\",...addPropertyOverrides({nJsPuUD2R:{background:{alt:\"Sivi: Top 5 NTLF Super Startups\",fit:\"fill\",intrinsicHeight:260,intrinsicWidth:540,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+(((componentViewport?.height||3559)-160-3493.4)/2+0+0)+0+234.6+0+0+0+2501.4+0+15.5),pixelHeight:260,pixelWidth:540,sizes:`min(max(min(${componentViewport?.width||\"100vw\"} - 32px, 270px), 50px), 270px)`,src:\"https://framerusercontent.com/images/sMN9Qx5AYRicOrf04R3ZrchLtg.png\",srcSet:\"https://framerusercontent.com/images/sMN9Qx5AYRicOrf04R3ZrchLtg.png?scale-down-to=512 512w,https://framerusercontent.com/images/sMN9Qx5AYRicOrf04R3ZrchLtg.png 540w\"}},YUSwMDcQv:{background:{alt:\"Sivi: Top 5 NTLF Super Startups\",fit:\"fill\",intrinsicHeight:260,intrinsicWidth:540,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+80+(((componentViewport?.height||1947)-180-1862)/2+0+0)+0+234.6+0+0+0+1137+0+15.5),pixelHeight:260,pixelWidth:540,sizes:\"270px\",src:\"https://framerusercontent.com/images/sMN9Qx5AYRicOrf04R3ZrchLtg.png\",srcSet:\"https://framerusercontent.com/images/sMN9Qx5AYRicOrf04R3ZrchLtg.png?scale-down-to=512 512w,https://framerusercontent.com/images/sMN9Qx5AYRicOrf04R3ZrchLtg.png 540w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1eung3n, rgb(51, 51, 51))\"},children:\"Top 5 NTLF Super Startups\"})}),className:\"framer-1bjh4qw\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"JBTYHhNBp\",style:{\"--extracted-1eung3n\":\"rgb(51, 51, 51)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1k6p9he\",\"data-framer-name\":\"sivi-product-hunt\",layoutDependency:layoutDependency,layoutId:\"A317KYa22\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-305yub\",\"data-framer-name\":\"cta\",layoutDependency:layoutDependency,layoutId:\"SLth7Fz8u\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-12mugoy-container\",layoutDependency:layoutDependency,layoutId:\"FwdxdOT48-container\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<img src=\"https://api.producthunt.com/widgets/embed-image/v1/top-post-badge.svg?post_id=391457&theme=dark&period=weekly\" alt=\"Sivi&#0032;AI - Generative&#0032;AI&#0032;to&#0032;magically&#0032;turn&#0032;text&#0032;to&#0032;visual&#0032;designs | Product Hunt\" style=\"width: 300px; height: 65px;\" width=\"300\" height=\"65\" />\\n',id:\"FwdxdOT48\",layoutId:\"FwdxdOT48\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yxmxh7-container\",layoutDependency:layoutDependency,layoutId:\"JAOTbr9wp-container\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<img src=\"https://api.producthunt.com/widgets/embed-image/v1/top-post-badge.svg?post_id=391457&theme=dark&period=daily\" alt=\"Sivi&#0032;AI - Generative&#0032;AI&#0032;to&#0032;magically&#0032;turn&#0032;text&#0032;to&#0032;visual&#0032;designs | Product Hunt\" style=\"width: 300px; height: 65px;\" width=\"300\" height=\"65\" />\\n',id:\"JAOTbr9wp\",layoutId:\"JAOTbr9wp\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-41p5s8-container\",layoutDependency:layoutDependency,layoutId:\"Udrws5Agq-container\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<img src=\"https://api.producthunt.com/widgets/embed-image/v1/top-post-badge.svg?post_id=391457&theme=dark&period=monthly\" alt=\"Sivi&#0032;AI - Generative&#0032;AI&#0032;to&#0032;magically&#0032;turn&#0032;text&#0032;to&#0032;visual&#0032;designs | Product Hunt\" style=\"width: 300px; height: 65px;\" width=\"300\" height=\"65\" />\\n',id:\"Udrws5Agq\",layoutId:\"Udrws5Agq\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-b9oiy2-container\",layoutDependency:layoutDependency,layoutId:\"USLij1NdU-container\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<img src=\"https://api.producthunt.com/widgets/embed-image/v1/top-post-topic-badge.svg?post_id=391457&theme=dark&period=monthly&topic_id=164\" alt=\"Sivi&#0032;AI - Generative&#0032;AI&#0032;to&#0032;magically&#0032;turn&#0032;text&#0032;to&#0032;visual&#0032;designs | Product Hunt\" style=\"width: 300px; height: 65px;\" width=\"300\" height=\"65\" />\\n',id:\"USLij1NdU\",layoutId:\"USLij1NdU\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-prdt5u-container\",layoutDependency:layoutDependency,layoutId:\"dnA43gb0V-container\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<img src=\"https://api.producthunt.com/widgets/embed-image/v1/top-post-topic-badge.svg?post_id=391457&theme=dark&period=monthly&topic_id=44\" alt=\"Sivi&#0032;AI - Generative&#0032;AI&#0032;to&#0032;magically&#0032;turn&#0032;text&#0032;to&#0032;visual&#0032;designs | Product Hunt\" style=\"width: 300px; height: 65px;\" width=\"300\" height=\"65\" />\\n',id:\"dnA43gb0V\",layoutId:\"dnA43gb0V\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ruy7nv-container\",layoutDependency:layoutDependency,layoutId:\"gu8iSkf49-container\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<img src=\"https://api.producthunt.com/widgets/embed-image/v1/top-post-topic-badge.svg?post_id=391457&theme=dark&period=monthly&topic_id=268\" alt=\"Sivi&#0032;AI - Generative&#0032;AI&#0032;to&#0032;magically&#0032;turn&#0032;text&#0032;to&#0032;visual&#0032;designs | Product Hunt\" style=\"width: 300px; height: 65px;\" width=\"300\" height=\"65\" />\\n',id:\"gu8iSkf49\",layoutId:\"gu8iSkf49\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})]})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-83w4y.framer-1qic22, .framer-83w4y .framer-1qic22 { display: block; }\",\".framer-83w4y.framer-1r5btqb { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: visible; padding: 80px 40px 100px 40px; position: relative; width: 1200px; }\",\".framer-83w4y .framer-e088b3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-83w4y .framer-1koczpg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1120px; }\",\".framer-83w4y .framer-yin3tl { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-83w4y .framer-166f3eb { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-83w4y .framer-1w2g1pw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-83w4y .framer-1eo4e4h { display: grid; flex: none; gap: 60px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: min-content; justify-content: center; max-width: 960px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-83w4y .framer-1oupbtt, .framer-83w4y .framer-1700y8z, .framer-83w4y .framer-4n7owg, .framer-83w4y .framer-1dx3rvb, .framer-83w4y .framer-1om7p3y, .framer-83w4y .framer-ckvchl, .framer-83w4y .framer-3awm5c, .framer-83w4y .framer-9ub1ck, .framer-83w4y .framer-17m5m0o, .framer-83w4y .framer-lmq2b5, .framer-83w4y .framer-gmnwl4, .framer-83w4y .framer-1rp8lki { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 100%; justify-content: center; justify-self: start; max-width: 270px; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-83w4y .framer-6u3jgz, .framer-83w4y .framer-zyd772, .framer-83w4y .framer-ar6vuv, .framer-83w4y .framer-hipwyd, .framer-83w4y .framer-5rs5bt, .framer-83w4y .framer-1irm82c, .framer-83w4y .framer-e2lx0i, .framer-83w4y .framer-9nne15, .framer-83w4y .framer-mns5hy, .framer-83w4y .framer-7yunaj, .framer-83w4y .framer-1f0qisw { aspect-ratio: 2.090909090909091 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 129px); overflow: visible; position: relative; width: 100%; }\",\".framer-83w4y .framer-15zgjv2, .framer-83w4y .framer-kqs8he, .framer-83w4y .framer-3b7fhd, .framer-83w4y .framer-1jiggxo, .framer-83w4y .framer-brfu01, .framer-83w4y .framer-1baydig, .framer-83w4y .framer-1y8589v, .framer-83w4y .framer-18qmw9j, .framer-83w4y .framer-1rxo2xx, .framer-83w4y .framer-ten2rt, .framer-83w4y .framer-15npad, .framer-83w4y .framer-1bjh4qw { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-83w4y .framer-6vfzln { aspect-ratio: 2.0930232558139537 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 129px); overflow: visible; position: relative; width: 100%; }\",\".framer-83w4y .framer-1k6p9he { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 30px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-83w4y .framer-305yub { display: grid; flex: none; gap: 24px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(50px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 948px; }\",\".framer-83w4y .framer-12mugoy-container, .framer-83w4y .framer-1yxmxh7-container, .framer-83w4y .framer-41p5s8-container, .framer-83w4y .framer-b9oiy2-container, .framer-83w4y .framer-prdt5u-container, .framer-83w4y .framer-1ruy7nv-container { align-self: start; aspect-ratio: 4.615384615384615 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 65px); justify-self: start; position: relative; width: 300px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-83w4y.framer-1r5btqb, .framer-83w4y .framer-e088b3, .framer-83w4y .framer-1koczpg, .framer-83w4y .framer-1w2g1pw, .framer-83w4y .framer-1oupbtt, .framer-83w4y .framer-1700y8z, .framer-83w4y .framer-4n7owg, .framer-83w4y .framer-1dx3rvb, .framer-83w4y .framer-1om7p3y, .framer-83w4y .framer-ckvchl, .framer-83w4y .framer-3awm5c, .framer-83w4y .framer-9ub1ck, .framer-83w4y .framer-17m5m0o, .framer-83w4y .framer-lmq2b5, .framer-83w4y .framer-gmnwl4, .framer-83w4y .framer-1rp8lki, .framer-83w4y .framer-1k6p9he { gap: 0px; } .framer-83w4y.framer-1r5btqb > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-83w4y.framer-1r5btqb > :first-child, .framer-83w4y .framer-e088b3 > :first-child, .framer-83w4y .framer-1koczpg > :first-child, .framer-83w4y .framer-1w2g1pw > :first-child, .framer-83w4y .framer-1oupbtt > :first-child, .framer-83w4y .framer-1700y8z > :first-child, .framer-83w4y .framer-4n7owg > :first-child, .framer-83w4y .framer-1dx3rvb > :first-child, .framer-83w4y .framer-1om7p3y > :first-child, .framer-83w4y .framer-ckvchl > :first-child, .framer-83w4y .framer-3awm5c > :first-child, .framer-83w4y .framer-9ub1ck > :first-child, .framer-83w4y .framer-17m5m0o > :first-child, .framer-83w4y .framer-lmq2b5 > :first-child, .framer-83w4y .framer-gmnwl4 > :first-child, .framer-83w4y .framer-1rp8lki > :first-child, .framer-83w4y .framer-1k6p9he > :first-child { margin-top: 0px; } .framer-83w4y.framer-1r5btqb > :last-child, .framer-83w4y .framer-e088b3 > :last-child, .framer-83w4y .framer-1koczpg > :last-child, .framer-83w4y .framer-1w2g1pw > :last-child, .framer-83w4y .framer-1oupbtt > :last-child, .framer-83w4y .framer-1700y8z > :last-child, .framer-83w4y .framer-4n7owg > :last-child, .framer-83w4y .framer-1dx3rvb > :last-child, .framer-83w4y .framer-1om7p3y > :last-child, .framer-83w4y .framer-ckvchl > :last-child, .framer-83w4y .framer-3awm5c > :last-child, .framer-83w4y .framer-9ub1ck > :last-child, .framer-83w4y .framer-17m5m0o > :last-child, .framer-83w4y .framer-lmq2b5 > :last-child, .framer-83w4y .framer-gmnwl4 > :last-child, .framer-83w4y .framer-1rp8lki > :last-child, .framer-83w4y .framer-1k6p9he > :last-child { margin-bottom: 0px; } .framer-83w4y .framer-e088b3 > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-83w4y .framer-1koczpg > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-83w4y .framer-1w2g1pw > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-83w4y .framer-1oupbtt > *, .framer-83w4y .framer-1700y8z > *, .framer-83w4y .framer-4n7owg > *, .framer-83w4y .framer-1dx3rvb > *, .framer-83w4y .framer-1om7p3y > *, .framer-83w4y .framer-ckvchl > *, .framer-83w4y .framer-3awm5c > *, .framer-83w4y .framer-9ub1ck > *, .framer-83w4y .framer-17m5m0o > *, .framer-83w4y .framer-lmq2b5 > *, .framer-83w4y .framer-gmnwl4 > *, .framer-83w4y .framer-1rp8lki > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-83w4y .framer-1k6p9he > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } }\",\".framer-83w4y.framer-v-vd9blg.framer-1r5btqb { width: 800px; }\",\".framer-83w4y.framer-v-vd9blg .framer-1koczpg, .framer-83w4y.framer-v-ei1i2g .framer-1koczpg { width: 100%; }\",\".framer-83w4y.framer-v-vd9blg .framer-166f3eb, .framer-83w4y.framer-v-ei1i2g .framer-166f3eb { overflow: hidden; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-83w4y.framer-v-vd9blg .framer-1eo4e4h { grid-template-columns: repeat(2, minmax(50px, 1fr)); max-width: unset; width: 600px; }\",\".framer-83w4y.framer-v-vd9blg .framer-305yub { grid-template-columns: repeat(2, minmax(50px, 1fr)); width: 624px; }\",\".framer-83w4y.framer-v-ei1i2g.framer-1r5btqb { padding: 60px 16px 100px 16px; width: 800px; }\",\".framer-83w4y.framer-v-ei1i2g .framer-1eo4e4h { grid-template-columns: repeat(1, minmax(50px, 1fr)); max-width: 270px; }\",\".framer-83w4y.framer-v-ei1i2g .framer-305yub { grid-template-columns: repeat(1, minmax(50px, 1fr)); width: 300px; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1403\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"YUSwMDcQv\":{\"layout\":[\"fixed\",\"auto\"]},\"nJsPuUD2R\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerex7_WCK8A=withCSS(Component,css,\"framer-83w4y\");export default Framerex7_WCK8A;Framerex7_WCK8A.displayName=\"recognitions\";Framerex7_WCK8A.defaultProps={height:1403,width:1200};addPropertyControls(Framerex7_WCK8A,{variant:{options:[\"BtF44W6e0\",\"YUSwMDcQv\",\"nJsPuUD2R\"],optionTitles:[\"Desktop\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerex7_WCK8A,[{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\"}]},...EmbedFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerex7_WCK8A\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"YUSwMDcQv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nJsPuUD2R\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1200\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"1403\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["Embed", "type", "url", "html", "p", "EmbedURL", "EmbedHTML", "Instructions", "addPropertyControls", "ControlType", "props", "emptyStateStyle", "centerTextStyle", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "ref", "pe", "hasScript", "div", "executeScripts", "htmlStyle", "node", "script", "name", "value", "child", "containerStyles", "u", "MotionAWithFX", "withFX", "motion", "EmbedFonts", "getFonts", "Embed", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "animation1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "RichText2", "Link", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "css", "Framerex7_WCK8A", "withCSS", "ex7_WCK8A_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
