{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js", "ssg:https://framerusercontent.com/modules/w6nXmoaZza6HQRpkz7EY/PuX5IJ6fIK3JS5nzwrRi/pzXETq_7e.js", "ssg:https://framerusercontent.com/modules/eg5hyLk38QQQaAzIakMw/EJlTFGUGIu2R53w6NCG5/Rg250I05I.js", "ssg:https://boosters.flowbase.co/countdown-framer.js#Pi7EuYI4gQpP", "ssg:https://framerusercontent.com/modules/SUlf4GWdbW9dvbOzC9eW/NASY9uFwfkn1NqzBMlny/Countdown_1.js", "ssg:https://framerusercontent.com/modules/W5LRJ0Pcg2iw78Zy8WWi/B9vLiyRqDo0RxgvSlvLT/H3xk5tGfS.js", "ssg:https://framerusercontent.com/modules/4zuLyhmWMcPEhHrECoBl/U3ue1WxUILxPbrLLGltB/l1EH9buxQ.js", "ssg:https://framerusercontent.com/modules/SAUS3HZQnkYRIuLuclA6/AKZd3MagJmkzwj7au6ap/gxylYdPOn.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));var ThumbnailFormat;(function(ThumbnailFormat){ThumbnailFormat[\"WebP\"]=\"webp\";ThumbnailFormat[\"JPG\"]=\"jpg\";})(ThumbnailFormat||(ThumbnailFormat={}));/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */ export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==PlayOptions.Normal;const showThumbnail=onCanvas||thumbnail!==ThumbnailOptions.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://stackoverflow.com/questions/2068344/how-do-i-get-a-youtube-video-thumbnail-from-the-youtube-api\nconst thumbnailURL=getThumbnailURL(videoId,thumbnail,getWebPSupported()?ThumbnailFormat.WebP:ThumbnailFormat.JPG);// 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(isAutoplay||showThumbnail){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===PlayOptions.Loop){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}return /*#__PURE__*/ _jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,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\"},children:[isPreloading&&/*#__PURE__*/ _jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/ _jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),/*#__PURE__*/ _jsx(\"div\",{style:{...videoStyle,background:showThumbnail?`center / cover url(${thumbnailURL}) no-repeat`:undefined}}),showVideo?/*#__PURE__*/ _jsx(\"iframe\",{style:videoStyle,src:embedURL.href,frameBorder:\"0\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",onClick:onClick,onMouseEnter:onMouseEnter,onMouseLeave:onMouseLeave,onMouseDown:onMouseDown,onMouseUp:onMouseUp}):/*#__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===PlayOptions.Normal;}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==PlayOptions.Normal;}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:PlayOptions.Normal,shouldMute:true,thumbnail:ThumbnailOptions.Medium,isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL];}if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");// https://www.youtube.com/watch?v=Fop2oskTug8\nif(pathSegments[0]===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL1=getEmbedURL(videoId);return[videoId,embedURL1];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId1=pathSegments[1];return[videoId1,url];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId2=url.pathname.slice(1);const embedURL2=getEmbedURL(videoId2);return[videoId2,embedURL2];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res,format=ThumbnailFormat.JPG){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst pre=ThumbnailFormat.WebP?\"https://i.ytimg.com/vi_webp/\":\"https://i.ytimg.com/vi/\";const ext=ThumbnailFormat.WebP?\"webp\":\"jpg\";switch(res){case ThumbnailOptions.Low:return`${pre}${videoId}/hqdefault.${ext}`;case ThumbnailOptions.Medium:return`${pre}${videoId}/sddefault.${ext}`;case ThumbnailOptions.High:return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}let _getWebPSupported;// https://stackoverflow.com/a/27232658\nfunction getWebPSupported(){// We're going to default to webp because it's pretty widely supported by now\nif(!window){return true;}if(_getWebPSupported!==undefined){return _getWebPSupported;}const element=document.createElement(\"canvas\");if(!!(element.getContext&&element.getContext(\"2d\"))){// was able or not to get WebP representation\nreturn element.toDataURL(\"image/webp\").indexOf(\"data:image/webp\")==0;}else{// very old browser like IE 8, canvas not supported\nreturn false;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/ _jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/ _jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/ _jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/ _jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/ _jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/ _jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/ _jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/ _jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"315\",\"framerIntrinsicWidth\":\"560\",\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "// Generated by Framer (9f979fb)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={rGj_3jmpl:{hover:true,pressed:true}};const cycleOrder=[\"rGj_3jmpl\"];const serializationHash=\"framer-hYVxU\";const variantClassNames={rGj_3jmpl:\"framer-v-1tklld4\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,link,price,width,...props})=>{var _ref;return{...props,DEwkkAJz5:(_ref=price!==null&&price!==void 0?price:props.DEwkkAJz5)!==null&&_ref!==void 0?_ref:\"$39\",gKL9DS8qI:link!==null&&link!==void 0?link:props.gKL9DS8qI};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,DEwkkAJz5,gKL9DS8qI,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"rGj_3jmpl\",enabledGestures,transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsx(Link,{href:gKL9DS8qI,openInNewTab:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1tklld4\",className,classNames)} framer-1bsamzg`,\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"rGj_3jmpl\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(225, 225, 225)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",background:\"linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(198, 198, 198, 1) 100%)\",borderBottomLeftRadius:77,borderBottomRightRadius:77,borderTopLeftRadius:77,borderTopRightRadius:77,boxShadow:\"0px 2px 10px 0px rgba(0, 20, 52, 0.03999999910593033), 0px 2px 4px 0px rgba(0, 21, 52, 0.029999999329447746)\",...style},variants:{\"rGj_3jmpl-hover\":{background:\"linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgb(153, 153, 153) 100%)\",boxShadow:\"0px 2px 10px 0px rgba(0, 20, 52, 0.14), 0px 2px 4px 0px rgba(0, 21, 52, 0.13)\"},\"rGj_3jmpl-pressed\":{background:\"linear-gradient(180deg, rgb(153, 153, 153) 0%, rgba(255, 255, 255, 1) 108.07510606099837%)\",boxShadow:\"0px 2px 10px 0px rgba(0, 20, 52, 0.14), 0px 2px 4px 0px rgba(0, 21, 52, 0.13)\"}},...addPropertyOverrides({\"rGj_3jmpl-hover\":{\"data-framer-name\":undefined},\"rGj_3jmpl-pressed\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter-SemiBold\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(12, 12, 12))\"},children:\"Pay\"})}),className:\"framer-tv4l0y\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"I665:455;50:188\",style:{\"--extracted-r6o4lv\":\"rgb(12, 12, 12)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter-SemiBold\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(12, 12, 12))\"},children:\"$39\"})}),className:\"framer-1jvohme\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"DJtHklYjY\",style:{\"--extracted-r6o4lv\":\"rgb(12, 12, 12)\",\"--framer-paragraph-spacing\":\"0px\"},text:DEwkkAJz5,verticalAlignment:\"top\",withExternalLayout:true})]})})})})});});const css=['.framer-hYVxU[data-border=\"true\"]::after, .framer-hYVxU [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; } }\",\".framer-hYVxU.framer-1bsamzg, .framer-hYVxU .framer-1bsamzg { display: block; }\",\".framer-hYVxU.framer-1tklld4 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 12px 16px 12px 16px; position: relative; text-decoration: none; width: 345px; will-change: var(--framer-will-change-override, transform); }\",\".framer-hYVxU .framer-tv4l0y, .framer-hYVxU .framer-1jvohme { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hYVxU.framer-1tklld4 { gap: 0px; } .framer-hYVxU.framer-1tklld4 > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-hYVxU.framer-1tklld4 > :first-child { margin-left: 0px; } .framer-hYVxU.framer-1tklld4 > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 43\n * @framerIntrinsicWidth 345\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"QEL28l2nA\":{\"layout\":[\"fixed\",\"auto\"]},\"oJiV1nyxJ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"DEwkkAJz5\":\"price\",\"gKL9DS8qI\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerpzXETq_7e=withCSS(Component,css,\"framer-hYVxU\");export default FramerpzXETq_7e;FramerpzXETq_7e.displayName=\"fluid CTA\";FramerpzXETq_7e.defaultProps={height:43,width:345};addPropertyControls(FramerpzXETq_7e,{DEwkkAJz5:{defaultValue:\"$39\",title:\"Price\",type:ControlType.String},gKL9DS8qI:{title:\"Link\",type:ControlType.Link}});addFonts(FramerpzXETq_7e,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerpzXETq_7e\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QEL28l2nA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"oJiV1nyxJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"345\",\"framerIntrinsicHeight\":\"43\",\"framerVariables\":\"{\\\"DEwkkAJz5\\\":\\\"price\\\",\\\"gKL9DS8qI\\\":\\\"link\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./pzXETq_7e.map", "// Generated by Framer (9f979fb)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"CetQT7f5F\"];const serializationHash=\"framer-iKDAT\";const variantClassNames={CetQT7f5F:\"framer-v-z1egb2\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({divider,height,id,lessonDesc,lessonName,lessonNumber,width,...props})=>{var _ref,_ref1,_ref2,_ref3;return{...props,gWW_sT9VE:(_ref=lessonName!==null&&lessonName!==void 0?lessonName:props.gWW_sT9VE)!==null&&_ref!==void 0?_ref:\"Lesson 1\",NbZpizrZz:(_ref1=divider!==null&&divider!==void 0?divider:props.NbZpizrZz)!==null&&_ref1!==void 0?_ref1:true,NGOXD1IqE:(_ref2=lessonNumber!==null&&lessonNumber!==void 0?lessonNumber:props.NGOXD1IqE)!==null&&_ref2!==void 0?_ref2:\"1\",Ued2d5Wd2:(_ref3=lessonDesc!==null&&lessonDesc!==void 0?lessonDesc:props.Ued2d5Wd2)!==null&&_ref3!==void 0?_ref3:\"Course intro\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,NGOXD1IqE,gWW_sT9VE,Ued2d5Wd2,NbZpizrZz,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"CetQT7f5F\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-z1egb2\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"CetQT7f5F\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-15d3h0g\",\"data-framer-name\":\"Text and supporting text\",layoutDependency:layoutDependency,layoutId:\"o1zN3lG87\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-h4wkqi\",\"data-framer-name\":\"Frame 1\",layoutDependency:layoutDependency,layoutId:\"yqAnxsIFN\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-199yoig\",\"data-framer-name\":\"circle-plus\",layoutDependency:layoutDependency,layoutId:\"jYW2Cmut9\",style:{backgroundColor:\"rgba(255, 255, 255, 0.05)\",borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter-SemiBold\", \"Inter\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(122, 122, 122, 1))\"},children:\"1\"})})}),className:\"framer-1svqwmv\",\"data-framer-name\":\"Text\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"SZ5Yl1Z34\",style:{\"--extracted-1w3ko1f\":\"rgba(122, 122, 122, 1)\",\"--framer-paragraph-spacing\":\"0px\"},text:NGOXD1IqE,transformTemplate:transformTemplate1,verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gikx49\",\"data-framer-name\":\"Frame 1321314547\",layoutDependency:layoutDependency,layoutId:\"yoQG1M4lA\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"150%\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter-SemiBold\", \"Inter\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(245, 245, 245, 1))\"},children:\"Lesson 1\"})})}),className:\"framer-e9hng7\",\"data-framer-name\":\"Text\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"Xr_J_zhUm\",style:{\"--extracted-1w3ko1f\":\"rgba(245, 245, 245, 1)\",\"--framer-paragraph-spacing\":\"0px\"},text:gWW_sT9VE,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"16px\",\"--framer-line-height\":\"150%\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXI=\",\"--framer-font-family\":'\"Inter\"',\"--framer-font-size\":\"16px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(168, 168, 168, 1))\"},children:\"Course intro\"})})}),className:\"framer-19ijhfh\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"OdMgbDZSs\",style:{\"--extracted-1w3ko1f\":\"rgba(168, 168, 168, 1)\",\"--framer-paragraph-spacing\":\"0px\"},text:Ued2d5Wd2,verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-cv7s9s\",\"data-framer-name\":\"divider\",layoutDependency:layoutDependency,layoutId:\"j23JaofWQ\",children:NbZpizrZz&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dngzsh\",\"data-framer-name\":\"Divider\",layoutDependency:layoutDependency,layoutId:\"nvnbHYi3s\",style:{backgroundColor:\"rgb(34, 34, 34)\"}})})]})})})});});const css=['.framer-iKDAT[data-border=\"true\"]::after, .framer-iKDAT [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; } }\",\".framer-iKDAT.framer-1e3fgx8, .framer-iKDAT .framer-1e3fgx8 { display: block; }\",\".framer-iKDAT.framer-z1egb2 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 24px 0px 0px 0px; position: relative; width: 911px; }\",\".framer-iKDAT .framer-15d3h0g { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 16px 0px 16px; position: relative; width: 100%; }\",\".framer-iKDAT .framer-h4wkqi { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-iKDAT .framer-199yoig { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 56px); overflow: hidden; position: relative; width: 56px; will-change: var(--framer-will-change-override, transform); }\",\".framer-iKDAT .framer-1svqwmv { flex: none; height: auto; left: 50%; position: absolute; top: 51%; white-space: pre; width: auto; }\",\".framer-iKDAT .framer-gikx49 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-iKDAT .framer-e9hng7, .framer-iKDAT .framer-19ijhfh { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-iKDAT .framer-cv7s9s { flex: none; height: 1px; overflow: visible; position: relative; width: 911px; }\",\".framer-iKDAT .framer-1dngzsh { flex: none; height: 1px; left: 0px; position: absolute; top: 0px; width: 911px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-iKDAT.framer-z1egb2, .framer-iKDAT .framer-15d3h0g, .framer-iKDAT .framer-h4wkqi, .framer-iKDAT .framer-gikx49 { gap: 0px; } .framer-iKDAT.framer-z1egb2 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-iKDAT.framer-z1egb2 > :first-child, .framer-iKDAT .framer-15d3h0g > :first-child, .framer-iKDAT .framer-gikx49 > :first-child { margin-top: 0px; } .framer-iKDAT.framer-z1egb2 > :last-child, .framer-iKDAT .framer-15d3h0g > :last-child, .framer-iKDAT .framer-gikx49 > :last-child { margin-bottom: 0px; } .framer-iKDAT .framer-15d3h0g > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-iKDAT .framer-h4wkqi > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-iKDAT .framer-h4wkqi > :first-child { margin-left: 0px; } .framer-iKDAT .framer-h4wkqi > :last-child { margin-right: 0px; } .framer-iKDAT .framer-gikx49 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 105\n * @framerIntrinsicWidth 911\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"NGOXD1IqE\":\"lessonNumber\",\"gWW_sT9VE\":\"lessonName\",\"Ued2d5Wd2\":\"lessonDesc\",\"NbZpizrZz\":\"divider\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerRg250I05I=withCSS(Component,css,\"framer-iKDAT\");export default FramerRg250I05I;FramerRg250I05I.displayName=\"Syllabus item\";FramerRg250I05I.defaultProps={height:105,width:911};addPropertyControls(FramerRg250I05I,{NGOXD1IqE:{defaultValue:\"1\",displayTextArea:false,title:\"Lesson number\",type:ControlType.String},gWW_sT9VE:{defaultValue:\"Lesson 1\",displayTextArea:false,title:\"Lesson name\",type:ControlType.String},Ued2d5Wd2:{defaultValue:\"Course intro\",displayTextArea:false,title:\"Lesson desc\",type:ControlType.String},NbZpizrZz:{defaultValue:true,title:\"Divider\",type:ControlType.Boolean}});addFonts(FramerRg250I05I,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerRg250I05I\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"NGOXD1IqE\\\":\\\"lessonNumber\\\",\\\"gWW_sT9VE\\\":\\\"lessonName\\\",\\\"Ued2d5Wd2\\\":\\\"lessonDesc\\\",\\\"NbZpizrZz\\\":\\\"divider\\\"}\",\"framerIntrinsicHeight\":\"105\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"911\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Rg250I05I.map", "import * as kr from \"react\";\nimport Gr, { forwardRef as Lt, useContext as Ke, createContext as Jr, createElement as ne, Fragment as Kr, useMemo as Wt, useRef as zt, useState as Xr, useEffect as Zr } from \"react\";\nvar Ne = {}, Yt = {\n  get exports() {\n    return Ne;\n  },\n  set exports(e) {\n    Ne = e;\n  }\n}, ue = {};\n/**\n * @license React\n * react-jsx-runtime.production.min.js\n *\n * Copyright (c) Facebook, Inc. and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\nvar Tr;\nfunction Ut() {\n  if (Tr)\n    return ue;\n  Tr = 1;\n  var e = Gr, r = Symbol.for(\"react.element\"), n = Symbol.for(\"react.fragment\"), a = Object.prototype.hasOwnProperty, i = e.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner, o = { key: !0, ref: !0, __self: !0, __source: !0 };\n  function u(l, d, m) {\n    var f, v = {}, R = null, T = null;\n    m !== void 0 && (R = \"\" + m), d.key !== void 0 && (R = \"\" + d.key), d.ref !== void 0 && (T = d.ref);\n    for (f in d)\n      a.call(d, f) && !o.hasOwnProperty(f) && (v[f] = d[f]);\n    if (l && l.defaultProps)\n      for (f in d = l.defaultProps, d)\n        v[f] === void 0 && (v[f] = d[f]);\n    return { $$typeof: r, type: l, key: R, ref: T, props: v, _owner: i.current };\n  }\n  return ue.Fragment = n, ue.jsx = u, ue.jsxs = u, ue;\n}\nvar le = {};\n/**\n * @license React\n * react-jsx-runtime.development.js\n *\n * Copyright (c) Facebook, Inc. and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\nvar Nr;\nfunction qt() {\n  return Nr || (Nr = 1, process.env.NODE_ENV !== \"production\" && function() {\n    var e = Gr, r = Symbol.for(\"react.element\"), n = Symbol.for(\"react.portal\"), a = Symbol.for(\"react.fragment\"), i = Symbol.for(\"react.strict_mode\"), o = Symbol.for(\"react.profiler\"), u = Symbol.for(\"react.provider\"), l = Symbol.for(\"react.context\"), d = Symbol.for(\"react.forward_ref\"), m = Symbol.for(\"react.suspense\"), f = Symbol.for(\"react.suspense_list\"), v = Symbol.for(\"react.memo\"), R = Symbol.for(\"react.lazy\"), T = Symbol.for(\"react.offscreen\"), S = Symbol.iterator, p = \"@@iterator\";\n    function k(t) {\n      if (t === null || typeof t != \"object\")\n        return null;\n      var s = S && t[S] || t[p];\n      return typeof s == \"function\" ? s : null;\n    }\n    var _ = e.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;\n    function g(t) {\n      {\n        for (var s = arguments.length, c = new Array(s > 1 ? s - 1 : 0), h = 1; h < s; h++)\n          c[h - 1] = arguments[h];\n        D(\"error\", t, c);\n      }\n    }\n    function D(t, s, c) {\n      {\n        var h = _.ReactDebugCurrentFrame, E = h.getStackAddendum();\n        E !== \"\" && (s += \"%s\", c = c.concat([E]));\n        var C = c.map(function(b) {\n          return String(b);\n        });\n        C.unshift(\"Warning: \" + s), Function.prototype.apply.call(console[t], console, C);\n      }\n    }\n    var Y = !1, $ = !1, V = !1, O = !1, je = !1, X;\n    X = Symbol.for(\"react.module.reference\");\n    function Q(t) {\n      return !!(typeof t == \"string\" || typeof t == \"function\" || t === a || t === o || je || t === i || t === m || t === f || O || t === T || Y || $ || V || typeof t == \"object\" && t !== null && (t.$$typeof === R || t.$$typeof === v || t.$$typeof === u || t.$$typeof === l || t.$$typeof === d || // This needs to include all possible module reference object\n      // types supported by any Flight configuration anywhere since\n      // we don't know which Flight build this will end up being used\n      // with.\n      t.$$typeof === X || t.getModuleId !== void 0));\n    }\n    function ht(t, s, c) {\n      var h = t.displayName;\n      if (h)\n        return h;\n      var E = s.displayName || s.name || \"\";\n      return E !== \"\" ? c + \"(\" + E + \")\" : c;\n    }\n    function ir(t) {\n      return t.displayName || \"Context\";\n    }\n    function H(t) {\n      if (t == null)\n        return null;\n      if (typeof t.tag == \"number\" && g(\"Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue.\"), typeof t == \"function\")\n        return t.displayName || t.name || null;\n      if (typeof t == \"string\")\n        return t;\n      switch (t) {\n        case a:\n          return \"Fragment\";\n        case n:\n          return \"Portal\";\n        case o:\n          return \"Profiler\";\n        case i:\n          return \"StrictMode\";\n        case m:\n          return \"Suspense\";\n        case f:\n          return \"SuspenseList\";\n      }\n      if (typeof t == \"object\")\n        switch (t.$$typeof) {\n          case l:\n            var s = t;\n            return ir(s) + \".Consumer\";\n          case u:\n            var c = t;\n            return ir(c._context) + \".Provider\";\n          case d:\n            return ht(t, t.render, \"ForwardRef\");\n          case v:\n            var h = t.displayName || null;\n            return h !== null ? h : H(t.type) || \"Memo\";\n          case R: {\n            var E = t, C = E._payload, b = E._init;\n            try {\n              return H(b(C));\n            } catch {\n              return null;\n            }\n          }\n        }\n      return null;\n    }\n    var Z = Object.assign, se = 0, or, sr, cr, ur, lr, fr, dr;\n    function pr() {\n    }\n    pr.__reactDisabledLog = !0;\n    function mt() {\n      {\n        if (se === 0) {\n          or = console.log, sr = console.info, cr = console.warn, ur = console.error, lr = console.group, fr = console.groupCollapsed, dr = console.groupEnd;\n          var t = {\n            configurable: !0,\n            enumerable: !0,\n            value: pr,\n            writable: !0\n          };\n          Object.defineProperties(console, {\n            info: t,\n            log: t,\n            warn: t,\n            error: t,\n            group: t,\n            groupCollapsed: t,\n            groupEnd: t\n          });\n        }\n        se++;\n      }\n    }\n    function vt() {\n      {\n        if (se--, se === 0) {\n          var t = {\n            configurable: !0,\n            enumerable: !0,\n            writable: !0\n          };\n          Object.defineProperties(console, {\n            log: Z({}, t, {\n              value: or\n            }),\n            info: Z({}, t, {\n              value: sr\n            }),\n            warn: Z({}, t, {\n              value: cr\n            }),\n            error: Z({}, t, {\n              value: ur\n            }),\n            group: Z({}, t, {\n              value: lr\n            }),\n            groupCollapsed: Z({}, t, {\n              value: fr\n            }),\n            groupEnd: Z({}, t, {\n              value: dr\n            })\n          });\n        }\n        se < 0 && g(\"disabledDepth fell below zero. This is a bug in React. Please file an issue.\");\n      }\n    }\n    var Ve = _.ReactCurrentDispatcher, Fe;\n    function ge(t, s, c) {\n      {\n        if (Fe === void 0)\n          try {\n            throw Error();\n          } catch (E) {\n            var h = E.stack.trim().match(/\\n( *(at )?)/);\n            Fe = h && h[1] || \"\";\n          }\n        return `\n` + Fe + t;\n      }\n    }\n    var Me = !1, ye;\n    {\n      var gt = typeof WeakMap == \"function\" ? WeakMap : Map;\n      ye = new gt();\n    }\n    function hr(t, s) {\n      if (!t || Me)\n        return \"\";\n      {\n        var c = ye.get(t);\n        if (c !== void 0)\n          return c;\n      }\n      var h;\n      Me = !0;\n      var E = Error.prepareStackTrace;\n      Error.prepareStackTrace = void 0;\n      var C;\n      C = Ve.current, Ve.current = null, mt();\n      try {\n        if (s) {\n          var b = function() {\n            throw Error();\n          };\n          if (Object.defineProperty(b.prototype, \"props\", {\n            set: function() {\n              throw Error();\n            }\n          }), typeof Reflect == \"object\" && Reflect.construct) {\n            try {\n              Reflect.construct(b, []);\n            } catch (G) {\n              h = G;\n            }\n            Reflect.construct(t, [], b);\n          } else {\n            try {\n              b.call();\n            } catch (G) {\n              h = G;\n            }\n            t.call(b.prototype);\n          }\n        } else {\n          try {\n            throw Error();\n          } catch (G) {\n            h = G;\n          }\n          t();\n        }\n      } catch (G) {\n        if (G && h && typeof G.stack == \"string\") {\n          for (var y = G.stack.split(`\n`), F = h.stack.split(`\n`), N = y.length - 1, P = F.length - 1; N >= 1 && P >= 0 && y[N] !== F[P]; )\n            P--;\n          for (; N >= 1 && P >= 0; N--, P--)\n            if (y[N] !== F[P]) {\n              if (N !== 1 || P !== 1)\n                do\n                  if (N--, P--, P < 0 || y[N] !== F[P]) {\n                    var W = `\n` + y[N].replace(\" at new \", \" at \");\n                    return t.displayName && W.includes(\"<anonymous>\") && (W = W.replace(\"<anonymous>\", t.displayName)), typeof t == \"function\" && ye.set(t, W), W;\n                  }\n                while (N >= 1 && P >= 0);\n              break;\n            }\n        }\n      } finally {\n        Me = !1, Ve.current = C, vt(), Error.prepareStackTrace = E;\n      }\n      var re = t ? t.displayName || t.name : \"\", Rr = re ? ge(re) : \"\";\n      return typeof t == \"function\" && ye.set(t, Rr), Rr;\n    }\n    function yt(t, s, c) {\n      return hr(t, !1);\n    }\n    function bt(t) {\n      var s = t.prototype;\n      return !!(s && s.isReactComponent);\n    }\n    function be(t, s, c) {\n      if (t == null)\n        return \"\";\n      if (typeof t == \"function\")\n        return hr(t, bt(t));\n      if (typeof t == \"string\")\n        return ge(t);\n      switch (t) {\n        case m:\n          return ge(\"Suspense\");\n        case f:\n          return ge(\"SuspenseList\");\n      }\n      if (typeof t == \"object\")\n        switch (t.$$typeof) {\n          case d:\n            return yt(t.render);\n          case v:\n            return be(t.type, s, c);\n          case R: {\n            var h = t, E = h._payload, C = h._init;\n            try {\n              return be(C(E), s, c);\n            } catch {\n            }\n          }\n        }\n      return \"\";\n    }\n    var Ee = Object.prototype.hasOwnProperty, mr = {}, vr = _.ReactDebugCurrentFrame;\n    function we(t) {\n      if (t) {\n        var s = t._owner, c = be(t.type, t._source, s ? s.type : null);\n        vr.setExtraStackFrame(c);\n      } else\n        vr.setExtraStackFrame(null);\n    }\n    function Et(t, s, c, h, E) {\n      {\n        var C = Function.call.bind(Ee);\n        for (var b in t)\n          if (C(t, b)) {\n            var y = void 0;\n            try {\n              if (typeof t[b] != \"function\") {\n                var F = Error((h || \"React class\") + \": \" + c + \" type `\" + b + \"` is invalid; it must be a function, usually from the `prop-types` package, but received `\" + typeof t[b] + \"`.This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.\");\n                throw F.name = \"Invariant Violation\", F;\n              }\n              y = t[b](s, b, h, c, null, \"SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED\");\n            } catch (N) {\n              y = N;\n            }\n            y && !(y instanceof Error) && (we(E), g(\"%s: type specification of %s `%s` is invalid; the type checker function must return `null` or an `Error` but returned a %s. You may have forgotten to pass an argument to the type checker creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and shape all require an argument).\", h || \"React class\", c, b, typeof y), we(null)), y instanceof Error && !(y.message in mr) && (mr[y.message] = !0, we(E), g(\"Failed %s type: %s\", c, y.message), we(null));\n          }\n      }\n    }\n    var wt = Array.isArray;\n    function Le(t) {\n      return wt(t);\n    }\n    function _t(t) {\n      {\n        var s = typeof Symbol == \"function\" && Symbol.toStringTag, c = s && t[Symbol.toStringTag] || t.constructor.name || \"Object\";\n        return c;\n      }\n    }\n    function xt(t) {\n      try {\n        return gr(t), !1;\n      } catch {\n        return !0;\n      }\n    }\n    function gr(t) {\n      return \"\" + t;\n    }\n    function yr(t) {\n      if (xt(t))\n        return g(\"The provided key is an unsupported type %s. This value must be coerced to a string before before using it here.\", _t(t)), gr(t);\n    }\n    var ce = _.ReactCurrentOwner, St = {\n      key: !0,\n      ref: !0,\n      __self: !0,\n      __source: !0\n    }, br, Er, We;\n    We = {};\n    function Ot(t) {\n      if (Ee.call(t, \"ref\")) {\n        var s = Object.getOwnPropertyDescriptor(t, \"ref\").get;\n        if (s && s.isReactWarning)\n          return !1;\n      }\n      return t.ref !== void 0;\n    }\n    function Ct(t) {\n      if (Ee.call(t, \"key\")) {\n        var s = Object.getOwnPropertyDescriptor(t, \"key\").get;\n        if (s && s.isReactWarning)\n          return !1;\n      }\n      return t.key !== void 0;\n    }\n    function Rt(t, s) {\n      if (typeof t.ref == \"string\" && ce.current && s && ce.current.stateNode !== s) {\n        var c = H(ce.current.type);\n        We[c] || (g('Component \"%s\" contains the string ref \"%s\". Support for string refs will be removed in a future major release. This case cannot be automatically converted to an arrow function. We ask you to manually fix this case by using useRef() or createRef() instead. Learn more about using refs safely here: https://reactjs.org/link/strict-mode-string-ref', H(ce.current.type), t.ref), We[c] = !0);\n      }\n    }\n    function kt(t, s) {\n      {\n        var c = function() {\n          br || (br = !0, g(\"%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://reactjs.org/link/special-props)\", s));\n        };\n        c.isReactWarning = !0, Object.defineProperty(t, \"key\", {\n          get: c,\n          configurable: !0\n        });\n      }\n    }\n    function Tt(t, s) {\n      {\n        var c = function() {\n          Er || (Er = !0, g(\"%s: `ref` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://reactjs.org/link/special-props)\", s));\n        };\n        c.isReactWarning = !0, Object.defineProperty(t, \"ref\", {\n          get: c,\n          configurable: !0\n        });\n      }\n    }\n    var Nt = function(t, s, c, h, E, C, b) {\n      var y = {\n        // This tag allows us to uniquely identify this as a React Element\n        $$typeof: r,\n        // Built-in properties that belong on the element\n        type: t,\n        key: s,\n        ref: c,\n        props: b,\n        // Record the component responsible for creating this element.\n        _owner: C\n      };\n      return y._store = {}, Object.defineProperty(y._store, \"validated\", {\n        configurable: !1,\n        enumerable: !1,\n        writable: !0,\n        value: !1\n      }), Object.defineProperty(y, \"_self\", {\n        configurable: !1,\n        enumerable: !1,\n        writable: !1,\n        value: h\n      }), Object.defineProperty(y, \"_source\", {\n        configurable: !1,\n        enumerable: !1,\n        writable: !1,\n        value: E\n      }), Object.freeze && (Object.freeze(y.props), Object.freeze(y)), y;\n    };\n    function Pt(t, s, c, h, E) {\n      {\n        var C, b = {}, y = null, F = null;\n        c !== void 0 && (yr(c), y = \"\" + c), Ct(s) && (yr(s.key), y = \"\" + s.key), Ot(s) && (F = s.ref, Rt(s, E));\n        for (C in s)\n          Ee.call(s, C) && !St.hasOwnProperty(C) && (b[C] = s[C]);\n        if (t && t.defaultProps) {\n          var N = t.defaultProps;\n          for (C in N)\n            b[C] === void 0 && (b[C] = N[C]);\n        }\n        if (y || F) {\n          var P = typeof t == \"function\" ? t.displayName || t.name || \"Unknown\" : t;\n          y && kt(b, P), F && Tt(b, P);\n        }\n        return Nt(t, y, F, E, h, ce.current, b);\n      }\n    }\n    var ze = _.ReactCurrentOwner, wr = _.ReactDebugCurrentFrame;\n    function ee(t) {\n      if (t) {\n        var s = t._owner, c = be(t.type, t._source, s ? s.type : null);\n        wr.setExtraStackFrame(c);\n      } else\n        wr.setExtraStackFrame(null);\n    }\n    var Ye;\n    Ye = !1;\n    function Ue(t) {\n      return typeof t == \"object\" && t !== null && t.$$typeof === r;\n    }\n    function _r() {\n      {\n        if (ze.current) {\n          var t = H(ze.current.type);\n          if (t)\n            return `\n\nCheck the render method of \\`` + t + \"`.\";\n        }\n        return \"\";\n      }\n    }\n    function At(t) {\n      {\n        if (t !== void 0) {\n          var s = t.fileName.replace(/^.*[\\\\\\/]/, \"\"), c = t.lineNumber;\n          return `\n\nCheck your code at ` + s + \":\" + c + \".\";\n        }\n        return \"\";\n      }\n    }\n    var xr = {};\n    function Dt(t) {\n      {\n        var s = _r();\n        if (!s) {\n          var c = typeof t == \"string\" ? t : t.displayName || t.name;\n          c && (s = `\n\nCheck the top-level render call using <` + c + \">.\");\n        }\n        return s;\n      }\n    }\n    function Sr(t, s) {\n      {\n        if (!t._store || t._store.validated || t.key != null)\n          return;\n        t._store.validated = !0;\n        var c = Dt(s);\n        if (xr[c])\n          return;\n        xr[c] = !0;\n        var h = \"\";\n        t && t._owner && t._owner !== ze.current && (h = \" It was passed a child from \" + H(t._owner.type) + \".\"), ee(t), g('Each child in a list should have a unique \"key\" prop.%s%s See https://reactjs.org/link/warning-keys for more information.', c, h), ee(null);\n      }\n    }\n    function Or(t, s) {\n      {\n        if (typeof t != \"object\")\n          return;\n        if (Le(t))\n          for (var c = 0; c < t.length; c++) {\n            var h = t[c];\n            Ue(h) && Sr(h, s);\n          }\n        else if (Ue(t))\n          t._store && (t._store.validated = !0);\n        else if (t) {\n          var E = k(t);\n          if (typeof E == \"function\" && E !== t.entries)\n            for (var C = E.call(t), b; !(b = C.next()).done; )\n              Ue(b.value) && Sr(b.value, s);\n        }\n      }\n    }\n    function It(t) {\n      {\n        var s = t.type;\n        if (s == null || typeof s == \"string\")\n          return;\n        var c;\n        if (typeof s == \"function\")\n          c = s.propTypes;\n        else if (typeof s == \"object\" && (s.$$typeof === d || // Note: Memo only checks outer props here.\n        // Inner props are checked in the reconciler.\n        s.$$typeof === v))\n          c = s.propTypes;\n        else\n          return;\n        if (c) {\n          var h = H(s);\n          Et(c, t.props, \"prop\", h, t);\n        } else if (s.PropTypes !== void 0 && !Ye) {\n          Ye = !0;\n          var E = H(s);\n          g(\"Component %s declared `PropTypes` instead of `propTypes`. Did you misspell the property assignment?\", E || \"Unknown\");\n        }\n        typeof s.getDefaultProps == \"function\" && !s.getDefaultProps.isReactClassApproved && g(\"getDefaultProps is only used on classic React.createClass definitions. Use a static property named `defaultProps` instead.\");\n      }\n    }\n    function $t(t) {\n      {\n        for (var s = Object.keys(t.props), c = 0; c < s.length; c++) {\n          var h = s[c];\n          if (h !== \"children\" && h !== \"key\") {\n            ee(t), g(\"Invalid prop `%s` supplied to `React.Fragment`. React.Fragment can only have `key` and `children` props.\", h), ee(null);\n            break;\n          }\n        }\n        t.ref !== null && (ee(t), g(\"Invalid attribute `ref` supplied to `React.Fragment`.\"), ee(null));\n      }\n    }\n    function Cr(t, s, c, h, E, C) {\n      {\n        var b = Q(t);\n        if (!b) {\n          var y = \"\";\n          (t === void 0 || typeof t == \"object\" && t !== null && Object.keys(t).length === 0) && (y += \" You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports.\");\n          var F = At(E);\n          F ? y += F : y += _r();\n          var N;\n          t === null ? N = \"null\" : Le(t) ? N = \"array\" : t !== void 0 && t.$$typeof === r ? (N = \"<\" + (H(t.type) || \"Unknown\") + \" />\", y = \" Did you accidentally export a JSX literal instead of a component?\") : N = typeof t, g(\"React.jsx: type is invalid -- expected a string (for built-in components) or a class/function (for composite components) but got: %s.%s\", N, y);\n        }\n        var P = Pt(t, s, c, E, C);\n        if (P == null)\n          return P;\n        if (b) {\n          var W = s.children;\n          if (W !== void 0)\n            if (h)\n              if (Le(W)) {\n                for (var re = 0; re < W.length; re++)\n                  Or(W[re], t);\n                Object.freeze && Object.freeze(W);\n              } else\n                g(\"React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead.\");\n            else\n              Or(W, t);\n        }\n        return t === a ? $t(P) : It(P), P;\n      }\n    }\n    function jt(t, s, c) {\n      return Cr(t, s, c, !0);\n    }\n    function Vt(t, s, c) {\n      return Cr(t, s, c, !1);\n    }\n    var Ft = Vt, Mt = jt;\n    le.Fragment = a, le.jsx = Ft, le.jsxs = Mt;\n  }()), le;\n}\n(function(e) {\n  process.env.NODE_ENV === \"production\" ? e.exports = Ut() : e.exports = qt();\n})(Yt);\nconst q = Ne.jsx, te = Ne.jsxs;\nfunction Be() {\n  return Be = Object.assign ? Object.assign.bind() : function(e) {\n    for (var r = 1; r < arguments.length; r++) {\n      var n = arguments[r];\n      for (var a in n)\n        Object.prototype.hasOwnProperty.call(n, a) && (e[a] = n[a]);\n    }\n    return e;\n  }, Be.apply(this, arguments);\n}\nfunction Qr(e) {\n  var r = /* @__PURE__ */ Object.create(null);\n  return function(n) {\n    return r[n] === void 0 && (r[n] = e(n)), r[n];\n  };\n}\nvar Bt = /^((children|dangerouslySetInnerHTML|key|ref|autoFocus|defaultValue|defaultChecked|innerHTML|suppressContentEditableWarning|suppressHydrationWarning|valueLink|abbr|accept|acceptCharset|accessKey|action|allow|allowUserMedia|allowPaymentRequest|allowFullScreen|allowTransparency|alt|async|autoComplete|autoPlay|capture|cellPadding|cellSpacing|challenge|charSet|checked|cite|classID|className|cols|colSpan|content|contentEditable|contextMenu|controls|controlsList|coords|crossOrigin|data|dateTime|decoding|default|defer|dir|disabled|disablePictureInPicture|download|draggable|encType|enterKeyHint|form|formAction|formEncType|formMethod|formNoValidate|formTarget|frameBorder|headers|height|hidden|high|href|hrefLang|htmlFor|httpEquiv|id|inputMode|integrity|is|keyParams|keyType|kind|label|lang|list|loading|loop|low|marginHeight|marginWidth|max|maxLength|media|mediaGroup|method|min|minLength|multiple|muted|name|nonce|noValidate|open|optimum|pattern|placeholder|playsInline|poster|preload|profile|radioGroup|readOnly|referrerPolicy|rel|required|reversed|role|rows|rowSpan|sandbox|scope|scoped|scrolling|seamless|selected|shape|size|sizes|slot|span|spellCheck|src|srcDoc|srcLang|srcSet|start|step|style|summary|tabIndex|target|title|translate|type|useMap|value|width|wmode|wrap|about|datatype|inlist|prefix|property|resource|typeof|vocab|autoCapitalize|autoCorrect|autoSave|color|incremental|fallback|inert|itemProp|itemScope|itemType|itemID|itemRef|on|option|results|security|unselectable|accentHeight|accumulate|additive|alignmentBaseline|allowReorder|alphabetic|amplitude|arabicForm|ascent|attributeName|attributeType|autoReverse|azimuth|baseFrequency|baselineShift|baseProfile|bbox|begin|bias|by|calcMode|capHeight|clip|clipPathUnits|clipPath|clipRule|colorInterpolation|colorInterpolationFilters|colorProfile|colorRendering|contentScriptType|contentStyleType|cursor|cx|cy|d|decelerate|descent|diffuseConstant|direction|display|divisor|dominantBaseline|dur|dx|dy|edgeMode|elevation|enableBackground|end|exponent|externalResourcesRequired|fill|fillOpacity|fillRule|filter|filterRes|filterUnits|floodColor|floodOpacity|focusable|fontFamily|fontSize|fontSizeAdjust|fontStretch|fontStyle|fontVariant|fontWeight|format|from|fr|fx|fy|g1|g2|glyphName|glyphOrientationHorizontal|glyphOrientationVertical|glyphRef|gradientTransform|gradientUnits|hanging|horizAdvX|horizOriginX|ideographic|imageRendering|in|in2|intercept|k|k1|k2|k3|k4|kernelMatrix|kernelUnitLength|kerning|keyPoints|keySplines|keyTimes|lengthAdjust|letterSpacing|lightingColor|limitingConeAngle|local|markerEnd|markerMid|markerStart|markerHeight|markerUnits|markerWidth|mask|maskContentUnits|maskUnits|mathematical|mode|numOctaves|offset|opacity|operator|order|orient|orientation|origin|overflow|overlinePosition|overlineThickness|panose1|paintOrder|pathLength|patternContentUnits|patternTransform|patternUnits|pointerEvents|points|pointsAtX|pointsAtY|pointsAtZ|preserveAlpha|preserveAspectRatio|primitiveUnits|r|radius|refX|refY|renderingIntent|repeatCount|repeatDur|requiredExtensions|requiredFeatures|restart|result|rotate|rx|ry|scale|seed|shapeRendering|slope|spacing|specularConstant|specularExponent|speed|spreadMethod|startOffset|stdDeviation|stemh|stemv|stitchTiles|stopColor|stopOpacity|strikethroughPosition|strikethroughThickness|string|stroke|strokeDasharray|strokeDashoffset|strokeLinecap|strokeLinejoin|strokeMiterlimit|strokeOpacity|strokeWidth|surfaceScale|systemLanguage|tableValues|targetX|targetY|textAnchor|textDecoration|textRendering|textLength|to|transform|u1|u2|underlinePosition|underlineThickness|unicode|unicodeBidi|unicodeRange|unitsPerEm|vAlphabetic|vHanging|vIdeographic|vMathematical|values|vectorEffect|version|vertAdvY|vertOriginX|vertOriginY|viewBox|viewTarget|visibility|widths|wordSpacing|writingMode|x|xHeight|x1|x2|xChannelSelector|xlinkActuate|xlinkArcrole|xlinkHref|xlinkRole|xlinkShow|xlinkTitle|xlinkType|xmlBase|xmlns|xmlnsXlink|xmlLang|xmlSpace|y|y1|y2|yChannelSelector|z|zoomAndPan|for|class|autofocus)|(([Dd][Aa][Tt][Aa]|[Aa][Rr][Ii][Aa]|x)-.*))$/, Ht = /* @__PURE__ */ Qr(\n  function(e) {\n    return Bt.test(e) || e.charCodeAt(0) === 111 && e.charCodeAt(1) === 110 && e.charCodeAt(2) < 91;\n  }\n  /* Z+1 */\n);\nfunction Gt(e) {\n  if (e.sheet)\n    return e.sheet;\n  for (var r = 0; r < document.styleSheets.length; r++)\n    if (document.styleSheets[r].ownerNode === e)\n      return document.styleSheets[r];\n}\nfunction Jt(e) {\n  var r = document.createElement(\"style\");\n  return r.setAttribute(\"data-emotion\", e.key), e.nonce !== void 0 && r.setAttribute(\"nonce\", e.nonce), r.appendChild(document.createTextNode(\"\")), r.setAttribute(\"data-s\", \"\"), r;\n}\nvar Kt = /* @__PURE__ */ function() {\n  function e(n) {\n    var a = this;\n    this._insertTag = function(i) {\n      var o;\n      a.tags.length === 0 ? a.insertionPoint ? o = a.insertionPoint.nextSibling : a.prepend ? o = a.container.firstChild : o = a.before : o = a.tags[a.tags.length - 1].nextSibling, a.container.insertBefore(i, o), a.tags.push(i);\n    }, this.isSpeedy = n.speedy === void 0 ? process.env.NODE_ENV === \"production\" : n.speedy, this.tags = [], this.ctr = 0, this.nonce = n.nonce, this.key = n.key, this.container = n.container, this.prepend = n.prepend, this.insertionPoint = n.insertionPoint, this.before = null;\n  }\n  var r = e.prototype;\n  return r.hydrate = function(a) {\n    a.forEach(this._insertTag);\n  }, r.insert = function(a) {\n    this.ctr % (this.isSpeedy ? 65e3 : 1) === 0 && this._insertTag(Jt(this));\n    var i = this.tags[this.tags.length - 1];\n    if (process.env.NODE_ENV !== \"production\") {\n      var o = a.charCodeAt(0) === 64 && a.charCodeAt(1) === 105;\n      o && this._alreadyInsertedOrderInsensitiveRule && console.error(`You're attempting to insert the following rule:\n` + a + \"\\n\\n`@import` rules must be before all other types of rules in a stylesheet but other rules have already been inserted. Please ensure that `@import` rules are before all other rules.\"), this._alreadyInsertedOrderInsensitiveRule = this._alreadyInsertedOrderInsensitiveRule || !o;\n    }\n    if (this.isSpeedy) {\n      var u = Gt(i);\n      try {\n        u.insertRule(a, u.cssRules.length);\n      } catch (l) {\n        process.env.NODE_ENV !== \"production\" && !/:(-moz-placeholder|-moz-focus-inner|-moz-focusring|-ms-input-placeholder|-moz-read-write|-moz-read-only|-ms-clear|-ms-expand|-ms-reveal){/.test(a) && console.error('There was a problem inserting the following rule: \"' + a + '\"', l);\n      }\n    } else\n      i.appendChild(document.createTextNode(a));\n    this.ctr++;\n  }, r.flush = function() {\n    this.tags.forEach(function(a) {\n      return a.parentNode && a.parentNode.removeChild(a);\n    }), this.tags = [], this.ctr = 0, process.env.NODE_ENV !== \"production\" && (this._alreadyInsertedOrderInsensitiveRule = !1);\n  }, e;\n}(), j = \"-ms-\", Pe = \"-moz-\", w = \"-webkit-\", Xe = \"comm\", Ze = \"rule\", Qe = \"decl\", Xt = \"@import\", et = \"@keyframes\", Zt = Math.abs, De = String.fromCharCode, Qt = Object.assign;\nfunction en(e, r) {\n  return I(e, 0) ^ 45 ? (((r << 2 ^ I(e, 0)) << 2 ^ I(e, 1)) << 2 ^ I(e, 2)) << 2 ^ I(e, 3) : 0;\n}\nfunction rt(e) {\n  return e.trim();\n}\nfunction rn(e, r) {\n  return (e = r.exec(e)) ? e[0] : e;\n}\nfunction x(e, r, n) {\n  return e.replace(r, n);\n}\nfunction He(e, r) {\n  return e.indexOf(r);\n}\nfunction I(e, r) {\n  return e.charCodeAt(r) | 0;\n}\nfunction pe(e, r, n) {\n  return e.slice(r, n);\n}\nfunction U(e) {\n  return e.length;\n}\nfunction er(e) {\n  return e.length;\n}\nfunction _e(e, r) {\n  return r.push(e), e;\n}\nfunction tn(e, r) {\n  return e.map(r).join(\"\");\n}\nvar Ie = 1, ie = 1, tt = 0, M = 0, A = 0, oe = \"\";\nfunction $e(e, r, n, a, i, o, u) {\n  return { value: e, root: r, parent: n, type: a, props: i, children: o, line: Ie, column: ie, length: u, return: \"\" };\n}\nfunction fe(e, r) {\n  return Qt($e(\"\", null, null, \"\", null, null, 0), e, { length: -e.length }, r);\n}\nfunction nn() {\n  return A;\n}\nfunction an() {\n  return A = M > 0 ? I(oe, --M) : 0, ie--, A === 10 && (ie = 1, Ie--), A;\n}\nfunction L() {\n  return A = M < tt ? I(oe, M++) : 0, ie++, A === 10 && (ie = 1, Ie++), A;\n}\nfunction B() {\n  return I(oe, M);\n}\nfunction Ce() {\n  return M;\n}\nfunction ve(e, r) {\n  return pe(oe, e, r);\n}\nfunction he(e) {\n  switch (e) {\n    case 0:\n    case 9:\n    case 10:\n    case 13:\n    case 32:\n      return 5;\n    case 33:\n    case 43:\n    case 44:\n    case 47:\n    case 62:\n    case 64:\n    case 126:\n    case 59:\n    case 123:\n    case 125:\n      return 4;\n    case 58:\n      return 3;\n    case 34:\n    case 39:\n    case 40:\n    case 91:\n      return 2;\n    case 41:\n    case 93:\n      return 1;\n  }\n  return 0;\n}\nfunction nt(e) {\n  return Ie = ie = 1, tt = U(oe = e), M = 0, [];\n}\nfunction at(e) {\n  return oe = \"\", e;\n}\nfunction Re(e) {\n  return rt(ve(M - 1, Ge(e === 91 ? e + 2 : e === 40 ? e + 1 : e)));\n}\nfunction on(e) {\n  for (; (A = B()) && A < 33; )\n    L();\n  return he(e) > 2 || he(A) > 3 ? \"\" : \" \";\n}\nfunction sn(e, r) {\n  for (; --r && L() && !(A < 48 || A > 102 || A > 57 && A < 65 || A > 70 && A < 97); )\n    ;\n  return ve(e, Ce() + (r < 6 && B() == 32 && L() == 32));\n}\nfunction Ge(e) {\n  for (; L(); )\n    switch (A) {\n      case e:\n        return M;\n      case 34:\n      case 39:\n        e !== 34 && e !== 39 && Ge(A);\n        break;\n      case 40:\n        e === 41 && Ge(e);\n        break;\n      case 92:\n        L();\n        break;\n    }\n  return M;\n}\nfunction cn(e, r) {\n  for (; L() && e + A !== 47 + 10; )\n    if (e + A === 42 + 42 && B() === 47)\n      break;\n  return \"/*\" + ve(r, M - 1) + \"*\" + De(e === 47 ? e : L());\n}\nfunction un(e) {\n  for (; !he(B()); )\n    L();\n  return ve(e, M);\n}\nfunction ln(e) {\n  return at(ke(\"\", null, null, null, [\"\"], e = nt(e), 0, [0], e));\n}\nfunction ke(e, r, n, a, i, o, u, l, d) {\n  for (var m = 0, f = 0, v = u, R = 0, T = 0, S = 0, p = 1, k = 1, _ = 1, g = 0, D = \"\", Y = i, $ = o, V = a, O = D; k; )\n    switch (S = g, g = L()) {\n      case 40:\n        if (S != 108 && I(O, v - 1) == 58) {\n          He(O += x(Re(g), \"&\", \"&\\f\"), \"&\\f\") != -1 && (_ = -1);\n          break;\n        }\n      case 34:\n      case 39:\n      case 91:\n        O += Re(g);\n        break;\n      case 9:\n      case 10:\n      case 13:\n      case 32:\n        O += on(S);\n        break;\n      case 92:\n        O += sn(Ce() - 1, 7);\n        continue;\n      case 47:\n        switch (B()) {\n          case 42:\n          case 47:\n            _e(fn(cn(L(), Ce()), r, n), d);\n            break;\n          default:\n            O += \"/\";\n        }\n        break;\n      case 123 * p:\n        l[m++] = U(O) * _;\n      case 125 * p:\n      case 59:\n      case 0:\n        switch (g) {\n          case 0:\n          case 125:\n            k = 0;\n          case 59 + f:\n            T > 0 && U(O) - v && _e(T > 32 ? Ar(O + \";\", a, n, v - 1) : Ar(x(O, \" \", \"\") + \";\", a, n, v - 2), d);\n            break;\n          case 59:\n            O += \";\";\n          default:\n            if (_e(V = Pr(O, r, n, m, f, i, l, D, Y = [], $ = [], v), o), g === 123)\n              if (f === 0)\n                ke(O, r, V, V, Y, o, v, l, $);\n              else\n                switch (R === 99 && I(O, 3) === 110 ? 100 : R) {\n                  case 100:\n                  case 109:\n                  case 115:\n                    ke(e, V, V, a && _e(Pr(e, V, V, 0, 0, i, l, D, i, Y = [], v), $), i, $, v, l, a ? Y : $);\n                    break;\n                  default:\n                    ke(O, V, V, V, [\"\"], $, 0, l, $);\n                }\n        }\n        m = f = T = 0, p = _ = 1, D = O = \"\", v = u;\n        break;\n      case 58:\n        v = 1 + U(O), T = S;\n      default:\n        if (p < 1) {\n          if (g == 123)\n            --p;\n          else if (g == 125 && p++ == 0 && an() == 125)\n            continue;\n        }\n        switch (O += De(g), g * p) {\n          case 38:\n            _ = f > 0 ? 1 : (O += \"\\f\", -1);\n            break;\n          case 44:\n            l[m++] = (U(O) - 1) * _, _ = 1;\n            break;\n          case 64:\n            B() === 45 && (O += Re(L())), R = B(), f = v = U(D = O += un(Ce())), g++;\n            break;\n          case 45:\n            S === 45 && U(O) == 2 && (p = 0);\n        }\n    }\n  return o;\n}\nfunction Pr(e, r, n, a, i, o, u, l, d, m, f) {\n  for (var v = i - 1, R = i === 0 ? o : [\"\"], T = er(R), S = 0, p = 0, k = 0; S < a; ++S)\n    for (var _ = 0, g = pe(e, v + 1, v = Zt(p = u[S])), D = e; _ < T; ++_)\n      (D = rt(p > 0 ? R[_] + \" \" + g : x(g, /&\\f/g, R[_]))) && (d[k++] = D);\n  return $e(e, r, n, i === 0 ? Ze : l, d, m, f);\n}\nfunction fn(e, r, n) {\n  return $e(e, r, n, Xe, De(nn()), pe(e, 2, -2), 0);\n}\nfunction Ar(e, r, n, a) {\n  return $e(e, r, n, Qe, pe(e, 0, a), pe(e, a + 1, -1), a);\n}\nfunction ae(e, r) {\n  for (var n = \"\", a = er(e), i = 0; i < a; i++)\n    n += r(e[i], i, e, r) || \"\";\n  return n;\n}\nfunction dn(e, r, n, a) {\n  switch (e.type) {\n    case Xt:\n    case Qe:\n      return e.return = e.return || e.value;\n    case Xe:\n      return \"\";\n    case et:\n      return e.return = e.value + \"{\" + ae(e.children, a) + \"}\";\n    case Ze:\n      e.value = e.props.join(\",\");\n  }\n  return U(n = ae(e.children, a)) ? e.return = e.value + \"{\" + n + \"}\" : \"\";\n}\nfunction pn(e) {\n  var r = er(e);\n  return function(n, a, i, o) {\n    for (var u = \"\", l = 0; l < r; l++)\n      u += e[l](n, a, i, o) || \"\";\n    return u;\n  };\n}\nfunction hn(e) {\n  return function(r) {\n    r.root || (r = r.return) && e(r);\n  };\n}\nvar mn = function(r, n, a) {\n  for (var i = 0, o = 0; i = o, o = B(), i === 38 && o === 12 && (n[a] = 1), !he(o); )\n    L();\n  return ve(r, M);\n}, vn = function(r, n) {\n  var a = -1, i = 44;\n  do\n    switch (he(i)) {\n      case 0:\n        i === 38 && B() === 12 && (n[a] = 1), r[a] += mn(M - 1, n, a);\n        break;\n      case 2:\n        r[a] += Re(i);\n        break;\n      case 4:\n        if (i === 44) {\n          r[++a] = B() === 58 ? \"&\\f\" : \"\", n[a] = r[a].length;\n          break;\n        }\n      default:\n        r[a] += De(i);\n    }\n  while (i = L());\n  return r;\n}, gn = function(r, n) {\n  return at(vn(nt(r), n));\n}, Dr = /* @__PURE__ */ new WeakMap(), yn = function(r) {\n  if (!(r.type !== \"rule\" || !r.parent || // positive .length indicates that this rule contains pseudo\n  // negative .length indicates that this rule has been already prefixed\n  r.length < 1)) {\n    for (var n = r.value, a = r.parent, i = r.column === a.column && r.line === a.line; a.type !== \"rule\"; )\n      if (a = a.parent, !a)\n        return;\n    if (!(r.props.length === 1 && n.charCodeAt(0) !== 58 && !Dr.get(a)) && !i) {\n      Dr.set(r, !0);\n      for (var o = [], u = gn(n, o), l = a.props, d = 0, m = 0; d < u.length; d++)\n        for (var f = 0; f < l.length; f++, m++)\n          r.props[m] = o[d] ? u[d].replace(/&\\f/g, l[f]) : l[f] + \" \" + u[d];\n    }\n  }\n}, bn = function(r) {\n  if (r.type === \"decl\") {\n    var n = r.value;\n    // charcode for l\n    n.charCodeAt(0) === 108 && // charcode for b\n    n.charCodeAt(2) === 98 && (r.return = \"\", r.value = \"\");\n  }\n}, En = \"emotion-disable-server-rendering-unsafe-selector-warning-please-do-not-use-this-the-warning-exists-for-a-reason\", wn = function(r) {\n  return r.type === \"comm\" && r.children.indexOf(En) > -1;\n}, _n = function(r) {\n  return function(n, a, i) {\n    if (!(n.type !== \"rule\" || r.compat)) {\n      var o = n.value.match(/(:first|:nth|:nth-last)-child/g);\n      if (o) {\n        for (var u = !!n.parent, l = u ? n.parent.children : (\n          // global rule at the root level\n          i\n        ), d = l.length - 1; d >= 0; d--) {\n          var m = l[d];\n          if (m.line < n.line)\n            break;\n          if (m.column < n.column) {\n            if (wn(m))\n              return;\n            break;\n          }\n        }\n        o.forEach(function(f) {\n          console.error('The pseudo class \"' + f + '\" is potentially unsafe when doing server-side rendering. Try changing it to \"' + f.split(\"-child\")[0] + '-of-type\".');\n        });\n      }\n    }\n  };\n}, it = function(r) {\n  return r.type.charCodeAt(1) === 105 && r.type.charCodeAt(0) === 64;\n}, xn = function(r, n) {\n  for (var a = r - 1; a >= 0; a--)\n    if (!it(n[a]))\n      return !0;\n  return !1;\n}, Ir = function(r) {\n  r.type = \"\", r.value = \"\", r.return = \"\", r.children = \"\", r.props = \"\";\n}, Sn = function(r, n, a) {\n  it(r) && (r.parent ? (console.error(\"`@import` rules can't be nested inside other rules. Please move it to the top level and put it before regular rules. Keep in mind that they can only be used within global styles.\"), Ir(r)) : xn(n, a) && (console.error(\"`@import` rules can't be after other rules. Please put your `@import` rules before your other rules.\"), Ir(r)));\n};\nfunction ot(e, r) {\n  switch (en(e, r)) {\n    case 5103:\n      return w + \"print-\" + e + e;\n    case 5737:\n    case 4201:\n    case 3177:\n    case 3433:\n    case 1641:\n    case 4457:\n    case 2921:\n    case 5572:\n    case 6356:\n    case 5844:\n    case 3191:\n    case 6645:\n    case 3005:\n    case 6391:\n    case 5879:\n    case 5623:\n    case 6135:\n    case 4599:\n    case 4855:\n    case 4215:\n    case 6389:\n    case 5109:\n    case 5365:\n    case 5621:\n    case 3829:\n      return w + e + e;\n    case 5349:\n    case 4246:\n    case 4810:\n    case 6968:\n    case 2756:\n      return w + e + Pe + e + j + e + e;\n    case 6828:\n    case 4268:\n      return w + e + j + e + e;\n    case 6165:\n      return w + e + j + \"flex-\" + e + e;\n    case 5187:\n      return w + e + x(e, /(\\w+).+(:[^]+)/, w + \"box-$1$2\" + j + \"flex-$1$2\") + e;\n    case 5443:\n      return w + e + j + \"flex-item-\" + x(e, /flex-|-self/, \"\") + e;\n    case 4675:\n      return w + e + j + \"flex-line-pack\" + x(e, /align-content|flex-|-self/, \"\") + e;\n    case 5548:\n      return w + e + j + x(e, \"shrink\", \"negative\") + e;\n    case 5292:\n      return w + e + j + x(e, \"basis\", \"preferred-size\") + e;\n    case 6060:\n      return w + \"box-\" + x(e, \"-grow\", \"\") + w + e + j + x(e, \"grow\", \"positive\") + e;\n    case 4554:\n      return w + x(e, /([^-])(transform)/g, \"$1\" + w + \"$2\") + e;\n    case 6187:\n      return x(x(x(e, /(zoom-|grab)/, w + \"$1\"), /(image-set)/, w + \"$1\"), e, \"\") + e;\n    case 5495:\n    case 3959:\n      return x(e, /(image-set\\([^]*)/, w + \"$1$`$1\");\n    case 4968:\n      return x(x(e, /(.+:)(flex-)?(.*)/, w + \"box-pack:$3\" + j + \"flex-pack:$3\"), /s.+-b[^;]+/, \"justify\") + w + e + e;\n    case 4095:\n    case 3583:\n    case 4068:\n    case 2532:\n      return x(e, /(.+)-inline(.+)/, w + \"$1$2\") + e;\n    case 8116:\n    case 7059:\n    case 5753:\n    case 5535:\n    case 5445:\n    case 5701:\n    case 4933:\n    case 4677:\n    case 5533:\n    case 5789:\n    case 5021:\n    case 4765:\n      if (U(e) - 1 - r > 6)\n        switch (I(e, r + 1)) {\n          case 109:\n            if (I(e, r + 4) !== 45)\n              break;\n          case 102:\n            return x(e, /(.+:)(.+)-([^]+)/, \"$1\" + w + \"$2-$3$1\" + Pe + (I(e, r + 3) == 108 ? \"$3\" : \"$2-$3\")) + e;\n          case 115:\n            return ~He(e, \"stretch\") ? ot(x(e, \"stretch\", \"fill-available\"), r) + e : e;\n        }\n      break;\n    case 4949:\n      if (I(e, r + 1) !== 115)\n        break;\n    case 6444:\n      switch (I(e, U(e) - 3 - (~He(e, \"!important\") && 10))) {\n        case 107:\n          return x(e, \":\", \":\" + w) + e;\n        case 101:\n          return x(e, /(.+:)([^;!]+)(;|!.+)?/, \"$1\" + w + (I(e, 14) === 45 ? \"inline-\" : \"\") + \"box$3$1\" + w + \"$2$3$1\" + j + \"$2box$3\") + e;\n      }\n      break;\n    case 5936:\n      switch (I(e, r + 11)) {\n        case 114:\n          return w + e + j + x(e, /[svh]\\w+-[tblr]{2}/, \"tb\") + e;\n        case 108:\n          return w + e + j + x(e, /[svh]\\w+-[tblr]{2}/, \"tb-rl\") + e;\n        case 45:\n          return w + e + j + x(e, /[svh]\\w+-[tblr]{2}/, \"lr\") + e;\n      }\n      return w + e + j + e + e;\n  }\n  return e;\n}\nvar On = function(r, n, a, i) {\n  if (r.length > -1 && !r.return)\n    switch (r.type) {\n      case Qe:\n        r.return = ot(r.value, r.length);\n        break;\n      case et:\n        return ae([fe(r, {\n          value: x(r.value, \"@\", \"@\" + w)\n        })], i);\n      case Ze:\n        if (r.length)\n          return tn(r.props, function(o) {\n            switch (rn(o, /(::plac\\w+|:read-\\w+)/)) {\n              case \":read-only\":\n              case \":read-write\":\n                return ae([fe(r, {\n                  props: [x(o, /:(read-\\w+)/, \":\" + Pe + \"$1\")]\n                })], i);\n              case \"::placeholder\":\n                return ae([fe(r, {\n                  props: [x(o, /:(plac\\w+)/, \":\" + w + \"input-$1\")]\n                }), fe(r, {\n                  props: [x(o, /:(plac\\w+)/, \":\" + Pe + \"$1\")]\n                }), fe(r, {\n                  props: [x(o, /:(plac\\w+)/, j + \"input-$1\")]\n                })], i);\n            }\n            return \"\";\n          });\n    }\n}, Cn = [On], Rn = function(r) {\n  var n = r.key;\n  if (process.env.NODE_ENV !== \"production\" && !n)\n    throw new Error(`You have to configure \\`key\\` for your cache. Please make sure it's unique (and not equal to 'css') as it's used for linking styles to your cache.\nIf multiple caches share the same key they might \"fight\" for each other's style elements.`);\n  if (n === \"css\") {\n    var a = document.querySelectorAll(\"style[data-emotion]:not([data-s])\");\n    Array.prototype.forEach.call(a, function(p) {\n      var k = p.getAttribute(\"data-emotion\");\n      k.indexOf(\" \") !== -1 && (document.head.appendChild(p), p.setAttribute(\"data-s\", \"\"));\n    });\n  }\n  var i = r.stylisPlugins || Cn;\n  if (process.env.NODE_ENV !== \"production\" && /[^a-z-]/.test(n))\n    throw new Error('Emotion key must only contain lower case alphabetical characters and - but \"' + n + '\" was passed');\n  var o = {}, u, l = [];\n  u = r.container || document.head, Array.prototype.forEach.call(\n    // this means we will ignore elements which don't have a space in them which\n    // means that the style elements we're looking at are only Emotion 11 server-rendered style elements\n    document.querySelectorAll('style[data-emotion^=\"' + n + ' \"]'),\n    function(p) {\n      for (var k = p.getAttribute(\"data-emotion\").split(\" \"), _ = 1; _ < k.length; _++)\n        o[k[_]] = !0;\n      l.push(p);\n    }\n  );\n  var d, m = [yn, bn];\n  process.env.NODE_ENV !== \"production\" && m.push(_n({\n    get compat() {\n      return S.compat;\n    }\n  }), Sn);\n  {\n    var f, v = [dn, process.env.NODE_ENV !== \"production\" ? function(p) {\n      p.root || (p.return ? f.insert(p.return) : p.value && p.type !== Xe && f.insert(p.value + \"{}\"));\n    } : hn(function(p) {\n      f.insert(p);\n    })], R = pn(m.concat(i, v)), T = function(k) {\n      return ae(ln(k), R);\n    };\n    d = function(k, _, g, D) {\n      f = g, process.env.NODE_ENV !== \"production\" && _.map !== void 0 && (f = {\n        insert: function($) {\n          g.insert($ + _.map);\n        }\n      }), T(k ? k + \"{\" + _.styles + \"}\" : _.styles), D && (S.inserted[_.name] = !0);\n    };\n  }\n  var S = {\n    key: n,\n    sheet: new Kt({\n      key: n,\n      container: u,\n      nonce: r.nonce,\n      speedy: r.speedy,\n      prepend: r.prepend,\n      insertionPoint: r.insertionPoint\n    }),\n    nonce: r.nonce,\n    inserted: o,\n    registered: {},\n    insert: d\n  };\n  return S.sheet.hydrate(l), S;\n}, kn = !0;\nfunction st(e, r, n) {\n  var a = \"\";\n  return n.split(\" \").forEach(function(i) {\n    e[i] !== void 0 ? r.push(e[i] + \";\") : a += i + \" \";\n  }), a;\n}\nvar rr = function(r, n, a) {\n  var i = r.key + \"-\" + n.name;\n  // we only need to add the styles to the registered cache if the\n  // class name could be used further down\n  // the tree but if it's a string tag, we know it won't\n  // so we don't have to add it to registered cache.\n  // this improves memory usage since we can avoid storing the whole style string\n  (a === !1 || // we need to always store it if we're in compat mode and\n  // in node since emotion-server relies on whether a style is in\n  // the registered cache to know whether a style is global or not\n  // also, note that this check will be dead code eliminated in the browser\n  kn === !1) && r.registered[i] === void 0 && (r.registered[i] = n.styles);\n}, ct = function(r, n, a) {\n  rr(r, n, a);\n  var i = r.key + \"-\" + n.name;\n  if (r.inserted[n.name] === void 0) {\n    var o = n;\n    do\n      r.insert(n === o ? \".\" + i : \"\", o, r.sheet, !0), o = o.next;\n    while (o !== void 0);\n  }\n};\nfunction Tn(e) {\n  for (var r = 0, n, a = 0, i = e.length; i >= 4; ++a, i -= 4)\n    n = e.charCodeAt(a) & 255 | (e.charCodeAt(++a) & 255) << 8 | (e.charCodeAt(++a) & 255) << 16 | (e.charCodeAt(++a) & 255) << 24, n = /* Math.imul(k, m): */\n    (n & 65535) * 1540483477 + ((n >>> 16) * 59797 << 16), n ^= /* k >>> r: */\n    n >>> 24, r = /* Math.imul(k, m): */\n    (n & 65535) * 1540483477 + ((n >>> 16) * 59797 << 16) ^ /* Math.imul(h, m): */\n    (r & 65535) * 1540483477 + ((r >>> 16) * 59797 << 16);\n  switch (i) {\n    case 3:\n      r ^= (e.charCodeAt(a + 2) & 255) << 16;\n    case 2:\n      r ^= (e.charCodeAt(a + 1) & 255) << 8;\n    case 1:\n      r ^= e.charCodeAt(a) & 255, r = /* Math.imul(h, m): */\n      (r & 65535) * 1540483477 + ((r >>> 16) * 59797 << 16);\n  }\n  return r ^= r >>> 13, r = /* Math.imul(h, m): */\n  (r & 65535) * 1540483477 + ((r >>> 16) * 59797 << 16), ((r ^ r >>> 15) >>> 0).toString(36);\n}\nvar Nn = {\n  animationIterationCount: 1,\n  borderImageOutset: 1,\n  borderImageSlice: 1,\n  borderImageWidth: 1,\n  boxFlex: 1,\n  boxFlexGroup: 1,\n  boxOrdinalGroup: 1,\n  columnCount: 1,\n  columns: 1,\n  flex: 1,\n  flexGrow: 1,\n  flexPositive: 1,\n  flexShrink: 1,\n  flexNegative: 1,\n  flexOrder: 1,\n  gridRow: 1,\n  gridRowEnd: 1,\n  gridRowSpan: 1,\n  gridRowStart: 1,\n  gridColumn: 1,\n  gridColumnEnd: 1,\n  gridColumnSpan: 1,\n  gridColumnStart: 1,\n  msGridRow: 1,\n  msGridRowSpan: 1,\n  msGridColumn: 1,\n  msGridColumnSpan: 1,\n  fontWeight: 1,\n  lineHeight: 1,\n  opacity: 1,\n  order: 1,\n  orphans: 1,\n  tabSize: 1,\n  widows: 1,\n  zIndex: 1,\n  zoom: 1,\n  WebkitLineClamp: 1,\n  // SVG-related properties\n  fillOpacity: 1,\n  floodOpacity: 1,\n  stopOpacity: 1,\n  strokeDasharray: 1,\n  strokeDashoffset: 1,\n  strokeMiterlimit: 1,\n  strokeOpacity: 1,\n  strokeWidth: 1\n}, $r = `You have illegal escape sequence in your template literal, most likely inside content's property value.\nBecause you write your CSS inside a JavaScript string you actually have to do double escaping, so for example \"content: '\\\\00d7';\" should become \"content: '\\\\\\\\00d7';\".\nYou can read more about this here:\nhttps://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals#ES2018_revision_of_illegal_escape_sequences`, Pn = \"You have passed in falsy value as style object's key (can happen when in example you pass unexported component as computed key).\", An = /[A-Z]|^ms/g, ut = /_EMO_([^_]+?)_([^]*?)_EMO_/g, tr = function(r) {\n  return r.charCodeAt(1) === 45;\n}, jr = function(r) {\n  return r != null && typeof r != \"boolean\";\n}, qe = /* @__PURE__ */ Qr(function(e) {\n  return tr(e) ? e : e.replace(An, \"-$&\").toLowerCase();\n}), Ae = function(r, n) {\n  switch (r) {\n    case \"animation\":\n    case \"animationName\":\n      if (typeof n == \"string\")\n        return n.replace(ut, function(a, i, o) {\n          return z = {\n            name: i,\n            styles: o,\n            next: z\n          }, i;\n        });\n  }\n  return Nn[r] !== 1 && !tr(r) && typeof n == \"number\" && n !== 0 ? n + \"px\" : n;\n};\nif (process.env.NODE_ENV !== \"production\") {\n  var Dn = /(var|attr|counters?|url|element|(((repeating-)?(linear|radial))|conic)-gradient)\\(|(no-)?(open|close)-quote/, In = [\"normal\", \"none\", \"initial\", \"inherit\", \"unset\"], $n = Ae, jn = /^-ms-/, Vn = /-(.)/g, Vr = {};\n  Ae = function(r, n) {\n    if (r === \"content\" && (typeof n != \"string\" || In.indexOf(n) === -1 && !Dn.test(n) && (n.charAt(0) !== n.charAt(n.length - 1) || n.charAt(0) !== '\"' && n.charAt(0) !== \"'\")))\n      throw new Error(\"You seem to be using a value for 'content' without quotes, try replacing it with `content: '\\\"\" + n + \"\\\"'`\");\n    var a = $n(r, n);\n    return a !== \"\" && !tr(r) && r.indexOf(\"-\") !== -1 && Vr[r] === void 0 && (Vr[r] = !0, console.error(\"Using kebab-case for css properties in objects is not supported. Did you mean \" + r.replace(jn, \"ms-\").replace(Vn, function(i, o) {\n      return o.toUpperCase();\n    }) + \"?\")), a;\n  };\n}\nvar lt = \"Component selectors can only be used in conjunction with @emotion/babel-plugin, the swc Emotion plugin, or another Emotion-aware compiler transform.\";\nfunction me(e, r, n) {\n  if (n == null)\n    return \"\";\n  if (n.__emotion_styles !== void 0) {\n    if (process.env.NODE_ENV !== \"production\" && n.toString() === \"NO_COMPONENT_SELECTOR\")\n      throw new Error(lt);\n    return n;\n  }\n  switch (typeof n) {\n    case \"boolean\":\n      return \"\";\n    case \"object\": {\n      if (n.anim === 1)\n        return z = {\n          name: n.name,\n          styles: n.styles,\n          next: z\n        }, n.name;\n      if (n.styles !== void 0) {\n        var a = n.next;\n        if (a !== void 0)\n          for (; a !== void 0; )\n            z = {\n              name: a.name,\n              styles: a.styles,\n              next: z\n            }, a = a.next;\n        var i = n.styles + \";\";\n        return process.env.NODE_ENV !== \"production\" && n.map !== void 0 && (i += n.map), i;\n      }\n      return Fn(e, r, n);\n    }\n    case \"function\": {\n      if (e !== void 0) {\n        var o = z, u = n(e);\n        return z = o, me(e, r, u);\n      } else\n        process.env.NODE_ENV !== \"production\" && console.error(\"Functions that are interpolated in css calls will be stringified.\\nIf you want to have a css call based on props, create a function that returns a css call like this\\nlet dynamicStyle = (props) => css`color: ${props.color}`\\nIt can be called directly with props or interpolated in a styled call like this\\nlet SomeComponent = styled('div')`${dynamicStyle}`\");\n      break;\n    }\n    case \"string\":\n      if (process.env.NODE_ENV !== \"production\") {\n        var l = [], d = n.replace(ut, function(f, v, R) {\n          var T = \"animation\" + l.length;\n          return l.push(\"const \" + T + \" = keyframes`\" + R.replace(/^@keyframes animation-\\w+/, \"\") + \"`\"), \"${\" + T + \"}\";\n        });\n        l.length && console.error(\"`keyframes` output got interpolated into plain string, please wrap it with `css`.\\n\\nInstead of doing this:\\n\\n\" + [].concat(l, [\"`\" + d + \"`\"]).join(`\n`) + `\n\nYou should wrap it with \\`css\\` like this:\n\n` + (\"css`\" + d + \"`\"));\n      }\n      break;\n  }\n  if (r == null)\n    return n;\n  var m = r[n];\n  return m !== void 0 ? m : n;\n}\nfunction Fn(e, r, n) {\n  var a = \"\";\n  if (Array.isArray(n))\n    for (var i = 0; i < n.length; i++)\n      a += me(e, r, n[i]) + \";\";\n  else\n    for (var o in n) {\n      var u = n[o];\n      if (typeof u != \"object\")\n        r != null && r[u] !== void 0 ? a += o + \"{\" + r[u] + \"}\" : jr(u) && (a += qe(o) + \":\" + Ae(o, u) + \";\");\n      else {\n        if (o === \"NO_COMPONENT_SELECTOR\" && process.env.NODE_ENV !== \"production\")\n          throw new Error(lt);\n        if (Array.isArray(u) && typeof u[0] == \"string\" && (r == null || r[u[0]] === void 0))\n          for (var l = 0; l < u.length; l++)\n            jr(u[l]) && (a += qe(o) + \":\" + Ae(o, u[l]) + \";\");\n        else {\n          var d = me(e, r, u);\n          switch (o) {\n            case \"animation\":\n            case \"animationName\": {\n              a += qe(o) + \":\" + d + \";\";\n              break;\n            }\n            default:\n              process.env.NODE_ENV !== \"production\" && o === \"undefined\" && console.error(Pn), a += o + \"{\" + d + \"}\";\n          }\n        }\n      }\n    }\n  return a;\n}\nvar Fr = /label:\\s*([^\\s;\\n{]+)\\s*(;|$)/g, ft;\nprocess.env.NODE_ENV !== \"production\" && (ft = /\\/\\*#\\ssourceMappingURL=data:application\\/json;\\S+\\s+\\*\\//g);\nvar z, Je = function(r, n, a) {\n  if (r.length === 1 && typeof r[0] == \"object\" && r[0] !== null && r[0].styles !== void 0)\n    return r[0];\n  var i = !0, o = \"\";\n  z = void 0;\n  var u = r[0];\n  u == null || u.raw === void 0 ? (i = !1, o += me(a, n, u)) : (process.env.NODE_ENV !== \"production\" && u[0] === void 0 && console.error($r), o += u[0]);\n  for (var l = 1; l < r.length; l++)\n    o += me(a, n, r[l]), i && (process.env.NODE_ENV !== \"production\" && u[l] === void 0 && console.error($r), o += u[l]);\n  var d;\n  process.env.NODE_ENV !== \"production\" && (o = o.replace(ft, function(R) {\n    return d = R, \"\";\n  })), Fr.lastIndex = 0;\n  for (var m = \"\", f; (f = Fr.exec(o)) !== null; )\n    m += \"-\" + // $FlowFixMe we know it's not null\n    f[1];\n  var v = Tn(o) + m;\n  return process.env.NODE_ENV !== \"production\" ? {\n    name: v,\n    styles: o,\n    map: d,\n    next: z,\n    toString: function() {\n      return \"You have tried to stringify object returned from `css` function. It isn't supposed to be used directly (e.g. as value of the `className` prop), but rather handed to emotion so it can handle it (e.g. as value of `css` prop).\";\n    }\n  } : {\n    name: v,\n    styles: o,\n    next: z\n  };\n}, Mn = function(r) {\n  return r();\n}, Ln = kr[\"useInsertionEffect\"] ? kr[\"useInsertionEffect\"] : !1, dt = Ln || Mn, Wn = {}.hasOwnProperty, nr = /* @__PURE__ */ Jr(\n  // we're doing this to avoid preconstruct's dead code elimination in this one case\n  // because this module is primarily intended for the browser and node\n  // but it's also required in react native and similar environments sometimes\n  // and we could have a special build just for that\n  // but this is much easier and the native packages\n  // might use a different theme context in the future anyway\n  typeof HTMLElement < \"u\" ? /* @__PURE__ */ Rn({\n    key: \"css\"\n  }) : null\n);\nprocess.env.NODE_ENV !== \"production\" && (nr.displayName = \"EmotionCacheContext\");\nnr.Provider;\nvar pt = function(r) {\n  return /* @__PURE__ */ Lt(function(n, a) {\n    var i = Ke(nr);\n    return r(n, i, a);\n  });\n}, ar = /* @__PURE__ */ Jr({});\nprocess.env.NODE_ENV !== \"production\" && (ar.displayName = \"EmotionThemeContext\");\nvar Mr = \"__EMOTION_TYPE_PLEASE_DO_NOT_USE__\", Lr = \"__EMOTION_LABEL_PLEASE_DO_NOT_USE__\", zn = function(r) {\n  var n = r.cache, a = r.serialized, i = r.isStringTag;\n  return rr(n, a, i), dt(function() {\n    return ct(n, a, i);\n  }), null;\n}, Yn = /* @__PURE__ */ pt(function(e, r, n) {\n  var a = e.css;\n  typeof a == \"string\" && r.registered[a] !== void 0 && (a = r.registered[a]);\n  var i = e[Mr], o = [a], u = \"\";\n  typeof e.className == \"string\" ? u = st(r.registered, o, e.className) : e.className != null && (u = e.className + \" \");\n  var l = Je(o, void 0, Ke(ar));\n  if (process.env.NODE_ENV !== \"production\" && l.name.indexOf(\"-\") === -1) {\n    var d = e[Lr];\n    d && (l = Je([l, \"label:\" + d + \";\"]));\n  }\n  u += r.key + \"-\" + l.name;\n  var m = {};\n  for (var f in e)\n    Wn.call(e, f) && f !== \"css\" && f !== Mr && (process.env.NODE_ENV === \"production\" || f !== Lr) && (m[f] = e[f]);\n  return m.ref = n, m.className = u, /* @__PURE__ */ ne(Kr, null, /* @__PURE__ */ ne(zn, {\n    cache: r,\n    serialized: l,\n    isStringTag: typeof i == \"string\"\n  }), /* @__PURE__ */ ne(i, m));\n});\nprocess.env.NODE_ENV !== \"production\" && (Yn.displayName = \"EmotionCssPropInternal\");\nvar Un = Ht, qn = function(r) {\n  return r !== \"theme\";\n}, Wr = function(r) {\n  return typeof r == \"string\" && // 96 is one less than the char code\n  // for \"a\" so this is checking that\n  // it's a lowercase character\n  r.charCodeAt(0) > 96 ? Un : qn;\n}, zr = function(r, n, a) {\n  var i;\n  if (n) {\n    var o = n.shouldForwardProp;\n    i = r.__emotion_forwardProp && o ? function(u) {\n      return r.__emotion_forwardProp(u) && o(u);\n    } : o;\n  }\n  return typeof i != \"function\" && a && (i = r.__emotion_forwardProp), i;\n}, Yr = `You have illegal escape sequence in your template literal, most likely inside content's property value.\nBecause you write your CSS inside a JavaScript string you actually have to do double escaping, so for example \"content: '\\\\00d7';\" should become \"content: '\\\\\\\\00d7';\".\nYou can read more about this here:\nhttps://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals#ES2018_revision_of_illegal_escape_sequences`, Bn = function(r) {\n  var n = r.cache, a = r.serialized, i = r.isStringTag;\n  return rr(n, a, i), dt(function() {\n    return ct(n, a, i);\n  }), null;\n}, Hn = function e(r, n) {\n  if (process.env.NODE_ENV !== \"production\" && r === void 0)\n    throw new Error(`You are trying to create a styled element with an undefined component.\nYou may have forgotten to import it.`);\n  var a = r.__emotion_real === r, i = a && r.__emotion_base || r, o, u;\n  n !== void 0 && (o = n.label, u = n.target);\n  var l = zr(r, n, a), d = l || Wr(i), m = !d(\"as\");\n  return function() {\n    var f = arguments, v = a && r.__emotion_styles !== void 0 ? r.__emotion_styles.slice(0) : [];\n    if (o !== void 0 && v.push(\"label:\" + o + \";\"), f[0] == null || f[0].raw === void 0)\n      v.push.apply(v, f);\n    else {\n      process.env.NODE_ENV !== \"production\" && f[0][0] === void 0 && console.error(Yr), v.push(f[0][0]);\n      for (var R = f.length, T = 1; T < R; T++)\n        process.env.NODE_ENV !== \"production\" && f[0][T] === void 0 && console.error(Yr), v.push(f[T], f[0][T]);\n    }\n    var S = pt(function(p, k, _) {\n      var g = m && p.as || i, D = \"\", Y = [], $ = p;\n      if (p.theme == null) {\n        $ = {};\n        for (var V in p)\n          $[V] = p[V];\n        $.theme = Ke(ar);\n      }\n      typeof p.className == \"string\" ? D = st(k.registered, Y, p.className) : p.className != null && (D = p.className + \" \");\n      var O = Je(v.concat(Y), k.registered, $);\n      D += k.key + \"-\" + O.name, u !== void 0 && (D += \" \" + u);\n      var je = m && l === void 0 ? Wr(g) : d, X = {};\n      for (var Q in p)\n        m && Q === \"as\" || // $FlowFixMe\n        je(Q) && (X[Q] = p[Q]);\n      return X.className = D, X.ref = _, /* @__PURE__ */ ne(Kr, null, /* @__PURE__ */ ne(Bn, {\n        cache: k,\n        serialized: O,\n        isStringTag: typeof g == \"string\"\n      }), /* @__PURE__ */ ne(g, X));\n    });\n    return S.displayName = o !== void 0 ? o : \"Styled(\" + (typeof i == \"string\" ? i : i.displayName || i.name || \"Component\") + \")\", S.defaultProps = r.defaultProps, S.__emotion_real = S, S.__emotion_base = i, S.__emotion_styles = v, S.__emotion_forwardProp = l, Object.defineProperty(S, \"toString\", {\n      value: function() {\n        return u === void 0 && process.env.NODE_ENV !== \"production\" ? \"NO_COMPONENT_SELECTOR\" : \".\" + u;\n      }\n    }), S.withComponent = function(p, k) {\n      return e(p, Be({}, n, k, {\n        shouldForwardProp: zr(S, k, !0)\n      })).apply(void 0, v);\n    }, S;\n  };\n}, Gn = [\n  \"a\",\n  \"abbr\",\n  \"address\",\n  \"area\",\n  \"article\",\n  \"aside\",\n  \"audio\",\n  \"b\",\n  \"base\",\n  \"bdi\",\n  \"bdo\",\n  \"big\",\n  \"blockquote\",\n  \"body\",\n  \"br\",\n  \"button\",\n  \"canvas\",\n  \"caption\",\n  \"cite\",\n  \"code\",\n  \"col\",\n  \"colgroup\",\n  \"data\",\n  \"datalist\",\n  \"dd\",\n  \"del\",\n  \"details\",\n  \"dfn\",\n  \"dialog\",\n  \"div\",\n  \"dl\",\n  \"dt\",\n  \"em\",\n  \"embed\",\n  \"fieldset\",\n  \"figcaption\",\n  \"figure\",\n  \"footer\",\n  \"form\",\n  \"h1\",\n  \"h2\",\n  \"h3\",\n  \"h4\",\n  \"h5\",\n  \"h6\",\n  \"head\",\n  \"header\",\n  \"hgroup\",\n  \"hr\",\n  \"html\",\n  \"i\",\n  \"iframe\",\n  \"img\",\n  \"input\",\n  \"ins\",\n  \"kbd\",\n  \"keygen\",\n  \"label\",\n  \"legend\",\n  \"li\",\n  \"link\",\n  \"main\",\n  \"map\",\n  \"mark\",\n  \"marquee\",\n  \"menu\",\n  \"menuitem\",\n  \"meta\",\n  \"meter\",\n  \"nav\",\n  \"noscript\",\n  \"object\",\n  \"ol\",\n  \"optgroup\",\n  \"option\",\n  \"output\",\n  \"p\",\n  \"param\",\n  \"picture\",\n  \"pre\",\n  \"progress\",\n  \"q\",\n  \"rp\",\n  \"rt\",\n  \"ruby\",\n  \"s\",\n  \"samp\",\n  \"script\",\n  \"section\",\n  \"select\",\n  \"small\",\n  \"source\",\n  \"span\",\n  \"strong\",\n  \"style\",\n  \"sub\",\n  \"summary\",\n  \"sup\",\n  \"table\",\n  \"tbody\",\n  \"td\",\n  \"textarea\",\n  \"tfoot\",\n  \"th\",\n  \"thead\",\n  \"time\",\n  \"title\",\n  \"tr\",\n  \"track\",\n  \"u\",\n  \"ul\",\n  \"var\",\n  \"video\",\n  \"wbr\",\n  // SVG\n  \"circle\",\n  \"clipPath\",\n  \"defs\",\n  \"ellipse\",\n  \"foreignObject\",\n  \"g\",\n  \"image\",\n  \"line\",\n  \"linearGradient\",\n  \"mask\",\n  \"path\",\n  \"pattern\",\n  \"polygon\",\n  \"polyline\",\n  \"radialGradient\",\n  \"rect\",\n  \"stop\",\n  \"svg\",\n  \"text\",\n  \"tspan\"\n], K = Hn.bind();\nGn.forEach(function(e) {\n  K[e] = K(e);\n});\nconst Jn = (e) => te(Kn, {\n  children: [q(Xn, {\n    src: \"https://flowbase-figma.pages.dev/images/logo-dark.png\"\n  }), q(Zn, {\n    children: e.text\n  })]\n}), Kn = K.div`\n  display: flex;\n  align-items: center;\n  justify-content: center;\n  flex-direction: column;\n  row-gap: 20px;\n\n  width: 100%;\n  height: 100%;\n\n  border-radius: 18px;\n\n  min-width: 600px;\n  min-height: 400px;\n\n  background: #f7f8fd;\n`, Xn = K.img`\n  width: 160px;\n`, Zn = K.span`\n  color: #061237;\n  font-family: Inter, sans-serif;\n  font-size: 18px;\n  line-height: 36px;\n`;\nvar de = ((e) => (e[e.Days = 0] = \"Days\", e[e.Hours = 1] = \"Hours\", e[e.Minutes = 2] = \"Minutes\", e[e.Seconds = 3] = \"Seconds\", e))(de || {}), Te = ((e) => (e.Full = \"full\", e.Short = \"short\", e))(Te || {}), J = ((e) => (e.Top = \"top\", e.Right = \"right\", e.Bottom = \"bottom\", e.Left = \"left\", e))(J || {});\nconst Qn = (e, r) => {\n  if (r === \"short\")\n    switch (e) {\n      case 0:\n        return \"D\";\n      case 1:\n        return \"H\";\n      case 2:\n        return \"M\";\n      case 3:\n        return \"S\";\n    }\n  switch (e) {\n    case 0:\n      return \"Days\";\n    case 1:\n      return \"Hours\";\n    case 2:\n      return \"Minutes\";\n    case 3:\n      return \"Seconds\";\n  }\n}, xe = (e) => e.show ? q(ea, {\n  ...e,\n  children: Qn(e.value, e.variant)\n}) : null, ea = K.span`\n  color: ${(e) => e.fontColor};\n  font-family: ${(e) => e.fontName};\n  font-weight: ${(e) => e.fontWeight};\n  font-size: ${(e) => e.fontSize}px;\n  text-transform: ${(e) => e.uppercase ? \"uppercase\" : \"auto\"};\n`, Ur = 1e3 * 60 * 60 * 24, qr = 1e3 * 60 * 60, Br = 1e3 * 60, ra = 1e3, Hr = {\n  days: \"0\",\n  hours: \"0\",\n  minutes: \"0\",\n  seconds: \"0\"\n}, Se = (e) => String(e).padStart(2, \"0\"), ta = (e) => {\n  const [r, n] = Wt(() => {\n    const d = new Date(e.countdown);\n    return [d.getTime(), !d || !isNaN(d.valueOf())];\n  }, [e.countdown]), a = zt(), i = () => {\n    clearInterval(a.current), a.current = void 0;\n  }, [o, u] = Xr(Hr), l = () => {\n    const d = (/* @__PURE__ */ new Date()).getTime(), m = r - d;\n    if (m < 0)\n      return u(e.finishedComponent ? null : Hr), i();\n    u({\n      days: Se(Math.floor(m / Ur)),\n      hours: Se(Math.floor(m % Ur / qr)),\n      minutes: Se(Math.floor(m % qr / Br)),\n      seconds: Se(Math.floor(m % Br / ra))\n    });\n  };\n  return Zr(() => {\n    if (a.current && i(), !!n)\n      return a.current = setInterval(l, 1e3), l(), i;\n  }, [r]), o === null ? e.finishedComponent : !r || !n ? q(Jn, {\n    text: \"Please provide correct date\"\n  }) : te(na, {\n    gap: e.gap,\n    fontName: e.fontName,\n    fontSize: e.fontSize,\n    fontColor: e.fontColor,\n    fontWeight: e.fontWeight,\n    children: [e.days && te(Oe, {\n      position: e.unit.position,\n      gap: e.unit.gap,\n      children: [o.days, q(xe, {\n        ...e.unit,\n        value: de.Days\n      })]\n    }), e.hours && te(Oe, {\n      position: e.unit.position,\n      gap: e.unit.gap,\n      children: [o.hours, q(xe, {\n        ...e.unit,\n        value: de.Hours\n      })]\n    }), e.minutes && te(Oe, {\n      position: e.unit.position,\n      gap: e.unit.gap,\n      children: [o.minutes, q(xe, {\n        ...e.unit,\n        value: de.Minutes\n      })]\n    }), e.seconds && te(Oe, {\n      position: e.unit.position,\n      gap: e.unit.gap,\n      children: [o.seconds, q(xe, {\n        ...e.unit,\n        value: de.Seconds\n      })]\n    })]\n  });\n}, na = K.div`\n  display: flex;\n  align-items: center;\n  justify-content: center;\n  gap: ${(e) => e.gap}px;\n\n  color: ${(e) => e.fontColor};\n  font-family: ${(e) => e.fontName};\n  font-weight: ${(e) => e.fontWeight};\n  font-size: ${(e) => e.fontSize}px;\n`, Oe = K.div`\n  display: flex;\n  gap: ${(e) => e.gap}px;\n  align-items: center;\n  justify-content: center;\n\n  flex-direction: ${(e) => {\n  switch (e.position) {\n    case J.Right:\n      return \"row\";\n    case J.Left:\n      return \"row-reverse\";\n    case J.Bottom:\n      return \"column\";\n    case J.Top:\n      return \"column-reverse\";\n  }\n}};\n`, aa = ({ loading: e, loaded: r }) => {\n  const [n, a] = Xr(!0);\n  return Zr(() => a(!1), []), n ? e : r;\n}, oa = {\n  countdown: {\n    type: \"string\",\n    title: \"Countdown\",\n    defaultValue: \"May 18, 2030 14:42:59\",\n    description: \"[Flowbase](https://www.flowbase.co/) is the worlds largest component resource site. Explore endless components and templates to inspire your workflows and help you build better, faster.\"\n  },\n  days: {\n    type: \"boolean\",\n    defaultValue: !0\n  },\n  hours: {\n    type: \"boolean\",\n    defaultValue: !0\n  },\n  minutes: {\n    type: \"boolean\",\n    defaultValue: !0\n  },\n  seconds: {\n    type: \"boolean\",\n    defaultValue: !0\n  },\n  unit: {\n    type: \"object\",\n    title: \"Unit\",\n    controls: {\n      show: {\n        type: \"boolean\",\n        defaultValue: !0\n      },\n      variant: {\n        type: \"enum\",\n        defaultValue: Te.Full,\n        options: Object.values(Te),\n        optionTitles: Object.keys(Te)\n      },\n      position: {\n        type: \"enum\",\n        defaultValue: J.Right,\n        options: Object.values(J),\n        optionTitles: Object.keys(J)\n      },\n      gap: {\n        type: \"number\",\n        defaultValue: 14,\n        min: 0,\n        max: 999,\n        step: 1,\n        displayStepper: !0\n      },\n      fontName: {\n        type: \"string\",\n        defaultValue: \"Inter\"\n      },\n      fontSize: {\n        type: \"number\",\n        defaultValue: 20,\n        min: 0,\n        max: 999,\n        step: 1,\n        displayStepper: !0\n      },\n      fontColor: {\n        type: \"color\",\n        defaultValue: \"#75788A\"\n      },\n      fontWeight: {\n        type: \"number\",\n        defaultValue: 400,\n        min: 100,\n        max: 1e3,\n        step: 100,\n        displayStepper: !0\n      },\n      uppercase: {\n        type: \"boolean\",\n        defaultValue: !1\n      }\n    }\n  },\n  gap: {\n    type: \"number\",\n    defaultValue: 14,\n    min: 0,\n    max: 999,\n    step: 1,\n    displayStepper: !0\n  },\n  fontName: {\n    type: \"string\",\n    defaultValue: \"Inter\"\n  },\n  fontSize: {\n    type: \"number\",\n    defaultValue: 24,\n    min: 0,\n    max: 999,\n    step: 1,\n    displayStepper: !0\n  },\n  fontColor: {\n    type: \"color\",\n    defaultValue: \"#282636\"\n  },\n  fontWeight: {\n    type: \"number\",\n    defaultValue: 400,\n    min: 100,\n    max: 1e3,\n    step: 100,\n    displayStepper: !0\n  },\n  finishedComponent: {\n    type: \"componentinstance\",\n    title: \"Finished\"\n  }\n}, sa = (e) => q(aa, {\n  loading: null,\n  loaded: q(ta, {\n    ...e\n  })\n});\nexport {\n  sa as Countdown,\n  oa as propertyControls\n};\n", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls}from\"framer\";import{propertyControls,Countdown as Component}from\"https://boosters.flowbase.co/countdown-framer.js#Pi7EuYI4gQpP\";addPropertyControls(Countdown,propertyControls);export default function Countdown(props){return /*#__PURE__*/_jsx(Component,{...props});}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Countdown\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Countdown_1.map", "import{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-Bold\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[];export const css=['.framer-hThfQ .framer-styles-preset-fx3wuf:not(.rich-text-wrapper), .framer-hThfQ .framer-styles-preset-fx3wuf.rich-text-wrapper h6 { --framer-font-family: \"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter-Black\", \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter-BlackItalic\", \"Inter\", sans-serif; --framer-font-family-italic: \"Inter-BoldItalic\", \"Inter\", \"Inter 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: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #333333; --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-hThfQ\";\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\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([\"Inter\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[];export const css=['.framer-Lkomy .framer-styles-preset-187qr2p:not(.rich-text-wrapper), .framer-Lkomy .framer-styles-preset-187qr2p.rich-text-wrapper p { --framer-font-family: \"Inter\", sans-serif; --framer-font-family-bold: \"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter-BoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter-Italic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.03em; --framer-line-height: 160%; --framer-paragraph-spacing: 18px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1439px) and (min-width: 1200px) { .framer-Lkomy .framer-styles-preset-187qr2p:not(.rich-text-wrapper), .framer-Lkomy .framer-styles-preset-187qr2p.rich-text-wrapper p { --framer-font-family: \"Inter\", sans-serif; --framer-font-family-bold: \"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter-BoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter-Italic\", \"Inter\", \"Inter 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: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.03em; --framer-line-height: 160%; --framer-paragraph-spacing: 18px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 1199px) and (min-width: 0px) { .framer-Lkomy .framer-styles-preset-187qr2p:not(.rich-text-wrapper), .framer-Lkomy .framer-styles-preset-187qr2p.rich-text-wrapper p { --framer-font-family: \"Inter\", sans-serif; --framer-font-family-bold: \"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter-BoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter-Italic\", \"Inter\", \"Inter 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: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.03em; --framer-line-height: 160%; --framer-paragraph-spacing: 18px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-Lkomy\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (21ec140)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,optimizeAppear,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,SVG,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js\";import FluidCTA from\"#framer/local/canvasComponent/pzXETq_7e/pzXETq_7e.js\";import SyllabusItem from\"#framer/local/canvasComponent/Rg250I05I/Rg250I05I.js\";import Footer from\"#framer/local/canvasComponent/uSZg4gZO1/uSZg4gZO1.js\";import CTABrightWOArrow from\"#framer/local/canvasComponent/v5IvmsTaG/v5IvmsTaG.js\";import Header from\"#framer/local/canvasComponent/xVBFlZDlC/xVBFlZDlC.js\";import Countdown from\"#framer/local/codeFile/kUVtORX/Countdown_1.js\";import Courses,{enumToDisplayNameFunctions}from\"#framer/local/collection/jvSxvyXvp/jvSxvyXvp.js\";import*as sharedStyle1 from\"#framer/local/css/G7_wVQErG/G7_wVQErG.js\";import*as sharedStyle2 from\"#framer/local/css/H3xk5tGfS/H3xk5tGfS.js\";import*as sharedStyle3 from\"#framer/local/css/l1EH9buxQ/l1EH9buxQ.js\";import*as sharedStyle from\"#framer/local/css/O_8eTy7t9/O_8eTy7t9.js\";import metadataProvider from\"#framer/local/webPageMetadata/gxylYdPOn/gxylYdPOn.js\";const CountdownFonts=getFonts(Countdown);const FluidCTAFonts=getFonts(FluidCTA);const HeaderFonts=getFonts(Header);const HeaderWithVariantAppearEffect=withVariantAppearEffect(Header);const YouTubeFonts=getFonts(YouTube);const SyllabusItemFonts=getFonts(SyllabusItem);const FooterFonts=getFonts(Footer);const CTABrightWOArrowFonts=getFonts(CTABrightWOArrow);const cycleOrder=[\"AKQqRBX5b\",\"gEqn1xdqU\",\"voOEodHGo\",\"GcMW1GXWQ\"];const breakpoints={AKQqRBX5b:\"(min-width: 1440px)\",GcMW1GXWQ:\"(max-width: 809px)\",gEqn1xdqU:\"(min-width: 1200px) and (max-width: 1439px)\",voOEodHGo:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-e0pXp\";const variantClassNames={AKQqRBX5b:\"framer-v-1kahds2\",GcMW1GXWQ:\"framer-v-otxqv1\",gEqn1xdqU:\"framer-v-1f4lftj\",voOEodHGo:\"framer-v-1r3iknj\"};const transition1={damping:50,delay:0,mass:1,stiffness:200,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation2={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={delay:.5,duration:.5,ease:[.26,-.02,0,.81],type:\"tween\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:50};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation5={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50};const transition3={delay:.6,duration:.5,ease:[.26,-.02,0,.81],type:\"tween\"};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:50};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const transition4={delay:.7,duration:.5,ease:[.26,-.02,0,.81],type:\"tween\"};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:50};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const transition5={delay:.8,duration:.5,ease:[.26,-.02,0,.81],type:\"tween\"};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:50};const animation11={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};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,children})=>{const data=useQueryData(query);return children(data);};const transition6={delay:0,duration:.5,ease:[.12,.23,.5,1],type:\"tween\"};const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1.5,skewX:0,skewY:0,transition:transition6,x:0,y:0};const animation13={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const animation14={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1.5,skewX:0,skewY:0,x:0,y:0};const transition7={damping:30,delay:1,mass:1,stiffness:200,type:\"spring\"};const animation15={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transition:transition7,x:0,y:50};const animation16={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7,x:0,y:0};const animation17={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:50};const metadata=metadataProvider();const humanReadableVariantMap={\"1200\":\"gEqn1xdqU\",Desktop:\"AKQqRBX5b\",Phone:\"GcMW1GXWQ\",Tablet:\"voOEodHGo\"};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:\"AKQqRBX5b\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{data:Courses,type:\"Collection\"},select:[{name:\"WmlJS2NCw\",type:\"Identifier\"},{name:\"LHOse_l3U\",type:\"Identifier\"},{name:\"pRkNNgkDj\",type:\"Identifier\"},{name:\"ov3tDgVCX\",type:\"Identifier\"},{name:\"GDhCT_b_S\",type:\"Identifier\"},{name:\"bB_BZEODV\",type:\"Identifier\"},{name:\"Ovzk4qM_k\",type:\"Identifier\"},{name:\"KeRc0ef0I\",type:\"Identifier\"},{name:\"D0CPNpVld\",type:\"Identifier\"},{name:\"iEIMgbaOU\",type:\"Identifier\"},{name:\"ErtS0x7aq\",type:\"Identifier\"},{name:\"CcgitivOH\",type:\"Identifier\"},{name:\"LxX9T1enw\",type:\"Identifier\"},{name:\"h19GLtYcr\",type:\"Identifier\"},{name:\"GaMy8Mj1G\",type:\"Identifier\"},{name:\"a7TS2b5yz\",type:\"Identifier\"},{name:\"amAHnxdyB\",type:\"Identifier\"},{name:\"nhQzhGP1U\",type:\"Identifier\"},{name:\"h5tTW6UtJ\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables)});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data in \"Courses\" matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,a7TS2b5yz=getFromCurrentRouteData(\"a7TS2b5yz\"),LxX9T1enw=getFromCurrentRouteData(\"LxX9T1enw\"),h19GLtYcr=getFromCurrentRouteData(\"h19GLtYcr\"),GaMy8Mj1G=getFromCurrentRouteData(\"GaMy8Mj1G\"),ov3tDgVCX=getFromCurrentRouteData(\"ov3tDgVCX\"),GDhCT_b_S=getFromCurrentRouteData(\"GDhCT_b_S\"),amAHnxdyB=getFromCurrentRouteData(\"amAHnxdyB\"),nhQzhGP1U=getFromCurrentRouteData(\"nhQzhGP1U\"),WmlJS2NCw=getFromCurrentRouteData(\"WmlJS2NCw\"),LHOse_l3U=getFromCurrentRouteData(\"LHOse_l3U\"),Ovzk4qM_k=getFromCurrentRouteData(\"Ovzk4qM_k\"),KeRc0ef0I=getFromCurrentRouteData(\"KeRc0ef0I\"),D0CPNpVld=getFromCurrentRouteData(\"D0CPNpVld\"),iEIMgbaOU=getFromCurrentRouteData(\"iEIMgbaOU\"),ErtS0x7aq=getFromCurrentRouteData(\"ErtS0x7aq\"),CcgitivOH=getFromCurrentRouteData(\"CcgitivOH\"),NtCXN8JxVK5G3DveHr,wZExv_5vHK5G3DveHr,zulmAYJizK5G3DveHr,pRkNNgkDjK5G3DveHr,WmlJS2NCwK5G3DveHr,LHOse_l3UK5G3DveHr,ov3tDgVCXK5G3DveHr,GDhCT_b_SK5G3DveHr,idK5G3DveHr,pRkNNgkDj=getFromCurrentRouteData(\"pRkNNgkDj\"),h5tTW6UtJ=getFromCurrentRouteData(\"h5tTW6UtJ\"),bB_BZEODV=getFromCurrentRouteData(\"bB_BZEODV\"),...restProps}=getProps(props);React.useInsertionEffect(()=>{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-e0pXp`);return()=>{document.body.classList.remove(`${metadata1.bodyClassName}-framer-e0pXp`);};}},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"GcMW1GXWQ\")return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"GcMW1GXWQ\")return false;return true;};const ref2=React.useRef(null);const id=useRouteElementId(\"lpYLH6hjx\");const router=useRouter();const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"AKQqRBX5b\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1kahds2\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q2eqy4 hidden-1kahds2 hidden-1f4lftj hidden-1r3iknj\",\"data-border\":true,\"data-framer-name\":\"Pay now\",name:\"Pay now\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h3n8pa\",\"data-framer-name\":\"Frame 1321314532\",name:\"Frame 1321314532\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mycmfh\",\"data-framer-name\":\"Frame 1321314523\",name:\"Frame 1321314523\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.6)\"},children:\"Course price\"})}),className:\"framer-18f5hhv\",\"data-framer-name\":\"Course price\",fonts:[\"Inter-Medium\"],name:\"Course price\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1j5139c\",\"data-framer-name\":\"Frame 1321314524\",name:\"Frame 1321314524\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"rgb(122, 122, 122)\",\"--framer-text-decoration\":\"line-through\"},children:\"$69\"})}),className:\"framer-z2uuwf\",\"data-framer-name\":\"$69\",fonts:[\"Inter\"],name:\"$69\",text:a7TS2b5yz,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"$39\"})}),className:\"framer-7fh52s\",\"data-framer-name\":\"$39\",fonts:[\"Inter-Bold\"],name:\"$39\",text:LxX9T1enw,verticalAlignment:\"top\",withExternalLayout:true})]})]}),h19GLtYcr&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2f3x8k\",\"data-framer-name\":\"Frame 1321314525\",name:\"Frame 1321314525\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-19kmdyh\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,name:\"Frame\",svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.6177 5.9681L19.0711 4.51472L20.4853 5.92893L19.0319 7.38231C20.2635 8.92199 21 10.875 21 13C21 17.9706 16.9706 22 12 22C7.02944 22 3 17.9706 3 13C3 8.02944 7.02944 4 12 4C14.125 4 16.078 4.73647 17.6177 5.9681ZM11 8V14H13V8H11ZM8 1H16V3H8V1Z\" fill=\"#FF8A00\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n49c5z\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"rgb(255, 137, 0)\"},children:\"This offer ends in\"})}),className:\"framer-1i6j86y\",\"data-framer-name\":\"This offer ends in 02:57:42\",fonts:[\"Inter\"],name:\"This offer ends in 02:57:42\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-192h1g\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-d4ouul-container\",children:/*#__PURE__*/_jsx(Countdown,{countdown:GaMy8Mj1G,days:false,finishedComponent:[],fontColor:\"rgb(255, 137, 0)\",fontName:\"Inter\",fontSize:15,fontWeight:400,gap:4,height:\"100%\",hours:true,id:\"IQNa7Q47D\",layoutId:\"IQNa7Q47D\",minutes:false,seconds:false,unit:{fontColor:\"rgb(107, 113, 148)\",fontName:\"Inter\",fontSize:0,fontWeight:400,gap:4,position:\"bottom\",show:false,uppercase:false,variant:\"full\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"rgb(255, 137, 0)\"},children:\":\"})}),className:\"framer-qaqe97\",\"data-framer-name\":\"This offer ends in 02:57:42\",fonts:[\"GF;Inter-regular\"],name:\"This offer ends in 02:57:42\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-b4w138-container\",children:/*#__PURE__*/_jsx(Countdown,{countdown:GaMy8Mj1G,days:false,finishedComponent:[],fontColor:\"rgb(255, 137, 0)\",fontName:\"Inter\",fontSize:15,fontWeight:400,gap:4,height:\"100%\",hours:false,id:\"Cieuo3fEH\",layoutId:\"Cieuo3fEH\",minutes:true,seconds:false,unit:{fontColor:\"rgb(107, 113, 148)\",fontName:\"Inter\",fontSize:0,fontWeight:400,gap:4,position:\"bottom\",show:false,uppercase:false,variant:\"full\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"rgb(255, 137, 0)\"},children:\":\"})}),className:\"framer-1id7ckl\",\"data-framer-name\":\"This offer ends in 02:57:42\",fonts:[\"GF;Inter-regular\"],name:\"This offer ends in 02:57:42\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-bvrabf-container\",children:/*#__PURE__*/_jsx(Countdown,{countdown:GaMy8Mj1G,days:false,finishedComponent:[],fontColor:\"rgb(255, 137, 0)\",fontName:\"Inter\",fontSize:15,fontWeight:400,gap:4,height:\"100%\",hours:false,id:\"ZNzLKPsbL\",layoutId:\"ZNzLKPsbL\",minutes:false,seconds:true,unit:{fontColor:\"rgb(107, 113, 148)\",fontName:\"Inter\",fontSize:0,fontWeight:400,gap:4,position:\"bottom\",show:false,uppercase:false,variant:\"full\"},width:\"100%\"})})})]})]})]})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13nuwy5 hidden-otxqv1\",\"data-framer-name\":\"Frame 1321314529\",name:\"Frame 1321314529\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ou99hs\",\"data-framer-name\":\"Frame 1321314527\",name:\"Frame 1321314527\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-17aehqf\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,name:\"Frame\",svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M4 5.77264C4 5.34592 4.36425 5 4.79344 5H19.2066C19.6448 5 20 5.34607 20 5.77264V18.2274C20 18.654 19.6358 19 19.2066 19H4.79344C4.35524 19 4 18.654 4 18.2274V5.77264ZM5.6 6.55556V8.11111H7.2V6.55556H5.6ZM16.8 6.55556V8.11111H18.4V6.55556H16.8ZM5.6 9.66667V11.2222H7.2V9.66667H5.6ZM16.8 9.66667V11.2222H18.4V9.66667H16.8ZM5.6 12.7778V14.3333H7.2V12.7778H5.6ZM16.8 12.7778V14.3333H18.4V12.7778H16.8ZM5.6 15.8889V17.4444H7.2V15.8889H5.6ZM16.8 15.8889V17.4444H18.4V15.8889H16.8Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5gpe5s\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"16px\",\"--framer-line-height\":\"24px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXI=\",\"--framer-font-family\":'\"Inter\"',\"--framer-font-size\":\"16px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"7 lessons\"})})}),className:\"framer-xa6cxf\",\"data-framer-name\":\"7 lessons\",fonts:[\"Inter\"],name:\"7 lessons\",text:ov3tDgVCX,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"lessons\"})}),className:\"framer-15xqufq\",\"data-framer-name\":\"7 lessons\",fonts:[\"Inter\"],name:\"7 lessons\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fybodv\",\"data-framer-name\":\"Frame 1321314528\",name:\"Frame 1321314528\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1kp17mj\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,name:\"Frame\",svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M12 21C7.02943 21 3 16.9705 3 12C3 7.02943 7.02943 3 12 3C16.9705 3 21 7.02943 21 12C21 16.9705 16.9705 21 12 21ZM12.9 12V7.5H11.1V13.8H16.5V12H12.9Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"16px\",\"--framer-line-height\":\"24px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXI=\",\"--framer-font-family\":'\"Inter\"',\"--framer-font-size\":\"16px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"40 hours, 24 mins.\"})})}),className:\"framer-1gl96ij\",\"data-framer-name\":\"40 hours, 24 mins.\",fonts:[\"Inter\"],name:\"40 hours, 24 mins.\",text:GDhCT_b_S,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ri7qla\",\"data-framer-name\":\"Frame 1321314529\",name:\"Frame 1321314529\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-zomr18\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,name:\"Frame\",svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M12 4L2 9.59997L12 15.1999L20.3333 10.5333V16.3999H22V9.59997L12 4ZM5.33252 13.1924V16.8C6.85287 18.7431 9.27343 20 11.9998 20C14.7262 20 17.1467 18.7431 18.6671 16.8L18.6667 13.193L12.0002 16.9263L5.33252 13.1924Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2zm0an\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"16px\",\"--framer-line-height\":\"24px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXI=\",\"--framer-font-family\":'\"Inter\"',\"--framer-font-size\":\"16px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"1 003 students\"})})}),className:\"framer-1om6ck0\",\"data-framer-name\":\"1 003 students\",fonts:[\"Inter\"],name:\"1 003 students\",text:amAHnxdyB,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"students\"})}),className:\"framer-1i4umf3\",\"data-framer-name\":\"1 003 students\",fonts:[\"Inter\"],name:\"1 003 students\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16jg2j2\",\"data-framer-name\":\"Frame 1321314530\",name:\"Frame 1321314530\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1ublsdn\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,name:\"Frame\",svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M4 11.9474H7.55556V20H4V11.9474ZM16.4444 8.36842H20V20H16.4444V8.36842ZM10.2222 3H13.7778V20H10.2222V3Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-iur6y9\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Level:\"})}),className:\"framer-f60ehu\",\"data-framer-name\":\"Level: Medium\",fonts:[\"Inter\"],name:\"Level: Medium\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"16px\",\"--framer-line-height\":\"24px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXI=\",\"--framer-font-family\":'\"Inter\"',\"--framer-font-size\":\"16px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Level: Medium\"})})}),className:\"framer-p7hy1p\",\"data-framer-name\":\"Level: Medium\",fonts:[\"Inter\"],name:\"Level: Medium\",text:nhQzhGP1U,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jy6dlo\",\"data-framer-name\":\"Frame 1321314531\",name:\"Frame 1321314531\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-y02yx8\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,name:\"Frame\",svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M3.81818 12C3.81818 10.2427 5.24273 8.81818 7 8.81818C8.09409 8.81818 8.83599 9.21255 9.45376 9.83033C10.1141 10.4906 10.6228 11.3929 11.2053 12.4415L11.2359 12.4965C11.7823 13.4803 12.4028 14.5975 13.2605 15.4554C14.1769 16.3716 15.3668 17 17 17C19.7615 17 22 14.7615 22 12C22 9.23857 19.7615 7 17 7C15.4904 7 14.1371 7.669 13.2203 8.7267C13.6261 9.32187 13.9613 9.91434 14.24 10.4158C14.7892 9.46107 15.8195 8.81818 17 8.81818C18.7573 8.81818 20.1818 10.2427 20.1818 12C20.1818 13.7573 18.7573 15.1818 17 15.1818C15.9059 15.1818 15.164 14.7875 14.5463 14.1696C13.8859 13.5094 13.3772 12.6071 12.7947 11.5585L12.7641 11.5035C12.2177 10.5197 11.5972 9.40241 10.7395 8.54467C9.8231 7.62836 8.63318 7 7 7C4.23857 7 2 9.23857 2 12C2 14.7615 4.23857 17 7 17C8.5096 17 9.86294 16.331 10.7797 15.2733C10.3739 14.6781 10.0387 14.0856 9.76005 13.5842C9.21085 14.5389 8.18051 15.1818 7 15.1818C5.24273 15.1818 3.81818 13.7573 3.81818 12Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Pay once, use forever\"})}),className:\"framer-x0fyjd\",\"data-framer-name\":\"Pay once, use forever\",fonts:[\"Inter\"],name:\"Pay once, use forever\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-v9h4pi\",\"data-framer-name\":\"Frame 1321314526\",name:\"Frame 1321314526\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GcMW1GXWQ:{width:\"calc(100vw - 32px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-9pq1hf-container\",children:/*#__PURE__*/_jsx(FluidCTA,{DEwkkAJz5:LxX9T1enw,height:\"100%\",id:\"P50mX2z0q\",layoutId:\"P50mX2z0q\",style:{width:\"100%\"},width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"11px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXI=\",\"--framer-font-family\":'\"Inter\"',\"--framer-font-size\":\"11px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.6000000238418579)\"},children:\"The payment process is secured by TLS data encryption\"})})}),className:\"framer-ocdd5n hidden-otxqv1\",\"data-framer-name\":\"The payment process is secured by TLS data encryption\",fonts:[\"Inter\"],name:\"The payment process is secured by TLS data encryption\",verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-13x7se8 hidden-otxqv1\",\"data-framer-name\":\"Frame 1321314550\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:19,intrinsicWidth:197,name:\"Frame 1321314550\",svg:'<svg width=\"197\" height=\"19\" viewBox=\"0 0 197 19\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect x=\"0.5\" width=\"26\" height=\"19\" rx=\"4\" fill=\"white\" fill-opacity=\"0.05\"/>\\n<rect x=\"0.75\" y=\"0.25\" width=\"25.5\" height=\"18.5\" rx=\"3.75\" stroke=\"white\" stroke-opacity=\"0.1\" stroke-width=\"0.5\"/>\\n<path d=\"M12.1159 10.9694C12.064 10.998 12.0055 11.0146 11.9433 11.0146C11.7993 11.0146 11.6742 10.9282 11.6085 10.8003L11.5833 10.7402L10.5352 8.23096C10.5239 8.20369 10.5169 8.17281 10.5169 8.14277C10.5169 8.02712 10.6028 7.93344 10.7088 7.93344C10.7518 7.93344 10.7916 7.94899 10.8237 7.97494L12.0605 8.93573C12.1508 9.00016 12.2588 9.03798 12.3749 9.03798C12.4442 9.03798 12.5102 9.02392 12.5718 8.99946L18.3882 6.17517C17.3456 4.83464 15.6286 3.9585 13.6855 3.9585C10.5059 3.9585 7.92847 6.30189 7.92847 9.1928C7.92847 10.7698 8.70391 12.1896 9.91769 13.1492C10.015 13.225 10.0788 13.3496 10.0788 13.4903C10.0788 13.5368 10.0697 13.5792 10.0585 13.6236C9.96157 14.0181 9.80642 14.6499 9.79921 14.6795C9.78709 14.729 9.76821 14.7807 9.76821 14.8325C9.76821 14.9481 9.85408 15.0418 9.96024 15.0418C10.0018 15.0418 10.0359 15.0249 10.071 15.0029L11.3314 14.2089C11.4262 14.1493 11.5266 14.1123 11.6372 14.1123C11.696 14.1123 11.7528 14.1222 11.8063 14.1401C12.3943 14.3246 13.0287 14.4271 13.6855 14.4271C16.865 14.4271 19.4428 12.0836 19.4428 9.1928C19.4428 8.31718 19.2049 7.49255 18.7869 6.76715L12.1581 10.9429L12.1159 10.9694Z\" fill=\"#1AAD19\"/>\\n<rect x=\"34.5\" width=\"26\" height=\"19\" rx=\"4\" fill=\"white\" fill-opacity=\"0.05\"/>\\n<rect x=\"34.75\" y=\"0.25\" width=\"25.5\" height=\"18.5\" rx=\"3.75\" stroke=\"white\" stroke-opacity=\"0.1\" stroke-width=\"0.5\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M45.6755 14.6046L45.8443 13.4574L45.4683 13.448H43.6729L44.9206 4.98223C44.9245 4.95659 44.9371 4.93279 44.9555 4.91586C44.9739 4.89894 44.9974 4.88965 45.022 4.88965H48.0494C49.0546 4.88965 49.7482 5.1134 50.1103 5.55511C50.2801 5.76232 50.3882 5.97891 50.4405 6.21718C50.4954 6.46724 50.4963 6.76597 50.4428 7.13038L50.4389 7.15688V7.39041L50.6087 7.49334C50.7516 7.5745 50.8653 7.66737 50.9524 7.77368C51.0976 7.95091 51.1915 8.17611 51.2312 8.44301C51.2723 8.71755 51.2587 9.04433 51.1915 9.41425C51.1141 9.8397 50.9888 10.2103 50.8197 10.5135C50.6642 10.7929 50.466 11.0246 50.2307 11.2042C50.006 11.3748 49.7392 11.5044 49.4374 11.5873C49.1449 11.6687 48.8115 11.7098 48.4458 11.7098H48.2102C48.0418 11.7098 47.8781 11.7747 47.7497 11.8911C47.6208 12.0099 47.5357 12.1722 47.5095 12.3498L47.4917 12.4531L47.1935 14.4752L47.18 14.5494C47.1764 14.5729 47.1702 14.5846 47.1612 14.5925C47.1532 14.5998 47.1416 14.6046 47.1303 14.6046H45.6755Z\" fill=\"#28356A\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M50.7697 7.18408C50.7608 7.2459 50.7504 7.30907 50.7388 7.37398C50.3396 9.5674 48.9736 10.3251 47.2291 10.3251H46.3409C46.1275 10.3251 45.9477 10.4909 45.9145 10.7161L45.3309 14.677C45.3093 14.8249 45.4158 14.9581 45.5552 14.9581H47.1306C47.3172 14.9581 47.4756 14.8131 47.505 14.6162L47.5205 14.5306L47.8171 12.5164L47.8362 12.406C47.8652 12.2084 48.0241 12.0633 48.2106 12.0633H48.4462C49.9725 12.0633 51.1674 11.4003 51.5167 9.4814C51.6625 8.67984 51.587 8.01051 51.2009 7.53979C51.0841 7.39787 50.9392 7.28005 50.7697 7.18408Z\" fill=\"#298FC2\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M50.3517 7.00587C50.2907 6.98681 50.2277 6.96959 50.1632 6.95402C50.0983 6.93883 50.0318 6.92538 49.9634 6.91358C49.7239 6.87218 49.4614 6.85254 49.1804 6.85254H46.8075C46.749 6.85254 46.6935 6.86666 46.6438 6.8922C46.5343 6.9485 46.4531 7.05936 46.4334 7.19509L45.9285 10.6163L45.9141 10.716C45.9472 10.4908 46.1271 10.3251 46.3404 10.3251H47.2287C48.9732 10.3251 50.3391 9.56699 50.7384 7.37395C50.7503 7.30904 50.7603 7.24587 50.7693 7.18406C50.6683 7.12669 50.5589 7.07765 50.4411 7.03586C50.412 7.02551 50.382 7.01554 50.3517 7.00587Z\" fill=\"#22284F\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M46.4336 7.19506C46.4533 7.05934 46.5346 6.94847 46.644 6.89256C46.694 6.86692 46.7492 6.8528 46.8077 6.8528H49.1806C49.4617 6.8528 49.7241 6.87254 49.9636 6.91394C50.032 6.92564 50.0985 6.93919 50.1634 6.95438C50.228 6.96985 50.2909 6.98717 50.3519 7.00613C50.3822 7.0158 50.4122 7.02586 50.4416 7.03583C50.5594 7.07762 50.6689 7.12705 50.7698 7.18403C50.8886 6.37347 50.7689 5.82158 50.3593 5.32183C49.9077 4.77159 49.0928 4.53613 48.05 4.53613H45.0224C44.8094 4.53613 44.6277 4.70184 44.5948 4.92744L43.3338 13.4803C43.3089 13.6495 43.4309 13.8021 43.5904 13.8021H45.4594L46.4336 7.19506Z\" fill=\"#28356A\"/>\\n<rect x=\"68.5\" width=\"26\" height=\"19\" rx=\"4\" fill=\"white\" fill-opacity=\"0.05\"/>\\n<rect x=\"68.75\" y=\"0.25\" width=\"25.5\" height=\"18.5\" rx=\"3.75\" stroke=\"white\" stroke-opacity=\"0.1\" stroke-width=\"0.5\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M81.6368 13.3232C80.7313 14.1133 79.5568 14.5903 78.2734 14.5903C75.4096 14.5903 73.0881 12.2155 73.0881 9.2861C73.0881 6.35669 75.4096 3.98193 78.2734 3.98193C79.5568 3.98193 80.7313 4.45891 81.6368 5.24903C82.5422 4.45891 83.7167 3.98193 85.0002 3.98193C87.8639 3.98193 90.1854 6.35669 90.1854 9.2861C90.1854 12.2155 87.8639 14.5903 85.0002 14.5903C83.7167 14.5903 82.5422 14.1133 81.6368 13.3232Z\" fill=\"#ED0006\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M81.6367 13.3232C82.7516 12.3503 83.4586 10.9026 83.4586 9.2861C83.4586 7.66955 82.7516 6.22191 81.6367 5.24903C82.5422 4.45891 83.7167 3.98193 85.0001 3.98193C87.8638 3.98193 90.1853 6.35669 90.1853 9.2861C90.1853 12.2155 87.8638 14.5903 85.0001 14.5903C83.7167 14.5903 82.5422 14.1133 81.6367 13.3232Z\" fill=\"#F9A000\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M81.6368 13.3231C82.7516 12.3502 83.4586 10.9026 83.4586 9.28608C83.4586 7.66954 82.7516 6.22191 81.6368 5.24902C80.5219 6.22191 79.8149 7.66954 79.8149 9.28608C79.8149 10.9026 80.5219 12.3502 81.6368 13.3231Z\" fill=\"#FF5E00\"/>\\n<rect x=\"102.5\" width=\"26\" height=\"19\" rx=\"4\" fill=\"white\" fill-opacity=\"0.05\"/>\\n<rect x=\"102.75\" y=\"0.25\" width=\"25.5\" height=\"18.5\" rx=\"3.75\" stroke=\"white\" stroke-opacity=\"0.1\" stroke-width=\"0.5\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M110.721 12.5545H109.146L107.965 7.75239C107.909 7.5315 107.79 7.33621 107.614 7.24417C107.177 7.01286 106.696 6.82878 106.171 6.73594V6.55106H108.708C109.058 6.55106 109.321 6.82878 109.365 7.15133L109.977 10.6153L111.552 6.55106H113.083L110.721 12.5545ZM113.959 12.5545H112.471L113.696 6.55106H115.183L113.959 12.5545ZM117.108 8.2142C117.152 7.89086 117.414 7.70598 117.721 7.70598C118.202 7.65956 118.727 7.7524 119.165 7.9829L119.427 6.69032C118.99 6.50544 118.508 6.4126 118.071 6.4126C116.627 6.4126 115.577 7.24417 115.577 8.39829C115.577 9.27628 116.321 9.73729 116.846 10.015C117.414 10.2919 117.633 10.4768 117.59 10.7537C117.59 11.1691 117.152 11.354 116.715 11.354C116.19 11.354 115.664 11.2155 115.183 10.9842L114.921 12.2776C115.446 12.5081 116.014 12.601 116.54 12.601C118.159 12.6466 119.165 11.8158 119.165 10.5689C119.165 8.99856 117.108 8.90651 117.108 8.2142ZM124.371 12.5545L123.19 6.55106H121.921C121.658 6.55106 121.396 6.73594 121.308 7.01286L119.121 12.5545H120.652L120.958 11.6774H122.839L123.014 12.5545H124.371ZM122.14 8.16779L122.577 10.4304H121.352L122.14 8.16779Z\" fill=\"white\"/>\\n<rect x=\"136.5\" width=\"26\" height=\"19\" rx=\"4\" fill=\"white\" fill-opacity=\"0.05\"/>\\n<rect x=\"136.75\" y=\"0.25\" width=\"25.5\" height=\"18.5\" rx=\"3.75\" stroke=\"white\" stroke-opacity=\"0.1\" stroke-width=\"0.5\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M141.161 6.729L138.729 12.466H141.641L142.002 11.5513H142.827L143.188 12.466H146.393V11.7679L146.679 12.466H148.337L148.623 11.7531V12.466H155.289L156.1 11.575L156.859 12.466L160.283 12.4734L157.843 9.61352L160.283 6.729H156.912L156.123 7.6035L155.388 6.729H148.136L147.513 8.20977L146.875 6.729H143.969V7.40339L143.646 6.729H141.161ZM141.725 7.54367H143.144L144.758 11.434V7.54367H146.313L147.559 10.333L148.708 7.54367H150.255V11.6603H149.313L149.306 8.43454L147.933 11.6603H147.091L145.711 8.43454V11.6603H143.774L143.407 10.7374H141.423L141.056 11.6595H140.019L141.725 7.54367ZM154.945 7.54367H151.116V11.6579H154.885L156.1 10.2944L157.271 11.6579H158.495L156.716 9.61272L158.495 7.54367H157.324L156.115 8.89154L154.945 7.54367ZM142.415 8.24019L141.762 9.88427H143.068L142.415 8.24019ZM152.062 9.14752V8.39602V8.3953H154.45L155.493 9.59714L154.404 10.8055H152.062V9.98513H154.15V9.14752H152.062Z\" fill=\"#1F72CD\"/>\\n<rect x=\"170.5\" width=\"26\" height=\"19\" rx=\"4\" fill=\"white\" fill-opacity=\"0.05\"/>\\n<rect x=\"170.75\" y=\"0.25\" width=\"25.5\" height=\"18.5\" rx=\"3.75\" stroke=\"white\" stroke-opacity=\"0.1\" stroke-width=\"0.5\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M182.78 12.2929V9.96968H183.938C184.413 9.96968 184.813 9.80504 185.14 9.48033L185.218 9.39801C185.815 8.72572 185.775 7.67842 185.14 7.05645C184.822 6.72717 184.386 6.54881 183.938 6.55795H182.079V12.2929H182.78ZM182.78 9.26533V7.2622H183.956C184.208 7.2622 184.448 7.36282 184.626 7.54575C185.005 7.92991 185.014 8.57018 184.648 8.96807C184.469 9.16472 184.217 9.27448 183.956 9.26533H182.78ZM188.488 8.6754C188.188 8.38728 187.778 8.24093 187.26 8.24093C186.594 8.24093 186.093 8.49704 185.762 9.00468L186.381 9.41171C186.607 9.06413 186.916 8.89035 187.308 8.89035C187.556 8.89035 187.796 8.98639 187.983 9.16017C188.166 9.32481 188.27 9.56263 188.27 9.81416V9.98338C188 9.82788 187.661 9.74556 187.243 9.74556C186.755 9.74556 186.363 9.86447 186.072 10.1069C185.78 10.3492 185.632 10.6694 185.632 11.0764C185.623 11.4469 185.775 11.799 186.045 12.0368C186.32 12.2929 186.668 12.421 187.077 12.421C187.561 12.421 187.944 12.1969 188.236 11.7487H188.266V12.2929H188.937V9.87362C188.937 9.36597 188.789 8.96352 188.488 8.6754ZM186.585 11.5703C186.442 11.4606 186.355 11.2822 186.355 11.0901C186.355 10.8752 186.45 10.6968 186.638 10.5551C186.829 10.4133 187.069 10.3401 187.352 10.3401C187.744 10.3355 188.049 10.427 188.266 10.6099C188.266 10.9209 188.149 11.1908 187.918 11.4194C187.709 11.6389 187.426 11.7624 187.13 11.7624C186.934 11.767 186.742 11.6984 186.585 11.5703ZM190.443 14.0171L192.786 8.36898H192.024L190.94 11.1862H190.927L189.816 8.36898H189.054L190.591 12.0414L189.72 14.0171H190.443Z\" fill=\"#3C4043\"/>\\n<path d=\"M180.359 9.46654C180.359 9.24244 180.342 9.01835 180.307 8.79883H177.351V10.0656H179.044C178.975 10.4727 178.748 10.8385 178.417 11.0672V11.8904H179.428C180.02 11.3187 180.359 10.4727 180.359 9.46654Z\" fill=\"#4285F4\"/>\\n<path d=\"M177.351 12.6866C178.195 12.6866 178.909 12.3939 179.428 11.8908L178.417 11.0676C178.134 11.2689 177.773 11.3832 177.351 11.3832C176.532 11.3832 175.84 10.8024 175.591 10.0249H174.551V10.8755C175.082 11.9869 176.166 12.6866 177.351 12.6866Z\" fill=\"#34A853\"/>\\n<path d=\"M175.592 10.0248C175.461 9.61779 175.461 9.17418 175.592 8.76257V7.9165H174.551C174.102 8.8449 174.102 9.9425 174.551 10.8709L175.592 10.0248Z\" fill=\"#FBBC04\"/>\\n<path d=\"M177.351 7.40419C177.799 7.39505 178.23 7.57341 178.552 7.89811L179.449 6.956C178.879 6.39805 178.13 6.09164 177.351 6.10078C176.166 6.10078 175.082 6.80508 174.551 7.91641L175.591 8.76705C175.84 7.98501 176.532 7.40419 177.351 7.40419Z\" fill=\"#EA4335\"/>\\n</svg>\\n',withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GcMW1GXWQ:{\"data-framer-appear-id\":\"snqj8a\",animate:optimizeAppear(\"animate\",\"snqj8a\",animation1,\"otxqv1\"),initial:optimizeAppear(\"initial\",\"snqj8a\",animation2,\"otxqv1\")},gEqn1xdqU:{\"data-framer-appear-id\":\"blcp0p\",animate:optimizeAppear(\"animate\",\"blcp0p\",animation1,\"1f4lftj\"),initial:optimizeAppear(\"initial\",\"blcp0p\",animation2,\"1f4lftj\")},voOEodHGo:{\"data-framer-appear-id\":\"7quyyk\",animate:optimizeAppear(\"animate\",\"7quyyk\",animation1,\"1r3iknj\"),initial:optimizeAppear(\"initial\",\"7quyyk\",animation2,\"1r3iknj\")}},children:/*#__PURE__*/_jsx(Container,{animate:optimizeAppear(\"animate\",\"4jlwjr\",animation1,\"1kahds2\"),className:\"framer-4jlwjr-container\",\"data-framer-appear-id\":\"4jlwjr\",exit:animation,initial:optimizeAppear(\"initial\",\"4jlwjr\",animation2,\"1kahds2\"),layoutScroll:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GcMW1GXWQ:{__framer__variantAppearEffectEnabled:undefined,variant:\"cKO0ZxkJi\"}},children:/*#__PURE__*/_jsx(HeaderWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref2,target:\"XGBhKT5G5\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"fRbeB7ooE\",layoutId:\"fRbeB7ooE\",style:{height:\"100%\",width:\"100%\"},variant:\"qP4lx2i31\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e34d00\",\"data-framer-name\":\"content\",name:\"content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-65yvd0\",\"data-framer-name\":\"top\",name:\"top\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mfuonv\",\"data-framer-name\":\"title+subtitle\",name:\"title+subtitle\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GcMW1GXWQ:{\"data-framer-appear-id\":\"12nbca3\",animate:optimizeAppear(\"animate\",\"12nbca3\",animation4,\"otxqv1\"),children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter-SemiBold\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Midjourney for Creatives\"})}),initial:optimizeAppear(\"initial\",\"12nbca3\",animation5,\"otxqv1\")},gEqn1xdqU:{\"data-framer-appear-id\":\"1af7t9f\",animate:optimizeAppear(\"animate\",\"1af7t9f\",animation4,\"1f4lftj\"),initial:optimizeAppear(\"initial\",\"1af7t9f\",animation5,\"1f4lftj\")},voOEodHGo:{\"data-framer-appear-id\":\"1nvys6u\",animate:optimizeAppear(\"animate\",\"1nvys6u\",animation4,\"1r3iknj\"),children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter-SemiBold\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"80px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Midjourney for Creatives\"})}),initial:optimizeAppear(\"initial\",\"1nvys6u\",animation5,\"1r3iknj\")}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,animate:optimizeAppear(\"animate\",\"12nd341\",animation4,\"1kahds2\"),children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter-SemiBold\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"100px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Midjourney for Creatives\"})}),className:\"framer-12nd341\",\"data-framer-appear-id\":\"12nd341\",\"data-framer-name\":\"Course name\",exit:animation3,fonts:[\"Inter-SemiBold\"],initial:optimizeAppear(\"initial\",\"12nd341\",animation5,\"1kahds2\"),name:\"Course name\",style:{transformPerspective:1200},text:WmlJS2NCw,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GcMW1GXWQ:{\"data-framer-appear-id\":\"g6kcu0\",animate:optimizeAppear(\"animate\",\"g6kcu0\",animation7,\"otxqv1\"),initial:optimizeAppear(\"initial\",\"g6kcu0\",animation5,\"otxqv1\")},gEqn1xdqU:{\"data-framer-appear-id\":\"1b86rzz\",animate:optimizeAppear(\"animate\",\"1b86rzz\",animation7,\"1f4lftj\"),initial:optimizeAppear(\"initial\",\"1b86rzz\",animation5,\"1f4lftj\")},voOEodHGo:{\"data-framer-appear-id\":\"16es82i\",animate:optimizeAppear(\"animate\",\"16es82i\",animation7,\"1r3iknj\"),initial:optimizeAppear(\"initial\",\"16es82i\",animation5,\"1r3iknj\")}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,animate:optimizeAppear(\"animate\",\"171ldqz\",animation7,\"1kahds2\"),children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(207, 207, 207)\"},children:\"Learn how to control Midjourney and integrate AI into your creative workflow \u2013 from beginner to advanced prompting.\"})}),className:\"framer-171ldqz\",\"data-framer-appear-id\":\"171ldqz\",\"data-framer-name\":\"Short description\",exit:animation6,fonts:[\"Inter\"],initial:optimizeAppear(\"initial\",\"171ldqz\",animation5,\"1kahds2\"),name:\"Short description\",style:{transformPerspective:1200},text:LHOse_l3U,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GcMW1GXWQ:{\"data-framer-appear-id\":\"1wvduej\",animate:optimizeAppear(\"animate\",\"1wvduej\",animation9,\"otxqv1\"),initial:optimizeAppear(\"initial\",\"1wvduej\",animation5,\"otxqv1\")},gEqn1xdqU:{\"data-framer-appear-id\":\"aazn41\",animate:optimizeAppear(\"animate\",\"aazn41\",animation9,\"1f4lftj\"),initial:optimizeAppear(\"initial\",\"aazn41\",animation5,\"1f4lftj\")},voOEodHGo:{\"data-framer-appear-id\":\"s5rxnc\",animate:optimizeAppear(\"animate\",\"s5rxnc\",animation9,\"1r3iknj\"),initial:optimizeAppear(\"initial\",\"s5rxnc\",animation5,\"1r3iknj\")}},children:/*#__PURE__*/_jsx(Container,{animate:optimizeAppear(\"animate\",\"11deuc8\",animation9,\"1kahds2\"),className:\"framer-11deuc8-container\",\"data-framer-appear-id\":\"11deuc8\",exit:animation8,initial:optimizeAppear(\"initial\",\"11deuc8\",animation5,\"1kahds2\"),style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(YouTube,{borderRadius:24,bottomLeftRadius:24,bottomRightRadius:24,height:\"100%\",id:\"iI5Z3d1sx\",isMixedBorderRadius:false,isRed:true,layoutId:\"iI5Z3d1sx\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:24,topRightRadius:24,url:Ovzk4qM_k,width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GcMW1GXWQ:{\"data-framer-appear-id\":\"1n99srd\",animate:optimizeAppear(\"animate\",\"1n99srd\",animation11,\"otxqv1\"),initial:optimizeAppear(\"initial\",\"1n99srd\",animation5,\"otxqv1\")},gEqn1xdqU:{\"data-framer-appear-id\":\"ch1ycj\",animate:optimizeAppear(\"animate\",\"ch1ycj\",animation11,\"1f4lftj\"),initial:optimizeAppear(\"initial\",\"ch1ycj\",animation5,\"1f4lftj\")},voOEodHGo:{\"data-framer-appear-id\":\"1048wvl\",animate:optimizeAppear(\"animate\",\"1048wvl\",animation11,\"1r3iknj\"),initial:optimizeAppear(\"initial\",\"1048wvl\",animation5,\"1r3iknj\")}},children:/*#__PURE__*/_jsxs(motion.div,{animate:optimizeAppear(\"animate\",\"k49oql\",animation11,\"1kahds2\"),className:\"framer-k49oql\",\"data-framer-appear-id\":\"k49oql\",exit:animation10,initial:optimizeAppear(\"initial\",\"k49oql\",animation5,\"1kahds2\"),style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-arw43n\",\"data-framer-name\":\"Info\",name:\"Info\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ih520y\",\"data-framer-name\":\"Frame 1321314535\",id:id,name:\"Frame 1321314535\",ref:ref2,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GcMW1GXWQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"About the course\"})})},voOEodHGo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"About the course\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"48px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"About the course\"})})}),className:\"framer-xwhxgv\",\"data-framer-name\":\"About the course\",fonts:[\"Inter-Bold\"],name:\"About the course\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:KeRc0ef0I,className:\"framer-7u7ix4\",\"data-framer-name\":\"Master the most powerful vector software on the market and learn different techniques to create unique illustrations. Illustration trends change so fast that staying up to date can be a real challenge. Join illustrator Daniel White, who has worked for clients like Volkswagen and Cisco, and discover tools and styles, like gradients and flat illustrations, that allow you explore different creative avenues and illustrate on a whole new level. In this course, learn advanced illustration techniques in Adobe Illustrator. Experiment with vector tools, explore different illustration styles, and turn your ideas into powerful images.\",fonts:[\"Inter\"],name:\"Master the most powerful vector software on the market and learn different techniques to create unique illustrations. Illustration trends change so fast that staying up to date can be a real challenge. Join illustrator Daniel White, who has worked for clients like Volkswagen and Cisco, and discover tools and styles, like gradients and flat illustrations, that allow you explore different creative avenues and illustrate on a whole new level. In this course, learn advanced illustration techniques in Adobe Illustrator. Experiment with vector tools, explore different illustration styles, and turn your ideas into powerful images.\",stylesPresetsClassNames:{a:\"framer-styles-preset-aexbeb\",h1:\"framer-styles-preset-akrayp\",h2:\"framer-styles-preset-1m9bzi2\",h3:\"framer-styles-preset-ci2ngw\",h5:\"framer-styles-preset-ush5gv\",h6:\"framer-styles-preset-fx3wuf\",p:\"framer-styles-preset-187qr2p\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3tf3nb\",\"data-framer-name\":\"Frame 1321314536\",name:\"Frame 1321314536\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GcMW1GXWQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Technical Requirements\"})})},voOEodHGo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Technical Requirements\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"48px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Technical Requirements\"})})}),className:\"framer-au9geq\",\"data-framer-name\":\"About the course\",fonts:[\"Inter-Bold\"],name:\"About the course\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:D0CPNpVld,className:\"framer-1gtjepx\",\"data-framer-name\":\"Master the most powerful vector software on the market and learn different techniques to create unique illustrations. Illustration trends change so fast that staying up to date can be a real challenge. Join illustrator Daniel White, who has worked for clients like Volkswagen and Cisco, and discover tools and styles, like gradients and flat illustrations, that allow you explore different creative avenues and illustrate on a whole new level. In this course, learn advanced illustration techniques in Adobe Illustrator. Experiment with vector tools, explore different illustration styles, and turn your ideas into powerful images.\",fonts:[\"Inter\"],name:\"Master the most powerful vector software on the market and learn different techniques to create unique illustrations. Illustration trends change so fast that staying up to date can be a real challenge. Join illustrator Daniel White, who has worked for clients like Volkswagen and Cisco, and discover tools and styles, like gradients and flat illustrations, that allow you explore different creative avenues and illustrate on a whole new level. In this course, learn advanced illustration techniques in Adobe Illustrator. Experiment with vector tools, explore different illustration styles, and turn your ideas into powerful images.\",stylesPresetsClassNames:{a:\"framer-styles-preset-aexbeb\",h1:\"framer-styles-preset-akrayp\",h2:\"framer-styles-preset-1m9bzi2\",h3:\"framer-styles-preset-ci2ngw\",h5:\"framer-styles-preset-ush5gv\",p:\"framer-styles-preset-187qr2p\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-106fck6\",\"data-framer-name\":\"Frame 1321314539\",name:\"Frame 1321314539\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GcMW1GXWQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Course mentor\"})})},voOEodHGo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Course mentor\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"48px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Course mentor\"})})}),className:\"framer-128xwq9\",\"data-framer-name\":\"Course mentor\",fonts:[\"Inter-Bold\"],name:\"Course mentor\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13pev9k\",\"data-framer-name\":\"Frame 1321314538\",name:\"Frame 1321314538\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GcMW1GXWQ:{background:{alt:\"\",fit:\"fill\",sizes:\"250px\",...toResponsiveImage(iEIMgbaOU)}},gEqn1xdqU:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"350px\",...toResponsiveImage(iEIMgbaOU)}},voOEodHGo:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"350px\",...toResponsiveImage(iEIMgbaOU)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"455px\",...toResponsiveImage(iEIMgbaOU)},className:\"framer-fvgb05\",\"data-framer-name\":\"image 494\",name:\"image 494\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cpwg2k\",\"data-framer-name\":\"Frame 1321314552\",name:\"Frame 1321314552\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GcMW1GXWQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter-SemiBold\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Daniel White\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter-SemiBold\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Daniel White\"})}),className:\"framer-rdqng2\",\"data-framer-name\":\"Daniel White\",fonts:[\"Inter-SemiBold\"],name:\"Daniel White\",text:ErtS0x7aq,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:CcgitivOH,className:\"framer-129irqj\",\"data-framer-name\":\"Daniel White is a professional\\xa0designer with over 10 years experience,\\xa0who loves to share his knowledge and expertise, helping\\xa0aspiring creatives to develop their skills. Since 2010, when Daniel\\xa0founded\\xa0his own\\xa0design studio, he has worked with a variety of clients, delivering projects for branding, print and the web.\",fonts:[\"Inter\"],name:\"Daniel White is a professional\\xa0designer with over 10 years experience,\\xa0who loves to share his knowledge and expertise, helping\\xa0aspiring creatives to develop their skills. Since 2010, when Daniel\\xa0founded\\xa0his own\\xa0design studio, he has worked with a variety of clients, delivering projects for branding, print and the web.\",stylesPresetsClassNames:{a:\"framer-styles-preset-aexbeb\",h1:\"framer-styles-preset-akrayp\",h2:\"framer-styles-preset-1m9bzi2\",h3:\"framer-styles-preset-ci2ngw\",h5:\"framer-styles-preset-ush5gv\",h6:\"framer-styles-preset-fx3wuf\",p:\"framer-styles-preset-187qr2p\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-83hqqg\",\"data-framer-name\":\"Frame 1321314546\",name:\"Frame 1321314546\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GcMW1GXWQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Advantages\"})})},voOEodHGo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Advantages\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"48px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Advantages\"})})}),className:\"framer-kp4j6l\",\"data-framer-name\":\"Advantages\",fonts:[\"Inter-Bold\"],name:\"Advantages\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w3vmme\",\"data-framer-name\":\"Frame 1321314545\",name:\"Frame 1321314545\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1j2dnmu\",\"data-framer-name\":\"Frame 1321314544\",name:\"Frame 1321314544\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GcMW1GXWQ:{svgContentId:9954426147},gEqn1xdqU:{svgContentId:9954426147},voOEodHGo:{svgContentId:9954426147}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1hvgu5y\",\"data-framer-name\":\"Frame\",layout:\"position\",name:\"Frame\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 3 12 C 3 10.067 4.567 8.5 6.5 8.5 C 7.704 8.5 8.52 8.934 9.199 9.613 C 9.925 10.34 10.485 11.332 11.126 12.486 L 11.159 12.546 C 11.761 13.628 12.443 14.857 13.387 15.801 C 14.395 16.809 15.704 17.5 17.5 17.5 C 20.538 17.5 23 15.038 23 12 C 23 8.962 20.538 6.5 17.5 6.5 C 15.839 6.5 14.351 7.236 13.342 8.399 C 13.789 9.054 14.157 9.706 14.464 10.257 C 15.068 9.207 16.201 8.5 17.5 8.5 C 19.433 8.5 21 10.067 21 12 C 21 13.933 19.433 15.5 17.5 15.5 C 16.297 15.5 15.48 15.066 14.801 14.387 C 14.075 13.66 13.515 12.668 12.874 11.514 L 12.841 11.454 C 12.239 10.372 11.557 9.143 10.613 8.199 C 9.605 7.191 8.296 6.5 6.5 6.5 C 3.462 6.5 1 8.962 1 12 C 1 15.038 3.462 17.5 6.5 17.5 C 8.161 17.5 9.649 16.764 10.658 15.601 C 10.211 14.946 9.843 14.294 9.536 13.743 C 8.932 14.793 7.799 15.5 6.5 15.5 C 4.567 15.5 3 13.933 3 12 Z\" fill=\"rgb(255, 138, 0)\"></path></svg>',svgContentId:1364491555,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"150%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter-SemiBold\", \"Inter\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Lifetime access\"})})}),className:\"framer-srtcdl\",\"data-framer-name\":\"Lifetime access\",fonts:[\"Inter-SemiBold\"],name:\"Lifetime access\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"150%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXI=\",\"--framer-font-family\":'\"Inter\"',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.6000000238418579)\"},children:\"Elevate your career with our course's lifetime access. Stay updated, revisit key concepts, and enjoy a perpetual competitive edge in your field.\"})})}),className:\"framer-18fkhio\",\"data-framer-name\":\"Elevate your career with our course's lifetime access. Stay updated, revisit key concepts, and enjoy a perpetual competitive edge in your field.\",fonts:[\"Inter\"],name:\"Elevate your career with our course's lifetime access. Stay updated, revisit key concepts, and enjoy a perpetual competitive edge in your field.\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v1j4m3\",\"data-framer-name\":\"Frame 1321314541\",name:\"Frame 1321314541\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GcMW1GXWQ:{svgContentId:11545742964},gEqn1xdqU:{svgContentId:11545742964},voOEodHGo:{svgContentId:11545742964}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-kr0p45\",\"data-framer-name\":\"Frame\",layout:\"position\",name:\"Frame\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 11 2.535 C 10.412 2.195 9.729 2 9 2 C 6.791 2 5 3.791 5 6 L 5 7.774 C 4.149 8.116 3.451 8.648 2.941 9.349 C 2.292 10.242 2 11.335 2 12.5 C 2 14.061 2.795 15.436 4 16.242 L 4 17.5 C 4 19.985 6.015 22 8.5 22 C 9.425 22 10.285 21.721 11 21.242 L 11 17.5 C 11 16.167 10.67 15.315 10.14 14.741 C 9.597 14.153 8.716 13.716 7.336 13.486 L 7.664 11.514 C 8.966 11.73 10.106 12.137 11 12.827 Z M 13 2.535 L 13 12.827 C 13.894 12.137 15.034 11.73 16.336 11.514 L 16.664 13.486 C 15.284 13.716 14.403 14.153 13.86 14.741 C 13.33 15.315 13 16.167 13 17.5 L 13 21.242 C 13.715 21.721 14.575 22 15.5 22 C 17.985 22 20 19.985 20 17.5 L 20 16.242 C 21.205 15.436 22 14.061 22 12.5 C 22 11.335 21.708 10.242 21.059 9.349 C 20.549 8.648 19.851 8.116 19 7.774 L 19 6 C 19 3.791 17.209 2 15 2 C 14.271 2 13.588 2.195 13 2.535 Z\" fill=\"rgb(255, 138, 0)\"></path></svg>',svgContentId:2955808372,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"150%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter-SemiBold\", \"Inter\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Practice-based lessons\"})})}),className:\"framer-uscqjd\",\"data-framer-name\":\"Practice-based lessons\",fonts:[\"Inter-SemiBold\"],name:\"Practice-based lessons\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"150%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXI=\",\"--framer-font-family\":'\"Inter\"',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.6000000238418579)\"},children:\"Immerse yourself in hands-on learning through our practice-based lessons, designed to provide practical skills and real-world insights. \"})})}),className:\"framer-kbu79c\",\"data-framer-name\":\"Immerse yourself in hands-on learning through our practice-based lessons, designed to provide practical skills and real-world insights.\",fonts:[\"Inter\"],name:\"Immerse yourself in hands-on learning through our practice-based lessons, designed to provide practical skills and real-world insights.\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jj63yc\",\"data-framer-name\":\"Frame 1321314542\",name:\"Frame 1321314542\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GcMW1GXWQ:{svgContentId:10662959010},gEqn1xdqU:{svgContentId:10662959010},voOEodHGo:{svgContentId:10662959010}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1dg63a\",\"data-framer-name\":\"Frame\",layout:\"position\",name:\"Frame\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 13.946 2.094 C 12.825 1.139 11.176 1.139 10.054 2.094 L 8.706 3.243 C 8.546 3.379 8.347 3.462 8.137 3.479 L 6.372 3.619 C 4.903 3.737 3.737 4.903 3.62 6.371 L 3.479 8.137 C 3.462 8.347 3.38 8.546 3.243 8.706 L 2.095 10.054 C 1.139 11.175 1.139 12.824 2.095 13.945 L 3.243 15.294 C 3.38 15.454 3.462 15.653 3.479 15.863 L 3.62 17.628 C 3.737 19.097 4.903 20.263 6.372 20.38 L 8.137 20.521 C 8.347 20.538 8.546 20.62 8.706 20.757 L 10.054 21.905 C 11.176 22.861 12.825 22.861 13.946 21.905 L 15.294 20.757 C 15.454 20.62 15.653 20.538 15.863 20.521 L 17.629 20.38 C 19.097 20.263 20.263 19.097 20.381 17.628 L 20.521 15.863 C 20.538 15.653 20.621 15.454 20.757 15.294 L 21.906 13.946 C 22.861 12.824 22.861 11.175 21.906 10.054 L 20.757 8.706 C 20.62 8.546 20.538 8.347 20.521 8.137 L 20.381 6.371 C 20.263 4.903 19.097 3.737 17.629 3.619 L 15.863 3.479 C 15.653 3.462 15.454 3.379 15.294 3.243 Z M 14.828 7.757 L 16.243 9.171 L 9.172 16.242 L 7.757 14.828 Z M 10.232 10.232 C 9.646 10.818 8.697 10.818 8.111 10.232 C 7.525 9.646 7.525 8.697 8.111 8.111 C 8.697 7.525 9.646 7.525 10.232 8.111 C 10.818 8.697 10.818 9.646 10.232 10.232 Z M 13.768 15.889 C 13.182 15.303 13.182 14.353 13.768 13.768 C 14.353 13.182 15.303 13.182 15.889 13.768 C 16.475 14.353 16.475 15.303 15.889 15.889 C 15.303 16.475 14.353 16.475 13.768 15.889 Z\" fill=\"rgb(255, 138, 0)\"></path></svg>',svgContentId:2073024418,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"150%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter-SemiBold\", \"Inter\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"20% discount for other courses\"})})}),className:\"framer-12me903\",\"data-framer-name\":\"20% discount for other courses\",fonts:[\"Inter-SemiBold\"],name:\"20% discount for other courses\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"150%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXI=\",\"--framer-font-family\":'\"Inter\"',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.6000000238418579)\"},children:\"Get a 20% discount on additional courses! Expand your skills and knowledge affordably. Enroll now for more learning opportunities.\"})})}),className:\"framer-l27ja3\",\"data-framer-name\":\"Get a 20% discount on additional courses! Expand your skills and knowledge affordably. Enroll now for more learning opportunities.\",fonts:[\"Inter\"],name:\"Get a 20% discount on additional courses! Expand your skills and knowledge affordably. Enroll now for more learning opportunities.\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7ehmhh\",\"data-framer-name\":\"Frame 1321314543\",name:\"Frame 1321314543\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GcMW1GXWQ:{svgContentId:10589701778},gEqn1xdqU:{svgContentId:10589701778},voOEodHGo:{svgContentId:10589701778}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-9j9o0n\",\"data-framer-name\":\"Frame\",layout:\"position\",name:\"Frame\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 12 22 C 6.477 22 2 17.523 2 12 C 2 6.477 6.477 2 12 2 C 17.523 2 22 6.477 22 12 C 22 17.523 17.523 22 12 22 Z M 16.82 17.076 C 18.163 15.801 19 13.998 19 12 C 19 8.134 15.866 5 12 5 C 10.939 5 9.933 5.236 9.032 5.658 L 10.007 7.413 C 10.618 7.147 11.292 7 12 7 C 14.761 7 17 9.239 17 12 L 14 12 Z M 14.968 18.342 L 13.993 16.587 C 13.382 16.853 12.708 17 12 17 C 9.239 17 7 14.761 7 12 L 10 12 L 7.18 6.924 C 5.837 8.199 5 10.002 5 12 C 5 15.866 8.134 19 12 19 C 13.061 19 14.067 18.764 14.968 18.342 Z\" fill=\"rgb(255, 138, 0)\"></path></svg>',svgContentId:1999767186,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"150%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter-SemiBold\", \"Inter\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Quarterly updates\"})})}),className:\"framer-drobys\",\"data-framer-name\":\"Quarterly updates\",fonts:[\"Inter-SemiBold\"],name:\"Quarterly updates\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"150%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXI=\",\"--framer-font-family\":'\"Inter\"',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.6000000238418579)\"},children:\"Our mentors review the course syllabus once in a quarter and once you have a lifetime access you\u2019ll also be able to see those updates\"})})}),className:\"framer-103n0nf\",\"data-framer-name\":\"Our mentors review the course syllabus once in a quarter and once you have a lifetime access you\u2019ll also be able to see those updates\",fonts:[\"Inter\"],name:\"Our mentors review the course syllabus once in a quarter and once you have a lifetime access you\u2019ll also be able to see those updates\",verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d820ev\",\"data-framer-name\":\"Frame 1321314549\",name:\"Frame 1321314549\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GcMW1GXWQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Course syllabus\"})})},voOEodHGo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Course syllabus\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"48px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Course syllabus\"})})}),className:\"framer-etmdlv\",\"data-framer-name\":\"Course syllabus\",fonts:[\"Inter-Bold\"],name:\"Course syllabus\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-79wrp\",\"data-framer-name\":\"Frame 1321314548\",name:\"Frame 1321314548\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GcMW1GXWQ:{width:\"max(100vw - 32px, 1px)\"},gEqn1xdqU:{width:\"max(100vw - 440px, 1px)\"},voOEodHGo:{width:\"max(100vw - 440px, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"911px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-p9vxjf-container\",children:/*#__PURE__*/_jsx(SyllabusItem,{gWW_sT9VE:\"Lesson 1\",height:\"100%\",id:\"M0KpPWUnO\",layoutId:\"M0KpPWUnO\",NbZpizrZz:true,NGOXD1IqE:\"1\",style:{width:\"100%\"},Ued2d5Wd2:\"Course intro\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GcMW1GXWQ:{width:\"max(100vw - 32px, 1px)\"},gEqn1xdqU:{width:\"max(100vw - 440px, 1px)\"},voOEodHGo:{width:\"max(100vw - 440px, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"911px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-8911zp-container\",children:/*#__PURE__*/_jsx(SyllabusItem,{gWW_sT9VE:\"Lesson 2\",height:\"100%\",id:\"zWMxnsSy7\",layoutId:\"zWMxnsSy7\",NbZpizrZz:true,NGOXD1IqE:\"2\",style:{width:\"100%\"},Ued2d5Wd2:\"Advanced Illustrator Workspace Setup\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GcMW1GXWQ:{width:\"max(100vw - 32px, 1px)\"},gEqn1xdqU:{width:\"max(100vw - 440px, 1px)\"},voOEodHGo:{width:\"max(100vw - 440px, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"911px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-rhv1qa-container\",children:/*#__PURE__*/_jsx(SyllabusItem,{gWW_sT9VE:\"Lesson 3\",height:\"100%\",id:\"CY1ovjIS7\",layoutId:\"CY1ovjIS7\",NbZpizrZz:true,NGOXD1IqE:\"3\",style:{width:\"100%\"},Ued2d5Wd2:\"Create a Cute Video Game Character With Advanced Shape Manipulation\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GcMW1GXWQ:{width:\"max(100vw - 32px, 1px)\"},gEqn1xdqU:{width:\"max(100vw - 440px, 1px)\"},voOEodHGo:{width:\"max(100vw - 440px, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"911px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-11zdjlj-container\",children:/*#__PURE__*/_jsx(SyllabusItem,{gWW_sT9VE:\"Lesson 4\",height:\"100%\",id:\"CHZSuDBkd\",layoutId:\"CHZSuDBkd\",NbZpizrZz:true,NGOXD1IqE:\"4\",style:{width:\"100%\"},Ued2d5Wd2:\"Isometric Mail Icon Using New 3D Features\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GcMW1GXWQ:{width:\"max(100vw - 32px, 1px)\"},gEqn1xdqU:{width:\"max(100vw - 440px, 1px)\"},voOEodHGo:{width:\"max(100vw - 440px, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"911px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-mxwgl5-container\",children:/*#__PURE__*/_jsx(SyllabusItem,{gWW_sT9VE:\"Lesson 5\",height:\"100%\",id:\"ok8HZW30V\",layoutId:\"ok8HZW30V\",NbZpizrZz:true,NGOXD1IqE:\"5\",style:{width:\"100%\"},Ued2d5Wd2:\"Vector Graphics With Textures and Depth of Field\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GcMW1GXWQ:{width:\"max(100vw - 32px, 1px)\"},gEqn1xdqU:{width:\"max(100vw - 440px, 1px)\"},voOEodHGo:{width:\"max(100vw - 440px, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"911px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-l4oxmo-container\",children:/*#__PURE__*/_jsx(SyllabusItem,{gWW_sT9VE:\"Lesson 6\",height:\"100%\",id:\"xkLPKsF1B\",layoutId:\"xkLPKsF1B\",NbZpizrZz:true,NGOXD1IqE:\"6\",style:{width:\"100%\"},Ued2d5Wd2:\"3D Stylized Lettering With the Blend Tool\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GcMW1GXWQ:{width:\"max(100vw - 32px, 1px)\"},gEqn1xdqU:{width:\"max(100vw - 440px, 1px)\"},voOEodHGo:{width:\"max(100vw - 440px, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"911px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1undigh-container\",children:/*#__PURE__*/_jsx(SyllabusItem,{gWW_sT9VE:\"Lesson 7\",height:\"100%\",id:\"vlEtbhO8s\",layoutId:\"vlEtbhO8s\",NbZpizrZz:false,NGOXD1IqE:\"7\",style:{width:\"100%\"},Ued2d5Wd2:\"Cool Gradients Using the Mesh Tool\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ymrjhg\",\"data-framer-name\":\"Frame 1321314549\",name:\"Frame 1321314549\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GcMW1GXWQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"More Courses\"})})},voOEodHGo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"More Courses\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"More Courses\"})}),className:\"framer-1c54tyf\",\"data-framer-name\":\"Course syllabus\",fonts:[\"Inter-Bold\"],name:\"Course syllabus\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1y07f5g\",children:/*#__PURE__*/_jsx(QueryData,{query:{from:{data:Courses,type:\"Collection\"},select:[{name:\"NtCXN8JxV\",type:\"Identifier\"},{name:\"wZExv_5vH\",type:\"Identifier\"},{name:\"zulmAYJiz\",type:\"Identifier\"},{name:\"pRkNNgkDj\",type:\"Identifier\"},{name:\"WmlJS2NCw\",type:\"Identifier\"},{name:\"LHOse_l3U\",type:\"Identifier\"},{name:\"ov3tDgVCX\",type:\"Identifier\"},{name:\"GDhCT_b_S\",type:\"Identifier\"},{name:\"id\",type:\"Identifier\"}],where:{left:{left:{name:\"pRkNNgkDj\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:pRkNNgkDj},type:\"BinaryOperation\"},operator:\"and\",right:{operator:\"not\",type:\"UnaryOperation\",value:{left:{name:\"WmlJS2NCw\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:WmlJS2NCw},type:\"BinaryOperation\"}},type:\"BinaryOperation\"}},children:collection=>collection.map(({NtCXN8JxV:NtCXN8JxVK5G3DveHr,wZExv_5vH:wZExv_5vHK5G3DveHr,zulmAYJiz:zulmAYJizK5G3DveHr,pRkNNgkDj:pRkNNgkDjK5G3DveHr,WmlJS2NCw:WmlJS2NCwK5G3DveHr,LHOse_l3U:LHOse_l3UK5G3DveHr,ov3tDgVCX:ov3tDgVCXK5G3DveHr,GDhCT_b_S:GDhCT_b_SK5G3DveHr,id:idK5G3DveHr},i)=>{var _enumToDisplayNameFunctions_pRkNNgkDj;const textContent=(_enumToDisplayNameFunctions_pRkNNgkDj=enumToDisplayNameFunctions[\"pRkNNgkDj\"])===null||_enumToDisplayNameFunctions_pRkNNgkDj===void 0?void 0:_enumToDisplayNameFunctions_pRkNNgkDj.call(enumToDisplayNameFunctions,pRkNNgkDjK5G3DveHr,activeLocale);return /*#__PURE__*/_jsx(LayoutGroup,{id:`K5G3DveHr-${idK5G3DveHr}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{NtCXN8JxV:NtCXN8JxVK5G3DveHr},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{NtCXN8JxV:NtCXN8JxVK5G3DveHr},webPageId:\"gxylYdPOn\"},children:/*#__PURE__*/_jsxs(\"a\",{className:\"framer-xf4ktn framer-1hnabd\",\"data-border\":true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GcMW1GXWQ:{background:{alt:\"\",fit:\"fill\",sizes:\"56px\",...toResponsiveImage(wZExv_5vHK5G3DveHr)}},voOEodHGo:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"56px\",...toResponsiveImage(wZExv_5vHK5G3DveHr)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"220px\",...toResponsiveImage(wZExv_5vHK5G3DveHr)},className:\"framer-7kdm7o\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GcMW1GXWQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--variable-reference-zulmAYJiz-K5G3DveHr)\"},children:\"Category\"})})},voOEodHGo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--variable-reference-zulmAYJiz-K5G3DveHr)\"},children:\"Category\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-color\":\"var(--variable-reference-zulmAYJiz-K5G3DveHr)\"},children:\"Category\"})}),className:\"framer-1cl7dtj\",\"data-framer-name\":\"Category\",fonts:[\"Inter\"],name:\"Category\",style:{\"--variable-reference-zulmAYJiz-K5G3DveHr\":zulmAYJizK5G3DveHr},text:textContent,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vjum0u\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GcMW1GXWQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Course name\"})})},voOEodHGo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Course name\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Course name\"})}),className:\"framer-1pztq8h\",\"data-framer-name\":\"Course name\",fonts:[\"Inter-Medium\"],name:\"Course name\",text:WmlJS2NCwK5G3DveHr,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GcMW1GXWQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"Short description\"})})},voOEodHGo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"Short description\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-187qr2p\",\"data-styles-preset\":\"l1EH9buxQ\",style:{\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"Short description\"})}),className:\"framer-r0s5x8\",\"data-framer-name\":\"Short description\",fonts:[\"Inter\"],name:\"Short description\",text:LHOse_l3UK5G3DveHr,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hzl24l\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18rne4t\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.6)\"},children:\"Lesson count\"})}),className:\"framer-st27s3\",\"data-framer-name\":\"Lesson count\",fonts:[\"Inter\"],name:\"Lesson count\",text:ov3tDgVCXK5G3DveHr,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.6)\"},children:\"lessons\"})}),className:\"framer-1ua8mqe\",\"data-framer-name\":\"Lesson count\",fonts:[\"Inter\"],name:\"Lesson count\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1elpyvj\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.6)\"},children:\"Duration\"})}),className:\"framer-1ysgh53\",\"data-framer-name\":\"Duration\",fonts:[\"Inter\"],name:\"Duration\",text:GDhCT_b_SK5G3DveHr,verticalAlignment:\"top\",withExternalLayout:true})})]})]})})})},idK5G3DveHr);})})})]})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-804d41 hidden-otxqv1\",\"data-border\":true,\"data-framer-name\":\"Payment card\",name:\"Payment card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ev12u8\",\"data-framer-name\":\"top\",name:\"top\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rq750o\",\"data-framer-name\":\"price\",name:\"price\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"16px\",\"--framer-line-height\":\"24px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", sans-serif',\"--framer-font-size\":\"16px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.6000000238418579)\"},children:\"Course price\"})})}),className:\"framer-9elv6m\",\"data-framer-name\":\"Course price\",fonts:[\"Inter-Medium\"],name:\"Course price\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15fdme2\",\"data-framer-name\":\"price\",name:\"price\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"40px\",\"--framer-line-height\":\"56px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXI=\",\"--framer-font-family\":'\"Inter\"',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"rgba(122, 122, 122, 1)\",\"--framer-text-decoration\":\"line-through\"},children:\"$69\"})})}),className:\"framer-1xpfup8\",\"data-framer-name\":\"$69\",fonts:[\"Inter\"],name:\"$69\",text:a7TS2b5yz,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"40px\",\"--framer-line-height\":\"56px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"$39\"})})}),className:\"framer-3z0974\",\"data-framer-name\":\"$39\",fonts:[\"Inter-Bold\"],name:\"$39\",text:LxX9T1enw,verticalAlignment:\"top\",withExternalLayout:true})]})]}),h19GLtYcr&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12q4ymk\",\"data-framer-name\":\"time counter\",name:\"time counter\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-q53y9q\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,name:\"Frame\",svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.6177 5.9681L19.0711 4.51472L20.4853 5.92893L19.0319 7.38231C20.2635 8.92199 21 10.875 21 13C21 17.9706 16.9706 22 12 22C7.02944 22 3 17.9706 3 13C3 8.02944 7.02944 4 12 4C14.125 4 16.078 4.73647 17.6177 5.9681ZM11 8V14H13V8H11ZM8 1H16V3H8V1Z\" fill=\"#FF8A00\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wtdj0v\",\"data-framer-name\":\"text\",name:\"text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(255, 137, 0)\"},children:\"This offer ends in\"})}),className:\"framer-1ced6g0\",\"data-framer-name\":\"This offer ends in 02:57:42\",fonts:[\"Inter\"],name:\"This offer ends in 02:57:42\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16gt1ih\",\"data-framer-name\":\"time\",name:\"time\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-9q4i1e-container\",children:/*#__PURE__*/_jsx(Countdown,{countdown:GaMy8Mj1G,days:false,finishedComponent:[],fontColor:\"rgb(255, 137, 0)\",fontName:\"Inter\",fontSize:16,fontWeight:400,gap:4,height:\"100%\",hours:true,id:\"WSz1qgpvm\",layoutId:\"WSz1qgpvm\",minutes:false,seconds:false,unit:{fontColor:\"rgb(107, 113, 148)\",fontName:\"Inter\",fontSize:0,fontWeight:400,gap:4,position:\"bottom\",show:false,uppercase:false,variant:\"full\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"rgb(255, 137, 0)\"},children:\":\"})}),className:\"framer-1vmx5dc\",\"data-framer-name\":\"This offer ends in 02:57:42\",fonts:[\"GF;Inter-regular\"],name:\"This offer ends in 02:57:42\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-zzdlk4-container\",children:/*#__PURE__*/_jsx(Countdown,{countdown:GaMy8Mj1G,days:false,finishedComponent:[],fontColor:\"rgb(255, 137, 0)\",fontName:\"Inter\",fontSize:16,fontWeight:400,gap:4,height:\"100%\",hours:false,id:\"kieNyaXon\",layoutId:\"kieNyaXon\",minutes:true,seconds:false,unit:{fontColor:\"rgb(107, 113, 148)\",fontName:\"Inter\",fontSize:0,fontWeight:400,gap:4,position:\"bottom\",show:false,uppercase:false,variant:\"full\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"rgb(255, 137, 0)\"},children:\":\"})}),className:\"framer-1ghwzai\",\"data-framer-name\":\"This offer ends in 02:57:42\",fonts:[\"GF;Inter-regular\"],name:\"This offer ends in 02:57:42\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-5k7646-container\",children:/*#__PURE__*/_jsx(Countdown,{countdown:GaMy8Mj1G,days:false,finishedComponent:[],fontColor:\"rgb(255, 137, 0)\",fontName:\"Inter\",fontSize:16,fontWeight:400,gap:4,height:\"100%\",hours:false,id:\"RzMy8doO9\",layoutId:\"RzMy8doO9\",minutes:false,seconds:true,unit:{fontColor:\"rgb(107, 113, 148)\",fontName:\"Inter\",fontSize:0,fontWeight:400,gap:4,position:\"bottom\",show:false,uppercase:false,variant:\"full\"},width:\"100%\"})})})]})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xrc5ch\",\"data-framer-name\":\"features\",name:\"features\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1icvjut\",\"data-framer-name\":\"feature 1\",name:\"feature 1\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-11b1slz\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,name:\"Frame\",svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M4 5.77264C4 5.34592 4.36425 5 4.79344 5H19.2066C19.6448 5 20 5.34607 20 5.77264V18.2274C20 18.654 19.6358 19 19.2066 19H4.79344C4.35524 19 4 18.654 4 18.2274V5.77264ZM5.6 6.55556V8.11111H7.2V6.55556H5.6ZM16.8 6.55556V8.11111H18.4V6.55556H16.8ZM5.6 9.66667V11.2222H7.2V9.66667H5.6ZM16.8 9.66667V11.2222H18.4V9.66667H16.8ZM5.6 12.7778V14.3333H7.2V12.7778H5.6ZM16.8 12.7778V14.3333H18.4V12.7778H16.8ZM5.6 15.8889V17.4444H7.2V15.8889H5.6ZM16.8 15.8889V17.4444H18.4V15.8889H16.8Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1prcf6m\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"16px\",\"--framer-line-height\":\"24px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXI=\",\"--framer-font-family\":'\"Inter\"',\"--framer-font-size\":\"16px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"7 lessons\"})})}),className:\"framer-1c93ia4\",\"data-framer-name\":\"7 lessons\",fonts:[\"Inter\"],name:\"7 lessons\",text:ov3tDgVCX,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"lessons\"})}),className:\"framer-yb30ne\",\"data-framer-name\":\"7 lessons\",fonts:[\"Inter\"],name:\"7 lessons\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pagtid\",\"data-framer-name\":\"feature 2\",name:\"feature 2\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-wcd54m\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,name:\"Frame\",svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M12 21C7.02943 21 3 16.9705 3 12C3 7.02943 7.02943 3 12 3C16.9705 3 21 7.02943 21 12C21 16.9705 16.9705 21 12 21ZM12.9 12V7.5H11.1V13.8H16.5V12H12.9Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"16px\",\"--framer-line-height\":\"24px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXI=\",\"--framer-font-family\":'\"Inter\"',\"--framer-font-size\":\"16px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"40 hours, 24 mins.\"})})}),className:\"framer-ay15bf\",\"data-framer-name\":\"40 hours, 24 mins.\",fonts:[\"Inter\"],name:\"40 hours, 24 mins.\",text:GDhCT_b_S,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-foxxdr\",\"data-framer-name\":\"feature 3\",name:\"feature 3\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-17g9vnt\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,name:\"Frame\",svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M12 4L2 9.59997L12 15.1999L20.3333 10.5333V16.3999H22V9.59997L12 4ZM5.33252 13.1924V16.8C6.85287 18.7431 9.27343 20 11.9998 20C14.7262 20 17.1467 18.7431 18.6671 16.8L18.6667 13.193L12.0002 16.9263L5.33252 13.1924Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1drap3x\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"16px\",\"--framer-line-height\":\"24px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXI=\",\"--framer-font-family\":'\"Inter\"',\"--framer-font-size\":\"16px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"1 003 students\"})})}),className:\"framer-tqzo4k\",\"data-framer-name\":\"1 003 students\",fonts:[\"Inter\"],name:\"1 003 students\",text:amAHnxdyB,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"students\"})}),className:\"framer-98m6ma\",\"data-framer-name\":\"1 003 students\",fonts:[\"Inter\"],name:\"1 003 students\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pc0eeg\",\"data-framer-name\":\"feature 4\",name:\"feature 4\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1vljcpm\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,name:\"Frame\",svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M4 11.9474H7.55556V20H4V11.9474ZM16.4444 8.36842H20V20H16.4444V8.36842ZM10.2222 3H13.7778V20H10.2222V3Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-orske3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Level:\"})}),className:\"framer-ae1kf1\",\"data-framer-name\":\"Level: Medium\",fonts:[\"Inter\"],name:\"Level: Medium\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"16px\",\"--framer-line-height\":\"24px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXI=\",\"--framer-font-family\":'\"Inter\"',\"--framer-font-size\":\"16px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Level: Medium\"})})}),className:\"framer-1x59n2\",\"data-framer-name\":\"Level: Medium\",fonts:[\"Inter\"],name:\"Level: Medium\",text:nhQzhGP1U,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n4o2bw\",\"data-framer-name\":\"feature 5\",name:\"feature 5\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-123u4ds\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,name:\"Frame\",svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M3.81818 12C3.81818 10.2427 5.24273 8.81818 7 8.81818C8.09409 8.81818 8.83599 9.21255 9.45376 9.83033C10.1141 10.4906 10.6228 11.3929 11.2053 12.4415L11.2359 12.4965C11.7823 13.4803 12.4028 14.5975 13.2605 15.4554C14.1769 16.3716 15.3668 17 17 17C19.7615 17 22 14.7615 22 12C22 9.23857 19.7615 7 17 7C15.4904 7 14.1371 7.669 13.2203 8.7267C13.6261 9.32187 13.9613 9.91434 14.24 10.4158C14.7892 9.46107 15.8195 8.81818 17 8.81818C18.7573 8.81818 20.1818 10.2427 20.1818 12C20.1818 13.7573 18.7573 15.1818 17 15.1818C15.9059 15.1818 15.164 14.7875 14.5463 14.1696C13.8859 13.5094 13.3772 12.6071 12.7947 11.5585L12.7641 11.5035C12.2177 10.5197 11.5972 9.40241 10.7395 8.54467C9.8231 7.62836 8.63318 7 7 7C4.23857 7 2 9.23857 2 12C2 14.7615 4.23857 17 7 17C8.5096 17 9.86294 16.331 10.7797 15.2733C10.3739 14.6781 10.0387 14.0856 9.76005 13.5842C9.21085 14.5389 8.18051 15.1818 7 15.1818C5.24273 15.1818 3.81818 13.7573 3.81818 12Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Pay once, use forever\"})}),className:\"framer-1s9stjj\",\"data-framer-name\":\"Pay once, use forever\",fonts:[\"Inter\"],name:\"Pay once, use forever\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-90nv8p\",\"data-framer-name\":\"bottom\",name:\"bottom\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:h5tTW6UtJ,implicitPathVariables:undefined},{href:h5tTW6UtJ,implicitPathVariables:undefined},{href:h5tTW6UtJ,implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gEqn1xdqU:{width:\"272px\"},voOEodHGo:{width:\"272px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"345px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-dovlsd-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gEqn1xdqU:{gKL9DS8qI:resolvedLinks[1]},voOEodHGo:{gKL9DS8qI:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(FluidCTA,{DEwkkAJz5:LxX9T1enw,gKL9DS8qI:resolvedLinks[0],height:\"100%\",id:\"hKY0dxvWZ\",layoutId:\"hKY0dxvWZ\",style:{width:\"100%\"},width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"11px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXI=\",\"--framer-font-family\":'\"Inter\"',\"--framer-font-size\":\"11px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.6000000238418579)\"},children:\"The payment process is secured by TLS data encryption\"})})}),className:\"framer-1nz6vxm\",\"data-framer-name\":\"The payment process is secured by TLS data encryption\",fonts:[\"Inter\"],name:\"The payment process is secured by TLS data encryption\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1jjc5jp\",\"data-framer-name\":\"payment system logos\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:19,intrinsicWidth:197,name:\"payment system logos\",svg:'<svg width=\"197\" height=\"19\" viewBox=\"0 0 197 19\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect x=\"0.5\" width=\"26\" height=\"19\" rx=\"4\" fill=\"white\" fill-opacity=\"0.05\"/>\\n<rect x=\"0.75\" y=\"0.25\" width=\"25.5\" height=\"18.5\" rx=\"3.75\" stroke=\"white\" stroke-opacity=\"0.1\" stroke-width=\"0.5\"/>\\n<path d=\"M12.1159 10.9694C12.064 10.998 12.0055 11.0146 11.9433 11.0146C11.7993 11.0146 11.6742 10.9282 11.6085 10.8003L11.5833 10.7402L10.5352 8.23096C10.5239 8.20369 10.5169 8.17281 10.5169 8.14277C10.5169 8.02712 10.6028 7.93344 10.7088 7.93344C10.7518 7.93344 10.7916 7.94899 10.8237 7.97494L12.0605 8.93573C12.1508 9.00016 12.2588 9.03798 12.3749 9.03798C12.4442 9.03798 12.5102 9.02392 12.5718 8.99946L18.3882 6.17517C17.3456 4.83464 15.6286 3.9585 13.6855 3.9585C10.5059 3.9585 7.92847 6.30189 7.92847 9.1928C7.92847 10.7698 8.70391 12.1896 9.91769 13.1492C10.015 13.225 10.0788 13.3496 10.0788 13.4903C10.0788 13.5368 10.0697 13.5792 10.0585 13.6236C9.96157 14.0181 9.80642 14.6499 9.79921 14.6795C9.78709 14.729 9.76821 14.7807 9.76821 14.8325C9.76821 14.9481 9.85408 15.0418 9.96024 15.0418C10.0018 15.0418 10.0359 15.0249 10.071 15.0029L11.3314 14.2089C11.4262 14.1493 11.5266 14.1123 11.6372 14.1123C11.696 14.1123 11.7528 14.1222 11.8063 14.1401C12.3943 14.3246 13.0287 14.4271 13.6855 14.4271C16.865 14.4271 19.4428 12.0836 19.4428 9.1928C19.4428 8.31718 19.2049 7.49255 18.7869 6.76715L12.1581 10.9429L12.1159 10.9694Z\" fill=\"#1AAD19\"/>\\n<rect x=\"34.5\" width=\"26\" height=\"19\" rx=\"4\" fill=\"white\" fill-opacity=\"0.05\"/>\\n<rect x=\"34.75\" y=\"0.25\" width=\"25.5\" height=\"18.5\" rx=\"3.75\" stroke=\"white\" stroke-opacity=\"0.1\" stroke-width=\"0.5\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M45.6755 14.6046L45.8443 13.4574L45.4683 13.448H43.6729L44.9206 4.98223C44.9245 4.95659 44.9371 4.93279 44.9555 4.91586C44.9739 4.89894 44.9974 4.88965 45.022 4.88965H48.0494C49.0546 4.88965 49.7482 5.1134 50.1103 5.55511C50.2801 5.76232 50.3882 5.97891 50.4405 6.21718C50.4954 6.46724 50.4963 6.76597 50.4428 7.13038L50.4389 7.15688V7.39041L50.6087 7.49334C50.7516 7.5745 50.8653 7.66737 50.9524 7.77368C51.0976 7.95091 51.1915 8.17611 51.2312 8.44301C51.2723 8.71755 51.2587 9.04433 51.1915 9.41425C51.1141 9.8397 50.9888 10.2103 50.8197 10.5135C50.6642 10.7929 50.466 11.0246 50.2307 11.2042C50.006 11.3748 49.7392 11.5044 49.4374 11.5873C49.1449 11.6687 48.8115 11.7098 48.4458 11.7098H48.2102C48.0418 11.7098 47.8781 11.7747 47.7497 11.8911C47.6208 12.0099 47.5357 12.1722 47.5095 12.3498L47.4917 12.4531L47.1935 14.4752L47.18 14.5494C47.1764 14.5729 47.1702 14.5846 47.1612 14.5925C47.1532 14.5998 47.1416 14.6046 47.1303 14.6046H45.6755Z\" fill=\"#28356A\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M50.7697 7.18408C50.7608 7.2459 50.7504 7.30907 50.7388 7.37398C50.3396 9.5674 48.9736 10.3251 47.2291 10.3251H46.3409C46.1275 10.3251 45.9477 10.4909 45.9145 10.7161L45.3309 14.677C45.3093 14.8249 45.4158 14.9581 45.5552 14.9581H47.1306C47.3172 14.9581 47.4756 14.8131 47.505 14.6162L47.5205 14.5306L47.8171 12.5164L47.8362 12.406C47.8652 12.2084 48.0241 12.0633 48.2106 12.0633H48.4462C49.9725 12.0633 51.1674 11.4003 51.5167 9.4814C51.6625 8.67984 51.587 8.01051 51.2009 7.53979C51.0841 7.39787 50.9392 7.28005 50.7697 7.18408Z\" fill=\"#298FC2\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M50.3517 7.00587C50.2907 6.98681 50.2277 6.96959 50.1632 6.95402C50.0983 6.93883 50.0318 6.92538 49.9634 6.91358C49.7239 6.87218 49.4614 6.85254 49.1804 6.85254H46.8075C46.749 6.85254 46.6935 6.86666 46.6438 6.8922C46.5343 6.9485 46.4531 7.05936 46.4334 7.19509L45.9285 10.6163L45.9141 10.716C45.9472 10.4908 46.1271 10.3251 46.3404 10.3251H47.2287C48.9732 10.3251 50.3391 9.56699 50.7384 7.37395C50.7503 7.30904 50.7603 7.24587 50.7693 7.18406C50.6683 7.12669 50.5589 7.07765 50.4411 7.03586C50.412 7.02551 50.382 7.01554 50.3517 7.00587Z\" fill=\"#22284F\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M46.4336 7.19506C46.4533 7.05934 46.5346 6.94847 46.644 6.89256C46.694 6.86692 46.7492 6.8528 46.8077 6.8528H49.1806C49.4617 6.8528 49.7241 6.87254 49.9636 6.91394C50.032 6.92564 50.0985 6.93919 50.1634 6.95438C50.228 6.96985 50.2909 6.98717 50.3519 7.00613C50.3822 7.0158 50.4122 7.02586 50.4416 7.03583C50.5594 7.07762 50.6689 7.12705 50.7698 7.18403C50.8886 6.37347 50.7689 5.82158 50.3593 5.32183C49.9077 4.77159 49.0928 4.53613 48.05 4.53613H45.0224C44.8094 4.53613 44.6277 4.70184 44.5948 4.92744L43.3338 13.4803C43.3089 13.6495 43.4309 13.8021 43.5904 13.8021H45.4594L46.4336 7.19506Z\" fill=\"#28356A\"/>\\n<rect x=\"68.5\" width=\"26\" height=\"19\" rx=\"4\" fill=\"white\" fill-opacity=\"0.05\"/>\\n<rect x=\"68.75\" y=\"0.25\" width=\"25.5\" height=\"18.5\" rx=\"3.75\" stroke=\"white\" stroke-opacity=\"0.1\" stroke-width=\"0.5\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M81.6368 13.3232C80.7313 14.1133 79.5568 14.5903 78.2734 14.5903C75.4096 14.5903 73.0881 12.2155 73.0881 9.2861C73.0881 6.35669 75.4096 3.98193 78.2734 3.98193C79.5568 3.98193 80.7313 4.45891 81.6368 5.24903C82.5422 4.45891 83.7167 3.98193 85.0002 3.98193C87.8639 3.98193 90.1854 6.35669 90.1854 9.2861C90.1854 12.2155 87.8639 14.5903 85.0002 14.5903C83.7167 14.5903 82.5422 14.1133 81.6368 13.3232Z\" fill=\"#ED0006\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M81.6367 13.3232C82.7516 12.3503 83.4586 10.9026 83.4586 9.2861C83.4586 7.66955 82.7516 6.22191 81.6367 5.24903C82.5422 4.45891 83.7167 3.98193 85.0001 3.98193C87.8638 3.98193 90.1853 6.35669 90.1853 9.2861C90.1853 12.2155 87.8638 14.5903 85.0001 14.5903C83.7167 14.5903 82.5422 14.1133 81.6367 13.3232Z\" fill=\"#F9A000\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M81.6368 13.3231C82.7516 12.3502 83.4586 10.9026 83.4586 9.28608C83.4586 7.66954 82.7516 6.22191 81.6368 5.24902C80.5219 6.22191 79.8149 7.66954 79.8149 9.28608C79.8149 10.9026 80.5219 12.3502 81.6368 13.3231Z\" fill=\"#FF5E00\"/>\\n<rect x=\"102.5\" width=\"26\" height=\"19\" rx=\"4\" fill=\"white\" fill-opacity=\"0.05\"/>\\n<rect x=\"102.75\" y=\"0.25\" width=\"25.5\" height=\"18.5\" rx=\"3.75\" stroke=\"white\" stroke-opacity=\"0.1\" stroke-width=\"0.5\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M110.721 12.5545H109.146L107.965 7.75239C107.909 7.5315 107.79 7.33621 107.614 7.24417C107.177 7.01286 106.696 6.82878 106.171 6.73594V6.55106H108.708C109.058 6.55106 109.321 6.82878 109.365 7.15133L109.977 10.6153L111.552 6.55106H113.083L110.721 12.5545ZM113.959 12.5545H112.471L113.696 6.55106H115.183L113.959 12.5545ZM117.108 8.2142C117.152 7.89086 117.414 7.70598 117.721 7.70598C118.202 7.65956 118.727 7.7524 119.165 7.9829L119.427 6.69032C118.99 6.50544 118.508 6.4126 118.071 6.4126C116.627 6.4126 115.577 7.24417 115.577 8.39829C115.577 9.27628 116.321 9.73729 116.846 10.015C117.414 10.2919 117.633 10.4768 117.59 10.7537C117.59 11.1691 117.152 11.354 116.715 11.354C116.19 11.354 115.664 11.2155 115.183 10.9842L114.921 12.2776C115.446 12.5081 116.014 12.601 116.54 12.601C118.159 12.6466 119.165 11.8158 119.165 10.5689C119.165 8.99856 117.108 8.90651 117.108 8.2142ZM124.371 12.5545L123.19 6.55106H121.921C121.658 6.55106 121.396 6.73594 121.308 7.01286L119.121 12.5545H120.652L120.958 11.6774H122.839L123.014 12.5545H124.371ZM122.14 8.16779L122.577 10.4304H121.352L122.14 8.16779Z\" fill=\"white\"/>\\n<rect x=\"136.5\" width=\"26\" height=\"19\" rx=\"4\" fill=\"white\" fill-opacity=\"0.05\"/>\\n<rect x=\"136.75\" y=\"0.25\" width=\"25.5\" height=\"18.5\" rx=\"3.75\" stroke=\"white\" stroke-opacity=\"0.1\" stroke-width=\"0.5\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M141.161 6.729L138.729 12.466H141.641L142.002 11.5513H142.827L143.188 12.466H146.393V11.7679L146.679 12.466H148.337L148.623 11.7531V12.466H155.289L156.1 11.575L156.859 12.466L160.283 12.4734L157.843 9.61352L160.283 6.729H156.912L156.123 7.6035L155.388 6.729H148.136L147.513 8.20977L146.875 6.729H143.969V7.40339L143.646 6.729H141.161ZM141.725 7.54367H143.144L144.758 11.434V7.54367H146.313L147.559 10.333L148.708 7.54367H150.255V11.6603H149.313L149.306 8.43454L147.933 11.6603H147.091L145.711 8.43454V11.6603H143.774L143.407 10.7374H141.423L141.056 11.6595H140.019L141.725 7.54367ZM154.945 7.54367H151.116V11.6579H154.885L156.1 10.2944L157.271 11.6579H158.495L156.716 9.61272L158.495 7.54367H157.324L156.115 8.89154L154.945 7.54367ZM142.415 8.24019L141.762 9.88427H143.068L142.415 8.24019ZM152.062 9.14752V8.39602V8.3953H154.45L155.493 9.59714L154.404 10.8055H152.062V9.98513H154.15V9.14752H152.062Z\" fill=\"#1F72CD\"/>\\n<rect x=\"170.5\" width=\"26\" height=\"19\" rx=\"4\" fill=\"white\" fill-opacity=\"0.05\"/>\\n<rect x=\"170.75\" y=\"0.25\" width=\"25.5\" height=\"18.5\" rx=\"3.75\" stroke=\"white\" stroke-opacity=\"0.1\" stroke-width=\"0.5\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M182.78 12.2929V9.96968H183.938C184.413 9.96968 184.813 9.80504 185.14 9.48033L185.218 9.39801C185.815 8.72572 185.775 7.67842 185.14 7.05645C184.822 6.72717 184.386 6.54881 183.938 6.55795H182.079V12.2929H182.78ZM182.78 9.26533V7.2622H183.956C184.208 7.2622 184.448 7.36282 184.626 7.54575C185.005 7.92991 185.014 8.57018 184.648 8.96807C184.469 9.16472 184.217 9.27448 183.956 9.26533H182.78ZM188.488 8.6754C188.188 8.38728 187.778 8.24093 187.26 8.24093C186.594 8.24093 186.093 8.49704 185.762 9.00468L186.381 9.41171C186.607 9.06413 186.916 8.89035 187.308 8.89035C187.556 8.89035 187.796 8.98639 187.983 9.16017C188.166 9.32481 188.27 9.56263 188.27 9.81416V9.98338C188 9.82788 187.661 9.74556 187.243 9.74556C186.755 9.74556 186.363 9.86447 186.072 10.1069C185.78 10.3492 185.632 10.6694 185.632 11.0764C185.623 11.4469 185.775 11.799 186.045 12.0368C186.32 12.2929 186.668 12.421 187.077 12.421C187.561 12.421 187.944 12.1969 188.236 11.7487H188.266V12.2929H188.937V9.87362C188.937 9.36597 188.789 8.96352 188.488 8.6754ZM186.585 11.5703C186.442 11.4606 186.355 11.2822 186.355 11.0901C186.355 10.8752 186.45 10.6968 186.638 10.5551C186.829 10.4133 187.069 10.3401 187.352 10.3401C187.744 10.3355 188.049 10.427 188.266 10.6099C188.266 10.9209 188.149 11.1908 187.918 11.4194C187.709 11.6389 187.426 11.7624 187.13 11.7624C186.934 11.767 186.742 11.6984 186.585 11.5703ZM190.443 14.0171L192.786 8.36898H192.024L190.94 11.1862H190.927L189.816 8.36898H189.054L190.591 12.0414L189.72 14.0171H190.443Z\" fill=\"#3C4043\"/>\\n<path d=\"M180.359 9.46654C180.359 9.24244 180.342 9.01835 180.307 8.79883H177.351V10.0656H179.044C178.975 10.4727 178.748 10.8385 178.417 11.0672V11.8904H179.428C180.02 11.3187 180.359 10.4727 180.359 9.46654Z\" fill=\"#4285F4\"/>\\n<path d=\"M177.351 12.6866C178.195 12.6866 178.909 12.3939 179.428 11.8908L178.417 11.0676C178.134 11.2689 177.773 11.3832 177.351 11.3832C176.532 11.3832 175.84 10.8024 175.591 10.0249H174.551V10.8755C175.082 11.9869 176.166 12.6866 177.351 12.6866Z\" fill=\"#34A853\"/>\\n<path d=\"M175.592 10.0248C175.461 9.61779 175.461 9.17418 175.592 8.76257V7.9165H174.551C174.102 8.8449 174.102 9.9425 174.551 10.8709L175.592 10.0248Z\" fill=\"#FBBC04\"/>\\n<path d=\"M177.351 7.40419C177.799 7.39505 178.23 7.57341 178.552 7.89811L179.449 6.956C178.879 6.39805 178.13 6.09164 177.351 6.10078C176.166 6.10078 175.082 6.80508 174.551 7.91641L175.591 8.76705C175.84 7.98501 176.532 7.40419 177.351 7.40419Z\" fill=\"#EA4335\"/>\\n</svg>\\n',withExternalLayout:true})]})]})]})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GcMW1GXWQ:{\"data-framer-appear-id\":\"1myq1p2\",animate:optimizeAppear(\"animate\",\"1myq1p2\",animation13,\"otxqv1\"),initial:optimizeAppear(\"initial\",\"1myq1p2\",animation14,\"otxqv1\")},gEqn1xdqU:{\"data-framer-appear-id\":\"1f36otp\",animate:optimizeAppear(\"animate\",\"1f36otp\",animation13,\"1f4lftj\"),initial:optimizeAppear(\"initial\",\"1f36otp\",animation14,\"1f4lftj\")},voOEodHGo:{\"data-framer-appear-id\":\"kzbcyp\",animate:optimizeAppear(\"animate\",\"kzbcyp\",animation13,\"1r3iknj\"),initial:optimizeAppear(\"initial\",\"kzbcyp\",animation14,\"1r3iknj\")}},children:/*#__PURE__*/_jsx(Image,{animate:optimizeAppear(\"animate\",\"1yvpajy\",animation13,\"1kahds2\"),background:{alt:\"\",fit:\"fill\",sizes:\"100vw\",...toResponsiveImage(bB_BZEODV)},className:\"framer-1yvpajy\",\"data-framer-appear-id\":\"1yvpajy\",\"data-framer-name\":\"course bg image\",exit:animation12,initial:optimizeAppear(\"initial\",\"1yvpajy\",animation14,\"1kahds2\"),name:\"course bg image\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qaw2vo\",\"data-framer-name\":\"black layer\",name:\"black layer\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GcMW1GXWQ:{width:\"calc(100vw - 32px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"calc(100vw - 64px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-158238l-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GcMW1GXWQ:{variant:\"fpHbuKoab\"},voOEodHGo:{variant:\"ZYydtky2O\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"eVneFuLL4\",layoutId:\"eVneFuLL4\",style:{width:\"100%\"},variant:\"Zv3I76fgN\",width:\"100%\"})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gEqn1xdqU:{\"data-framer-appear-id\":\"1mymck\",animate:optimizeAppear(\"animate\",\"1mymck\",animation16,\"1f4lftj\"),initial:optimizeAppear(\"initial\",\"1mymck\",animation17,\"1f4lftj\")},voOEodHGo:{\"data-framer-appear-id\":\"c2gfv7\",animate:optimizeAppear(\"animate\",\"c2gfv7\",animation16,\"1r3iknj\"),initial:optimizeAppear(\"initial\",\"c2gfv7\",animation17,\"1r3iknj\")}},children:/*#__PURE__*/_jsx(Container,{animate:optimizeAppear(\"animate\",\"17porw\",animation16,\"1kahds2\"),className:\"framer-17porw-container hidden-otxqv1\",\"data-framer-appear-id\":\"17porw\",exit:animation15,initial:optimizeAppear(\"initial\",\"17porw\",animation17,\"1kahds2\"),layoutScroll:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(CTABrightWOArrow,{height:\"100%\",id:\"SJu1QLFms\",KDb7UVFJt:\"https://bobur.lemonsqueezy.com/checkout/buy/4ea09e19-e10e-4d3c-a6e4-f2c7cd9c6eac\",layoutId:\"SJu1QLFms\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-e0pXp { background: rgb(6, 7, 10); }`,\".framer-e0pXp.framer-1hnabd, .framer-e0pXp .framer-1hnabd { display: block; }\",\".framer-e0pXp.framer-1kahds2 { align-content: center; align-items: center; background-color: #06070a; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 32px 32px 32px; position: relative; width: 1440px; }\",\".framer-e0pXp .framer-1q2eqy4 { --border-bottom-width: 0px; --border-color: #0788ff; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(16px); align-content: flex-start; align-items: flex-start; backdrop-filter: blur(16px); background-color: rgba(6, 14, 22, 0.8); border-top-left-radius: 16px; border-top-right-radius: 16px; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; left: 0px; overflow: hidden; padding: 16px; position: fixed; right: 0px; will-change: var(--framer-will-change-override, transform); z-index: 4; }\",\".framer-e0pXp .framer-h3n8pa { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-e0pXp .framer-mycmfh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-e0pXp .framer-18f5hhv, .framer-e0pXp .framer-1gl96ij, .framer-e0pXp .framer-x0fyjd, .framer-e0pXp .framer-ay15bf, .framer-e0pXp .framer-1s9stjj { --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-e0pXp .framer-1j5139c { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-e0pXp .framer-z2uuwf, .framer-e0pXp .framer-7fh52s, .framer-e0pXp .framer-1i6j86y, .framer-e0pXp .framer-qaqe97, .framer-e0pXp .framer-1id7ckl, .framer-e0pXp .framer-xa6cxf, .framer-e0pXp .framer-15xqufq, .framer-e0pXp .framer-1om6ck0, .framer-e0pXp .framer-1i4umf3, .framer-e0pXp .framer-f60ehu, .framer-e0pXp .framer-p7hy1p, .framer-e0pXp .framer-128xwq9, .framer-e0pXp .framer-1xpfup8, .framer-e0pXp .framer-3z0974, .framer-e0pXp .framer-1ced6g0, .framer-e0pXp .framer-1vmx5dc, .framer-e0pXp .framer-1ghwzai, .framer-e0pXp .framer-1c93ia4, .framer-e0pXp .framer-yb30ne, .framer-e0pXp .framer-tqzo4k, .framer-e0pXp .framer-98m6ma, .framer-e0pXp .framer-ae1kf1, .framer-e0pXp .framer-1x59n2 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-e0pXp .framer-2f3x8k, .framer-e0pXp .framer-12q4ymk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-e0pXp .framer-19kmdyh { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 18px); position: relative; width: 18px; }\",\".framer-e0pXp .framer-1n49c5z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-e0pXp .framer-192h1g, .framer-e0pXp .framer-16gt1ih { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 1px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-e0pXp .framer-d4ouul-container, .framer-e0pXp .framer-b4w138-container, .framer-e0pXp .framer-bvrabf-container, .framer-e0pXp .framer-9q4i1e-container, .framer-e0pXp .framer-zzdlk4-container, .framer-e0pXp .framer-5k7646-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-e0pXp .framer-13nuwy5, .framer-e0pXp .framer-1xrc5ch { 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-e0pXp .framer-1ou99hs, .framer-e0pXp .framer-1fybodv, .framer-e0pXp .framer-1ri7qla, .framer-e0pXp .framer-16jg2j2, .framer-e0pXp .framer-jy6dlo, .framer-e0pXp .framer-1icvjut, .framer-e0pXp .framer-pagtid, .framer-e0pXp .framer-foxxdr, .framer-e0pXp .framer-pc0eeg, .framer-e0pXp .framer-n4o2bw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-e0pXp .framer-17aehqf, .framer-e0pXp .framer-1kp17mj, .framer-e0pXp .framer-zomr18, .framer-e0pXp .framer-1ublsdn, .framer-e0pXp .framer-y02yx8, .framer-e0pXp .framer-1hvgu5y, .framer-e0pXp .framer-kr0p45, .framer-e0pXp .framer-1dg63a, .framer-e0pXp .framer-9j9o0n, .framer-e0pXp .framer-q53y9q, .framer-e0pXp .framer-11b1slz, .framer-e0pXp .framer-wcd54m, .framer-e0pXp .framer-17g9vnt, .framer-e0pXp .framer-1vljcpm, .framer-e0pXp .framer-123u4ds { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-e0pXp .framer-5gpe5s, .framer-e0pXp .framer-2zm0an, .framer-e0pXp .framer-iur6y9, .framer-e0pXp .framer-1prcf6m, .framer-e0pXp .framer-1drap3x, .framer-e0pXp .framer-orske3 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: 24px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-e0pXp .framer-v9h4pi, .framer-e0pXp .framer-90nv8p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-e0pXp .framer-9pq1hf-container, .framer-e0pXp .framer-p9vxjf-container, .framer-e0pXp .framer-8911zp-container, .framer-e0pXp .framer-rhv1qa-container, .framer-e0pXp .framer-11zdjlj-container, .framer-e0pXp .framer-mxwgl5-container, .framer-e0pXp .framer-l4oxmo-container, .framer-e0pXp .framer-1undigh-container, .framer-e0pXp .framer-dovlsd-container, .framer-e0pXp .framer-158238l-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-e0pXp .framer-ocdd5n, .framer-e0pXp .framer-kp4j6l, .framer-e0pXp .framer-9elv6m, .framer-e0pXp .framer-1nz6vxm { --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-e0pXp .framer-13x7se8, .framer-e0pXp .framer-1jjc5jp { flex: none; height: 19px; position: relative; width: 197px; }\",\".framer-e0pXp .framer-4jlwjr-container { flex: none; height: 80px; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 3; }\",\".framer-e0pXp .framer-1e34d00 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: flex-start; overflow: visible; padding: 200px 0px 0px 0px; position: relative; width: min-content; z-index: 2; }\",\".framer-e0pXp .framer-65yvd0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-e0pXp .framer-1mfuonv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-e0pXp .framer-12nd341, .framer-e0pXp .framer-1pztq8h, .framer-e0pXp .framer-r0s5x8 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-e0pXp .framer-171ldqz { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 600px; word-break: break-word; word-wrap: break-word; }\",\".framer-e0pXp .framer-11deuc8-container { flex: none; height: 550px; position: relative; width: 980px; }\",\".framer-e0pXp .framer-k49oql { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 72px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1376px; }\",\".framer-e0pXp .framer-arw43n { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-e0pXp .framer-1ih520y, .framer-e0pXp .framer-3tf3nb { 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; position: relative; width: 100%; }\",\".framer-e0pXp .framer-xwhxgv, .framer-e0pXp .framer-au9geq, .framer-e0pXp .framer-etmdlv, .framer-e0pXp .framer-1c54tyf { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 911px; word-break: break-word; word-wrap: break-word; }\",\".framer-e0pXp .framer-7u7ix4, .framer-e0pXp .framer-1gtjepx { --framer-paragraph-spacing: 18px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 911px; word-break: break-word; word-wrap: break-word; }\",\".framer-e0pXp .framer-106fck6, .framer-e0pXp .framer-d820ev, .framer-e0pXp .framer-ymrjhg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-e0pXp .framer-13pev9k { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-e0pXp .framer-fvgb05 { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: none; height: 455px; position: relative; width: 455px; }\",\".framer-e0pXp .framer-1cpwg2k { 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: min-content; }\",\".framer-e0pXp .framer-rdqng2 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 439px; word-break: break-word; word-wrap: break-word; }\",\".framer-e0pXp .framer-129irqj { --framer-paragraph-spacing: 18px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 439px; word-break: break-word; word-wrap: break-word; }\",\".framer-e0pXp .framer-83hqqg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-e0pXp .framer-1w3vmme { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-e0pXp .framer-1j2dnmu, .framer-e0pXp .framer-1v1j4m3, .framer-e0pXp .framer-jj63yc, .framer-e0pXp .framer-7ehmhh { align-content: flex-start; align-items: flex-start; background-color: rgba(255, 255, 255, 0.05); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 24px; position: relative; width: 445px; will-change: var(--framer-will-change-override, transform); }\",\".framer-e0pXp .framer-srtcdl, .framer-e0pXp .framer-18fkhio, .framer-e0pXp .framer-uscqjd, .framer-e0pXp .framer-kbu79c, .framer-e0pXp .framer-12me903, .framer-e0pXp .framer-l27ja3, .framer-e0pXp .framer-drobys, .framer-e0pXp .framer-103n0nf { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 397px; word-break: break-word; word-wrap: break-word; }\",\".framer-e0pXp .framer-79wrp { align-content: flex-start; align-items: flex-start; background-color: rgba(255, 255, 255, 0.05); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 911px; will-change: var(--framer-will-change-override, transform); }\",\".framer-e0pXp .framer-1y07f5g { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: auto; }\",\".framer-e0pXp .framer-xf4ktn { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.05); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; background-color: rgba(255, 255, 255, 0.05); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: 300px; overflow: hidden; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-e0pXp .framer-7kdm7o { bottom: 0px; flex: none; left: 0px; position: absolute; top: 0px; width: 220px; }\",\".framer-e0pXp .framer-1cl7dtj { --variable-reference-zulmAYJiz-K5G3DveHr: var(--1rikudb); flex: none; height: auto; left: 252px; position: absolute; top: 32px; white-space: pre; width: auto; }\",\".framer-e0pXp .framer-1vjum0u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; left: 252px; overflow: hidden; padding: 0px; position: absolute; right: 32px; top: 58px; }\",\".framer-e0pXp .framer-hzl24l { align-content: flex-start; align-items: flex-start; bottom: 32px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; left: 252px; overflow: hidden; padding: 0px; position: absolute; width: min-content; }\",\".framer-e0pXp .framer-18rne4t { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0.1); border-bottom-left-radius: 60px; border-bottom-right-radius: 60px; border-top-left-radius: 60px; border-top-right-radius: 60px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 4px 12px 4px 12px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-e0pXp .framer-st27s3, .framer-e0pXp .framer-1ua8mqe, .framer-e0pXp .framer-1ysgh53 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-e0pXp .framer-1elpyvj { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0.1); border-bottom-left-radius: 60px; border-bottom-right-radius: 60px; border-top-left-radius: 60px; border-top-right-radius: 60px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 4px 12px 4px 12px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-e0pXp .framer-804d41 { --border-bottom-width: 1px; --border-color: #0788ff; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: rgba(7, 136, 255, 0.1); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 24px; position: sticky; top: 100px; width: 393px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-e0pXp .framer-ev12u8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-e0pXp .framer-1rq750o { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-e0pXp .framer-15fdme2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-e0pXp .framer-wtdj0v { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-e0pXp .framer-1yvpajy { flex: none; height: 100vh; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-e0pXp .framer-qaw2vo { background: linear-gradient(180deg, rgba(6, 7, 10, 0.3) 0%, rgba(6, 7, 10, 1) 100%); flex: none; height: 100vh; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-e0pXp .framer-17porw-container { bottom: 70px; flex: none; height: auto; position: fixed; right: 20px; width: auto; z-index: 3; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-e0pXp.framer-1kahds2, .framer-e0pXp .framer-1q2eqy4, .framer-e0pXp .framer-h3n8pa, .framer-e0pXp .framer-mycmfh, .framer-e0pXp .framer-1j5139c, .framer-e0pXp .framer-2f3x8k, .framer-e0pXp .framer-1n49c5z, .framer-e0pXp .framer-192h1g, .framer-e0pXp .framer-13nuwy5, .framer-e0pXp .framer-1ou99hs, .framer-e0pXp .framer-5gpe5s, .framer-e0pXp .framer-1fybodv, .framer-e0pXp .framer-1ri7qla, .framer-e0pXp .framer-2zm0an, .framer-e0pXp .framer-16jg2j2, .framer-e0pXp .framer-iur6y9, .framer-e0pXp .framer-jy6dlo, .framer-e0pXp .framer-v9h4pi, .framer-e0pXp .framer-1e34d00, .framer-e0pXp .framer-65yvd0, .framer-e0pXp .framer-1mfuonv, .framer-e0pXp .framer-k49oql, .framer-e0pXp .framer-arw43n, .framer-e0pXp .framer-1ih520y, .framer-e0pXp .framer-3tf3nb, .framer-e0pXp .framer-106fck6, .framer-e0pXp .framer-13pev9k, .framer-e0pXp .framer-1cpwg2k, .framer-e0pXp .framer-83hqqg, .framer-e0pXp .framer-1w3vmme, .framer-e0pXp .framer-1j2dnmu, .framer-e0pXp .framer-1v1j4m3, .framer-e0pXp .framer-jj63yc, .framer-e0pXp .framer-7ehmhh, .framer-e0pXp .framer-d820ev, .framer-e0pXp .framer-79wrp, .framer-e0pXp .framer-ymrjhg, .framer-e0pXp .framer-1y07f5g, .framer-e0pXp .framer-1vjum0u, .framer-e0pXp .framer-hzl24l, .framer-e0pXp .framer-18rne4t, .framer-e0pXp .framer-1elpyvj, .framer-e0pXp .framer-804d41, .framer-e0pXp .framer-ev12u8, .framer-e0pXp .framer-1rq750o, .framer-e0pXp .framer-15fdme2, .framer-e0pXp .framer-12q4ymk, .framer-e0pXp .framer-wtdj0v, .framer-e0pXp .framer-16gt1ih, .framer-e0pXp .framer-1xrc5ch, .framer-e0pXp .framer-1icvjut, .framer-e0pXp .framer-1prcf6m, .framer-e0pXp .framer-pagtid, .framer-e0pXp .framer-foxxdr, .framer-e0pXp .framer-1drap3x, .framer-e0pXp .framer-pc0eeg, .framer-e0pXp .framer-orske3, .framer-e0pXp .framer-n4o2bw, .framer-e0pXp .framer-90nv8p { gap: 0px; } .framer-e0pXp.framer-1kahds2 > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-e0pXp.framer-1kahds2 > :first-child, .framer-e0pXp .framer-1q2eqy4 > :first-child, .framer-e0pXp .framer-h3n8pa > :first-child, .framer-e0pXp .framer-13nuwy5 > :first-child, .framer-e0pXp .framer-v9h4pi > :first-child, .framer-e0pXp .framer-1e34d00 > :first-child, .framer-e0pXp .framer-65yvd0 > :first-child, .framer-e0pXp .framer-1mfuonv > :first-child, .framer-e0pXp .framer-arw43n > :first-child, .framer-e0pXp .framer-1ih520y > :first-child, .framer-e0pXp .framer-3tf3nb > :first-child, .framer-e0pXp .framer-106fck6 > :first-child, .framer-e0pXp .framer-1cpwg2k > :first-child, .framer-e0pXp .framer-83hqqg > :first-child, .framer-e0pXp .framer-1j2dnmu > :first-child, .framer-e0pXp .framer-1v1j4m3 > :first-child, .framer-e0pXp .framer-jj63yc > :first-child, .framer-e0pXp .framer-7ehmhh > :first-child, .framer-e0pXp .framer-d820ev > :first-child, .framer-e0pXp .framer-79wrp > :first-child, .framer-e0pXp .framer-ymrjhg > :first-child, .framer-e0pXp .framer-1y07f5g > :first-child, .framer-e0pXp .framer-1vjum0u > :first-child, .framer-e0pXp .framer-804d41 > :first-child, .framer-e0pXp .framer-ev12u8 > :first-child, .framer-e0pXp .framer-1rq750o > :first-child, .framer-e0pXp .framer-1xrc5ch > :first-child, .framer-e0pXp .framer-90nv8p > :first-child { margin-top: 0px; } .framer-e0pXp.framer-1kahds2 > :last-child, .framer-e0pXp .framer-1q2eqy4 > :last-child, .framer-e0pXp .framer-h3n8pa > :last-child, .framer-e0pXp .framer-13nuwy5 > :last-child, .framer-e0pXp .framer-v9h4pi > :last-child, .framer-e0pXp .framer-1e34d00 > :last-child, .framer-e0pXp .framer-65yvd0 > :last-child, .framer-e0pXp .framer-1mfuonv > :last-child, .framer-e0pXp .framer-arw43n > :last-child, .framer-e0pXp .framer-1ih520y > :last-child, .framer-e0pXp .framer-3tf3nb > :last-child, .framer-e0pXp .framer-106fck6 > :last-child, .framer-e0pXp .framer-1cpwg2k > :last-child, .framer-e0pXp .framer-83hqqg > :last-child, .framer-e0pXp .framer-1j2dnmu > :last-child, .framer-e0pXp .framer-1v1j4m3 > :last-child, .framer-e0pXp .framer-jj63yc > :last-child, .framer-e0pXp .framer-7ehmhh > :last-child, .framer-e0pXp .framer-d820ev > :last-child, .framer-e0pXp .framer-79wrp > :last-child, .framer-e0pXp .framer-ymrjhg > :last-child, .framer-e0pXp .framer-1y07f5g > :last-child, .framer-e0pXp .framer-1vjum0u > :last-child, .framer-e0pXp .framer-804d41 > :last-child, .framer-e0pXp .framer-ev12u8 > :last-child, .framer-e0pXp .framer-1rq750o > :last-child, .framer-e0pXp .framer-1xrc5ch > :last-child, .framer-e0pXp .framer-90nv8p > :last-child { margin-bottom: 0px; } .framer-e0pXp .framer-1q2eqy4 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-e0pXp .framer-h3n8pa > *, .framer-e0pXp .framer-1j2dnmu > *, .framer-e0pXp .framer-1v1j4m3 > *, .framer-e0pXp .framer-jj63yc > *, .framer-e0pXp .framer-7ehmhh > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-e0pXp .framer-mycmfh > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-e0pXp .framer-mycmfh > :first-child, .framer-e0pXp .framer-1j5139c > :first-child, .framer-e0pXp .framer-2f3x8k > :first-child, .framer-e0pXp .framer-1n49c5z > :first-child, .framer-e0pXp .framer-192h1g > :first-child, .framer-e0pXp .framer-1ou99hs > :first-child, .framer-e0pXp .framer-5gpe5s > :first-child, .framer-e0pXp .framer-1fybodv > :first-child, .framer-e0pXp .framer-1ri7qla > :first-child, .framer-e0pXp .framer-2zm0an > :first-child, .framer-e0pXp .framer-16jg2j2 > :first-child, .framer-e0pXp .framer-iur6y9 > :first-child, .framer-e0pXp .framer-jy6dlo > :first-child, .framer-e0pXp .framer-k49oql > :first-child, .framer-e0pXp .framer-13pev9k > :first-child, .framer-e0pXp .framer-1w3vmme > :first-child, .framer-e0pXp .framer-hzl24l > :first-child, .framer-e0pXp .framer-18rne4t > :first-child, .framer-e0pXp .framer-1elpyvj > :first-child, .framer-e0pXp .framer-15fdme2 > :first-child, .framer-e0pXp .framer-12q4ymk > :first-child, .framer-e0pXp .framer-wtdj0v > :first-child, .framer-e0pXp .framer-16gt1ih > :first-child, .framer-e0pXp .framer-1icvjut > :first-child, .framer-e0pXp .framer-1prcf6m > :first-child, .framer-e0pXp .framer-pagtid > :first-child, .framer-e0pXp .framer-foxxdr > :first-child, .framer-e0pXp .framer-1drap3x > :first-child, .framer-e0pXp .framer-pc0eeg > :first-child, .framer-e0pXp .framer-orske3 > :first-child, .framer-e0pXp .framer-n4o2bw > :first-child { margin-left: 0px; } .framer-e0pXp .framer-mycmfh > :last-child, .framer-e0pXp .framer-1j5139c > :last-child, .framer-e0pXp .framer-2f3x8k > :last-child, .framer-e0pXp .framer-1n49c5z > :last-child, .framer-e0pXp .framer-192h1g > :last-child, .framer-e0pXp .framer-1ou99hs > :last-child, .framer-e0pXp .framer-5gpe5s > :last-child, .framer-e0pXp .framer-1fybodv > :last-child, .framer-e0pXp .framer-1ri7qla > :last-child, .framer-e0pXp .framer-2zm0an > :last-child, .framer-e0pXp .framer-16jg2j2 > :last-child, .framer-e0pXp .framer-iur6y9 > :last-child, .framer-e0pXp .framer-jy6dlo > :last-child, .framer-e0pXp .framer-k49oql > :last-child, .framer-e0pXp .framer-13pev9k > :last-child, .framer-e0pXp .framer-1w3vmme > :last-child, .framer-e0pXp .framer-hzl24l > :last-child, .framer-e0pXp .framer-18rne4t > :last-child, .framer-e0pXp .framer-1elpyvj > :last-child, .framer-e0pXp .framer-15fdme2 > :last-child, .framer-e0pXp .framer-12q4ymk > :last-child, .framer-e0pXp .framer-wtdj0v > :last-child, .framer-e0pXp .framer-16gt1ih > :last-child, .framer-e0pXp .framer-1icvjut > :last-child, .framer-e0pXp .framer-1prcf6m > :last-child, .framer-e0pXp .framer-pagtid > :last-child, .framer-e0pXp .framer-foxxdr > :last-child, .framer-e0pXp .framer-1drap3x > :last-child, .framer-e0pXp .framer-pc0eeg > :last-child, .framer-e0pXp .framer-orske3 > :last-child, .framer-e0pXp .framer-n4o2bw > :last-child { margin-right: 0px; } .framer-e0pXp .framer-1j5139c > *, .framer-e0pXp .framer-hzl24l > *, .framer-e0pXp .framer-15fdme2 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-e0pXp .framer-2f3x8k > *, .framer-e0pXp .framer-1n49c5z > *, .framer-e0pXp .framer-5gpe5s > *, .framer-e0pXp .framer-2zm0an > *, .framer-e0pXp .framer-iur6y9 > *, .framer-e0pXp .framer-18rne4t > *, .framer-e0pXp .framer-12q4ymk > *, .framer-e0pXp .framer-wtdj0v > *, .framer-e0pXp .framer-1prcf6m > *, .framer-e0pXp .framer-1drap3x > *, .framer-e0pXp .framer-orske3 > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-e0pXp .framer-192h1g > *, .framer-e0pXp .framer-16gt1ih > * { margin: 0px; margin-left: calc(1px / 2); margin-right: calc(1px / 2); } .framer-e0pXp .framer-13nuwy5 > *, .framer-e0pXp .framer-1cpwg2k > *, .framer-e0pXp .framer-1xrc5ch > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-e0pXp .framer-1ou99hs > *, .framer-e0pXp .framer-1fybodv > *, .framer-e0pXp .framer-1ri7qla > *, .framer-e0pXp .framer-16jg2j2 > *, .framer-e0pXp .framer-jy6dlo > *, .framer-e0pXp .framer-1icvjut > *, .framer-e0pXp .framer-pagtid > *, .framer-e0pXp .framer-foxxdr > *, .framer-e0pXp .framer-pc0eeg > *, .framer-e0pXp .framer-n4o2bw > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-e0pXp .framer-v9h4pi > *, .framer-e0pXp .framer-ev12u8 > *, .framer-e0pXp .framer-90nv8p > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-e0pXp .framer-1e34d00 > *, .framer-e0pXp .framer-arw43n > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-e0pXp .framer-65yvd0 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-e0pXp .framer-1mfuonv > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-e0pXp .framer-k49oql > * { margin: 0px; margin-left: calc(72px / 2); margin-right: calc(72px / 2); } .framer-e0pXp .framer-1ih520y > *, .framer-e0pXp .framer-3tf3nb > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-e0pXp .framer-106fck6 > *, .framer-e0pXp .framer-83hqqg > *, .framer-e0pXp .framer-d820ev > *, .framer-e0pXp .framer-ymrjhg > *, .framer-e0pXp .framer-804d41 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-e0pXp .framer-13pev9k > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-e0pXp .framer-1w3vmme > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-e0pXp .framer-79wrp > *, .framer-e0pXp .framer-1rq750o > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-e0pXp .framer-1y07f5g > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-e0pXp .framer-1vjum0u > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-e0pXp .framer-1elpyvj > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\"@media (min-width: 1440px) { .framer-e0pXp .hidden-1kahds2 { display: none !important; } }\",`@media (min-width: 1200px) and (max-width: 1439px) { .framer-e0pXp .hidden-1f4lftj { display: none !important; } .${metadata.bodyClassName}-framer-e0pXp { background: rgb(6, 7, 10); } .framer-e0pXp.framer-1kahds2 { width: 1200px; } .framer-e0pXp .framer-1e34d00, .framer-e0pXp .framer-65yvd0, .framer-e0pXp .framer-1mfuonv, .framer-e0pXp .framer-xwhxgv, .framer-e0pXp .framer-7u7ix4, .framer-e0pXp .framer-au9geq, .framer-e0pXp .framer-1gtjepx, .framer-e0pXp .framer-106fck6, .framer-e0pXp .framer-13pev9k, .framer-e0pXp .framer-rdqng2, .framer-e0pXp .framer-129irqj, .framer-e0pXp .framer-srtcdl, .framer-e0pXp .framer-18fkhio, .framer-e0pXp .framer-uscqjd, .framer-e0pXp .framer-kbu79c, .framer-e0pXp .framer-12me903, .framer-e0pXp .framer-l27ja3, .framer-e0pXp .framer-drobys, .framer-e0pXp .framer-103n0nf, .framer-e0pXp .framer-d820ev, .framer-e0pXp .framer-etmdlv, .framer-e0pXp .framer-79wrp, .framer-e0pXp .framer-ymrjhg, .framer-e0pXp .framer-1c54tyf { width: 100%; } .framer-e0pXp .framer-11deuc8-container { aspect-ratio: 1.7818181818181817 / 1; height: var(--framer-aspect-ratio-supported, 510px); width: 80%; } .framer-e0pXp .framer-k49oql { gap: 56px; width: 100%; } .framer-e0pXp .framer-128xwq9 { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-e0pXp .framer-fvgb05 { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 350px); width: 350px; } .framer-e0pXp .framer-1cpwg2k { flex: 1 0 0px; width: 1px; } .framer-e0pXp .framer-1w3vmme { align-content: unset; align-items: unset; display: grid; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(200px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); justify-content: center; } .framer-e0pXp .framer-1j2dnmu, .framer-e0pXp .framer-1v1j4m3, .framer-e0pXp .framer-jj63yc, .framer-e0pXp .framer-7ehmhh { align-self: start; height: 100%; justify-self: start; width: 100%; } .framer-e0pXp .framer-1y07f5g { align-self: unset; width: 100%; } .framer-e0pXp .framer-804d41 { width: 320px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-e0pXp .framer-k49oql, .framer-e0pXp .framer-1w3vmme { gap: 0px; } .framer-e0pXp .framer-k49oql > * { margin: 0px; margin-left: calc(56px / 2); margin-right: calc(56px / 2); } .framer-e0pXp .framer-k49oql > :first-child { margin-left: 0px; } .framer-e0pXp .framer-k49oql > :last-child { margin-right: 0px; } .framer-e0pXp .framer-1w3vmme > *, .framer-e0pXp .framer-1w3vmme > :first-child, .framer-e0pXp .framer-1w3vmme > :last-child { margin: 0px; } }}`,`@media (min-width: 810px) and (max-width: 1199px) { .framer-e0pXp .hidden-1r3iknj { display: none !important; } .${metadata.bodyClassName}-framer-e0pXp { background: rgb(6, 7, 10); } .framer-e0pXp.framer-1kahds2 { width: 810px; } .framer-e0pXp .framer-1e34d00, .framer-e0pXp .framer-65yvd0, .framer-e0pXp .framer-1mfuonv, .framer-e0pXp .framer-171ldqz, .framer-e0pXp .framer-xwhxgv, .framer-e0pXp .framer-7u7ix4, .framer-e0pXp .framer-au9geq, .framer-e0pXp .framer-1gtjepx, .framer-e0pXp .framer-106fck6, .framer-e0pXp .framer-1cpwg2k, .framer-e0pXp .framer-rdqng2, .framer-e0pXp .framer-129irqj, .framer-e0pXp .framer-srtcdl, .framer-e0pXp .framer-18fkhio, .framer-e0pXp .framer-uscqjd, .framer-e0pXp .framer-kbu79c, .framer-e0pXp .framer-12me903, .framer-e0pXp .framer-l27ja3, .framer-e0pXp .framer-drobys, .framer-e0pXp .framer-103n0nf, .framer-e0pXp .framer-d820ev, .framer-e0pXp .framer-etmdlv, .framer-e0pXp .framer-79wrp, .framer-e0pXp .framer-ymrjhg, .framer-e0pXp .framer-1c54tyf { width: 100%; } .framer-e0pXp .framer-11deuc8-container { aspect-ratio: 1.7818181818181817 / 1; height: var(--framer-aspect-ratio-supported, 335px); width: 80%; } .framer-e0pXp .framer-k49oql { gap: 56px; width: 100%; } .framer-e0pXp .framer-arw43n { gap: 72px; } .framer-e0pXp .framer-128xwq9 { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-e0pXp .framer-13pev9k { flex-direction: column; width: 100%; } .framer-e0pXp .framer-fvgb05 { aspect-ratio: 0.978021978021978 / 1; height: var(--framer-aspect-ratio-supported, 358px); width: 350px; } .framer-e0pXp .framer-1w3vmme { align-content: unset; align-items: unset; display: grid; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(200px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); justify-content: center; } .framer-e0pXp .framer-1j2dnmu, .framer-e0pXp .framer-1v1j4m3, .framer-e0pXp .framer-jj63yc, .framer-e0pXp .framer-7ehmhh { align-self: start; height: 100%; justify-self: start; width: 100%; } .framer-e0pXp .framer-1y07f5g { align-self: unset; width: 100%; } .framer-e0pXp .framer-xf4ktn { height: 328px; } .framer-e0pXp .framer-7kdm7o { border-bottom-left-radius: 70px; border-bottom-right-radius: 70px; border-top-left-radius: 70px; border-top-right-radius: 70px; bottom: unset; height: 76px; left: 16px; top: 16px; width: 56px; } .framer-e0pXp .framer-1cl7dtj { left: unset; right: 16px; top: 47px; } .framer-e0pXp .framer-1vjum0u { left: 16px; top: 108px; } .framer-e0pXp .framer-hzl24l { bottom: 16px; left: 16px; } .framer-e0pXp .framer-804d41 { width: 320px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-e0pXp .framer-k49oql, .framer-e0pXp .framer-arw43n, .framer-e0pXp .framer-13pev9k, .framer-e0pXp .framer-1w3vmme { gap: 0px; } .framer-e0pXp .framer-k49oql > * { margin: 0px; margin-left: calc(56px / 2); margin-right: calc(56px / 2); } .framer-e0pXp .framer-k49oql > :first-child { margin-left: 0px; } .framer-e0pXp .framer-k49oql > :last-child { margin-right: 0px; } .framer-e0pXp .framer-arw43n > * { margin: 0px; margin-bottom: calc(72px / 2); margin-top: calc(72px / 2); } .framer-e0pXp .framer-arw43n > :first-child, .framer-e0pXp .framer-13pev9k > :first-child { margin-top: 0px; } .framer-e0pXp .framer-arw43n > :last-child, .framer-e0pXp .framer-13pev9k > :last-child { margin-bottom: 0px; } .framer-e0pXp .framer-13pev9k > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-e0pXp .framer-1w3vmme > *, .framer-e0pXp .framer-1w3vmme > :first-child, .framer-e0pXp .framer-1w3vmme > :last-child { margin: 0px; } }}`,`@media (max-width: 809px) { .framer-e0pXp .hidden-otxqv1 { display: none !important; } .${metadata.bodyClassName}-framer-e0pXp { background: rgb(6, 7, 10); } .framer-e0pXp.framer-1kahds2 { padding: 0px 16px 192px 16px; width: 360px; } .framer-e0pXp .framer-2f3x8k { align-content: center; align-items: center; } .framer-e0pXp .framer-4jlwjr-container { height: 68px; } .framer-e0pXp .framer-1e34d00, .framer-e0pXp .framer-1mfuonv, .framer-e0pXp .framer-171ldqz, .framer-e0pXp .framer-xwhxgv, .framer-e0pXp .framer-7u7ix4, .framer-e0pXp .framer-au9geq, .framer-e0pXp .framer-1gtjepx, .framer-e0pXp .framer-rdqng2, .framer-e0pXp .framer-129irqj, .framer-e0pXp .framer-srtcdl, .framer-e0pXp .framer-18fkhio, .framer-e0pXp .framer-uscqjd, .framer-e0pXp .framer-kbu79c, .framer-e0pXp .framer-12me903, .framer-e0pXp .framer-l27ja3, .framer-e0pXp .framer-drobys, .framer-e0pXp .framer-103n0nf, .framer-e0pXp .framer-etmdlv, .framer-e0pXp .framer-79wrp, .framer-e0pXp .framer-1c54tyf { width: 100%; } .framer-e0pXp .framer-65yvd0 { gap: 32px; width: 100%; } .framer-e0pXp .framer-11deuc8-container { aspect-ratio: 1.7818181818181817 / 1; height: var(--framer-aspect-ratio-supported, 112px); width: 100%; } .framer-e0pXp .framer-k49oql { gap: 56px; width: 100%; } .framer-e0pXp .framer-arw43n { gap: 64px; } .framer-e0pXp .framer-1ih520y, .framer-e0pXp .framer-3tf3nb, .framer-e0pXp .framer-83hqqg { gap: 24px; } .framer-e0pXp .framer-106fck6, .framer-e0pXp .framer-d820ev, .framer-e0pXp .framer-ymrjhg { gap: 24px; width: 100%; } .framer-e0pXp .framer-128xwq9 { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-e0pXp .framer-13pev9k { flex-direction: column; width: 100%; } .framer-e0pXp .framer-fvgb05 { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 250px); width: 250px; } .framer-e0pXp .framer-1cpwg2k { gap: 8px; width: 100%; } .framer-e0pXp .framer-1w3vmme { flex-direction: column; gap: 8px; } .framer-e0pXp .framer-1j2dnmu, .framer-e0pXp .framer-1v1j4m3, .framer-e0pXp .framer-jj63yc, .framer-e0pXp .framer-7ehmhh { height: auto; padding: 20px; width: 100%; } .framer-e0pXp .framer-1y07f5g { align-self: unset; width: 100%; } .framer-e0pXp .framer-xf4ktn { height: 328px; } .framer-e0pXp .framer-7kdm7o { border-bottom-left-radius: 70px; border-bottom-right-radius: 70px; border-top-left-radius: 70px; border-top-right-radius: 70px; bottom: unset; height: 76px; left: 16px; top: 16px; width: 56px; } .framer-e0pXp .framer-1cl7dtj { left: unset; right: 16px; top: 47px; } .framer-e0pXp .framer-1vjum0u { left: 16px; top: 108px; } .framer-e0pXp .framer-hzl24l { bottom: 16px; left: 16px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-e0pXp .framer-65yvd0, .framer-e0pXp .framer-k49oql, .framer-e0pXp .framer-arw43n, .framer-e0pXp .framer-1ih520y, .framer-e0pXp .framer-3tf3nb, .framer-e0pXp .framer-106fck6, .framer-e0pXp .framer-13pev9k, .framer-e0pXp .framer-1cpwg2k, .framer-e0pXp .framer-83hqqg, .framer-e0pXp .framer-1w3vmme, .framer-e0pXp .framer-d820ev, .framer-e0pXp .framer-ymrjhg { gap: 0px; } .framer-e0pXp .framer-65yvd0 > *, .framer-e0pXp .framer-13pev9k > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-e0pXp .framer-65yvd0 > :first-child, .framer-e0pXp .framer-arw43n > :first-child, .framer-e0pXp .framer-1ih520y > :first-child, .framer-e0pXp .framer-3tf3nb > :first-child, .framer-e0pXp .framer-106fck6 > :first-child, .framer-e0pXp .framer-13pev9k > :first-child, .framer-e0pXp .framer-1cpwg2k > :first-child, .framer-e0pXp .framer-83hqqg > :first-child, .framer-e0pXp .framer-1w3vmme > :first-child, .framer-e0pXp .framer-d820ev > :first-child, .framer-e0pXp .framer-ymrjhg > :first-child { margin-top: 0px; } .framer-e0pXp .framer-65yvd0 > :last-child, .framer-e0pXp .framer-arw43n > :last-child, .framer-e0pXp .framer-1ih520y > :last-child, .framer-e0pXp .framer-3tf3nb > :last-child, .framer-e0pXp .framer-106fck6 > :last-child, .framer-e0pXp .framer-13pev9k > :last-child, .framer-e0pXp .framer-1cpwg2k > :last-child, .framer-e0pXp .framer-83hqqg > :last-child, .framer-e0pXp .framer-1w3vmme > :last-child, .framer-e0pXp .framer-d820ev > :last-child, .framer-e0pXp .framer-ymrjhg > :last-child { margin-bottom: 0px; } .framer-e0pXp .framer-k49oql > * { margin: 0px; margin-left: calc(56px / 2); margin-right: calc(56px / 2); } .framer-e0pXp .framer-k49oql > :first-child { margin-left: 0px; } .framer-e0pXp .framer-k49oql > :last-child { margin-right: 0px; } .framer-e0pXp .framer-arw43n > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-e0pXp .framer-1ih520y > *, .framer-e0pXp .framer-3tf3nb > *, .framer-e0pXp .framer-106fck6 > *, .framer-e0pXp .framer-83hqqg > *, .framer-e0pXp .framer-d820ev > *, .framer-e0pXp .framer-ymrjhg > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-e0pXp .framer-1cpwg2k > *, .framer-e0pXp .framer-1w3vmme > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,'.framer-e0pXp[data-border=\"true\"]::after, .framer-e0pXp [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; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4812\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"gEqn1xdqU\":{\"layout\":[\"fixed\",\"auto\"]},\"voOEodHGo\":{\"layout\":[\"fixed\",\"auto\"]},\"GcMW1GXWQ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramergxylYdPOn=withCSS(Component,css,\"framer-e0pXp\");export default FramergxylYdPOn;FramergxylYdPOn.displayName=\"Courses\";FramergxylYdPOn.defaultProps={height:4812,width:1440};addFonts(FramergxylYdPOn,[{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://app.framerstatic.com/Inter-Medium.cyrillic-ext-M4WHNGTS.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Medium.cyrillic-JVU2PANX.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Medium.greek-ext-4KCQBEIZ.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Medium.greek-DPOQGN7L.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-Medium.latin-ext-J4DBSW7F.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-Medium.latin-Y3IVPL46.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-Medium.vietnamese-PJV76O4P.woff2\",weight:\"500\"},{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://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Bold.cyrillic-ext-XOTVL7ZR.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Bold.cyrillic-6LOMBC2V.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Bold.greek-ext-WXWSJXLB.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Bold.greek-YRST7ODZ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-Bold.latin-ext-BASA5UL3.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-Bold.latin-UCM45LQF.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-Bold.vietnamese-OEVJMXEP.woff2\",weight:\"700\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-SemiBold.cyrillic-ext-C7KWUKA7.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-SemiBold.cyrillic-JWV7SOZ6.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-SemiBold.greek-ext-FBKSFTSU.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-SemiBold.greek-EQ3PSENU.woff2\",weight:\"600\"},{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://app.framerstatic.com/Inter-SemiBold.latin-ext-ULRSO3ZR.woff2\",weight:\"600\"},{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://app.framerstatic.com/Inter-SemiBold.latin-RDYY2AG2.woff2\",weight:\"600\"},{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://app.framerstatic.com/Inter-SemiBold.vietnamese-ESQNSEQ3.woff2\",weight:\"600\"}]},...CountdownFonts,...FluidCTAFonts,...HeaderFonts,...YouTubeFonts,...SyllabusItemFonts,...FooterFonts,...CTABrightWOArrowFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramergxylYdPOn\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1440\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gEqn1xdqU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"voOEodHGo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GcMW1GXWQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"4812\",\"framerResponsiveScreen\":\"\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["PlayOptions", "ThumbnailOptions", "ThumbnailFormat", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "thumbnailURL", "getThumbnailURL", "getWebPSupported", "searchParams", "u", "wrapperStyle", "videoStyle", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "embedURL1", "videoId2", "embedURL2", "res", "format", "pre", "ext", "_getWebPSupported", "window", "element", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "link", "price", "width", "props", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "DEwkkAJz5", "gKL9DS8qI", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "RichText", "css", "FramerpzXETq_7e", "withCSS", "pzXETq_7e_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "transitions", "transformTemplate1", "_", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "divider", "height", "id", "lessonDesc", "lessonName", "lessonNumber", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "NGOXD1IqE", "gWW_sT9VE", "Ued2d5Wd2", "NbZpizrZz", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "RichText", "css", "FramerRg250I05I", "withCSS", "Rg250I05I_default", "addPropertyControls", "ControlType", "addFonts", "Ne", "Yt", "ue", "Tr", "Ut", "e", "r", "n", "a", "o", "u", "l", "d", "m", "f", "v", "R", "T", "Ut", "Yt", "q", "Ne", "te", "Be", "r", "n", "a", "Qr", "Bt", "Ht", "Gt", "Jt", "Kt", "o", "i", "u", "j", "Pe", "w", "Xe", "Ze", "Qe", "Xt", "et", "Zt", "De", "Qt", "en", "I", "rt", "rn", "x", "He", "pe", "U", "er", "_e", "tn", "Ie", "ie", "tt", "M", "oe", "$e", "fe", "nn", "an", "L", "B", "Ce", "ve", "he", "nt", "at", "Re", "Ge", "on", "sn", "cn", "ln", "ke", "l", "d", "m", "f", "v", "R", "T", "S", "p", "k", "g", "D", "Y", "$", "V", "O", "fn", "Ar", "Pr", "ae", "dn", "pn", "hn", "mn", "vn", "gn", "Dr", "yn", "bn", "ot", "r", "en", "w", "Pe", "j", "x", "U", "I", "He", "On", "n", "i", "Qe", "et", "ae", "fe", "Ze", "tn", "o", "rn", "Cn", "Rn", "p", "k", "u", "_", "d", "m", "yn", "bn", "f", "v", "dn", "hn", "R", "pn", "T", "ln", "g", "D", "S", "Kt", "kn", "st", "a", "rr", "ct", "Tn", "Nn", "An", "ut", "tr", "r", "jr", "qe", "Qr", "Ae", "n", "i", "o", "z", "Nn", "me", "r", "n", "z", "a", "Fn", "o", "u", "l", "d", "m", "jr", "qe", "Ae", "Fr", "z", "Je", "r", "n", "i", "o", "u", "me", "d", "Fr", "m", "f", "v", "Tn", "Mn", "Ln", "ie", "dt", "Wn", "nr", "Rn", "pt", "Y", "re", "ar", "Un", "Ht", "qn", "r", "Wr", "zr", "n", "i", "o", "u", "Bn", "r", "n", "i", "rr", "dt", "ct", "Hn", "a", "o", "u", "l", "zr", "d", "Wr", "m", "f", "v", "R", "T", "S", "pt", "p", "k", "g", "D", "Y", "$", "V", "re", "ar", "st", "O", "Je", "je", "X", "Q", "B", "x", "Be", "K", "Jn", "te", "Kn", "q", "Xn", "Zn", "de", "Te", "J", "Qn", "xe", "ea", "Ur", "qr", "Br", "ra", "Hr", "Se", "ta", "se", "pe", "ye", "ue", "na", "Oe", "aa", "oa", "sa", "addPropertyControls", "Countdown", "oa", "props", "p", "sa", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "CountdownFonts", "getFonts", "Countdown", "FluidCTAFonts", "pzXETq_7e_default", "HeaderFonts", "xVBFlZDlC_default", "HeaderWithVariantAppearEffect", "withVariantAppearEffect", "YouTubeFonts", "Youtube", "SyllabusItemFonts", "Rg250I05I_default", "FooterFonts", "uSZg4gZO1_default", "CTABrightWOArrowFonts", "v5IvmsTaG_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "animation2", "transition2", "animation3", "animation4", "animation5", "transition3", "animation6", "animation7", "transition4", "animation8", "animation9", "transition5", "animation10", "animation11", "toResponsiveImage", "value", "QueryData", "query", "children", "data", "useQueryData", "transition6", "animation12", "animation13", "animation14", "transition7", "animation15", "animation16", "animation17", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "jvSxvyXvp_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "a7TS2b5yz", "LxX9T1enw", "h19GLtYcr", "GaMy8Mj1G", "ov3tDgVCX", "GDhCT_b_S", "amAHnxdyB", "nhQzhGP1U", "WmlJS2NCw", "LHOse_l3U", "Ovzk4qM_k", "KeRc0ef0I", "D0CPNpVld", "iEIMgbaOU", "ErtS0x7aq", "CcgitivOH", "NtCXN8JxVK5G3DveHr", "wZExv_5vHK5G3DveHr", "zulmAYJizK5G3DveHr", "pRkNNgkDjK5G3DveHr", "WmlJS2NCwK5G3DveHr", "LHOse_l3UK5G3DveHr", "ov3tDgVCXK5G3DveHr", "GDhCT_b_SK5G3DveHr", "idK5G3DveHr", "pRkNNgkDj", "h5tTW6UtJ", "bB_BZEODV", "restProps", "ie", "metadata1", "_document_querySelector", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "ref1", "pe", "isDisplayed", "isDisplayed1", "ref2", "useRouteElementId", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "RichText", "x", "SVG", "ComponentViewportProvider", "Container", "Countdown", "PropertyOverrides", "pzXETq_7e_default", "optimizeAppear", "HeaderWithVariantAppearEffect", "Youtube", "Image2", "Rg250I05I_default", "collection", "i", "_enumToDisplayNameFunctions_pRkNNgkDj", "textContent", "enumToDisplayNameFunctions", "PathVariablesContext", "Link", "ResolveLinks", "resolvedLinks", "uSZg4gZO1_default", "v5IvmsTaG_default", "css", "FramergxylYdPOn", "withCSS", "gxylYdPOn_default", "addFonts", "CountdownFonts", "FluidCTAFonts", "HeaderFonts", "YouTubeFonts", "SyllabusItemFonts", "FooterFonts", "CTABrightWOArrowFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
