{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js", "ssg:https://framerusercontent.com/modules/1dKc8siuRvoVrLqKVlJ5/PQYHJ7TwpGNRW5vUu110/Dv8NDoMSZ.js", "ssg:https://framerusercontent.com/modules/iIqEoZPvKKQrrI3DCYvh/DIi6MRRakGnrTMYJVsGf/kMRVzJ0Ur.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const isPlaying=videoRef.current.currentTime>0&&videoRef.current.onplaying&&!videoRef.current.paused&&!videoRef.current.ended&&videoRef.current.readyState>videoRef.current.HAVE_CURRENT_DATA;if(!isPlaying&&videoRef.current&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;videoRef.current.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();},[]);return{play,pause,setProgress};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}/**\n * The Video component has some effects that sync the video element with props\n * like `startTime`, `progress`, etc. React calls these effects whenever these\n * props change. However, it also calls them on the first mount, and this is\n * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n * the video was hydrated, the initial `useEffect` call will reset the video\n * state. To avoid this, we use this flag.\n */let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing:playingProp,muted,playsinline,controls,progress,objectFit,backgroundColor,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,posterEnabled,startTime:startTimeProp,volume,loop}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges){isMountedAndReadyForProgressChanges=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{if(!videoRef.current)return;if(videoRef.current.currentTime<.3)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:autoplayBehavior===\"on-mount\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";Video.defaultProps={srcType:\"URL\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",srcFile:\"\",posterEnabled:false,controls:false,playing:true,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:\"cover\",backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime:0};const groupsRegex=/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu;function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(groupsRegex)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",placeholder:\"../example.mp4\",hidden(props){return props.srcType===\"Upload\";},description:\"Hosted video file URL. For YouTube, use the YouTube component.\"},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"112\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "import{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Satoshi-medium\",\"FS;Satoshi-bold\",\"FS;Satoshi-bold italic\",\"FS;Satoshi-medium italic\"]);export const fonts=[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"},{family:\"Satoshi\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/CDEBEFT2R7XKNGXSBBLZGMY4MMHZG75P/HEVKDGQCYDZ7Z6CDVR2ZQGBCTUD6ZARH/BKWEE3VKGTFABE37K2DTH625VUSN2N35.woff2\",weight:\"700\"},{family:\"Satoshi\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NID3I7RITWZSKXRCJGOCMP5NOADJK6IG/2HLHGD7OBTWCOHW64YXOE5KFXHU4KJHM/ZHME2QIRFR7UPJ47NLY27RCAFY44CKZJ.woff2\",weight:\"500\"}];export const css=['.framer-cevVs .framer-styles-preset-4m212z:not(.rich-text-wrapper), .framer-cevVs .framer-styles-preset-4m212z.rich-text-wrapper p { --framer-font-family: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0em; --framer-line-height: 165%; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: #4b4b59; --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-cevVs\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (3d7d016)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PropertyOverrides,ResolveLinks,RichText,SVG,useActiveVariantCallback,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useLocaleCode,useLocaleInfo,useOverlayState,useQueryData,useRouter,withCSS}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import*as ReactDOM from\"react-dom\";import{Icon as Material}from\"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js\";import CommonFooterSection from\"#framer/local/canvasComponent/CbZ_1CHEu/CbZ_1CHEu.js\";import CtaSection from\"#framer/local/canvasComponent/gt_MMUQNx/gt_MMUQNx.js\";import UtilitiesButton from\"#framer/local/canvasComponent/L0upjooNs/L0upjooNs.js\";import PrimaryHeader from\"#framer/local/canvasComponent/sQIHQn2Qp/sQIHQn2Qp.js\";import Course,{enumToDisplayNameFunctions}from\"#framer/local/collection/CTWU4noDL/CTWU4noDL.js\";import*as sharedStyle7 from\"#framer/local/css/B43Wwt26p/B43Wwt26p.js\";import*as sharedStyle2 from\"#framer/local/css/buriPRQp9/buriPRQp9.js\";import*as sharedStyle1 from\"#framer/local/css/DjJ9j7gVT/DjJ9j7gVT.js\";import*as sharedStyle6 from\"#framer/local/css/Dv8NDoMSZ/Dv8NDoMSZ.js\";import*as sharedStyle3 from\"#framer/local/css/gpHu6IJDg/gpHu6IJDg.js\";import*as sharedStyle from\"#framer/local/css/ndqMFp4OR/ndqMFp4OR.js\";import*as sharedStyle5 from\"#framer/local/css/SL7nQQG2n/SL7nQQG2n.js\";import*as sharedStyle4 from\"#framer/local/css/USmLO7ivX/USmLO7ivX.js\";import metadataProvider from\"#framer/local/webPageMetadata/kMRVzJ0Ur/kMRVzJ0Ur.js\";const PrimaryHeaderFonts=getFonts(PrimaryHeader);const MaterialFonts=getFonts(Material);const VideoFonts=getFonts(Video);const FeatherFonts=getFonts(Feather);const UtilitiesButtonFonts=getFonts(UtilitiesButton);const CtaSectionFonts=getFonts(CtaSection);const CommonFooterSectionFonts=getFonts(CommonFooterSection);const cycleOrder=[\"i97S43n4s\",\"tFiePjHSD\",\"P68yophsl\",\"JeZoyD9Bw\"];const breakpoints={i97S43n4s:\"(min-width: 1440px)\",JeZoyD9Bw:\"(max-width: 767px)\",P68yophsl:\"(min-width: 768px) and (max-width: 1199px)\",tFiePjHSD:\"(min-width: 1200px) and (max-width: 1439px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-NEoPs\";const variantClassNames={i97S43n4s:\"framer-v-6gfdj4\",JeZoyD9Bw:\"framer-v-rkj1zr\",P68yophsl:\"framer-v-1lpicjf\",tFiePjHSD:\"framer-v-cbdtb8\"};const transitions={default:{duration:0}};const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;const dateStyle=options.dateStyle;const timeZone=\"UTC\";try{return date.toLocaleDateString(locale,{dateStyle,timeZone});}catch{return date.toLocaleDateString(fallbackLocale,{dateStyle,timeZone});}};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};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 suffix=(value,suffix)=>{if(typeof value===\"string\"&&typeof suffix===\"string\"){return value+suffix;}else if(typeof value===\"string\"){return value;}else if(typeof suffix===\"string\"){return suffix;}return\"\";};const numberToString=(value,options={},activeLocale)=>{const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;const{useGrouping,notation,compactDisplay,style,currency,currencyDisplay,unit,unitDisplay,minimumFractionDigits,maximumFractionDigits,minimumIntegerDigits}=options;const formatOptions={useGrouping,notation,compactDisplay,style,currency,currencyDisplay,unit,unitDisplay,minimumFractionDigits,maximumFractionDigits,minimumIntegerDigits};const number=Number(value);try{return number.toLocaleString(locale,formatOptions);}catch{try{return number.toLocaleString(fallbackLocale,formatOptions);}catch{return number.toLocaleString();}}};const metadata=metadataProvider();const humanReadableVariantMap={\"Large Desktop\":\"i97S43n4s\",Desktop:\"tFiePjHSD\",Phone:\"JeZoyD9Bw\",Tablet:\"P68yophsl\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"i97S43n4s\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){var _enumToDisplayNameFunctions_N2LXZav2S;const{activeLocale,setLocale}=useLocaleInfo();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{data:Course,type:\"Collection\"},select:[{name:\"JF7O3ZMRB\",type:\"Identifier\"},{name:\"XxobK9rO_\",type:\"Identifier\"},{name:\"zFm3gF9ok\",type:\"Identifier\"},{name:\"oQAR8Drf1\",type:\"Identifier\"},{name:\"dqdbD3yk9\",type:\"Identifier\"},{name:\"N2LXZav2S\",type:\"Identifier\"},{name:\"rEVmmR6Rb\",type:\"Identifier\"},{name:\"auVRQ1_FT\",type:\"Identifier\"},{name:\"e7xouTGEn\",type:\"Identifier\"},{name:\"SUbezn109\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables)});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data in \"Course\" matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,JF7O3ZMRB=getFromCurrentRouteData(\"JF7O3ZMRB\"),dqdbD3yk9=getFromCurrentRouteData(\"dqdbD3yk9\"),XxobK9rO_=getFromCurrentRouteData(\"XxobK9rO_\"),SUbezn109=getFromCurrentRouteData(\"SUbezn109\"),N2LXZav2S=getFromCurrentRouteData(\"N2LXZav2S\"),zFm3gF9ok=getFromCurrentRouteData(\"zFm3gF9ok\"),rEVmmR6Rb=getFromCurrentRouteData(\"rEVmmR6Rb\"),auVRQ1_FT=getFromCurrentRouteData(\"auVRQ1_FT\"),e7xouTGEn=getFromCurrentRouteData(\"e7xouTGEn\"),oQAR8Drf1=getFromCurrentRouteData(\"oQAR8Drf1\"),...restProps}=getProps(props);React.useLayoutEffect(()=>{const metadata1=metadataProvider(currentRouteData,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}if(metadata1.bodyClassName){Array.from(document.body.classList).filter(c=>c.startsWith(\"framer-body-\")).map(c=>document.body.classList.remove(c));document.body.classList.add(`${metadata1.bodyClassName}-framer-NEoPs`);return()=>{document.body.classList.remove(`${metadata1.bodyClassName}-framer-NEoPs`);};}},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const transition=transitions.default;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const onTap42m929=overlay=>activeVariantCallback(async(...args)=>{overlay.toggle();});const onClickzn6atv=overlay=>activeVariantCallback(async(...args)=>{overlay.hide();});const ref1=React.useRef(null);const activeLocaleCode=useLocaleCode();const textContent=toDateString(dqdbD3yk9,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);const textContent1=(_enumToDisplayNameFunctions_N2LXZav2S=enumToDisplayNameFunctions[\"N2LXZav2S\"])===null||_enumToDisplayNameFunctions_N2LXZav2S===void 0?void 0:_enumToDisplayNameFunctions_N2LXZav2S.call(enumToDisplayNameFunctions,N2LXZav2S,activeLocale);const textContent2=suffix(rEVmmR6Rb,\" Lessons\");const textContent3=numberToString(oQAR8Drf1,{currency:\"USD\",currencyDisplay:\"symbol\",locale:\"\",minimumFractionDigits:0,notation:\"standard\",style:\"currency\"},activeLocaleCode);const router=useRouter();const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"i97S43n4s\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-6gfdj4\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nqjvgh-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JeZoyD9Bw:{variant:\"S0nkjDZqc\"},P68yophsl:{variant:\"wmOCq57pP\"},tFiePjHSD:{variant:\"ERrrDpiAI\"}},children:/*#__PURE__*/_jsx(PrimaryHeader,{height:\"100%\",id:\"YKXf0VCt1\",layoutId:\"YKXf0VCt1\",style:{width:\"100%\"},variant:\"E0ms6CaEC\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t888g1\",\"data-framer-name\":\"Inner Pages / Banner\",name:\"Inner Pages / Banner\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-95ywyr\",\"data-framer-name\":\"Container\",name:\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-20ynu6\",\"data-framer-name\":\"Banner Stack\",name:\"Banner Stack\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-18e2vca\",\"data-styles-preset\":\"ndqMFp4OR\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-0e0784c6-bb0d-47ad-8c50-ccc68b7384c5, rgb(255, 255, 255))\"},children:\"FAQ\"})}),className:\"framer-13o975\",\"data-framer-name\":\"Title\",name:\"Title\",text:JF7O3ZMRB,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ae3ev3\",\"data-framer-name\":\"Text Block\",name:\"Text Block\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-mgh6a9\",\"data-styles-preset\":\"DjJ9j7gVT\",style:{\"--framer-text-color\":\"var(--token-0e0784c6-bb0d-47ad-8c50-ccc68b7384c5, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1tp0hkp\",\"data-styles-preset\":\"buriPRQp9\",children:\"Home\"})})})}),className:\"framer-49miqy\",\"data-framer-name\":\"Home\",name:\"Home\",text:textContent,verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1q7zfro\",\"data-border\":true,\"data-framer-name\":\"Background\",name:\"Background\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-wkbksb\",\"data-framer-name\":\"Blog Section\",name:\"Blog Section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-14vm1fl\",\"data-framer-name\":\"Container\",name:\"Container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JeZoyD9Bw:{background:{alt:\"\",fit:\"fill\",sizes:\"calc(min(100vw, 520px) - 48px)\",...toResponsiveImage(XxobK9rO_)}},P68yophsl:{background:{alt:\"\",fit:\"fill\",sizes:\"calc(min(max(100vw, 0px), 720px) - 48px)\",...toResponsiveImage(XxobK9rO_)}},tFiePjHSD:{background:{alt:\"\",fit:\"fill\",sizes:\"calc(min(max(100vw, 0px), 1000px) - 60px)\",...toResponsiveImage(XxobK9rO_)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"calc(min(max(100vw, 0px), 1356px) - 60px)\",...toResponsiveImage(XxobK9rO_)},className:\"framer-1h28p7y\",\"data-framer-name\":\"Blog Image \",name:\"Blog Image \"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-17qhua4\",\"data-framer-name\":\"Blog Section\",name:\"Blog Section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-m94171\",\"data-framer-name\":\"Container\",name:\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ka89zq\",\"data-framer-name\":\"Blog Post Stack\",name:\"Blog Post Stack\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mhg3qs\",\"data-framer-name\":\"Content Wrapper\",name:\"Content Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:SUbezn109,className:\"framer-82xgkr\",\"data-framer-name\":\"Content\",name:\"Content\",stylesPresetsClassNames:{h1:\"framer-styles-preset-18e2vca\",h3:\"framer-styles-preset-8j1y2x\",p:\"framer-styles-preset-1unn3k1\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-c9koc7\",\"data-framer-name\":\"Blog Sidebar\",name:\"Blog Sidebar\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tmkxc2\",\"data-framer-name\":\"Course Details\",name:\"Course Details\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12z8ttu\",\"data-framer-name\":\"Image Block\",name:\"Image Block\",children:[/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bl2046\",\"data-framer-name\":\"Play\",id:\"bl2046\",name:\"Play\",onTap:onTap42m929(overlay),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-5cucd8-container\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-a52bfa95-1562-4dc5-bf5b-77901ee5a9a1, rgb(31, 201, 172))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"PlayArrow\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"DLZ5ddDDp\",layoutId:\"DLZ5ddDDp\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-1peikj0\",\"data-framer-portal-id\":\"bl2046\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"OaHKfbpmW\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hu0p0i-container\",\"data-framer-portal-id\":\"bl2046\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:12,bottomLeftRadius:12,bottomRightRadius:12,controls:false,height:\"100%\",id:\"B9YvpdfoT\",isMixedBorderRadius:false,layoutId:\"B9YvpdfoT\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcType:\"URL\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:12,topRightRadius:12,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fifwyk-container\",\"data-framer-portal-id\":\"bl2046\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-0e0784c6-bb0d-47ad-8c50-ccc68b7384c5, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"x\",id:\"yaZGEBFt_\",layoutId:\"yaZGEBFt_\",mirrored:false,onClick:onClickzn6atv(overlay),selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),document.querySelector(\"#overlay\"))})})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JeZoyD9Bw:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"calc(min(max(min(100vw, 520px) - 48px, 0px), 400px) - 40px)\",...toResponsiveImage(XxobK9rO_)}},P68yophsl:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"calc(min(max(min(max(100vw, 0px), 720px) - 48px, 0px), 400px) - 64px)\",...toResponsiveImage(XxobK9rO_)}},tFiePjHSD:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"calc(min(max(min(max(100vw, 0px), 1000px) - 60px, 0px) / 3.24, 400px) - 64px)\",...toResponsiveImage(XxobK9rO_)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"calc(min(max(min(max(100vw, 0px), 1356px) - 60px, 0px) / 3.24, 400px) - 64px)\",...toResponsiveImage(XxobK9rO_)},className:\"framer-1u57swy\",\"data-framer-name\":\"image\",name:\"image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-hyuahf\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ww3p8h\",\"data-framer-name\":\"Info\",name:\"Info\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"140%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UHVibGljIFNhbnMtNzAw\",\"--framer-font-family\":'\"Public Sans\"',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"rgba(30, 30, 47, 1)\"},children:\"Course Information\"})})}),className:\"framer-1a5lbcw\",\"data-framer-name\":\"Course Information\",fonts:[\"GF;Public Sans-700\"],name:\"Course Information\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-y5yzia\",\"data-framer-name\":\"Info Block\",name:\"Info Block\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ch9dh3\",\"data-framer-name\":\"Info Item\",name:\"Info Item\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jyfwyi\",\"data-framer-name\":\"Title\",name:\"Title\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-w5qz5v\",\"data-framer-name\":\"file-text\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,name:\"file-text\",svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M9.33317 1.33301H3.99984C3.64622 1.33301 3.30708 1.47348 3.05703 1.72353C2.80698 1.97358 2.6665 2.31272 2.6665 2.66634V13.333C2.6665 13.6866 2.80698 14.0258 3.05703 14.2758C3.30708 14.5259 3.64622 14.6663 3.99984 14.6663H11.9998C12.3535 14.6663 12.6926 14.5259 12.9426 14.2758C13.1927 14.0258 13.3332 13.6866 13.3332 13.333V5.33301L9.33317 1.33301Z\" stroke=\"#4B4B59\" stroke-width=\"1.2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M9.3335 1.33301V5.33301H13.3335\" stroke=\"#4B4B59\" stroke-width=\"1.2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M10.6668 8.66699H5.3335\" stroke=\"#4B4B59\" stroke-width=\"1.2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M10.6668 11.333H5.3335\" stroke=\"#4B4B59\" stroke-width=\"1.2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M6.66659 6H5.99992H5.33325\" stroke=\"#4B4B59\" stroke-width=\"1.2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tyzl21\",\"data-styles-preset\":\"SL7nQQG2n\",style:{\"--framer-text-color\":\"var(--token-660ea217-5e35-453d-af0e-7734ffa46ff2, rgb(75, 75, 75))\"},children:\"Course level:\"})}),className:\"framer-igpgiq\",\"data-framer-name\":\"Course level:\",name:\"Course level:\",verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-4m212z\",\"data-styles-preset\":\"Dv8NDoMSZ\",style:{\"--framer-text-color\":\"var(--token-660ea217-5e35-453d-af0e-7734ffa46ff2, rgb(75, 75, 75))\"},children:\"Advance\"})}),className:\"framer-e0uhsr\",\"data-framer-name\":\"Advance\",name:\"Advance\",text:textContent1,verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6mifr1\",\"data-framer-name\":\"Info Item\",name:\"Info Item\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1glszft\",\"data-framer-name\":\"Title\",name:\"Title\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1qa887n\",\"data-framer-name\":\"file-text\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,name:\"file-text\",svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M9.33317 1.33301H3.99984C3.64622 1.33301 3.30708 1.47348 3.05703 1.72353C2.80698 1.97358 2.6665 2.31272 2.6665 2.66634V13.333C2.6665 13.6866 2.80698 14.0258 3.05703 14.2758C3.30708 14.5259 3.64622 14.6663 3.99984 14.6663H11.9998C12.3535 14.6663 12.6926 14.5259 12.9426 14.2758C13.1927 14.0258 13.3332 13.6866 13.3332 13.333V5.33301L9.33317 1.33301Z\" stroke=\"#4B4B59\" stroke-width=\"1.2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M9.3335 1.33301V5.33301H13.3335\" stroke=\"#4B4B59\" stroke-width=\"1.2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M10.6668 8.66699H5.3335\" stroke=\"#4B4B59\" stroke-width=\"1.2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M10.6668 11.333H5.3335\" stroke=\"#4B4B59\" stroke-width=\"1.2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M6.66659 6H5.99992H5.33325\" stroke=\"#4B4B59\" stroke-width=\"1.2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tyzl21\",\"data-styles-preset\":\"SL7nQQG2n\",style:{\"--framer-text-color\":\"var(--token-660ea217-5e35-453d-af0e-7734ffa46ff2, rgb(75, 75, 75))\"},children:\"Instructor:\"})}),className:\"framer-1u70xox\",\"data-framer-name\":\"Instructor:\",name:\"Instructor:\",verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-4m212z\",\"data-styles-preset\":\"Dv8NDoMSZ\",children:\"Ronald Richards\"})}),className:\"framer-8jabah\",\"data-framer-name\":\"Ronald Richards\",name:\"Ronald Richards\",text:zFm3gF9ok,verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-130y20w\",\"data-framer-name\":\"Info Item\",name:\"Info Item\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kw153d\",\"data-framer-name\":\"Title\",name:\"Title\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-12mrlkq\",\"data-framer-name\":\"file-text\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,name:\"file-text\",svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M9.33317 1.33301H3.99984C3.64622 1.33301 3.30708 1.47348 3.05703 1.72353C2.80698 1.97358 2.6665 2.31272 2.6665 2.66634V13.333C2.6665 13.6866 2.80698 14.0258 3.05703 14.2758C3.30708 14.5259 3.64622 14.6663 3.99984 14.6663H11.9998C12.3535 14.6663 12.6926 14.5259 12.9426 14.2758C13.1927 14.0258 13.3332 13.6866 13.3332 13.333V5.33301L9.33317 1.33301Z\" stroke=\"#4B4B59\" stroke-width=\"1.2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M9.3335 1.33301V5.33301H13.3335\" stroke=\"#4B4B59\" stroke-width=\"1.2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M10.6668 8.66699H5.3335\" stroke=\"#4B4B59\" stroke-width=\"1.2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M10.6668 11.333H5.3335\" stroke=\"#4B4B59\" stroke-width=\"1.2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M6.66659 6H5.99992H5.33325\" stroke=\"#4B4B59\" stroke-width=\"1.2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tyzl21\",\"data-styles-preset\":\"SL7nQQG2n\",style:{\"--framer-text-color\":\"var(--token-660ea217-5e35-453d-af0e-7734ffa46ff2, rgb(75, 75, 75))\"},children:\"Lesson:\"})}),className:\"framer-1qn43gn\",\"data-framer-name\":\"Lesson:\",name:\"Lesson:\",verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-4m212z\",\"data-styles-preset\":\"Dv8NDoMSZ\",children:\"16 Lessons\"})}),className:\"framer-u06f8e\",\"data-framer-name\":\"16 Lessons\",name:\"16 Lessons\",text:textContent2,verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6pxq09\",\"data-framer-name\":\"Info Item\",name:\"Info Item\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1je4xa1\",\"data-framer-name\":\"Title\",name:\"Title\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1fqj8d2\",\"data-framer-name\":\"file-text\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,name:\"file-text\",svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M9.33317 1.33301H3.99984C3.64622 1.33301 3.30708 1.47348 3.05703 1.72353C2.80698 1.97358 2.6665 2.31272 2.6665 2.66634V13.333C2.6665 13.6866 2.80698 14.0258 3.05703 14.2758C3.30708 14.5259 3.64622 14.6663 3.99984 14.6663H11.9998C12.3535 14.6663 12.6926 14.5259 12.9426 14.2758C13.1927 14.0258 13.3332 13.6866 13.3332 13.333V5.33301L9.33317 1.33301Z\" stroke=\"#4B4B59\" stroke-width=\"1.2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M9.3335 1.33301V5.33301H13.3335\" stroke=\"#4B4B59\" stroke-width=\"1.2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M10.6668 8.66699H5.3335\" stroke=\"#4B4B59\" stroke-width=\"1.2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M10.6668 11.333H5.3335\" stroke=\"#4B4B59\" stroke-width=\"1.2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M6.66659 6H5.99992H5.33325\" stroke=\"#4B4B59\" stroke-width=\"1.2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tyzl21\",\"data-styles-preset\":\"SL7nQQG2n\",style:{\"--framer-text-color\":\"var(--token-660ea217-5e35-453d-af0e-7734ffa46ff2, rgb(75, 75, 75))\"},children:\"Duration:\"})}),className:\"framer-qksiwm\",\"data-framer-name\":\"Duration:\",name:\"Duration:\",verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-4m212z\",\"data-styles-preset\":\"Dv8NDoMSZ\",children:\"8 Hour\"})}),className:\"framer-1c2cc7h\",\"data-framer-name\":\"8 Hour\",name:\"8 Hour\",text:auVRQ1_FT,verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-114wmwn\",\"data-framer-name\":\"Info Item\",name:\"Info Item\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ugz5oi\",\"data-framer-name\":\"Title\",name:\"Title\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1eh07d2\",\"data-framer-name\":\"file-text\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,name:\"file-text\",svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M9.33317 1.33301H3.99984C3.64622 1.33301 3.30708 1.47348 3.05703 1.72353C2.80698 1.97358 2.6665 2.31272 2.6665 2.66634V13.333C2.6665 13.6866 2.80698 14.0258 3.05703 14.2758C3.30708 14.5259 3.64622 14.6663 3.99984 14.6663H11.9998C12.3535 14.6663 12.6926 14.5259 12.9426 14.2758C13.1927 14.0258 13.3332 13.6866 13.3332 13.333V5.33301L9.33317 1.33301Z\" stroke=\"#4B4B59\" stroke-width=\"1.2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M9.3335 1.33301V5.33301H13.3335\" stroke=\"#4B4B59\" stroke-width=\"1.2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M10.6668 8.66699H5.3335\" stroke=\"#4B4B59\" stroke-width=\"1.2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M10.6668 11.333H5.3335\" stroke=\"#4B4B59\" stroke-width=\"1.2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M6.66659 6H5.99992H5.33325\" stroke=\"#4B4B59\" stroke-width=\"1.2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tyzl21\",\"data-styles-preset\":\"SL7nQQG2n\",style:{\"--framer-text-color\":\"var(--token-660ea217-5e35-453d-af0e-7734ffa46ff2, rgb(75, 75, 75))\"},children:\"Quiz:\"})}),className:\"framer-ffx0q4\",\"data-framer-name\":\"Quiz:\",name:\"Quiz:\",verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-4m212z\",\"data-styles-preset\":\"Dv8NDoMSZ\",children:\"20\"})}),className:\"framer-1p8nm5b\",\"data-framer-name\":\"20\",name:\"20\",text:e7xouTGEn,verticalAlignment:\"center\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-y67nda\",\"data-framer-name\":\"Line 279\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:3,intrinsicWidth:338,name:\"Line 279\",svg:'<svg width=\"338\" height=\"3\" viewBox=\"-1 -1 338 3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line y1=\"0.5\" x2=\"336\" y2=\"0.5\" stroke=\"#E8E8EA\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jffh55\",\"data-framer-name\":\"Price Block\",name:\"Price Block\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-124izu6\",\"data-styles-preset\":\"B43Wwt26p\",children:\"$50.00\"})}),className:\"framer-14kqarh\",\"data-framer-name\":\"Price\",name:\"Price\",text:textContent3,verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"gl8eA7703\"},implicitPathVariables:undefined},{href:{webPageId:\"gl8eA7703\"},implicitPathVariables:undefined},{href:{webPageId:\"gl8eA7703\"},implicitPathVariables:undefined},{href:{webPageId:\"gl8eA7703\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JeZoyD9Bw:{width:\"calc(min(max(min(100vw, 520px) - 48px, 0px), 400px) - 40px)\"},P68yophsl:{width:\"calc(min(max(min(max(100vw, 0px), 720px) - 48px, 0px), 400px) - 64px)\"},tFiePjHSD:{width:\"calc(min(max(min(max(100vw, 0px), 1000px) - 60px, 0px) / 3.24, 400px) - 64px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"calc(min(max(min(max(100vw, 0px), 1356px) - 60px, 0px) / 3.24, 400px) - 64px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1deh06k-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JeZoyD9Bw:{eRQH6bkHZ:resolvedLinks[3]},P68yophsl:{eRQH6bkHZ:resolvedLinks[2]},tFiePjHSD:{eRQH6bkHZ:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(UtilitiesButton,{BrBxYYwxB:false,CAAfsN01p:false,clxiTxsdr:false,eRQH6bkHZ:resolvedLinks[0],height:\"100%\",id:\"bEeEKzA_S\",layoutId:\"bEeEKzA_S\",rrUry4_qe:\"Enroll Now\",style:{width:\"100%\"},variant:\"JMn4w0XPd\",width:\"100%\"})})})})})})]})]})})]})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-b3df0p-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JeZoyD9Bw:{variant:\"EvdbM0VkD\"},P68yophsl:{variant:\"k_VINLSW4\"},tFiePjHSD:{variant:\"ZYcypeNN7\"}},children:/*#__PURE__*/_jsx(CtaSection,{height:\"100%\",id:\"a1PZZLD2c\",layoutId:\"a1PZZLD2c\",style:{width:\"100%\"},variant:\"f5i8E2KOK\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-6f3tie-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JeZoyD9Bw:{variant:\"eVAjvu4_4\"},P68yophsl:{variant:\"UYeLyMd5W\"},tFiePjHSD:{variant:\"VoEp9GjUt\"}},children:/*#__PURE__*/_jsx(CommonFooterSection,{height:\"100%\",id:\"H3mFCbSAf\",layoutId:\"H3mFCbSAf\",style:{width:\"100%\"},variant:\"LW97cDiuC\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=['.framer-NEoPs[data-border=\"true\"]::after, .framer-NEoPs [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-NEoPs { background: white; }`,\".framer-NEoPs.framer-oh7rhh, .framer-NEoPs .framer-oh7rhh { display: block; }\",\".framer-NEoPs.framer-6gfdj4 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1440px; }\",\".framer-NEoPs .framer-1nqjvgh-container { flex: none; height: auto; left: 50%; position: absolute; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-NEoPs .framer-1t888g1 { align-content: center; align-items: center; background-color: var(--token-c22b7d22-f500-4995-87a6-d9e218b4560d, #1e1e1e); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 180px 0px 90px 0px; position: relative; width: 100%; }\",\".framer-NEoPs .framer-95ywyr, .framer-NEoPs .framer-14vm1fl, .framer-NEoPs .framer-m94171 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1356px; overflow: visible; padding: 0px 30px 0px 30px; position: relative; width: 1px; z-index: 2; }\",\".framer-NEoPs .framer-20ynu6 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-NEoPs .framer-13o975 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 80%; word-break: break-word; word-wrap: break-word; }\",\".framer-NEoPs .framer-1ae3ev3 { 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: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-NEoPs .framer-49miqy, .framer-NEoPs .framer-e0uhsr, .framer-NEoPs .framer-8jabah, .framer-NEoPs .framer-u06f8e, .framer-NEoPs .framer-1c2cc7h, .framer-NEoPs .framer-1p8nm5b { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-NEoPs .framer-1q7zfro { --border-bottom-width: 120px; --border-color: #353535; --border-left-width: 120px; --border-right-width: 120px; --border-style: solid; --border-top-width: 120px; aspect-ratio: 0.9630872483221476 / 1; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 596px); left: -220px; position: absolute; top: -277px; width: 574px; z-index: 0; }\",\".framer-NEoPs .framer-wkbksb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 80px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-NEoPs .framer-1h28p7y { aspect-ratio: 1.7826685006877578 / 1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: var(--framer-aspect-ratio-supported, 727px); position: relative; width: 100%; }\",\".framer-NEoPs .framer-17qhua4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 80px 0px 130px 0px; position: relative; width: 100%; }\",\".framer-NEoPs .framer-ka89zq { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-NEoPs .framer-1mhg3qs { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 63%; }\",\".framer-NEoPs .framer-82xgkr { --framer-paragraph-spacing: 24px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-NEoPs .framer-c9koc7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 31%; }\",\".framer-NEoPs .framer-1tmkxc2 { align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 8px 16px 64px 0px rgba(30, 30, 30, 0.08); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 400px; overflow: visible; padding: 32px 32px 32px 32px; position: relative; width: 100%; }\",\".framer-NEoPs .framer-12z8ttu { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-NEoPs .framer-bl2046 { align-content: center; align-items: center; background-color: var(--token-0e0784c6-bb0d-47ad-8c50-ccc68b7384c5, #ffffff); border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 60px; justify-content: center; left: calc(50.00000000000002% - 60px / 2); overflow: hidden; padding: 0px 0px 0px 0px; position: absolute; top: calc(50.00000000000002% - 60px / 2); width: 60px; will-change: var(--framer-will-change-override, transform); z-index: 3; }\",\".framer-NEoPs .framer-5cucd8-container { flex: none; height: 32px; left: calc(50.00000000000002% - 32px / 2); position: absolute; top: calc(50.00000000000002% - 32px / 2); width: 32px; z-index: 1; }\",\".framer-NEoPs .framer-1peikj0 { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 10; }\",\".framer-NEoPs .framer-1hu0p0i-container { aspect-ratio: 1.92 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 600px); left: 50%; position: fixed; top: 50%; transform: translate(-50%, -50%); width: 80%; z-index: 10; }\",\".framer-NEoPs .framer-1fifwyk-container { flex: none; height: 60px; position: fixed; right: 40px; top: 40px; width: 60px; z-index: 10; }\",\".framer-NEoPs .framer-1u57swy { aspect-ratio: 1.411764705882353 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 238px); position: relative; width: 100%; }\",\".framer-NEoPs .framer-hyuahf { background-color: rgba(0, 0, 0, 0.45); flex: none; height: 100%; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-NEoPs .framer-1ww3p8h { 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: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-NEoPs .framer-1a5lbcw { --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-NEoPs .framer-y5yzia, .framer-NEoPs .framer-jffh55 { 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 0px 0px 0px; position: relative; width: 100%; }\",\".framer-NEoPs .framer-1ch9dh3, .framer-NEoPs .framer-6mifr1, .framer-NEoPs .framer-130y20w, .framer-NEoPs .framer-6pxq09, .framer-NEoPs .framer-114wmwn { 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: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-NEoPs .framer-1jyfwyi, .framer-NEoPs .framer-1glszft, .framer-NEoPs .framer-kw153d, .framer-NEoPs .framer-1je4xa1, .framer-NEoPs .framer-1ugz5oi { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-NEoPs .framer-w5qz5v, .framer-NEoPs .framer-1qa887n, .framer-NEoPs .framer-12mrlkq, .framer-NEoPs .framer-1fqj8d2, .framer-NEoPs .framer-1eh07d2 { flex: none; height: 16px; position: relative; width: 16px; }\",\".framer-NEoPs .framer-igpgiq, .framer-NEoPs .framer-1u70xox, .framer-NEoPs .framer-1qn43gn, .framer-NEoPs .framer-qksiwm, .framer-NEoPs .framer-ffx0q4 { --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-NEoPs .framer-y67nda { flex: none; height: 3px; position: relative; width: 338px; }\",\".framer-NEoPs .framer-14kqarh { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 336px; word-break: break-word; word-wrap: break-word; }\",\".framer-NEoPs .framer-1deh06k-container, .framer-NEoPs .framer-b3df0p-container, .framer-NEoPs .framer-6f3tie-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-NEoPs.framer-6gfdj4, .framer-NEoPs .framer-1t888g1, .framer-NEoPs .framer-95ywyr, .framer-NEoPs .framer-20ynu6, .framer-NEoPs .framer-1ae3ev3, .framer-NEoPs .framer-wkbksb, .framer-NEoPs .framer-14vm1fl, .framer-NEoPs .framer-17qhua4, .framer-NEoPs .framer-m94171, .framer-NEoPs .framer-1mhg3qs, .framer-NEoPs .framer-c9koc7, .framer-NEoPs .framer-1tmkxc2, .framer-NEoPs .framer-12z8ttu, .framer-NEoPs .framer-bl2046, .framer-NEoPs .framer-1ww3p8h, .framer-NEoPs .framer-y5yzia, .framer-NEoPs .framer-1jyfwyi, .framer-NEoPs .framer-1glszft, .framer-NEoPs .framer-kw153d, .framer-NEoPs .framer-1je4xa1, .framer-NEoPs .framer-1ugz5oi, .framer-NEoPs .framer-jffh55 { gap: 0px; } .framer-NEoPs.framer-6gfdj4 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-NEoPs.framer-6gfdj4 > :first-child, .framer-NEoPs .framer-20ynu6 > :first-child, .framer-NEoPs .framer-1mhg3qs > :first-child, .framer-NEoPs .framer-c9koc7 > :first-child, .framer-NEoPs .framer-1tmkxc2 > :first-child, .framer-NEoPs .framer-12z8ttu > :first-child, .framer-NEoPs .framer-1ww3p8h > :first-child, .framer-NEoPs .framer-y5yzia > :first-child, .framer-NEoPs .framer-jffh55 > :first-child { margin-top: 0px; } .framer-NEoPs.framer-6gfdj4 > :last-child, .framer-NEoPs .framer-20ynu6 > :last-child, .framer-NEoPs .framer-1mhg3qs > :last-child, .framer-NEoPs .framer-c9koc7 > :last-child, .framer-NEoPs .framer-1tmkxc2 > :last-child, .framer-NEoPs .framer-12z8ttu > :last-child, .framer-NEoPs .framer-1ww3p8h > :last-child, .framer-NEoPs .framer-y5yzia > :last-child, .framer-NEoPs .framer-jffh55 > :last-child { margin-bottom: 0px; } .framer-NEoPs .framer-1t888g1 > *, .framer-NEoPs .framer-wkbksb > *, .framer-NEoPs .framer-17qhua4 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-NEoPs .framer-1t888g1 > :first-child, .framer-NEoPs .framer-95ywyr > :first-child, .framer-NEoPs .framer-1ae3ev3 > :first-child, .framer-NEoPs .framer-wkbksb > :first-child, .framer-NEoPs .framer-14vm1fl > :first-child, .framer-NEoPs .framer-17qhua4 > :first-child, .framer-NEoPs .framer-m94171 > :first-child, .framer-NEoPs .framer-bl2046 > :first-child, .framer-NEoPs .framer-1jyfwyi > :first-child, .framer-NEoPs .framer-1glszft > :first-child, .framer-NEoPs .framer-kw153d > :first-child, .framer-NEoPs .framer-1je4xa1 > :first-child, .framer-NEoPs .framer-1ugz5oi > :first-child { margin-left: 0px; } .framer-NEoPs .framer-1t888g1 > :last-child, .framer-NEoPs .framer-95ywyr > :last-child, .framer-NEoPs .framer-1ae3ev3 > :last-child, .framer-NEoPs .framer-wkbksb > :last-child, .framer-NEoPs .framer-14vm1fl > :last-child, .framer-NEoPs .framer-17qhua4 > :last-child, .framer-NEoPs .framer-m94171 > :last-child, .framer-NEoPs .framer-bl2046 > :last-child, .framer-NEoPs .framer-1jyfwyi > :last-child, .framer-NEoPs .framer-1glszft > :last-child, .framer-NEoPs .framer-kw153d > :last-child, .framer-NEoPs .framer-1je4xa1 > :last-child, .framer-NEoPs .framer-1ugz5oi > :last-child { margin-right: 0px; } .framer-NEoPs .framer-95ywyr > *, .framer-NEoPs .framer-14vm1fl > *, .framer-NEoPs .framer-m94171 > *, .framer-NEoPs .framer-bl2046 > *, .framer-NEoPs .framer-1jyfwyi > *, .framer-NEoPs .framer-1glszft > *, .framer-NEoPs .framer-kw153d > *, .framer-NEoPs .framer-1je4xa1 > *, .framer-NEoPs .framer-1ugz5oi > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-NEoPs .framer-20ynu6 > *, .framer-NEoPs .framer-c9koc7 > *, .framer-NEoPs .framer-1tmkxc2 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-NEoPs .framer-1ae3ev3 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-NEoPs .framer-1mhg3qs > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-NEoPs .framer-12z8ttu > *, .framer-NEoPs .framer-1ww3p8h > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-NEoPs .framer-y5yzia > *, .framer-NEoPs .framer-jffh55 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",\"@media (min-width: 1440px) { .framer-NEoPs .hidden-6gfdj4 { display: none !important; } }\",`@media (min-width: 1200px) and (max-width: 1439px) { .framer-NEoPs .hidden-cbdtb8 { display: none !important; } .${metadata.bodyClassName}-framer-NEoPs { background: white; } .framer-NEoPs.framer-6gfdj4 { width: 1200px; } .framer-NEoPs .framer-1t888g1 { padding: 160px 0px 80px 0px; } .framer-NEoPs .framer-95ywyr, .framer-NEoPs .framer-14vm1fl, .framer-NEoPs .framer-m94171 { max-width: 1000px; } .framer-NEoPs .framer-13o975 { width: 90%; } .framer-NEoPs .framer-1q7zfro { height: var(--framer-aspect-ratio-supported, 521px); width: 502px; } .framer-NEoPs .framer-1h28p7y { height: var(--framer-aspect-ratio-supported, 527px); } .framer-NEoPs .framer-17qhua4 { padding: 80px 0px 100px 0px; } .framer-NEoPs .framer-1hu0p0i-container { height: var(--framer-aspect-ratio-supported, 500px); } .framer-NEoPs .framer-1u57swy { height: var(--framer-aspect-ratio-supported, 160px); }}`,`@media (min-width: 768px) and (max-width: 1199px) { .framer-NEoPs .hidden-1lpicjf { display: none !important; } .${metadata.bodyClassName}-framer-NEoPs { background: white; } .framer-NEoPs.framer-6gfdj4 { width: 768px; } .framer-NEoPs .framer-1t888g1 { padding: 140px 0px 70px 0px; } .framer-NEoPs .framer-95ywyr, .framer-NEoPs .framer-14vm1fl, .framer-NEoPs .framer-m94171 { max-width: 720px; padding: 0px 24px 0px 24px; } .framer-NEoPs .framer-20ynu6 { gap: 16px; } .framer-NEoPs .framer-13o975, .framer-NEoPs .framer-1mhg3qs, .framer-NEoPs .framer-c9koc7 { width: 100%; } .framer-NEoPs .framer-1ae3ev3 { gap: 7px; } .framer-NEoPs .framer-1q7zfro { height: var(--framer-aspect-ratio-supported, 502px); left: -222px; width: 483px; } .framer-NEoPs .framer-1h28p7y { height: var(--framer-aspect-ratio-supported, 377px); } .framer-NEoPs .framer-17qhua4 { padding: 60px 0px 80px 0px; } .framer-NEoPs .framer-ka89zq { flex-direction: column; gap: 40px; justify-content: flex-start; } .framer-NEoPs .framer-1hu0p0i-container { height: var(--framer-aspect-ratio-supported, 151px); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-NEoPs .framer-20ynu6, .framer-NEoPs .framer-1ae3ev3, .framer-NEoPs .framer-ka89zq { gap: 0px; } .framer-NEoPs .framer-20ynu6 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-NEoPs .framer-20ynu6 > :first-child, .framer-NEoPs .framer-ka89zq > :first-child { margin-top: 0px; } .framer-NEoPs .framer-20ynu6 > :last-child, .framer-NEoPs .framer-ka89zq > :last-child { margin-bottom: 0px; } .framer-NEoPs .framer-1ae3ev3 > * { margin: 0px; margin-left: calc(7px / 2); margin-right: calc(7px / 2); } .framer-NEoPs .framer-1ae3ev3 > :first-child { margin-left: 0px; } .framer-NEoPs .framer-1ae3ev3 > :last-child { margin-right: 0px; } .framer-NEoPs .framer-ka89zq > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } }}`,`@media (max-width: 767px) { .framer-NEoPs .hidden-rkj1zr { display: none !important; } .${metadata.bodyClassName}-framer-NEoPs { background: white; } .framer-NEoPs.framer-6gfdj4 { width: 390px; } .framer-NEoPs .framer-1t888g1 { padding: 120px 0px 48px 0px; } .framer-NEoPs .framer-95ywyr { max-width: 520px; padding: 0px 24px 0px 24px; } .framer-NEoPs .framer-20ynu6 { gap: 14px; } .framer-NEoPs .framer-13o975, .framer-NEoPs .framer-1mhg3qs { width: 100%; } .framer-NEoPs .framer-1ae3ev3 { gap: 7px; } .framer-NEoPs .framer-1q7zfro { height: var(--framer-aspect-ratio-supported, 370px); left: -182px; top: -227px; width: 356px; } .framer-NEoPs .framer-wkbksb { flex-direction: column; padding: 60px 0px 0px 0px; } .framer-NEoPs .framer-14vm1fl, .framer-NEoPs .framer-m94171 { flex: none; max-width: 520px; padding: 0px 24px 0px 24px; width: 100%; } .framer-NEoPs .framer-1h28p7y { height: var(--framer-aspect-ratio-supported, 191px); } .framer-NEoPs .framer-17qhua4 { flex-direction: column; padding: 40px 0px 60px 0px; } .framer-NEoPs .framer-ka89zq { flex-direction: column; gap: 30px; justify-content: flex-start; max-width: 400px; } .framer-NEoPs .framer-c9koc7 { align-content: center; align-items: center; justify-content: center; width: 100%; } .framer-NEoPs .framer-1tmkxc2 { padding: 20px 20px 20px 20px; } .framer-NEoPs .framer-1hu0p0i-container { height: var(--framer-aspect-ratio-supported, 163px); } .framer-NEoPs .framer-1fifwyk-container { height: 40px; right: 30px; top: 30px; width: 40px; } .framer-NEoPs .framer-1u57swy { height: var(--framer-aspect-ratio-supported, 214px); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-NEoPs .framer-20ynu6, .framer-NEoPs .framer-1ae3ev3, .framer-NEoPs .framer-wkbksb, .framer-NEoPs .framer-17qhua4, .framer-NEoPs .framer-ka89zq { gap: 0px; } .framer-NEoPs .framer-20ynu6 > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-NEoPs .framer-20ynu6 > :first-child, .framer-NEoPs .framer-wkbksb > :first-child, .framer-NEoPs .framer-17qhua4 > :first-child, .framer-NEoPs .framer-ka89zq > :first-child { margin-top: 0px; } .framer-NEoPs .framer-20ynu6 > :last-child, .framer-NEoPs .framer-wkbksb > :last-child, .framer-NEoPs .framer-17qhua4 > :last-child, .framer-NEoPs .framer-ka89zq > :last-child { margin-bottom: 0px; } .framer-NEoPs .framer-1ae3ev3 > * { margin: 0px; margin-left: calc(7px / 2); margin-right: calc(7px / 2); } .framer-NEoPs .framer-1ae3ev3 > :first-child { margin-left: 0px; } .framer-NEoPs .framer-1ae3ev3 > :last-child { margin-right: 0px; } .framer-NEoPs .framer-wkbksb > *, .framer-NEoPs .framer-17qhua4 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-NEoPs .framer-ka89zq > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 3690\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"tFiePjHSD\":{\"layout\":[\"fixed\",\"auto\"]},\"P68yophsl\":{\"layout\":[\"fixed\",\"auto\"]},\"JeZoyD9Bw\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerkMRVzJ0Ur=withCSS(Component,css,\"framer-NEoPs\");export default FramerkMRVzJ0Ur;FramerkMRVzJ0Ur.displayName=\"Course\";FramerkMRVzJ0Ur.defaultProps={height:3690,width:1440};addFonts(FramerkMRVzJ0Ur,[{family:\"Public Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/publicsans/v15/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymu8Z65xg0pX189fg.woff2\",weight:\"700\"},...PrimaryHeaderFonts,...MaterialFonts,...VideoFonts,...FeatherFonts,...UtilitiesButtonFonts,...CtaSectionFonts,...CommonFooterSectionFonts,...sharedStyle.fonts,...sharedStyle1.fonts,...sharedStyle2.fonts,...sharedStyle3.fonts,...sharedStyle4.fonts,...sharedStyle5.fonts,...sharedStyle6.fonts,...sharedStyle7.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerkMRVzJ0Ur\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicWidth\":\"1440\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"3690\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tFiePjHSD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"P68yophsl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"JeZoyD9Bw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "progress", "objectFit", "backgroundColor", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "posterEnabled", "startTimeProp", "volume", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "startTime", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "groupsRegex", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "fontStore", "fonts", "css", "className", "PrimaryHeaderFonts", "getFonts", "sQIHQn2Qp_default", "MaterialFonts", "Icon", "VideoFonts", "Video", "FeatherFonts", "UtilitiesButtonFonts", "L0upjooNs_default", "CtaSectionFonts", "gt_MMUQNx_default", "CommonFooterSectionFonts", "CbZ_1CHEu_default", "breakpoints", "serializationHash", "variantClassNames", "transitions", "toDateString", "value", "options", "activeLocale", "date", "fallbackLocale", "locale", "dateStyle", "timeZone", "toResponsiveImage", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "suffix", "numberToString", "useGrouping", "notation", "compactDisplay", "style", "currency", "currencyDisplay", "unit", "unitDisplay", "minimumFractionDigits", "maximumFractionDigits", "minimumIntegerDigits", "formatOptions", "number", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "_enumToDisplayNameFunctions_N2LXZav2S", "setLocale", "useLocaleInfo", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "useQueryData", "CTWU4noDL_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "className", "layoutId", "variant", "JF7O3ZMRB", "dqdbD3yk9", "XxobK9rO_", "SUbezn109", "N2LXZav2S", "zFm3gF9ok", "rEVmmR6Rb", "auVRQ1_FT", "e7xouTGEn", "oQAR8Drf1", "restProps", "fe", "metadata1", "_document_querySelector", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "transition", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap42m929", "overlay", "args", "onClickzn6atv", "ref1", "pe", "activeLocaleCode", "useLocaleCode", "textContent", "textContent1", "enumToDisplayNameFunctions", "textContent2", "textContent3", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "ComponentViewportProvider", "Container", "PropertyOverrides", "sQIHQn2Qp_default", "RichText", "x", "Link", "Image2", "l", "Icon", "AnimatePresence", "Ga", "Video", "SVG", "ResolveLinks", "resolvedLinks", "L0upjooNs_default", "gt_MMUQNx_default", "CbZ_1CHEu_default", "css", "FramerkMRVzJ0Ur", "withCSS", "kMRVzJ0Ur_default", "addFonts", "PrimaryHeaderFonts", "MaterialFonts", "VideoFonts", "FeatherFonts", "UtilitiesButtonFonts", "CtaSectionFonts", "CommonFooterSectionFonts", "fonts", "__FramerMetadata__"]
}
