{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js", "ssg:https://framerusercontent.com/modules/RHUGwHAmbnKztOgq3LNK/1W5QNo5704dTy5LKB1eU/KPTwrMlrf.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={}));var ThumbnailFormat;(function(ThumbnailFormat){ThumbnailFormat[\"WebP\"]=\"webp\";ThumbnailFormat[\"JPG\"]=\"jpg\";})(ThumbnailFormat||(ThumbnailFormat={}));/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,title,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==\"Off\";const showThumbnail=onCanvas||thumbnail!==\"Off\"&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/_jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL]=parsedURL;// https://developers.google.com/youtube/player_parameters\nconst searchParams=embedURL.searchParams;searchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(!showVideo){// if a browser does not support `loading=lazy`, make sure the video doesn't start playing in the background\nsearchParams.set(\"autoplay\",\"0\");}else if(isAutoplay||// when there is no thumbnail, we don't want to autoplay, unless video is started\nshowThumbnail&&showVideo){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===\"Loop\"){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}const iframeProps={title:title||\"Youtube Video\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",src:embedURL.href,frameBorder:\"0\",onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp};return /*#__PURE__*/_jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onKeyDown:startVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:// Safari sometimes struggles to render border-radius:\n// - on the canvas when changing from 0 to any other value\n// - or when rendering an iframe\nhasBorderRadius&&(showVideo||onCanvas)?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},role:\"presentation\",children:[isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),/*#__PURE__*/_jsx(\"div\",{style:{...videoStyle,background:showThumbnail?`center / cover url(${getThumbnailURL(videoId,thumbnail,getWebPSupported()?\"webp\":\"jpg\")}) no-repeat`:undefined}}),!onCanvas?/*#__PURE__*/_jsx(\"iframe\",{loading:!showVideo?\"lazy\":undefined,style:!showVideo?{...videoStyle,display:\"none\"}:videoStyle,...iframeProps}):null,showVideo?null:/*#__PURE__*/_jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===\"Off\";}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==\"Off\";}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:\"Off\",shouldMute:true,thumbnail:\"Medium Quality\",isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL];}if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");// https://www.youtube.com/watch?v=Fop2oskTug8\nif(pathSegments[0]===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId=pathSegments[1];return[videoId,url];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId=url.pathname.slice(1);const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res,format=\"jpg\"){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst useWebP=format===\"webp\";const pre=useWebP?\"https://i.ytimg.com/vi_webp/\":\"https://i.ytimg.com/vi/\";const ext=useWebP?\"webp\":\"jpg\";switch(res){case\"Low Quality\":return`${pre}${videoId}/hqdefault.${ext}`;case\"Medium Quality\":return`${pre}${videoId}/sddefault.${ext}`;case\"High Quality\":return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}let _getWebPSupported;// https://stackoverflow.com/a/27232658\nfunction getWebPSupported(){// We're going to default to webp because it's pretty widely supported by now\nif(!window){return true;}if(_getWebPSupported!==undefined){return _getWebPSupported;}const element=document.createElement(\"canvas\");if(element.getContext&&element.getContext(\"2d\")){// was able or not to get WebP representation\nreturn _getWebPSupported=element.toDataURL(\"image/webp\").indexOf(\"data:image/webp\")===0;}else{// very old browser like IE 8, canvas not supported\nreturn _getWebPSupported=false;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/_jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/_jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/_jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/_jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/_jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerIntrinsicHeight\":\"315\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"560\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "// Generated by Framer (c07a8c1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,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{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js\";import ElementsFooter from\"#framer/local/canvasComponent/fRzLv2ZNz/fRzLv2ZNz.js\";import NavigationNavigation2 from\"#framer/local/canvasComponent/SAClqPDyK/SAClqPDyK.js\";import*as sharedStyle3 from\"#framer/local/css/cjotZsm27/cjotZsm27.js\";import*as sharedStyle7 from\"#framer/local/css/cN8fkeVSs/cN8fkeVSs.js\";import*as sharedStyle6 from\"#framer/local/css/eELt2ReYC/eELt2ReYC.js\";import*as sharedStyle2 from\"#framer/local/css/Ej_dJ4ORa/Ej_dJ4ORa.js\";import*as sharedStyle9 from\"#framer/local/css/F5tJQITI5/F5tJQITI5.js\";import*as sharedStyle4 from\"#framer/local/css/fCc_ILo4R/fCc_ILo4R.js\";import*as sharedStyle1 from\"#framer/local/css/JBkHwZOyB/JBkHwZOyB.js\";import*as sharedStyle from\"#framer/local/css/qd6jIm4z8/qd6jIm4z8.js\";import*as sharedStyle8 from\"#framer/local/css/wD3gCUB_L/wD3gCUB_L.js\";import*as sharedStyle5 from\"#framer/local/css/XBgscDeUf/XBgscDeUf.js\";import metadataProvider from\"#framer/local/webPageMetadata/KPTwrMlrf/KPTwrMlrf.js\";const NavigationNavigation2Fonts=getFonts(NavigationNavigation2);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const ImageWithOptimizedAppearEffect=withOptimizedAppearEffect(Image);const YouTubeFonts=getFonts(YouTube);const ElementsFooterFonts=getFonts(ElementsFooter);const breakpoints={lHNIP5lTo:\"(min-width: 1200px)\",n2zijCOr2:\"(max-width: 809px)\",R3aqF0NkG:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-4hT6s\";const variantClassNames={lHNIP5lTo:\"framer-v-11qrygb\",n2zijCOr2:\"framer-v-v4d77t\",R3aqF0NkG:\"framer-v-1gd33rt\"};const transition1={damping:40,delay:1,mass:1,stiffness:150,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-30};const transition2={damping:40,delay:.1,mass:1,stiffness:150,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-40};const transition3={damping:60,delay:.4,mass:2,stiffness:200,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const animation5={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:120};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"lHNIP5lTo\",Phone:\"n2zijCOr2\",Tablet:\"R3aqF0NkG\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"lHNIP5lTo\"};};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,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"n2zijCOr2\")return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"n2zijCOr2\")return false;return true;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"lHNIP5lTo\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(0, 0, 0); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-11qrygb\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:\"100vw\",y:-2,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-1qhuhrd-container\",\"data-framer-appear-id\":\"1qhuhrd\",initial:animation1,layoutScroll:true,nodeId:\"IZ1dp4nnT\",optimized:true,rendersWithMotion:true,scopeId:\"KPTwrMlrf\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n2zijCOr2:{variant:\"Bi4R8qXf2\"}},children:/*#__PURE__*/_jsx(NavigationNavigation2,{height:\"100%\",id:\"IZ1dp4nnT\",layoutId:\"IZ1dp4nnT\",style:{width:\"100%\"},variant:\"W8jxBixmS\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-1v3dhwb\",\"data-framer-name\":\"HeroSection\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-uiadpi\",\"data-framer-name\":\"Sections\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ofwgx6\",\"data-framer-name\":\"TopSection\",children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-ocbcch\",\"data-styles-preset\":\"qd6jIm4z8\",children:\"Typeverse\"})}),className:\"framer-6493ik\",\"data-framer-appear-id\":\"6493ik\",\"data-framer-name\":\"Header\",fonts:[\"Inter\"],initial:animation3,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-q35wat\",\"data-styles-preset\":\"JBkHwZOyB\",children:\"Reimagining typography education through community-driven learning and interactive experiences\"})}),className:\"framer-1u056zu\",\"data-framer-appear-id\":\"1u056zu\",\"data-framer-name\":\"Tag\",fonts:[\"Inter\"],initial:animation3,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n2zijCOr2:{animate:undefined,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+346.5),pixelHeight:1290,pixelWidth:2058,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"}, 1300px)`,src:\"https://framerusercontent.com/images/zSyylo5hSuf4ZrQclXr4z48kdk.png\",srcSet:\"https://framerusercontent.com/images/zSyylo5hSuf4ZrQclXr4z48kdk.png?scale-down-to=512 512w,https://framerusercontent.com/images/zSyylo5hSuf4ZrQclXr4z48kdk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zSyylo5hSuf4ZrQclXr4z48kdk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/zSyylo5hSuf4ZrQclXr4z48kdk.png 2058w\"},initial:undefined,optimized:undefined,style:{}},R3aqF0NkG:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+317),pixelHeight:1290,pixelWidth:2058,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"}, 810px)`,src:\"https://framerusercontent.com/images/zSyylo5hSuf4ZrQclXr4z48kdk.png\",srcSet:\"https://framerusercontent.com/images/zSyylo5hSuf4ZrQclXr4z48kdk.png?scale-down-to=512 512w,https://framerusercontent.com/images/zSyylo5hSuf4ZrQclXr4z48kdk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zSyylo5hSuf4ZrQclXr4z48kdk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/zSyylo5hSuf4ZrQclXr4z48kdk.png 2058w\"}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation4,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+317),pixelHeight:1290,pixelWidth:2058,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"}, 1300px)`,src:\"https://framerusercontent.com/images/zSyylo5hSuf4ZrQclXr4z48kdk.png\",srcSet:\"https://framerusercontent.com/images/zSyylo5hSuf4ZrQclXr4z48kdk.png?scale-down-to=512 512w,https://framerusercontent.com/images/zSyylo5hSuf4ZrQclXr4z48kdk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zSyylo5hSuf4ZrQclXr4z48kdk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/zSyylo5hSuf4ZrQclXr4z48kdk.png 2058w\"},className:\"framer-19f3u98\",\"data-framer-appear-id\":\"19f3u98\",\"data-framer-name\":\"HeroImage\",initial:animation5,optimized:true,style:{transformPerspective:1200}})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ejmijm\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1maro5f\",\"data-framer-name\":\"Interview figjam\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n2zijCOr2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-7pyr04\",\"data-styles-preset\":\"cjotZsm27\",children:\"All questions, no community\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-13enc2g\",\"data-styles-preset\":\"Ej_dJ4ORa\",children:\"All questions, no community\"})}),className:\"framer-136oyu1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n2zijCOr2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-7pyr04\",\"data-styles-preset\":\"cjotZsm27\",children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Learning typography online can be isolating and uninspiring. Many learners struggle to apply concepts effectively without real-time feedback, guidance, or a sense of community.. \"}),\"Insights from 8 initial interviews.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-134i6hn\",\"data-styles-preset\":\"fCc_ILo4R\",children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Learning typography online can be isolating and uninspiring. Many learners struggle to apply concepts effectively without real-time feedback, guidance, or a sense of community.. \"}),\"Insights from 8 initial interviews.\"]})}),className:\"framer-lbszep\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m2va47 hidden-11qrygb hidden-1gd33rt\",\"data-framer-name\":\"Small Heading\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-a2ff6e51-46f4-43bd-9193-b115ff4b5b03, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"interview findings\"})}),className:\"framer-93ihy3\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1my18sa\"})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n2zijCOr2:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+632+3+192.8),pixelHeight:817,pixelWidth:1942,positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px)`,src:\"https://framerusercontent.com/images/ZDCFmf2AVVHZSAXMpVG1eImZjc.png\",srcSet:\"https://framerusercontent.com/images/ZDCFmf2AVVHZSAXMpVG1eImZjc.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZDCFmf2AVVHZSAXMpVG1eImZjc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZDCFmf2AVVHZSAXMpVG1eImZjc.png 1942w\"}},R3aqF0NkG:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2720.7037+0+136),pixelHeight:817,pixelWidth:1942,positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 100px)`,src:\"https://framerusercontent.com/images/ZDCFmf2AVVHZSAXMpVG1eImZjc.png\",srcSet:\"https://framerusercontent.com/images/ZDCFmf2AVVHZSAXMpVG1eImZjc.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZDCFmf2AVVHZSAXMpVG1eImZjc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZDCFmf2AVVHZSAXMpVG1eImZjc.png 1942w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1100+0+232),pixelHeight:817,pixelWidth:1942,positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 140px)`,src:\"https://framerusercontent.com/images/ZDCFmf2AVVHZSAXMpVG1eImZjc.png\",srcSet:\"https://framerusercontent.com/images/ZDCFmf2AVVHZSAXMpVG1eImZjc.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZDCFmf2AVVHZSAXMpVG1eImZjc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZDCFmf2AVVHZSAXMpVG1eImZjc.png 1942w\"},className:\"framer-k3bo9e\"})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-2lzjzu hidden-v4d77t\",\"data-framer-name\":\"WHAT IS\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mkc9e2\",\"data-framer-name\":\"typeverse\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-13enc2g\",\"data-styles-preset\":\"Ej_dJ4ORa\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Reimagining Typography Education with Typeverse\"})}),className:\"framer-28a7p9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-134i6hn\",\"data-styles-preset\":\"fCc_ILo4R\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\" TypeVerse is an immersive typography education platform that transforms learning through community-driven experiences and expert guidance. The app combines structured lessons and hands-on exercises with a vibrant space where designers as well as non designers interested in typography share work, exchange feedback, and build lasting connections. Through personalized mentorship and collaborative learning, TypeVerse empowers both beginners and experienced designers to master typography while being part of an engaged creative community.\"})}),className:\"framer-7opn8b\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gwe2ie hidden-v4d77t\",\"data-framer-name\":\"Key features\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-13enc2g\",\"data-styles-preset\":\"Ej_dJ4ORa\",children:\"Typeverse Toolkit\"})}),className:\"framer-jxj7yr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-184dhkp\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-17yzjqw\",\"data-framer-name\":\"Lessons and Exercise\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dwryrf\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1a8ubua-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"iP5iXYUH6\",scopeId:\"KPTwrMlrf\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"iP5iXYUH6\",isMixedBorderRadius:false,isRed:true,layoutId:\"iP5iXYUH6\",play:\"On\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/bXaoj6s0ibc\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pudtbb\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"ol\",{className:\"framer-styles-preset-q35wat\",\"data-styles-preset\":\"JBkHwZOyB\",children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"h3\",{children:/*#__PURE__*/_jsx(\"strong\",{children:\"Lessons and Exercises\"})})})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-134i6hn\",\"data-styles-preset\":\"fCc_ILo4R\",children:\"Master typography fundamentals through interactive, hands-on lessons that blend theory with practical exercises, designed for both beginners and advanced practitioners.\"})]}),className:\"framer-1yc8y2\",fonts:[\"Inter\",\"Inter-Bold\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-gswwa4\",\"data-framer-name\":\"Community\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xj71cg\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-4wmgjc\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1o58m1s\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"ol\",{className:\"framer-styles-preset-q35wat\",\"data-styles-preset\":\"JBkHwZOyB\",start:\"2\",children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"h3\",{children:/*#__PURE__*/_jsx(\"strong\",{children:\"Community and Feedback\"})})})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-134i6hn\",\"data-styles-preset\":\"fCc_ILo4R\",children:\"Join a vibrant ecosystem of typography enthusiasts where you can share work, exchange ideas, and grow together through collaborative learning experiences. Get feedback on your visual work.\"})]}),className:\"framer-126upmk\",fonts:[\"Inter\",\"Inter-Bold\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-yurwr2-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"WX5el0OQg\",scopeId:\"KPTwrMlrf\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"WX5el0OQg\",isMixedBorderRadius:false,isRed:true,layoutId:\"WX5el0OQg\",play:\"On\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/m3KCJyOgtn4\",width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ttms9x\",\"data-framer-name\":\"Mentor Hub\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nlzlw8\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{R3aqF0NkG:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1421.7037+20+87+0+571+0+1.7908+16.9949),pixelHeight:1306,pixelWidth:2062,positionX:\"center\",positionY:\"center\",sizes:`calc(max(min(${componentViewport?.width||\"100vw\"}, 1200px) - 100px, 50px) * 0.6015)`,src:\"https://framerusercontent.com/images/U5YpiJrrHY843uDGmKPn1WJpcY.gif\",srcSet:\"https://framerusercontent.com/images/U5YpiJrrHY843uDGmKPn1WJpcY.gif?scale-down-to=512 512w,https://framerusercontent.com/images/U5YpiJrrHY843uDGmKPn1WJpcY.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/U5YpiJrrHY843uDGmKPn1WJpcY.gif?scale-down-to=2048 2048w,https://framerusercontent.com/images/U5YpiJrrHY843uDGmKPn1WJpcY.gif 2062w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2523+0+92+0+874.5+0+2.7771+4.5965),pixelHeight:1306,pixelWidth:2062,positionX:\"center\",positionY:\"center\",sizes:`calc(max(min(${componentViewport?.width||\"100vw\"}, 1200px) - 140px, 50px) * 0.6009)`,src:\"https://framerusercontent.com/images/U5YpiJrrHY843uDGmKPn1WJpcY.gif\",srcSet:\"https://framerusercontent.com/images/U5YpiJrrHY843uDGmKPn1WJpcY.gif?scale-down-to=512 512w,https://framerusercontent.com/images/U5YpiJrrHY843uDGmKPn1WJpcY.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/U5YpiJrrHY843uDGmKPn1WJpcY.gif?scale-down-to=2048 2048w,https://framerusercontent.com/images/U5YpiJrrHY843uDGmKPn1WJpcY.gif 2062w\"},className:\"framer-129a4mf\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-flzdl8\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"ol\",{className:\"framer-styles-preset-q35wat\",\"data-styles-preset\":\"JBkHwZOyB\",start:\"3\",children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"h3\",{children:/*#__PURE__*/_jsx(\"strong\",{children:\"Mentor Hub\"})})})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-134i6hn\",\"data-styles-preset\":\"fCc_ILo4R\",children:\"Connect with experienced typography experts for personalized feedback and guidance, accelerating your learning journey through real-world insights.\"})]}),className:\"framer-19b4fop\",fonts:[\"Inter\",\"Inter-Bold\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-110b44q\",\"data-framer-name\":\"Daily Quiz\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f54oxo\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-kuk8gj\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"ol\",{className:\"framer-styles-preset-q35wat\",\"data-styles-preset\":\"JBkHwZOyB\",start:\"4\",children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"h3\",{children:/*#__PURE__*/_jsx(\"strong\",{children:\"Daily Quiz \"})})})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-134i6hn\",\"data-styles-preset\":\"fCc_ILo4R\",children:\"Challenge yourself with bite-sized typography quizzes that reinforce learning through daily practice and friendly competition.\"})]}),className:\"framer-1ecb40d\",fonts:[\"Inter\",\"Inter-Bold\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ip7en1-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"qXhBBdrs9\",scopeId:\"KPTwrMlrf\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"qXhBBdrs9\",isMixedBorderRadius:false,isRed:true,layoutId:\"qXhBBdrs9\",play:\"On\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/OuoOqNYsR_Q\",width:\"100%\"})})})]})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17slkhh\",\"data-framer-name\":\"user feedback \",children:[isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ugp5ak hidden-11qrygb hidden-1gd33rt\",\"data-framer-name\":\"Small Heading\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-9h77ii\",\"data-styles-preset\":\"XBgscDeUf\",children:\"Testing\"})}),className:\"framer-ah3jv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-f7jy5m\"})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n2zijCOr2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-7pyr04\",\"data-styles-preset\":\"cjotZsm27\",children:\"The users loved\u2026\"})})},R3aqF0NkG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-phkk77\",\"data-styles-preset\":\"eELt2ReYC\",children:[\"User Testing \",/*#__PURE__*/_jsx(\"br\",{}),\"Feedback\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-13enc2g\",\"data-styles-preset\":\"Ej_dJ4ORa\",children:\"The users loved\u2026\"})}),className:\"framer-dffxc8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n2zijCOr2:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1051.8+20+129),pixelHeight:742,pixelWidth:1531,positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px)`,src:\"https://framerusercontent.com/images/mi2rf7BagS0z9gEAfFfEPy8KqA.png\",srcSet:\"https://framerusercontent.com/images/mi2rf7BagS0z9gEAfFfEPy8KqA.png?scale-down-to=512 512w,https://framerusercontent.com/images/mi2rf7BagS0z9gEAfFfEPy8KqA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mi2rf7BagS0z9gEAfFfEPy8KqA.png 1531w\"}},R3aqF0NkG:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3321.7037+0+112.4),pixelHeight:742,pixelWidth:1531,positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 100px)`,src:\"https://framerusercontent.com/images/mi2rf7BagS0z9gEAfFfEPy8KqA.png\",srcSet:\"https://framerusercontent.com/images/mi2rf7BagS0z9gEAfFfEPy8KqA.png?scale-down-to=512 512w,https://framerusercontent.com/images/mi2rf7BagS0z9gEAfFfEPy8KqA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mi2rf7BagS0z9gEAfFfEPy8KqA.png 1531w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4416+0+92),pixelHeight:742,pixelWidth:1531,positionX:\"center\",positionY:\"center\",sizes:`calc((min(${componentViewport?.width||\"100vw\"}, 1200px) - 140px) * 0.9981)`,src:\"https://framerusercontent.com/images/mi2rf7BagS0z9gEAfFfEPy8KqA.png\",srcSet:\"https://framerusercontent.com/images/mi2rf7BagS0z9gEAfFfEPy8KqA.png?scale-down-to=512 512w,https://framerusercontent.com/images/mi2rf7BagS0z9gEAfFfEPy8KqA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mi2rf7BagS0z9gEAfFfEPy8KqA.png 1531w\"},className:\"framer-hhvfuf\"})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b68dbf hidden-v4d77t\",\"data-framer-name\":\"high fidelity\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{R3aqF0NkG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-phkk77\",\"data-styles-preset\":\"eELt2ReYC\",children:[\"High Fidelity \",/*#__PURE__*/_jsx(\"br\",{}),\"Prototype\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-13enc2g\",\"data-styles-preset\":\"Ej_dJ4ORa\",children:\"Insight to Iteration\"})}),className:\"framer-t278oi\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h3nor5\",\"data-framer-name\":\"Insight 1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-7pyr04\",\"data-styles-preset\":\"cjotZsm27\",children:\"Insight 1\"})}),className:\"framer-3rrch4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-etx2gb\",\"data-styles-preset\":\"cN8fkeVSs\",children:\"Students have preferences for more visual and practical lessons and exercises.\"}),/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-etx2gb\",\"data-styles-preset\":\"cN8fkeVSs\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-1o4n1jx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s10ekx\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{R3aqF0NkG:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3777.1037+17+112.4+40+165+0),pixelHeight:1270,pixelWidth:1512,positionX:\"center\",positionY:\"top\",sizes:\"366px\",src:\"https://framerusercontent.com/images/6G5ZBL2OjuXl0tPmfsMoMoeOmo.png\",srcSet:\"https://framerusercontent.com/images/6G5ZBL2OjuXl0tPmfsMoMoeOmo.png?scale-down-to=512 512w,https://framerusercontent.com/images/6G5ZBL2OjuXl0tPmfsMoMoeOmo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/6G5ZBL2OjuXl0tPmfsMoMoeOmo.png 1512w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5069+0+92+40+110.5+0),pixelHeight:1270,pixelWidth:1512,positionX:\"center\",positionY:\"top\",sizes:\"661px\",src:\"https://framerusercontent.com/images/6G5ZBL2OjuXl0tPmfsMoMoeOmo.png\",srcSet:\"https://framerusercontent.com/images/6G5ZBL2OjuXl0tPmfsMoMoeOmo.png?scale-down-to=512 512w,https://framerusercontent.com/images/6G5ZBL2OjuXl0tPmfsMoMoeOmo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/6G5ZBL2OjuXl0tPmfsMoMoeOmo.png 1512w\"},className:\"framer-13n2545\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19yq35j\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"ol\",{className:\"framer-styles-preset-gkwydx\",\"data-styles-preset\":\"wD3gCUB_L\",children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:'\"Practical Exercise is more engaging than theoretical ones\"'})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"The lesson format, titles and description can be more catchy\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"The format of the lessons and exercise can be improved.\"})})]})}),className:\"framer-1dzxve8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-q35wat\",\"data-styles-preset\":\"JBkHwZOyB\",children:\"New Design:\"})}),className:\"framer-1pi56k5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{R3aqF0NkG:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3777.1037+17+112.4+40+548),pixelHeight:1027,pixelWidth:943,positionX:\"center\",positionY:\"center\",sizes:`calc((min(${componentViewport?.width||\"100vw\"}, 1200px) - 100px) * 0.9679)`,src:\"https://framerusercontent.com/images/m0AU2XaoJi865eyphZPpmZQnE.png\",srcSet:\"https://framerusercontent.com/images/m0AU2XaoJi865eyphZPpmZQnE.png?scale-down-to=1024 940w,https://framerusercontent.com/images/m0AU2XaoJi865eyphZPpmZQnE.png 943w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5069+0+92+40+585.5),pixelHeight:1027,pixelWidth:943,positionX:\"center\",positionY:\"center\",sizes:`calc((min(${componentViewport?.width||\"100vw\"}, 1200px) - 140px) * 0.9679)`,src:\"https://framerusercontent.com/images/m0AU2XaoJi865eyphZPpmZQnE.png\",srcSet:\"https://framerusercontent.com/images/m0AU2XaoJi865eyphZPpmZQnE.png?scale-down-to=1024 940w,https://framerusercontent.com/images/m0AU2XaoJi865eyphZPpmZQnE.png 943w\"},className:\"framer-6w8c85\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{R3aqF0NkG:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3777.1037+17+112.4+40+1316),pixelHeight:591,pixelWidth:1310,positionX:\"center\",positionY:\"center\",sizes:`calc((min(${componentViewport?.width||\"100vw\"}, 1200px) - 100px) * 0.9679)`,src:\"https://framerusercontent.com/images/FFFQKfmd0KYitArCE2THscSDog.png\",srcSet:\"https://framerusercontent.com/images/FFFQKfmd0KYitArCE2THscSDog.png?scale-down-to=512 512w,https://framerusercontent.com/images/FFFQKfmd0KYitArCE2THscSDog.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/FFFQKfmd0KYitArCE2THscSDog.png 1310w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5069+0+92+40+1468.5),pixelHeight:591,pixelWidth:1310,positionX:\"center\",positionY:\"center\",sizes:`calc((min(${componentViewport?.width||\"100vw\"}, 1200px) - 140px) * 0.9679)`,src:\"https://framerusercontent.com/images/FFFQKfmd0KYitArCE2THscSDog.png\",srcSet:\"https://framerusercontent.com/images/FFFQKfmd0KYitArCE2THscSDog.png?scale-down-to=512 512w,https://framerusercontent.com/images/FFFQKfmd0KYitArCE2THscSDog.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/FFFQKfmd0KYitArCE2THscSDog.png 1310w\"},className:\"framer-1nzanxk\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hmxxyb\",\"data-framer-name\":\"Insight 3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-7pyr04\",\"data-styles-preset\":\"cjotZsm27\",children:\"Insight 2\"})}),className:\"framer-11tydjz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-etx2gb\",\"data-styles-preset\":\"cN8fkeVSs\",children:\"Students value mentors with expertise in specific tools and typefaces, for guidance that aligns with their career goal.\"}),/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-etx2gb\",\"data-styles-preset\":\"cN8fkeVSs\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-wddtjy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nnhzw5\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{R3aqF0NkG:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3777.1037+17+1814.4+40+167+0),pixelHeight:1702,pixelWidth:1512,positionX:\"center\",positionY:\"top\",sizes:\"414px\",src:\"https://framerusercontent.com/images/xAibgd0DZaf5cJ1CfTolPNGSIA.png\",srcSet:\"https://framerusercontent.com/images/xAibgd0DZaf5cJ1CfTolPNGSIA.png?scale-down-to=1024 909w,https://framerusercontent.com/images/xAibgd0DZaf5cJ1CfTolPNGSIA.png 1512w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5069+0+2067+40+123+0),pixelHeight:1702,pixelWidth:1512,positionX:\"center\",positionY:\"top\",sizes:\"414px\",src:\"https://framerusercontent.com/images/xAibgd0DZaf5cJ1CfTolPNGSIA.png\",srcSet:\"https://framerusercontent.com/images/xAibgd0DZaf5cJ1CfTolPNGSIA.png?scale-down-to=1024 909w,https://framerusercontent.com/images/xAibgd0DZaf5cJ1CfTolPNGSIA.png 1512w\"},className:\"framer-1yn5lbv\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16q7luj\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"ol\",{className:\"framer-styles-preset-gkwydx\",\"data-styles-preset\":\"wD3gCUB_L\",children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:'Users were interested in learning more about \"Mentor Hub\" and its offerings.'})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Individual details about mentor not available. \"})})]})}),className:\"framer-x74raz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-q35wat\",\"data-styles-preset\":\"JBkHwZOyB\",children:\"New Design:\"})}),className:\"framer-1gxawuq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{R3aqF0NkG:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3777.1037+17+1814.4+40+615),pixelHeight:1378,pixelWidth:903,positionX:\"center\",positionY:\"center\",sizes:`calc((min(${componentViewport?.width||\"100vw\"}, 1200px) - 100px) * 0.9676)`,src:\"https://framerusercontent.com/images/jHvyrzcuw08n1Jq8B5PLCCWFwT4.png\",srcSet:\"https://framerusercontent.com/images/jHvyrzcuw08n1Jq8B5PLCCWFwT4.png?scale-down-to=1024 671w,https://framerusercontent.com/images/jHvyrzcuw08n1Jq8B5PLCCWFwT4.png 903w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5069+0+2067+40+571),pixelHeight:1378,pixelWidth:903,positionX:\"center\",positionY:\"center\",sizes:`calc((min(${componentViewport?.width||\"100vw\"}, 1200px) - 140px) * 0.9679)`,src:\"https://framerusercontent.com/images/jHvyrzcuw08n1Jq8B5PLCCWFwT4.png\",srcSet:\"https://framerusercontent.com/images/jHvyrzcuw08n1Jq8B5PLCCWFwT4.png?scale-down-to=1024 671w,https://framerusercontent.com/images/jHvyrzcuw08n1Jq8B5PLCCWFwT4.png 903w\"},className:\"framer-6lhqu7\"})})]})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1o5w7ge hidden-11qrygb hidden-1gd33rt\",\"data-framer-name\":\"high fidelity mobile\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f51747\",\"data-framer-name\":\"Small Heading\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-9h77ii\",\"data-styles-preset\":\"XBgscDeUf\",children:\"Final Deliverable\"})}),className:\"framer-1jsl6qb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wa9dts\"})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-7pyr04\",\"data-styles-preset\":\"cjotZsm27\",children:[\"High Fidelity \",/*#__PURE__*/_jsx(\"br\",{}),\"Prototype\"]})}),className:\"framer-1yxwf4r\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-134i6hn\",\"data-styles-preset\":\"fCc_ILo4R\",children:\"The high-fidelity prototype incorporates key insights from usability testing, refining the interface and learning experience to better serve both design students and professionals. The design focuses on structured learning paths while maintaining flexibility for different user needs.\"})}),className:\"framer-alfhah\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-7pyr04\",\"data-styles-preset\":\"cjotZsm27\",children:\"Key Features\"})}),className:\"framer-gmebus\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5im2nz\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-8yl4lc\",\"data-framer-name\":\"Lessons and Exercise\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ehlfww\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-4dxlor-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"y09mF_tYS\",scopeId:\"KPTwrMlrf\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"y09mF_tYS\",isMixedBorderRadius:false,isRed:true,layoutId:\"y09mF_tYS\",play:\"On\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/bXaoj6s0ibc\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bkigbc\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"ol\",{className:\"framer-styles-preset-9h77ii\",\"data-styles-preset\":\"XBgscDeUf\",children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"h4\",{children:/*#__PURE__*/_jsx(\"strong\",{children:\"Lessons and Exercises\"})})})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-134i6hn\",\"data-styles-preset\":\"fCc_ILo4R\",children:\"Master typography fundamentals through interactive, hands-on lessons that blend theory with practical exercises, designed for both beginners and advanced practitioners.\"})]}),className:\"framer-1gxy4nq\",fonts:[\"Inter\",\"Inter-Bold\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1n56xh3\",\"data-framer-name\":\"Community\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ykr0fg\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ic0zrg\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-55529z\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"ol\",{className:\"framer-styles-preset-9h77ii\",\"data-styles-preset\":\"XBgscDeUf\",start:\"2\",children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"h4\",{children:/*#__PURE__*/_jsx(\"strong\",{children:\"Community and Feedback\"})})})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-134i6hn\",\"data-styles-preset\":\"fCc_ILo4R\",children:\"Join a vibrant ecosystem of typography enthusiasts where you can share work, exchange ideas, and grow together through collaborative learning experiences. Get feedback on your visual work.\"})]}),className:\"framer-gfmn2z\",fonts:[\"Inter\",\"Inter-Bold\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-m2eno-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"WtIzyPpL1\",scopeId:\"KPTwrMlrf\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"WtIzyPpL1\",isMixedBorderRadius:false,isRed:true,layoutId:\"WtIzyPpL1\",play:\"On\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/m3KCJyOgtn4\",width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-109iy68\",\"data-framer-name\":\"Mentor Hub\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rmjjjy\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n2zijCOr2:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1421.8+20+330.2745+0+898.4756+0+2.7901+0+196.4924),pixelHeight:1306,pixelWidth:2062,positionX:\"center\",positionY:\"center\",sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px, 50px)`,src:\"https://framerusercontent.com/images/U5YpiJrrHY843uDGmKPn1WJpcY.gif\",srcSet:\"https://framerusercontent.com/images/U5YpiJrrHY843uDGmKPn1WJpcY.gif?scale-down-to=512 512w,https://framerusercontent.com/images/U5YpiJrrHY843uDGmKPn1WJpcY.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/U5YpiJrrHY843uDGmKPn1WJpcY.gif?scale-down-to=2048 2048w,https://framerusercontent.com/images/U5YpiJrrHY843uDGmKPn1WJpcY.gif 2062w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:1306,pixelWidth:2062,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/U5YpiJrrHY843uDGmKPn1WJpcY.gif\",srcSet:\"https://framerusercontent.com/images/U5YpiJrrHY843uDGmKPn1WJpcY.gif?scale-down-to=512 512w,https://framerusercontent.com/images/U5YpiJrrHY843uDGmKPn1WJpcY.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/U5YpiJrrHY843uDGmKPn1WJpcY.gif?scale-down-to=2048 2048w,https://framerusercontent.com/images/U5YpiJrrHY843uDGmKPn1WJpcY.gif 2062w\"},className:\"framer-1qyqyt5\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1iu3wdw\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"ol\",{className:\"framer-styles-preset-9h77ii\",\"data-styles-preset\":\"XBgscDeUf\",start:\"3\",children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"h4\",{children:/*#__PURE__*/_jsx(\"strong\",{children:\"Mentor Hub\"})})})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-134i6hn\",\"data-styles-preset\":\"fCc_ILo4R\",children:\"Connect with experienced typography experts for personalized feedback and guidance, accelerating your learning journey through real-world insights.\"})]}),className:\"framer-1rd2go0\",fonts:[\"Inter\",\"Inter-Bold\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gthbex\",\"data-framer-name\":\"Daily Quiz\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-omfjek\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jtoh1r\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"ol\",{className:\"framer-styles-preset-9h77ii\",\"data-styles-preset\":\"XBgscDeUf\",start:\"4\",children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"h4\",{children:/*#__PURE__*/_jsx(\"strong\",{children:\"Daily Quiz \"})})})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-134i6hn\",\"data-styles-preset\":\"fCc_ILo4R\",children:\"Challenge yourself with bite-sized typography quizzes that reinforce learning through daily practice and friendly competition.\"})]}),className:\"framer-602y80\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-v2e19y-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"iVIYoTE0H\",scopeId:\"KPTwrMlrf\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"iVIYoTE0H\",isMixedBorderRadius:false,isRed:true,layoutId:\"iVIYoTE0H\",play:\"On\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/OuoOqNYsR_Q\",width:\"100%\"})})})]})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13dpkd0\",\"data-framer-name\":\"reflection\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n2zijCOr2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-7pyr04\",\"data-styles-preset\":\"cjotZsm27\",children:\"Key Takeaways\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-13enc2g\",\"data-styles-preset\":\"Ej_dJ4ORa\",children:\"Key Takeaways\"})}),className:\"framer-1czs1pp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zrdzoa\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-bexisc\",\"data-framer-name\":\"job board\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-9h77ii\",\"data-styles-preset\":\"XBgscDeUf\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"I discovered that creating meaningful learning experiences requires more than just well-structured content.\"})}),className:\"framer-1n3yd4z\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-wp4gxv\",\"data-border\":true,\"data-framer-name\":\"monetary\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-9h77ii\",\"data-styles-preset\":\"XBgscDeUf\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Learned how to design for educational platform and gamification.\"})}),className:\"framer-1eoy19s\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-zxclu9\",\"data-border\":true,\"data-framer-name\":\"Product proposition\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-9h77ii\",\"data-styles-preset\":\"XBgscDeUf\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Educational platforms don't just transfer knowledge, they build sustainable communities where learners can grow into mentor.\"})}),className:\"framer-1oil34v\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-kx9zp\",\"data-framer-name\":\"prototype\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-prakpp\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n2zijCOr2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-q35wat\",\"data-styles-preset\":\"JBkHwZOyB\",children:[\"View Typeverse application prototype in Figma \",/*#__PURE__*/_jsx(Link,{href:\"https://www.figma.com/proto/iO0msx5jGZYWILsCOB9IO1/Typeverse-ptototype?page-id=1166%3A18382&node-id=1166-32821&p=f&viewport=1082%2C691%2C0.07&t=KGWq1dtGpXD2R1iZ-1&scaling=scale-down&content-scaling=fixed&starting-point-node-id=1166%3A32821\",motionChild:true,nodeId:\"jOoLrkU8d\",openInNewTab:true,scopeId:\"KPTwrMlrf\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-nte2zg\",\"data-styles-preset\":\"F5tJQITI5\",children:\"HERE\"})})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-13enc2g\",\"data-styles-preset\":\"Ej_dJ4ORa\",children:[\"View Typeverse application prototype in Figma \",/*#__PURE__*/_jsx(Link,{href:\"https://www.figma.com/proto/iO0msx5jGZYWILsCOB9IO1/Typeverse-ptototype?page-id=1166%3A18382&node-id=1166-32821&p=f&viewport=1082%2C691%2C0.07&t=KGWq1dtGpXD2R1iZ-1&scaling=scale-down&content-scaling=fixed&starting-point-node-id=1166%3A32821\",motionChild:true,nodeId:\"jOoLrkU8d\",openInNewTab:true,scopeId:\"KPTwrMlrf\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-nte2zg\",\"data-styles-preset\":\"F5tJQITI5\",children:\"HERE\"})})]})}),className:\"framer-drxh45\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n2zijCOr2:{y:(componentViewport?.y||0)+0+4526.3},R3aqF0NkG:{y:(componentViewport?.y||0)+0+8332.5037}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:79,width:\"1200px\",y:(componentViewport?.y||0)+0+9574,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uk5aaf-container\",nodeId:\"uGRYyn41_\",scopeId:\"KPTwrMlrf\",children:/*#__PURE__*/_jsx(ElementsFooter,{height:\"100%\",id:\"uGRYyn41_\",layoutId:\"uGRYyn41_\",style:{width:\"100%\"},variant:\"F_BVzHVGB\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-4hT6s.framer-3gcw7, .framer-4hT6s .framer-3gcw7 { display: block; }\",\".framer-4hT6s.framer-11qrygb { align-content: center; align-items: center; background-color: #000000; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 62px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-4hT6s .framer-1qhuhrd-container { flex: none; height: auto; left: 0px; position: fixed; top: -2px; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 2; }\",\".framer-4hT6s .framer-1v3dhwb { align-content: flex-start; align-items: flex-start; background-color: #7179e9; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: 463px; justify-content: center; overflow: visible; padding: 120px 0px 0px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-4hT6s .framer-uiadpi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 90%; }\",\".framer-4hT6s .framer-ofwgx6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 218px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 19px 0px 19px 0px; position: relative; width: 100%; }\",\".framer-4hT6s .framer-6493ik { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 42%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-4hT6s .framer-1u056zu { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 37%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-4hT6s .framer-19f3u98 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 764px; justify-content: center; left: calc(50.00000000000002% - min(1300px, 100%) / 2); max-width: 1300px; overflow: hidden; padding: 0px; position: absolute; top: 317px; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-4hT6s .framer-1ejmijm { background-color: #000000; flex: none; height: 513px; overflow: hidden; position: relative; width: 100%; }\",\".framer-4hT6s .framer-1maro5f, .framer-4hT6s .framer-gwe2ie, .framer-4hT6s .framer-17slkhh { 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: 1200px; overflow: hidden; padding: 0px 70px 0px 70px; position: relative; width: 100%; }\",\".framer-4hT6s .framer-136oyu1, .framer-4hT6s .framer-93ihy3, .framer-4hT6s .framer-jxj7yr, .framer-4hT6s .framer-ah3jv, .framer-4hT6s .framer-dffxc8, .framer-4hT6s .framer-t278oi, .framer-4hT6s .framer-3rrch4, .framer-4hT6s .framer-11tydjz, .framer-4hT6s .framer-1gxawuq, .framer-4hT6s .framer-1jsl6qb, .framer-4hT6s .framer-1yxwf4r, .framer-4hT6s .framer-gmebus { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-4hT6s .framer-lbszep, .framer-4hT6s .framer-28a7p9, .framer-4hT6s .framer-7opn8b, .framer-4hT6s .framer-alfhah { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-4hT6s .framer-1m2va47, .framer-4hT6s .framer-1ugp5ak { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-4hT6s .framer-1my18sa, .framer-4hT6s .framer-f7jy5m, .framer-4hT6s .framer-1wa9dts { background-color: #ffffff; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: 10px; overflow: visible; position: relative; width: 10px; }\",\".framer-4hT6s .framer-k3bo9e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 468px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-4hT6s .framer-2lzjzu { align-content: center; align-items: center; background-color: #7179e9; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 599px; justify-content: center; overflow: hidden; padding: 50px; position: relative; width: 100%; }\",\".framer-4hT6s .framer-1mkc9e2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 73.75vh; justify-content: center; max-width: 1200px; overflow: hidden; padding: 70px; position: relative; width: 109%; }\",\".framer-4hT6s .framer-184dhkp { display: grid; flex: none; gap: 10px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(1, minmax(50px, 1fr)); grid-template-rows: repeat(4, minmax(0, 1fr)); height: 1739px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-4hT6s .framer-17yzjqw, .framer-4hT6s .framer-110b44q, .framer-4hT6s .framer-8yl4lc, .framer-4hT6s .framer-1gthbex { align-content: center; align-items: center; align-self: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 100%; justify-content: center; justify-self: center; padding: 0px; position: relative; width: 100%; }\",\".framer-4hT6s .framer-1dwryrf, .framer-4hT6s .framer-1nlzlw8, .framer-4hT6s .framer-1f54oxo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 99%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-4hT6s .framer-1a8ubua-container, .framer-4hT6s .framer-yurwr2-container, .framer-4hT6s .framer-ip7en1-container { flex: none; height: 398px; position: relative; width: 640px; }\",\".framer-4hT6s .framer-1pudtbb, .framer-4hT6s .framer-4wmgjc, .framer-4hT6s .framer-kuk8gj { flex: none; height: 100%; position: relative; width: 37%; }\",\".framer-4hT6s .framer-1yc8y2, .framer-4hT6s .framer-19b4fop, .framer-4hT6s .framer-1ecb40d, .framer-4hT6s .framer-1gxy4nq, .framer-4hT6s .framer-1rd2go0 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 50%; position: absolute; top: 47%; transform: translate(-50%, -50%); white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-4hT6s .framer-gswwa4 { align-self: center; flex: none; height: 100%; justify-self: center; position: relative; width: 100%; }\",\".framer-4hT6s .framer-1xj71cg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 99%; justify-content: center; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; padding: 0px; position: absolute; top: calc(50.00000000000002% - 98.93867924528303% / 2); width: 100%; }\",\".framer-4hT6s .framer-1o58m1s { flex: none; height: 237px; left: calc(49.87405541561715% - 100.50377833753149% / 2); overflow: hidden; position: absolute; top: calc(51.53664302600475% - 237px / 2); width: 101%; }\",\".framer-4hT6s .framer-126upmk { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 48%; position: absolute; top: 53%; transform: translate(-50%, -50%); white-space: pre-wrap; width: 96%; word-break: break-word; word-wrap: break-word; }\",\".framer-4hT6s .framer-1ttms9x, .framer-4hT6s .framer-109iy68 { align-content: center; align-items: center; align-self: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 100%; justify-content: center; justify-self: center; padding: 0px; position: relative; width: 100%; }\",\".framer-4hT6s .framer-129a4mf { flex: none; height: 98%; position: relative; width: 60%; }\",\".framer-4hT6s .framer-flzdl8 { flex: none; height: 100%; position: relative; width: 34%; }\",\".framer-4hT6s .framer-hhvfuf { flex: none; height: 499px; overflow: hidden; position: relative; width: 100%; }\",\".framer-4hT6s .framer-b68dbf { align-content: flex-start; align-items: flex-start; background-color: #000000; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: hidden; padding: 0px 70px 0px 70px; position: relative; width: 100%; }\",\".framer-4hT6s .framer-h3nor5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 1955px; justify-content: center; overflow: hidden; padding: 40px 0px 0px 0px; position: relative; width: 97%; }\",\".framer-4hT6s .framer-1o4n1jx { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 32px; position: relative; white-space: pre-wrap; width: 983px; word-break: break-word; word-wrap: break-word; }\",\".framer-4hT6s .framer-1s10ekx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 401px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-4hT6s .framer-13n2545 { flex: none; height: 100%; position: relative; width: 661px; }\",\".framer-4hT6s .framer-19yq35j { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-4hT6s .framer-1dzxve8 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 174px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-4hT6s .framer-1pi56k5 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 34px; position: relative; white-space: pre-wrap; width: 181px; word-break: break-word; word-wrap: break-word; }\",\".framer-4hT6s .framer-6w8c85 { flex: none; height: 863px; overflow: hidden; position: relative; width: 100%; }\",\".framer-4hT6s .framer-1nzanxk { flex: none; height: 464px; overflow: hidden; position: relative; width: 100%; }\",\".framer-4hT6s .framer-1hmxxyb { 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; overflow: hidden; padding: 40px 0px 0px 0px; position: relative; width: 97%; }\",\".framer-4hT6s .framer-wddtjy { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 27px; position: relative; white-space: pre-wrap; width: 1026px; word-break: break-word; word-wrap: break-word; }\",\".framer-4hT6s .framer-1nnhzw5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 372px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-4hT6s .framer-1yn5lbv { flex: none; height: 100%; position: relative; width: 414px; }\",\".framer-4hT6s .framer-16q7luj { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-4hT6s .framer-x74raz { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 68px; position: relative; white-space: pre-wrap; width: 351px; word-break: break-word; word-wrap: break-word; }\",\".framer-4hT6s .framer-6lhqu7 { flex: none; height: 1114px; overflow: hidden; position: relative; width: 100%; }\",\".framer-4hT6s .framer-1o5w7ge { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 2133px; justify-content: center; max-width: 1200px; overflow: hidden; padding: 20px; position: relative; width: 100%; }\",\".framer-4hT6s .framer-1f51747 { 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: min-content; }\",\".framer-4hT6s .framer-5im2nz { display: grid; flex: none; gap: 20px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(1, minmax(50px, 1fr)); grid-template-rows: repeat(4, minmax(0, 1fr)); height: 85%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-4hT6s .framer-ehlfww, .framer-4hT6s .framer-1rmjjjy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 99%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-4hT6s .framer-4dxlor-container, .framer-4hT6s .framer-m2eno-container { flex: none; height: 50%; position: relative; width: 98%; }\",\".framer-4hT6s .framer-1bkigbc { flex: 1 0 0px; height: 1px; position: relative; width: 101%; }\",\".framer-4hT6s .framer-1n56xh3 { align-content: center; align-items: center; align-self: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; justify-self: center; padding: 0px; position: relative; width: 100%; }\",\".framer-4hT6s .framer-1ykr0fg, .framer-4hT6s .framer-omfjek { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-4hT6s .framer-1ic0zrg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-4hT6s .framer-55529z { flex: none; height: 210px; overflow: hidden; position: relative; width: 100%; }\",\".framer-4hT6s .framer-gfmn2z { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-4hT6s .framer-1qyqyt5 { flex: none; height: 54%; position: relative; width: 100%; }\",\".framer-4hT6s .framer-1iu3wdw { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-4hT6s .framer-1jtoh1r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 102%; }\",\".framer-4hT6s .framer-602y80 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 98%; word-break: break-word; word-wrap: break-word; }\",\".framer-4hT6s .framer-v2e19y-container { flex: none; height: 52%; position: relative; width: 100%; }\",\".framer-4hT6s .framer-13dpkd0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 407px; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px 70px 0px 70px; position: relative; width: 100%; }\",\".framer-4hT6s .framer-1czs1pp { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 96%; word-break: break-word; word-wrap: break-word; }\",\".framer-4hT6s .framer-zrdzoa { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 72%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 96%; }\",\".framer-4hT6s .framer-bexisc { align-content: center; align-items: center; background-color: #6068eb; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-4hT6s .framer-1n3yd4z { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 171px; position: relative; white-space: pre-wrap; width: 299px; word-break: break-word; word-wrap: break-word; }\",\".framer-4hT6s .framer-wp4gxv { --border-bottom-width: 2px; --border-color: #ff48a9; --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: center; align-items: center; background-color: #ff48a9; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-4hT6s .framer-1eoy19s { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 99px; position: relative; white-space: pre-wrap; width: 299px; word-break: break-word; word-wrap: break-word; }\",\".framer-4hT6s .framer-zxclu9 { --border-bottom-width: 2px; --border-color: #6068eb; --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: center; align-items: center; background-color: #6068eb; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-4hT6s .framer-1oil34v { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 200px; position: relative; white-space: pre-wrap; width: 299px; word-break: break-word; word-wrap: break-word; }\",\".framer-4hT6s .framer-kx9zp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 99%; }\",\".framer-4hT6s .framer-prakpp { align-content: center; align-items: center; background-color: #000000; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 24px 70px 24px 70px; position: relative; width: 100%; }\",\".framer-4hT6s .framer-drxh45 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-4hT6s .framer-1uk5aaf-container { flex: none; height: auto; position: relative; width: 1200px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,'.framer-4hT6s[data-border=\"true\"]::after, .framer-4hT6s [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-4hT6s.framer-11qrygb { gap: 40px; width: 810px; } .framer-4hT6s .framer-1qhuhrd-container, .framer-4hT6s .framer-3rrch4 { order: 0; } .framer-4hT6s .framer-1v3dhwb { height: 45.46296296296296vh; order: 1; } .framer-4hT6s .framer-ofwgx6 { gap: 10px; } .framer-4hT6s .framer-6493ik { order: 0; width: 44%; } .framer-4hT6s .framer-1u056zu { order: 1; width: 52%; } .framer-4hT6s .framer-19f3u98 { gap: 0px; height: 48.42592592592593vh; justify-content: flex-end; left: calc(50.00000000000002% - min(810px, 100%) / 2); max-width: 810px; order: 3; } .framer-4hT6s .framer-1ejmijm { height: 198px; order: 2; } .framer-4hT6s .framer-1maro5f { order: 12; padding: 0px 50px 0px 50px; } .framer-4hT6s .framer-lbszep { white-space: pre; width: auto; } .framer-4hT6s .framer-k3bo9e { height: 425px; } .framer-4hT6s .framer-2lzjzu { height: min-content; order: 6; } .framer-4hT6s .framer-1mkc9e2 { height: 54.907407407407405vh; padding: 70px 50px 70px 50px; width: 109%; } .framer-4hT6s .framer-gwe2ie { gap: 15px; order: 8; padding: 20px 50px 20px 50px; } .framer-4hT6s .framer-184dhkp { height: 1132px; } .framer-4hT6s .framer-1a8ubua-container { height: 238px; width: 56%; } .framer-4hT6s .framer-1o58m1s { height: 248px; left: calc(50.00000000000002% - 100.37593984962405% / 2); top: calc(48.07339449541287% - 248px / 2); width: 100%; } .framer-4hT6s .framer-yurwr2-container { height: 237px; width: 54%; } .framer-4hT6s .framer-129a4mf { height: 88%; width: 60%; } .framer-4hT6s .framer-ip7en1-container { height: 226px; width: 54%; } .framer-4hT6s .framer-17slkhh { order: 20; padding: 0px 50px 0px 50px; } .framer-4hT6s .framer-hhvfuf { height: 303px; width: 100%; } .framer-4hT6s .framer-b68dbf { order: 21; padding: 17px 50px 17px 50px; } .framer-4hT6s .framer-h3nor5 { height: min-content; } .framer-4hT6s .framer-1o4n1jx { height: 69px; order: 1; width: 100%; } .framer-4hT6s .framer-1s10ekx { height: 307px; order: 2; } .framer-4hT6s .framer-13n2545 { order: 0; width: 366px; } .framer-4hT6s .framer-19yq35j { order: 1; } .framer-4hT6s .framer-1dzxve8 { width: 311px; } .framer-4hT6s .framer-1pi56k5 { height: auto; order: 3; white-space: pre; width: auto; } .framer-4hT6s .framer-6w8c85 { height: 748px; order: 4; } .framer-4hT6s .framer-1nzanxk { height: 326px; order: 5; } .framer-4hT6s .framer-1hmxxyb { width: 97%; } .framer-4hT6s .framer-wddtjy { height: 71px; width: 100%; } .framer-4hT6s .framer-x74raz { height: 129px; width: 100%; } .framer-4hT6s .framer-13dpkd0 { height: 698px; order: 23; padding: 0px 50px 0px 50px; } .framer-4hT6s .framer-1czs1pp { width: 100%; } .framer-4hT6s .framer-zrdzoa { flex-direction: column; height: 81%; width: 100%; } .framer-4hT6s .framer-bexisc, .framer-4hT6s .framer-wp4gxv, .framer-4hT6s .framer-zxclu9 { height: 1px; width: 100%; } .framer-4hT6s .framer-1n3yd4z { height: 99px; width: 544px; } .framer-4hT6s .framer-1eoy19s { height: 73px; width: 488px; } .framer-4hT6s .framer-1oil34v { height: 97px; width: 522px; } .framer-4hT6s .framer-kx9zp { order: 25; } .framer-4hT6s .framer-1uk5aaf-container { order: 26; }}\",\"@media (max-width: 809px) { .framer-4hT6s.framer-11qrygb { gap: 40px; width: 390px; } .framer-4hT6s .framer-1qhuhrd-container, .framer-4hT6s .framer-1bkigbc, .framer-4hT6s .framer-1iu3wdw { order: 0; } .framer-4hT6s .framer-1v3dhwb { height: 348px; order: 1; } .framer-4hT6s .framer-uiadpi { flex: 1 0 0px; gap: 40px; width: 1px; } .framer-4hT6s .framer-ofwgx6 { flex-direction: column; gap: 10px; padding: 20px; width: 100%; } .framer-4hT6s .framer-6493ik, .framer-4hT6s .framer-1u056zu { width: 100%; } .framer-4hT6s .framer-19f3u98 { height: 247px; order: 3; top: 347px; will-change: unset; } .framer-4hT6s .framer-1ejmijm { height: 204px; order: 2; } .framer-4hT6s .framer-1maro5f { order: 12; padding: 3px 20px 3px 20px; } .framer-4hT6s .framer-1m2va47, .framer-4hT6s .framer-1ugp5ak { gap: 10px; justify-content: flex-start; } .framer-4hT6s .framer-k3bo9e { height: 181px; } .framer-4hT6s .framer-17slkhh { order: 17; padding: 20px; } .framer-4hT6s .framer-dffxc8 { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-4hT6s .framer-hhvfuf { height: 161px; width: 100%; } .framer-4hT6s .framer-1o5w7ge { order: 21; } .framer-4hT6s .framer-13dpkd0 { height: 816px; order: 23; padding: 0px; width: 90%; } .framer-4hT6s .framer-1czs1pp { width: 107%; } .framer-4hT6s .framer-zrdzoa { flex-direction: column; height: 91%; width: 98%; } .framer-4hT6s .framer-bexisc, .framer-4hT6s .framer-wp4gxv, .framer-4hT6s .framer-zxclu9 { height: 1px; width: 100%; } .framer-4hT6s .framer-kx9zp { order: 24; padding: 0px 20px 0px 20px; } .framer-4hT6s .framer-prakpp { padding: 0px; } .framer-4hT6s .framer-1uk5aaf-container { order: 25; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 9654\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"R3aqF0NkG\":{\"layout\":[\"fixed\",\"auto\"]},\"n2zijCOr2\":{\"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 FramerKPTwrMlrf=withCSS(Component,css,\"framer-4hT6s\");export default FramerKPTwrMlrf;FramerKPTwrMlrf.displayName=\"Page\";FramerKPTwrMlrf.defaultProps={height:9654,width:1200};addFonts(FramerKPTwrMlrf,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{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\"},{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...NavigationNavigation2Fonts,...YouTubeFonts,...ElementsFooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerKPTwrMlrf\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"R3aqF0NkG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"n2zijCOr2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1200\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"9654\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerColorSyntax\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["PlayOptions", "ThumbnailOptions", "ThumbnailFormat", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "title", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "searchParams", "iframeProps", "u", "wrapperStyle", "videoStyle", "getThumbnailURL", "getWebPSupported", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "res", "format", "useWebP", "pre", "ext", "_getWebPSupported", "window", "element", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "NavigationNavigation2Fonts", "getFonts", "SAClqPDyK_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "RichTextWithOptimizedAppearEffect", "RichText2", "ImageWithOptimizedAppearEffect", "Image2", "YouTubeFonts", "Youtube", "ElementsFooterFonts", "fRzLv2ZNz_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "transition3", "animation4", "animation5", "transformTemplate1", "_", "t", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "PropertyOverrides2", "x", "getLoadingLazyAtYPosition", "Link", "css", "FramerKPTwrMlrf", "withCSS", "KPTwrMlrf_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
