{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/Hbc0lxqGSRzFG6uMT9yO/OPmIEDVRw3amYB3GBzWp/GoogleMaps.js", "ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js", "ssg:https://framerusercontent.com/modules/pPLz8wV3EfGgycWY6vJQ/1soBEiFTyHYRG4HR1OW9/fd5LFi_i7.js", "ssg:https://framerusercontent.com/modules/XhKeQBIETAH8nYufKXTe/sN4a76avuojkya4A9sJf/Mq1Y1xYww.js", "ssg:https://framerusercontent.com/modules/yTzywshKuU4oYRNv1xMQ/rPRJKKAwIGPWy7fFcSaX/zxuGgC36C.js", "ssg:https://framerusercontent.com/modules/E4uY0L756FfHBi2a7PtE/I86KISzc28Gis658bXFn/ZkIKg_pLc.js", "ssg:https://framerusercontent.com/modules/Ck7EP5WypQheSRrg9eI9/TbXGDTz8Sk7PlLveuNXA/QbdeYBw76.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,motion}from\"framer\";import{containerStyles,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{useMemo}from\"react\";const coordinatesRegex=/^((?:\\-?|\\+?)?\\d+(?:\\.\\d+)?),\\s*((?:\\-?|\\+?)?\\d+(?:\\.\\d+)?)$/;/**\n * GOOGLE MAPS\n *\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 400\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export default function GoogleMaps({coordinates,zoom,style,...props}){const borderRadius=useRadius(props);const[latitude1,longitude1]=useMemo(()=>{var ref;const[,latitude,longitude]=(ref=coordinates.match(coordinatesRegex))!==null&&ref!==void 0?ref:[null,\"\",\"\",];return[latitude,longitude];},[coordinates]);return(/*#__PURE__*/ _jsx(motion.div,{style:{...style,...containerStyles,overflow:\"hidden\",borderRadius},...props,children:/*#__PURE__*/ _jsx(\"iframe\",{style:{height:\"100%\",width:\"100%\",border:0},src:`https://maps.google.com/maps?q=${latitude1},${longitude1}&z=${zoom}&output=embed`})}));};addPropertyControls(GoogleMaps,{coordinates:{type:ControlType.String,title:\"Coordinates\",placeholder:\"52.37588, 4.891295\",defaultValue:\"52.37588, 4.891295\",description:\"GPS coordinates can be found directly in [Google Maps](https://maps.google.com).\"},zoom:{type:ControlType.Number,step:1,min:0,max:25,title:\"Zoom\",defaultValue:15},...borderRadiusControl});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"GoogleMaps\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"600\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./GoogleMaps.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));var ThumbnailFormat;(function(ThumbnailFormat){ThumbnailFormat[\"WebP\"]=\"webp\";ThumbnailFormat[\"JPG\"]=\"jpg\";})(ThumbnailFormat||(ThumbnailFormat={}));/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,title,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==\"Off\";const showThumbnail=onCanvas||thumbnail!==\"Off\"&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/_jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL]=parsedURL;// https://developers.google.com/youtube/player_parameters\nconst searchParams=embedURL.searchParams;searchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(!showVideo){// if a browser does not support `loading=lazy`, make sure the video doesn't start playing in the background\nsearchParams.set(\"autoplay\",\"0\");}else if(isAutoplay||// when there is no thumbnail, we don't want to autoplay, unless video is started\nshowThumbnail&&showVideo){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===\"Loop\"){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}const iframeProps={title:title||\"Youtube Video\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",src:embedURL.href,frameBorder:\"0\",onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp};return /*#__PURE__*/_jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onKeyDown:startVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:// Safari sometimes struggles to render border-radius:\n// - on the canvas when changing from 0 to any other value\n// - or when rendering an iframe\nhasBorderRadius&&(showVideo||onCanvas)?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},role:\"presentation\",children:[isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),/*#__PURE__*/_jsx(\"div\",{style:{...videoStyle,background:showThumbnail?`center / cover url(${getThumbnailURL(videoId,thumbnail,getWebPSupported()?\"webp\":\"jpg\")}) no-repeat`:undefined}}),!onCanvas?/*#__PURE__*/_jsx(\"iframe\",{loading:!showVideo?\"lazy\":undefined,style:!showVideo?{...videoStyle,display:\"none\"}:videoStyle,...iframeProps}):null,showVideo?null:/*#__PURE__*/_jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===\"Off\";}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==\"Off\";}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:\"Off\",shouldMute:true,thumbnail:\"Medium Quality\",isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL];}if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");// https://www.youtube.com/watch?v=Fop2oskTug8\nif(pathSegments[0]===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId=pathSegments[1];return[videoId,url];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId=url.pathname.slice(1);const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res,format=\"jpg\"){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst useWebP=format===\"webp\";const pre=useWebP?\"https://i.ytimg.com/vi_webp/\":\"https://i.ytimg.com/vi/\";const ext=useWebP?\"webp\":\"jpg\";switch(res){case\"Low Quality\":return`${pre}${videoId}/hqdefault.${ext}`;case\"Medium Quality\":return`${pre}${videoId}/sddefault.${ext}`;case\"High Quality\":return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}let _getWebPSupported;// https://stackoverflow.com/a/27232658\nfunction getWebPSupported(){// We're going to default to webp because it's pretty widely supported by now\nif(!window){return true;}if(_getWebPSupported!==undefined){return _getWebPSupported;}const element=document.createElement(\"canvas\");if(element.getContext&&element.getContext(\"2d\")){// was able or not to get WebP representation\nreturn _getWebPSupported=element.toDataURL(\"image/webp\").indexOf(\"data:image/webp\")===0;}else{// very old browser like IE 8, canvas not supported\nreturn _getWebPSupported=false;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/_jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/_jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/_jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/_jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/_jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerIntrinsicHeight\":\"315\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"560\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "// Generated by Framer (20caf11)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as localizedValues from\"./fd5LFi_i7-0.js\";import OtherTeamMembers from\"https://framerusercontent.com/modules/tswWKSrcb2f7bQ3tFaSy/hegaXWIWVgp0W7xXJ4cJ/P4r9YDXMv.js\";const OtherTeamMembersFonts=getFonts(OtherTeamMembers);const enabledGestures={WcPtfNHDA:{hover:true}};const cycleOrder=[\"WcPtfNHDA\",\"d6g6KZUvJ\"];const serializationHash=\"framer-0te9X\";const variantClassNames={d6g6KZUvJ:\"framer-v-1068fr\",WcPtfNHDA:\"framer-v-rajbvk\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const valuesByLocaleId={ZhErffrio:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"WcPtfNHDA\",\"Variant 2\":\"d6g6KZUvJ\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"WcPtfNHDA\"};};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:\"WcPtfNHDA\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1s8muws=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"d6g6KZUvJ\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(gestureVariant===\"WcPtfNHDA-hover\")return false;if(baseVariant===\"d6g6KZUvJ\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"d6g6KZUvJ\")return false;return true;};const isDisplayed2=()=>{if(baseVariant===\"d6g6KZUvJ\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"G1MEyIWHU\"},children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-rajbvk\",className,classNames)} framer-16wtpbr`,\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"WcPtfNHDA\",onTap:onTap1s8muws,ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"WcPtfNHDA-hover\":{\"data-framer-name\":undefined},d6g6KZUvJ:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0),pixelHeight:573,pixelWidth:573,sizes:\"40px\",src:\"https://framerusercontent.com/images/zSYvdalAohh98HGo5B56F7oPcE.jpeg\",srcSet:\"https://framerusercontent.com/images/zSYvdalAohh98HGo5B56F7oPcE.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/zSYvdalAohh98HGo5B56F7oPcE.jpeg 573w\"},className:\"framer-jrfs5p\",layoutDependency:layoutDependency,layoutId:\"RKgd33WNL\",style:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,boxShadow:\"1px 2px 2px 0px rgba(0,0,0,0.25)\",opacity:.2}}),isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"Chittu Nagarajan\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0),pixelHeight:256,pixelWidth:256,src:\"https://framerusercontent.com/images/3tbZ5dfKvHnUbMqsckQDtwR4w4.webp\"},className:\"framer-1r3ckn2\",layoutDependency:layoutDependency,layoutId:\"eOHEMvMds\",style:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,boxShadow:\"1px 2px 2px 0px rgba(0,0,0,0.25)\",opacity:.3}}),isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"Deepika Kinhal\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0),pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/rscuKzkgY4nuqdQpfCikY4kIkzQ.jpg\"},className:\"framer-16u8p7b\",layoutDependency:layoutDependency,layoutId:\"a13Usc2Xe\",style:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,boxShadow:\"1px 2px 2px 0px rgba(0,0,0,0.25)\",opacity:.7}}),isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"Manish\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0),pixelHeight:260,pixelWidth:260,src:\"https://framerusercontent.com/images/tTywC9sILiiPNplIleUAH1l9a38.jpeg\"},className:\"framer-ymf81\",layoutDependency:layoutDependency,layoutId:\"tknoe5fCZ\",style:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,boxShadow:\"1px 2px 2px 0px rgba(0,0,0,0.25)\",opacity:.8}}),isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"Ashok Pal Singh\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0),pixelHeight:400,pixelWidth:400,src:\"https://framerusercontent.com/images/laopdNn74aONalF7cbgxkWymqBQ.webp\"},className:\"framer-x11ae4\",layoutDependency:layoutDependency,layoutId:\"CtpaxrwiG\",style:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,boxShadow:\"1px 2px 2px 0px rgba(0,0,0,0.25)\",opacity:.9}}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c5446a54-80de-4f79-b24b-55997bf1fe5e, rgb(255, 255, 255)))\"},children:\"15+ Members\"})}),className:\"framer-1kg4csk\",fonts:[\"GF;Inter-regular\"],layoutDependency:layoutDependency,layoutId:\"bzo3nuYvL\",style:{\"--extracted-r6o4lv\":\"var(--token-c5446a54-80de-4f79-b24b-55997bf1fe5e, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"WcPtfNHDA-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c5446a54-80de-4f79-b24b-55997bf1fe5e, rgb(255, 255, 255)))\"},children:\"View All\"})})}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18fe203\",layoutDependency:layoutDependency,layoutId:\"I5ZWymPgn\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,...addPropertyOverrides({d6g6KZUvJ:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||350)-0-350)/2+0+0)+-5}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-18pjei6-container\",layoutDependency:layoutDependency,layoutId:\"pfYfoO8_C-container\",children:/*#__PURE__*/_jsx(OtherTeamMembers,{CcSRLH6Vh:\"10x Impact Labs\",H76GFDitc:\"Co-Founder\",height:\"100%\",id:\"pfYfoO8_C\",layoutId:\"pfYfoO8_C\",oa0vSQo8d:addImageAlt({src:\"https://framerusercontent.com/images/dspTvYePYos1UzdrAGn4PBg7stk.jpg\"},\"Tony D'Souza\"),QL_GHHU4J:\"Tony D'Souza\",variant:\"wYH00CN6z\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,...addPropertyOverrides({d6g6KZUvJ:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||350)-0-350)/2+0+0)+-5}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-51kzjz-container\",layoutDependency:layoutDependency,layoutId:\"ZRjM99Blw-container\",children:/*#__PURE__*/_jsx(OtherTeamMembers,{CcSRLH6Vh:\"OpenNyAI\",H76GFDitc:\"Curator\",height:\"100%\",id:\"ZRjM99Blw\",layoutId:\"ZRjM99Blw\",oa0vSQo8d:addImageAlt({src:\"https://framerusercontent.com/images/kaTVMn5Rp3LT6HAxFd9Rpd5li4g.jpeg\"},\"Smita Gupta\"),QL_GHHU4J:\"Smita Gupta\",variant:\"wYH00CN6z\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,...addPropertyOverrides({d6g6KZUvJ:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||350)-0-350)/2+0+0)+-5}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lah4ac-container\",layoutDependency:layoutDependency,layoutId:\"JfdClYy9_-container\",children:/*#__PURE__*/_jsx(OtherTeamMembers,{CcSRLH6Vh:\"Outlawed\",H76GFDitc:\"Head of Operations\",height:\"100%\",id:\"JfdClYy9_\",layoutId:\"JfdClYy9_\",oa0vSQo8d:addImageAlt({src:\"https://framerusercontent.com/images/3I2VEQefZvjZzGwlr1xrO4a2eCk.jpeg\",srcSet:\"https://framerusercontent.com/images/3I2VEQefZvjZzGwlr1xrO4a2eCk.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/3I2VEQefZvjZzGwlr1xrO4a2eCk.jpeg 800w\"},\"Lakshmi Nambiar\"),QL_GHHU4J:\"Lakshmi Nambiar\",variant:\"wYH00CN6z\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,...addPropertyOverrides({d6g6KZUvJ:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||350)-0-350)/2+0+0)+-5}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-16pj0ji-container\",layoutDependency:layoutDependency,layoutId:\"S0OFuNlW6-container\",children:/*#__PURE__*/_jsx(OtherTeamMembers,{CcSRLH6Vh:\"TinkerHub\",H76GFDitc:\"Co-founder\",height:\"100%\",id:\"S0OFuNlW6\",layoutId:\"S0OFuNlW6\",oa0vSQo8d:addImageAlt({src:\"https://framerusercontent.com/images/SSDXSif1JKYI6uFM7bM7062AkCE.jpeg\"},\"\"),QL_GHHU4J:\"Moosa Mehar MP\",variant:\"wYH00CN6z\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,...addPropertyOverrides({d6g6KZUvJ:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||350)-0-350)/2+0+0)+-5}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-iwy7bg-container\",layoutDependency:layoutDependency,layoutId:\"nRp8Kz202-container\",children:/*#__PURE__*/_jsx(OtherTeamMembers,{CcSRLH6Vh:\"Centre for Social Justice\",H76GFDitc:\"Theme Specialist\",height:\"100%\",id:\"nRp8Kz202\",layoutId:\"nRp8Kz202\",oa0vSQo8d:addImageAlt({src:\"https://framerusercontent.com/images/odi458kSLbsTAd1G4Fqr1LAMKA.jpeg\",srcSet:\"https://framerusercontent.com/images/odi458kSLbsTAd1G4Fqr1LAMKA.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/odi458kSLbsTAd1G4Fqr1LAMKA.jpeg 640w\"},\"Aditya Gujarathi\"),QL_GHHU4J:\"Aditya Gujarathi\",variant:\"wYH00CN6z\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,...addPropertyOverrides({d6g6KZUvJ:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||350)-0-350)/2+0+0)+-5}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1026y29-container\",layoutDependency:layoutDependency,layoutId:\"WBWo0TqAo-container\",children:/*#__PURE__*/_jsx(OtherTeamMembers,{CcSRLH6Vh:\"10x Impact Labs\",H76GFDitc:\"Co-Founder\",height:\"100%\",id:\"WBWo0TqAo\",layoutId:\"WBWo0TqAo\",oa0vSQo8d:addImageAlt({src:\"https://framerusercontent.com/images/6urXaMHj4RWpRdLfBzMc3CfkXw.jpg\"},\"Vaibhav Mishra\"),QL_GHHU4J:\"Vaibhav Mishra\",variant:\"wYH00CN6z\",width:\"100%\"})})})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-x0p1r7\",layoutDependency:layoutDependency,layoutId:\"Cckc0Rl2d\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,...addPropertyOverrides({d6g6KZUvJ:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||350)-0-350)/2+110+10)+-5}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-c8ecob-container\",layoutDependency:layoutDependency,layoutId:\"NnSLWirYf-container\",children:/*#__PURE__*/_jsx(OtherTeamMembers,{CcSRLH6Vh:\"Ooloi Labs\",H76GFDitc:\"Co-Founder and Partner\",height:\"100%\",id:\"NnSLWirYf\",layoutId:\"NnSLWirYf\",oa0vSQo8d:addImageAlt({src:\"https://framerusercontent.com/images/Hkfz5nhyM4H6cCzQehf4jHWvl80.jpeg\",srcSet:\"https://framerusercontent.com/images/Hkfz5nhyM4H6cCzQehf4jHWvl80.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/Hkfz5nhyM4H6cCzQehf4jHWvl80.jpeg 800w\"},\"Akshay Roongta\"),QL_GHHU4J:\"Akshay Roongta\",variant:\"wYH00CN6z\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,...addPropertyOverrides({d6g6KZUvJ:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||350)-0-350)/2+110+10)+-5}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mznnto-container\",layoutDependency:layoutDependency,layoutId:\"McYMQAMF7-container\",children:/*#__PURE__*/_jsx(OtherTeamMembers,{CcSRLH6Vh:\"Centre for Social Justice\",H76GFDitc:\"Fellow\",height:\"100%\",id:\"McYMQAMF7\",layoutId:\"McYMQAMF7\",oa0vSQo8d:addImageAlt({src:\"https://framerusercontent.com/images/yr25ClqjM6FfZxOQUVg0iUxWXoI.jpg\"},\"Anahita Surya\"),QL_GHHU4J:\"Anahita Surya\",variant:\"wYH00CN6z\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,...addPropertyOverrides({d6g6KZUvJ:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||350)-0-350)/2+110+10)+-5}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ia1ww0-container\",layoutDependency:layoutDependency,layoutId:\"A3lk1XWP6-container\",children:/*#__PURE__*/_jsx(OtherTeamMembers,{CcSRLH6Vh:\"Centre for Social Justice\",H76GFDitc:\"\",height:\"100%\",id:\"A3lk1XWP6\",layoutId:\"A3lk1XWP6\",oa0vSQo8d:addImageAlt({src:\"https://framerusercontent.com/images/gg6oR4uLHjQtVNCDgr36f839MkE.png\"},\"Gatha Namboothiri\"),QL_GHHU4J:\"Gatha Namboothiri\",variant:\"wYH00CN6z\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,...addPropertyOverrides({d6g6KZUvJ:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||350)-0-350)/2+110+10)+-5}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-nojlre-container\",layoutDependency:layoutDependency,layoutId:\"LssSZVYAn-container\",children:/*#__PURE__*/_jsx(OtherTeamMembers,{CcSRLH6Vh:\"Foundation for Ecological Security\",H76GFDitc:\"Legal Researcher\",height:\"100%\",id:\"LssSZVYAn\",layoutId:\"LssSZVYAn\",oa0vSQo8d:addImageAlt({src:\"https://framerusercontent.com/images/kuaWIbxuuBAkghunAN6YcYI1CI.jpg\"},\"Pooja Chandran\"),QL_GHHU4J:\"Pooja Chandran\",variant:\"wYH00CN6z\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,...addPropertyOverrides({d6g6KZUvJ:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||350)-0-350)/2+110+10)+-5}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-rnuwx2-container\",layoutDependency:layoutDependency,layoutId:\"HhXTUaFz5-container\",children:/*#__PURE__*/_jsx(OtherTeamMembers,{CcSRLH6Vh:\"Migration and Asylum Project\",H76GFDitc:\"Founder and Executive Director\",height:\"100%\",id:\"HhXTUaFz5\",layoutId:\"HhXTUaFz5\",oa0vSQo8d:addImageAlt({src:\"https://framerusercontent.com/images/611L57nPFTaNuFDUP7V0c8zDTK8.png\",srcSet:\"https://framerusercontent.com/images/611L57nPFTaNuFDUP7V0c8zDTK8.png?scale-down-to=1024 890w,https://framerusercontent.com/images/611L57nPFTaNuFDUP7V0c8zDTK8.png 920w\"},\"Roshni Shanker\"),QL_GHHU4J:\"Roshni Shanker\",variant:\"wYH00CN6z\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,...addPropertyOverrides({d6g6KZUvJ:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||350)-0-350)/2+110+10)+-5}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rtml32-container\",layoutDependency:layoutDependency,layoutId:\"nigjgdg6a-container\",children:/*#__PURE__*/_jsx(OtherTeamMembers,{CcSRLH6Vh:\"Migration and Asylum Project\",H76GFDitc:\"Project Coordinator\",height:\"100%\",id:\"nigjgdg6a\",layoutId:\"nigjgdg6a\",oa0vSQo8d:addImageAlt({src:\"https://framerusercontent.com/images/9HlidfvAwoNa2VTmmvi4jUew.jpg\"},\"Ankita Sarkar\"),QL_GHHU4J:\"Ankita Sarkar\",variant:\"wYH00CN6z\",width:\"100%\"})})})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1r3mhx0\",layoutDependency:layoutDependency,layoutId:\"yhk1fmhSZ\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,...addPropertyOverrides({d6g6KZUvJ:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||350)-0-350)/2+220+20)+-5}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-hsipir-container\",layoutDependency:layoutDependency,layoutId:\"QHLuuEbmE-container\",children:/*#__PURE__*/_jsx(OtherTeamMembers,{CcSRLH6Vh:\"Ooloi Labs\",H76GFDitc:\"Co-Founder and Partner\",height:\"100%\",id:\"QHLuuEbmE\",layoutId:\"QHLuuEbmE\",oa0vSQo8d:addImageAlt({src:\"https://framerusercontent.com/images/Hkfz5nhyM4H6cCzQehf4jHWvl80.jpeg\",srcSet:\"https://framerusercontent.com/images/Hkfz5nhyM4H6cCzQehf4jHWvl80.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/Hkfz5nhyM4H6cCzQehf4jHWvl80.jpeg 800w\"},\"Akshay Roongta\"),QL_GHHU4J:\"Akshay Roongta\",variant:\"wYH00CN6z\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,...addPropertyOverrides({d6g6KZUvJ:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||350)-0-350)/2+220+20)+-5}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-88na1k-container\",layoutDependency:layoutDependency,layoutId:\"ttKojuSep-container\",children:/*#__PURE__*/_jsx(OtherTeamMembers,{CcSRLH6Vh:\"Centre for Social Justice\",H76GFDitc:\"Fellow\",height:\"100%\",id:\"ttKojuSep\",layoutId:\"ttKojuSep\",oa0vSQo8d:addImageAlt({src:\"https://framerusercontent.com/images/yr25ClqjM6FfZxOQUVg0iUxWXoI.jpg\"},\"Anahita Surya\"),QL_GHHU4J:\"Anahita Surya\",variant:\"wYH00CN6z\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,...addPropertyOverrides({d6g6KZUvJ:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||350)-0-350)/2+220+20)+-5}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ezk0t7-container\",layoutDependency:layoutDependency,layoutId:\"DrYy4YGQT-container\",children:/*#__PURE__*/_jsx(OtherTeamMembers,{CcSRLH6Vh:\"Centre for Social Justice\",H76GFDitc:\"\",height:\"100%\",id:\"DrYy4YGQT\",layoutId:\"DrYy4YGQT\",oa0vSQo8d:addImageAlt({src:\"https://framerusercontent.com/images/gg6oR4uLHjQtVNCDgr36f839MkE.png\"},\"Gatha Namboothiri\"),QL_GHHU4J:\"Gatha Namboothiri\",variant:\"wYH00CN6z\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,...addPropertyOverrides({d6g6KZUvJ:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||350)-0-350)/2+220+20)+-5}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-7uwh8h-container\",layoutDependency:layoutDependency,layoutId:\"aNq2xNmNy-container\",children:/*#__PURE__*/_jsx(OtherTeamMembers,{CcSRLH6Vh:\"Foundation for Ecological Security\",H76GFDitc:\"Legal Researcher\",height:\"100%\",id:\"aNq2xNmNy\",layoutId:\"aNq2xNmNy\",oa0vSQo8d:addImageAlt({src:\"https://framerusercontent.com/images/kuaWIbxuuBAkghunAN6YcYI1CI.jpg\"},\"Pooja Chandran\"),QL_GHHU4J:\"Pooja Chandran\",variant:\"wYH00CN6z\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,...addPropertyOverrides({d6g6KZUvJ:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||350)-0-350)/2+220+20)+-5}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-88wake-container\",layoutDependency:layoutDependency,layoutId:\"rpmhKYke7-container\",children:/*#__PURE__*/_jsx(OtherTeamMembers,{CcSRLH6Vh:\"Migration and Asylum Project\",H76GFDitc:\"Founder and Executive Director\",height:\"100%\",id:\"rpmhKYke7\",layoutId:\"rpmhKYke7\",oa0vSQo8d:addImageAlt({src:\"https://framerusercontent.com/images/611L57nPFTaNuFDUP7V0c8zDTK8.png\",srcSet:\"https://framerusercontent.com/images/611L57nPFTaNuFDUP7V0c8zDTK8.png?scale-down-to=1024 890w,https://framerusercontent.com/images/611L57nPFTaNuFDUP7V0c8zDTK8.png 920w\"},\"Roshni Shanker\"),QL_GHHU4J:\"Roshni Shanker\",variant:\"wYH00CN6z\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,...addPropertyOverrides({d6g6KZUvJ:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||350)-0-350)/2+220+20)+-5}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-2nm094-container\",layoutDependency:layoutDependency,layoutId:\"Yji4kb5S5-container\",children:/*#__PURE__*/_jsx(OtherTeamMembers,{CcSRLH6Vh:\"Migration and Asylum Project\",H76GFDitc:\"Project Coordinator\",height:\"100%\",id:\"Yji4kb5S5\",layoutId:\"Yji4kb5S5\",oa0vSQo8d:addImageAlt({src:\"https://framerusercontent.com/images/9HlidfvAwoNa2VTmmvi4jUew.jpg\"},\"Ankita Sarkar\"),QL_GHHU4J:\"Ankita Sarkar\",variant:\"wYH00CN6z\",width:\"100%\"})})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-0te9X.framer-16wtpbr, .framer-0te9X .framer-16wtpbr { display: block; }\",\".framer-0te9X.framer-rajbvk { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 370px; }\",\".framer-0te9X .framer-jrfs5p { aspect-ratio: 1 / 1; bottom: 0px; flex: none; left: 100px; overflow: hidden; position: absolute; top: 0px; width: var(--framer-aspect-ratio-supported, 40px); will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-0te9X .framer-1r3ckn2 { aspect-ratio: 1 / 1; bottom: 0px; flex: none; left: 75px; overflow: hidden; position: absolute; top: 0px; width: var(--framer-aspect-ratio-supported, 40px); will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-0te9X .framer-16u8p7b { aspect-ratio: 1 / 1; bottom: 0px; flex: none; left: 50px; overflow: hidden; position: absolute; top: 0px; width: var(--framer-aspect-ratio-supported, 40px); will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-0te9X .framer-ymf81 { aspect-ratio: 1 / 1; bottom: 0px; flex: none; left: 25px; overflow: hidden; position: absolute; top: 0px; width: var(--framer-aspect-ratio-supported, 40px); will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-0te9X .framer-x11ae4 { aspect-ratio: 1 / 1; bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; top: 0px; width: var(--framer-aspect-ratio-supported, 40px); will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-0te9X .framer-1kg4csk { flex: none; height: auto; left: 150px; position: absolute; top: 50%; white-space: pre; width: auto; z-index: 1; }\",\".framer-0te9X .framer-18fe203, .framer-0te9X .framer-x0p1r7, .framer-0te9X .framer-1r3mhx0 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: 110px; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-0te9X .framer-18pjei6-container, .framer-0te9X .framer-51kzjz-container, .framer-0te9X .framer-1lah4ac-container, .framer-0te9X .framer-16pj0ji-container, .framer-0te9X .framer-iwy7bg-container, .framer-0te9X .framer-1026y29-container, .framer-0te9X .framer-c8ecob-container, .framer-0te9X .framer-1mznnto-container, .framer-0te9X .framer-ia1ww0-container, .framer-0te9X .framer-nojlre-container, .framer-0te9X .framer-rnuwx2-container, .framer-0te9X .framer-1rtml32-container, .framer-0te9X .framer-hsipir-container, .framer-0te9X .framer-88na1k-container, .framer-0te9X .framer-ezk0t7-container, .framer-0te9X .framer-7uwh8h-container, .framer-0te9X .framer-88wake-container, .framer-0te9X .framer-2nm094-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0te9X.framer-rajbvk { gap: 0px; } .framer-0te9X.framer-rajbvk > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-0te9X.framer-rajbvk > :first-child { margin-left: 0px; } .framer-0te9X.framer-rajbvk > :last-child { margin-right: 0px; } }\",\".framer-0te9X.framer-v-1068fr.framer-rajbvk { flex-direction: column; height: min-content; width: min-content; }\",\".framer-0te9X.framer-v-1068fr .framer-18fe203, .framer-0te9X.framer-v-1068fr .framer-x0p1r7, .framer-0te9X.framer-v-1068fr .framer-1r3mhx0 { align-self: stretch; flex: none; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0te9X.framer-v-1068fr.framer-rajbvk { gap: 0px; } .framer-0te9X.framer-v-1068fr.framer-rajbvk > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-0te9X.framer-v-1068fr.framer-rajbvk > :first-child { margin-top: 0px; } .framer-0te9X.framer-v-1068fr.framer-rajbvk > :last-child { margin-bottom: 0px; } }\",\".framer-0te9X.framer-v-rajbvk.hover.framer-rajbvk { gap: 0px; justify-content: flex-end; width: 305px; }\",\".framer-0te9X.framer-v-rajbvk.hover .framer-1kg4csk { left: unset; order: 5; right: 21px; white-space: pre-wrap; width: 75px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0te9X.framer-v-rajbvk.hover.framer-rajbvk { gap: 0px; } .framer-0te9X.framer-v-rajbvk.hover.framer-rajbvk > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-0te9X.framer-v-rajbvk.hover.framer-rajbvk > :first-child { margin-left: 0px; } .framer-0te9X.framer-v-rajbvk.hover.framer-rajbvk > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 370\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"d6g6KZUvJ\":{\"layout\":[\"auto\",\"auto\"]},\"RGdNv7JuW\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerfd5LFi_i7=withCSS(Component,css,\"framer-0te9X\");export default Framerfd5LFi_i7;Framerfd5LFi_i7.displayName=\"Face Pile\";Framerfd5LFi_i7.defaultProps={height:40,width:370};addPropertyControls(Framerfd5LFi_i7,{variant:{options:[\"WcPtfNHDA\",\"d6g6KZUvJ\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerfd5LFi_i7,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"}]},...OtherTeamMembersFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerfd5LFi_i7\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"d6g6KZUvJ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"RGdNv7JuW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"40\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"370\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./fd5LFi_i7.map", "// Generated by Framer (e22b717)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/H01r0jVQyzmu9BAyPT0z/9zO8hrnM4gHgyWdrkQeC/KfhKKOJVS.js\";import FacePile from\"https://framerusercontent.com/modules/pPLz8wV3EfGgycWY6vJQ/1soBEiFTyHYRG4HR1OW9/fd5LFi_i7.js\";const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const RichTextWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(RichText));const PhosphorFonts=getFonts(Phosphor);const FacePileFonts=getFonts(FacePile);const cycleOrder=[\"FMdJqJuq2\",\"LVh0gw6jx\",\"fH0Gmwj63\",\"OJWAzu4_q\",\"OV53xODJv\"];const serializationHash=\"framer-D1cRc\";const variantClassNames={fH0Gmwj63:\"framer-v-1u0r95y\",FMdJqJuq2:\"framer-v-3fc4gn\",LVh0gw6jx:\"framer-v-1u1ig7l\",OJWAzu4_q:\"framer-v-1340au8\",OV53xODJv:\"framer-v-qnqvnu\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const 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:150};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={\"WG1-Phone\":\"OV53xODJv\",WG1:\"FMdJqJuq2\",WG2:\"LVh0gw6jx\",WG3:\"fH0Gmwj63\",WG4:\"OJWAzu4_q\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"FMdJqJuq2\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"FMdJqJuq2\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1mtg6el=activeVariantCallback(async(...args)=>{setVariant(\"FMdJqJuq2\");});const onTap10v9q9g=activeVariantCallback(async(...args)=>{setVariant(\"LVh0gw6jx\");});const onTap1bzsdwr=activeVariantCallback(async(...args)=>{setVariant(\"fH0Gmwj63\");});const onTap1jnd4dl=activeVariantCallback(async(...args)=>{setVariant(\"OJWAzu4_q\");});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"LVh0gw6jx\",\"fH0Gmwj63\",\"OJWAzu4_q\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"OJWAzu4_q\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"fH0Gmwj63\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"LVh0gw6jx\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-3fc4gn\",className,classNames),\"data-framer-name\":\"WG1\",layoutDependency:layoutDependency,layoutId:\"FMdJqJuq2\",ref:refBinding,style:{borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15,...style},...addPropertyOverrides({fH0Gmwj63:{\"data-framer-name\":\"WG3\"},LVh0gw6jx:{\"data-framer-name\":\"WG2\"},OJWAzu4_q:{\"data-framer-name\":\"WG4\"},OV53xODJv:{\"data-framer-name\":\"WG1-Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14yspdk\",\"data-framer-name\":\"Working Group Tabs\",layoutDependency:layoutDependency,layoutId:\"bEvSBHvrI\",children:[/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-1e33apy\",\"data-framer-appear-id\":\"1e33apy\",\"data-framer-name\":\"Working Group Item\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"UDGtVXm9V\",optimized:true,...addPropertyOverrides({fH0Gmwj63:{\"data-highlight\":true,animate:undefined,initial:undefined,onTap:onTap1mtg6el,optimized:undefined},LVh0gw6jx:{\"data-highlight\":true,animate:undefined,initial:undefined,onTap:onTap1mtg6el,optimized:undefined},OJWAzu4_q:{\"data-highlight\":true,animate:undefined,initial:undefined,onTap:onTap1mtg6el,optimized:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-mrvaxf\",layoutDependency:layoutDependency,layoutId:\"sqyLXtt5n\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtYm9sZA==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-66435eb8-f1dc-4531-b3fe-ce14d54aade3, rgb(218, 110, 170)))\"},children:\"Working Group 1\"})}),className:\"framer-159gl1m\",fonts:[\"FS;Plus Jakarta Sans-bold\"],layoutDependency:layoutDependency,layoutId:\"nYAIdLIU4\",style:{\"--extracted-r6o4lv\":\"var(--token-66435eb8-f1dc-4531-b3fe-ce14d54aade3, rgb(218, 110, 170))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{fH0Gmwj63:{\"--extracted-r6o4lv\":\"var(--token-ad530662-7fd6-4b53-a961-9c077c5d1220, rgb(132, 148, 165))\"},LVh0gw6jx:{\"--extracted-r6o4lv\":\"var(--token-ad530662-7fd6-4b53-a961-9c077c5d1220, rgb(132, 148, 165))\"},OJWAzu4_q:{\"--extracted-r6o4lv\":\"var(--token-ad530662-7fd6-4b53-a961-9c077c5d1220, rgb(132, 148, 165))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({fH0Gmwj63:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtYm9sZA==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ad530662-7fd6-4b53-a961-9c077c5d1220, rgb(132, 148, 165)))\"},children:\"Working Group 1\"})})},LVh0gw6jx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtYm9sZA==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ad530662-7fd6-4b53-a961-9c077c5d1220, rgb(132, 148, 165)))\"},children:\"Working Group 1\"})})},OJWAzu4_q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtYm9sZA==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ad530662-7fd6-4b53-a961-9c077c5d1220, rgb(132, 148, 165)))\"},children:\"Working Group 1\"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1y1resn\",layoutDependency:layoutDependency,layoutId:\"adcyAh7aO\",style:{backgroundColor:\"var(--token-66435eb8-f1dc-4531-b3fe-ce14d54aade3, rgb(218, 110, 170))\"},variants:{fH0Gmwj63:{backgroundColor:\"var(--token-ad530662-7fd6-4b53-a961-9c077c5d1220, rgb(132, 148, 165))\"},LVh0gw6jx:{backgroundColor:\"var(--token-ad530662-7fd6-4b53-a961-9c077c5d1220, rgb(132, 148, 165))\"},OJWAzu4_q:{backgroundColor:\"var(--token-ad530662-7fd6-4b53-a961-9c077c5d1220, rgb(132, 148, 165))\"}}})]}),/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{className:\"framer-srqkcj\",\"data-framer-appear-id\":\"srqkcj\",\"data-framer-name\":\"Working Group Item\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Y3Q6Vj6Py\",onTap:onTap10v9q9g,...addPropertyOverrides({LVh0gw6jx:{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,\"data-highlight\":undefined,animate:animation,initial:animation1,onTap:undefined,optimized:true}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gfwhp3\",layoutDependency:layoutDependency,layoutId:\"uUh4ewRTF\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtYm9sZA==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ad530662-7fd6-4b53-a961-9c077c5d1220, rgb(132, 148, 165)))\"},children:\"Working Group 2\"})}),className:\"framer-1xu9t4t\",fonts:[\"FS;Plus Jakarta Sans-bold\"],layoutDependency:layoutDependency,layoutId:\"awKwKT4Hb\",style:{\"--extracted-r6o4lv\":\"var(--token-ad530662-7fd6-4b53-a961-9c077c5d1220, rgb(132, 148, 165))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{LVh0gw6jx:{\"--extracted-r6o4lv\":\"var(--token-66435eb8-f1dc-4531-b3fe-ce14d54aade3, rgb(218, 110, 170))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({LVh0gw6jx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtYm9sZA==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-66435eb8-f1dc-4531-b3fe-ce14d54aade3, rgb(218, 110, 170)))\"},children:\"Working Group 2\"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-30pfpc\",layoutDependency:layoutDependency,layoutId:\"UaVj9Nd9i\",style:{backgroundColor:\"var(--token-ad530662-7fd6-4b53-a961-9c077c5d1220, rgb(132, 148, 165))\"},variants:{LVh0gw6jx:{backgroundColor:\"var(--token-66435eb8-f1dc-4531-b3fe-ce14d54aade3, rgb(218, 110, 170))\"}}})]}),/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{className:\"framer-12xfq7\",\"data-framer-appear-id\":\"12xfq7\",\"data-framer-name\":\"Working Group Item\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"ZmbQYbZWB\",onTap:onTap1bzsdwr,...addPropertyOverrides({fH0Gmwj63:{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,\"data-highlight\":undefined,animate:animation,initial:animation1,onTap:undefined,optimized:true}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-fllhqx\",layoutDependency:layoutDependency,layoutId:\"RFwKaIWT9\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtYm9sZA==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ad530662-7fd6-4b53-a961-9c077c5d1220, rgb(132, 148, 165)))\"},children:\"Working Group 3\"})}),className:\"framer-wc7gc2\",fonts:[\"FS;Plus Jakarta Sans-bold\"],layoutDependency:layoutDependency,layoutId:\"tBapXdO2d\",style:{\"--extracted-r6o4lv\":\"var(--token-ad530662-7fd6-4b53-a961-9c077c5d1220, rgb(132, 148, 165))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{fH0Gmwj63:{\"--extracted-r6o4lv\":\"var(--token-66435eb8-f1dc-4531-b3fe-ce14d54aade3, rgb(218, 110, 170))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({fH0Gmwj63:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtYm9sZA==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-66435eb8-f1dc-4531-b3fe-ce14d54aade3, rgb(218, 110, 170)))\"},children:\"Working Group 3\"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-11rqqqk\",layoutDependency:layoutDependency,layoutId:\"Wad7ymdv3\",style:{backgroundColor:\"var(--token-ad530662-7fd6-4b53-a961-9c077c5d1220, rgb(132, 148, 165))\"},variants:{fH0Gmwj63:{backgroundColor:\"var(--token-66435eb8-f1dc-4531-b3fe-ce14d54aade3, rgb(218, 110, 170))\"}}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-x5ej6k\",\"data-framer-name\":\"Working Group Item\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"o7kw76O3K\",onTap:onTap1jnd4dl,...addPropertyOverrides({OJWAzu4_q:{\"data-highlight\":undefined,onTap:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-zc1748\",layoutDependency:layoutDependency,layoutId:\"KjMRHMJ8n\",children:/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtYm9sZA==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ad530662-7fd6-4b53-a961-9c077c5d1220, rgb(132, 148, 165)))\"},children:\"Working Group 4\"})}),className:\"framer-bgbv39\",\"data-framer-appear-id\":\"bgbv39\",fonts:[\"FS;Plus Jakarta Sans-bold\"],layoutDependency:layoutDependency,layoutId:\"YrUmpRpm6\",style:{\"--extracted-r6o4lv\":\"var(--token-ad530662-7fd6-4b53-a961-9c077c5d1220, rgb(132, 148, 165))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{OJWAzu4_q:{\"--extracted-r6o4lv\":\"var(--token-66435eb8-f1dc-4531-b3fe-ce14d54aade3, rgb(218, 110, 170))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({OJWAzu4_q:{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtYm9sZA==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-66435eb8-f1dc-4531-b3fe-ce14d54aade3, rgb(218, 110, 170)))\"},children:\"Working Group 4\"})}),initial:animation1,optimized:true}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{className:\"framer-10kzysh\",\"data-framer-appear-id\":\"10kzysh\",layoutDependency:layoutDependency,layoutId:\"EO1p9n8ni\",style:{backgroundColor:\"var(--token-ad530662-7fd6-4b53-a961-9c077c5d1220, rgb(132, 148, 165))\"},variants:{OJWAzu4_q:{backgroundColor:\"var(--token-66435eb8-f1dc-4531-b3fe-ce14d54aade3, rgb(218, 110, 170))\"}},...addPropertyOverrides({OJWAzu4_q:{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,initial:animation1,optimized:true}},baseVariant,gestureVariant)})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-482z4n\",layoutDependency:layoutDependency,layoutId:\"Go5cRedvt\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-v2ioqm-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Ujd7T91zj-container\",nodeId:\"Ujd7T91zj\",rendersWithMotion:true,scopeId:\"Mq1Y1xYww\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-66435eb8-f1dc-4531-b3fe-ce14d54aade3, rgb(218, 110, 170))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"NumberCircleOne\",id:\"Ujd7T91zj\",layoutId:\"Ujd7T91zj\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-hdxp3l-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"fCLI3T6lM-container\",nodeId:\"fCLI3T6lM\",rendersWithMotion:true,scopeId:\"Mq1Y1xYww\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-66435eb8-f1dc-4531-b3fe-ce14d54aade3, rgb(218, 110, 170))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"NumberCircleFour\",id:\"fCLI3T6lM\",layoutId:\"fCLI3T6lM\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-15vy1bk-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"cEX6nZlyV-container\",nodeId:\"cEX6nZlyV\",rendersWithMotion:true,scopeId:\"Mq1Y1xYww\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-66435eb8-f1dc-4531-b3fe-ce14d54aade3, rgb(218, 110, 170))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"NumberCircleThree\",id:\"cEX6nZlyV\",layoutId:\"cEX6nZlyV\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1p7sjht-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"ApHm_KmYe-container\",nodeId:\"ApHm_KmYe\",rendersWithMotion:true,scopeId:\"Mq1Y1xYww\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-66435eb8-f1dc-4531-b3fe-ce14d54aade3, rgb(218, 110, 170))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"NumberCircleTwo\",id:\"ApHm_KmYe\",layoutId:\"ApHm_KmYe\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-11161ga\",\"data-styles-preset\":\"KfhKKOJVS\",children:\"Cooking up something special\u2026.\"})}),className:\"framer-1m8j45i\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"IgALBAJq6\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-9hdoiv\",layoutDependency:layoutDependency,layoutId:\"Qtl1zkZSf\",style:{backgroundColor:\"var(--token-5d3dbe0f-787d-4884-bd3d-f47ef2adf8e1, rgb(69, 69, 69))\"}}),isDisplayed3()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-11161ga\",\"data-styles-preset\":\"KfhKKOJVS\",children:\"How might we build effective tools or platforms that allow paralegals and lawyers to easily access and retrieve comprehensive legal data, especially in areas like environmental law?\"})}),className:\"framer-j636k5\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"s4rLcsfT7\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-11161ga\",\"data-styles-preset\":\"KfhKKOJVS\",children:\"How might we design a network that enables paralegals to easily discover key people, essential knowledge, and actionable pathways to strengthen their impact?\"})}),className:\"framer-5ol09j\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"FOTdDUXDx\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-11161ga\",\"data-styles-preset\":\"KfhKKOJVS\",children:\"How might we sustain the effort to co-build, co-own and co-maintain tech-enabled infrastructure?\"})}),className:\"framer-8fmz6m\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"O5cfzRwyy\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:`calc((${componentViewport?.width||\"100vw\"} - 60px) * 0.8 - 20px)`,y:(componentViewport?.y||0)+50+82.2+0+196.2,...addPropertyOverrides({OV53xODJv:{y:(componentViewport?.y||0)+50+298.8+0+196.2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-jgji14-container\",layoutDependency:layoutDependency,layoutId:\"smtyZCCo_-container\",nodeId:\"smtyZCCo_\",rendersWithMotion:true,scopeId:\"Mq1Y1xYww\",children:/*#__PURE__*/_jsx(FacePile,{height:\"100%\",id:\"smtyZCCo_\",layoutId:\"smtyZCCo_\",style:{width:\"100%\"},variant:\"WcPtfNHDA\",width:\"100%\"})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-D1cRc.framer-8jc6pg, .framer-D1cRc .framer-8jc6pg { display: block; }\",\".framer-D1cRc.framer-3fc4gn { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; max-width: 1100px; overflow: hidden; padding: 50px 30px 50px 30px; position: relative; width: 1100px; will-change: var(--framer-will-change-override, transform); }\",\".framer-D1cRc .framer-14yspdk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: auto; padding: 0px; position: relative; width: 100%; }\",\".framer-D1cRc .framer-1e33apy { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-D1cRc .framer-mrvaxf, .framer-D1cRc .framer-1gfwhp3, .framer-D1cRc .framer-fllhqx, .framer-D1cRc .framer-zc1748 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-D1cRc .framer-159gl1m, .framer-D1cRc .framer-1xu9t4t, .framer-D1cRc .framer-wc7gc2, .framer-D1cRc .framer-bgbv39 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-D1cRc .framer-1y1resn, .framer-D1cRc .framer-30pfpc, .framer-D1cRc .framer-11rqqqk, .framer-D1cRc .framer-10kzysh { flex: none; height: 3px; overflow: hidden; position: relative; width: 100%; }\",\".framer-D1cRc .framer-srqkcj, .framer-D1cRc .framer-12xfq7, .framer-D1cRc .framer-x5ej6k { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-D1cRc .framer-482z4n { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; max-width: 80%; overflow: hidden; padding: 0px 0px 0px 20px; position: relative; width: 80%; }\",\".framer-D1cRc .framer-v2ioqm-container, .framer-D1cRc .framer-hdxp3l-container, .framer-D1cRc .framer-15vy1bk-container, .framer-D1cRc .framer-1p7sjht-container { flex: none; height: 80px; position: relative; width: 80px; }\",\".framer-D1cRc .framer-1m8j45i, .framer-D1cRc .framer-j636k5, .framer-D1cRc .framer-5ol09j, .framer-D1cRc .framer-8fmz6m { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-D1cRc .framer-9hdoiv { flex: none; height: 2px; overflow: hidden; position: relative; width: 100%; }\",\".framer-D1cRc .framer-jgji14-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-D1cRc.framer-3fc4gn, .framer-D1cRc .framer-14yspdk, .framer-D1cRc .framer-1e33apy, .framer-D1cRc .framer-mrvaxf, .framer-D1cRc .framer-srqkcj, .framer-D1cRc .framer-1gfwhp3, .framer-D1cRc .framer-12xfq7, .framer-D1cRc .framer-fllhqx, .framer-D1cRc .framer-x5ej6k, .framer-D1cRc .framer-zc1748, .framer-D1cRc .framer-482z4n { gap: 0px; } .framer-D1cRc.framer-3fc4gn > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-D1cRc.framer-3fc4gn > :first-child, .framer-D1cRc .framer-1e33apy > :first-child, .framer-D1cRc .framer-mrvaxf > :first-child, .framer-D1cRc .framer-srqkcj > :first-child, .framer-D1cRc .framer-1gfwhp3 > :first-child, .framer-D1cRc .framer-12xfq7 > :first-child, .framer-D1cRc .framer-fllhqx > :first-child, .framer-D1cRc .framer-x5ej6k > :first-child, .framer-D1cRc .framer-zc1748 > :first-child, .framer-D1cRc .framer-482z4n > :first-child { margin-top: 0px; } .framer-D1cRc.framer-3fc4gn > :last-child, .framer-D1cRc .framer-1e33apy > :last-child, .framer-D1cRc .framer-mrvaxf > :last-child, .framer-D1cRc .framer-srqkcj > :last-child, .framer-D1cRc .framer-1gfwhp3 > :last-child, .framer-D1cRc .framer-12xfq7 > :last-child, .framer-D1cRc .framer-fllhqx > :last-child, .framer-D1cRc .framer-x5ej6k > :last-child, .framer-D1cRc .framer-zc1748 > :last-child, .framer-D1cRc .framer-482z4n > :last-child { margin-bottom: 0px; } .framer-D1cRc .framer-14yspdk > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-D1cRc .framer-14yspdk > :first-child { margin-left: 0px; } .framer-D1cRc .framer-14yspdk > :last-child { margin-right: 0px; } .framer-D1cRc .framer-1e33apy > *, .framer-D1cRc .framer-srqkcj > *, .framer-D1cRc .framer-12xfq7 > *, .framer-D1cRc .framer-x5ej6k > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-D1cRc .framer-mrvaxf > *, .framer-D1cRc .framer-1gfwhp3 > *, .framer-D1cRc .framer-fllhqx > *, .framer-D1cRc .framer-zc1748 > * { margin: 0px; margin-bottom: calc(3px / 2); margin-top: calc(3px / 2); } .framer-D1cRc .framer-482z4n > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } }\",\".framer-D1cRc.framer-v-1u1ig7l .framer-14yspdk, .framer-D1cRc.framer-v-1u0r95y .framer-14yspdk, .framer-D1cRc.framer-v-1340au8 .framer-14yspdk { width: min-content; }\",\".framer-D1cRc.framer-v-1u1ig7l .framer-1e33apy, .framer-D1cRc.framer-v-1u0r95y .framer-1e33apy, .framer-D1cRc.framer-v-1340au8 .framer-1e33apy { cursor: pointer; }\",\".framer-D1cRc.framer-v-1u1ig7l .framer-srqkcj, .framer-D1cRc.framer-v-1u0r95y .framer-12xfq7, .framer-D1cRc.framer-v-1340au8 .framer-x5ej6k { cursor: unset; }\",\".framer-D1cRc.framer-v-qnqvnu.framer-3fc4gn { width: 390px; }\",\".framer-D1cRc.framer-v-qnqvnu .framer-14yspdk { flex-direction: column; width: min-content; }\",\".framer-D1cRc.framer-v-qnqvnu .framer-1e33apy, .framer-D1cRc.framer-v-qnqvnu .framer-srqkcj, .framer-D1cRc.framer-v-qnqvnu .framer-12xfq7, .framer-D1cRc.framer-v-qnqvnu .framer-x5ej6k { flex: none; width: min-content; }\",\".framer-D1cRc.framer-v-qnqvnu .framer-mrvaxf, .framer-D1cRc.framer-v-qnqvnu .framer-1y1resn, .framer-D1cRc.framer-v-qnqvnu .framer-1gfwhp3, .framer-D1cRc.framer-v-qnqvnu .framer-30pfpc, .framer-D1cRc.framer-v-qnqvnu .framer-fllhqx, .framer-D1cRc.framer-v-qnqvnu .framer-11rqqqk, .framer-D1cRc.framer-v-qnqvnu .framer-zc1748, .framer-D1cRc.framer-v-qnqvnu .framer-10kzysh { width: 1040px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-D1cRc.framer-v-qnqvnu .framer-14yspdk { gap: 0px; } .framer-D1cRc.framer-v-qnqvnu .framer-14yspdk > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-D1cRc.framer-v-qnqvnu .framer-14yspdk > :first-child { margin-top: 0px; } .framer-D1cRc.framer-v-qnqvnu .framer-14yspdk > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 418\n * @framerIntrinsicWidth 1100\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1100px\",null,null]},\"LVh0gw6jx\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1100px\",null,null]},\"fH0Gmwj63\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1100px\",null,null]},\"OJWAzu4_q\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1100px\",null,null]},\"OV53xODJv\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1100px\",null,null]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerMq1Y1xYww=withCSS(Component,css,\"framer-D1cRc\");export default FramerMq1Y1xYww;FramerMq1Y1xYww.displayName=\"Working Groups\";FramerMq1Y1xYww.defaultProps={height:418,width:1100};addPropertyControls(FramerMq1Y1xYww,{variant:{options:[\"FMdJqJuq2\",\"LVh0gw6jx\",\"fH0Gmwj63\",\"OJWAzu4_q\",\"OV53xODJv\"],optionTitles:[\"WG1\",\"WG2\",\"WG3\",\"WG4\",\"WG1-Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerMq1Y1xYww,[{explicitInter:true,fonts:[{family:\"Plus Jakarta Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/AJVGEOXGB2ALQKAZEK2LDOLCVBCMCOIT/LDEP4R7SNNABDEG433DCQGM2A7YCBHLU/OWABOLGBAKFVLPZ756IYS6EKYKU54K3I.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/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\"}]},...PhosphorFonts,...FacePileFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerMq1Y1xYww\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1100\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"418\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1100px\\\",null,null]},\\\"LVh0gw6jx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1100px\\\",null,null]},\\\"fH0Gmwj63\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1100px\\\",null,null]},\\\"OJWAzu4_q\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1100px\\\",null,null]},\\\"OV53xODJv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1100px\\\",null,null]}}}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Mq1Y1xYww.map", "// Generated by Framer (2c4b293)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Roboto Mono-regular\",\"GF;Roboto Mono-700\",\"GF;Roboto Mono-700italic\",\"GF;Roboto Mono-italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Roboto Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/robotomono/v23/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vqPRu-5Ip2sSQ.woff2\",weight:\"400\"},{family:\"Roboto Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/robotomono/v23/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_Of2PRu-5Ip2sSQ.woff2\",weight:\"700\"},{family:\"Roboto Mono\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/robotomono/v23/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrmAB-W4AJi8SZwt.woff2\",weight:\"700\"},{family:\"Roboto Mono\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/robotomono/v23/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAOW4AJi8SZwt.woff2\",weight:\"400\"}]}];export const css=['.framer-jPMHd .framer-styles-preset-1x5cubp:not(.rich-text-wrapper), .framer-jPMHd .framer-styles-preset-1x5cubp.rich-text-wrapper p { --framer-font-family: \"Roboto Mono\", monospace; --framer-font-family-bold: \"Roboto Mono\", monospace; --framer-font-family-bold-italic: \"Roboto Mono\", monospace; --framer-font-family-italic: \"Roboto Mono\", monospace; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.02em; --framer-line-height: 120%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-a0714a73-c570-44c0-bfcc-329c225164fa, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-jPMHd\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (e22b717)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/yTzywshKuU4oYRNv1xMQ/rPRJKKAwIGPWy7fFcSaX/zxuGgC36C.js\";import OtherTeamMembers from\"https://framerusercontent.com/modules/tswWKSrcb2f7bQ3tFaSy/hegaXWIWVgp0W7xXJ4cJ/P4r9YDXMv.js\";const OtherTeamMembersFonts=getFonts(OtherTeamMembers);const PhosphorFonts=getFonts(Phosphor);const cycleOrder=[\"XDObntRxp\",\"klBr60rUz\",\"ti9BkS5Op\",\"CgK3ETc_K\",\"oInVqmojl\"];const serializationHash=\"framer-oPfB3\";const variantClassNames={CgK3ETc_K:\"framer-v-vnfljr\",klBr60rUz:\"framer-v-1ez9uu4\",oInVqmojl:\"framer-v-1f60si7\",ti9BkS5Op:\"framer-v-1iph4bz\",XDObntRxp:\"framer-v-mt4ehh\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;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={\"Variant 3\":\"ti9BkS5Op\",\"Variant 4\":\"CgK3ETc_K\",\"Variant 5\":\"oInVqmojl\",Desktop:\"XDObntRxp\",Phone:\"klBr60rUz\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"XDObntRxp\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"XDObntRxp\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1xy0d52=activeVariantCallback(async(...args)=>{setVariant(\"ti9BkS5Op\");});const onTap1tx1161=activeVariantCallback(async(...args)=>{setVariant(\"XDObntRxp\");});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"ti9BkS5Op\",\"CgK3ETc_K\",\"oInVqmojl\"].includes(baseVariant))return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-mt4ehh\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"XDObntRxp\",ref:refBinding,style:{...style},...addPropertyOverrides({CgK3ETc_K:{\"data-framer-name\":\"Variant 4\"},klBr60rUz:{\"data-framer-name\":\"Phone\"},oInVqmojl:{\"data-framer-name\":\"Variant 5\"},ti9BkS5Op:{\"data-framer-name\":\"Variant 3\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-2l872z\",layoutDependency:layoutDependency,layoutId:\"MATf6bREg\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1in2b8j\",layoutDependency:layoutDependency,layoutId:\"zUTE0DjZ4\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1x5cubp\",\"data-styles-preset\":\"zxuGgC36C\",children:\"THE FULL COHORT\"})}),className:\"framer-czbueq\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"oWDvo7_EN\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({CgK3ETc_K:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1x5cubp\",\"data-styles-preset\":\"zxuGgC36C\",children:\"MEET THE PARTICIPANTS\"})})},oInVqmojl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1x5cubp\",\"data-styles-preset\":\"zxuGgC36C\",children:\"MEET THE CURATORS\"})})},ti9BkS5Op:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1x5cubp\",\"data-styles-preset\":\"zxuGgC36C\",children:\"MEET THE MENTORS\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-151vmpv\",layoutDependency:layoutDependency,layoutId:\"ZKKqMOwWm\",style:{backgroundColor:\"var(--token-09e6c8e4-a1a1-4bdc-a735-fa251842ad37, rgb(147, 217, 188))\"}})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-t799l2\",layoutDependency:layoutDependency,layoutId:\"kc8WYrpEE\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5umt8f\",layoutDependency:layoutDependency,layoutId:\"WzXYO3FFc\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,y:(componentViewport?.y||0)+0+110+0+0+-5,...addPropertyOverrides({klBr60rUz:{width:\"350px\",y:(componentViewport?.y||0)+50+110+0+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-4mkdrw-container\",layoutDependency:layoutDependency,layoutId:\"FFslkh7hO-container\",nodeId:\"FFslkh7hO\",rendersWithMotion:true,scopeId:\"ZkIKg_pLc\",children:/*#__PURE__*/_jsx(OtherTeamMembers,{CcSRLH6Vh:\"10x Impact Labs\",H76GFDitc:\"Co-Founder\",height:\"100%\",id:\"FFslkh7hO\",layoutId:\"FFslkh7hO\",oa0vSQo8d:addImageAlt({src:\"https://framerusercontent.com/images/dspTvYePYos1UzdrAGn4PBg7stk.jpg\"},\"Tony D'Souza\"),QL_GHHU4J:\"Tony D'Souza\",variant:\"wYH00CN6z\",width:\"100%\",...addPropertyOverrides({klBr60rUz:{style:{width:\"100%\"},variant:\"eilOeXjFe\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,y:(componentViewport?.y||0)+0+110+0+0+-5,...addPropertyOverrides({klBr60rUz:{width:\"350px\",y:(componentViewport?.y||0)+50+110+0+0+0+140}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-93tedf-container\",layoutDependency:layoutDependency,layoutId:\"WyaKYuSgi-container\",nodeId:\"WyaKYuSgi\",rendersWithMotion:true,scopeId:\"ZkIKg_pLc\",children:/*#__PURE__*/_jsx(OtherTeamMembers,{CcSRLH6Vh:\"OpenNyAI\",H76GFDitc:\"Curator\",height:\"100%\",id:\"WyaKYuSgi\",layoutId:\"WyaKYuSgi\",oa0vSQo8d:addImageAlt({src:\"https://framerusercontent.com/images/kaTVMn5Rp3LT6HAxFd9Rpd5li4g.jpeg\"},\"Smita Gupta\"),QL_GHHU4J:\"Smita Gupta\",variant:\"wYH00CN6z\",width:\"100%\",...addPropertyOverrides({klBr60rUz:{style:{width:\"100%\"},variant:\"eilOeXjFe\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,y:(componentViewport?.y||0)+0+110+0+0+-5,...addPropertyOverrides({klBr60rUz:{width:\"350px\",y:(componentViewport?.y||0)+50+110+0+0+0+280}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-bruwwm-container\",layoutDependency:layoutDependency,layoutId:\"HJXP93Blb-container\",nodeId:\"HJXP93Blb\",rendersWithMotion:true,scopeId:\"ZkIKg_pLc\",children:/*#__PURE__*/_jsx(OtherTeamMembers,{CcSRLH6Vh:\"Outlawed\",H76GFDitc:\"Head of Operations\",height:\"100%\",id:\"HJXP93Blb\",layoutId:\"HJXP93Blb\",oa0vSQo8d:addImageAlt({src:\"https://framerusercontent.com/images/3I2VEQefZvjZzGwlr1xrO4a2eCk.jpeg\",srcSet:\"https://framerusercontent.com/images/3I2VEQefZvjZzGwlr1xrO4a2eCk.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/3I2VEQefZvjZzGwlr1xrO4a2eCk.jpeg 800w\"},\"Lakshmi Nambiar\"),QL_GHHU4J:\"Lakshmi Nambiar\",variant:\"wYH00CN6z\",width:\"100%\",...addPropertyOverrides({klBr60rUz:{style:{width:\"100%\"},variant:\"eilOeXjFe\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,y:(componentViewport?.y||0)+0+110+0+0+-5,...addPropertyOverrides({klBr60rUz:{width:\"350px\",y:(componentViewport?.y||0)+50+110+0+0+0+420}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1k3umf5-container\",layoutDependency:layoutDependency,layoutId:\"mHajwVrVX-container\",nodeId:\"mHajwVrVX\",rendersWithMotion:true,scopeId:\"ZkIKg_pLc\",children:/*#__PURE__*/_jsx(OtherTeamMembers,{CcSRLH6Vh:\"TinkerHub\",H76GFDitc:\"Co-founder\",height:\"100%\",id:\"mHajwVrVX\",layoutId:\"mHajwVrVX\",oa0vSQo8d:addImageAlt({src:\"https://framerusercontent.com/images/SSDXSif1JKYI6uFM7bM7062AkCE.jpeg\"},\"\"),QL_GHHU4J:\"Moosa Mehar MP\",variant:\"wYH00CN6z\",width:\"100%\",...addPropertyOverrides({klBr60rUz:{style:{width:\"100%\"},variant:\"eilOeXjFe\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,y:(componentViewport?.y||0)+0+110+0+0+-5,...addPropertyOverrides({klBr60rUz:{width:\"350px\",y:(componentViewport?.y||0)+50+110+0+0+0+560}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-yuabko-container\",layoutDependency:layoutDependency,layoutId:\"miQF7az_9-container\",nodeId:\"miQF7az_9\",rendersWithMotion:true,scopeId:\"ZkIKg_pLc\",children:/*#__PURE__*/_jsx(OtherTeamMembers,{CcSRLH6Vh:\"Centre for Social Justice\",H76GFDitc:\"Theme Specialist\",height:\"100%\",id:\"miQF7az_9\",layoutId:\"miQF7az_9\",oa0vSQo8d:addImageAlt({src:\"https://framerusercontent.com/images/odi458kSLbsTAd1G4Fqr1LAMKA.jpeg\",srcSet:\"https://framerusercontent.com/images/odi458kSLbsTAd1G4Fqr1LAMKA.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/odi458kSLbsTAd1G4Fqr1LAMKA.jpeg 640w\"},\"Aditya Gujarathi\"),QL_GHHU4J:\"Aditya Gujarathi\",variant:\"wYH00CN6z\",width:\"100%\",...addPropertyOverrides({klBr60rUz:{style:{width:\"100%\"},variant:\"eilOeXjFe\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,y:(componentViewport?.y||0)+0+110+0+0+-5,...addPropertyOverrides({klBr60rUz:{width:\"350px\",y:(componentViewport?.y||0)+50+110+0+0+0+700}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ih9mzp-container\",layoutDependency:layoutDependency,layoutId:\"Im3fDmyxQ-container\",nodeId:\"Im3fDmyxQ\",rendersWithMotion:true,scopeId:\"ZkIKg_pLc\",children:/*#__PURE__*/_jsx(OtherTeamMembers,{CcSRLH6Vh:\"10x Impact Labs\",H76GFDitc:\"Co-Founder\",height:\"100%\",id:\"Im3fDmyxQ\",layoutId:\"Im3fDmyxQ\",oa0vSQo8d:addImageAlt({src:\"https://framerusercontent.com/images/6urXaMHj4RWpRdLfBzMc3CfkXw.jpg\"},\"Vaibhav Mishra\"),QL_GHHU4J:\"Vaibhav Mishra\",variant:\"wYH00CN6z\",width:\"100%\",...addPropertyOverrides({klBr60rUz:{style:{width:\"100%\"},variant:\"eilOeXjFe\"}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7m9671\",layoutDependency:layoutDependency,layoutId:\"UJZbVda7b\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,y:(componentViewport?.y||0)+0+110+0+120+-5,...addPropertyOverrides({klBr60rUz:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+50+110+0+830+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-3qhce-container\",layoutDependency:layoutDependency,layoutId:\"Sst8fcOPD-container\",nodeId:\"Sst8fcOPD\",rendersWithMotion:true,scopeId:\"ZkIKg_pLc\",children:/*#__PURE__*/_jsx(OtherTeamMembers,{CcSRLH6Vh:\"Ooloi Labs\",H76GFDitc:\"Co-Founder and Partner\",height:\"100%\",id:\"Sst8fcOPD\",layoutId:\"Sst8fcOPD\",oa0vSQo8d:addImageAlt({src:\"https://framerusercontent.com/images/Hkfz5nhyM4H6cCzQehf4jHWvl80.jpeg\",srcSet:\"https://framerusercontent.com/images/Hkfz5nhyM4H6cCzQehf4jHWvl80.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/Hkfz5nhyM4H6cCzQehf4jHWvl80.jpeg 800w\"},\"Akshay Roongta\"),QL_GHHU4J:\"Akshay Roongta\",variant:\"wYH00CN6z\",width:\"100%\",...addPropertyOverrides({klBr60rUz:{style:{width:\"100%\"},variant:\"eilOeXjFe\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,y:(componentViewport?.y||0)+0+110+0+120+-5,...addPropertyOverrides({klBr60rUz:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+50+110+0+830+0+140}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-13ach9c-container\",layoutDependency:layoutDependency,layoutId:\"zMLGCBMEo-container\",nodeId:\"zMLGCBMEo\",rendersWithMotion:true,scopeId:\"ZkIKg_pLc\",children:/*#__PURE__*/_jsx(OtherTeamMembers,{CcSRLH6Vh:\"Centre for Social Justice\",H76GFDitc:\"Fellow\",height:\"100%\",id:\"zMLGCBMEo\",layoutId:\"zMLGCBMEo\",oa0vSQo8d:addImageAlt({src:\"https://framerusercontent.com/images/yr25ClqjM6FfZxOQUVg0iUxWXoI.jpg\"},\"Anahita Surya\"),QL_GHHU4J:\"Anahita Surya\",variant:\"wYH00CN6z\",width:\"100%\",...addPropertyOverrides({klBr60rUz:{style:{width:\"100%\"},variant:\"eilOeXjFe\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,y:(componentViewport?.y||0)+0+110+0+120+-5,...addPropertyOverrides({klBr60rUz:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+50+110+0+830+0+280}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1qeqy7d-container\",layoutDependency:layoutDependency,layoutId:\"GTWdSIOzA-container\",nodeId:\"GTWdSIOzA\",rendersWithMotion:true,scopeId:\"ZkIKg_pLc\",children:/*#__PURE__*/_jsx(OtherTeamMembers,{CcSRLH6Vh:\"Centre for Social Justice\",H76GFDitc:\"\",height:\"100%\",id:\"GTWdSIOzA\",layoutId:\"GTWdSIOzA\",oa0vSQo8d:addImageAlt({src:\"https://framerusercontent.com/images/gg6oR4uLHjQtVNCDgr36f839MkE.png\"},\"Gatha Namboothiri\"),QL_GHHU4J:\"Gatha Namboothiri\",variant:\"wYH00CN6z\",width:\"100%\",...addPropertyOverrides({klBr60rUz:{style:{width:\"100%\"},variant:\"eilOeXjFe\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,y:(componentViewport?.y||0)+0+110+0+120+-5,...addPropertyOverrides({klBr60rUz:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+50+110+0+830+0+420}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ck6lcf-container\",layoutDependency:layoutDependency,layoutId:\"z0mvap384-container\",nodeId:\"z0mvap384\",rendersWithMotion:true,scopeId:\"ZkIKg_pLc\",children:/*#__PURE__*/_jsx(OtherTeamMembers,{CcSRLH6Vh:\"Foundation for Ecological Security\",H76GFDitc:\"Legal Researcher\",height:\"100%\",id:\"z0mvap384\",layoutId:\"z0mvap384\",oa0vSQo8d:addImageAlt({src:\"https://framerusercontent.com/images/kuaWIbxuuBAkghunAN6YcYI1CI.jpg\"},\"Pooja Chandran\"),QL_GHHU4J:\"Pooja Chandran\",variant:\"wYH00CN6z\",width:\"100%\",...addPropertyOverrides({klBr60rUz:{style:{width:\"100%\"},variant:\"eilOeXjFe\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,y:(componentViewport?.y||0)+0+110+0+120+-5,...addPropertyOverrides({klBr60rUz:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+50+110+0+830+0+560}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ro1hfe-container\",layoutDependency:layoutDependency,layoutId:\"p39ZE_J4E-container\",nodeId:\"p39ZE_J4E\",rendersWithMotion:true,scopeId:\"ZkIKg_pLc\",children:/*#__PURE__*/_jsx(OtherTeamMembers,{CcSRLH6Vh:\"Migration and Asylum Project\",H76GFDitc:\"Founder and Executive Director\",height:\"100%\",id:\"p39ZE_J4E\",layoutId:\"p39ZE_J4E\",oa0vSQo8d:addImageAlt({src:\"https://framerusercontent.com/images/611L57nPFTaNuFDUP7V0c8zDTK8.png\",srcSet:\"https://framerusercontent.com/images/611L57nPFTaNuFDUP7V0c8zDTK8.png?scale-down-to=1024 890w,https://framerusercontent.com/images/611L57nPFTaNuFDUP7V0c8zDTK8.png 920w\"},\"Roshni Shanker\"),QL_GHHU4J:\"Roshni Shanker\",variant:\"wYH00CN6z\",width:\"100%\",...addPropertyOverrides({klBr60rUz:{style:{width:\"100%\"},variant:\"eilOeXjFe\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,y:(componentViewport?.y||0)+0+110+0+120+-5,...addPropertyOverrides({klBr60rUz:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+50+110+0+830+0+700}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1nbl5e6-container\",layoutDependency:layoutDependency,layoutId:\"IMk5GOYGU-container\",nodeId:\"IMk5GOYGU\",rendersWithMotion:true,scopeId:\"ZkIKg_pLc\",children:/*#__PURE__*/_jsx(OtherTeamMembers,{CcSRLH6Vh:\"Migration and Asylum Project\",H76GFDitc:\"Project Coordinator\",height:\"100%\",id:\"IMk5GOYGU\",layoutId:\"IMk5GOYGU\",oa0vSQo8d:addImageAlt({src:\"https://framerusercontent.com/images/9HlidfvAwoNa2VTmmvi4jUew.jpg\"},\"Ankita Sarkar\"),QL_GHHU4J:\"Ankita Sarkar\",variant:\"wYH00CN6z\",width:\"100%\",...addPropertyOverrides({klBr60rUz:{style:{width:\"100%\"},variant:\"eilOeXjFe\"}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-191enyx\",layoutDependency:layoutDependency,layoutId:\"f0wJy1I4V\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,y:(componentViewport?.y||0)+0+110+0+240+-5,...addPropertyOverrides({klBr60rUz:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+50+110+0+1660+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1296pms-container\",layoutDependency:layoutDependency,layoutId:\"oHLUkZvcj-container\",nodeId:\"oHLUkZvcj\",rendersWithMotion:true,scopeId:\"ZkIKg_pLc\",children:/*#__PURE__*/_jsx(OtherTeamMembers,{CcSRLH6Vh:\"Microsoft Research\",H76GFDitc:\"Research Fellow\",height:\"100%\",id:\"oHLUkZvcj\",layoutId:\"oHLUkZvcj\",oa0vSQo8d:addImageAlt({src:\"https://framerusercontent.com/images/7TN9XFbQNkl3gMccZFJbdtmdOo.jpg\"},\"Atharv Kirtikar\"),QL_GHHU4J:\"Atharv Kirtikar\",variant:\"wYH00CN6z\",width:\"100%\",...addPropertyOverrides({klBr60rUz:{style:{width:\"100%\"},variant:\"eilOeXjFe\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,y:(componentViewport?.y||0)+0+110+0+240+-5,...addPropertyOverrides({klBr60rUz:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+50+110+0+1660+0+140}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-i18p9l-container\",layoutDependency:layoutDependency,layoutId:\"aefXQNSb0-container\",nodeId:\"aefXQNSb0\",rendersWithMotion:true,scopeId:\"ZkIKg_pLc\",children:/*#__PURE__*/_jsx(OtherTeamMembers,{CcSRLH6Vh:\"Veditum India Foundation\",H76GFDitc:\"Associate\",height:\"100%\",id:\"aefXQNSb0\",layoutId:\"aefXQNSb0\",oa0vSQo8d:addImageAlt({src:\"https://framerusercontent.com/images/ZZgu16DmX9DxcK3EuTewZpcEY.webp\",srcSet:\"https://framerusercontent.com/images/ZZgu16DmX9DxcK3EuTewZpcEY.webp?scale-down-to=1024 768w,https://framerusercontent.com/images/ZZgu16DmX9DxcK3EuTewZpcEY.webp 1200w\"},\"Rhea Lopez\"),QL_GHHU4J:\"Rhea Lopez\",variant:\"wYH00CN6z\",width:\"100%\",...addPropertyOverrides({klBr60rUz:{style:{width:\"100%\"},variant:\"eilOeXjFe\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,y:(componentViewport?.y||0)+0+110+0+240+-5,...addPropertyOverrides({klBr60rUz:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+50+110+0+1660+0+280}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-36qsbm-container\",layoutDependency:layoutDependency,layoutId:\"wRbrmo4mC-container\",nodeId:\"wRbrmo4mC\",rendersWithMotion:true,scopeId:\"ZkIKg_pLc\",children:/*#__PURE__*/_jsx(OtherTeamMembers,{CcSRLH6Vh:\"Veditum India Foundation\",H76GFDitc:\"Associate\",height:\"100%\",id:\"wRbrmo4mC\",layoutId:\"wRbrmo4mC\",oa0vSQo8d:addImageAlt({src:\"https://framerusercontent.com/images/AMLRNPZbcNIXd32F7ZUiafrFARA.webp\"},\"Aishani Goswami\"),QL_GHHU4J:\"Aishani Goswami\",variant:\"wYH00CN6z\",width:\"100%\",...addPropertyOverrides({klBr60rUz:{style:{width:\"100%\"},variant:\"eilOeXjFe\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,y:(componentViewport?.y||0)+0+110+0+240+-5,...addPropertyOverrides({klBr60rUz:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+50+110+0+1660+0+420}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-n5v51g-container\",layoutDependency:layoutDependency,layoutId:\"XqtMG1NVi-container\",nodeId:\"XqtMG1NVi\",rendersWithMotion:true,scopeId:\"ZkIKg_pLc\",children:/*#__PURE__*/_jsx(OtherTeamMembers,{CcSRLH6Vh:\"Thoughtworks\",H76GFDitc:\"Application Developer\",height:\"100%\",id:\"XqtMG1NVi\",layoutId:\"XqtMG1NVi\",oa0vSQo8d:addImageAlt({src:\"https://framerusercontent.com/images/C6M4Q5EY9jr6pBjrqP9jFVRBn4.jpg\"},\"Karanraj M\"),QL_GHHU4J:\"Karanraj M\",variant:\"wYH00CN6z\",width:\"100%\",...addPropertyOverrides({klBr60rUz:{style:{width:\"100%\"},variant:\"eilOeXjFe\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,y:(componentViewport?.y||0)+0+110+0+240+-5,...addPropertyOverrides({klBr60rUz:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+50+110+0+1660+0+560}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-66sy1t-container\",layoutDependency:layoutDependency,layoutId:\"gLJRK6bo6-container\",nodeId:\"gLJRK6bo6\",rendersWithMotion:true,scopeId:\"ZkIKg_pLc\",children:/*#__PURE__*/_jsx(OtherTeamMembers,{CcSRLH6Vh:\"Thoughtworks\",H76GFDitc:\"Developer\",height:\"100%\",id:\"gLJRK6bo6\",layoutId:\"gLJRK6bo6\",oa0vSQo8d:addImageAlt({src:\"https://framerusercontent.com/images/BrLxUVXCHvGLnJUAMC03dFd91o.jpg\"},\"Arun Murugan\"),QL_GHHU4J:\"Arun Murugan\",variant:\"wYH00CN6z\",width:\"100%\",...addPropertyOverrides({klBr60rUz:{style:{width:\"100%\"},variant:\"eilOeXjFe\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,y:(componentViewport?.y||0)+0+110+0+240+-5,...addPropertyOverrides({klBr60rUz:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+50+110+0+1660+0+700}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-192ejbt-container\",layoutDependency:layoutDependency,layoutId:\"qNZI4T8c1-container\",nodeId:\"qNZI4T8c1\",rendersWithMotion:true,scopeId:\"ZkIKg_pLc\",children:/*#__PURE__*/_jsx(OtherTeamMembers,{CcSRLH6Vh:\"Thoughtworks\",H76GFDitc:\"Application Developer\",height:\"100%\",id:\"qNZI4T8c1\",layoutId:\"qNZI4T8c1\",oa0vSQo8d:addImageAlt({src:\"https://framerusercontent.com/images/7mRLjOZGle23dwNWKkvI8KSIeho.jpg\"},\"Ananya Agrawal\"),QL_GHHU4J:\"Ananya Agrawal\",variant:\"wYH00CN6z\",width:\"100%\",...addPropertyOverrides({klBr60rUz:{style:{width:\"100%\"},variant:\"eilOeXjFe\"}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14kl1n5\",layoutDependency:layoutDependency,layoutId:\"p_lsqtSQc\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,y:(componentViewport?.y||0)+0+110+0+360+-5,...addPropertyOverrides({klBr60rUz:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+50+110+0+2490+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1q981ew-container\",layoutDependency:layoutDependency,layoutId:\"V5K5UrfSt-container\",nodeId:\"V5K5UrfSt\",rendersWithMotion:true,scopeId:\"ZkIKg_pLc\",children:/*#__PURE__*/_jsx(OtherTeamMembers,{CcSRLH6Vh:\"Tarento Group\",H76GFDitc:\"Software Engineer\",height:\"100%\",id:\"V5K5UrfSt\",layoutId:\"V5K5UrfSt\",oa0vSQo8d:addImageAlt({src:\"https://framerusercontent.com/images/qO9QGi2KfiT2D8wAXkOvzGlAOPM.jpg\"},\"Alen Kuriakose\"),QL_GHHU4J:\"Alen Kuriakose\",variant:\"wYH00CN6z\",width:\"100%\",...addPropertyOverrides({klBr60rUz:{style:{width:\"100%\"},variant:\"eilOeXjFe\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,y:(componentViewport?.y||0)+0+110+0+360+-5,...addPropertyOverrides({klBr60rUz:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+50+110+0+2490+0+140}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1bmcyj7-container\",layoutDependency:layoutDependency,layoutId:\"vt2WTPvKQ-container\",nodeId:\"vt2WTPvKQ\",rendersWithMotion:true,scopeId:\"ZkIKg_pLc\",children:/*#__PURE__*/_jsx(OtherTeamMembers,{CcSRLH6Vh:\"Tarento Group\",H76GFDitc:\"Software Engineer\",height:\"100%\",id:\"vt2WTPvKQ\",layoutId:\"vt2WTPvKQ\",oa0vSQo8d:addImageAlt({src:\"https://framerusercontent.com/images/UqeU8hhQMqDnRK2jXDAqOTXOk.jpg\"},\"Dilavar Davood\"),QL_GHHU4J:\"Dilavar Davood\",variant:\"wYH00CN6z\",width:\"100%\",...addPropertyOverrides({klBr60rUz:{style:{width:\"100%\"},variant:\"eilOeXjFe\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,y:(componentViewport?.y||0)+0+110+0+360+-5,...addPropertyOverrides({klBr60rUz:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+50+110+0+2490+0+280}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-xgmn7r-container\",layoutDependency:layoutDependency,layoutId:\"gJ3mMIRex-container\",nodeId:\"gJ3mMIRex\",rendersWithMotion:true,scopeId:\"ZkIKg_pLc\",children:/*#__PURE__*/_jsx(OtherTeamMembers,{CcSRLH6Vh:\"Tarento Group\",H76GFDitc:\"Associate Software Engineer\",height:\"100%\",id:\"gJ3mMIRex\",layoutId:\"gJ3mMIRex\",oa0vSQo8d:addImageAlt({src:\"https://framerusercontent.com/images/6W2Z2KWe7eoJ7EWCCg20L294.jpg\"},\"Mohammed Nazeem\"),QL_GHHU4J:\"Mohammed Nazeem\",variant:\"wYH00CN6z\",width:\"100%\",...addPropertyOverrides({klBr60rUz:{style:{width:\"100%\"},variant:\"eilOeXjFe\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,y:(componentViewport?.y||0)+0+110+0+360+-5,...addPropertyOverrides({klBr60rUz:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+50+110+0+2490+0+420}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ollwiy-container\",layoutDependency:layoutDependency,layoutId:\"caxfy33T4-container\",nodeId:\"caxfy33T4\",rendersWithMotion:true,scopeId:\"ZkIKg_pLc\",children:/*#__PURE__*/_jsx(OtherTeamMembers,{CcSRLH6Vh:\"Tarento Group\",H76GFDitc:\"Associate Analyst\",height:\"100%\",id:\"caxfy33T4\",layoutId:\"caxfy33T4\",oa0vSQo8d:addImageAlt({src:\"https://framerusercontent.com/images/NjLLTs5TrfefOVDItGXDhYA7xg.jpg\"},\"Saradha G\"),QL_GHHU4J:\"Saradha G\",variant:\"wYH00CN6z\",width:\"100%\",...addPropertyOverrides({klBr60rUz:{style:{width:\"100%\"},variant:\"eilOeXjFe\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,y:(componentViewport?.y||0)+0+110+0+360+-5,...addPropertyOverrides({klBr60rUz:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+50+110+0+2490+0+560}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1xdga9a-container\",layoutDependency:layoutDependency,layoutId:\"LafHvSbTT-container\",nodeId:\"LafHvSbTT\",rendersWithMotion:true,scopeId:\"ZkIKg_pLc\",children:/*#__PURE__*/_jsx(OtherTeamMembers,{CcSRLH6Vh:\"T4G Labs\",H76GFDitc:\"Co-Founder\",height:\"100%\",id:\"LafHvSbTT\",layoutId:\"LafHvSbTT\",oa0vSQo8d:addImageAlt({src:\"https://framerusercontent.com/images/vAohwB1BdVADTH9ldq6cTRXHRzs.jpg\",srcSet:\"https://framerusercontent.com/images/vAohwB1BdVADTH9ldq6cTRXHRzs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/vAohwB1BdVADTH9ldq6cTRXHRzs.jpg 640w\"},\"Shemeer Babu\"),QL_GHHU4J:\"Shemeer Babu\",variant:\"wYH00CN6z\",width:\"100%\",...addPropertyOverrides({klBr60rUz:{style:{width:\"100%\"},variant:\"eilOeXjFe\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,y:(componentViewport?.y||0)+0+110+0+360+-5,...addPropertyOverrides({klBr60rUz:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+50+110+0+2490+0+700}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1tnzil8-container\",layoutDependency:layoutDependency,layoutId:\"oojkpW7DS-container\",nodeId:\"oojkpW7DS\",rendersWithMotion:true,scopeId:\"ZkIKg_pLc\",children:/*#__PURE__*/_jsx(OtherTeamMembers,{CcSRLH6Vh:\"Deloitte\",H76GFDitc:\"Senior Consultant\",height:\"100%\",id:\"oojkpW7DS\",layoutId:\"oojkpW7DS\",oa0vSQo8d:addImageAlt({src:\"https://framerusercontent.com/images/F85TUAtHhZNmDGybSd8AUJr594.jpg\"},\"Trishal Kumar\"),QL_GHHU4J:\"Trishal Kumar\",variant:\"wYH00CN6z\",width:\"100%\",...addPropertyOverrides({klBr60rUz:{style:{width:\"100%\"},variant:\"eilOeXjFe\"}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lw9t51\",layoutDependency:layoutDependency,layoutId:\"eHvQzyEwk\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,y:(componentViewport?.y||0)+0+110+0+480+-5,...addPropertyOverrides({klBr60rUz:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+50+110+0+3320+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-et3epz-container\",layoutDependency:layoutDependency,layoutId:\"lVxrGL4dg-container\",nodeId:\"lVxrGL4dg\",rendersWithMotion:true,scopeId:\"ZkIKg_pLc\",children:/*#__PURE__*/_jsx(OtherTeamMembers,{CcSRLH6Vh:\"IDinsight\",H76GFDitc:\"Product Manager\",height:\"100%\",id:\"lVxrGL4dg\",layoutId:\"lVxrGL4dg\",oa0vSQo8d:addImageAlt({src:\"https://framerusercontent.com/images/6SQ7GQnWNUvteq5wAT1cUHO4cQ.jpg\"},\"Jahnavi Meher\"),QL_GHHU4J:\"Jahnavi Meher\",variant:\"wYH00CN6z\",width:\"100%\",...addPropertyOverrides({klBr60rUz:{style:{width:\"100%\"},variant:\"eilOeXjFe\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,y:(componentViewport?.y||0)+0+110+0+480+-5,...addPropertyOverrides({klBr60rUz:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+50+110+0+3320+0+140}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1wq33qd-container\",layoutDependency:layoutDependency,layoutId:\"KSEyu81TQ-container\",nodeId:\"KSEyu81TQ\",rendersWithMotion:true,scopeId:\"ZkIKg_pLc\",children:/*#__PURE__*/_jsx(OtherTeamMembers,{CcSRLH6Vh:\"IDinsight\",H76GFDitc:\"Data Engineer\",height:\"100%\",id:\"KSEyu81TQ\",layoutId:\"KSEyu81TQ\",oa0vSQo8d:addImageAlt({src:\"https://framerusercontent.com/images/3XFW0xaj4z9vnzA4L1Axn30tM.png\"},\"Jeenu Thomas\"),QL_GHHU4J:\"Jeenu Thomas\",variant:\"wYH00CN6z\",width:\"100%\",...addPropertyOverrides({klBr60rUz:{style:{width:\"100%\"},variant:\"eilOeXjFe\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,y:(componentViewport?.y||0)+0+110+0+480+-5,...addPropertyOverrides({klBr60rUz:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+50+110+0+3320+0+280}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-18yitsd-container\",layoutDependency:layoutDependency,layoutId:\"JdApUoX5g-container\",nodeId:\"JdApUoX5g\",rendersWithMotion:true,scopeId:\"ZkIKg_pLc\",children:/*#__PURE__*/_jsx(OtherTeamMembers,{CcSRLH6Vh:\"Microsoft Research\",H76GFDitc:\"Principal Research SDE\",height:\"100%\",id:\"JdApUoX5g\",layoutId:\"JdApUoX5g\",oa0vSQo8d:addImageAlt({src:\"https://framerusercontent.com/images/xfFs2swvZKohhx6YiTmGavSrNWk.jpg\"},\"Sameer Segal\"),QL_GHHU4J:\"Sameer Segal\",variant:\"wYH00CN6z\",width:\"100%\",...addPropertyOverrides({klBr60rUz:{style:{width:\"100%\"},variant:\"eilOeXjFe\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,y:(componentViewport?.y||0)+0+110+0+480+-5,...addPropertyOverrides({klBr60rUz:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+50+110+0+3320+0+420}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-c5jkvc-container\",layoutDependency:layoutDependency,layoutId:\"bp5szOUkW-container\",nodeId:\"bp5szOUkW\",rendersWithMotion:true,scopeId:\"ZkIKg_pLc\",children:/*#__PURE__*/_jsx(OtherTeamMembers,{CcSRLH6Vh:\"Ooloi Labs\",H76GFDitc:\"Network Weaver\",height:\"100%\",id:\"bp5szOUkW\",layoutId:\"bp5szOUkW\",oa0vSQo8d:addImageAlt({src:\"https://framerusercontent.com/images/WzacmaHEHxqpzuLgC4sFfKBbmvo.jpg\"},\"Paras Singh\"),QL_GHHU4J:\"Paras Singh\",variant:\"wYH00CN6z\",width:\"100%\",...addPropertyOverrides({klBr60rUz:{oa0vSQo8d:addImageAlt({src:\"https://framerusercontent.com/images/l11m76NRCVfGPjotqKrW83gTHxs.jpg\",srcSet:\"https://framerusercontent.com/images/l11m76NRCVfGPjotqKrW83gTHxs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/l11m76NRCVfGPjotqKrW83gTHxs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/l11m76NRCVfGPjotqKrW83gTHxs.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/l11m76NRCVfGPjotqKrW83gTHxs.jpg 2584w\"},\"Paras Singh\"),style:{width:\"100%\"},variant:\"eilOeXjFe\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,y:(componentViewport?.y||0)+0+110+0+480+-5,...addPropertyOverrides({klBr60rUz:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+50+110+0+3320+0+560}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-m40181-container\",layoutDependency:layoutDependency,layoutId:\"jFQmgI7NP-container\",nodeId:\"jFQmgI7NP\",rendersWithMotion:true,scopeId:\"ZkIKg_pLc\",children:/*#__PURE__*/_jsx(OtherTeamMembers,{CcSRLH6Vh:\"Outlawed India\",H76GFDitc:\"Founder - Director\",height:\"100%\",id:\"jFQmgI7NP\",layoutId:\"jFQmgI7NP\",oa0vSQo8d:addImageAlt({src:\"https://framerusercontent.com/images/Wy0AAgj4jZHpnDpoR3H6JrWDx3o.jpg\"},\"Vibha Nadig\"),QL_GHHU4J:\"Vibha Nadig\",variant:\"wYH00CN6z\",width:\"100%\",...addPropertyOverrides({klBr60rUz:{style:{width:\"100%\"},variant:\"eilOeXjFe\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,y:(componentViewport?.y||0)+0+110+0+480+-5,...addPropertyOverrides({klBr60rUz:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+50+110+0+3320+0+700}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1o53gy3-container\",layoutDependency:layoutDependency,layoutId:\"HTqcQKjQ0-container\",nodeId:\"HTqcQKjQ0\",rendersWithMotion:true,scopeId:\"ZkIKg_pLc\",children:/*#__PURE__*/_jsx(OtherTeamMembers,{CcSRLH6Vh:\"Veditum\",H76GFDitc:\"Director- Founder\",height:\"100%\",id:\"HTqcQKjQ0\",layoutId:\"HTqcQKjQ0\",oa0vSQo8d:addImageAlt({src:\"https://framerusercontent.com/images/i3bhVLNDWCJBWtLXM91PdR65A.webp\"},\"Siddharth Agarwal\"),QL_GHHU4J:\"Siddharth Agarwal\",variant:\"wYH00CN6z\",width:\"100%\",...addPropertyOverrides({klBr60rUz:{style:{width:\"100%\"},variant:\"eilOeXjFe\"}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4s9btk\",layoutDependency:layoutDependency,layoutId:\"kJWManh7Z\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,y:(componentViewport?.y||0)+0+110+0+600+-5,...addPropertyOverrides({klBr60rUz:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+50+110+0+4150+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1pnh4tt-container\",layoutDependency:layoutDependency,layoutId:\"KuxSD9TYV-container\",nodeId:\"KuxSD9TYV\",rendersWithMotion:true,scopeId:\"ZkIKg_pLc\",children:/*#__PURE__*/_jsx(OtherTeamMembers,{CcSRLH6Vh:\"OpenNyAI\",H76GFDitc:\"Senior Curator - Lead\",height:\"100%\",id:\"KuxSD9TYV\",layoutId:\"KuxSD9TYV\",oa0vSQo8d:addImageAlt({src:\"https://framerusercontent.com/images/9giJISjbyHGw8Zbkpj5M3ZMI7E.jpg\"},\"Varun Hemachandran\"),QL_GHHU4J:\"Varun Hemachandran\",variant:\"wYH00CN6z\",width:\"100%\",...addPropertyOverrides({klBr60rUz:{style:{width:\"100%\"},variant:\"eilOeXjFe\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,y:(componentViewport?.y||0)+0+110+0+600+-5,...addPropertyOverrides({klBr60rUz:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+50+110+0+4150+0+140}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1gwyepn-container\",layoutDependency:layoutDependency,layoutId:\"znNREwEnw-container\",nodeId:\"znNREwEnw\",rendersWithMotion:true,scopeId:\"ZkIKg_pLc\",children:/*#__PURE__*/_jsx(OtherTeamMembers,{CcSRLH6Vh:\"OpenNyAI\",H76GFDitc:\"Weaver\",height:\"100%\",id:\"znNREwEnw\",layoutId:\"znNREwEnw\",oa0vSQo8d:addImageAlt({src:\"https://framerusercontent.com/images/sfQg0UcZDsvneJ2RlK2ceZ72mR0.jpg\"},\"Atreyo Banerjee\"),QL_GHHU4J:\"Atreyo Banerjee\",variant:\"wYH00CN6z\",width:\"100%\",...addPropertyOverrides({klBr60rUz:{style:{width:\"100%\"},variant:\"eilOeXjFe\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,y:(componentViewport?.y||0)+0+110+0+600+-5,...addPropertyOverrides({klBr60rUz:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+50+110+0+4150+0+280}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-m7e95s-container\",layoutDependency:layoutDependency,layoutId:\"WXI67owuU-container\",nodeId:\"WXI67owuU\",rendersWithMotion:true,scopeId:\"ZkIKg_pLc\",children:/*#__PURE__*/_jsx(OtherTeamMembers,{CcSRLH6Vh:\"text\",H76GFDitc:\"Weaver\",height:\"100%\",id:\"WXI67owuU\",layoutId:\"WXI67owuU\",oa0vSQo8d:addImageAlt({src:\"https://framerusercontent.com/images/gutQKqCIR301FPPPSKU7E40QlU.jpg\"},\"Aayana Rai Bhojani\"),QL_GHHU4J:\"Aayana Rai Bhojani\",variant:\"wYH00CN6z\",width:\"100%\",...addPropertyOverrides({klBr60rUz:{CcSRLH6Vh:\"Tarento\",H76GFDitc:\"Senior Vice President\",oa0vSQo8d:addImageAlt({src:\"https://framerusercontent.com/images/bJ9jdOMpWaJ5iyG3chJxfgvd6Eo.jpg\",srcSet:\"https://framerusercontent.com/images/bJ9jdOMpWaJ5iyG3chJxfgvd6Eo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/bJ9jdOMpWaJ5iyG3chJxfgvd6Eo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/bJ9jdOMpWaJ5iyG3chJxfgvd6Eo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/bJ9jdOMpWaJ5iyG3chJxfgvd6Eo.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/bJ9jdOMpWaJ5iyG3chJxfgvd6Eo.jpg 5472w\"},\"Jinesh Sumedhan\"),QL_GHHU4J:\"Jinesh Sumedhan\",style:{width:\"100%\"},variant:\"eilOeXjFe\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,y:(componentViewport?.y||0)+0+110+0+600+-5,...addPropertyOverrides({klBr60rUz:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+50+110+0+4150+0+420}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1oc9zwe-container\",layoutDependency:layoutDependency,layoutId:\"Fos8fb7ss-container\",nodeId:\"Fos8fb7ss\",rendersWithMotion:true,scopeId:\"ZkIKg_pLc\",children:/*#__PURE__*/_jsx(OtherTeamMembers,{CcSRLH6Vh:\"text\",H76GFDitc:\"Co-founder\",height:\"100%\",id:\"Fos8fb7ss\",layoutId:\"Fos8fb7ss\",oa0vSQo8d:addImageAlt({src:\"https://framerusercontent.com/images/SSDXSif1JKYI6uFM7bM7062AkCE.jpeg\"},\"\"),QL_GHHU4J:\"Moosa Mehar MP\",variant:\"wYH00CN6z\",width:\"100%\",...addPropertyOverrides({klBr60rUz:{CcSRLH6Vh:\"Thomson Reuters Lab\",H76GFDitc:\"Applied Scientist\",oa0vSQo8d:addImageAlt({src:\"https://framerusercontent.com/images/2skul6V4DipHwXC3vHhbsuyeOzE.jpg\",srcSet:\"https://framerusercontent.com/images/2skul6V4DipHwXC3vHhbsuyeOzE.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/2skul6V4DipHwXC3vHhbsuyeOzE.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/2skul6V4DipHwXC3vHhbsuyeOzE.jpg 3024w\"},\"Kanak Raj\"),QL_GHHU4J:\"Kanak Raj\",style:{width:\"100%\"},variant:\"eilOeXjFe\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,y:(componentViewport?.y||0)+0+110+0+600+-5,...addPropertyOverrides({klBr60rUz:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+50+110+0+4150+0+560}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-pget4g-container\",layoutDependency:layoutDependency,layoutId:\"oCLIAikTk-container\",nodeId:\"oCLIAikTk\",rendersWithMotion:true,scopeId:\"ZkIKg_pLc\",children:/*#__PURE__*/_jsx(OtherTeamMembers,{CcSRLH6Vh:\"Agami\",H76GFDitc:\"Co-Founder\",height:\"100%\",id:\"oCLIAikTk\",layoutId:\"oCLIAikTk\",oa0vSQo8d:addImageAlt({src:\"https://framerusercontent.com/images/9N1OdGCbwwVpPGx0DrE4lgeFYXY.jpg\"},\"Sachin Malhan\"),QL_GHHU4J:\"Sachin Malhan\",variant:\"wYH00CN6z\",width:\"100%\",...addPropertyOverrides({klBr60rUz:{style:{width:\"100%\"},variant:\"eilOeXjFe\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,y:(componentViewport?.y||0)+0+110+0+600+-5,...addPropertyOverrides({klBr60rUz:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+50+110+0+4150+0+700}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-hf3upq-container\",layoutDependency:layoutDependency,layoutId:\"Uojj_WhjG-container\",nodeId:\"Uojj_WhjG\",rendersWithMotion:true,scopeId:\"ZkIKg_pLc\",children:/*#__PURE__*/_jsx(OtherTeamMembers,{CcSRLH6Vh:\"text\",H76GFDitc:\"Weaver\",height:\"100%\",id:\"Uojj_WhjG\",layoutId:\"Uojj_WhjG\",oa0vSQo8d:addImageAlt({src:\"https://framerusercontent.com/images/MhbPVNwEct8ndkRPuFVGav7Se8.jpg\"},\"Aditi Kim Karolil\"),QL_GHHU4J:\"Aditi Kim Karolil\",variant:\"wYH00CN6z\",width:\"100%\",...addPropertyOverrides({klBr60rUz:{CcSRLH6Vh:\"Agami\",style:{width:\"100%\"},variant:\"eilOeXjFe\"}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-665c2g\",layoutDependency:layoutDependency,layoutId:\"nG5FAAFXJ\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,y:(componentViewport?.y||0)+0+110+0+720+-5,...addPropertyOverrides({klBr60rUz:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+50+110+0+4980+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-18lxh3s-container\",layoutDependency:layoutDependency,layoutId:\"E7yxhMhXm-container\",nodeId:\"E7yxhMhXm\",rendersWithMotion:true,scopeId:\"ZkIKg_pLc\",children:/*#__PURE__*/_jsx(OtherTeamMembers,{CcSRLH6Vh:\"FIDE\",H76GFDitc:\"Engineering Leader\",height:\"100%\",id:\"E7yxhMhXm\",layoutId:\"E7yxhMhXm\",oa0vSQo8d:addImageAlt({src:\"https://framerusercontent.com/images/1Mi1rCFiHY59pqBKLHo14i6l0M.jpg\"},\"Faiz Mohammed\"),QL_GHHU4J:\"Faiz Mohammed\",variant:\"wYH00CN6z\",width:\"100%\",...addPropertyOverrides({klBr60rUz:{style:{width:\"100%\"},variant:\"eilOeXjFe\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,y:(componentViewport?.y||0)+0+110+0+720+-5,...addPropertyOverrides({klBr60rUz:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+50+110+0+4980+0+140}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1evbkul-container\",layoutDependency:layoutDependency,layoutId:\"W7GO1DJgw-container\",nodeId:\"W7GO1DJgw\",rendersWithMotion:true,scopeId:\"ZkIKg_pLc\",children:/*#__PURE__*/_jsx(OtherTeamMembers,{CcSRLH6Vh:\"Tarento Group\",H76GFDitc:\"Delivery Lead - Digital India & Others\",height:\"100%\",id:\"W7GO1DJgw\",layoutId:\"W7GO1DJgw\",oa0vSQo8d:addImageAlt({src:\"https://framerusercontent.com/images/G9XAokZxAXhtZdQuxWc2LZ6CrM.jpg\"},\"Thillai Rajan\"),QL_GHHU4J:\"Thillai Rajan\",variant:\"wYH00CN6z\",width:\"100%\",...addPropertyOverrides({klBr60rUz:{style:{width:\"100%\"},variant:\"eilOeXjFe\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,y:(componentViewport?.y||0)+0+110+0+720+-5,...addPropertyOverrides({klBr60rUz:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+50+110+0+4980+0+280}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1avoyr6-container\",layoutDependency:layoutDependency,layoutId:\"f9h3s3rMT-container\",nodeId:\"f9h3s3rMT\",rendersWithMotion:true,scopeId:\"ZkIKg_pLc\",children:/*#__PURE__*/_jsx(OtherTeamMembers,{CcSRLH6Vh:\"Tekdi Technologies\",H76GFDitc:\"Co-Founder and CEO\",height:\"100%\",id:\"f9h3s3rMT\",layoutId:\"f9h3s3rMT\",oa0vSQo8d:addImageAlt({src:\"https://framerusercontent.com/images/xKPLRn7DpkzwtNn53iJYM9JdZBs.jpg\"},\"Parth Lawate\"),QL_GHHU4J:\"Parth Lawate\",variant:\"wYH00CN6z\",width:\"100%\",...addPropertyOverrides({klBr60rUz:{style:{width:\"100%\"},variant:\"eilOeXjFe\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,y:(componentViewport?.y||0)+0+110+0+720+-5,...addPropertyOverrides({klBr60rUz:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+50+110+0+4980+0+420}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-vnv1uf-container\",layoutDependency:layoutDependency,layoutId:\"edsvLoNkb-container\",nodeId:\"edsvLoNkb\",rendersWithMotion:true,scopeId:\"ZkIKg_pLc\",children:/*#__PURE__*/_jsx(OtherTeamMembers,{CcSRLH6Vh:\"TinkerHub\",H76GFDitc:\"Learning Fellow\",height:\"100%\",id:\"edsvLoNkb\",layoutId:\"edsvLoNkb\",oa0vSQo8d:addImageAlt({src:\"https://framerusercontent.com/images/GadabHLvFQtGA5lOc8MvsPzcoPs.jpg\"},\"Abhiram N J\"),QL_GHHU4J:\"Abhiram N J\",variant:\"wYH00CN6z\",width:\"100%\",...addPropertyOverrides({klBr60rUz:{style:{width:\"100%\"},variant:\"eilOeXjFe\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,y:(componentViewport?.y||0)+0+110+0+720+-5,...addPropertyOverrides({klBr60rUz:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+50+110+0+4980+0+560}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1mlbx5b-container\",layoutDependency:layoutDependency,layoutId:\"grpOnuJaB-container\",nodeId:\"grpOnuJaB\",rendersWithMotion:true,scopeId:\"ZkIKg_pLc\",children:/*#__PURE__*/_jsx(OtherTeamMembers,{CcSRLH6Vh:\"TinkerHub\",H76GFDitc:\"Intern\",height:\"100%\",id:\"grpOnuJaB\",layoutId:\"grpOnuJaB\",oa0vSQo8d:addImageAlt({src:\"https://framerusercontent.com/images/C4cfCxAW0v8Wv5f6Ef9kD2cR9DQ.jpg\"},\"Amal K A\"),QL_GHHU4J:\"Amal K A\",variant:\"wYH00CN6z\",width:\"100%\",...addPropertyOverrides({klBr60rUz:{style:{width:\"100%\"},variant:\"eilOeXjFe\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,y:(componentViewport?.y||0)+0+110+0+720+-5,...addPropertyOverrides({klBr60rUz:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+50+110+0+4980+0+700}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-z0jcqh-container\",layoutDependency:layoutDependency,layoutId:\"DZgUTIkiK-container\",nodeId:\"DZgUTIkiK\",rendersWithMotion:true,scopeId:\"ZkIKg_pLc\",children:/*#__PURE__*/_jsx(OtherTeamMembers,{CcSRLH6Vh:\"TinkerHub\",H76GFDitc:\"Media Initiative Fellow\",height:\"100%\",id:\"DZgUTIkiK\",layoutId:\"DZgUTIkiK\",oa0vSQo8d:addImageAlt({src:\"https://framerusercontent.com/images/Ox5oNIqSA51YS4fhqaEu7zJfyq8.jpg\"},\"Elizabeth Rachel Yohannan\"),QL_GHHU4J:\"Elizabeth Rachel Yohannan\",variant:\"wYH00CN6z\",width:\"100%\",...addPropertyOverrides({klBr60rUz:{style:{width:\"100%\"},variant:\"eilOeXjFe\"}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lz2cjw\",layoutDependency:layoutDependency,layoutId:\"V8Uj9ALIG\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,y:(componentViewport?.y||0)+0+110+0+840+-5,...addPropertyOverrides({klBr60rUz:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+50+110+0+5810+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-17l72rw-container\",layoutDependency:layoutDependency,layoutId:\"Sjr0U51Ee-container\",nodeId:\"Sjr0U51Ee\",rendersWithMotion:true,scopeId:\"ZkIKg_pLc\",children:/*#__PURE__*/_jsx(OtherTeamMembers,{CcSRLH6Vh:\"TinkerHub\",H76GFDitc:\"Board Member\",height:\"100%\",id:\"Sjr0U51Ee\",layoutId:\"Sjr0U51Ee\",oa0vSQo8d:addImageAlt({src:\"https://framerusercontent.com/images/lwYzIrUWCXxQQuvh9L6wTI124BQ.jpg\"},\"Lazim Aslam\"),QL_GHHU4J:\"Lazim Aslam\",variant:\"wYH00CN6z\",width:\"100%\",...addPropertyOverrides({klBr60rUz:{style:{width:\"100%\"},variant:\"eilOeXjFe\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,y:(componentViewport?.y||0)+0+110+0+840+-5,...addPropertyOverrides({klBr60rUz:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+50+110+0+5810+0+140}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1xh9gp2-container\",layoutDependency:layoutDependency,layoutId:\"iSYTDPv4p-container\",nodeId:\"iSYTDPv4p\",rendersWithMotion:true,scopeId:\"ZkIKg_pLc\",children:/*#__PURE__*/_jsx(OtherTeamMembers,{CcSRLH6Vh:\"OpenNyAI\",H76GFDitc:\"Volunteer\",height:\"100%\",id:\"iSYTDPv4p\",layoutId:\"iSYTDPv4p\",oa0vSQo8d:addImageAlt({src:\"https://framerusercontent.com/images/ZGXN5IiUXPYfJkYDJCpESeFJhk.jpeg\",srcSet:\"https://framerusercontent.com/images/ZGXN5IiUXPYfJkYDJCpESeFJhk.jpeg?scale-down-to=1024 768w,https://framerusercontent.com/images/ZGXN5IiUXPYfJkYDJCpESeFJhk.jpeg 1200w\"},\"Samved Pradhan\"),QL_GHHU4J:\"Samved Pradhan\",variant:\"wYH00CN6z\",width:\"100%\",...addPropertyOverrides({klBr60rUz:{style:{width:\"100%\"},variant:\"eilOeXjFe\"}},baseVariant,gestureVariant)})})})]})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-ghj0y0\",layoutDependency:layoutDependency,layoutId:\"yswrihoyO\",style:{background:'linear-gradient(180deg, rgba(46, 46, 46, 0) 0%, var(--token-ee408abb-37c6-4710-9a13-ea59982a6967, rgb(46, 46, 46)) /* {\"name\":\"Page BG\"} */ 100%)'}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-py6tly\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"G7cetbl8a\",onTap:onTap1xy0d52,...addPropertyOverrides({CgK3ETc_K:{onTap:onTap1tx1161,transformTemplate:transformTemplate1},oInVqmojl:{onTap:onTap1tx1161,transformTemplate:transformTemplate1},ti9BkS5Op:{onTap:onTap1tx1161,transformTemplate:transformTemplate1}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-kfty19-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"UcqzZAQqn-container\",nodeId:\"UcqzZAQqn\",rendersWithMotion:true,scopeId:\"ZkIKg_pLc\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-66435eb8-f1dc-4531-b3fe-ce14d54aade3, rgb(218, 110, 170))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Minus\",id:\"UcqzZAQqn\",layoutId:\"UcqzZAQqn\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\",...addPropertyOverrides({CgK3ETc_K:{iconSelection:\"Plus\"},oInVqmojl:{iconSelection:\"Plus\"},ti9BkS5Op:{iconSelection:\"Plus\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1x5cubp\",\"data-styles-preset\":\"zxuGgC36C\",children:\"VIEW LESS\"})}),className:\"framer-1sxoja\",\"data-highlight\":true,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"F5Spq75Be\",onTap:onTap1tx1161,style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({CgK3ETc_K:{\"data-highlight\":undefined,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1x5cubp\",\"data-styles-preset\":\"zxuGgC36C\",children:\"VIEW MORE\"})}),onTap:undefined},oInVqmojl:{\"data-highlight\":undefined,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1x5cubp\",\"data-styles-preset\":\"zxuGgC36C\",children:\"VIEW MORE\"})}),onTap:undefined},ti9BkS5Op:{\"data-highlight\":undefined,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1x5cubp\",\"data-styles-preset\":\"zxuGgC36C\",children:\"VIEW MORE\"})}),onTap:undefined}},baseVariant,gestureVariant)})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-oPfB3.framer-ipa4o6, .framer-oPfB3 .framer-ipa4o6 { display: block; }\",\".framer-oPfB3.framer-mt4ehh { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1100px; overflow: hidden; padding: 0px; position: relative; width: 1100px; }\",\".framer-oPfB3 .framer-2l872z { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 3px; height: 110px; justify-content: center; overflow: hidden; padding: 20px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-oPfB3 .framer-1in2b8j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-oPfB3 .framer-czbueq { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-oPfB3 .framer-151vmpv { align-self: stretch; flex: none; height: 1px; overflow: hidden; position: relative; width: auto; }\",\".framer-oPfB3 .framer-t799l2 { 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: 100%; }\",\".framer-oPfB3 .framer-5umt8f, .framer-oPfB3 .framer-191enyx, .framer-oPfB3 .framer-1lw9t51, .framer-oPfB3 .framer-665c2g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 110px; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-oPfB3 .framer-4mkdrw-container, .framer-oPfB3 .framer-93tedf-container, .framer-oPfB3 .framer-bruwwm-container, .framer-oPfB3 .framer-1k3umf5-container, .framer-oPfB3 .framer-yuabko-container, .framer-oPfB3 .framer-1ih9mzp-container, .framer-oPfB3 .framer-3qhce-container, .framer-oPfB3 .framer-13ach9c-container, .framer-oPfB3 .framer-1qeqy7d-container, .framer-oPfB3 .framer-1ck6lcf-container, .framer-oPfB3 .framer-ro1hfe-container, .framer-oPfB3 .framer-1nbl5e6-container, .framer-oPfB3 .framer-1296pms-container, .framer-oPfB3 .framer-i18p9l-container, .framer-oPfB3 .framer-36qsbm-container, .framer-oPfB3 .framer-n5v51g-container, .framer-oPfB3 .framer-66sy1t-container, .framer-oPfB3 .framer-192ejbt-container, .framer-oPfB3 .framer-1q981ew-container, .framer-oPfB3 .framer-1bmcyj7-container, .framer-oPfB3 .framer-xgmn7r-container, .framer-oPfB3 .framer-1ollwiy-container, .framer-oPfB3 .framer-1xdga9a-container, .framer-oPfB3 .framer-1tnzil8-container, .framer-oPfB3 .framer-et3epz-container, .framer-oPfB3 .framer-1wq33qd-container, .framer-oPfB3 .framer-18yitsd-container, .framer-oPfB3 .framer-c5jkvc-container, .framer-oPfB3 .framer-m40181-container, .framer-oPfB3 .framer-1o53gy3-container, .framer-oPfB3 .framer-1pnh4tt-container, .framer-oPfB3 .framer-1gwyepn-container, .framer-oPfB3 .framer-m7e95s-container, .framer-oPfB3 .framer-1oc9zwe-container, .framer-oPfB3 .framer-pget4g-container, .framer-oPfB3 .framer-hf3upq-container, .framer-oPfB3 .framer-18lxh3s-container, .framer-oPfB3 .framer-1evbkul-container, .framer-oPfB3 .framer-1avoyr6-container, .framer-oPfB3 .framer-vnv1uf-container, .framer-oPfB3 .framer-1mlbx5b-container, .framer-oPfB3 .framer-z0jcqh-container, .framer-oPfB3 .framer-17l72rw-container, .framer-oPfB3 .framer-1xh9gp2-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-oPfB3 .framer-7m9671, .framer-oPfB3 .framer-14kl1n5, .framer-oPfB3 .framer-4s9btk, .framer-oPfB3 .framer-lz2cjw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 110px; justify-content: space-evenly; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-oPfB3 .framer-ghj0y0 { bottom: 0px; flex: none; height: 100%; left: 0px; overflow: visible; position: absolute; right: 0px; z-index: 1; }\",\".framer-oPfB3 .framer-py6tly { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-oPfB3 .framer-kfty19-container { flex: none; height: 16px; position: relative; width: 16px; }\",\".framer-oPfB3 .framer-1sxoja { cursor: pointer; flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-oPfB3.framer-mt4ehh, .framer-oPfB3 .framer-2l872z, .framer-oPfB3 .framer-1in2b8j, .framer-oPfB3 .framer-t799l2, .framer-oPfB3 .framer-py6tly { gap: 0px; } .framer-oPfB3.framer-mt4ehh > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-oPfB3.framer-mt4ehh > :first-child, .framer-oPfB3 .framer-2l872z > :first-child, .framer-oPfB3 .framer-1in2b8j > :first-child, .framer-oPfB3 .framer-t799l2 > :first-child { margin-top: 0px; } .framer-oPfB3.framer-mt4ehh > :last-child, .framer-oPfB3 .framer-2l872z > :last-child, .framer-oPfB3 .framer-1in2b8j > :last-child, .framer-oPfB3 .framer-t799l2 > :last-child { margin-bottom: 0px; } .framer-oPfB3 .framer-2l872z > * { margin: 0px; margin-bottom: calc(3px / 2); margin-top: calc(3px / 2); } .framer-oPfB3 .framer-1in2b8j > *, .framer-oPfB3 .framer-t799l2 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-oPfB3 .framer-py6tly > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-oPfB3 .framer-py6tly > :first-child { margin-left: 0px; } .framer-oPfB3 .framer-py6tly > :last-child { margin-right: 0px; } }\",\".framer-oPfB3.framer-v-1ez9uu4.framer-mt4ehh { padding: 50px 20px 50px 20px; width: 390px; }\",\".framer-oPfB3.framer-v-1ez9uu4 .framer-5umt8f, .framer-oPfB3.framer-v-1ez9uu4 .framer-7m9671, .framer-oPfB3.framer-v-1ez9uu4 .framer-191enyx, .framer-oPfB3.framer-v-1ez9uu4 .framer-14kl1n5, .framer-oPfB3.framer-v-1ez9uu4 .framer-1lw9t51, .framer-oPfB3.framer-v-1ez9uu4 .framer-4s9btk, .framer-oPfB3.framer-v-1ez9uu4 .framer-665c2g, .framer-oPfB3.framer-v-1ez9uu4 .framer-lz2cjw { flex-direction: column; gap: 20px; height: min-content; justify-content: center; }\",\".framer-oPfB3.framer-v-1ez9uu4 .framer-4mkdrw-container, .framer-oPfB3.framer-v-1ez9uu4 .framer-93tedf-container, .framer-oPfB3.framer-v-1ez9uu4 .framer-bruwwm-container, .framer-oPfB3.framer-v-1ez9uu4 .framer-1k3umf5-container, .framer-oPfB3.framer-v-1ez9uu4 .framer-yuabko-container, .framer-oPfB3.framer-v-1ez9uu4 .framer-1ih9mzp-container { width: 350px; }\",\".framer-oPfB3.framer-v-1ez9uu4 .framer-3qhce-container, .framer-oPfB3.framer-v-1ez9uu4 .framer-13ach9c-container, .framer-oPfB3.framer-v-1ez9uu4 .framer-1qeqy7d-container, .framer-oPfB3.framer-v-1ez9uu4 .framer-1ck6lcf-container, .framer-oPfB3.framer-v-1ez9uu4 .framer-ro1hfe-container, .framer-oPfB3.framer-v-1ez9uu4 .framer-1nbl5e6-container, .framer-oPfB3.framer-v-1ez9uu4 .framer-1296pms-container, .framer-oPfB3.framer-v-1ez9uu4 .framer-i18p9l-container, .framer-oPfB3.framer-v-1ez9uu4 .framer-36qsbm-container, .framer-oPfB3.framer-v-1ez9uu4 .framer-n5v51g-container, .framer-oPfB3.framer-v-1ez9uu4 .framer-66sy1t-container, .framer-oPfB3.framer-v-1ez9uu4 .framer-192ejbt-container, .framer-oPfB3.framer-v-1ez9uu4 .framer-1q981ew-container, .framer-oPfB3.framer-v-1ez9uu4 .framer-1bmcyj7-container, .framer-oPfB3.framer-v-1ez9uu4 .framer-xgmn7r-container, .framer-oPfB3.framer-v-1ez9uu4 .framer-1ollwiy-container, .framer-oPfB3.framer-v-1ez9uu4 .framer-1xdga9a-container, .framer-oPfB3.framer-v-1ez9uu4 .framer-1tnzil8-container, .framer-oPfB3.framer-v-1ez9uu4 .framer-et3epz-container, .framer-oPfB3.framer-v-1ez9uu4 .framer-1wq33qd-container, .framer-oPfB3.framer-v-1ez9uu4 .framer-18yitsd-container, .framer-oPfB3.framer-v-1ez9uu4 .framer-c5jkvc-container, .framer-oPfB3.framer-v-1ez9uu4 .framer-m40181-container, .framer-oPfB3.framer-v-1ez9uu4 .framer-1o53gy3-container, .framer-oPfB3.framer-v-1ez9uu4 .framer-1pnh4tt-container, .framer-oPfB3.framer-v-1ez9uu4 .framer-1gwyepn-container, .framer-oPfB3.framer-v-1ez9uu4 .framer-m7e95s-container, .framer-oPfB3.framer-v-1ez9uu4 .framer-1oc9zwe-container, .framer-oPfB3.framer-v-1ez9uu4 .framer-pget4g-container, .framer-oPfB3.framer-v-1ez9uu4 .framer-hf3upq-container, .framer-oPfB3.framer-v-1ez9uu4 .framer-18lxh3s-container, .framer-oPfB3.framer-v-1ez9uu4 .framer-1evbkul-container, .framer-oPfB3.framer-v-1ez9uu4 .framer-1avoyr6-container, .framer-oPfB3.framer-v-1ez9uu4 .framer-vnv1uf-container, .framer-oPfB3.framer-v-1ez9uu4 .framer-1mlbx5b-container, .framer-oPfB3.framer-v-1ez9uu4 .framer-z0jcqh-container, .framer-oPfB3.framer-v-1ez9uu4 .framer-17l72rw-container, .framer-oPfB3.framer-v-1ez9uu4 .framer-1xh9gp2-container { width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-oPfB3.framer-v-1ez9uu4 .framer-5umt8f, .framer-oPfB3.framer-v-1ez9uu4 .framer-7m9671, .framer-oPfB3.framer-v-1ez9uu4 .framer-191enyx, .framer-oPfB3.framer-v-1ez9uu4 .framer-14kl1n5, .framer-oPfB3.framer-v-1ez9uu4 .framer-1lw9t51, .framer-oPfB3.framer-v-1ez9uu4 .framer-4s9btk, .framer-oPfB3.framer-v-1ez9uu4 .framer-665c2g, .framer-oPfB3.framer-v-1ez9uu4 .framer-lz2cjw { gap: 0px; } .framer-oPfB3.framer-v-1ez9uu4 .framer-5umt8f > *, .framer-oPfB3.framer-v-1ez9uu4 .framer-7m9671 > *, .framer-oPfB3.framer-v-1ez9uu4 .framer-191enyx > *, .framer-oPfB3.framer-v-1ez9uu4 .framer-14kl1n5 > *, .framer-oPfB3.framer-v-1ez9uu4 .framer-1lw9t51 > *, .framer-oPfB3.framer-v-1ez9uu4 .framer-4s9btk > *, .framer-oPfB3.framer-v-1ez9uu4 .framer-665c2g > *, .framer-oPfB3.framer-v-1ez9uu4 .framer-lz2cjw > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-oPfB3.framer-v-1ez9uu4 .framer-5umt8f > :first-child, .framer-oPfB3.framer-v-1ez9uu4 .framer-7m9671 > :first-child, .framer-oPfB3.framer-v-1ez9uu4 .framer-191enyx > :first-child, .framer-oPfB3.framer-v-1ez9uu4 .framer-14kl1n5 > :first-child, .framer-oPfB3.framer-v-1ez9uu4 .framer-1lw9t51 > :first-child, .framer-oPfB3.framer-v-1ez9uu4 .framer-4s9btk > :first-child, .framer-oPfB3.framer-v-1ez9uu4 .framer-665c2g > :first-child, .framer-oPfB3.framer-v-1ez9uu4 .framer-lz2cjw > :first-child { margin-top: 0px; } .framer-oPfB3.framer-v-1ez9uu4 .framer-5umt8f > :last-child, .framer-oPfB3.framer-v-1ez9uu4 .framer-7m9671 > :last-child, .framer-oPfB3.framer-v-1ez9uu4 .framer-191enyx > :last-child, .framer-oPfB3.framer-v-1ez9uu4 .framer-14kl1n5 > :last-child, .framer-oPfB3.framer-v-1ez9uu4 .framer-1lw9t51 > :last-child, .framer-oPfB3.framer-v-1ez9uu4 .framer-4s9btk > :last-child, .framer-oPfB3.framer-v-1ez9uu4 .framer-665c2g > :last-child, .framer-oPfB3.framer-v-1ez9uu4 .framer-lz2cjw > :last-child { margin-bottom: 0px; } }\",\".framer-oPfB3.framer-v-1iph4bz .framer-2l872z, .framer-oPfB3.framer-v-1iph4bz .framer-5umt8f, .framer-oPfB3.framer-v-vnfljr .framer-2l872z, .framer-oPfB3.framer-v-vnfljr .framer-5umt8f, .framer-oPfB3.framer-v-1f60si7 .framer-2l872z, .framer-oPfB3.framer-v-1f60si7 .framer-5umt8f { order: 0; }\",\".framer-oPfB3.framer-v-1iph4bz .framer-1in2b8j, .framer-oPfB3.framer-v-1iph4bz .framer-kfty19-container, .framer-oPfB3.framer-v-vnfljr .framer-1in2b8j, .framer-oPfB3.framer-v-vnfljr .framer-kfty19-container, .framer-oPfB3.framer-v-1f60si7 .framer-1in2b8j, .framer-oPfB3.framer-v-1f60si7 .framer-kfty19-container { z-index: 2; }\",\".framer-oPfB3.framer-v-1iph4bz .framer-t799l2, .framer-oPfB3.framer-v-vnfljr .framer-t799l2, .framer-oPfB3.framer-v-1f60si7 .framer-t799l2 { height: 320px; justify-content: flex-start; order: 1; }\",\".framer-oPfB3.framer-v-1iph4bz .framer-7m9671, .framer-oPfB3.framer-v-vnfljr .framer-7m9671, .framer-oPfB3.framer-v-1f60si7 .framer-7m9671 { order: 1; }\",\".framer-oPfB3.framer-v-1iph4bz .framer-191enyx, .framer-oPfB3.framer-v-1iph4bz .framer-ghj0y0, .framer-oPfB3.framer-v-vnfljr .framer-191enyx, .framer-oPfB3.framer-v-1f60si7 .framer-191enyx { order: 2; }\",\".framer-oPfB3.framer-v-1iph4bz .framer-14kl1n5, .framer-oPfB3.framer-v-vnfljr .framer-14kl1n5, .framer-oPfB3.framer-v-1f60si7 .framer-14kl1n5 { order: 3; }\",\".framer-oPfB3.framer-v-1iph4bz .framer-1lw9t51, .framer-oPfB3.framer-v-vnfljr .framer-1lw9t51, .framer-oPfB3.framer-v-1f60si7 .framer-1lw9t51 { order: 4; }\",\".framer-oPfB3.framer-v-1iph4bz .framer-4s9btk, .framer-oPfB3.framer-v-vnfljr .framer-4s9btk, .framer-oPfB3.framer-v-1f60si7 .framer-4s9btk { order: 5; }\",\".framer-oPfB3.framer-v-1iph4bz .framer-665c2g, .framer-oPfB3.framer-v-vnfljr .framer-665c2g, .framer-oPfB3.framer-v-1f60si7 .framer-665c2g { order: 6; }\",\".framer-oPfB3.framer-v-1iph4bz .framer-lz2cjw, .framer-oPfB3.framer-v-vnfljr .framer-lz2cjw, .framer-oPfB3.framer-v-1f60si7 .framer-lz2cjw { order: 7; }\",\".framer-oPfB3.framer-v-1iph4bz .framer-py6tly, .framer-oPfB3.framer-v-vnfljr .framer-py6tly, .framer-oPfB3.framer-v-1f60si7 .framer-py6tly { bottom: 25px; left: 50%; order: 3; position: absolute; width: 1100px; z-index: 1; }\",\".framer-oPfB3.framer-v-1iph4bz .framer-1sxoja, .framer-oPfB3.framer-v-vnfljr .framer-1sxoja, .framer-oPfB3.framer-v-1f60si7 .framer-1sxoja { cursor: unset; }\",\".framer-oPfB3.framer-v-vnfljr .framer-ghj0y0 { bottom: -580px; left: -1199px; order: 2; right: 1199px; }\",\".framer-oPfB3.framer-v-1f60si7 .framer-ghj0y0 { bottom: -230px; left: -764px; order: 2; right: 764px; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1079\n * @framerIntrinsicWidth 1100\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1100px\",null,null]},\"klBr60rUz\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1100px\",null,null]},\"ti9BkS5Op\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1100px\",null,null]},\"CgK3ETc_K\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1100px\",null,null]},\"oInVqmojl\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1100px\",null,null]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerZkIKg_pLc=withCSS(Component,css,\"framer-oPfB3\");export default FramerZkIKg_pLc;FramerZkIKg_pLc.displayName=\"Many Heads\";FramerZkIKg_pLc.defaultProps={height:1079,width:1100};addPropertyControls(FramerZkIKg_pLc,{variant:{options:[\"XDObntRxp\",\"klBr60rUz\",\"ti9BkS5Op\",\"CgK3ETc_K\",\"oInVqmojl\"],optionTitles:[\"Desktop\",\"Phone\",\"Variant 3\",\"Variant 4\",\"Variant 5\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerZkIKg_pLc,[{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\"}]},...OtherTeamMembersFonts,...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZkIKg_pLc\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"1079\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1100px\\\",null,null]},\\\"klBr60rUz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1100px\\\",null,null]},\\\"ti9BkS5Op\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1100px\\\",null,null]},\\\"CgK3ETc_K\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1100px\\\",null,null]},\\\"oInVqmojl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1100px\\\",null,null]}}}\",\"framerIntrinsicWidth\":\"1100\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ZkIKg_pLc.map", "// Generated by Framer (f73129a)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,ResolveLinks,RichText,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useRouteElementId,useRouter,withCSS,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import GoogleMaps from\"https://framerusercontent.com/modules/Hbc0lxqGSRzFG6uMT9yO/OPmIEDVRw3amYB3GBzWp/GoogleMaps.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/K0mI40rrezffFjPjHAZX/Video.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js\";import MainNavigation from\"#framer/local/canvasComponent/ajN7lRc9W/ajN7lRc9W.js\";import Footer from\"#framer/local/canvasComponent/k2iqWb3yy/k2iqWb3yy.js\";import WorkingGroups from\"#framer/local/canvasComponent/Mq1Y1xYww/Mq1Y1xYww.js\";import ButtonStroke from\"#framer/local/canvasComponent/Nme4nN34Z/Nme4nN34Z.js\";import VideoThumbnail from\"#framer/local/canvasComponent/tGv4e2u2m/tGv4e2u2m.js\";import ManyHeads from\"#framer/local/canvasComponent/ZkIKg_pLc/ZkIKg_pLc.js\";import*as sharedStyle from\"#framer/local/css/Ff8hxeEve/Ff8hxeEve.js\";import*as sharedStyle3 from\"#framer/local/css/HOhOcyaOz/HOhOcyaOz.js\";import*as sharedStyle2 from\"#framer/local/css/lO4em2AOh/lO4em2AOh.js\";import*as sharedStyle1 from\"#framer/local/css/zxuGgC36C/zxuGgC36C.js\";import metadataProvider from\"#framer/local/webPageMetadata/QbdeYBw76/QbdeYBw76.js\";const MainNavigationFonts=getFonts(MainNavigation);const MainNavigationWithVariantAppearEffect=withVariantAppearEffect(MainNavigation);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const ButtonStrokeFonts=getFonts(ButtonStroke);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const VideoFonts=getFonts(Video);const VideoThumbnailFonts=getFonts(VideoThumbnail);const YouTubeFonts=getFonts(YouTube);const WorkingGroupsFonts=getFonts(WorkingGroups);const ManyHeadsFonts=getFonts(ManyHeads);const GoogleMapsFonts=getFonts(GoogleMaps);const FooterFonts=getFonts(Footer);const breakpoints={EcpYqXGjC:\"(max-width: 809px)\",Ld9cKxkCA:\"(min-width: 1200px)\",NnrnhO5Ll:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-DjKUX\";const variantClassNames={EcpYqXGjC:\"framer-v-gmez7r\",Ld9cKxkCA:\"framer-v-cwcw51\",NnrnhO5Ll:\"framer-v-o3yn02\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-150};const animation2={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition2={delay:.3,duration:2,ease:[.44,0,.56,1],type:\"tween\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation4={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"Ld9cKxkCA\",Phone:\"EcpYqXGjC\",Tablet:\"NnrnhO5Ll\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"Ld9cKxkCA\"};};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,...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{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const C4zftOmbP3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const onTap1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const elementId=useRouteElementId(\"FY0FWnIyG\");const ref2=React.useRef(null);const router=useRouter();const isDisplayed=()=>{if(!isBrowser())return true;if([\"NnrnhO5Ll\",\"EcpYqXGjC\"].includes(baseVariant))return false;return true;};const elementId1=useRouteElementId(\"PvwpWMO_3\");const elementId2=useRouteElementId(\"x75jHYJdg\");const ref3=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"Ld9cKxkCA\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(46, 46, 46); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-cwcw51\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:90,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-6au9fs-container\",\"data-framer-appear-id\":\"6au9fs\",\"data-framer-name\":\"Main Navigation\",initial:animation1,layoutScroll:true,name:\"Main Navigation\",nodeId:\"deLA1VNb3\",optimized:true,rendersWithMotion:true,scopeId:\"QbdeYBw76\",style:{transformPerspective:1200},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EcpYqXGjC:{__framer__variantAppearEffectEnabled:undefined,variant:\"MIZc4V0mL\"},NnrnhO5Ll:{__framer__variantAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(MainNavigationWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref1,target:\"ijjzfcB0E\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"deLA1VNb3\",K7ecm0qZ_:true,layoutId:\"deLA1VNb3\",name:\"Main Navigation\",pD_fQ0ukn:\"rgba(36, 36, 36, 0)\",style:{width:\"100%\"},variant:\"nKga7gxJG\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14ctms8\",\"data-framer-name\":\"Spacer\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wo0tv4\",\"data-framer-name\":\"Header banner row\",id:elementId,ref:ref2,children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-1rfe5w1\",\"data-framer-appear-id\":\"1rfe5w1\",\"data-framer-name\":\"Title text\",initial:animation2,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-a0714a73-c570-44c0-bfcc-329c225164fa, rgb(255, 255, 255))\"},children:\"Let's Make together for Justice\"})}),className:\"framer-d5ez8v\",\"data-framer-name\":\"A better way to compile data\",fonts:[\"GF;Plus Jakarta Sans-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-131r84e\",\"data-styles-preset\":\"Ff8hxeEve\",style:{\"--framer-text-alignment\":\"left\"},children:\"Join a vibrant community of innovators and mentors dedicated to transforming the field through AI.\"})}),className:\"framer-x5zdo3\",\"data-framer-name\":\"No more endless spreadsheets or manual work, just easy, accurate insights to help your business thrive\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1m8lodx\",\"data-framer-name\":\"Buttons\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"v7MyQQH53\"},implicitPathVariables:undefined},{href:{webPageId:\"v7MyQQH53\"},implicitPathVariables:undefined},{href:{webPageId:\"v7MyQQH53\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EcpYqXGjC:{y:(componentViewport?.y||0)+0+90+100+0+290+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,y:(componentViewport?.y||0)+0+90+100+0+270+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gw6u8k-container\",nodeId:\"ngPIzOxnz\",scopeId:\"QbdeYBw76\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EcpYqXGjC:{tYYpH2ueZ:resolvedLinks[2]},NnrnhO5Ll:{tYYpH2ueZ:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(ButtonStroke,{height:\"100%\",hF4OstQAV:false,id:\"ngPIzOxnz\",layoutId:\"ngPIzOxnz\",ofLqZhEO8:\"Learn More\",PPM8eZNfR:\"var(--token-a378a457-09c9-4e21-8971-31a4dc6ae8ea, rgb(17, 16, 17))\",tYYpH2ueZ:resolvedLinks[0],variant:\"kM6VwsDXl\",width:\"100%\"})})})})})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-1jhp1b4 hidden-o3yn02 hidden-gmez7r\",\"data-framer-appear-id\":\"1jhp1b4\",\"data-framer-name\":\"Title text\",initial:animation2,optimized:true,style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation3,className:\"framer-17uwa7w\",\"data-framer-appear-id\":\"17uwa7w\",initial:animation4,optimized:true,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+90+-90+0+0),pixelHeight:1080,pixelWidth:1920,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/zQPxGGhXs1pY2YfHt4O2s23Rw.png\",srcSet:\"https://framerusercontent.com/images/zQPxGGhXs1pY2YfHt4O2s23Rw.png?scale-down-to=512 512w,https://framerusercontent.com/images/zQPxGGhXs1pY2YfHt4O2s23Rw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zQPxGGhXs1pY2YfHt4O2s23Rw.png 1920w\"},className:\"framer-1wi8zrp\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1b6az3o\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-14k9arg\"})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wdv3i5-container\",isModuleExternal:true,nodeId:\"ns3HCgQFt\",scopeId:\"QbdeYBw76\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"ns3HCgQFt\",isMixedBorderRadius:false,layoutId:\"ns3HCgQFt\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcType:\"URL\",srcUrl:\"https://onmain.blr1.cdn.digitaloceanspaces.com/mainsite/residency-hero-opt.webm\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1abnkhe\",\"data-framer-name\":\"Our Stacks\",id:elementId1,ref:ref1,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1byxdpv\",\"data-framer-name\":\"Jugalbandi Product Video\",id:elementId2,ref:ref3,children:/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EcpYqXGjC:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 20px, 1280px) - 32px)`,y:(componentViewport?.y||0)+0+635+15+0+100+0},NnrnhO5Ll:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 40px, 1280px) - 200px)`,y:(componentViewport?.y||0)+0+645+50+0+100+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:500,width:`calc(min(${componentViewport?.width||\"100vw\"} - 100px, 1280px) - 200px)`,y:(componentViewport?.y||0)+0+615+50+0+100+0,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-10x4qon-container\",id:\"10x4qon\",nodeId:\"G9Tz__o9W\",scopeId:\"QbdeYBw76\",children:[/*#__PURE__*/_jsx(VideoThumbnail,{C4zftOmbP:C4zftOmbP3bnx0g({overlay}),eJBaFgKBr:\"A look at Maker Residency 2023 with TinkerHub\",height:\"100%\",id:\"G9Tz__o9W\",layoutId:\"G9Tz__o9W\",LSaZBQ07M:\"https://onmain.blr1.cdn.digitaloceanspaces.com/mainsite/residency-hero-opt.webm\",msd7GHaeB:26.5,style:{width:\"100%\"},variant:\"HcxSgL6F3\",width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-bdeu8r\"),\"data-framer-portal-id\":\"10x4qon\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"pKsmxpfDW\"),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:128,intrinsicWidth:128,pixelHeight:256,pixelWidth:256,src:\"https://framerusercontent.com/images/UUoYh2OY9gGnwCPBQV879q46aA.png\"},className:cx(scopingClassNames,\"framer-x5qpgf\"),\"data-framer-name\":\"Close_icon\",\"data-framer-portal-id\":\"10x4qon\",onTap:onTap1wnntms({overlay})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NnrnhO5Ll:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtYm9sZA==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a0714a73-c570-44c0-bfcc-329c225164fa, rgb(255, 255, 255))\"},children:\"A look at Maker Residency 2023 with TinkerHub\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtYm9sZA==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a0714a73-c570-44c0-bfcc-329c225164fa, rgb(255, 255, 255))\"},children:\"A look at Maker Residency 2023 with TinkerHub\"})}),className:cx(scopingClassNames,\"framer-gkc50h\"),\"data-framer-portal-id\":\"10x4qon\",fonts:[\"FS;Plus Jakarta Sans-bold\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-492idv-container\"),\"data-framer-portal-id\":\"10x4qon\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Xi42kdmCN\",rendersWithMotion:true,scopeId:\"QbdeYBw76\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:15,bottomLeftRadius:15,bottomRightRadius:15,height:\"100%\",id:\"Xi42kdmCN\",isMixedBorderRadius:false,isRed:false,layoutId:\"Xi42kdmCN\",play:\"On\",shouldMute:false,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:15,topRightRadius:15,url:\"https://www.youtube.com/watch?v=HIEHj-Dq5iE\",width:\"100%\"})})})]}),getContainer())})})]})})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1d9y8yi\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fx4mpw\",\"data-framer-name\":\"What is the Maker Residency\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-p9dnw8\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14xshpz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1x5cubp\",\"data-styles-preset\":\"zxuGgC36C\",children:\"WHAT IS THE MAKER RESIDENCY\"})}),className:\"framer-hn3ymf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11v6csq\"})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-149dmtx\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1ovf5wl\",\"data-styles-preset\":\"lO4em2AOh\",children:\"In a Maker Residency, participants explore the current system and envision new possibilities. Ideas  are collaboratively built and embody innovative design principles that enhance citizen participation and  quality of service.\"})}),className:\"framer-1kfyfh9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-ymjcgy\",\"data-styles-preset\":\"HOhOcyaOz\",style:{\"--framer-text-color\":\"var(--token-ad530662-7fd6-4b53-a961-9c077c5d1220, rgb(132, 148, 165))\"},children:\"The OpenNyAI Maker Residency 2024 is a two week long online sprint that culminates in a four-day offline event in Kochi. All participants circle around a single problem statement and explore multiple pathways to scaling access to justice.\"})}),className:\"framer-xmftjo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1d8u0gr\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zau7ki\",\"data-framer-name\":\"Problem Statement\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-411d5k\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gcuzyc\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1x5cubp\",\"data-styles-preset\":\"zxuGgC36C\",children:\"PROBLEM STATEMENT\"})}),className:\"framer-7laumr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wels6c\"})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1prv5n8\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1ovf5wl\",\"data-styles-preset\":\"lO4em2AOh\",children:\"How might we unlock the effectiveness and reach of paralegals & legal professionals to scale access to justice for every citizen?\"})}),className:\"framer-ecc1ce\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kq4xrs\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EcpYqXGjC:{y:(componentViewport?.y||0)+0+1893+0+0},NnrnhO5Ll:{y:(componentViewport?.y||0)+0+1836.4+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:418,width:`min(${componentViewport?.width||\"100vw\"}, 1100px)`,y:(componentViewport?.y||0)+0+2206.4+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-11g8dbk-container\",nodeId:\"tUS4Nbblf\",scopeId:\"QbdeYBw76\",children:/*#__PURE__*/_jsx(WorkingGroups,{height:\"100%\",id:\"tUS4Nbblf\",layoutId:\"tUS4Nbblf\",style:{width:\"100%\"},variant:\"FMdJqJuq2\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1usoapg\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-z1zkz6\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EcpYqXGjC:{y:(componentViewport?.y||0)+0+2312+0+0},NnrnhO5Ll:{y:(componentViewport?.y||0)+0+2255.4+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1079,width:`min(${componentViewport?.width||\"100vw\"}, 1100px)`,y:(componentViewport?.y||0)+0+2625.4+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1adnmh7-container\",nodeId:\"QBRWxjust\",scopeId:\"QbdeYBw76\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EcpYqXGjC:{variant:\"klBr60rUz\"}},children:/*#__PURE__*/_jsx(ManyHeads,{height:\"100%\",id:\"QBRWxjust\",layoutId:\"QBRWxjust\",style:{width:\"100%\"},variant:\"ti9BkS5Op\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6rme12\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-j4t75m\",\"data-framer-name\":\"Problem Statement\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-llnhvw\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-cumk1j\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ma9hzx\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1x5cubp\",\"data-styles-preset\":\"zxuGgC36C\",children:\"DETAILS\"})}),className:\"framer-1tvskz7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-jpbae8\"})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zjmrry\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-131r84e\",\"data-styles-preset\":\"Ff8hxeEve\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Dates: \",/*#__PURE__*/_jsxs(\"span\",{style:{\"--framer-text-color\":\"var(--token-a0714a73-c570-44c0-bfcc-329c225164fa, rgb(255, 255, 255))\"},children:[\"September 26-29, 2024 (Residential)\",/*#__PURE__*/_jsx(\"br\",{})]})]})}),className:\"framer-iesrg6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-131r84e\",\"data-styles-preset\":\"Ff8hxeEve\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Location: \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-a0714a73-c570-44c0-bfcc-329c225164fa, rgb(255, 255, 255))\"},children:\"TinkerSpace, Kochi\"})]})}),className:\"framer-bxb0pi\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-131r84e\",\"data-styles-preset\":\"Ff8hxeEve\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Participation: \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-a0714a73-c570-44c0-bfcc-329c225164fa, rgb(255, 255, 255))\"},children:\"Invite-only\"})]})}),className:\"framer-fp2f2h\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-crmq2o\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ydklp5-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"qMfQHXfpr\",scopeId:\"QbdeYBw76\",children:/*#__PURE__*/_jsx(GoogleMaps,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,coordinates:\"10.04703810603008, 76.33520322718242\",height:\"100%\",id:\"qMfQHXfpr\",isMixedBorderRadius:false,layoutId:\"qMfQHXfpr\",style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,width:\"100%\",zoom:18})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fksska\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EcpYqXGjC:{y:(componentViewport?.y||0)+0+4091.2+0},NnrnhO5Ll:{y:(componentViewport?.y||0)+0+3835.4+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:436,width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+4405.4+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1efxxzc-container\",nodeId:\"Abwq5hme8\",scopeId:\"QbdeYBw76\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EcpYqXGjC:{variant:\"uwm4Dftxt\"},NnrnhO5Ll:{variant:\"t6kSsTO4o\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"Abwq5hme8\",layoutId:\"Abwq5hme8\",style:{width:\"100%\"},variant:\"xf3UcUiht\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-DjKUX.framer-d4y5cj, .framer-DjKUX .framer-d4y5cj { display: block; }\",\".framer-DjKUX.framer-cwcw51 { align-content: center; align-items: center; background-color: #2e2e2e; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-DjKUX .framer-6au9fs-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 5; }\",\".framer-DjKUX .framer-14ctms8 { flex: none; height: 90px; overflow: hidden; position: relative; width: 100%; }\",\".framer-DjKUX .framer-1wo0tv4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; padding: 100px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-DjKUX .framer-1rfe5w1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 500px; will-change: var(--framer-will-change-effect-override, transform); z-index: 3; }\",\".framer-DjKUX .framer-d5ez8v { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-DjKUX .framer-x5zdo3 { flex: none; height: auto; max-width: 600px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-DjKUX .framer-1m8lodx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-DjKUX .framer-1gw6u8k-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-DjKUX .framer-1jhp1b4 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; min-height: 500px; overflow: hidden; padding: 0px; position: relative; width: 500px; will-change: var(--framer-will-change-effect-override, transform); z-index: 3; }\",\".framer-DjKUX .framer-17uwa7w { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; right: 0px; top: -90px; will-change: var(--framer-will-change-effect-override, transform); z-index: 2; }\",\".framer-DjKUX .framer-1wi8zrp { flex: 1 0 0px; height: 1px; position: relative; width: 100%; z-index: 0; }\",\".framer-DjKUX .framer-1b6az3o { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 80px; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; right: 0px; z-index: 2; }\",\".framer-DjKUX .framer-14k9arg { background: linear-gradient(180deg, rgba(46, 46, 46, 0) 0%, var(--token-ee408abb-37c6-4710-9a13-ea59982a6967, rgb(46, 46, 46)) 100%); flex: 1 0 0px; height: 1px; position: relative; width: 100%; z-index: 0; }\",\".framer-DjKUX .framer-1wdv3i5-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: -90px; z-index: 1; }\",\".framer-DjKUX .framer-1abnkhe { align-content: center; align-items: center; background-color: #2e2e2e; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 50px; position: relative; width: 100%; }\",\".framer-DjKUX .framer-1byxdpv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 45px; height: min-content; justify-content: center; max-width: 1280px; overflow: visible; padding: 100px; position: relative; width: 100%; }\",\".framer-DjKUX .framer-10x4qon-container, .framer-DjKUX .framer-11g8dbk-container, .framer-DjKUX .framer-1adnmh7-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-DjKUX.framer-bdeu8r { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 10; }\",\".framer-DjKUX.framer-x5qpgf { aspect-ratio: 1 / 1; cursor: pointer; flex: none; height: var(--framer-aspect-ratio-supported, 32px); overflow: visible; position: fixed; right: 50px; top: 50px; width: 32px; z-index: 10; }\",\".framer-DjKUX.framer-gkc50h { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 50%; max-width: 60%; position: fixed; top: 50px; transform: translateX(-50%); white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; z-index: 10; }\",\".framer-DjKUX.framer-492idv-container { bottom: 150px; flex: none; left: 150px; position: fixed; right: 150px; top: 150px; z-index: 10; }\",\".framer-DjKUX .framer-1d9y8yi, .framer-DjKUX .framer-1d8u0gr, .framer-DjKUX .framer-1usoapg, .framer-DjKUX .framer-6rme12 { background-color: var(--token-5d3dbe0f-787d-4884-bd3d-f47ef2adf8e1, #454545); flex: none; height: 1px; max-width: 1100px; overflow: hidden; position: relative; width: 100%; }\",\".framer-DjKUX .framer-fx4mpw, .framer-DjKUX .framer-zau7ki, .framer-DjKUX .framer-j4t75m { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 1100px; overflow: hidden; padding: 150px 0px 150px 0px; position: relative; width: 100%; }\",\".framer-DjKUX .framer-p9dnw8, .framer-DjKUX .framer-411d5k, .framer-DjKUX .framer-llnhvw { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 20px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-DjKUX .framer-14xshpz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-DjKUX .framer-hn3ymf, .framer-DjKUX .framer-1kfyfh9, .framer-DjKUX .framer-xmftjo, .framer-DjKUX .framer-ecc1ce { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-DjKUX .framer-11v6csq, .framer-DjKUX .framer-jpbae8 { background-color: var(--token-09e6c8e4-a1a1-4bdc-a735-fa251842ad37, #93d9bc); flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-DjKUX .framer-149dmtx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; max-width: 80%; overflow: hidden; padding: 0px 0px 0px 20px; position: relative; width: 80%; }\",\".framer-DjKUX .framer-gcuzyc, .framer-DjKUX .framer-cumk1j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-DjKUX .framer-7laumr, .framer-DjKUX .framer-1tvskz7, .framer-DjKUX .framer-iesrg6, .framer-DjKUX .framer-bxb0pi, .framer-DjKUX .framer-fp2f2h { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-DjKUX .framer-1wels6c { align-self: stretch; background-color: var(--token-09e6c8e4-a1a1-4bdc-a735-fa251842ad37, #93d9bc); flex: none; height: 1px; overflow: hidden; position: relative; width: auto; }\",\".framer-DjKUX .framer-1prv5n8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 80%; overflow: hidden; padding: 0px 0px 0px 20px; position: relative; width: 80%; }\",\".framer-DjKUX .framer-1kq4xrs, .framer-DjKUX .framer-z1zkz6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1100px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-DjKUX .framer-ma9hzx { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: auto; }\",\".framer-DjKUX .framer-zjmrry { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: center; overflow: hidden; padding: 30px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-DjKUX .framer-crmq2o { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 400px; justify-content: center; max-width: 80%; overflow: hidden; padding: 0px; position: relative; width: 50%; will-change: var(--framer-will-change-override, transform); }\",\".framer-DjKUX .framer-ydklp5-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-DjKUX .framer-1fksska { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-DjKUX .framer-1efxxzc-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,\"@media (min-width: 810px) and (max-width: 1199px) { .framer-DjKUX.framer-cwcw51 { width: 810px; } .framer-DjKUX .framer-1wo0tv4 { padding: 100px 20px 100px 20px; } .framer-DjKUX .framer-1rfe5w1 { flex: 1 0 0px; padding: 0px 60px 30px 60px; width: 1px; } .framer-DjKUX .framer-1abnkhe, .framer-DjKUX .framer-fx4mpw, .framer-DjKUX .framer-zau7ki, .framer-DjKUX .framer-j4t75m { padding: 50px 20px 50px 20px; } .framer-DjKUX .framer-149dmtx, .framer-DjKUX .framer-1prv5n8, .framer-DjKUX .framer-crmq2o { width: 70%; }}\",\"@media (max-width: 809px) { .framer-DjKUX.framer-cwcw51 { width: 390px; } .framer-DjKUX .framer-6au9fs-container { z-index: 10; } .framer-DjKUX .framer-1wo0tv4 { padding: 100px 10px 100px 10px; } .framer-DjKUX .framer-1rfe5w1 { flex: 1 0 0px; gap: 40px; max-width: 450px; width: 1px; } .framer-DjKUX .framer-1abnkhe { padding: 15px 10px 15px 10px; } .framer-DjKUX .framer-1byxdpv { padding: 100px 16px 100px 16px; } .framer-DjKUX .framer-fx4mpw, .framer-DjKUX .framer-zau7ki, .framer-DjKUX .framer-j4t75m { flex-direction: column; padding: 50px 20px 50px 20px; } .framer-DjKUX .framer-p9dnw8 { flex: none; width: min-content; } .framer-DjKUX .framer-14xshpz { align-content: flex-start; align-items: flex-start; width: min-content; } .framer-DjKUX .framer-hn3ymf { white-space: pre; width: auto; } .framer-DjKUX .framer-11v6csq { align-self: stretch; width: auto; } .framer-DjKUX .framer-149dmtx, .framer-DjKUX .framer-1prv5n8, .framer-DjKUX .framer-crmq2o { max-width: unset; width: 100%; } .framer-DjKUX .framer-411d5k, .framer-DjKUX .framer-llnhvw { flex: none; width: 100%; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5081\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"NnrnhO5Ll\":{\"layout\":[\"fixed\",\"auto\"]},\"EcpYqXGjC\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"FY0FWnIyG\":{\"pattern\":\":FY0FWnIyG\",\"name\":\"first-hero-top\"},\"PvwpWMO_3\":{\"pattern\":\":PvwpWMO_3\",\"name\":\"our-stacks\"},\"x75jHYJdg\":{\"pattern\":\":x75jHYJdg\",\"name\":\"jb-video\"}}\n * @framerResponsiveScreen\n */const FramerQbdeYBw76=withCSS(Component,css,\"framer-DjKUX\");export default FramerQbdeYBw76;FramerQbdeYBw76.displayName=\"Home\";FramerQbdeYBw76.defaultProps={height:5081,width:1200};addFonts(FramerQbdeYBw76,[{explicitInter:true,fonts:[{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_TknNTxXUEKi4Rw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Plus Jakarta Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/AJVGEOXGB2ALQKAZEK2LDOLCVBCMCOIT/LDEP4R7SNNABDEG433DCQGM2A7YCBHLU/OWABOLGBAKFVLPZ756IYS6EKYKU54K3I.woff2\",weight:\"700\"}]},...MainNavigationFonts,...ButtonStrokeFonts,...VideoFonts,...VideoThumbnailFonts,...YouTubeFonts,...WorkingGroupsFonts,...ManyHeadsFonts,...GoogleMapsFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerQbdeYBw76\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NnrnhO5Ll\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"EcpYqXGjC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerScrollSections\":\"{\\\"FY0FWnIyG\\\":{\\\"pattern\\\":\\\":FY0FWnIyG\\\",\\\"name\\\":\\\"first-hero-top\\\"},\\\"PvwpWMO_3\\\":{\\\"pattern\\\":\\\":PvwpWMO_3\\\",\\\"name\\\":\\\"our-stacks\\\"},\\\"x75jHYJdg\\\":{\\\"pattern\\\":\\\":x75jHYJdg\\\",\\\"name\\\":\\\"jb-video\\\"}}\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerComponentViewportWidth\":\"true\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicHeight\":\"5081\",\"framerImmutableVariables\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["coordinatesRegex", "GoogleMaps", "coordinates", "zoom", "style", "props", "borderRadius", "useRadius", "latitude1", "longitude1", "se", "ref", "latitude", "longitude", "p", "motion", "containerStyles", "addPropertyControls", "ControlType", "borderRadiusControl", "PlayOptions", "ThumbnailOptions", "ThumbnailFormat", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "title", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "searchParams", "iframeProps", "u", "wrapperStyle", "videoStyle", "getThumbnailURL", "getWebPSupported", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "res", "format", "useWebP", "pre", "ext", "_getWebPSupported", "window", "element", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "OtherTeamMembersFonts", "getFonts", "P4r9YDXMv_default", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "addImageAlt", "image", "alt", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "enabledGestures", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1s8muws", "args", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "serializationHash", "addPropertyOverrides", "Image2", "getLoadingLazyAtYPosition", "RichText", "ComponentViewportProvider", "P4r9YDXMv_default", "css", "Framerfd5LFi_i7", "withCSS", "fd5LFi_i7_default", "addPropertyControls", "ControlType", "addFonts", "OtherTeamMembersFonts", "MotionDivWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "motion", "RichTextWithFXWithOptimizedAppearEffect", "RichText", "PhosphorFonts", "getFonts", "Icon", "FacePileFonts", "fd5LFi_i7_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "animation1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1mtg6el", "args", "onTap10v9q9g", "onTap1bzsdwr", "onTap1jnd4dl", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerMq1Y1xYww", "withCSS", "Mq1Y1xYww_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "OtherTeamMembersFonts", "getFonts", "P4r9YDXMv_default", "PhosphorFonts", "Icon", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "addImageAlt", "image", "alt", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1xy0d52", "args", "onTap1tx1161", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "u", "RichText", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerZkIKg_pLc", "withCSS", "ZkIKg_pLc_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "MainNavigationFonts", "getFonts", "ajN7lRc9W_default", "MainNavigationWithVariantAppearEffect", "withVariantAppearEffect", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "ButtonStrokeFonts", "Nme4nN34Z_default", "MotionDivWithOptimizedAppearEffect", "motion", "VideoFonts", "Video", "VideoThumbnailFonts", "tGv4e2u2m_default", "YouTubeFonts", "Youtube", "WorkingGroupsFonts", "Mq1Y1xYww_default", "ManyHeadsFonts", "ZkIKg_pLc_default", "GoogleMapsFonts", "GoogleMaps", "FooterFonts", "k2iqWb3yy_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "transition1", "animation", "animation1", "animation2", "transition2", "animation3", "animation4", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "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", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "C4zftOmbP3bnx0g", "overlay", "loadMore", "args", "onTap1wnntms", "scopingClassNames", "cx", "ref1", "elementId", "useRouteElementId", "ref2", "router", "useRouter", "isDisplayed", "elementId1", "elementId2", "ref3", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "PropertyOverrides2", "RichText", "x", "ResolveLinks", "resolvedLinks", "Image2", "getLoadingLazyAtYPosition", "l", "AnimatePresence", "Ga", "css", "FramerQbdeYBw76", "withCSS", "QbdeYBw76_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
