{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/DDzyuYPF56TuI0bfUu2z/YouTube.js", "ssg:https://framerusercontent.com/modules/da6nJ6pvvQdCja6pWCRc/fVt1zkw8CirG8fqsoOFy/fsDUy6ntw.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}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={}));/**\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,originalSearchParams]=parsedURL;const searchParams=embedURL.searchParams;if(originalSearchParams){for(const[param,value]of originalSearchParams){searchParams.set(param,value);}}// https://developers.google.com/youtube/player_parameters\nsearchParams.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\"}),showThumbnail&&/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://i.ytimg.com\"}),/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",src:getThumbnailURL(videoId,thumbnail),style:{...videoStyle,objectFit:\"cover\"}})]}),!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,null];}const searchParams=url.searchParams;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(\"/\");const page=pathSegments[0];// https://www.youtube.com/watch?v=Fop2oskTug8\nif(page===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL=getEmbedURL(videoId);return[videoId,embedURL,searchParams];}// https://www.youtube.com/embed/Fop2oskTug8\nif(page===\"embed\"){const videoId=pathSegments[1];return[videoId,url,searchParams];}// https://www.youtube.com/shorts/zwMEhBq4kYM / https://www.youtube.com/live/XlWSzaluBKk\nif(page===\"shorts\"||page===\"live\"){const videoId=pathSegments[1];const embedURL=getEmbedURL(videoId);return[videoId,embedURL,searchParams];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId=url.pathname.slice(1);const embedURL=getEmbedURL(videoId);return[videoId,embedURL,searchParams];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst pre=\"https://i.ytimg.com/vi_webp/\";const ext=\"webp\";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}`;}}// 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\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"315\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"560\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "// Generated by Framer (55cf326)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/DDzyuYPF56TuI0bfUu2z/YouTube.js\";import PreFooterMax from\"#framer/local/canvasComponent/C0IpvumlD/C0IpvumlD.js\";import FooterFooter from\"#framer/local/canvasComponent/isbQ1dVh6/isbQ1dVh6.js\";import NavigationNavBar from\"#framer/local/canvasComponent/wCqByi1N4/wCqByi1N4.js\";import*as sharedStyle1 from\"#framer/local/css/wswhY1Fkb/wswhY1Fkb.js\";import*as sharedStyle from\"#framer/local/css/Z4iWmXDK7/Z4iWmXDK7.js\";import metadataProvider from\"#framer/local/webPageMetadata/fsDUy6ntw/fsDUy6ntw.js\";const NavigationNavBarFonts=getFonts(NavigationNavBar);const YouTubeFonts=getFonts(YouTube);const PreFooterMaxFonts=getFonts(PreFooterMax);const FooterFooterFonts=getFonts(FooterFooter);const breakpoints={aD5s488Z3:\"(min-width: 1240px) and (max-width: 1439px)\",DsVyc8Tok:\"(min-width: 1170px) and (max-width: 1239px)\",o_st3aWPt:\"(min-width: 1440px)\",Smq2kg9vm:\"(max-width: 839px)\",VVy_R0jVR:\"(min-width: 840px) and (max-width: 1169px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-IhaDM\";const variantClassNames={aD5s488Z3:\"framer-v-2c3fq2\",DsVyc8Tok:\"framer-v-1nqbf4r\",o_st3aWPt:\"framer-v-p1o1wn\",Smq2kg9vm:\"framer-v-z53737\",VVy_R0jVR:\"framer-v-1vpsoxf\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desk 1170\":\"DsVyc8Tok\",\"Desktop 1240 \":\"aD5s488Z3\",\"Primary 1440\":\"o_st3aWPt\",Phone:\"Smq2kg9vm\",Tablet:\"VVy_R0jVR\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"o_st3aWPt\"};};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 sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"XTYRaIm6V\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"UCb1DxUda\");const ref2=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"o_st3aWPt\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-fb6c8703-e1a2-493a-80de-3b910374b71f, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-p1o1wn\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:95,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-uzq9es-container\",id:elementId,layoutScroll:true,nodeId:\"XTYRaIm6V\",ref:ref1,scopeId:\"fsDUy6ntw\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Smq2kg9vm:{variant:\"kOlAieY5P\"},VVy_R0jVR:{variant:\"jPx8MXWjA\"}},children:/*#__PURE__*/_jsx(NavigationNavBar,{height:\"100%\",iC938cU_8:\"rgb(255, 255, 255)\",id:\"XTYRaIm6V\",layoutId:\"XTYRaIm6V\",style:{width:\"100%\"},variant:\"fLV7uDbVY\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-pljsys\"}),/*#__PURE__*/_jsx(\"main\",{className:\"framer-7jri7a\",\"data-framer-name\":\"Main\",children:/*#__PURE__*/_jsxs(\"section\",{className:\"framer-tqnaib\",\"data-framer-name\":\"Hero\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-v78a91\",\"data-framer-name\":\"background\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Smq2kg9vm:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+95+0+0+0+0),pixelHeight:839,pixelWidth:1600,positionX:\"right\",positionY:\"bottom\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/iYnnI4Rq121I0KH6f1lPCWQFBM.jpeg\",srcSet:\"https://framerusercontent.com/images/iYnnI4Rq121I0KH6f1lPCWQFBM.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/iYnnI4Rq121I0KH6f1lPCWQFBM.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/iYnnI4Rq121I0KH6f1lPCWQFBM.jpeg 1600w\"}},VVy_R0jVR:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+158+0+0+0+0),pixelHeight:404,pixelWidth:1024,positionX:\"center\",positionY:\"bottom\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/g7nQMLwOM3F143hMrkVYwkUTI.jpg\",srcSet:\"https://framerusercontent.com/images/g7nQMLwOM3F143hMrkVYwkUTI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/g7nQMLwOM3F143hMrkVYwkUTI.jpg 1024w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+95+0+0+0+0),pixelHeight:404,pixelWidth:1024,positionX:\"center\",positionY:\"bottom\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/g7nQMLwOM3F143hMrkVYwkUTI.jpg\",srcSet:\"https://framerusercontent.com/images/g7nQMLwOM3F143hMrkVYwkUTI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/g7nQMLwOM3F143hMrkVYwkUTI.jpg 1024w\"},className:\"framer-pnnkv7\",\"data-framer-name\":\"Copy of IMG_1938 1\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-dxwjo7\",\"data-framer-name\":\"Rectangle 20\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-e6hpt9\",\"data-framer-name\":\"Rectangle 25\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ej9m09\",\"data-framer-name\":\"container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-mybp2c\",\"data-framer-name\":\"grid max-width\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-gkw5gu\",\"data-framer-name\":\"heading\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sux7cj\",\"data-framer-name\":\"Frame 2088\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Smq2kg9vm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7QmViYXMgTmV1ZS1yZWd1bGFy\",\"--framer-font-family\":'\"Bebas Neue\", \"Bebas Neue Placeholder\", sans-serif',\"--framer-font-size\":\"55px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Tech4Aid\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7QmViYXMgTmV1ZS1yZWd1bGFy\",\"--framer-font-family\":'\"Bebas Neue\", \"Bebas Neue Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Tech4Aid\"})}),className:\"framer-8245af\",\"data-framer-name\":\"Empowering Communities\",fonts:[\"FS;Bebas Neue-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Smq2kg9vm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvIENvbmRlbnNlZC1yZWd1bGFy\",\"--framer-font-family\":'\"Roboto Condensed\", \"Roboto Condensed Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Drone, in the disaster response sector\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvIENvbmRlbnNlZC1yZWd1bGFy\",\"--framer-font-family\":'\"Roboto Condensed\", \"Roboto Condensed Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Drone, in the disaster response sector\"})}),className:\"framer-j5jw69\",\"data-framer-name\":\"Empowering Communities\",fonts:[\"GF;Roboto Condensed-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12iwt6n\",\"data-framer-name\":\"Drone Intro\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-t7cmr0\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8ubaba\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1nopokr\",\"data-styles-preset\":\"Z4iWmXDK7\",style:{\"--framer-text-color\":\"var(--token-5f07c49c-cabb-487f-b598-70919afb1f9a, rgb(40, 117, 117))\"},children:\"Drones for Disaster Relief\"})}),className:\"framer-v3k7x1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-nwmnvn\",\"data-styles-preset\":\"wswhY1Fkb\",children:\"Drone, in the disaster response sector, has recently emerged as a force multiplier in enhancing the outreach of humanitarian responders during pre-disaster and post-disaster.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-nwmnvn\",\"data-styles-preset\":\"wswhY1Fkb\",children:\"Post-COVID-19 era, multi-hazard risk handling capacity is increasingly becoming complex, drone along with associated technologies come with multifarious applications like surveillance, public awareness, COVID-19 tracking and tracing, logistics delivery, PDNA, ambulance service etc.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-nwmnvn\",\"data-styles-preset\":\"wswhY1Fkb\",children:\"Humanitarian Aid International (HAI) was at the forefront of responding live to disasters from Cyclone Fani in Odisha (2019), Bihar Floods (2019) Cyclone Amphan (2020) (West Bengal) Jaipur floods, Odisha (2020) to ongoing Covid19 response. HAI efforts resulted in setting up a collaborative platform Tech4Aid for innovative and wide-ranging usage of drones in disaster management.\"})]}),className:\"framer-1a124gv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jc5mmv\",\"data-framer-name\":\"4 Points\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvIENvbmRlbnNlZC1yZWd1bGFy\",\"--framer-font-family\":'\"Roboto Condensed\", \"Roboto Condensed Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-5f07c49c-cabb-487f-b598-70919afb1f9a, rgb(40, 117, 117))\"},children:\"Tech4Aid conceptualised and launched in 2019, having prominent techno-humanitarian actors as members, is an attempt in that direction. Tech4Aid has been envisaged with the following four features:\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvIENvbmRlbnNlZC1yZWd1bGFy\",\"--framer-font-family\":'\"Roboto Condensed\", \"Roboto Condensed Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-line-height\":\"140%\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-7k0c7z\",fonts:[\"GF;Roboto Condensed-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w0y0dj\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-jjxa6b\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-151ai0q\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7QmViYXMgTmV1ZS1yZWd1bGFy\",\"--framer-font-family\":'\"Bebas Neue\", \"Bebas Neue Placeholder\", sans-serif',\"--framer-font-size\":\"30px\"},children:\"Post-disaster damage & loss assessment\"})}),className:\"framer-1v39zdt\",fonts:[\"FS;Bebas Neue-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-nwmnvn\",\"data-styles-preset\":\"wswhY1Fkb\",children:\"High-resolution drone mapping for swift and accurate assessment of disaster impact.\"})}),className:\"framer-r7t0o5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ymdc67\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19f240s\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7QmViYXMgTmV1ZS1yZWd1bGFy\",\"--framer-font-family\":'\"Bebas Neue\", \"Bebas Neue Placeholder\", sans-serif',\"--framer-font-size\":\"30px\"},children:\"Search & rescue support to disaster response forces (both humans and animals)\"})}),className:\"framer-1ex01ff\",fonts:[\"FS;Bebas Neue-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-nwmnvn\",\"data-styles-preset\":\"wswhY1Fkb\",children:\"Drone surveillance aids rapid search and rescue operations in hard-to-reach zones.\"})}),className:\"framer-ot1eg5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-lv0jl0\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gnlqkf\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7QmViYXMgTmV1ZS1yZWd1bGFy\",\"--framer-font-family\":'\"Bebas Neue\", \"Bebas Neue Placeholder\", sans-serif',\"--framer-font-size\":\"30px\"},children:\"Airdropping of lifesaving aid\"})}),className:\"framer-1cqm8d1\",fonts:[\"FS;Bebas Neue-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-nwmnvn\",\"data-styles-preset\":\"wswhY1Fkb\",children:\"Targeted aerial delivery of essential supplies to stranded or inaccessible communities.\"})}),className:\"framer-1in7j83\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1a4o8ws\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19ku42w\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7QmViYXMgTmV1ZS1yZWd1bGFy\",\"--framer-font-family\":'\"Bebas Neue\", \"Bebas Neue Placeholder\", sans-serif',\"--framer-font-size\":\"30px\"},children:\"Digital mapping of vulnerable zones\"})}),className:\"framer-4dfjbh\",fonts:[\"FS;Bebas Neue-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-nwmnvn\",\"data-styles-preset\":\"wswhY1Fkb\",children:\"Real-time mapping to identify, monitor, and plan interventions in high-risk areas.\"})}),className:\"framer-1mmeger\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-eumq0d\",\"data-framer-name\":\"Intro\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1c5y4bb\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dstt2w\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1nopokr\",\"data-styles-preset\":\"Z4iWmXDK7\",style:{\"--framer-text-color\":\"var(--token-5f07c49c-cabb-487f-b598-70919afb1f9a, rgb(40, 117, 117))\"},children:\"Activities and achievements of HAI\u2019s Tech4Aid platform\"})}),className:\"framer-abaniq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-nwmnvn\",\"data-styles-preset\":\"wswhY1Fkb\",children:\"One multi-stakeholder workshop was conducted in Bhubaneshwar in August 2019 where the concept of Tech4Aid and findings of the first pilot drone-based PDNA were shared and developed. Participants included humanitarian aid workers, technology professionals specialised in UAV applications, the govt. and knowledge institutions.\"})}),className:\"framer-1td123b\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1klqq2g\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-15nsuzx\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Drone-based PDNAs\"})}),className:\"framer-h4lah6\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-vd6x4c\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"COVID Response\"})}),className:\"framer-1s6avon\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vc8hif\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Drone pilot training\"})}),className:\"framer-vk1qxk\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Smq2kg9vm:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2937+80+0),pixelHeight:512,pixelWidth:1024,sizes:`min(${componentViewport?.width||\"100vw\"}, 1600px)`,src:\"https://framerusercontent.com/images/NmKz4671kAqkM9t8u9ZlwTkGzM.jpg\",srcSet:\"https://framerusercontent.com/images/NmKz4671kAqkM9t8u9ZlwTkGzM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/NmKz4671kAqkM9t8u9ZlwTkGzM.jpg 1024w\"}},VVy_R0jVR:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1738+80),pixelHeight:512,pixelWidth:1024,sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1600px) / 2, 1px)`,src:\"https://framerusercontent.com/images/NmKz4671kAqkM9t8u9ZlwTkGzM.jpg\",srcSet:\"https://framerusercontent.com/images/NmKz4671kAqkM9t8u9ZlwTkGzM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/NmKz4671kAqkM9t8u9ZlwTkGzM.jpg 1024w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1575+80),pixelHeight:512,pixelWidth:1024,sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1600px) / 2, 1px)`,src:\"https://framerusercontent.com/images/NmKz4671kAqkM9t8u9ZlwTkGzM.jpg\",srcSet:\"https://framerusercontent.com/images/NmKz4671kAqkM9t8u9ZlwTkGzM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/NmKz4671kAqkM9t8u9ZlwTkGzM.jpg 1024w\"},className:\"framer-22aar4\",\"data-framer-name\":\"Image\"})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1r2uik9\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1nopokr\",\"data-styles-preset\":\"Z4iWmXDK7\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-5f07c49c-cabb-487f-b598-70919afb1f9a, rgb(40, 117, 117))\"},children:\"Drone-based PDNAs\"})}),className:\"framer-1yhytht\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sm0sn2\",\"data-framer-name\":\"Bihar\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-7rzk5u\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-vseked-container\",isModuleExternal:true,nodeId:\"Ld5E3hikg\",scopeId:\"fsDUy6ntw\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:20,bottomLeftRadius:20,bottomRightRadius:20,height:\"100%\",id:\"Ld5E3hikg\",isMixedBorderRadius:false,isRed:true,layoutId:\"Ld5E3hikg\",play:\"On\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:20,topRightRadius:20,url:\"https://www.youtube.com/watch?v=t5-7xDU769I\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hwbtwg\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8t0m8m\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1nopokr\",\"data-styles-preset\":\"Z4iWmXDK7\",style:{\"--framer-text-color\":\"var(--token-5f07c49c-cabb-487f-b598-70919afb1f9a, rgb(40, 117, 117))\"},children:\"Bihar Pilot\"})}),className:\"framer-15t424b\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-nwmnvn\",\"data-styles-preset\":\"wswhY1Fkb\",children:[\"Drone-based mapping of the disaster-affected area was undertaken in Bhagalpur district for Caritas India in the aftermath of the floods in September 2019. The drone footage was live-streamed to inform stakeholders for real-time response. The concept of live UAV-based mapping as a decision support system was introduced. A short video can be viewed\\xa0here,\\xa0proof of concept for drone-based PDNA\\xa0here\\xa0and a report\",/*#__PURE__*/_jsx(Link,{href:\"https://web.archive.org/web/20250217161837/https://drive.google.com/file/d/1KNj6dv3Umh6fFm8zKPzvYYa3mQI00XL2/view?usp=sharing\",motionChild:true,nodeId:\"RbiL7UJTc\",openInNewTab:true,scopeId:\"fsDUy6ntw\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"\\xa0here\"})}),\".\"]})}),className:\"framer-l71iif\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ymvjj1\",\"data-framer-name\":\"Assam\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nftsd4\",\"data-framer-name\":\"2 Columns Text Image\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ra0u5e\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ni7wlf\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1nopokr\",\"data-styles-preset\":\"Z4iWmXDK7\",style:{\"--framer-text-color\":\"var(--token-5f07c49c-cabb-487f-b598-70919afb1f9a, rgb(40, 117, 117))\"},children:\"Assam Pilot\"})}),className:\"framer-yb3mcw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-nwmnvn\",\"data-styles-preset\":\"wswhY1Fkb\",children:\"Another Multi Stakeholder workshop was conducted at Kaziranga University, Jorhat, Assam in August 2019 where the findings of the first pilot drone-based PDNA done in Golaghat in Assam were shared. Participants included humanitarian aid workers; the overwhelming applause came from the technology professionals of the University, the civil society leaders, the local government functionaries and the community leaders which led to further work.\"})}),className:\"framer-1n3tf3c\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1llabdh\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1f9nsgq-container\",isModuleExternal:true,nodeId:\"iJFEvSi0q\",scopeId:\"fsDUy6ntw\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:20,bottomLeftRadius:20,bottomRightRadius:20,height:\"100%\",id:\"iJFEvSi0q\",isMixedBorderRadius:false,isRed:true,layoutId:\"iJFEvSi0q\",play:\"On\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:20,topRightRadius:20,url:\"https://www.youtube.com/watch?v=mcek559WmbE\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10zpire\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-nwmnvn\",\"data-styles-preset\":\"wswhY1Fkb\",children:\"This pilot exercise was primarily limited to digital mapping of the disaster-affected area using drones in 8 villages. Stakeholders were enthused by seeing the generation of high-resolution digital maps of various features and elements in a targeted manner. This led to the search for a mechanism to analyze it qualitatively as well as quantitatively. \"})}),className:\"framer-1beioit\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-173e3mc\",\"data-framer-name\":\"WB 1\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-fwn0uw\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1b2ug2f-container\",isModuleExternal:true,nodeId:\"iPCKVpGov\",scopeId:\"fsDUy6ntw\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:20,bottomLeftRadius:20,bottomRightRadius:20,height:\"100%\",id:\"iPCKVpGov\",isMixedBorderRadius:false,isRed:true,layoutId:\"iPCKVpGov\",play:\"On\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:20,topRightRadius:20,url:\"https://www.youtube.com/watch?v=81-Yh6Rr1qs\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ivjjlq\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vrcvzk\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1nopokr\",\"data-styles-preset\":\"Z4iWmXDK7\",style:{\"--framer-text-color\":\"var(--token-5f07c49c-cabb-487f-b598-70919afb1f9a, rgb(40, 117, 117))\"},children:\"West Bengal Pilot 1\"})}),className:\"framer-y5u5gg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-nwmnvn\",\"data-styles-preset\":\"wswhY1Fkb\",children:[\"Drone-based mapping was conducted in Sunderbans in the aftermath of Cyclone Bulbul in November 2019. Local community and government institutions (PRIs) were involved as a part of the mapping and micro-planning process. See the short film\\xa0\",/*#__PURE__*/_jsx(Link,{href:\"https://web.archive.org/web/20250217161837/https://www.youtube.com/watch?v=81-Yh6Rr1qs&t=3s\",motionChild:true,nodeId:\"f2sGmbVyW\",openInNewTab:true,scopeId:\"fsDUy6ntw\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"here,\"})}),\"\\xa0and the report\\xa0\",/*#__PURE__*/_jsx(Link,{href:\"https://web.archive.org/web/20250217161837/https://drive.google.com/file/d/10y8OVc19Q1p3uKs3RQZfNejVAWPAePuB/view?usp=sharing\",motionChild:true,nodeId:\"f2sGmbVyW\",openInNewTab:true,scopeId:\"fsDUy6ntw\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"here\"})}),\".\"]})}),className:\"framer-m7r6ir\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1iwd5z6\",\"data-framer-name\":\"WB  2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-y98e9p\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1l5toax\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1nopokr\",\"data-styles-preset\":\"Z4iWmXDK7\",style:{\"--framer-text-color\":\"var(--token-5f07c49c-cabb-487f-b598-70919afb1f9a, rgb(40, 117, 117))\"},children:\"West Bengal Pilot 2\"})}),className:\"framer-1wdo6p2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-nwmnvn\",\"data-styles-preset\":\"wswhY1Fkb\",children:\"Another drone-based mapping was conducted in 30 locations in Sunderbans, West Bengal in the aftermath of cyclone Amphan, 10-15 features/elements were captured using drones and based on that loss percentage and damage assessment were done by our analytics team. See the short film\\xa0here,\\xa0the report\\xa0here\\xa0and the PPT\\xa0here\\xa0and the photos here.\"})}),className:\"framer-g6oe89\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-q3x9xj\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1aatmzo-container\",isModuleExternal:true,nodeId:\"QIr5Jtl_g\",scopeId:\"fsDUy6ntw\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:20,bottomLeftRadius:20,bottomRightRadius:20,height:\"100%\",id:\"QIr5Jtl_g\",isMixedBorderRadius:false,isRed:true,layoutId:\"QIr5Jtl_g\",play:\"On\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:20,topRightRadius:20,url:\"https://www.youtube.com/watch?v=Kmx2HmAHrr8\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d5ho2f\",\"data-framer-name\":\"Odisha Pilot\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-122w6a0\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wwl0dt-container\",isModuleExternal:true,nodeId:\"MRu55Ecn6\",scopeId:\"fsDUy6ntw\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:20,bottomLeftRadius:20,bottomRightRadius:20,height:\"100%\",id:\"MRu55Ecn6\",isMixedBorderRadius:false,isRed:true,layoutId:\"MRu55Ecn6\",play:\"On\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:20,topRightRadius:20,url:\"https://www.youtube.com/watch?v=fMh9QThIYQU&t=17s\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1g8lkex\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-st11ao\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1nopokr\",\"data-styles-preset\":\"Z4iWmXDK7\",style:{\"--framer-text-color\":\"var(--token-5f07c49c-cabb-487f-b598-70919afb1f9a, rgb(40, 117, 117))\"},children:\"Odisha pilot\"})}),className:\"framer-5w1si7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-nwmnvn\",\"data-styles-preset\":\"wswhY1Fkb\",children:[\"Another very recent PDNA was conducted in 23 affected villages of Jaipur district in the aftermath of floods in Jaipur (August 2020). The district experienced unprecedented rainfall for three days (30th\\xa0Aug-1st\\xa0Sep) as a consequence most of the villages and towns got flooded, and the disaster was completely overlooked by mainstream media. HAI together with its local on-ground partner carried out a detailed damage and loss assessment to plan for a proper relief and recovery programme. A short video can be viewed\\xa0\",/*#__PURE__*/_jsx(Link,{href:\"https://web.archive.org/web/20250217161837/https://www.youtube.com/watch?v=fMh9QThIYQU\",motionChild:true,nodeId:\"H2KjhM5m8\",openInNewTab:true,scopeId:\"fsDUy6ntw\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"here,\"})}),\"\\xa0PPT\\xa0\",/*#__PURE__*/_jsx(Link,{href:\"https://web.archive.org/web/20250217161837/https://drive.google.com/file/d/1w3VK_kJOPn5K8GNXpCTntwv5axgnygxR/view?usp=sharing\",motionChild:true,nodeId:\"H2KjhM5m8\",openInNewTab:true,scopeId:\"fsDUy6ntw\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"here\"})}),\"\\xa0and report\",/*#__PURE__*/_jsx(Link,{href:\"https://web.archive.org/web/20250217161837/https://drive.google.com/file/d/1Qfyy3va92et2ggpLFvw0RuJTvsp4OSAD/view?usp=sharing\",motionChild:true,nodeId:\"H2KjhM5m8\",openInNewTab:true,scopeId:\"fsDUy6ntw\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"\\xa0here\"})}),\".\"]})}),className:\"framer-g6w9f0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16066y0\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1nopokr\",\"data-styles-preset\":\"Z4iWmXDK7\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-5f07c49c-cabb-487f-b598-70919afb1f9a, rgb(40, 117, 117))\"},children:\"COVID Response\"})}),className:\"framer-1s6amgm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bbnbsg\",\"data-framer-name\":\"2 Columns Text Image\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-c2igqe\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1aa6vul\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-nwmnvn\",\"data-styles-preset\":\"wswhY1Fkb\",children:[\"HAI supported the government of Odisha to mitigate the pandemic risk and carried out the following\",/*#__PURE__*/_jsx(\"strong\",{children:\":\"})]}),/*#__PURE__*/_jsxs(\"ul\",{className:\"framer-styles-preset-nwmnvn\",\"data-styles-preset\":\"wswhY1Fkb\",children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Disinfectant spraying drones were deployed in the Municipal Corporation jurisdiction of Bhubaneshwar and Cuttack. However, due to a WHO advisory on spraying of disinfectants, this activity was halted mid-way\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"surveillance drones with high-decibel PA systems were used in Delhi to spread public safety awareness about the risks of COVID-19 and associated government advisory through the cooperation and supervision of police officials\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"COVID-19 hotspots in Cuttack, Bhubaneswar and Jajpur were brought under micro-surveillance through PA & surveillance drones\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Drone-based surveillance of quarantine centres was conducted in Dwarka, Delhi and in 4 hotspots in Karnataka\"})})]})]}),className:\"framer-gbj9mf\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Smq2kg9vm:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8442+50+0),pixelHeight:545,pixelWidth:1280,positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1600px) * 0.7)`,src:\"https://framerusercontent.com/images/xuqNtNimjyN5sYSje00cWYarYA.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/xuqNtNimjyN5sYSje00cWYarYA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/xuqNtNimjyN5sYSje00cWYarYA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/xuqNtNimjyN5sYSje00cWYarYA.jpg 1280w\"}},VVy_R0jVR:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5399+335),pixelHeight:545,pixelWidth:1280,positionX:\"center\",positionY:\"center\",sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1600px) * 0.4118, 1px)`,src:\"https://framerusercontent.com/images/xuqNtNimjyN5sYSje00cWYarYA.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/xuqNtNimjyN5sYSje00cWYarYA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/xuqNtNimjyN5sYSje00cWYarYA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/xuqNtNimjyN5sYSje00cWYarYA.jpg 1280w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5194+50),pixelHeight:545,pixelWidth:1280,positionX:\"center\",positionY:\"center\",sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1600px) * 0.4118, 1px)`,src:\"https://framerusercontent.com/images/xuqNtNimjyN5sYSje00cWYarYA.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/xuqNtNimjyN5sYSje00cWYarYA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/xuqNtNimjyN5sYSje00cWYarYA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/xuqNtNimjyN5sYSje00cWYarYA.jpg 1280w\"},className:\"framer-1y3gmwy\",\"data-framer-name\":\"Image\"})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-aa0i2b\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1nopokr\",\"data-styles-preset\":\"Z4iWmXDK7\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-5f07c49c-cabb-487f-b598-70919afb1f9a, rgb(40, 117, 117))\"},children:\"Drone pilot training\"})}),className:\"framer-1egu06s\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1olwbuz\",\"data-framer-name\":\"2 Columns Text Image\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Smq2kg9vm:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+10124+50+0),pixelHeight:853,pixelWidth:1280,positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1600px) * 0.7)`,src:\"https://framerusercontent.com/images/vYl9cMK7y1fKqTHq7qA3mcWFx8.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/vYl9cMK7y1fKqTHq7qA3mcWFx8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/vYl9cMK7y1fKqTHq7qA3mcWFx8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/vYl9cMK7y1fKqTHq7qA3mcWFx8.jpg 1280w\"}},VVy_R0jVR:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6721+50),pixelHeight:853,pixelWidth:1280,positionX:\"center\",positionY:\"center\",sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1600px) * 0.4118, 1px)`,src:\"https://framerusercontent.com/images/vYl9cMK7y1fKqTHq7qA3mcWFx8.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/vYl9cMK7y1fKqTHq7qA3mcWFx8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/vYl9cMK7y1fKqTHq7qA3mcWFx8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/vYl9cMK7y1fKqTHq7qA3mcWFx8.jpg 1280w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6436+50),pixelHeight:853,pixelWidth:1280,positionX:\"center\",positionY:\"center\",sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1600px) * 0.4118, 1px)`,src:\"https://framerusercontent.com/images/vYl9cMK7y1fKqTHq7qA3mcWFx8.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/vYl9cMK7y1fKqTHq7qA3mcWFx8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/vYl9cMK7y1fKqTHq7qA3mcWFx8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/vYl9cMK7y1fKqTHq7qA3mcWFx8.jpg 1280w\"},className:\"framer-ldnwud\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-puqauk\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ltzxqb\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-nwmnvn\",\"data-styles-preset\":\"wswhY1Fkb\",children:[\"With the realisation that more skilled pilots could have been helpful to upscale the drone-based activities to the entire state, HAI, in collaboration with the Odisha Skill Development Authority, initiated a three-week\u2019 drone pilot training for 10 individuals. 5 participants in the programme were government nominees and the remaining 5 from non-governmental organizations. 2 of the government nominees were women, making them the first women drone pilots in the state of Odisha. This training course, the first of its kind, could be considered a historical feat for the Indian technological landscape. See the report here:\\xa0\",/*#__PURE__*/_jsx(Link,{href:\"https://web.archive.org/web/20250217161837/https://drive.google.com/file/d/1YYKqbm1PikjV_Yjj9owHsdK1-5yeSeQ8/view?usp=sharing\",motionChild:true,nodeId:\"M26Ez8AJY\",openInNewTab:true,scopeId:\"fsDUy6ntw\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"HAI Report on fast track drone training course\\xa0\"})})]})}),className:\"framer-10wqu24\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-w8mri4\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-nwmnvn\",\"data-styles-preset\":\"wswhY1Fkb\",children:\"HAI has initiated further discussions with the Government of Odisha for replicating the drone pilot training, initiating a \u2018Drone Pilot cum Entrepreneurship\u2019 training and \u2018Training of Trainers\u2019 program to help set up a Drone Pilot Certification institution and help initiate education in drone science in the technical training institutions in the state under the auspices of the DTET (Directorate of Technical Education and Training) and the OSDA (Odisha Skill Development Authority).\"}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-nwmnvn\",\"data-styles-preset\":\"wswhY1Fkb\",children:[\"Also, see the report on\\xa0the \",/*#__PURE__*/_jsx(Link,{href:\"https://web.archive.org/web/20250217161837/https://drive.google.com/file/d/1Ab3ubOxanjUkybMcvrbC6H5u0_ABhO_I/view?usp=sharing\",motionChild:true,nodeId:\"X1vMcJ12D\",openInNewTab:true,scopeId:\"fsDUy6ntw\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"Pilot Trial of Drone based Integrated Techno-Humanitarian Approach to COVID19 Response State \u2013 ODISHA\"})})]})]}),className:\"framer-v6jmba\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4vj828\",\"data-framer-name\":\"Templates\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-30sihm\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-rh830z\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1g2rquv\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1nopokr\",\"data-styles-preset\":\"Z4iWmXDK7\",style:{\"--framer-text-color\":\"var(--token-5f07c49c-cabb-487f-b598-70919afb1f9a, rgb(40, 117, 117))\"},children:\"More on Tech4Aid Program\"})}),className:\"framer-1xzappf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-nwmnvn\",\"data-styles-preset\":\"wswhY1Fkb\",children:\"Tech4Aid is an inclusive platform of drone owners, registered drone pilots, Artificial Intelligence data analysts, Humanitarian professionals & organizations, and Institutions for actionable interventions not only during humanitarian crises but also during normal times focusing on preparedness & mitigation measures with continuous study & assessment throughout the year.\"}),/*#__PURE__*/_jsxs(\"ul\",{className:\"framer-styles-preset-nwmnvn\",\"data-styles-preset\":\"wswhY1Fkb\",children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Members of Tech4Aid can come together either in a voluntary manner or at best at a humanitarian cost.\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Tech4Aid will follow a strict code of conduct for the application of drones & supporting tools.\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"The code of conduct will be based on core humanitarian principles leading to fair humanitarian practices to ensure dignity for people & adequately address humanitarian imperatives\"})})]})]}),className:\"framer-170sk1y\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-y5re50\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yf23k5\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1nopokr\",\"data-styles-preset\":\"Z4iWmXDK7\",style:{\"--framer-text-color\":\"var(--token-5f07c49c-cabb-487f-b598-70919afb1f9a, rgb(40, 117, 117))\"},children:\"Purpose of Tech4Aid Platform\"})}),className:\"framer-10f7v2v\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-nwmnvn\",\"data-styles-preset\":\"wswhY1Fkb\",children:\"The purpose of this platform is\"}),/*#__PURE__*/_jsxs(\"ul\",{className:\"framer-styles-preset-nwmnvn\",\"data-styles-preset\":\"wswhY1Fkb\",children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"to promote the safe and responsible use of drones in humanitarian settings with a comprehensive country-wide Humanitarian Drone Network.\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"to engage in all activities related to disaster management; risk assessment; damage & loss assessment; hazard mapping and its forecasting; and climate change mapping, adaptation and mitigation; etc to help all stakeholders including governments and other humanitarian actors in decision-making for quick, accurate, and appropriate interventions.\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"to engage in all activities of humanitarian & development sectors on issues related to health, education, social, demographic, agriculture, water resources, forest, infrastructure, environmental, economic, etc.\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"to get engaged in promoting an appropriate ecosystem by imparting knowledge and awareness among humanitarian organizations, and young professionals like technology students, volunteers, etc.\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"to engage in policy advocacy to facilitate the development of an enabling environment for the use of technology for development governance and humanitarian action.\"})})]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-nwmnvn\",\"data-styles-preset\":\"wswhY1Fkb\",children:\"Do note that the project does not engage in non-humanitarian works like surveillance of extremism or any kind of spying activities as it is considered to be outside the scope of humanitarian services\"})]}),className:\"framer-ziw0a7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u8ou02\",\"data-framer-name\":\"Templates\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1nopokr\",\"data-styles-preset\":\"Z4iWmXDK7\",style:{\"--framer-text-color\":\"var(--token-5f07c49c-cabb-487f-b598-70919afb1f9a, rgb(40, 117, 117))\"},children:\"Promoters of Tech4Aid\"})}),className:\"framer-27rvqt\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-nwmnvn\",\"data-styles-preset\":\"wswhY1Fkb\",children:\"HAI and CDDMASS jointly promote this inclusive platform in collaboration with the humanitarian players in the civil society, corporate sector, and central and state governments in India.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-nwmnvn\",\"data-styles-preset\":\"wswhY1Fkb\",children:\"Any interested individual, organisation (profit or non-profit), or institution can become a member of Tech4Aid platform by pledging an expression of interest. Just pledge to undertake activities at humanitarian cost purely as a service in humanitarian crisis.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-nwmnvn\",\"data-styles-preset\":\"wswhY1Fkb\",children:\"There is no membership fee.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-nwmnvn\",\"data-styles-preset\":\"wswhY1Fkb\",children:\"If you are interested in getting involved in the project, please feel free to contact us.\"})]}),className:\"framer-da0xe9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1l9o3m9\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-uva21p\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-iaeeha\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-nwmnvn\",\"data-styles-preset\":\"wswhY1Fkb\",children:[\"HUMANITARIAN AID INTERNATIONAL\",/*#__PURE__*/_jsx(\"br\",{}),\"Malkoti Apartments, A12, MBR Enclave\",/*#__PURE__*/_jsx(\"br\",{}),\"Block B, Pochanpur Colony, Dwarka\",/*#__PURE__*/_jsx(\"br\",{}),\"New Delhi, 110075\",/*#__PURE__*/_jsx(\"br\",{}),\"Phone No. +91-9953163572\",/*#__PURE__*/_jsx(\"br\",{}),\"Email: info@hai-india.org\",/*#__PURE__*/_jsx(\"br\",{}),\"www.hai-india.org\"]})}),className:\"framer-5y8pym\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ggjog7\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-iazaqt\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-nwmnvn\",\"data-styles-preset\":\"wswhY1Fkb\",children:[\"CENTER FOR DEVELOPMENT AND DISASTER MANAGEMENT SUPPORT SERVICES\",/*#__PURE__*/_jsx(\"br\",{}),\"2nd Floor, Building No.753-A, Block-H,\",/*#__PURE__*/_jsx(\"br\",{}),\"Ansal\u2019s Palam Vihar, Gurgaon-122017, India\",/*#__PURE__*/_jsx(\"br\",{}),\"Tel: 91-11-41026642; +91-9811310841/9899592306\",/*#__PURE__*/_jsx(\"br\",{}),\"E-mail: nmprusty@yahoo.co.in, nmprusty51@gmail.com\"]})}),className:\"framer-1jcz2ko\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-n22nb1\",\"data-framer-name\":\"Pre Footer\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Smq2kg9vm:{width:`min(max(min(${componentViewport?.width||\"100vw\"}, 1600px) - 20px, 1px), min(${componentViewport?.width||\"100vw\"}, 1600px) - 20px)`,y:(componentViewport?.y||0)+0+15180+10},VVy_R0jVR:{width:`min(max(min(${componentViewport?.width||\"100vw\"}, 1600px) - 40px, 1px), min(${componentViewport?.width||\"100vw\"}, 1600px) - 40px)`,y:(componentViewport?.y||0)+0+10553+20}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:442,width:`min(max(min(${componentViewport?.width||\"100vw\"}, 1600px) - 80px, 1px), min(${componentViewport?.width||\"100vw\"}, 1600px) - 80px)`,y:(componentViewport?.y||0)+0+10168+40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nv8jr2-container\",nodeId:\"RbBsZ8F66\",scopeId:\"fsDUy6ntw\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Smq2kg9vm:{variant:\"p0DrlNS4X\"},VVy_R0jVR:{variant:\"DY0zSLyvE\"}},children:/*#__PURE__*/_jsx(PreFooterMax,{height:\"100%\",id:\"RbBsZ8F66\",layoutId:\"RbBsZ8F66\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"Nrqznvt6Y\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Smq2kg9vm:{y:(componentViewport?.y||0)+0+15642},VVy_R0jVR:{y:(componentViewport?.y||0)+0+11035}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:560,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+10690,children:/*#__PURE__*/_jsx(Container,{className:\"framer-yqdxul-container\",nodeId:\"azOmMxH3N\",scopeId:\"fsDUy6ntw\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Smq2kg9vm:{variant:\"P4W4avUJ2\"},VVy_R0jVR:{variant:\"HvVkWGWEW\"}},children:/*#__PURE__*/_jsx(FooterFooter,{height:\"100%\",id:\"azOmMxH3N\",layoutId:\"azOmMxH3N\",style:{width:\"100%\"},variant:\"FIxvcQ9zh\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-IhaDM.framer-irmiyh, .framer-IhaDM .framer-irmiyh { display: block; }\",\".framer-IhaDM.framer-p1o1wn { align-content: center; align-items: center; background-color: var(--token-fb6c8703-e1a2-493a-80de-3b910374b71f, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1440px; }\",\".framer-IhaDM .framer-uzq9es-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 10; }\",\".framer-IhaDM .framer-pljsys { background-color: #ffffff; flex: none; height: 95px; overflow: hidden; position: relative; width: 100%; }\",\".framer-IhaDM .framer-7jri7a { align-content: center; align-items: center; background-color: var(--token-fb6c8703-e1a2-493a-80de-3b910374b71f, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-IhaDM .framer-tqnaib { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 700px; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-IhaDM .framer-v78a91 { bottom: 0px; flex: none; left: 0px; overflow: hidden; pointer-events: none; position: absolute; right: 0px; top: 0px; z-index: -1; }\",\".framer-IhaDM .framer-pnnkv7 { flex: none; height: 700px; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-IhaDM .framer-dxwjo7 { background: linear-gradient(179.9721679629514deg, rgba(217, 217, 217, 0) -3%, rgba(40, 117, 117, 0.53) 20%, var(--token-5f07c49c-cabb-487f-b598-70919afb1f9a, rgb(40, 117, 117)) 61%); bottom: 0px; flex: none; height: 200px; left: 0px; position: absolute; right: 0px; }\",\".framer-IhaDM .framer-e6hpt9 { background: linear-gradient(180.00000101189605deg, var(--token-5f07c49c-cabb-487f-b598-70919afb1f9a, #287575) 0%, rgba(115, 115, 115, 0) 100%); flex: none; height: 100px; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-IhaDM .framer-1ej9m09 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 80px 0px; position: relative; width: 90%; }\",\".framer-IhaDM .framer-mybp2c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1240px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-IhaDM .framer-gkw5gu { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-IhaDM .framer-1sux7cj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-IhaDM .framer-8245af, .framer-IhaDM .framer-j5jw69 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-IhaDM .framer-12iwt6n { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-IhaDM .framer-t7cmr0 { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; max-width: 1600px; overflow: hidden; padding: 50px; position: relative; width: 1px; }\",\".framer-IhaDM .framer-8ubaba { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 2018px; padding: 0px; position: relative; width: 100%; }\",\".framer-IhaDM .framer-v3k7x1, .framer-IhaDM .framer-1v39zdt, .framer-IhaDM .framer-1ex01ff, .framer-IhaDM .framer-1cqm8d1, .framer-IhaDM .framer-4dfjbh, .framer-IhaDM .framer-abaniq, .framer-IhaDM .framer-1yhytht, .framer-IhaDM .framer-15t424b, .framer-IhaDM .framer-yb3mcw, .framer-IhaDM .framer-y5u5gg, .framer-IhaDM .framer-1wdo6p2, .framer-IhaDM .framer-5w1si7, .framer-IhaDM .framer-1s6amgm, .framer-IhaDM .framer-1egu06s { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-IhaDM .framer-1a124gv, .framer-IhaDM .framer-7k0c7z, .framer-IhaDM .framer-r7t0o5, .framer-IhaDM .framer-ot1eg5, .framer-IhaDM .framer-1in7j83, .framer-IhaDM .framer-1mmeger, .framer-IhaDM .framer-1td123b, .framer-IhaDM .framer-l71iif, .framer-IhaDM .framer-1n3tf3c, .framer-IhaDM .framer-1beioit, .framer-IhaDM .framer-m7r6ir, .framer-IhaDM .framer-g6oe89, .framer-IhaDM .framer-g6w9f0, .framer-IhaDM .framer-gbj9mf, .framer-IhaDM .framer-10wqu24, .framer-IhaDM .framer-v6jmba, .framer-IhaDM .framer-170sk1y, .framer-IhaDM .framer-ziw0a7, .framer-IhaDM .framer-da0xe9, .framer-IhaDM .framer-5y8pym, .framer-IhaDM .framer-1jcz2ko { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-IhaDM .framer-jc5mmv { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1600px; overflow: hidden; padding: 50px; position: relative; width: 100%; }\",\".framer-IhaDM .framer-1w0y0dj { display: grid; flex: none; gap: 60px; grid-auto-rows: min-content; grid-template-columns: repeat(4, minmax(200px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-IhaDM .framer-jjxa6b, .framer-IhaDM .framer-1ymdc67, .framer-IhaDM .framer-lv0jl0, .framer-IhaDM .framer-1a4o8ws { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: auto; justify-content: center; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-IhaDM .framer-151ai0q, .framer-IhaDM .framer-19f240s, .framer-IhaDM .framer-1gnlqkf, .framer-IhaDM .framer-19ku42w { 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; padding: 0px; position: relative; width: 100%; }\",\".framer-IhaDM .framer-eumq0d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1600px; overflow: hidden; padding: 80px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-IhaDM .framer-1c5y4bb { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-IhaDM .framer-dstt2w, .framer-IhaDM .framer-8t0m8m, .framer-IhaDM .framer-ni7wlf, .framer-IhaDM .framer-1vrcvzk, .framer-IhaDM .framer-1l5toax, .framer-IhaDM .framer-st11ao, .framer-IhaDM .framer-1aa6vul { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 2018px; padding: 0px; position: relative; width: 90%; }\",\".framer-IhaDM .framer-1klqq2g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-IhaDM .framer-15nsuzx, .framer-IhaDM .framer-vd6x4c, .framer-IhaDM .framer-1vc8hif { align-content: center; align-items: center; background-color: #222222; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 0.7065919983928324px 0.7065919983928324px -0.625px rgba(0, 0, 0, 0.15), 0px 1.8065619053231785px 1.8065619053231785px -1.25px rgba(0, 0, 0, 0.14), 0px 3.6217592146567767px 3.6217592146567767px -1.875px rgba(0, 0, 0, 0.14), 0px 6.8655999097303715px 6.8655999097303715px -2.5px rgba(0, 0, 0, 0.13), 0px 13.646761411524492px 13.646761411524492px -3.125px rgba(0, 0, 0, 0.1), 0px 30px 30px -3.75px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 15px; position: relative; width: min-content; }\",\".framer-IhaDM .framer-h4lah6, .framer-IhaDM .framer-1s6avon, .framer-IhaDM .framer-vk1qxk { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-IhaDM .framer-22aar4 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 458px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-IhaDM .framer-1r2uik9, .framer-IhaDM .framer-16066y0, .framer-IhaDM .framer-aa0i2b { align-content: center; align-items: center; background-color: var(--token-baf70108-82f0-4316-874f-7d24a9d5a0fb, #f4f5ee); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 1600px; padding: 40px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-IhaDM .framer-sm0sn2, .framer-IhaDM .framer-173e3mc, .framer-IhaDM .framer-1iwd5z6, .framer-IhaDM .framer-1d5ho2f { align-content: center; align-items: center; background-color: rgba(244, 245, 237, 0.3); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1600px; overflow: hidden; padding: 80px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-IhaDM .framer-7rzk5u, .framer-IhaDM .framer-1llabdh, .framer-IhaDM .framer-fwn0uw, .framer-IhaDM .framer-q3x9xj, .framer-IhaDM .framer-122w6a0, .framer-IhaDM .framer-c2igqe, .framer-IhaDM .framer-puqauk { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-IhaDM .framer-vseked-container, .framer-IhaDM .framer-1f9nsgq-container, .framer-IhaDM .framer-1b2ug2f-container, .framer-IhaDM .framer-1aatmzo-container, .framer-IhaDM .framer-1wwl0dt-container { flex: none; height: 337px; position: relative; width: 547px; }\",\".framer-IhaDM .framer-1hwbtwg, .framer-IhaDM .framer-ra0u5e, .framer-IhaDM .framer-1ivjjlq, .framer-IhaDM .framer-y98e9p, .framer-IhaDM .framer-1g8lkex { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-IhaDM .framer-1ymvjj1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-IhaDM .framer-nftsd4 { align-content: center; align-items: center; background-color: rgba(244, 245, 237, 0.3); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1600px; overflow: hidden; padding: 80px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-IhaDM .framer-10zpire { align-content: flex-start; align-items: flex-start; background-color: rgba(244, 245, 237, 0.3); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 1600px; padding: 0px 0px 80px 35px; position: relative; width: 100%; }\",\".framer-IhaDM .framer-1bbnbsg, .framer-IhaDM .framer-1olwbuz { align-content: center; align-items: center; background-color: rgba(244, 245, 238, 0.3); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1600px; overflow: hidden; padding: 50px 0px 50px 0px; position: relative; width: 100%; }\",\".framer-IhaDM .framer-1y3gmwy { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 0.7 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-IhaDM .framer-ldnwud { align-content: center; align-items: center; display: flex; flex: 0.7 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 400px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-IhaDM .framer-1ltzxqb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 90%; }\",\".framer-IhaDM .framer-w8mri4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 1600px; padding: 0px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-IhaDM .framer-4vj828 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1600px; overflow: hidden; padding: 80px 40px 80px 40px; position: relative; width: 100%; }\",\".framer-IhaDM .framer-30sihm, .framer-IhaDM .framer-1l9o3m9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-IhaDM .framer-rh830z, .framer-IhaDM .framer-y5re50, .framer-IhaDM .framer-uva21p, .framer-IhaDM .framer-1ggjog7 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-IhaDM .framer-1g2rquv, .framer-IhaDM .framer-1yf23k5, .framer-IhaDM .framer-iaeeha, .framer-IhaDM .framer-iazaqt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-IhaDM .framer-1xzappf, .framer-IhaDM .framer-10f7v2v, .framer-IhaDM .framer-27rvqt { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-IhaDM .framer-u8ou02 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1600px; overflow: hidden; padding: 40px; position: relative; width: 100%; }\",\".framer-IhaDM .framer-n22nb1 { align-content: center; align-items: center; background-color: var(--token-fb6c8703-e1a2-493a-80de-3b910374b71f, #ffffff); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1600px; overflow: hidden; padding: 40px; position: relative; width: 100%; z-index: 5; }\",\".framer-IhaDM .framer-1nv8jr2-container { flex: 1 0 0px; height: auto; max-width: 100%; position: relative; width: 1px; }\",\".framer-IhaDM .framer-yqdxul-container { flex: none; height: auto; position: relative; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,\"@media (min-width: 1240px) and (max-width: 1439px) { .framer-IhaDM.framer-p1o1wn { width: 1240px; }}\",\"@media (min-width: 1170px) and (max-width: 1239px) { .framer-IhaDM.framer-p1o1wn { width: 1170px; }}\",\"@media (min-width: 840px) and (max-width: 1169px) { .framer-IhaDM.framer-p1o1wn { width: 840px; } .framer-IhaDM .framer-pljsys { height: 158px; } .framer-IhaDM .framer-8ubaba, .framer-IhaDM .framer-dstt2w, .framer-IhaDM .framer-8t0m8m, .framer-IhaDM .framer-ni7wlf, .framer-IhaDM .framer-1vrcvzk, .framer-IhaDM .framer-1l5toax, .framer-IhaDM .framer-st11ao, .framer-IhaDM .framer-1aa6vul, .framer-IhaDM .framer-1ltzxqb { flex: 1 0 0px; padding: 40px; width: 1px; } .framer-IhaDM .framer-jc5mmv { padding: 100px 40px 100px 40px; } .framer-IhaDM .framer-22aar4, .framer-IhaDM .framer-ldnwud { height: 500px; } .framer-IhaDM .framer-1y3gmwy { align-self: unset; height: 500px; } .framer-IhaDM .framer-n22nb1 { padding: 20px; }}\",\"@media (max-width: 839px) { .framer-IhaDM.framer-p1o1wn { width: 350px; } .framer-IhaDM .framer-tqnaib, .framer-IhaDM .framer-pnnkv7 { height: 500px; } .framer-IhaDM .framer-v78a91 { order: 0; } .framer-IhaDM .framer-dxwjo7 { height: 220px; } .framer-IhaDM .framer-1ej9m09 { order: 1; padding: 0px 0px 20px 0px; } .framer-IhaDM .framer-12iwt6n, .framer-IhaDM .framer-eumq0d, .framer-IhaDM .framer-sm0sn2, .framer-IhaDM .framer-nftsd4, .framer-IhaDM .framer-173e3mc, .framer-IhaDM .framer-1iwd5z6, .framer-IhaDM .framer-1d5ho2f, .framer-IhaDM .framer-1bbnbsg, .framer-IhaDM .framer-1olwbuz, .framer-IhaDM .framer-30sihm, .framer-IhaDM .framer-1l9o3m9 { flex-direction: column; } .framer-IhaDM .framer-t7cmr0, .framer-IhaDM .framer-1hwbtwg, .framer-IhaDM .framer-ra0u5e, .framer-IhaDM .framer-1ivjjlq, .framer-IhaDM .framer-y98e9p, .framer-IhaDM .framer-1g8lkex { align-self: unset; flex: none; height: min-content; order: 0; width: 100%; } .framer-IhaDM .framer-8ubaba, .framer-IhaDM .framer-dstt2w, .framer-IhaDM .framer-8t0m8m, .framer-IhaDM .framer-ni7wlf, .framer-IhaDM .framer-1vrcvzk, .framer-IhaDM .framer-1l5toax, .framer-IhaDM .framer-st11ao, .framer-IhaDM .framer-1aa6vul, .framer-IhaDM .framer-1ltzxqb { flex: 1 0 0px; padding: 20px; width: 1px; } .framer-IhaDM .framer-jc5mmv, .framer-IhaDM .framer-u8ou02 { padding: 20px; } .framer-IhaDM .framer-1w0y0dj { grid-template-columns: repeat(1, minmax(200px, 1fr)); } .framer-IhaDM .framer-1c5y4bb { align-self: unset; flex: none; height: min-content; order: 1; width: 100%; } .framer-IhaDM .framer-22aar4 { flex: none; height: 400px; order: 0; width: 100%; } .framer-IhaDM .framer-7rzk5u, .framer-IhaDM .framer-1llabdh, .framer-IhaDM .framer-fwn0uw, .framer-IhaDM .framer-q3x9xj, .framer-IhaDM .framer-122w6a0, .framer-IhaDM .framer-c2igqe, .framer-IhaDM .framer-puqauk { flex: none; order: 1; width: 100%; } .framer-IhaDM .framer-1y3gmwy { align-self: unset; flex: none; height: 400px; order: 0; width: 70%; } .framer-IhaDM .framer-ldnwud { flex: none; order: 0; width: 70%; } .framer-IhaDM .framer-4vj828 { padding: 60px 20px 60px 20px; } .framer-IhaDM .framer-rh830z, .framer-IhaDM .framer-y5re50, .framer-IhaDM .framer-uva21p, .framer-IhaDM .framer-1ggjog7 { flex: none; width: 100%; } .framer-IhaDM .framer-n22nb1 { padding: 10px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 10226\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"aD5s488Z3\":{\"layout\":[\"fixed\",\"auto\"]},\"DsVyc8Tok\":{\"layout\":[\"fixed\",\"auto\"]},\"VVy_R0jVR\":{\"layout\":[\"fixed\",\"auto\"]},\"Smq2kg9vm\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"XTYRaIm6V\":{\"pattern\":\":XTYRaIm6V\",\"name\":\"nav\"},\"UCb1DxUda\":{\"pattern\":\":UCb1DxUda\",\"name\":\"hero\"}}\n * @framerResponsiveScreen\n */const FramerfsDUy6ntw=withCSS(Component,css,\"framer-IhaDM\");export default FramerfsDUy6ntw;FramerfsDUy6ntw.displayName=\"Events News\";FramerfsDUy6ntw.defaultProps={height:10226,width:1440};addFonts(FramerfsDUy6ntw,[{explicitInter:true,fonts:[{family:\"Bebas Neue\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/AWXLDXTI2CYJ5SHK74YUPGPFS5S5BWLL/M6ZJD4UOFNT4DPUXGTK7T46JZ3W3QW64/2TXZKBJMJVP3NQX7K7MGJDQFMD4ZMJR7.woff2\",weight:\"400\"},{family:\"Roboto Condensed\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyWyovBM731BKMSK.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"}]},...NavigationNavBarFonts,...YouTubeFonts,...PreFooterMaxFonts,...FooterFooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerfsDUy6ntw\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerScrollSections\":\"{\\\"XTYRaIm6V\\\":{\\\"pattern\\\":\\\":XTYRaIm6V\\\",\\\"name\\\":\\\"nav\\\"},\\\"UCb1DxUda\\\":{\\\"pattern\\\":\\\":UCb1DxUda\\\",\\\"name\\\":\\\"hero\\\"}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"10226\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerAutoSizeImages\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerResponsiveScreen\":\"\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"aD5s488Z3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"DsVyc8Tok\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"VVy_R0jVR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Smq2kg9vm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["PlayOptions", "ThumbnailOptions", "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", "originalSearchParams", "searchParams", "param", "value", "iframeProps", "u", "wrapperStyle", "l", "getThumbnailURL", "videoStyle", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "page", "res", "pre", "ext", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "NavigationNavBarFonts", "getFonts", "wCqByi1N4_default", "YouTubeFonts", "Youtube", "PreFooterMaxFonts", "C0IpvumlD_default", "FooterFooterFonts", "isbQ1dVh6_default", "breakpoints", "serializationHash", "variantClassNames", "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", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "PropertyOverrides2", "wCqByi1N4_default", "getLoadingLazyAtYPosition", "Image2", "x", "RichText2", "Youtube", "Link", "C0IpvumlD_default", "isbQ1dVh6_default", "css", "FramerfsDUy6ntw", "withCSS", "fsDUy6ntw_default", "addFonts", "NavigationNavBarFonts", "YouTubeFonts", "PreFooterMaxFonts", "FooterFooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
