{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/KlXfwqVLqJFgyoG8dy7M/YouTube.js", "ssg:https://framerusercontent.com/modules/aUjOe7ImS7byypEZbG9I/cmab63pqzfkie5Toil6t/QS2kUOVnt.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{useReducer,useState}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,title,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==\"Off\";const showThumbnail=onCanvas||thumbnail!==\"Off\"&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/_jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL]=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\"}),showThumbnail&&/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://i.ytimg.com\"}),/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",src:getThumbnailURL(videoId,thumbnail),style:{...videoStyle,objectFit:\"cover\"}})]}),!onCanvas?/*#__PURE__*/_jsx(\"iframe\",{loading:!showVideo?\"lazy\":undefined,style:!showVideo?{...videoStyle,display:\"none\"}:videoStyle,...iframeProps}):null,showVideo?null:/*#__PURE__*/_jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===\"Off\";}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==\"Off\";}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:\"Off\",shouldMute:true,thumbnail:\"Medium Quality\",isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL];}if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");const page=pathSegments[0];// https://www.youtube.com/watch?v=Fop2oskTug8\nif(page===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}// https://www.youtube.com/embed/Fop2oskTug8\nif(page===\"embed\"){const videoId=pathSegments[1];return[videoId,url];}// https://www.youtube.com/shorts/zwMEhBq4kYM / https://www.youtube.com/live/XlWSzaluBKk\nif(page===\"shorts\"||page===\"live\"){const videoId=pathSegments[1];const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId=url.pathname.slice(1);const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst pre=\"https://i.ytimg.com/vi_webp/\";const ext=\"webp\";switch(res){case\"Low Quality\":return`${pre}${videoId}/hqdefault.${ext}`;case\"Medium Quality\":return`${pre}${videoId}/sddefault.${ext}`;case\"High Quality\":return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/_jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/_jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/_jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/_jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/_jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"560\",\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"315\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "// Generated by Framer (f712822)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useActiveVariantCallback,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useQueryData,useRouter,withCSS}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/KlXfwqVLqJFgyoG8dy7M/YouTube.js\";import VideoResources from\"#framer/local/canvasComponent/duyKxK5bg/duyKxK5bg.js\";import BlogResources from\"#framer/local/canvasComponent/fS_rfgXzx/fS_rfgXzx.js\";import RailNavigation from\"#framer/local/canvasComponent/Gq6wumSmd/Gq6wumSmd.js\";import DasboardHeader from\"#framer/local/canvasComponent/QrPmk7ngz/QrPmk7ngz.js\";import Resources from\"#framer/local/collection/aG70Ek6P1/aG70Ek6P1.js\";import*as sharedStyle from\"#framer/local/css/DxFBwEjuu/DxFBwEjuu.js\";import*as sharedStyle3 from\"#framer/local/css/h44_3IcY_/h44_3IcY_.js\";import*as sharedStyle1 from\"#framer/local/css/OkfJSdLiL/OkfJSdLiL.js\";import*as sharedStyle4 from\"#framer/local/css/Tq1X_um9N/Tq1X_um9N.js\";import*as sharedStyle2 from\"#framer/local/css/y9iK7Wj0V/y9iK7Wj0V.js\";import*as sharedStyle5 from\"#framer/local/css/ZqtrXx085/ZqtrXx085.js\";import metadataProvider from\"#framer/local/webPageMetadata/QS2kUOVnt/QS2kUOVnt.js\";const DasboardHeaderFonts=getFonts(DasboardHeader);const RailNavigationFonts=getFonts(RailNavigation);const YouTubeFonts=getFonts(YouTube);const VideoResourcesFonts=getFonts(VideoResources);const BlogResourcesFonts=getFonts(BlogResources);const breakpoints={iChYeC6ED:\"(min-width: 810px) and (max-width: 1199px)\",kLQhgVJVO:\"(max-width: 809px)\",v1YpNLTZx:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-7j4a9\";const variantClassNames={iChYeC6ED:\"framer-v-jq5jn\",kLQhgVJVO:\"framer-v-pn14i3\",v1YpNLTZx:\"framer-v-kf7qx5\"};const transition1={damping:30,delay:0,mass:1,stiffness:200,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:150,y:0};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const negate=value=>{return!value;};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"v1YpNLTZx\",Phone:\"kLQhgVJVO\",Tablet:\"iChYeC6ED\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"v1YpNLTZx\"};};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 currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"QS2kUOVnt\",data:Resources,type:\"Collection\"},select:[{collection:\"QS2kUOVnt\",name:\"Cd5sw0To6\",type:\"Identifier\"},{collection:\"QS2kUOVnt\",name:\"NAKKZF2iU\",type:\"Identifier\"},{collection:\"QS2kUOVnt\",name:\"dMHexUVli\",type:\"Identifier\"},{collection:\"QS2kUOVnt\",name:\"gt6Cz58QM\",type:\"Identifier\"},{collection:\"QS2kUOVnt\",name:\"RYrgE3YKC\",type:\"Identifier\"},{collection:\"QS2kUOVnt\",name:\"kTZnSxsCG\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"QS2kUOVnt\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,Cd5sw0To6=getFromCurrentRouteData(\"Cd5sw0To6\")??\"\",NAKKZF2iU=getFromCurrentRouteData(\"NAKKZF2iU\")??true,kTZnSxsCG=getFromCurrentRouteData(\"kTZnSxsCG\")??\"\",RYrgE3YKC=getFromCurrentRouteData(\"RYrgE3YKC\")??\"\",O17g8uLeavpBekHCjC,InPh2sB0hvpBekHCjC,Cd5sw0To6vpBekHCjC,RYrgE3YKCvpBekHCjC,g5h7ykBIqvpBekHCjC,idvpBekHCjC,dMHexUVli=getFromCurrentRouteData(\"dMHexUVli\"),gt6Cz58QM=getFromCurrentRouteData(\"gt6Cz58QM\")??\"\",O17g8uLeadzVwiV29R,dMHexUVlidzVwiV29R,Cd5sw0To6dzVwiV29R,OA1MrcOkrdzVwiV29R,iddzVwiV29R,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(currentRouteData,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);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const zKZwAJ4EO3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const MIEvhoNTl1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"kLQhgVJVO\")return true;return false;};const router=useRouter();const visible=negate(NAKKZF2iU);const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"kLQhgVJVO\")return false;return true;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"v1YpNLTZx\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-e961a5bc-592e-4cfb-9f1f-d80293ff2153, rgb(247, 247, 247)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-kf7qx5\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(\"main\",{className:\"framer-qbrge3\",\"data-framer-name\":\"Main\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-182f6ji\",\"data-framer-name\":\"Main\",children:[/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kLQhgVJVO:{width:`min(${componentViewport?.width||\"100vw\"} - 16px, 1300px)`,y:(componentViewport?.y||0)+8+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:`min(max(${componentViewport?.width||\"100vw\"} - 260px, 1px), 1300px)`,y:(componentViewport?.y||0)+8+0+0+0+0,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-164npqq-container\",id:\"164npqq\",nodeId:\"IuDzNnFRx\",scopeId:\"QS2kUOVnt\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kLQhgVJVO:{variant:\"Kpxjo6Ru1\"}},children:/*#__PURE__*/_jsx(DasboardHeader,{height:\"100%\",id:\"IuDzNnFRx\",layoutId:\"IuDzNnFRx\",style:{width:\"100%\"},variant:\"ItQ2X8sP4\",width:\"100%\",zKZwAJ4EO:zKZwAJ4EO3bnx0g({overlay})})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-90hkw7\"),\"data-framer-portal-id\":\"164npqq\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"BjaTS_qLv\"),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kLQhgVJVO:{width:\"236px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kLQhgVJVO:{animate:animation,initial:animation1}},children:/*#__PURE__*/_jsx(Container,{className:`${cx(scopingClassNames,\"framer-1mpiyw4-container\")} hidden-kf7qx5 hidden-jq5jn`,\"data-framer-portal-id\":\"164npqq\",inComponentSlot:true,nodeId:\"f5RDOzGgj\",rendersWithMotion:true,scopeId:\"QS2kUOVnt\",children:/*#__PURE__*/_jsx(RailNavigation,{height:\"100%\",id:\"f5RDOzGgj\",layoutId:\"f5RDOzGgj\",MIEvhoNTl:MIEvhoNTl1wnntms({overlay}),style:{height:\"100%\",width:\"100%\"},variant:\"J9bWYgolg\",width:\"100%\",yHDNwqEp4:true})})})})})]}),getContainer())})})]})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1btsfxt\",\"data-border\":true,\"data-framer-name\":\"Page Title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-162x3a3\",\"data-styles-preset\":\"DxFBwEjuu\",style:{\"--framer-text-color\":\"var(--token-e6cc4a14-e6ac-48fe-85c2-dbd28fd1929c, rgb(31, 33, 36))\"},children:\"Mastering Job Interviews: Strategies for Success\"})}),className:\"framer-1hpagjk\",\"data-framer-name\":\"How to Craft a Compelling CV That Lands Your Dream Job\",fonts:[\"Inter\"],text:Cd5sw0To6,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zmn4zf\",\"data-framer-name\":\"Resources Details Page\",children:[NAKKZF2iU&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-41ibdb\",\"data-framer-name\":\"Video Resources Details\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qfg6kj\",\"data-border\":true,\"data-framer-name\":\"Resources Video, Text\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-u0lk4g\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-15jpenq-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"QLueYMyzK\",scopeId:\"QS2kUOVnt\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:8,bottomLeftRadius:8,bottomRightRadius:8,height:\"100%\",id:\"QLueYMyzK\",isMixedBorderRadius:false,isRed:true,layoutId:\"QLueYMyzK\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:8,topRightRadius:8,url:kTZnSxsCG,width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xwmn6y\",\"data-framer-name\":\"Title, Summary\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1u96jgj\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-r6sbcj\",\"data-styles-preset\":\"OkfJSdLiL\",style:{\"--framer-text-color\":\"var(--token-5e2461b7-b32c-4dc9-9355-8e20634c562c, rgb(97, 106, 117))\"},children:\"Content\"})}),className:\"framer-17ebaz6\",\"data-framer-name\":\"How to Craft a Compelling CV That Lands Your Dream Job.\",fonts:[\"Inter\"],text:Cd5sw0To6,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16koa09\",\"data-styles-preset\":\"y9iK7Wj0V\",style:{\"--framer-text-color\":\"var(--token-a97ea932-c929-4d63-9cf7-7910e3a3e971, rgb(171, 177, 186))\"},children:\"Content\"})}),className:\"framer-4r16dy\",\"data-framer-name\":\"How to Craft a Compelling CV That Lands Your Dream Job.\",fonts:[\"Inter\"],text:RYrgE3YKC,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pnsvj5\",\"data-border\":true,\"data-framer-name\":\"Video Resources Similar Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nf4eh1\",\"data-framer-name\":\"Similar Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qz59gd\",\"data-styles-preset\":\"h44_3IcY_\",style:{\"--framer-text-color\":\"var(--token-5e2461b7-b32c-4dc9-9355-8e20634c562c, rgb(97, 106, 117))\"},children:\"Similar Content\"})}),className:\"framer-a64fq3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12z7y5i\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"vpBekHCjC\",data:Resources,type:\"Collection\"},limit:{type:\"LiteralValue\",value:6},select:[{collection:\"vpBekHCjC\",name:\"O17g8uLea\",type:\"Identifier\"},{collection:\"vpBekHCjC\",name:\"InPh2sB0h\",type:\"Identifier\"},{collection:\"vpBekHCjC\",name:\"Cd5sw0To6\",type:\"Identifier\"},{collection:\"vpBekHCjC\",name:\"RYrgE3YKC\",type:\"Identifier\"},{collection:\"vpBekHCjC\",name:\"g5h7ykBIq\",type:\"Identifier\"},{collection:\"vpBekHCjC\",name:\"id\",type:\"Identifier\"}],where:{left:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"vpBekHCjC\",name:\"Cd5sw0To6\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:Cd5sw0To6},type:\"BinaryOperation\"}},operator:\"and\",right:{collection:\"vpBekHCjC\",name:\"NAKKZF2iU\",type:\"Identifier\"},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({Cd5sw0To6:Cd5sw0To6vpBekHCjC,g5h7ykBIq:g5h7ykBIqvpBekHCjC,id:idvpBekHCjC,InPh2sB0h:InPh2sB0hvpBekHCjC,O17g8uLea:O17g8uLeavpBekHCjC,RYrgE3YKC:RYrgE3YKCvpBekHCjC},index)=>{O17g8uLeavpBekHCjC??=\"\";InPh2sB0hvpBekHCjC??=\"\";Cd5sw0To6vpBekHCjC??=\"\";RYrgE3YKCvpBekHCjC??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`vpBekHCjC-${idvpBekHCjC}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{O17g8uLea:O17g8uLeavpBekHCjC},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{O17g8uLea:O17g8uLeavpBekHCjC},webPageId:\"QS2kUOVnt\"},implicitPathVariables:undefined},{href:{pathVariables:{O17g8uLea:O17g8uLeavpBekHCjC},webPageId:\"QS2kUOVnt\"},implicitPathVariables:undefined},{href:{pathVariables:{O17g8uLea:O17g8uLeavpBekHCjC},webPageId:\"QS2kUOVnt\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iChYeC6ED:{width:`max((min(max(${componentViewport?.width||\"100vw\"} - 260px, 1px), 1300px) - 52px) / 2, 50px)`,y:(componentViewport?.y||0)+8+0+0+0+140+0+0+0+527.6+16+44+0+0},kLQhgVJVO:{width:`max(min(${componentViewport?.width||\"100vw\"} - 16px, 1300px) - 32px, 50px)`,y:(componentViewport?.y||0)+8+0+0+0+0+140+0+0+0+527.6+16+44+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:439,width:`max((min(max(${componentViewport?.width||\"100vw\"} - 260px, 1px), 1300px) - 72px) / 3, 50px)`,y:(componentViewport?.y||0)+8+0+0+0+140+0+0+0+470+16+44+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-f91sc2-container\",nodeId:\"oIZqVtSvs\",scopeId:\"QS2kUOVnt\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iChYeC6ED:{VeK1A5CAT:resolvedLinks[1]},kLQhgVJVO:{VeK1A5CAT:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(VideoResources,{GxFMVZqnO:RYrgE3YKCvpBekHCjC,height:\"100%\",id:\"oIZqVtSvs\",layoutId:\"oIZqVtSvs\",mZPCUbD4f:InPh2sB0hvpBekHCjC,QVVUicWy8:Cd5sw0To6vpBekHCjC,style:{width:\"100%\"},VeK1A5CAT:resolvedLinks[0],width:\"100%\",wvuatDuFJ:toResponsiveImage(g5h7ykBIqvpBekHCjC)})})})})})})})},idvpBekHCjC);})})})})})]})]}),visible&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4vczhr\",\"data-framer-name\":\"Career Note Resources Details\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7mxlq0\",\"data-border\":true,\"data-framer-name\":\"Career Note Content, Title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iChYeC6ED:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+8+0+0+0+140+0+1501.6+0+0+16+0),sizes:`calc(min(max(${componentViewport?.width||\"100vw\"} - 260px, 1px), 1300px) - 32px)`,...toResponsiveImage(dMHexUVli)}},kLQhgVJVO:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+8+0+0+0+0+140+0+1501.6+0+0+16+0),sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 16px, 1300px) - 32px)`,...toResponsiveImage(dMHexUVli)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+8+0+0+0+140+0+1444+0+0+16+0),sizes:`calc(min(max(${componentViewport?.width||\"100vw\"} - 260px, 1px), 1300px) - 32px)`,...toResponsiveImage(dMHexUVli)},className:\"framer-1iughbg\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fdw9rq\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-r6sbcj\",\"data-styles-preset\":\"OkfJSdLiL\",style:{\"--framer-text-color\":\"var(--token-e6cc4a14-e6ac-48fe-85c2-dbd28fd1929c, rgb(31, 33, 36))\"},children:\"Content\"})}),className:\"framer-1xzfr5k\",\"data-framer-name\":\"How to Craft a Compelling CV That Lands Your Dream Job.\",fonts:[\"Inter\"],text:Cd5sw0To6,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1r66s8q\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:gt6Cz58QM,className:\"framer-xxe18q\",\"data-framer-name\":\"Think of your CV as a marketing tool, not just a list of your job history. Its main purpose is to convince potential employers that you\u2019re worth inviting for an interview. A good CV communicates your value proposition clearly and concisely. Employers typically spend only a few seconds scanning each CV, so it\u2019s crucial to make those seconds count. Make your key skills, achievements, and qualifications stand out at first glance.\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1b9ydtm\",h1:\"framer-styles-preset-o3e5h0\",h2:\"framer-styles-preset-1m9bzi2\",h3:\"framer-styles-preset-ci2ngw\",img:\"framer-styles-preset-ynsk24\",p:\"framer-styles-preset-91ry8n\"},verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7tq1t0\",\"data-framer-name\":\"Career Notes Section\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-19km4yh\",\"data-framer-name\":\"Career Notes Similar Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qz59gd\",\"data-styles-preset\":\"h44_3IcY_\",style:{\"--framer-text-color\":\"var(--token-5e2461b7-b32c-4dc9-9355-8e20634c562c, rgb(97, 106, 117))\"},children:\"Similar Content\"})}),className:\"framer-i85a7r\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-pdu79a\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"dzVwiV29R\",data:Resources,type:\"Collection\"},limit:{type:\"LiteralValue\",value:6},select:[{collection:\"dzVwiV29R\",name:\"O17g8uLea\",type:\"Identifier\"},{collection:\"dzVwiV29R\",name:\"dMHexUVli\",type:\"Identifier\"},{collection:\"dzVwiV29R\",name:\"Cd5sw0To6\",type:\"Identifier\"},{collection:\"dzVwiV29R\",name:\"OA1MrcOkr\",type:\"Identifier\"},{collection:\"dzVwiV29R\",name:\"id\",type:\"Identifier\"}],where:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"dzVwiV29R\",name:\"Cd5sw0To6\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:Cd5sw0To6},type:\"BinaryOperation\"}}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({Cd5sw0To6:Cd5sw0To6dzVwiV29R,dMHexUVli:dMHexUVlidzVwiV29R,id:iddzVwiV29R,O17g8uLea:O17g8uLeadzVwiV29R,OA1MrcOkr:OA1MrcOkrdzVwiV29R},index1)=>{O17g8uLeadzVwiV29R??=\"\";Cd5sw0To6dzVwiV29R??=\"\";OA1MrcOkrdzVwiV29R??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`dzVwiV29R-${iddzVwiV29R}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{O17g8uLea:O17g8uLeadzVwiV29R},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{O17g8uLea:O17g8uLeadzVwiV29R},webPageId:\"QS2kUOVnt\"},implicitPathVariables:undefined},{href:{pathVariables:{O17g8uLea:O17g8uLeadzVwiV29R},webPageId:\"QS2kUOVnt\"},implicitPathVariables:undefined},{href:{pathVariables:{O17g8uLea:O17g8uLeadzVwiV29R},webPageId:\"QS2kUOVnt\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iChYeC6ED:{width:`max((min(max(${componentViewport?.width||\"100vw\"} - 260px, 1px), 1300px) - 52px) / 2, 50px)`,y:(componentViewport?.y||0)+8+0+0+0+140+0+1501.6+0+637.6+16+44+0+0},kLQhgVJVO:{width:`max(min(${componentViewport?.width||\"100vw\"} - 16px, 1300px) - 32px, 50px)`,y:(componentViewport?.y||0)+8+0+0+0+0+140+0+1501.6+0+637.6+16+44+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:332,width:`max((min(max(${componentViewport?.width||\"100vw\"} - 260px, 1px), 1300px) - 72px) / 3, 50px)`,y:(componentViewport?.y||0)+8+0+0+0+140+0+1444+0+637.6+16+44+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-t9nygh-container\",nodeId:\"T6d8b7mLO\",scopeId:\"QS2kUOVnt\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iChYeC6ED:{BCYj1Jv2Z:resolvedLinks1[1]},kLQhgVJVO:{BCYj1Jv2Z:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(BlogResources,{BCYj1Jv2Z:resolvedLinks1[0],DmUylFnH8:Cd5sw0To6dzVwiV29R,height:\"100%\",id:\"T6d8b7mLO\",l1fwUFx0q:toResponsiveImage(dMHexUVlidzVwiV29R),layoutId:\"T6d8b7mLO\",style:{width:\"100%\"},tuqKHD9SE:OA1MrcOkrdzVwiV29R,width:\"100%\"})})})})})})})},iddzVwiV29R);})})})})})]})]})]})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1e3,width:\"236px\",y:8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ebdxp8-container hidden-pn14i3\",layoutScroll:true,nodeId:\"I2BPh3ovn\",scopeId:\"QS2kUOVnt\",children:/*#__PURE__*/_jsx(RailNavigation,{height:\"100%\",id:\"I2BPh3ovn\",layoutId:\"I2BPh3ovn\",style:{height:\"100%\",width:\"100%\"},variant:\"J9bWYgolg\",width:\"100%\",yHDNwqEp4:false})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-7j4a9.framer-1cez2h7, .framer-7j4a9 .framer-1cez2h7 { display: block; }\",\".framer-7j4a9.framer-kf7qx5 { align-content: center; align-items: center; background-color: var(--token-e961a5bc-592e-4cfb-9f1f-d80293ff2153, #f7f7f7); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 88px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 8px 8px 8px 252px; position: relative; width: 1200px; }\",\".framer-7j4a9 .framer-qbrge3 { align-content: center; align-items: center; background-color: var(--token-29b4fbd2-775d-4f98-8e02-fd9c2ccc27f7, #fffffe); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 40px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-7j4a9 .framer-182f6ji { align-content: flex-start; align-items: flex-start; background-color: var(--token-29b4fbd2-775d-4f98-8e02-fd9c2ccc27f7, #ffffff); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1300px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-7j4a9 .framer-164npqq-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-7j4a9.framer-90hkw7 { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; }\",\".framer-7j4a9.framer-1mpiyw4-container { flex: none; height: 84vh; position: fixed; right: 8px; top: 8px; width: 236px; z-index: 0; }\",\".framer-7j4a9 .framer-1btsfxt { --border-bottom-width: 1px; --border-color: var(--token-52463d8f-6c1d-4654-a8d8-2a1cd562b398, #ebecef); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px; position: relative; width: 100%; }\",\".framer-7j4a9 .framer-1hpagjk, .framer-7j4a9 .framer-17ebaz6, .framer-7j4a9 .framer-1xzfr5k, .framer-7j4a9 .framer-xxe18q { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-7j4a9 .framer-zmn4zf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7j4a9 .framer-41ibdb, .framer-7j4a9 .framer-4vczhr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7j4a9 .framer-qfg6kj { --border-bottom-width: 1px; --border-color: var(--token-52463d8f-6c1d-4654-a8d8-2a1cd562b398, #ebecef); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px; position: relative; width: 100%; }\",\".framer-7j4a9 .framer-u0lk4g, .framer-7j4a9 .framer-1r66s8q { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7j4a9 .framer-15jpenq-container { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 511px); position: relative; width: 100%; }\",\".framer-7j4a9 .framer-1xwmn6y { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px 0px 24px 0px; position: relative; width: 100%; }\",\".framer-7j4a9 .framer-1u96jgj { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 40px 0px 0px; position: relative; width: 1px; }\",\".framer-7j4a9 .framer-4r16dy { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-7j4a9 .framer-pnsvj5 { --border-bottom-width: 1px; --border-color: var(--token-52463d8f-6c1d-4654-a8d8-2a1cd562b398, #ebecef); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; 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: flex-start; overflow: visible; padding: 16px; position: relative; width: 100%; }\",\".framer-7j4a9 .framer-1nf4eh1, .framer-7j4a9 .framer-19km4yh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7j4a9 .framer-a64fq3, .framer-7j4a9 .framer-i85a7r { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-7j4a9 .framer-12z7y5i, .framer-7j4a9 .framer-pdu79a { display: grid; flex: none; gap: 20px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(50px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-7j4a9 .framer-f91sc2-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-7j4a9 .framer-7mxlq0 { --border-bottom-width: 1px; --border-color: var(--token-52463d8f-6c1d-4654-a8d8-2a1cd562b398, #ebecef); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 16px 16px 96px 16px; position: relative; width: 100%; }\",\".framer-7j4a9 .framer-1iughbg { aspect-ratio: 1.4125 / 1; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: var(--framer-aspect-ratio-supported, 643px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-7j4a9 .framer-1fdw9rq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 200px 0px 200px; position: relative; width: 100%; }\",\".framer-7j4a9 .framer-7tq1t0 { 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: flex-start; overflow: visible; padding: 16px; position: relative; width: 100%; }\",\".framer-7j4a9 .framer-t9nygh-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; }\",\".framer-7j4a9 .framer-ebdxp8-container { flex: none; height: 100vh; left: 8px; position: fixed; top: 8px; width: 236px; z-index: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-7j4a9.framer-kf7qx5, .framer-7j4a9 .framer-qbrge3, .framer-7j4a9 .framer-182f6ji, .framer-7j4a9 .framer-1btsfxt, .framer-7j4a9 .framer-zmn4zf, .framer-7j4a9 .framer-41ibdb, .framer-7j4a9 .framer-qfg6kj, .framer-7j4a9 .framer-u0lk4g, .framer-7j4a9 .framer-1u96jgj, .framer-7j4a9 .framer-pnsvj5, .framer-7j4a9 .framer-4vczhr, .framer-7j4a9 .framer-7mxlq0, .framer-7j4a9 .framer-1fdw9rq, .framer-7j4a9 .framer-1r66s8q, .framer-7j4a9 .framer-7tq1t0 { gap: 0px; } .framer-7j4a9.framer-kf7qx5 > * { margin: 0px; margin-bottom: calc(88px / 2); margin-top: calc(88px / 2); } .framer-7j4a9.framer-kf7qx5 > :first-child, .framer-7j4a9 .framer-182f6ji > :first-child, .framer-7j4a9 .framer-1btsfxt > :first-child, .framer-7j4a9 .framer-zmn4zf > :first-child, .framer-7j4a9 .framer-41ibdb > :first-child, .framer-7j4a9 .framer-qfg6kj > :first-child, .framer-7j4a9 .framer-u0lk4g > :first-child, .framer-7j4a9 .framer-1u96jgj > :first-child, .framer-7j4a9 .framer-pnsvj5 > :first-child, .framer-7j4a9 .framer-4vczhr > :first-child, .framer-7j4a9 .framer-7mxlq0 > :first-child, .framer-7j4a9 .framer-1fdw9rq > :first-child, .framer-7j4a9 .framer-1r66s8q > :first-child, .framer-7j4a9 .framer-7tq1t0 > :first-child { margin-top: 0px; } .framer-7j4a9.framer-kf7qx5 > :last-child, .framer-7j4a9 .framer-182f6ji > :last-child, .framer-7j4a9 .framer-1btsfxt > :last-child, .framer-7j4a9 .framer-zmn4zf > :last-child, .framer-7j4a9 .framer-41ibdb > :last-child, .framer-7j4a9 .framer-qfg6kj > :last-child, .framer-7j4a9 .framer-u0lk4g > :last-child, .framer-7j4a9 .framer-1u96jgj > :last-child, .framer-7j4a9 .framer-pnsvj5 > :last-child, .framer-7j4a9 .framer-4vczhr > :last-child, .framer-7j4a9 .framer-7mxlq0 > :last-child, .framer-7j4a9 .framer-1fdw9rq > :last-child, .framer-7j4a9 .framer-1r66s8q > :last-child, .framer-7j4a9 .framer-7tq1t0 > :last-child { margin-bottom: 0px; } .framer-7j4a9 .framer-qbrge3 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-7j4a9 .framer-qbrge3 > :first-child { margin-left: 0px; } .framer-7j4a9 .framer-qbrge3 > :last-child { margin-right: 0px; } .framer-7j4a9 .framer-182f6ji > *, .framer-7j4a9 .framer-zmn4zf > *, .framer-7j4a9 .framer-41ibdb > *, .framer-7j4a9 .framer-4vczhr > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-7j4a9 .framer-1btsfxt > *, .framer-7j4a9 .framer-u0lk4g > *, .framer-7j4a9 .framer-1r66s8q > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-7j4a9 .framer-qfg6kj > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-7j4a9 .framer-1u96jgj > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-7j4a9 .framer-pnsvj5 > *, .framer-7j4a9 .framer-7tq1t0 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-7j4a9 .framer-7mxlq0 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-7j4a9 .framer-1fdw9rq > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,'.framer-7j4a9[data-border=\"true\"]::after, .framer-7j4a9 [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-7j4a9.framer-kf7qx5 { width: 810px; } .framer-7j4a9 .framer-15jpenq-container { height: var(--framer-aspect-ratio-supported, 292px); } .framer-7j4a9 .framer-1xwmn6y { flex-direction: column; gap: 24px; justify-content: flex-start; } .framer-7j4a9 .framer-1u96jgj { flex: none; padding: 0px; width: 100%; } .framer-7j4a9 .framer-4r16dy { flex: none; width: 100%; } .framer-7j4a9 .framer-12z7y5i, .framer-7j4a9 .framer-pdu79a { grid-template-columns: repeat(2, minmax(50px, 1fr)); } .framer-7j4a9 .framer-1iughbg { height: var(--framer-aspect-ratio-supported, 367px); } .framer-7j4a9 .framer-1fdw9rq { padding: 0px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-7j4a9 .framer-1xwmn6y { gap: 0px; } .framer-7j4a9 .framer-1xwmn6y > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-7j4a9 .framer-1xwmn6y > :first-child { margin-top: 0px; } .framer-7j4a9 .framer-1xwmn6y > :last-child { margin-bottom: 0px; } }}\",\"@media (max-width: 809px) { .framer-7j4a9.framer-kf7qx5 { padding: 8px; width: 390px; } .framer-7j4a9 .framer-qbrge3 { flex-direction: column; } .framer-7j4a9 .framer-182f6ji, .framer-7j4a9 .framer-4r16dy { flex: none; width: 100%; } .framer-7j4a9.framer-1mpiyw4-container { will-change: var(--framer-will-change-effect-override, transform); } .framer-7j4a9 .framer-15jpenq-container { height: var(--framer-aspect-ratio-supported, 113px); } .framer-7j4a9 .framer-1xwmn6y { flex-direction: column; gap: 24px; justify-content: flex-start; } .framer-7j4a9 .framer-1u96jgj { flex: none; padding: 0px; width: 100%; } .framer-7j4a9 .framer-12z7y5i, .framer-7j4a9 .framer-pdu79a { grid-template-columns: repeat(1, minmax(50px, 1fr)); } .framer-7j4a9 .framer-1iughbg { height: var(--framer-aspect-ratio-supported, 242px); } .framer-7j4a9 .framer-1fdw9rq { padding: 0px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-7j4a9 .framer-qbrge3, .framer-7j4a9 .framer-1xwmn6y { gap: 0px; } .framer-7j4a9 .framer-qbrge3 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-7j4a9 .framer-qbrge3 > :first-child, .framer-7j4a9 .framer-1xwmn6y > :first-child { margin-top: 0px; } .framer-7j4a9 .framer-qbrge3 > :last-child, .framer-7j4a9 .framer-1xwmn6y > :last-child { margin-bottom: 0px; } .framer-7j4a9 .framer-1xwmn6y > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4798\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"iChYeC6ED\":{\"layout\":[\"fixed\",\"auto\"]},\"kLQhgVJVO\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerQS2kUOVnt=withCSS(Component,css,\"framer-7j4a9\");export default FramerQS2kUOVnt;FramerQS2kUOVnt.displayName=\"Learn\";FramerQS2kUOVnt.defaultProps={height:4798,width:1200};addFonts(FramerQS2kUOVnt,[{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\"}]},...DasboardHeaderFonts,...RailNavigationFonts,...YouTubeFonts,...VideoResourcesFonts,...BlogResourcesFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerQS2kUOVnt\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"iChYeC6ED\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kLQhgVJVO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"4798\",\"framerScrollSections\":\"* @framerResponsiveScreen\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["PlayOptions", "ThumbnailOptions", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "title", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "searchParams", "iframeProps", "u", "wrapperStyle", "l", "getThumbnailURL", "videoStyle", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "page", "res", "pre", "ext", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "DasboardHeaderFonts", "getFonts", "QrPmk7ngz_default", "RailNavigationFonts", "Gq6wumSmd_default", "YouTubeFonts", "Youtube", "VideoResourcesFonts", "duyKxK5bg_default", "BlogResourcesFonts", "fS_rfgXzx_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "data", "useQueryData", "negate", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "aG70Ek6P1_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "Cd5sw0To6", "NAKKZF2iU", "kTZnSxsCG", "RYrgE3YKC", "O17g8uLeavpBekHCjC", "InPh2sB0hvpBekHCjC", "Cd5sw0To6vpBekHCjC", "RYrgE3YKCvpBekHCjC", "g5h7ykBIqvpBekHCjC", "idvpBekHCjC", "dMHexUVli", "gt6Cz58QM", "O17g8uLeadzVwiV29R", "dMHexUVlidzVwiV29R", "Cd5sw0To6dzVwiV29R", "OA1MrcOkrdzVwiV29R", "iddzVwiV29R", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "zKZwAJ4EO3bnx0g", "overlay", "loadMore", "args", "MIEvhoNTl1wnntms", "scopingClassNames", "cx", "isDisplayed", "router", "useRouter", "isDisplayed1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "l", "PropertyOverrides2", "ComponentViewportProvider", "Container", "AnimatePresence", "Ga", "x", "RichText2", "ChildrenCanSuspend", "collection", "paginationInfo", "index", "PathVariablesContext", "ResolveLinks", "resolvedLinks", "getLoadingLazyAtYPosition", "Image2", "collection1", "paginationInfo1", "loadMore1", "index1", "resolvedLinks1", "css", "FramerQS2kUOVnt", "withCSS", "QS2kUOVnt_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
