{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/8aCGinfRQO68tQ3QF42d/YouTube.js", "ssg:https://framerusercontent.com/modules/7MJtIAW3imX7Xagx0h94/SkDXjesxHpjiMTAGbbdb/D97GMgVlU.js", "ssg:https://framerusercontent.com/modules/pjWs1LE1WSc99RlBI18f/lk1XVi1ep3rJ8DcIGD3T/VsYfE6YFn.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,title,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==\"Off\";const showThumbnail=onCanvas||thumbnail!==\"Off\"&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/_jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL]=parsedURL;// https://developers.google.com/youtube/player_parameters\nconst searchParams=embedURL.searchParams;searchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(!showVideo){// if a browser does not support `loading=lazy`, make sure the video doesn't start playing in the background\nsearchParams.set(\"autoplay\",\"0\");}else if(isAutoplay||// when there is no thumbnail, we don't want to autoplay, unless video is started\nshowThumbnail&&showVideo){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===\"Loop\"){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}const iframeProps={title:title||\"Youtube Video\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",src:embedURL.href,frameBorder:\"0\",onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp};return /*#__PURE__*/_jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onKeyDown:startVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:// Safari sometimes struggles to render border-radius:\n// - on the canvas when changing from 0 to any other value\n// - or when rendering an iframe\nhasBorderRadius&&(showVideo||onCanvas)?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},role:\"presentation\",children:[isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),/*#__PURE__*/_jsx(\"div\",{style:{...videoStyle,background:showThumbnail?`center / cover url(${getThumbnailURL(videoId,thumbnail)}) no-repeat`:undefined}}),!onCanvas?/*#__PURE__*/_jsx(\"iframe\",{loading:!showVideo?\"lazy\":undefined,style:!showVideo?{...videoStyle,display:\"none\"}:videoStyle,...iframeProps}):null,showVideo?null:/*#__PURE__*/_jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===\"Off\";}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==\"Off\";}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:\"Off\",shouldMute:true,thumbnail:\"Medium Quality\",isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL];}if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");// https://www.youtube.com/watch?v=Fop2oskTug8\nif(pathSegments[0]===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId=pathSegments[1];return[videoId,url];}// https://www.youtube.com/shorts/zwMEhBq4kYM\nif(pathSegments[0]===\"shorts\"){const videoId=pathSegments[1];const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId=url.pathname.slice(1);const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res){// 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\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"315\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"560\",\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "// Generated by Framer (3d3d426)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const enabledGestures={wfm366ZFq:{hover:true},ZzVAtOqbt:{hover:true}};const cycleOrder=[\"ZzVAtOqbt\",\"BarFfvCld\",\"wfm366ZFq\",\"hBUBPe5RL\"];const serializationHash=\"framer-NzMy3\";const variantClassNames={BarFfvCld:\"framer-v-xbyrrs\",hBUBPe5RL:\"framer-v-1iad4u\",wfm366ZFq:\"framer-v-1u5xa6t\",ZzVAtOqbt:\"framer-v-l8yhs6\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Awards 02\":\"hBUBPe5RL\",\"Relevant Experience 02\":\"BarFfvCld\",\"Relevant Experience\":\"ZzVAtOqbt\",Awards:\"wfm366ZFq\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"ZzVAtOqbt\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ZzVAtOqbt\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapsoll8y=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"BarFfvCld\");});const onTap17kmrax=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"ZzVAtOqbt\");});const onTapg2zow7=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"hBUBPe5RL\");});const onTap27jb3v=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"wfm366ZFq\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"BarFfvCld\",\"hBUBPe5RL\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if(gestureVariant===\"wfm366ZFq-hover\")return true;if([\"wfm366ZFq\",\"hBUBPe5RL\"].includes(baseVariant))return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-l8yhs6\",className,classNames),\"data-framer-name\":\"Relevant Experience\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"ZzVAtOqbt\",onTap:onTapsoll8y,ref:refBinding,style:{...style},...addPropertyOverrides({\"wfm366ZFq-hover\":{\"data-framer-name\":undefined},\"ZzVAtOqbt-hover\":{\"data-framer-name\":undefined},BarFfvCld:{\"data-framer-name\":\"Relevant Experience 02\",onTap:onTap17kmrax},hBUBPe5RL:{\"data-framer-name\":\"Awards 02\",onTap:onTap27jb3v},wfm366ZFq:{\"data-framer-name\":\"Awards\",onTap:onTapg2zow7}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fd00my\",layoutDependency:layoutDependency,layoutId:\"qXLY5vuZX\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-hf6nge\",\"data-framer-name\":\"Bottom Line\",layoutDependency:layoutDependency,layoutId:\"ixgyAJ6xV\",style:{backgroundColor:\"rgba(0, 0, 0, 0.08)\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1sot6cj\",layoutDependency:layoutDependency,layoutId:\"ALKGGDkM4\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(133, 133, 133))\"},children:\"RELEVANT EXPERIENCE\"})}),className:\"framer-6i4q9q\",\"data-framer-name\":\"Role\",fonts:[\"GF;Poppins-600\"],layoutDependency:layoutDependency,layoutId:\"HbtjoR1KF\",style:{\"--extracted-r6o4lv\":\"rgb(133, 133, 133)\",\"--framer-paragraph-spacing\":\"0px\"},variants:{\"wfm366ZFq-hover\":{\"--extracted-r6o4lv\":\"var(--token-5bab7c54-c534-4039-80b0-0a285c5a0d4d, rgb(37, 37, 37))\"},\"ZzVAtOqbt-hover\":{\"--extracted-r6o4lv\":\"var(--token-5bab7c54-c534-4039-80b0-0a285c5a0d4d, rgb(37, 37, 37))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"wfm366ZFq-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5bab7c54-c534-4039-80b0-0a285c5a0d4d, rgb(37, 37, 37)))\"},children:\"AWARDS\"})})},\"ZzVAtOqbt-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5bab7c54-c534-4039-80b0-0a285c5a0d4d, rgb(37, 37, 37)))\"},children:\"RELEVANT EXPERIENCE\"})})},hBUBPe5RL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(133, 133, 133))\"},children:\"AWARDS\"})})},wfm366ZFq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(133, 133, 133))\"},children:\"AWARDS\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zi558x\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"sTRJlN2nl\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-16yrztk\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"x960dP_ws\",style:{backgroundColor:\"var(--token-946340eb-a7ae-429c-9814-2d64efcb295f, rgb(84, 84, 84))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{\"wfm366ZFq-hover\":{backgroundColor:\"var(--token-5bab7c54-c534-4039-80b0-0a285c5a0d4d, rgb(37, 37, 37))\"},\"ZzVAtOqbt-hover\":{backgroundColor:\"var(--token-5bab7c54-c534-4039-80b0-0a285c5a0d4d, rgb(37, 37, 37))\",rotate:0},BarFfvCld:{rotate:-45},hBUBPe5RL:{rotate:0},wfm366ZFq:{rotate:0}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-5gq7ir\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"DXeKa2Id6\",style:{backgroundColor:\"var(--token-946340eb-a7ae-429c-9814-2d64efcb295f, rgb(84, 84, 84))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:-90},variants:{\"wfm366ZFq-hover\":{backgroundColor:\"var(--token-5bab7c54-c534-4039-80b0-0a285c5a0d4d, rgb(37, 37, 37))\"},\"ZzVAtOqbt-hover\":{backgroundColor:\"var(--token-5bab7c54-c534-4039-80b0-0a285c5a0d4d, rgb(37, 37, 37))\"},BarFfvCld:{rotate:-135}}})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-i2icnz\",\"data-framer-name\":\"Answer\",layoutDependency:layoutDependency,layoutId:\"sE1vObrrE\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2k9uhe\",layoutDependency:layoutDependency,layoutId:\"a4PInMwRW\",children:[isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:600,pixelWidth:600,src:\"https://framerusercontent.com/images/Y26wdZgdRZw8cYPMGZR8bkeQ7Y.png\",srcSet:\"https://framerusercontent.com/images/Y26wdZgdRZw8cYPMGZR8bkeQ7Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/Y26wdZgdRZw8cYPMGZR8bkeQ7Y.png 600w\"},className:\"framer-1bw2pix\",layoutDependency:layoutDependency,layoutId:\"bG1RzZ9Ux\",style:{borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},...addPropertyOverrides({BarFfvCld:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||250)-0-436)/2+0+0)+0+55+0+0+33.5),pixelHeight:600,pixelWidth:600,sizes:\"55px\",src:\"https://framerusercontent.com/images/Y26wdZgdRZw8cYPMGZR8bkeQ7Y.png\",srcSet:\"https://framerusercontent.com/images/Y26wdZgdRZw8cYPMGZR8bkeQ7Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/Y26wdZgdRZw8cYPMGZR8bkeQ7Y.png 600w\"}},hBUBPe5RL:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||251)-0-437)/2+0+0)+0+55+0+0+33.5),pixelHeight:895,pixelWidth:895,sizes:\"55px\",src:\"https://framerusercontent.com/images/mpHVueMuBhCS8yIoSVTrn3k9S6o.png\",srcSet:\"https://framerusercontent.com/images/mpHVueMuBhCS8yIoSVTrn3k9S6o.png?scale-down-to=512 512w,https://framerusercontent.com/images/mpHVueMuBhCS8yIoSVTrn3k9S6o.png 895w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-946340eb-a7ae-429c-9814-2d64efcb295f, rgb(84, 84, 84)))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-weight\":\"600\"},children:\"Head of UX\"}),\" | Campus Connect AI\"]})}),className:\"framer-qf29lh\",\"data-framer-name\":\"At its core, my work is pillared by the Japanese concept of Society 5.0: a vision for human-centered society where economic progress & solving complex social challenges go hand-in-hand. My journey from rural Illinois to the DFW metroplex has taught me the importance of strategic leadership & empathetic communication, & I use these skills to create lasting impacts through design. Want to connect? Contact me at thelaibaali@gmail.com, & let's work together to create a smarter, more sustainable, & more delightful world for everyone.\",fonts:[\"GF;Poppins-regular\",\"GF;Poppins-600\"],layoutDependency:layoutDependency,layoutId:\"ecvOApL71\",style:{\"--extracted-r6o4lv\":\"var(--token-946340eb-a7ae-429c-9814-2d64efcb295f, rgb(84, 84, 84))\",\"--framer-paragraph-spacing\":\"10px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({hBUBPe5RL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-946340eb-a7ae-429c-9814-2d64efcb295f, rgb(84, 84, 84)))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-weight\":\"600\"},children:\"2024 Case Study Winner\"}),\" | Prof. Leadership Program\"]})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ce5eax\",layoutDependency:layoutDependency,layoutId:\"DbcjsLXx2\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||65)-0-56)/2+0+0)+0+55+0+-253+33.5),pixelHeight:600,pixelWidth:600,sizes:\"55px\",src:\"https://framerusercontent.com/images/Y26wdZgdRZw8cYPMGZR8bkeQ7Y.png\",srcSet:\"https://framerusercontent.com/images/Y26wdZgdRZw8cYPMGZR8bkeQ7Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/Y26wdZgdRZw8cYPMGZR8bkeQ7Y.png 600w\"},className:\"framer-kp78py\",layoutDependency:layoutDependency,layoutId:\"CQhZpY1Zr\",style:{borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},...addPropertyOverrides({BarFfvCld:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||250)-0-436)/2+0+0)+0+55+0+127+33.5),pixelHeight:600,pixelWidth:600,sizes:\"55px\",src:\"https://framerusercontent.com/images/Y26wdZgdRZw8cYPMGZR8bkeQ7Y.png\",srcSet:\"https://framerusercontent.com/images/Y26wdZgdRZw8cYPMGZR8bkeQ7Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/Y26wdZgdRZw8cYPMGZR8bkeQ7Y.png 600w\"}},hBUBPe5RL:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||251)-0-437)/2+0+0)+0+55+0+127+33.5),pixelHeight:895,pixelWidth:895,sizes:\"55px\",src:\"https://framerusercontent.com/images/mpHVueMuBhCS8yIoSVTrn3k9S6o.png\",srcSet:\"https://framerusercontent.com/images/mpHVueMuBhCS8yIoSVTrn3k9S6o.png?scale-down-to=512 512w,https://framerusercontent.com/images/mpHVueMuBhCS8yIoSVTrn3k9S6o.png 895w\"}},wfm366ZFq:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||66)-0-57)/2+0+0)+0+55+0+-253+33.5),pixelHeight:600,pixelWidth:600,sizes:\"55px\",src:\"https://framerusercontent.com/images/Y26wdZgdRZw8cYPMGZR8bkeQ7Y.png\",srcSet:\"https://framerusercontent.com/images/Y26wdZgdRZw8cYPMGZR8bkeQ7Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/Y26wdZgdRZw8cYPMGZR8bkeQ7Y.png 600w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-946340eb-a7ae-429c-9814-2d64efcb295f, rgb(84, 84, 84)))\"},children:[\"Position 2\",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-weight\":\"400\"},children:\" | HPE\"})]})}),className:\"framer-12c8mh1\",\"data-framer-name\":\"At its core, my work is pillared by the Japanese concept of Society 5.0: a vision for human-centered society where economic progress & solving complex social challenges go hand-in-hand. My journey from rural Illinois to the DFW metroplex has taught me the importance of strategic leadership & empathetic communication, & I use these skills to create lasting impacts through design. Want to connect? Contact me at thelaibaali@gmail.com, & let's work together to create a smarter, more sustainable, & more delightful world for everyone.\",fonts:[\"GF;Poppins-600\",\"GF;Poppins-regular\"],layoutDependency:layoutDependency,layoutId:\"wCh9_fJzB\",style:{\"--extracted-r6o4lv\":\"var(--token-946340eb-a7ae-429c-9814-2d64efcb295f, rgb(84, 84, 84))\",\"--framer-paragraph-spacing\":\"10px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({hBUBPe5RL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-946340eb-a7ae-429c-9814-2d64efcb295f, rgb(84, 84, 84)))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-weight\":\"600\"},children:\"2023 Grand Prize\"}),\" | Loyal E. Horton Award\"]})}),fonts:[\"GF;Poppins-regular\",\"GF;Poppins-600\"]}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pywt1f\",layoutDependency:layoutDependency,layoutId:\"qsCvlt2SB\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||65)-0-56)/2+0+0)+0+55+0+-126+33.5),pixelHeight:600,pixelWidth:600,sizes:\"55px\",src:\"https://framerusercontent.com/images/Y26wdZgdRZw8cYPMGZR8bkeQ7Y.png\",srcSet:\"https://framerusercontent.com/images/Y26wdZgdRZw8cYPMGZR8bkeQ7Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/Y26wdZgdRZw8cYPMGZR8bkeQ7Y.png 600w\"},className:\"framer-1jls25q\",layoutDependency:layoutDependency,layoutId:\"uetOC3Dkr\",style:{borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},...addPropertyOverrides({BarFfvCld:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||250)-0-436)/2+0+0)+0+55+0+254+33.5),pixelHeight:600,pixelWidth:600,sizes:\"55px\",src:\"https://framerusercontent.com/images/Y26wdZgdRZw8cYPMGZR8bkeQ7Y.png\",srcSet:\"https://framerusercontent.com/images/Y26wdZgdRZw8cYPMGZR8bkeQ7Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/Y26wdZgdRZw8cYPMGZR8bkeQ7Y.png 600w\"}},hBUBPe5RL:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||251)-0-437)/2+0+0)+0+55+0+254+33.5),pixelHeight:895,pixelWidth:895,sizes:\"55px\",src:\"https://framerusercontent.com/images/mpHVueMuBhCS8yIoSVTrn3k9S6o.png\",srcSet:\"https://framerusercontent.com/images/mpHVueMuBhCS8yIoSVTrn3k9S6o.png?scale-down-to=512 512w,https://framerusercontent.com/images/mpHVueMuBhCS8yIoSVTrn3k9S6o.png 895w\"}},wfm366ZFq:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||66)-0-57)/2+0+0)+0+55+0+-126+33.5),pixelHeight:600,pixelWidth:600,sizes:\"55px\",src:\"https://framerusercontent.com/images/Y26wdZgdRZw8cYPMGZR8bkeQ7Y.png\",srcSet:\"https://framerusercontent.com/images/Y26wdZgdRZw8cYPMGZR8bkeQ7Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/Y26wdZgdRZw8cYPMGZR8bkeQ7Y.png 600w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-946340eb-a7ae-429c-9814-2d64efcb295f, rgb(84, 84, 84)))\"},children:[\"Position 3\",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-weight\":\"400\"},children:\" | HPE\"})]})}),className:\"framer-1gjjb0c\",\"data-framer-name\":\"At its core, my work is pillared by the Japanese concept of Society 5.0: a vision for human-centered society where economic progress & solving complex social challenges go hand-in-hand. My journey from rural Illinois to the DFW metroplex has taught me the importance of strategic leadership & empathetic communication, & I use these skills to create lasting impacts through design. Want to connect? Contact me at thelaibaali@gmail.com, & let's work together to create a smarter, more sustainable, & more delightful world for everyone.\",fonts:[\"GF;Poppins-600\",\"GF;Poppins-regular\"],layoutDependency:layoutDependency,layoutId:\"MkoVjvVEv\",style:{\"--extracted-r6o4lv\":\"var(--token-946340eb-a7ae-429c-9814-2d64efcb295f, rgb(84, 84, 84))\",\"--framer-paragraph-spacing\":\"10px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({hBUBPe5RL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-946340eb-a7ae-429c-9814-2d64efcb295f, rgb(84, 84, 84)))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-weight\":\"600\"},children:\"2021 National Gold Key\"}),\" | Scholastic Art & Writing\"]})}),fonts:[\"GF;Poppins-regular\",\"GF;Poppins-600\"]}},baseVariant,gestureVariant)})]})]}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-17jli27\",\"data-framer-name\":\"Bottom Line\",layoutDependency:layoutDependency,layoutId:\"OxEHvV4zk\",style:{backgroundColor:\"rgba(0, 0, 0, 0.08)\"}})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-NzMy3.framer-1on3pbr, .framer-NzMy3 .framer-1on3pbr { display: block; }\",\".framer-NzMy3.framer-l8yhs6 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 549px; }\",\".framer-NzMy3 .framer-fd00my { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NzMy3 .framer-hf6nge, .framer-NzMy3 .framer-17jli27 { flex: none; height: 1px; overflow: visible; position: relative; width: 100%; z-index: 1; }\",\".framer-NzMy3 .framer-1sot6cj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 10px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-NzMy3 .framer-6i4q9q { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-NzMy3 .framer-zi558x { flex: none; height: 44px; overflow: hidden; position: relative; width: 44px; }\",\".framer-NzMy3 .framer-16yrztk, .framer-NzMy3 .framer-5gq7ir { flex: none; height: 2px; left: calc(50.00000000000002% - 20px / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 2px / 2); width: 20px; will-change: var(--framer-will-change-override, transform); }\",\".framer-NzMy3 .framer-i2icnz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: flex-end; overflow: hidden; padding: 0px 0px 10px 0px; position: relative; width: 100%; }\",\".framer-NzMy3 .framer-2k9uhe, .framer-NzMy3 .framer-ce5eax, .framer-NzMy3 .framer-pywt1f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NzMy3 .framer-1bw2pix, .framer-NzMy3 .framer-kp78py, .framer-NzMy3 .framer-1jls25q { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 55px); position: relative; width: 55px; }\",\".framer-NzMy3 .framer-qf29lh, .framer-NzMy3 .framer-12c8mh1, .framer-NzMy3 .framer-1gjjb0c { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-NzMy3.framer-v-xbyrrs .framer-i2icnz, .framer-NzMy3.framer-v-1iad4u .framer-i2icnz { height: min-content; }\",\".framer-NzMy3.framer-v-xbyrrs .framer-2k9uhe { order: 0; }\",\".framer-NzMy3.framer-v-xbyrrs .framer-ce5eax { order: 1; }\",\".framer-NzMy3.framer-v-xbyrrs .framer-pywt1f { order: 2; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 65\n * @framerIntrinsicWidth 549\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"BarFfvCld\":{\"layout\":[\"fixed\",\"auto\"]},\"wfm366ZFq\":{\"layout\":[\"fixed\",\"auto\"]},\"hBUBPe5RL\":{\"layout\":[\"fixed\",\"auto\"]},\"R7kKqvr3H\":{\"layout\":[\"fixed\",\"auto\"]},\"w_hK553hC\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerD97GMgVlU=withCSS(Component,css,\"framer-NzMy3\");export default FramerD97GMgVlU;FramerD97GMgVlU.displayName=\"Accordion\";FramerD97GMgVlU.defaultProps={height:65,width:549};addPropertyControls(FramerD97GMgVlU,{variant:{options:[\"ZzVAtOqbt\",\"BarFfvCld\",\"wfm366ZFq\",\"hBUBPe5RL\"],optionTitles:[\"Relevant Experience\",\"Relevant Experience 02\",\"Awards\",\"Awards 02\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerD97GMgVlU,[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v23/pxiByp8kv8JHgFVrLEj6V15vFP-KUEg.woff2\",weight:\"600\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v23/pxiEyp8kv8JHgFVrFJXUc1NECPY.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerD97GMgVlU\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"65\",\"framerIntrinsicWidth\":\"549\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"BarFfvCld\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wfm366ZFq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hBUBPe5RL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"R7kKqvr3H\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"w_hK553hC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./D97GMgVlU.map", "// Generated by Framer (6aa4fc0)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,withCSS,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/8aCGinfRQO68tQ3QF42d/YouTube.js\";import Accordion from\"#framer/local/canvasComponent/D97GMgVlU/D97GMgVlU.js\";import Footer from\"#framer/local/canvasComponent/sm056MAWH/sm056MAWH.js\";import NavBar from\"#framer/local/canvasComponent/WCmg_7z8c/WCmg_7z8c.js\";import ArrowLinks from\"#framer/local/canvasComponent/YA_1Kb6hz/YA_1Kb6hz.js\";import IMLaiba from\"#framer/local/canvasComponent/zR5gnFvOe/zR5gnFvOe.js\";import*as sharedStyle from\"#framer/local/css/EOKF8DUNQ/EOKF8DUNQ.js\";import metadataProvider from\"#framer/local/webPageMetadata/VsYfE6YFn/VsYfE6YFn.js\";const YouTubeFonts=getFonts(YouTube);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const IMLaibaFonts=getFonts(IMLaiba);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const AccordionFonts=getFonts(Accordion);const ArrowLinksFonts=getFonts(ArrowLinks);const VideoFonts=getFonts(Video);const FooterFonts=getFonts(Footer);const NavBarFonts=getFonts(NavBar);const breakpoints={};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-1TkiG\";const variantClassNames={Sj0pQaXY9:\"framer-v-t76pys\"};const transition1={bounce:.2,delay:0,duration:2,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-150};const animation2={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:150,y:0};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const getProps=({height,id,width,...props})=>{return{...props};};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];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"Sj0pQaXY9\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-t76pys\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(\"nav\",{className:\"framer-k4hu6o\",\"data-framer-name\":\"Nav Bar\"}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-17hqnlq\",\"data-framer-name\":\"Hero\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hqdluq\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1960hz2-container\",isModuleExternal:true,nodeId:\"ttJio7MAs\",scopeId:\"VsYfE6YFn\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:10,bottomLeftRadius:10,bottomRightRadius:10,height:\"100%\",id:\"ttJio7MAs\",isMixedBorderRadius:false,isRed:true,layoutId:\"ttJio7MAs\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:10,topRightRadius:10,url:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-21896fd1-bf8a-45a6-bfff-24b71a1f9e91, rgb(68, 80, 207))\"},children:[\"Why I'm a great fit \u2013 \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-weight\":\"600\"},children:\"in 45 seconds.\"})]})}),className:\"framer-1d2p8fv\",\"data-framer-name\":\"At its core, my work is pillared by the Japanese concept of Society 5.0: a vision for human-centered society where economic progress & solving complex social challenges go hand-in-hand. My journey from rural Illinois to the DFW metroplex has taught me the importance of strategic leadership & empathetic communication, & I use these skills to create lasting impacts through design. Want to connect? Contact me at thelaibaali@gmail.com, & let's work together to create a smarter, more sustainable, & more delightful world for everyone.\",fonts:[\"GF;Poppins-regular\",\"GF;Poppins-600\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-l930cx\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zspbsh\",children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"67px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(38, 38, 38)\"},children:\"Howdy, Discord!\"})}),className:\"framer-1uxps8u\",\"data-framer-appear-id\":\"1uxps8u\",\"data-framer-name\":\"Howdy!\",fonts:[\"GF;Poppins-600\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:87,width:`max((${componentViewport?.width||\"100vw\"} - 450px) / 2, 1px)`,y:(componentViewport?.y||0)+0+64+40+0+0+0+471,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-195vt6e-container\",\"data-framer-appear-id\":\"195vt6e\",initial:animation2,nodeId:\"LKsqO2vX6\",optimized:true,rendersWithMotion:true,scopeId:\"VsYfE6YFn\",children:/*#__PURE__*/_jsx(IMLaiba,{height:\"100%\",id:\"LKsqO2vX6\",layoutId:\"LKsqO2vX6\",style:{width:\"100%\"},variant:\"BoPO7JA8z\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(96, 96, 96)\"},children:\"/lie-bah/  /\u0644\u0627\u0626\u0628\u06C1/\"})}),className:\"framer-1g25kyo\",\"data-framer-name\":\"/lie-bah/ /\u0644\u0627\u0626\u0628\u06C1/\",fonts:[\"GF;Poppins-regular\"],verticalAlignment:\"bottom\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pdkhw8\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--token-946340eb-a7ae-429c-9814-2d64efcb295f, rgb(84, 84, 84))\"},children:[\"I'm a \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-weight\":\"600\"},children:\"HypeSquad Bravery Product Designer\"}),\" crafting thoughtful products with an ownership mindset.\"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--token-946340eb-a7ae-429c-9814-2d64efcb295f, rgb(84, 84, 84))\"},children:\"I believe I\u2019m a strong fit for the Product Designer role because I understand the communities Discord fosters & I know how to build meaningful systems that enhance those experiences.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--token-946340eb-a7ae-429c-9814-2d64efcb295f, rgb(84, 84, 84))\"},children:\"Let's design a multiplayer future for everyone.\"})]}),className:\"framer-1aoqal4\",\"data-framer-name\":\"At its core, my work is pillared by the Japanese concept of Society 5.0: a vision for human-centered society where economic progress & solving complex social challenges go hand-in-hand. My journey from rural Illinois to the DFW metroplex has taught me the importance of strategic leadership & empathetic communication, & I use these skills to create lasting impacts through design. Want to connect? Contact me at thelaibaali@gmail.com, & let's work together to create a smarter, more sustainable, & more delightful world for everyone.\",fonts:[\"GF;Poppins-regular\",\"GF;Poppins-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16ddxhn\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:65,width:`max((${componentViewport?.width||\"100vw\"} - 450px) / 2, 1px)`,y:(componentViewport?.y||0)+0+64+40+0+754+0+435+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-104x3cu-container\",nodeId:\"TY1_daqP3\",scopeId:\"VsYfE6YFn\",children:/*#__PURE__*/_jsx(Accordion,{height:\"100%\",id:\"TY1_daqP3\",layoutId:\"TY1_daqP3\",style:{width:\"100%\"},variant:\"ZzVAtOqbt\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:65,width:`max((${componentViewport?.width||\"100vw\"} - 450px) / 2, 1px)`,y:(componentViewport?.y||0)+0+64+40+0+754+0+435+0+65,children:/*#__PURE__*/_jsx(Container,{className:\"framer-rj0t0l-container\",nodeId:\"b7fTXFJJ9\",scopeId:\"VsYfE6YFn\",children:/*#__PURE__*/_jsx(Accordion,{height:\"100%\",id:\"b7fTXFJJ9\",layoutId:\"b7fTXFJJ9\",style:{width:\"100%\"},variant:\"wfm366ZFq\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yfixqr\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+0+64+40+0+754+0+590+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-m6kxc9-container\",nodeId:\"dmHPWEkfz\",scopeId:\"VsYfE6YFn\",children:/*#__PURE__*/_jsx(ArrowLinks,{height:\"100%\",id:\"dmHPWEkfz\",layoutId:\"dmHPWEkfz\",variant:\"drsYwdGDv\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+0+64+40+0+754+0+590+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1upr2zt-container\",nodeId:\"q1N5KFDu_\",scopeId:\"VsYfE6YFn\",children:/*#__PURE__*/_jsx(ArrowLinks,{height:\"100%\",id:\"q1N5KFDu_\",layoutId:\"q1N5KFDu_\",variant:\"aOGNlzLlj\",width:\"100%\"})})})]})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-183vzvi\",\"data-framer-name\":\"Bottom Line\"}),/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1498),pixelHeight:1948,pixelWidth:3e3,positionX:\"left\",positionY:\"top\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/xFwASTl4qHylZHpkMZg4vJPeSsY.png\",srcSet:\"https://framerusercontent.com/images/xFwASTl4qHylZHpkMZg4vJPeSsY.png?scale-down-to=512 512w,https://framerusercontent.com/images/xFwASTl4qHylZHpkMZg4vJPeSsY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xFwASTl4qHylZHpkMZg4vJPeSsY.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/xFwASTl4qHylZHpkMZg4vJPeSsY.png 3000w\"},className:\"framer-zua2vf\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q8lfn9\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"90%\",\"--framer-text-color\":\"rgb(37, 37, 37)\"},children:\"Relevant Work\"})}),className:\"framer-1c1foie\",\"data-framer-name\":\"WORK\",fonts:[\"GF;Poppins-600\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+0+1498+50+0+0+21,children:/*#__PURE__*/_jsx(Container,{className:\"framer-4zopgk-container\",nodeId:\"IgviJGW49\",scopeId:\"VsYfE6YFn\",children:/*#__PURE__*/_jsx(ArrowLinks,{height:\"100%\",id:\"IgviJGW49\",layoutId:\"IgviJGW49\",variant:\"WI4Kg0n5K\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-q2bxm9\",\"data-framer-name\":\"Learned\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8lz31u\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-13uputk\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1y9e0oh-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"EjyiuURow\",scopeId:\"VsYfE6YFn\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:10,bottomLeftRadius:10,bottomRightRadius:10,controls:false,height:\"100%\",id:\"EjyiuURow\",isMixedBorderRadius:false,layoutId:\"EjyiuURow\",loop:true,muted:true,objectFit:\"cover\",playing:false,poster:\"https://framerusercontent.com/images/GlljOn36EOxaeJeFCvpUxRcB18.png\",posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/8qOEYVTzRSJDoomvyzH5QITq0k.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hotpu8\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hkjrxp\",\"data-framer-name\":\"Rectangle 111\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1b0by2t\",\"data-framer-name\":\"\u56FE\u5C42 2\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:98,intrinsicWidth:128,svg:'<svg width=\"128\" height=\"98\" viewBox=\"0 0 128 98\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M108.13 9.02996C99.7766 5.20564 90.9582 2.49254 81.8998 0.959961C80.6603 3.17584 79.5387 5.45569 78.5398 7.78996C68.891 6.33598 59.0787 6.33598 49.4298 7.78996C48.4304 5.45593 47.3089 3.17611 46.0698 0.959961C37.0057 2.50548 28.1815 5.22502 19.8198 9.04996C3.21984 33.61 -1.28016 57.56 0.969836 81.17C10.6912 88.3525 21.5722 93.815 33.1398 97.32C35.7445 93.8168 38.0493 90.1003 40.0298 86.21C36.2682 84.805 32.6375 83.0717 29.1798 81.03C30.0898 80.37 30.9798 79.69 31.8398 79.03C41.9008 83.7614 52.8818 86.2146 63.9998 86.2146C75.1178 86.2146 86.0989 83.7614 96.1598 79.03C97.0298 79.74 97.9198 80.42 98.8198 81.03C95.3555 83.075 91.7182 84.8117 87.9498 86.22C89.9279 90.1085 92.2329 93.8218 94.8398 97.32C106.417 93.8291 117.307 88.3692 127.03 81.18C129.67 53.8 122.52 30.07 108.13 9.02996ZM42.8798 66.65C36.6098 66.65 31.4298 60.96 31.4298 53.96C31.4298 46.96 36.4298 41.22 42.8598 41.22C49.2898 41.22 54.4298 46.96 54.3198 53.96C54.2098 60.96 49.2698 66.65 42.8798 66.65ZM85.1198 66.65C78.8398 66.65 73.6798 60.96 73.6798 53.96C73.6798 46.96 78.6798 41.22 85.1198 41.22C91.5598 41.22 96.6598 46.96 96.5498 53.96C96.4398 60.96 91.5098 66.65 85.1198 66.65Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-5bab7c54-c534-4039-80b0-0a285c5a0d4d, rgb(37, 37, 37))\"},children:[\"Nurturing Trust\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-weight\":\"400\",\"--framer-text-color\":\"var(--token-946340eb-a7ae-429c-9814-2d64efcb295f, rgb(84, 84, 84))\"},children:\" |\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-21896fd1-bf8a-45a6-bfff-24b71a1f9e91, rgb(68, 80, 207))\"},children:\" Discord\"})]})}),className:\"framer-8n9687\",\"data-framer-name\":\"Role\",fonts:[\"GF;Poppins-600\",\"GF;Poppins-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-946340eb-a7ae-429c-9814-2d64efcb295f, rgb(84, 84, 84))\"},children:\"As Discord considers an IPO, improving privacy & safety features for young users is key to meeting investor & regulator scrutiny.\"}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-946340eb-a7ae-429c-9814-2d64efcb295f, rgb(84, 84, 84))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-weight\":\"400\"},children:\"This 2-hour project explores \"}),\"how Discord can adapt existing features to better protect its underage users.\"]})]}),className:\"framer-1l9jyoc\",\"data-framer-name\":\"At its core, my work is pillared by the Japanese concept of Society 5.0: a vision for human-centered society where economic progress & solving complex social challenges go hand-in-hand. My journey from rural Illinois to the DFW metroplex has taught me the importance of strategic leadership & empathetic communication, & I use these skills to create lasting impacts through design. Want to connect? Contact me at thelaibaali@gmail.com, & let's work together to create a smarter, more sustainable, & more delightful world for everyone.\",fonts:[\"GF;Poppins-regular\",\"GF;Poppins-600\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r7ll3h\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zbsoa9\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-m3edqq-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"rTT890d_K\",scopeId:\"VsYfE6YFn\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:10,bottomLeftRadius:10,bottomRightRadius:10,controls:false,height:\"100%\",id:\"rTT890d_K\",isMixedBorderRadius:false,layoutId:\"rTT890d_K\",loop:true,muted:true,objectFit:\"cover\",playing:false,poster:\"https://framerusercontent.com/images/1GtD5bqo0Va3dRyeBsipK0Th8.png\",posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/8qOEYVTzRSJDoomvyzH5QITq0k.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1498+50+65+0+456.5+0+0),pixelHeight:871,pixelWidth:606,positionX:\"center\",positionY:\"center\",sizes:\"96px\",src:\"https://framerusercontent.com/images/SxQtc8O8VJhvuub5p30W0difI.png\",srcSet:\"https://framerusercontent.com/images/SxQtc8O8VJhvuub5p30W0difI.png 606w\"},className:\"framer-15fu7vi\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ulcgtx\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ovljip\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1s9gwlm\",\"data-framer-name\":\"Rectangle 111\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ag352h\",\"data-framer-name\":\"Group 110\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:61,intrinsicWidth:51,svg:'<svg width=\"51\" height=\"61\" viewBox=\"0 0 51 61\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M23.0149 0.0267334C26.8253 0.784684 30.0988 3.63141 28.8445 8.00578C28.4495 5.78187 27.4232 3.42282 25.5987 2.19776C27.4733 4.38936 28.7805 7.78545 27.6513 10.6645C24.8505 9.06926 23.7658 5.72899 23.2124 2.61493C23.1345 2.1772 22.7173 0.123681 23.0149 0.0267334Z\" fill=\"#F8F8F8\"/>\\n<path d=\"M35.4549 4.19809C36.3589 4.23334 37.2044 4.31854 37.9887 4.80034C35.8749 7.53542 32.9184 11.71 29.1191 10.9579C29.9952 8.25812 32.0256 5.92257 34.6929 5.20281C32.6124 5.18813 30.902 6.68052 29.4334 8.07891C29.8033 6.47488 31.1356 5.04417 32.4122 4.60057C33.419 4.25097 34.398 4.15696 35.4522 4.19809H35.4549Z\" fill=\"#F8F8F8\"/>\\n<path d=\"M24.4242 27.2602C25.6841 24.5986 24.9026 23.2002 25.445 19.1313C26.2571 13.0383 28.9633 8.80498 29.1802 8.89018C29.4139 8.98125 27.6088 14.2752 27.2222 19.8393C27.161 20.7295 27.0859 22.3541 27.4725 24.3665C27.6644 25.3683 27.8869 26.5228 28.4877 27.6832C31.2579 33.0476 39.2458 33.0153 39.3848 33.0095C39.3848 33.0095 39.3959 33.0095 39.4098 33.0095C39.4849 33.0065 39.7074 32.9977 39.9967 32.9889C40.3638 32.9801 40.8617 32.9713 41.4513 32.983C41.9965 32.9918 42.6306 33.0153 43.3454 33.0682C44.3522 33.1446 44.8779 33.1828 45.4619 33.2974C45.4619 33.2974 45.715 33.3473 45.9487 33.4002C48.5575 34.0201 50.0188 35.9065 50.0188 35.9065C51.0506 36.9993 50.8303 37.1437 50.65 36.9534C50.4696 36.763 50.5211 36.62 48.5297 35.4684C48.2516 35.3097 47.559 34.9278 46.6162 34.6605C44.8306 34.1523 43.2341 34.352 42.1911 34.6017C42.5444 35.3186 42.6248 36.0016 44.0685 37.9051C44.7889 39.1024 45.8709 39.9988 45.8709 39.9988C46.5384 40.7157 47.4345 41.3322 47.4039 41.391C47.3566 41.4821 46.9972 41.6407 45.6455 40.6418C44.8028 40.019 44.6303 39.8193 41.8129 36.3644C41.4986 35.9796 40.7282 35.0189 39.4877 34.5753C39.0038 34.402 38.4865 34.3197 38.289 34.2903C37.4629 34.164 36.7676 34.1904 36.2865 34.2404C36.3254 34.496 36.381 34.8397 36.47 35.2392C36.9595 37.4602 37.8162 38.794 37.7327 38.8439C37.6465 38.8968 36.6591 37.3838 35.6857 35.489C35.4242 34.9807 35.2157 34.543 35.0655 34.2228C34.7929 34.0377 34.6622 33.9966 34.0864 33.8585C33.3744 33.6881 32.3565 33.3444 31.1244 32.5541C32.0283 34.449 33.4412 36.9226 35.4771 39.1024C36.3254 40.0102 37.1487 40.7241 37.2015 40.7682C37.6715 41.1736 40.6308 43.23 40.9757 43.4563C42.6083 44.5315 44.3105 48.6385 44.0685 48.7766C43.8599 48.8941 43.1201 45.8594 40.2442 43.8793C38.9342 42.9774 37.9858 42.8481 36.0528 41.391C35.1545 40.7153 34.473 40.0748 34.0364 39.6371C33.9835 40.6125 34.0058 42.0226 34.384 43.6501C34.5342 44.2994 35.0182 46.1825 36.42 48.3389C38.7145 51.876 41.7211 53.4477 41.6265 53.5916C41.5542 53.7033 39.8521 52.6457 38.3057 51.4529C36.0779 49.7343 35.1127 48.4681 34.4814 47.2989C34.2644 46.8993 33.1186 44.7812 32.9294 42.2429C32.9072 41.955 32.8571 41.0855 32.6624 39.925C32.4761 38.8145 32.2814 38.1682 32.0394 37.5895C32.0005 37.4955 31.8086 37.046 31.4859 36.4966C30.977 35.63 30.3261 34.8309 30.3261 34.8309C30.162 35.1687 29.959 35.6476 29.8144 36.2469C29.0996 39.1965 30.5542 41.7817 30.3623 41.861C30.2427 41.911 29.5168 40.6977 29.1802 39.1406C29.0606 38.5883 28.8326 37.5366 29.0106 36.2146C29.1719 35.0248 29.5196 34.6664 29.2581 34.0201C29.044 33.4883 28.5016 32.9625 27.9453 32.7832C27.7507 32.7216 27.1721 32.5747 27.1721 32.5747C27.1721 32.5747 26.6326 33.6646 26.5908 33.7498C25.6202 35.7181 25.3504 37.2722 25.3504 37.2722C25.0472 39.3727 25.4338 40.9973 25.6285 41.6877C25.8316 42.4045 26.0847 43.2917 26.7466 44.2054C26.9663 44.508 27.1749 44.7342 27.3807 44.9163C27.6672 45.166 27.9398 45.3864 28.2012 45.5832C28.8493 46.0679 29.1969 46.2707 30.0563 46.7613C30.3706 46.9405 31.7418 47.7454 32.8543 49.0586C33.7666 50.1338 34.1949 51.1826 34.5203 52.0023C35.3074 53.9765 35.4827 55.8214 35.3658 55.8537C35.199 55.9007 34.868 52.1756 32.3787 49.8019C31.5443 49.0057 30.4429 48.3389 30.3957 48.3095C29.361 47.6896 28.4126 47.3371 27.7117 47.1285C28.0705 47.6867 28.5656 48.5269 29.0412 49.6109C29.6475 50.9887 30.6349 53.2332 30.4569 55.889C30.2955 58.3127 29.2192 60.2428 29.0356 60.187C28.8604 60.1312 29.7977 58.3009 29.603 55.6892C29.603 55.6892 29.3165 51.873 26.1931 47.437C26.1097 47.3165 25.7676 46.8171 25.3754 46.0944C25.3754 46.0944 25.3254 45.9945 24.9221 45.1044C24.9221 45.1044 24.8776 47.6749 23.868 50.1192C23.6121 50.7361 23.1699 51.6468 23.0169 51.591C22.7221 51.4852 24.3992 48.1244 23.9792 43.8558C23.8568 42.619 23.6204 41.9345 23.4869 39.8486C23.3701 38.0184 23.448 36.9138 23.5092 36.288C23.6204 35.157 23.8179 34.2257 23.9876 33.553C23.1782 34.2051 22.5997 34.8074 22.2242 35.2304C21.4677 36.0883 21.0171 36.8374 20.5888 37.5483C20.0937 38.368 19.8462 38.7793 19.6766 39.3286C19.3539 40.3628 19.4374 41.247 19.4735 41.6936C19.735 44.7724 19.8796 46.4557 19.6515 47.813C19.1648 50.7067 16.9119 52.5252 16.809 52.4518C16.7089 52.3783 18.6197 50.5804 18.9562 47.6162C19.1926 45.5538 18.6475 43.0978 18.4695 42.2958C18.3527 41.7611 18.2331 41.3234 18.1496 41.0296C17.5961 41.1795 16.7367 41.4909 15.8829 42.193C15.1709 42.7776 14.737 43.4063 14.3949 43.9704C12.7344 46.7054 12.3701 49.2907 12.2394 49.2613C12.1114 49.2319 12.1504 46.5174 13.5772 43.7588C13.8442 43.2418 14.2808 42.4104 15.0679 41.5085C16.7673 39.5637 17.9188 39.784 18.7754 38.0801C19.0146 37.6071 19.1926 37.0607 19.7767 35.9355C19.9797 35.5448 20.2161 35.1159 20.4915 34.6517C20.7474 34.2257 20.9699 33.882 21.12 33.6558C19.8267 34.1288 18.8004 34.355 18.0745 34.4754C17.6768 34.543 17.496 34.5929 17.3597 34.6605C17.3597 34.6605 17.2679 34.7075 17.1817 34.7663C16.6811 35.1129 16.5031 36.7405 16.5031 36.7405C16.3167 38.4385 15.4963 39.7282 15.424 39.7047C15.3961 39.6959 15.4351 39.499 15.6492 38.4032C15.9051 37.0901 16.0497 36.3174 15.9107 35.4184C15.8662 35.1247 15.8078 34.9396 15.6715 34.7751C15.627 34.7222 15.5825 34.6811 15.5324 34.6458C15.1903 34.4137 14.5729 34.399 14.3142 34.3961C13.4242 34.3785 13.3741 34.2286 12.3701 34.2492C12.0892 34.2551 11.0584 34.4519 10.975 34.4754C10.2686 34.6781 10.2045 36.1866 9.89296 36.9534C9.55642 37.7789 9.52119 38.3126 8.36139 39.523C7.62712 40.2897 6.21149 40.8807 6.1058 40.7602C5.93892 40.5722 8.08572 39.928 9.08142 37.2722C9.43743 36.3233 9.57005 34.6992 9.17159 34.3961C8.45023 34.4049 7.61685 34.5841 6.6879 34.7751C5.87854 34.9396 4.8108 35.4302 3.40068 36.1353C0.81686 37.422 0.898163 37.3104 0.875912 37.2722C0.814724 37.1635 3.84263 34.8074 6.6879 33.6528C11.9251 31.5288 14.4505 34.6811 19.0563 32.5923C19.3845 32.4425 22.7221 30.859 24.4242 27.2602Z\" fill=\"#F8F8F8\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-5bab7c54-c534-4039-80b0-0a285c5a0d4d, rgb(37, 37, 37))\"},children:[\"Optimizing Storytelling\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-weight\":\"400\",\"--framer-text-color\":\"var(--token-946340eb-a7ae-429c-9814-2d64efcb295f, rgb(84, 84, 84))\"},children:\" |\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-21896fd1-bf8a-45a6-bfff-24b71a1f9e91, rgb(68, 80, 207))\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-67e5fecd-4cd6-47c7-9466-8cc495817051, rgb(195, 107, 38))\"},children:\"Sacred Roots\"})]})}),className:\"framer-msyrsh\",\"data-framer-name\":\"Role\",fonts:[\"GF;Poppins-600\",\"GF;Poppins-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-946340eb-a7ae-429c-9814-2d64efcb295f, rgb(84, 84, 84))\"},children:\"Designing a social platform for Native families taught me the value of building spaces for users to experiment & create.\"}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-946340eb-a7ae-429c-9814-2d64efcb295f, rgb(84, 84, 84))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-weight\":\"400\"},children:\"I would use what I learned about \"}),\"community-centric design\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-weight\":\"400\"},children:\" to \"}),\"preserve authentic engagement & healthy discourse as Discord continues to scale.\"]})]}),className:\"framer-khu5xd\",\"data-framer-name\":\"At its core, my work is pillared by the Japanese concept of Society 5.0: a vision for human-centered society where economic progress & solving complex social challenges go hand-in-hand. My journey from rural Illinois to the DFW metroplex has taught me the importance of strategic leadership & empathetic communication, & I use these skills to create lasting impacts through design. Want to connect? Contact me at thelaibaali@gmail.com, & let's work together to create a smarter, more sustainable, & more delightful world for everyone.\",fonts:[\"GF;Poppins-regular\",\"GF;Poppins-600\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"55px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"118%\",\"--framer-text-color\":\"rgb(37, 37, 37)\"},children:[\"Let's \",/*#__PURE__*/_jsx(Link,{href:\"mailto:thelaibaali@gmail.com?subject=Let's%20work%20together\",motionChild:true,nodeId:\"lrUzVkiwc\",openInNewTab:true,scopeId:\"VsYfE6YFn\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1j3sem6\",\"data-styles-preset\":\"EOKF8DUNQ\",children:/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-21896fd1-bf8a-45a6-bfff-24b71a1f9e91, rgb(68, 80, 207))\"},children:\"work together\"})})}),\" to create\",/*#__PURE__*/_jsx(\"br\",{}),\"a multiplayer world for everyone.\"]})}),className:\"framer-gbacao\",\"data-framer-name\":\"Lets work together to create\\u2028a sustainable & delightful world for everyone.\",fonts:[\"GF;Poppins-600\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7l58is\",\"data-framer-name\":\"Bottom Line\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:218,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+2646.9,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jxy5n8-container\",nodeId:\"MlklmcIrm\",scopeId:\"VsYfE6YFn\",children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"MlklmcIrm\",layoutId:\"MlklmcIrm\",style:{height:\"100%\",width:\"100%\"},variant:\"e_8P86FoJ\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-t3ye83-container\",layoutScroll:true,nodeId:\"I0NxyYDqr\",scopeId:\"VsYfE6YFn\",children:/*#__PURE__*/_jsx(NavBar,{height:\"100%\",id:\"I0NxyYDqr\",layoutId:\"I0NxyYDqr\",style:{width:\"100%\"},variant:\"tpJN3Vou1\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-1TkiG.framer-10lrzxa, .framer-1TkiG .framer-10lrzxa { display: block; }\",\".framer-1TkiG.framer-t76pys { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1512px; }\",\".framer-1TkiG .framer-k4hu6o { align-content: center; align-items: center; background-color: var(--token-23bd65d7-5ae5-47ec-944e-c993f9f6593f, #f8f8f8); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 64px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1512px; z-index: 1; }\",\".framer-1TkiG .framer-17hqnlq { align-content: flex-start; align-items: flex-start; background-color: var(--token-23bd65d7-5ae5-47ec-944e-c993f9f6593f, #f8f8f8); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 40px 200px 25px 200px; position: relative; width: 100%; }\",\".framer-1TkiG .framer-hqdluq { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-1TkiG .framer-1960hz2-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-1TkiG .framer-1d2p8fv, .framer-1TkiG .framer-1g25kyo, .framer-1TkiG .framer-1aoqal4, .framer-1TkiG .framer-1l9jyoc, .framer-1TkiG .framer-khu5xd { --framer-paragraph-spacing: 10px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-1TkiG .framer-l930cx { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-1TkiG .framer-zspbsh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-1TkiG .framer-1uxps8u { --framer-paragraph-spacing: 22.293577194213867px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-1TkiG .framer-195vt6e-container { flex: none; height: auto; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-1TkiG .framer-pdkhw8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-1TkiG .framer-16ddxhn { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-1TkiG .framer-104x3cu-container, .framer-1TkiG .framer-rj0t0l-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-1TkiG .framer-1yfixqr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-1TkiG .framer-m6kxc9-container, .framer-1TkiG .framer-1upr2zt-container, .framer-1TkiG .framer-4zopgk-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-1TkiG .framer-183vzvi, .framer-1TkiG .framer-7l58is { background-color: rgba(0, 0, 0, 0.08); flex: none; height: 1px; overflow: visible; position: relative; width: 100%; z-index: 1; }\",\".framer-1TkiG .framer-zua2vf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 50px 200px 50px 200px; position: relative; width: 100%; }\",\".framer-1TkiG .framer-1q8lfn9 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-1TkiG .framer-1c1foie { --framer-paragraph-spacing: 15px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-1TkiG .framer-q2bxm9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-1TkiG .framer-8lz31u, .framer-1TkiG .framer-1r7ll3h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: 442px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-1TkiG .framer-13uputk, .framer-1TkiG .framer-zbsoa9 { flex: 1 0 0px; height: 100%; overflow: hidden; position: relative; width: 1px; }\",\".framer-1TkiG .framer-1y9e0oh-container, .framer-1TkiG .framer-m3edqq-container { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; }\",\".framer-1TkiG .framer-hotpu8, .framer-1TkiG .framer-1ulcgtx { 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; overflow: hidden; padding: 0px; position: relative; width: 35%; }\",\".framer-1TkiG .framer-1hkjrxp { background-color: #252525; border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; flex: none; height: 45px; position: relative; width: 45px; }\",\".framer-1TkiG .framer-1b0by2t { flex: none; height: 24px; left: calc(51.11111111111113% - 31px / 2); position: absolute; top: calc(48.88888888888891% - 24px / 2); width: 31px; }\",\".framer-1TkiG .framer-8n9687, .framer-1TkiG .framer-msyrsh { --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-1TkiG .framer-15fu7vi { flex: none; height: 131px; position: absolute; right: 34px; top: 0px; width: 96px; }\",\".framer-1TkiG .framer-ovljip { flex: none; height: 45px; overflow: hidden; position: relative; width: 45px; }\",\".framer-1TkiG .framer-1s9gwlm { background-color: #252525; border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-1TkiG .framer-1ag352h { flex: none; height: 34px; left: calc(48.88888888888891% - 28px / 2); position: absolute; top: calc(51.11111111111113% - 34px / 2); width: 28px; }\",\".framer-1TkiG .framer-gbacao { --framer-paragraph-spacing: 19.7791805px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-1TkiG .framer-1jxy5n8-container { flex: none; height: 218px; position: relative; width: 100%; }\",\".framer-1TkiG .framer-t3ye83-container { flex: none; height: auto; left: 0px; position: fixed; top: 0px; width: 100%; z-index: 1; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 2326\n * @framerIntrinsicWidth 1512\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerVsYfE6YFn=withCSS(Component,css,\"framer-1TkiG\");export default FramerVsYfE6YFn;FramerVsYfE6YFn.displayName=\"Company\";FramerVsYfE6YFn.defaultProps={height:2326,width:1512};addFonts(FramerVsYfE6YFn,[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v23/pxiEyp8kv8JHgFVrFJXUc1NECPY.woff2\",weight:\"400\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v23/pxiByp8kv8JHgFVrLEj6V15vFP-KUEg.woff2\",weight:\"600\"}]},...YouTubeFonts,...IMLaibaFonts,...AccordionFonts,...ArrowLinksFonts,...VideoFonts,...FooterFonts,...NavBarFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerVsYfE6YFn\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1512\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerIntrinsicHeight\":\"2326\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\",\"framerAcceptsLayoutTemplate\":\"true\",\"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", "searchParams", "iframeProps", "u", "wrapperStyle", "videoStyle", "getThumbnailURL", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "res", "pre", "ext", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapsoll8y", "args", "onTap17kmrax", "onTapg2zow7", "onTap27jb3v", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "LayoutGroup", "u", "RichText", "Image2", "getLoadingLazyAtYPosition", "css", "FramerD97GMgVlU", "withCSS", "D97GMgVlU_default", "addPropertyControls", "ControlType", "addFonts", "YouTubeFonts", "getFonts", "Youtube", "RichTextWithOptimizedAppearEffect", "withOptimizedAppearEffect", "RichText", "IMLaibaFonts", "zR5gnFvOe_default", "ContainerWithOptimizedAppearEffect", "Container", "AccordionFonts", "D97GMgVlU_default", "ArrowLinksFonts", "YA_1Kb6hz_default", "VideoFonts", "Video", "FooterFonts", "sm056MAWH_default", "NavBarFonts", "WCmg_7z8c_default", "breakpoints", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "animation2", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "Youtube", "RichText", "x", "RichTextWithOptimizedAppearEffect", "ContainerWithOptimizedAppearEffect", "zR5gnFvOe_default", "D97GMgVlU_default", "YA_1Kb6hz_default", "Image2", "getLoadingLazyAtYPosition", "Video", "SVG", "Link", "sm056MAWH_default", "WCmg_7z8c_default", "css", "FramerVsYfE6YFn", "withCSS", "VsYfE6YFn_default", "addFonts", "YouTubeFonts", "IMLaibaFonts", "AccordionFonts", "ArrowLinksFonts", "VideoFonts", "FooterFonts", "NavBarFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
