{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/oWVHHLIj4Q7woeIlKzbt/jYhpKd65JZqDsK3oy7GY/Input.js", "ssg:https://framerusercontent.com/modules/7Ya13WerDoX9bt4mWvWC/qkkBVppKTpEyuM4IWVhw/WUs0OKP3U.js", "ssg:https://framerusercontent.com/modules/DzlpkoNH93JAHXk4a09j/qWtUeLOL9wH0GHY0baph/BcinYFtiY.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useCallback,useState}from\"react\";import{addPropertyControls,ControlType,withCSS,useRouter,inferInitialRouteFromPath}from\"framer\";import{motion,useAnimationControls}from\"framer-motion\";const emailRegex=/^(([^<>()[\\]\\\\.,;:\\s@\"]+(\\.[^<>()[\\]\\\\.,;:\\s@\"]+)*)|(\".+\"))@((\\[[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\])|(([a-zA-Z\\-0-9]+\\.)+[a-zA-Z]{2,}))$/;const mailchimpRegex=/^https?:\\/\\/([^\\/]+)[^\\?]+\\??(.+)$/;const validateEmail=email=>{return emailRegex.test(String(email).toLowerCase());};const parseMailChimpUrl=url=>{var _url_replace_match;const[,domain,parameters]=(_url_replace_match=url.replace(\"&amp;\",\"&\").match(mailchimpRegex))!==null&&_url_replace_match!==void 0?_url_replace_match:[null,null,null];return[domain,parameters?new URLSearchParams(parameters):null];};function safeURL(url){console.log(url);try{new URL(url);return url;}catch{try{new URL(`https://${url}`);return`https://${url}`;}catch{}}return undefined;}function isInternalURL(href){if(href===undefined)return false;if(href.startsWith(\"#\")||href.startsWith(\"/\")||href.startsWith(\".\"))return true;return false;}/**\n * Increment the number whenever shipping a new version to customers.\n * This will ensure that multiple versions of this component can exist\n * in the same project without css rules overlapping. Only use valid css class characters.\n */const VERSION=\"v1\";/**\n * INPUT\n * By Benjamin den Boer\n *\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 300\n * @framerIntrinsicHeight 40\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any\n */const Input=withCSS(function Input({service,redirectAs,mailchimpURL,loopsID,loopsUserGroup,formsparkID,getwaitlistAPI,convertkitAPI,convertkitFormID,input,button,font,layout,link,gap,style,onSubmit}){const[email,setEmail]=useState(\"\");const[isError,setError]=useState(false);const[isLoading,setLoading]=useState(false);const[isFocus,setFocus]=useState(false);// Padding\nconst{paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,padding,borderRadius,borderObject,focusObject,shadowObject,height,fixedHeight}=input;const{buttonPaddingPerSide,buttonPaddingTop,buttonPaddingRight,buttonPaddingBottom,buttonPaddingLeft,buttonPadding}=button;const paddingValue=paddingPerSide?`${paddingTop}px ${button.isDocked?paddingRight+button.widthWhenDocked:paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px ${button.isDocked?padding+button.widthWhenDocked:padding}px ${padding}px ${padding}px`;const buttonPaddingValue=buttonPaddingPerSide?`${button.isDocked?0:buttonPaddingTop}px ${buttonPaddingRight}px ${button.isDocked?0:buttonPaddingBottom}px ${buttonPaddingLeft}px`:`${button.isDocked?0:buttonPadding}px ${buttonPadding}px ${button.isDocked?0:buttonPadding}px ${buttonPadding}px`;const router=useRouter();const onSuccess=()=>{/* Reset */setLoading(false);setFocus(false);setEmail(\"\");if(redirectAs===\"link\"&&link&&!isError){const[path,hash]=link.split(\"#\");const{routeId,pathVariables}=inferInitialRouteFromPath(router.routes,path);if(routeId){router.navigate(routeId,hash,pathVariables);}if(!isInternalURL(link)){const url=safeURL(link);if(url)window.open(url,\"_blank\");}}};const validateForm=useCallback(email=>{if(email===\"\"||!validateEmail(email)){setError(true);formControls.start(\"error\");return false;}return true;},[validateEmail]);const handleChange=useCallback(event=>{setError(false);setEmail(event.target.value);},[]);const handleFocus=useCallback(event=>{setFocus(true);},[]);const handleBlur=useCallback(event=>{setFocus(false);setError(false);},[]);const handleSubmit=useCallback(event=>{event.preventDefault();// Prevent submitting while submitting\nif(isLoading)return;setLoading(true);if(service===\"mailchimp\"){const[domain,parameters]=parseMailChimpUrl(mailchimpURL);if(!validateForm(email)||!domain||!parameters){setLoading(false);return;}// MERGE0 is Mailchimp\u2019s email field name\nparameters.set(\"MERGE0\",email);fetch(`https://${domain}/subscribe/post`,{method:\"POST\",mode:\"no-cors\",headers:{\"Content-Type\":\"application/x-www-form-urlencoded;charset=UTF-8\"},body:parameters.toString()}).then(response=>{onSuccess();if(redirectAs===\"overlay\")onSubmit===null||onSubmit===void 0?void 0:onSubmit();}).catch(error=>{console.error(error);setLoading(false);setError(true);formControls.start(\"error\");});}if(service===\"loops\"){if(!validateForm(email)){setLoading(false);return;}const emailBody=`email=${encodeURIComponent(email)}`;const userGroupBody=`userGroup=${encodeURIComponent(loopsUserGroup)}`;const hasUserGroup=!!loopsUserGroup&&loopsUserGroup!==\" \";const formBody=hasUserGroup?emailBody+\"&\"+userGroupBody:emailBody;fetch(`https://app.loops.so/api/newsletter-form/${loopsID}`,{method:\"POST\",mode:\"no-cors\",headers:{\"Content-Type\":\"application/x-www-form-urlencoded\"},body:formBody}).then(()=>{onSuccess();if(redirectAs===\"overlay\")onSubmit===null||onSubmit===void 0?void 0:onSubmit();}).catch(error=>{console.error(error);setLoading(false);setError(true);formControls.start(\"error\");});}if(service===\"formspark\"){if(!validateForm(email)){setLoading(false);return;}const data=new FormData(event.target);const entries=Object.fromEntries(data.entries());fetch(`https://api.formspark.io/${formsparkID}`,{method:\"POST\",headers:{\"Content-Type\":\"application/json\",Accept:\"application/json\"},body:JSON.stringify(entries)}).then(()=>{onSuccess();onSubmit===null||onSubmit===void 0?void 0:onSubmit();}).catch(error=>{console.error(error);setLoading(false);setError(true);formControls.start(\"error\");});}if(service===\"getwaitlist\"){if(!validateForm(email)){setLoading(false);return;}const formData=new FormData(event.target);const data=Object.fromEntries(formData.entries());data.referral_link=document.URL;fetch(`https://api.getwaitlist.com/api/v1\n/waiter/`,{method:\"POST\",headers:{\"Content-Type\":\"application/json\",Accept:\"application/json\"},body:JSON.stringify(data)}).then(()=>{onSuccess();if(redirectAs===\"overlay\")onSubmit===null||onSubmit===void 0?void 0:onSubmit();}).catch(error=>{console.error(error);setLoading(false);setError(true);formControls.start(\"error\");});}if(service===\"convertkit\"){if(!validateForm(email)){setLoading(false);return;}const formData=new FormData(event.target);const data=Object.fromEntries(formData.entries());data.referral_link=document.URL;fetch(`https://api.convertkit.com/v3/forms/${convertkitFormID}/subscribe`,{method:\"POST\",headers:{\"Content-Type\":\"application/json\",Accept:\"application/json\"},body:JSON.stringify(data)}).then(()=>{onSuccess();if(redirectAs===\"overlay\")onSubmit===null||onSubmit===void 0?void 0:onSubmit();}).catch(error=>{console.error(error);setLoading(false);setError(true);formControls.start(\"error\");});}},[mailchimpURL,formsparkID,convertkitFormID,email,onSubmit,validateForm,isLoading]);// Animation\nconst formControls=useAnimationControls();// Input Box Shadow Stylees\nconst focusStylesFrom=input.focusObject?`inset 0 0 0 ${focusObject.focusWidthFrom}px ${focusObject.focusColor}`:null;const focusStylesTo=input.focusObject?`inset 0 0 0 ${focusObject.focusWidthTo}px ${focusObject.focusColor}`:null;const shadowStyles=input.shadowObject?`${shadowObject.shadowX}px ${shadowObject.shadowY}px ${shadowObject.shadowBlur}px ${shadowObject.shadowColor}`:null;const borderStyles=input.borderObject?`inset 0 0 0 ${borderObject.borderWidth}px ${borderObject.borderColor}`:null;// Shake or wiggle as error\nconst formVariants={default:{x:0},error:{x:[0,-4,4,0],transition:{duration:.2}}};const inputVariants={default:{boxShadow:dynamicBoxShadow(focusStylesFrom,shadowStyles,borderStyles)},focused:{boxShadow:dynamicBoxShadow(focusStylesTo,shadowStyles,borderStyles)}};return /*#__PURE__*/_jsx(motion.div,{style:{...style,...containerStyles,\"--framer-custom-placeholder-color\":input.placeholderColor},variants:formVariants,animate:formControls,children:/*#__PURE__*/_jsxs(\"form\",{style:{width:\"100%\",height:\"auto\",display:\"flex\",position:\"relative\",flexDirection:layout===\"vertical\"?\"column\":\"row\",color:button.color,gap:button.isDocked?0:gap},onSubmit:handleSubmit,method:\"POST\",children:[service===\"getwaitlist\"&&/*#__PURE__*/_jsx(\"input\",{type:\"hidden\",name:\"api_key\",value:getwaitlistAPI}),service===\"convertkit\"&&/*#__PURE__*/_jsx(\"input\",{type:\"hidden\",name:\"api_key\",value:convertkitAPI}),/*#__PURE__*/_jsx(motion.input,{type:\"email\",name:\"email\",placeholder:input.placeholder,value:email,className:`${VERSION} framer-custom-input`,onChange:handleChange,onFocus:handleFocus,onBlur:handleBlur,autoComplete:\"off\",autoCapitalize:\"off\",autoCorrect:\"off\",spellCheck:\"false\",style:{...defaultStyle,padding:paddingValue,borderRadius,fontSize:16,...font,background:input.fill,height:height?\"auto\":fixedHeight,color:input.color,boxShadow:dynamicBoxShadow(focusStylesFrom,shadowStyles,borderStyles)},variants:inputVariants,initial:false,animate:isFocus?\"focused\":\"default\",transition:{duration:.3},\"data-1p-ignore\":true}),!button.shouldAppear&&isLoading&&/*#__PURE__*/_jsx(Spinner,{shouldAppear:button.shouldAppear,paddingPerSide:paddingPerSide,paddingTop:paddingTop,paddingRight:paddingRight,padding:padding,color:input.color}),button.shouldAppear&&/*#__PURE__*/_jsxs(\"div\",{style:{position:button.isDocked?\"absolute\":\"relative\",top:button.isDocked?button.insetWhenDocked:0,right:button.isDocked?button.insetWhenDocked:0,bottom:button.isDocked?button.insetWhenDocked:0},children:[/*#__PURE__*/_jsx(motion.input,{type:\"submit\",value:button.label,style:{...defaultStyle,width:button.isDocked?button.widthWhenDocked:\"100%\",height:height?\"100%\":fixedHeight,cursor:\"pointer\",padding:buttonPaddingValue,borderRadius:button.isDocked?borderRadius-button.insetWhenDocked:borderRadius,// fontWeight: button.fontWeight,\nfontSize:16,...button.buttonFont,background:button.fill,color:button.color,zIndex:1,boxShadow:getButtonShadow(button)}}),isLoading&&/*#__PURE__*/_jsx(\"div\",{style:{borderRadius:button.isDocked?borderRadius-button.insetWhenDocked:borderRadius,position:\"absolute\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\",width:\"100%\",height:\"100%\",inset:0,zIndex:2,color:button.color,background:button.fill},children:/*#__PURE__*/_jsx(Spinner,{color:button.color})})]})]})});},[`.${VERSION}.framer-custom-input::placeholder { color: var(--framer-custom-placeholder-color) !important; }`]);const Spinner=props=>{const noButtonStyles=!props.shouldAppear?{position:\"absolute\",top:`calc(50% - 8px)`,right:props.paddingPerSide?props.paddingRight:props.padding}:{};return /*#__PURE__*/_jsx(motion.div,{style:{height:16,width:16,...noButtonStyles},initial:{rotate:0},animate:{rotate:360},transition:{duration:1,repeat:Infinity},children:/*#__PURE__*/_jsx(motion.div,{initial:{scale:0},animate:{scale:1},children:/*#__PURE__*/_jsxs(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",width:\"16\",height:\"16\",style:{fill:\"currentColor\",color:props.color},children:[/*#__PURE__*/_jsx(\"path\",{d:\"M 8 0 C 3.582 0 0 3.582 0 8 C 0 12.419 3.582 16 8 16 C 12.418 16 16 12.419 16 8 C 15.999 3.582 12.418 0 8 0 Z M 8 14 C 4.687 14 2 11.314 2 8 C 2 4.687 4.687 2 8 2 C 11.314 2 14 4.687 14 8 C 14 11.314 11.314 14 8 14 Z\",fill:\"currentColor\",opacity:\"0.2\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M 8 0 C 12.418 0 15.999 3.582 16 8 C 16 8 16 9 15 9 C 14 9 14 8 14 8 C 14 4.687 11.314 2 8 2 C 4.687 2 2 4.687 2 8 C 2 8 2 9 1 9 C 0 9 0 8 0 8 C 0 3.582 3.582 0 8 0 Z\",fill:\"currentColor\"})]})})});};addPropertyControls(Input,{service:{title:\"Service\",type:ControlType.Enum,options:[\"loops\",\"formspark\",\"mailchimp\",\"getwaitlist\",\"convertkit\"],optionTitles:[\"Loops\",\"FormSpark\",\"MailChimp\",\"Get Waitlist\",\"ConvertKit\"],defaultValue:\"loops\"},mailchimpURL:{title:\"URL\",placeholder:\"https://***.us6.list-manage.com/subscribe/post?u=***\",type:ControlType.String,hidden:props=>props.service!==\"mailchimp\"},loopsID:{title:\"ID\",placeholder:\"klm2jxy0i98abzr01pq7defg5\",type:ControlType.String,hidden:props=>props.service!==\"loops\"},loopsUserGroup:{title:\"User Group\",type:ControlType.String,placeholder:\"Title\",optional:true,hidden:props=>props.service!==\"loops\"},formsparkID:{title:\"ID\",placeholder:\"7PbPpGN3\",type:ControlType.String,hidden:props=>props.service!==\"formspark\"},getwaitlistAPI:{title:\"ID\",placeholder:\"9148\",type:ControlType.String,hidden:props=>props.service!==\"getwaitlist\"},convertkitAPI:{title:\"API Key\",placeholder:\"5opis1WK6xnVsBwrOINUpe\",type:ControlType.String,hidden:props=>props.service!==\"convertkit\"},convertkitFormID:{title:\"Form ID\",placeholder:\"1043389\",type:ControlType.String,hidden:props=>props.service!==\"convertkit\"},redirectAs:{title:\"Success\",type:ControlType.Enum,options:[\"link\",\"overlay\"],optionTitles:[\"Open Link\",\"Show Overlay\"],defaultValue:\"link\"},link:{title:\"Redirect\",type:ControlType.Link,hidden:props=>props.redirectAs===\"overlay\"},onSubmit:{title:\"Submit\",type:ControlType.EventHandler,hidden:props=>props.redirectAs===\"link\"},layout:{title:\"Layout\",type:ControlType.Enum,options:[\"horizontal\",\"vertical\"],displaySegmentedControl:true,hidden:props=>props.button.isDocked},font:{type:ControlType.Font,title:\"Font\",controls:\"extended\"},input:{title:\"Input\",type:ControlType.Object,controls:{placeholder:{title:\"Placeholder\",type:ControlType.String,defaultValue:\"name@email.com\"},placeholderColor:{title:\" \",type:ControlType.Color,defaultValue:\"rgba(0, 0, 0, 0.3)\"},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#EBEBEB\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#000\"},height:{title:\"Height\",type:ControlType.Boolean,enabledTitle:\"Auto\",disabledTitle:\"Fixed\"},fixedHeight:{title:\" \",type:ControlType.Number,displayStepper:true,min:0,defaultValue:50,hidden:props=>props.height},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:15,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{title:\"Radius\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:8},focusObject:{type:ControlType.Object,title:\"Focus\",optional:true,controls:{focusWidthFrom:{title:\"From\",type:ControlType.Number,displayStepper:true,defaultValue:0},focusWidthTo:{title:\"To\",type:ControlType.Number,displayStepper:true,defaultValue:2},focusColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"#09F\"}}},borderObject:{type:ControlType.Object,title:\"Border\",optional:true,controls:{borderWidth:{title:\"Width\",type:ControlType.Number,displayStepper:true,defaultValue:1},borderColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(200,200,200,0.5)\"}}},shadowObject:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"Shadow X\",type:ControlType.Number,min:-100,max:100,defaultValue:0},shadowY:{title:\"Shadow Y\",type:ControlType.Number,min:-100,max:100,defaultValue:2},shadowBlur:{title:\"Shadow B\",type:ControlType.Number,min:0,max:100,defaultValue:4}}}}},button:{title:\"Button\",type:ControlType.Object,controls:{shouldAppear:{title:\"Show\",type:ControlType.Boolean,defaultValue:true},label:{title:\"Label\",type:ControlType.String,defaultValue:\"Subscribe\"},buttonFont:{type:ControlType.Font,title:\"Font\",controls:\"extended\"},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#333\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#FFF\"},isDocked:{title:\"Docked\",type:ControlType.Boolean,defaultValue:false},widthWhenDocked:{title:\"Width\",type:ControlType.Number,min:0,defaultValue:100,displayStepper:true,hidden:props=>!props.isDocked},insetWhenDocked:{title:\"Inset\",type:ControlType.Number,min:0,defaultValue:5,displayStepper:true,hidden:props=>!props.isDocked},buttonPadding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"buttonPaddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:15,valueKeys:[\"buttonPaddingTop\",\"buttonPaddingRight\",\"buttonPaddingBottom\",\"buttonPaddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},buttonShadow:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"Shadow X\",type:ControlType.Number,min:-100,max:100,defaultValue:0},shadowY:{title:\"Shadow Y\",type:ControlType.Number,min:-100,max:100,defaultValue:2},shadowBlur:{title:\"Shadow B\",type:ControlType.Number,min:0,max:100,defaultValue:4}}}}},gap:{title:\"Gap\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:10,hidden:props=>props.button.isDocked}});const defaultStyle={WebkitAppearance:\"none\",appearance:\"none\",width:\"100%\",height:\"auto\",outline:\"none\",border:\"none\"};const containerStyles={position:\"relative\",width:\"100%\",height:\"100%\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\"};function getButtonShadow(button){if(button.buttonShadow){return`${button.buttonShadow.shadowX}px ${button.buttonShadow.shadowY}px ${button.buttonShadow.shadowBlur}px ${button.buttonShadow.shadowColor}`;}else return\"none\";}function dynamicBoxShadow(...shadows){const output=[];shadows.forEach(shadow=>shadow&&output.push(shadow));return output.join(\", \");}export default Input;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Input\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"300\",\"framerIntrinsicHeight\":\"40\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"any\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Input.map", "// Generated by Framer (38f2e7f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const ImageWithFX=withFX(Image);const cycleOrder=[\"Br9jhjsEf\",\"AEpJP4yyi\"];const serializationHash=\"framer-6M6o2\";const variantClassNames={AEpJP4yyi:\"framer-v-9nib24\",Br9jhjsEf:\"framer-v-1qq7qa4\"};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 transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};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 humanReadableVariantMap={Default:\"Br9jhjsEf\",Phone:\"AEpJP4yyi\"};const getProps=({height,id,imageCenter,imageLeft,imageRight,scrollSection,scrollSection2,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2,_ref3;return{...props,C0t9KkJXK:scrollSection!==null&&scrollSection!==void 0?scrollSection:props.C0t9KkJXK,g_4TKF3gM:(_ref=imageCenter!==null&&imageCenter!==void 0?imageCenter:props.g_4TKF3gM)!==null&&_ref!==void 0?_ref:{src:\"https://framerusercontent.com/images/yK27OVqZ2vnfN8cgSKSArpk4WPk.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/yK27OVqZ2vnfN8cgSKSArpk4WPk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/yK27OVqZ2vnfN8cgSKSArpk4WPk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/yK27OVqZ2vnfN8cgSKSArpk4WPk.jpg 1081w\"},Q3CWNSg6I:scrollSection2!==null&&scrollSection2!==void 0?scrollSection2:props.Q3CWNSg6I,taw15pXMM:(_ref1=imageRight!==null&&imageRight!==void 0?imageRight:props.taw15pXMM)!==null&&_ref1!==void 0?_ref1:{src:\"https://framerusercontent.com/images/UCMUGdlwUWEoNk055b0S685NfI.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/UCMUGdlwUWEoNk055b0S685NfI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/UCMUGdlwUWEoNk055b0S685NfI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/UCMUGdlwUWEoNk055b0S685NfI.jpg 1081w\"},variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"Br9jhjsEf\",Xi3tqtzc0:(_ref3=imageLeft!==null&&imageLeft!==void 0?imageLeft:props.Xi3tqtzc0)!==null&&_ref3!==void 0?_ref3:{src:\"https://framerusercontent.com/images/7MkjbV8OgqO3OgEMy6JWo20M.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/7MkjbV8OgqO3OgEMy6JWo20M.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/7MkjbV8OgqO3OgEMy6JWo20M.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/7MkjbV8OgqO3OgEMy6JWo20M.jpg 1081w\"}};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,g_4TKF3gM,Xi3tqtzc0,taw15pXMM,C0t9KkJXK,Q3CWNSg6I,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Br9jhjsEf\",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:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1qq7qa4\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"Br9jhjsEf\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({AEpJP4yyi:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:C0t9KkJXK,target:{opacity:1,rotate:15,rotateX:0,rotateY:-50,scale:1,skewX:0,skewY:0,x:200,y:24}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:960,intrinsicWidth:686,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||480)*.5000000000000002-200)),pixelHeight:960,pixelWidth:686,sizes:\"286px\",...toResponsiveImage(taw15pXMM)},className:\"framer-1usd4xc\",\"data-framer-name\":\"Image Right\",layoutDependency:layoutDependency,layoutId:\"yPLxAQuiZ\",style:{transformPerspective:1200},...addPropertyOverrides({AEpJP4yyi:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:C0t9KkJXK,target:{opacity:1,rotate:15,rotateX:0,rotateY:-50,scale:1,skewX:0,skewY:0,x:120,y:24}}],background:{alt:\"\",fit:\"fill\",intrinsicHeight:960,intrinsicWidth:686,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||240)*.5000000000000002-100)),pixelHeight:960,pixelWidth:686,sizes:\"143px\",...toResponsiveImage(taw15pXMM)},transformTemplate:transformTemplate1}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:Q3CWNSg6I,target:{opacity:1,rotate:-15,rotateX:0,rotateY:50,scale:1,skewX:0,skewY:0,x:-200,y:24}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:960,intrinsicWidth:686,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||480)*.5000000000000002-200)),pixelHeight:960,pixelWidth:686,sizes:\"286px\",...toResponsiveImage(Xi3tqtzc0)},className:\"framer-1epsb3a\",\"data-framer-name\":\"Image Left\",layoutDependency:layoutDependency,layoutId:\"ZtpRI6fVk\",style:{transformPerspective:1200},...addPropertyOverrides({AEpJP4yyi:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:Q3CWNSg6I,target:{opacity:1,rotate:-15,rotateX:0,rotateY:50,scale:1,skewX:0,skewY:0,x:-120,y:24}}],background:{alt:\"\",fit:\"fill\",intrinsicHeight:960,intrinsicWidth:686,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||240)*.5000000000000002-100)),pixelHeight:960,pixelWidth:686,sizes:\"143px\",...toResponsiveImage(Xi3tqtzc0)},transformTemplate:transformTemplate1}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:960,intrinsicWidth:686,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||480)-0-480)/2)),pixelHeight:960,pixelWidth:686,sizes:\"343px\",...toResponsiveImage(g_4TKF3gM)},className:\"framer-nc9c9d\",\"data-framer-name\":\"Image Center\",layoutDependency:layoutDependency,layoutId:\"K45MOLU4v\",style:{filter:\"drop-shadow(4px 5px 7px rgba(0,0,0,0.25))\",WebkitFilter:\"drop-shadow(4px 5px 7px rgba(0,0,0,0.25))\"},...addPropertyOverrides({AEpJP4yyi:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:960,intrinsicWidth:686,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||240)-0-240)/2)),pixelHeight:960,pixelWidth:686,sizes:\"171.5px\",...toResponsiveImage(g_4TKF3gM)}}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-6M6o2.framer-1qyu3su, .framer-6M6o2 .framer-1qyu3su { display: block; }\",\".framer-6M6o2.framer-1qq7qa4 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-6M6o2 .framer-1usd4xc, .framer-6M6o2 .framer-1epsb3a { flex: none; height: 400px; left: calc(50.145772594752216% - 286px / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 400px / 2); width: 286px; z-index: 1; }\",\".framer-6M6o2 .framer-nc9c9d { flex: none; height: 480px; overflow: hidden; position: relative; width: 343px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-6M6o2.framer-1qq7qa4 { gap: 0px; } .framer-6M6o2.framer-1qq7qa4 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-6M6o2.framer-1qq7qa4 > :first-child { margin-left: 0px; } .framer-6M6o2.framer-1qq7qa4 > :last-child { margin-right: 0px; } }\",\".framer-6M6o2.framer-v-9nib24 .framer-1usd4xc, .framer-6M6o2.framer-v-9nib24 .framer-1epsb3a { aspect-ratio: 0.715 / 1; height: var(--framer-aspect-ratio-supported, 200px); left: 50%; top: 50%; width: 143px; }\",\".framer-6M6o2.framer-v-9nib24 .framer-nc9c9d { aspect-ratio: 0.7145833333333333 / 1; height: var(--framer-aspect-ratio-supported, 240px); width: 172px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 480\n * @framerIntrinsicWidth 343\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"AEpJP4yyi\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"g_4TKF3gM\":\"imageCenter\",\"Xi3tqtzc0\":\"imageLeft\",\"taw15pXMM\":\"imageRight\",\"C0t9KkJXK\":\"scrollSection\",\"Q3CWNSg6I\":\"scrollSection2\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerWUs0OKP3U=withCSS(Component,css,\"framer-6M6o2\");export default FramerWUs0OKP3U;FramerWUs0OKP3U.displayName=\"Free Lesson Images\";FramerWUs0OKP3U.defaultProps={height:480,width:343};addPropertyControls(FramerWUs0OKP3U,{variant:{options:[\"Br9jhjsEf\",\"AEpJP4yyi\"],optionTitles:[\"Default\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},g_4TKF3gM:{__defaultAssetReference:\"data:framer/asset-reference,yK27OVqZ2vnfN8cgSKSArpk4WPk.jpg?originalFilename=lejit_case_study-09.jpg&preferredSize=auto\",title:\"Image Center\",type:ControlType.ResponsiveImage},Xi3tqtzc0:{__defaultAssetReference:\"data:framer/asset-reference,7MkjbV8OgqO3OgEMy6JWo20M.jpg?originalFilename=lejit_case_study-11.jpg&preferredSize=auto\",title:\"Image Left\",type:ControlType.ResponsiveImage},taw15pXMM:{__defaultAssetReference:\"data:framer/asset-reference,UCMUGdlwUWEoNk055b0S685NfI.jpg?originalFilename=lejit_case_study-12.jpg&preferredSize=auto\",description:\"\",title:\"Image Right\",type:ControlType.ResponsiveImage},C0t9KkJXK:{title:\"Scroll Section\",type:ControlType.ScrollSectionRef},Q3CWNSg6I:{title:\"Scroll Section 2\",type:ControlType.ScrollSectionRef}});addFonts(FramerWUs0OKP3U,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerWUs0OKP3U\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"343\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"480\",\"framerVariables\":\"{\\\"g_4TKF3gM\\\":\\\"imageCenter\\\",\\\"Xi3tqtzc0\\\":\\\"imageLeft\\\",\\\"taw15pXMM\\\":\\\"imageRight\\\",\\\"C0t9KkJXK\\\":\\\"scrollSection\\\",\\\"Q3CWNSg6I\\\":\\\"scrollSection2\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"AEpJP4yyi\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./WUs0OKP3U.map", "// Generated by Framer (d31cd55)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,PropertyOverrides,ResolveLinks,RichText,SVG,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/qacJMtbrGDTpaTF4eVfx/Ticker.js\";import Input from\"https://framerusercontent.com/modules/oWVHHLIj4Q7woeIlKzbt/jYhpKd65JZqDsK3oy7GY/Input.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/qXyG1UgqGGx5DS4G9abM/Smooth_Scroll.js\";import Navbar from\"#framer/local/canvasComponent/BfpZeIo8n/BfpZeIo8n.js\";import ModuleCard from\"#framer/local/canvasComponent/BhsVvA5zW/BhsVvA5zW.js\";import Carousel from\"#framer/local/canvasComponent/E6yTbQ7rO/E6yTbQ7rO.js\";import Footer from\"#framer/local/canvasComponent/F801woTAj/F801woTAj.js\";import DetailsCard from\"#framer/local/canvasComponent/fIP3vrSI8/fIP3vrSI8.js\";import PreloaderContent from\"#framer/local/canvasComponent/gr9MoGztk/gr9MoGztk.js\";import Cursor from\"#framer/local/canvasComponent/ITTHT9C01/ITTHT9C01.js\";import DetailsCardLarge from\"#framer/local/canvasComponent/JojClw5ST/JojClw5ST.js\";import InstructorCard from\"#framer/local/canvasComponent/nXt0c6u8E/nXt0c6u8E.js\";import HeroImages from\"#framer/local/canvasComponent/RgJUdfSiU/RgJUdfSiU.js\";import TestimonialCard from\"#framer/local/canvasComponent/sFAA4szNQ/sFAA4szNQ.js\";import AudienceCard from\"#framer/local/canvasComponent/sfy9PfTn_/sfy9PfTn_.js\";import PricingCard from\"#framer/local/canvasComponent/wK3qwR22N/wK3qwR22N.js\";import ListItem from\"#framer/local/canvasComponent/woCW3QcAq/woCW3QcAq.js\";import FreeLessonImages from\"#framer/local/canvasComponent/WUs0OKP3U/WUs0OKP3U.js\";import FAQ from\"#framer/local/canvasComponent/xfb7pi9J9/xfb7pi9J9.js\";import{PreLoader}from\"#framer/local/codeFile/veeC9ia/Preloader.js\";import*as sharedStyle2 from\"#framer/local/css/DSPHxWNiI/DSPHxWNiI.js\";import*as sharedStyle3 from\"#framer/local/css/Ewm9BChyp/Ewm9BChyp.js\";import*as sharedStyle4 from\"#framer/local/css/KBgV9gmbx/KBgV9gmbx.js\";import*as sharedStyle5 from\"#framer/local/css/r5J1M1OpR/r5J1M1OpR.js\";import*as sharedStyle from\"#framer/local/css/W3b4bh779/W3b4bh779.js\";import*as sharedStyle1 from\"#framer/local/css/YeRS4aV5v/YeRS4aV5v.js\";import metadataProvider from\"#framer/local/webPageMetadata/BcinYFtiY/BcinYFtiY.js\";const PreloaderContentFonts=getFonts(PreloaderContent);const PreLoaderFonts=getFonts(PreLoader);const SmoothScrollFonts=getFonts(SmoothScroll);const NavbarFonts=getFonts(Navbar);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const MotionDivWithFX=withFX(motion.div);const HeroImagesFonts=getFonts(HeroImages);const ContainerWithFX=withFX(Container);const ModuleCardFonts=getFonts(ModuleCard);const ModuleCardWithVariantAppearEffect=withVariantAppearEffect(ModuleCard);const PricingCardFonts=getFonts(PricingCard);const TickerFonts=getFonts(Ticker);const DetailsCardFonts=getFonts(DetailsCard);const DetailsCardLargeFonts=getFonts(DetailsCardLarge);const CarouselFonts=getFonts(Carousel);const CarouselWithVariantAppearEffect=withVariantAppearEffect(Carousel);const ListItemFonts=getFonts(ListItem);const AudienceCardFonts=getFonts(AudienceCard);const TestimonialCardFonts=getFonts(TestimonialCard);const InstructorCardFonts=getFonts(InstructorCard);const FreeLessonImagesFonts=getFonts(FreeLessonImages);const InputFonts=getFonts(Input);const FAQFonts=getFonts(FAQ);const FooterFonts=getFonts(Footer);const CursorFonts=getFonts(Cursor);const breakpoints={sfWwB6vkc:\"(max-width: 809px)\",WtNiEKlZc:\"(min-width: 810px) and (max-width: 1199px)\",zehOe3yzk:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-GA1AW\";const variantClassNames={sfWwB6vkc:\"framer-v-2rldx4\",WtNiEKlZc:\"framer-v-1ghkpiv\",zehOe3yzk:\"framer-v-koi6u7\"};const transition1={damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition2={damping:40,delay:1.6,mass:1,stiffness:200,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-80};const transition3={damping:40,delay:1.5,mass:.5,stiffness:200,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40};const transition4={damping:40,delay:1.7,mass:.5,stiffness:200,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const animation5={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:40};const transition5={delay:1.2,duration:.5,ease:[0,0,1,1],type:\"tween\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:0};const animation7={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const animation9={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:40};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"zehOe3yzk\",Phone:\"sfWwB6vkc\",Tablet:\"WtNiEKlZc\"};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:\"zehOe3yzk\"};};const cursor={alignment:\"center\",component:Cursor,offset:{x:8,y:8},placement:\"bottom\",transition:transition1,variant:\"A9qmVLGFa\"};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,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);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-GA1AW`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-GA1AW`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const router=useRouter();const elementId=useRouteElementId(\"StcjsiAN6\");const ref2=React.useRef(null);const elementId1=useRouteElementId(\"nrimJzO9N\");const ref3=React.useRef(null);const ref4=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"sfWwB6vkc\")return false;return true;};const elementId2=useRouteElementId(\"LpapeQOay\");const elementId3=useRouteElementId(\"e88YW_t3o\");const ref5=React.useRef(null);const ref6=React.useRef(null);const ref7=React.useRef(null);const elementId4=useRouteElementId(\"XX6WRb5NY\");const ref8=React.useRef(null);const elementId5=useRouteElementId(\"FfTRFoFLe\");const ref9=React.useRef(null);const elementId6=useRouteElementId(\"JSVg1mUh4\");const ref10=React.useRef(null);const elementId7=useRouteElementId(\"VnwwOqMKs\");const ref11=React.useRef(null);const elementId8=useRouteElementId(\"eDHn9B0xG\");const ref12=React.useRef(null);const elementId9=useRouteElementId(\"kp_32mfXM\");const ref13=React.useRef(null);const elementId10=useRouteElementId(\"w8ZmC8f0r\");const ref14=React.useRef(null);const elementId11=useRouteElementId(\"pNOYcvbnR\");const ref15=React.useRef(null);const elementId12=useRouteElementId(\"rsEJaomDX\");const ref16=React.useRef(null);const ref17=React.useRef(null);const ref18=React.useRef(null);const ref19=React.useRef(null);const ref20=React.useRef(null);const elementId13=useRouteElementId(\"TKXrlGOen\");const elementId14=useRouteElementId(\"m1KDmB2aK\");const elementId15=useRouteElementId(\"YopgUUB2B\");const elementId16=useRouteElementId(\"ecAmfC8aX\");const elementId17=useRouteElementId(\"JLzJCkDo9\");const ref21=React.useRef(null);const isDisplayed1=()=>{if(!isBrowser())return true;if([\"WtNiEKlZc\",\"sfWwB6vkc\"].includes(baseVariant))return false;return true;};const elementId18=useRouteElementId(\"DfS3OLb7O\");const ref22=React.useRef(null);const elementId19=useRouteElementId(\"VcYwTzN55\");const ref23=React.useRef(null);const elementId20=useRouteElementId(\"m6juLlLD2\");const ref24=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className];useCustomCursors({\"171mx9g\":cursor});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"zehOe3yzk\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{\"data-framer-cursor\":undefined},WtNiEKlZc:{\"data-framer-cursor\":undefined}},children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-koi6u7\",className),\"data-framer-cursor\":\"171mx9g\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-kinz0r-container\",children:/*#__PURE__*/_jsx(PreLoader,{backgroundColor:\"rgba(251, 251, 254, 0)\",connectedFrame:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"200px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-mih2t5-container\",children:/*#__PURE__*/_jsx(PreloaderContent,{gYLzmKYJb:\"\u2726 WORLDCLASS BRANDING \u2726 LEJIT CREATIVE \",height:\"100%\",id:\"vj9f23hvb\",layoutId:\"vj9f23hvb\",style:{height:\"100%\",width:\"100%\"},vVeJfvQhD:\"rgb(152, 157, 160)\",width:\"100%\"})})})],duration:1.2,exitAnimation:\"rotateOut\",exitSpeed:.5,height:\"100%\",id:\"ZEh16j4dG\",layoutId:\"ZEh16j4dG\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-121hdmm-container\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"g65NvESnS\",intensity:10,layoutId:\"g65NvESnS\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"XAXwghbsE\"},implicitPathVariables:undefined},{href:{webPageId:\"XAXwghbsE\"},implicitPathVariables:undefined},{href:{webPageId:\"XAXwghbsE\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{animate:animation,className:\"framer-4jrc95-container\",\"data-framer-appear-id\":\"4jrc95\",initial:animation1,layoutScroll:true,optimized:true,transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{variant:\"HW5WPhEFa\",yyXaLK9Jc:resolvedLinks[2]},WtNiEKlZc:{variant:\"HW5WPhEFa\",yyXaLK9Jc:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(Navbar,{height:\"100%\",id:\"VQ58Igjmx\",layoutId:\"VQ58Igjmx\",style:{width:\"100%\"},variant:\"DIbFIQLK8\",width:\"100%\",yyXaLK9Jc:resolvedLinks[0]})})})})}),/*#__PURE__*/_jsxs(\"main\",{className:\"framer-15mivdo\",\"data-framer-name\":\"Main\",name:\"Main\",children:[/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1b9z8hs\",\"data-framer-name\":\"Hero\",id:elementId,name:\"Hero\",ref:ref2,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1occ2l0\",\"data-framer-name\":\"Hero Main\",id:elementId1,name:\"Hero Main\",ref:ref3,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{__framer__styleTransformEffectEnabled:undefined,style:{}},WtNiEKlZc:{__framer__styleTransformEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__spring:{damping:40,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:200,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref4,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,x:0,y:-160}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1b4hew6\",\"data-framer-name\":\"Content\",name:\"Content\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wjhtc5\",\"data-framer-name\":\"Text\",name:\"Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-t6l3cp\",\"data-styles-preset\":\"W3b4bh779\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-00f26a75-eb5e-4168-b3a6-0b0505689a08, rgb(28, 28, 28))\"},children:[\"Master the Magic of \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-342ca76b-3fbd-4ec1-b2bc-bd892795bf7e, rgb(79, 26, 239))\"},children:\"Generative AI\"})]})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-t6l3cp\",\"data-styles-preset\":\"W3b4bh779\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(152, 157, 160)\"},children:[\"Every \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(14, 107, 236)\"},children:\"world-class\"}),\" \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 80, 124)\"},children:\"business\"}),\" \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 202, 0)\"},children:\"starts\"}),\" with a \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(12, 190, 88)\"},children:\"world-class\"}),\" \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(135, 75, 255)\"},children:\"brand\"}),\".\"]})}),className:\"framer-1airy9n\",\"data-framer-appear-id\":\"1airy9n\",\"data-framer-name\":\"Master the Magic of Generative AI\",fonts:[\"Inter\"],initial:animation3,name:\"Master the Magic of Generative AI\",optimized:true,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1305ls2\",\"data-styles-preset\":\"YeRS4aV5v\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(152, 157, 160)\"},children:\"We transform visions into iconic brand experiences. With a blend of innovation, creativity, strategic insight, and a dash of play, our team partners with leaders in tech, entertainment, and sports to craft brands that stand out and stay memorable.\"})}),className:\"framer-q5uzgn\",\"data-framer-appear-id\":\"q5uzgn\",\"data-framer-name\":\"Master generative AI tools such as ChatGPT, Midjourney, Dall-E and more to create, innovate, and shape tomorrow's digital landscape.\",fonts:[\"Inter\"],initial:animation5,name:\"Master generative AI tools such as ChatGPT, Midjourney, Dall-E and more to create, innovate, and shape tomorrow's digital landscape.\",optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{y:undefined},WtNiEKlZc:{y:241}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1608,y:281,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{transformTemplate:undefined},WtNiEKlZc:{__framer__styleTransformEffectEnabled:undefined,animate:animation8,initial:animation9,style:{}}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:40,delay:0,duration:.3,ease:[.44,0,.56,1],mass:.5,stiffness:200,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref4,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.4,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,animate:animation6,className:\"framer-1cpayir-container\",\"data-framer-appear-id\":\"1cpayir\",initial:animation7,optimized:true,style:{transformPerspective:1200},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{variant:\"cuipjTSXx\"},WtNiEKlZc:{variant:\"Ni6ty1AT5\"}},children:/*#__PURE__*/_jsx(HeroImages,{height:\"100%\",HF5eS7ewv:ref4,id:\"NuqBS_o3Q\",ji2vCbTLq:ref4,KWO4fJVnG:ref4,layoutId:\"NuqBS_o3Q\",M9ZlJ0QQx:ref4,QJpKoS3MW:ref4,S_Y9INIIq:ref4,t8ApMJEvY:ref4,tfHToCltc:ref4,variant:\"OfMNR5pAF\",width:\"100%\"})})})})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ccgybr hidden-2rldx4\",\"data-framer-name\":\"Hero Scroll\",id:elementId2,name:\"Hero Scroll\",ref:ref4})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1weu3y7\",\"data-framer-name\":\"Curriculum\",id:elementId3,name:\"Curriculum\",ref:ref5,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-34tui1\",\"data-framer-name\":\"Curriculum Wrapper\",name:\"Curriculum Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yhrqmm\",\"data-framer-name\":\"Curriculum Header\",name:\"Curriculum Header\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1rpe66o\",\"data-styles-preset\":\"DSPHxWNiI\",style:{\"--framer-text-alignment\":\"center\"},children:\"Featured Work\"})}),className:\"framer-1hv93\",\"data-framer-name\":\"What you\u2019ll learn from this course\",fonts:[\"Inter\"],name:\"What you\u2019ll learn from this course\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1305ls2\",\"data-styles-preset\":\"YeRS4aV5v\",style:{\"--framer-text-alignment\":\"center\"},children:\"Our portfolio speaks volumes. From emerging startups to established giants, we've elevated brands across multiple sectors. Here\u2019s a look at some of our transformative collaborations.\"})}),className:\"framer-gvet0j\",\"data-framer-name\":\"We provide a comprehensive, hands-on approach to generative AI, guiding you every step of the way. With real-world projects, up-to-date curriculum, and a supportive learning community, we're committed to transforming your AI challenges into victories.\",fonts:[\"Inter\"],name:\"We provide a comprehensive, hands-on approach to generative AI, guiding you every step of the way. With real-world projects, up-to-date curriculum, and a supportive learning community, we're committed to transforming your AI challenges into victories.\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1y9ab9e\",\"data-framer-name\":\"Modules\",name:\"Modules\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{width:\"min(100vw - 48px, 1120px)\",y:undefined},WtNiEKlZc:{width:\"min(100vw - 160px, 800px)\",y:1371.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:614,width:\"min(100vw - 160px, 1120px)\",y:2987.5,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{__framer__styleTransformEffectEnabled:undefined,style:{}},WtNiEKlZc:{__framer__styleTransformEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:40,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:200,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,x:0,y:80}},{ref:ref6,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref7,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,x:0,y:-40}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-r3vgqs-container\",id:elementId4,ref:ref6,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{__framer__variantAppearEffectEnabled:undefined,variant:\"ZHBbW3HN1\"},WtNiEKlZc:{__framer__variantAppearEffectEnabled:undefined,variant:\"Q4NzIIdn1\"}},children:/*#__PURE__*/_jsx(ModuleCardWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref8,target:\"B88b1EzOt\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,aRL2seWxf:\"What is Generative AI?\",btVJIxfkC:\"Key principles of generative models\",GMQFf2qJx:\"var(--token-8052cbed-4c3a-4a1e-89e5-72fa38102795, rgb(255, 202, 0))\",H4qoSUbLv:\"Introduction\",H8SvJ5pJB:true,height:\"100%\",HOZSvsPgd:\"Kickstart your journey with an overview of generative AI, understanding its potential and the mechanics behind AI-driven creativity.\",id:\"XX6WRb5NY\",iYxUz5Axf:addImageAlt({src:\"https://framerusercontent.com/images/zrL0lPuAWE3HgPRywRdD19ACDA.webp\",srcSet:\"https://framerusercontent.com/images/zrL0lPuAWE3HgPRywRdD19ACDA.webp?scale-down-to=1024 728w,https://framerusercontent.com/images/zrL0lPuAWE3HgPRywRdD19ACDA.webp 896w\"},\"Module 1 Image\"),JwtxrQlTO:\"var(--token-8052cbed-4c3a-4a1e-89e5-72fa38102795, rgb(255, 202, 0))\",LAjeIoVMw:\"Applications of generative AI\",layoutId:\"XX6WRb5NY\",lcoAuz5Co:\"Module 1\",OCzzEE2mB:true,qzWh8WLRP:\"Evolution of AI technologies\",style:{width:\"100%\"},variant:\"AuMMzy3o5\",VMzTPhG50:{borderColor:'var(--token-8052cbed-4c3a-4a1e-89e5-72fa38102795, rgb(255, 202, 0)) /* {\"name\":\"Lejit Yellow\"} */',borderStyle:\"solid\",borderWidth:10},w70mpIPLA:true,width:\"100%\",wLAuMLen2:\"var(--token-8052cbed-4c3a-4a1e-89e5-72fa38102795, rgb(255, 202, 0))\",XH9cr7Rd9:\"The future of AI in digital creation\",YQntEvXX9:\"var(--token-72386102-7a44-40df-835e-8d6424daf8aa, rgb(255, 255, 255))\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{width:\"min(100vw - 48px, 1120px)\",y:undefined},WtNiEKlZc:{width:\"min(100vw - 160px, 800px)\",y:2065.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:614,width:\"min(100vw - 160px, 1120px)\",y:3641.5,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{__framer__styleTransformEffectEnabled:undefined,style:{}},WtNiEKlZc:{__framer__styleTransformEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:40,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:200,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,x:0,y:80}},{ref:ref7,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref8,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,x:0,y:-40}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-qyo71r-container\",id:elementId5,ref:ref7,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{__framer__variantAppearEffectEnabled:undefined,variant:\"ZHBbW3HN1\"},WtNiEKlZc:{__framer__variantAppearEffectEnabled:undefined,variant:\"Q4NzIIdn1\"}},children:/*#__PURE__*/_jsx(ModuleCardWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref9,target:\"B88b1EzOt\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,aRL2seWxf:\"Understanding ChatGPT\",btVJIxfkC:\"Advanced features and customization\",GMQFf2qJx:\"var(--token-8052cbed-4c3a-4a1e-89e5-72fa38102795, rgb(255, 202, 0))\",H4qoSUbLv:\"ChatGPT deep dive\",H8SvJ5pJB:true,height:\"100%\",HOZSvsPgd:\"Explore the capabilities of ChatGPT, learning how to leverage its conversational intelligence for various applications.\",id:\"FfTRFoFLe\",iYxUz5Axf:addImageAlt({src:\"https://framerusercontent.com/images/Ye18MM1iRhKrSjRd7PhDTvEP7Uc.webp\",srcSet:\"https://framerusercontent.com/images/Ye18MM1iRhKrSjRd7PhDTvEP7Uc.webp?scale-down-to=1024 728w,https://framerusercontent.com/images/Ye18MM1iRhKrSjRd7PhDTvEP7Uc.webp 896w\"},\"Module 2 Image\"),JwtxrQlTO:\"var(--token-8052cbed-4c3a-4a1e-89e5-72fa38102795, rgb(255, 202, 0))\",LAjeIoVMw:\"Integrating ChatGPT in web projects\",layoutId:\"FfTRFoFLe\",lcoAuz5Co:\"Module 2\",OCzzEE2mB:true,qzWh8WLRP:\"Building chatbots with ChatGPT\",style:{width:\"100%\"},variant:\"AuMMzy3o5\",VMzTPhG50:{borderColor:'var(--token-8052cbed-4c3a-4a1e-89e5-72fa38102795, rgb(255, 202, 0)) /* {\"name\":\"Lejit Yellow\"} */',borderStyle:\"solid\",borderWidth:10},w70mpIPLA:true,width:\"100%\",wLAuMLen2:\"var(--token-8052cbed-4c3a-4a1e-89e5-72fa38102795, rgb(255, 202, 0))\",XH9cr7Rd9:\"Ethical considerations and use cases\",YQntEvXX9:\"var(--token-72386102-7a44-40df-835e-8d6424daf8aa, rgb(255, 255, 255))\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{width:\"min(100vw - 48px, 1120px)\",y:undefined},WtNiEKlZc:{width:\"min(100vw - 160px, 800px)\",y:2759.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:614,width:\"min(100vw - 160px, 1120px)\",y:4295.5,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{__framer__styleTransformEffectEnabled:undefined,style:{}},WtNiEKlZc:{__framer__styleTransformEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:40,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:200,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,x:0,y:80}},{ref:ref8,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref9,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,x:0,y:-40}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1152lhr-container\",id:elementId6,ref:ref8,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{__framer__variantAppearEffectEnabled:undefined,variant:\"ZHBbW3HN1\"},WtNiEKlZc:{__framer__variantAppearEffectEnabled:undefined,variant:\"Q4NzIIdn1\"}},children:/*#__PURE__*/_jsx(ModuleCardWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref10,target:\"B88b1EzOt\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,aRL2seWxf:\"Introduction to Dall-E\",btVJIxfkC:\"Customizing Images with Dall-E\",GMQFf2qJx:\"var(--token-8052cbed-4c3a-4a1e-89e5-72fa38102795, rgb(255, 202, 0))\",H4qoSUbLv:\"The art of Dall-E\",H8SvJ5pJB:true,height:\"100%\",HOZSvsPgd:\"Delve into the world of Dall-E, mastering the art of generating stunning visuals with AI.\",id:\"JSVg1mUh4\",iYxUz5Axf:addImageAlt({src:\"https://framerusercontent.com/images/NKoqvZbRyKFs9cGXMK8JhLcgNE.webp\",srcSet:\"https://framerusercontent.com/images/NKoqvZbRyKFs9cGXMK8JhLcgNE.webp?scale-down-to=1024 728w,https://framerusercontent.com/images/NKoqvZbRyKFs9cGXMK8JhLcgNE.webp 896w\"},\"Module 3 Image\"),JwtxrQlTO:\"var(--token-8052cbed-4c3a-4a1e-89e5-72fa38102795, rgb(255, 202, 0))\",LAjeIoVMw:\"Practical applications for digital art\",layoutId:\"JSVg1mUh4\",lcoAuz5Co:\"Module 3\",OCzzEE2mB:true,qzWh8WLRP:\"Techniques in image generation\",style:{width:\"100%\"},variant:\"AuMMzy3o5\",VMzTPhG50:{borderColor:'var(--token-8052cbed-4c3a-4a1e-89e5-72fa38102795, rgb(255, 202, 0)) /* {\"name\":\"Lejit Yellow\"} */',borderStyle:\"solid\",borderWidth:10},w70mpIPLA:true,width:\"100%\",wLAuMLen2:\"var(--token-8052cbed-4c3a-4a1e-89e5-72fa38102795, rgb(255, 202, 0))\",XH9cr7Rd9:\"Exploring the limits of creativity\",YQntEvXX9:\"var(--token-72386102-7a44-40df-835e-8d6424daf8aa, rgb(255, 255, 255))\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{width:\"min(100vw - 48px, 1120px)\",y:undefined},WtNiEKlZc:{width:\"min(100vw - 160px, 800px)\",y:3453.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:614,width:\"min(100vw - 160px, 1120px)\",y:4949.5,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{__framer__styleTransformEffectEnabled:undefined,style:{}},WtNiEKlZc:{__framer__styleTransformEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:40,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:200,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,x:0,y:80}},{ref:ref9,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref10,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,x:0,y:-40}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1x7l3rh-container\",id:elementId7,ref:ref9,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{__framer__variantAppearEffectEnabled:undefined,variant:\"ZHBbW3HN1\"},WtNiEKlZc:{__framer__variantAppearEffectEnabled:undefined,variant:\"Q4NzIIdn1\"}},children:/*#__PURE__*/_jsx(ModuleCardWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref11,target:\"B88b1EzOt\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,aRL2seWxf:\"Navigating Midjourney\",btVJIxfkC:\"Enhancing visuals with Midjourney\",GMQFf2qJx:\"var(--token-8052cbed-4c3a-4a1e-89e5-72fa38102795, rgb(255, 202, 0))\",H4qoSUbLv:\"Midjourney mastery\",H8SvJ5pJB:true,height:\"100%\",HOZSvsPgd:\"Gain expertise in Midjourney, understanding how to craft impressive and detailed and  visuals that captivate and tell a story.\",id:\"VnwwOqMKs\",iYxUz5Axf:addImageAlt({src:\"https://framerusercontent.com/images/uap8Niie9Dvuj2v9SjxfihCflc.webp\",srcSet:\"https://framerusercontent.com/images/uap8Niie9Dvuj2v9SjxfihCflc.webp?scale-down-to=1024 728w,https://framerusercontent.com/images/uap8Niie9Dvuj2v9SjxfihCflc.webp 896w\"},\"Module 4 Image\"),JwtxrQlTO:\"var(--token-8052cbed-4c3a-4a1e-89e5-72fa38102795, rgb(255, 202, 0))\",LAjeIoVMw:\"Application in media and entertainment\",layoutId:\"VnwwOqMKs\",lcoAuz5Co:\"Module 4\",OCzzEE2mB:true,qzWh8WLRP:\"Strategies for detailed visual creation\",style:{width:\"100%\"},variant:\"AuMMzy3o5\",VMzTPhG50:{borderColor:'var(--token-8052cbed-4c3a-4a1e-89e5-72fa38102795, rgb(255, 202, 0)) /* {\"name\":\"Lejit Yellow\"} */',borderStyle:\"solid\",borderWidth:10},w70mpIPLA:true,width:\"100%\",wLAuMLen2:\"var(--token-8052cbed-4c3a-4a1e-89e5-72fa38102795, rgb(255, 202, 0))\",XH9cr7Rd9:\"Innovating with visual AI\",YQntEvXX9:\"var(--token-72386102-7a44-40df-835e-8d6424daf8aa, rgb(255, 255, 255))\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{width:\"min(100vw - 48px, 1120px)\",y:undefined},WtNiEKlZc:{width:\"min(100vw - 160px, 800px)\",y:4147.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:614,width:\"min(100vw - 160px, 1120px)\",y:5603.5,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{__framer__styleTransformEffectEnabled:undefined,style:{}},WtNiEKlZc:{__framer__styleTransformEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:40,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:200,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,x:0,y:80}},{ref:ref10,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref11,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,x:0,y:-40}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-mfxv5h-container\",id:elementId8,ref:ref10,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{__framer__variantAppearEffectEnabled:undefined,variant:\"ZHBbW3HN1\"},WtNiEKlZc:{__framer__variantAppearEffectEnabled:undefined,variant:\"Q4NzIIdn1\"}},children:/*#__PURE__*/_jsx(ModuleCardWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref12,target:\"B88b1EzOt\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,aRL2seWxf:\"AI in writing and journalism\",btVJIxfkC:\"AI tools for scriptwriting\",GMQFf2qJx:\"var(--token-8052cbed-4c3a-4a1e-89e5-72fa38102795, rgb(255, 202, 0))\",H4qoSUbLv:\"AI for content creation\",H8SvJ5pJB:true,height:\"100%\",HOZSvsPgd:\"Learn how to utilize AI tools for generating written content, from articles to scripts, enhancing creativity and efficiency.\",id:\"eDHn9B0xG\",iYxUz5Axf:addImageAlt({src:\"https://framerusercontent.com/images/Uwn0IHqEayalR2Ditxn0SiYHM.webp\",srcSet:\"https://framerusercontent.com/images/Uwn0IHqEayalR2Ditxn0SiYHM.webp?scale-down-to=1024 728w,https://framerusercontent.com/images/Uwn0IHqEayalR2Ditxn0SiYHM.webp 896w\"},\"Module 5 Image\"),JwtxrQlTO:\"var(--token-8052cbed-4c3a-4a1e-89e5-72fa38102795, rgb(255, 202, 0))\",LAjeIoVMw:\"Enhancing editorial workflows with AI\",layoutId:\"eDHn9B0xG\",lcoAuz5Co:\"Module 5\",OCzzEE2mB:true,qzWh8WLRP:\"Crafting stories with AI\",style:{width:\"100%\"},variant:\"AuMMzy3o5\",VMzTPhG50:{borderColor:'var(--token-8052cbed-4c3a-4a1e-89e5-72fa38102795, rgb(255, 202, 0)) /* {\"name\":\"Lejit Yellow\"} */',borderStyle:\"solid\",borderWidth:10},w70mpIPLA:true,width:\"100%\",wLAuMLen2:\"var(--token-8052cbed-4c3a-4a1e-89e5-72fa38102795, rgb(255, 202, 0))\",XH9cr7Rd9:\"The role of AI in content strategy\",YQntEvXX9:\"var(--token-72386102-7a44-40df-835e-8d6424daf8aa, rgb(255, 255, 255))\"})})})})})})]})]})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-dse3z5\",\"data-framer-name\":\"Pricing\",id:elementId9,name:\"Pricing\",ref:ref13,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v3ewr2\",\"data-framer-name\":\"Pricing Header\",name:\"Pricing Header\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1rpe66o\",\"data-styles-preset\":\"DSPHxWNiI\",style:{\"--framer-text-alignment\":\"center\"},children:\"Pricing\"})}),className:\"framer-1lu6a97\",\"data-framer-name\":\"Empower your future: skills you'll acquire\",fonts:[\"Inter\"],name:\"Empower your future: skills you'll acquire\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1305ls2\",\"data-styles-preset\":\"YeRS4aV5v\",style:{\"--framer-text-alignment\":\"center\"},children:\"Unlock your potential in generative AI: purchase the course today and start your journey to mastering AI creativity and innovation.\"})}),className:\"framer-19amoc5\",\"data-framer-name\":\"Equip yourself with a broad range of skills to become a versatile, future-ready AI expert.\",fonts:[\"Inter\"],name:\"Equip yourself with a broad range of skills to become a versatile, future-ready AI expert.\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oftd2a\",\"data-framer-name\":\"Pricing Cards\",name:\"Pricing Cards\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{width:\"min(100vw - 48px, 1120px)\",y:undefined},WtNiEKlZc:{width:\"min(100vw - 80px, 640px)\",y:5180}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:516,width:\"max((min(100vw - 80px, 1120px) - 80px) / 3, 1px)\",y:6684,children:/*#__PURE__*/_jsx(Container,{className:\"framer-grzw2j-container\",children:/*#__PURE__*/_jsx(PricingCard,{a_wBaY9qu:\"var(--token-1befc1d0-a9be-463a-9b65-8e98a7281b45, rgba(14, 107, 236, 0.05))\",C7dZluXYO:\"Basic AI toolkits\",DhIewjOJS:\"Free demo\",eixPrzDJ3:true,FraxtqTFW:\"USD\",Fw9pjXKFV:{borderColor:'var(--token-987359ad-fda1-4597-9209-cf9ade080265, rgb(14, 107, 236)) /* {\"name\":\"Lejit Blue\"} */',borderStyle:\"solid\",borderWidth:10},GQ8gbo8Vc:\"$99\",height:\"100%\",HzAEVO3_Q:\"Certificate of completion\",i15QucasJ:true,id:\"qOAHnRp_G\",jBTOGB38o:\"rgb(0, 0, 0)\",jY8eRLa1K:\"var(--token-043dd7b2-1be1-487f-83f9-231d024223e2, rgb(255, 80, 124))\",layoutId:\"qOAHnRp_G\",odtinmi47:\"Kickstart your AI journey with fundamental insights and skills.\",rtAZPFAD7:\"$99\",style:{width:\"100%\"},sWhwraXnE:\"var(--token-043dd7b2-1be1-487f-83f9-231d024223e2, rgb(255, 80, 124))\",TVVBEWaMi:\"var(--token-30cfbc78-3d30-45eb-b7ae-170ec4e17976, rgb(152, 157, 160))\",variant:\"bqxRGaSeu\",wa2ELDXz2:\"var(--token-987359ad-fda1-4597-9209-cf9ade080265, rgb(14, 107, 236))\",width:\"100%\",wK2e5KpXQ:true,ww4SuYgCE:\"Basic\",XBEa_wIfO:\"All introductory modules\",YDJKZupAL:\"Community forum support\",z_aFxZe6O:\"30-day access\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{width:\"min(100vw - 48px, 1120px)\",y:undefined},WtNiEKlZc:{width:\"min(100vw - 80px, 640px)\",y:5736}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:516,width:\"max((min(100vw - 80px, 1120px) - 80px) / 3, 1px)\",y:6684,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pwfi6h-container\",children:/*#__PURE__*/_jsx(PricingCard,{a_wBaY9qu:\"var(--token-1befc1d0-a9be-463a-9b65-8e98a7281b45, rgba(14, 107, 236, 0.05))\",C7dZluXYO:\"Advanced AI toolkits\",DhIewjOJS:\"Free demo\",eixPrzDJ3:true,FraxtqTFW:\"USD\",Fw9pjXKFV:{borderColor:'var(--token-987359ad-fda1-4597-9209-cf9ade080265, rgb(14, 107, 236)) /* {\"name\":\"Lejit Blue\"} */',borderStyle:\"solid\",borderWidth:10},GQ8gbo8Vc:\"$99\",height:\"100%\",HzAEVO3_Q:\"Priority community support\",i15QucasJ:true,id:\"QkwvA8Lfb\",jBTOGB38o:\"rgb(0, 0, 0)\",jY8eRLa1K:\"var(--token-043dd7b2-1be1-487f-83f9-231d024223e2, rgb(255, 80, 124))\",layoutId:\"QkwvA8Lfb\",odtinmi47:\"Dive deeper into generative AI with advanced modules and tools.\",rtAZPFAD7:\"$199\",style:{width:\"100%\"},sWhwraXnE:\"var(--token-043dd7b2-1be1-487f-83f9-231d024223e2, rgb(255, 80, 124))\",TVVBEWaMi:\"var(--token-30cfbc78-3d30-45eb-b7ae-170ec4e17976, rgb(152, 157, 160))\",variant:\"ucDdbl9GM\",wa2ELDXz2:\"var(--token-987359ad-fda1-4597-9209-cf9ade080265, rgb(14, 107, 236))\",width:\"100%\",wK2e5KpXQ:true,ww4SuYgCE:\"Advanced\",XBEa_wIfO:\"All course modules\",YDJKZupAL:\"1-on-1 mentorship sessions\",z_aFxZe6O:\"Lifetime access\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{width:\"min(100vw - 48px, 1120px)\",y:undefined},WtNiEKlZc:{width:\"min(100vw - 80px, 640px)\",y:6292}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:516,width:\"max((min(100vw - 80px, 1120px) - 80px) / 3, 1px)\",y:6684,children:/*#__PURE__*/_jsx(Container,{className:\"framer-qadodp-container\",children:/*#__PURE__*/_jsx(PricingCard,{a_wBaY9qu:\"var(--token-1befc1d0-a9be-463a-9b65-8e98a7281b45, rgba(14, 107, 236, 0.05))\",C7dZluXYO:\"Professional AI toolkits\",DhIewjOJS:\"Free demo\",eixPrzDJ3:true,FraxtqTFW:\"USD\",Fw9pjXKFV:{borderColor:'var(--token-987359ad-fda1-4597-9209-cf9ade080265, rgb(14, 107, 236)) /* {\"name\":\"Lejit Blue\"} */',borderStyle:\"solid\",borderWidth:10},GQ8gbo8Vc:\"$99\",height:\"100%\",HzAEVO3_Q:\"Priority support\",i15QucasJ:true,id:\"vFhonMRin\",jBTOGB38o:\"rgb(0, 0, 0)\",jY8eRLa1K:\"var(--token-043dd7b2-1be1-487f-83f9-231d024223e2, rgb(255, 80, 124))\",layoutId:\"vFhonMRin\",odtinmi47:\"Master generative AI with all resources and expert mentorship.\",rtAZPFAD7:\"$399\",style:{width:\"100%\"},sWhwraXnE:\"var(--token-043dd7b2-1be1-487f-83f9-231d024223e2, rgb(255, 80, 124))\",TVVBEWaMi:\"var(--token-30cfbc78-3d30-45eb-b7ae-170ec4e17976, rgb(152, 157, 160))\",variant:\"bqxRGaSeu\",wa2ELDXz2:\"var(--token-987359ad-fda1-4597-9209-cf9ade080265, rgb(14, 107, 236))\",width:\"100%\",wK2e5KpXQ:true,ww4SuYgCE:\"Professional\",XBEa_wIfO:\"All course modules\",YDJKZupAL:\"1-on-1 mentorship sessions\",z_aFxZe6O:\"Certificate of mastery\"})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1olblpe\",\"data-styles-preset\":\"KBgV9gmbx\",style:{\"--framer-text-alignment\":\"center\"},children:\"30-day money-back guarantee\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-17zq1w6\",\"data-styles-preset\":\"Ewm9BChyp\",style:{\"--framer-text-alignment\":\"center\"},children:\"30-day money-back guarantee\"})}),className:\"framer-m2c9nu\",\"data-framer-name\":\"Equip yourself with a broad range of skills to become a versatile, future-ready AI expert.\",fonts:[\"Inter\"],name:\"Equip yourself with a broad range of skills to become a versatile, future-ready AI expert.\",verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-jletsi\",\"data-framer-name\":\"Company Logos\",id:elementId10,name:\"Company Logos\",ref:ref14,children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-srxopb\",\"data-framer-name\":\"Company Logos Wrapper\",name:\"Company Logos Wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1olblpe\",\"data-styles-preset\":\"KBgV9gmbx\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2acfc62e-1dad-487e-a2fb-3f54e1bdc5cc, rgb(77, 77, 77))\"},children:\"This course have helped amazing people from\"})}),className:\"framer-w3ivbd\",\"data-framer-name\":\"This course have helped amazing people from\",fonts:[\"Inter\"],name:\"This course have helped amazing people from\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-epryxr-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"LswZUlGQK\",layoutId:\"LswZUlGQK\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(SVG,{className:\"framer-19yn1gg\",\"data-framer-name\":\"Dropbox Logo\",layout:\"position\",name:\"Dropbox Logo\",opacity:.3,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 150 50\"><path d=\"M 26.233 17.702 L 18.867 22.405 L 26.233 27.107 L 18.867 31.809 L 11.5 27.067 L 18.867 22.365 L 11.5 17.702 L 18.867 13 Z M 18.827 33.298 L 26.195 28.595 L 33.562 33.298 L 26.194 38 Z M 26.233 27.067 L 33.6 22.365 L 26.233 17.702 L 33.561 13 L 40.928 17.702 L 33.561 22.404 L 40.928 27.106 L 33.561 31.809 Z\" fill=\"var(--token-00f26a75-eb5e-4168-b3a6-0b0505689a08, rgb(28, 28, 28))\"></path><path d=\"M 46.688 17.703 L 52.644 17.703 C 56.445 17.703 59.579 19.897 59.579 24.913 L 59.579 25.971 C 59.579 31.026 56.641 33.299 52.761 33.299 L 46.688 33.299 Z M 50.018 20.524 L 50.018 30.438 L 52.565 30.438 C 54.72 30.438 56.17 29.027 56.17 25.893 L 56.17 25.07 C 56.17 21.935 54.642 20.524 52.448 20.524 Z M 61.343 20.681 L 64.008 20.681 L 64.439 23.62 C 64.948 21.621 66.241 20.563 68.592 20.563 L 69.415 20.563 L 69.415 23.933 L 68.044 23.933 C 65.34 23.933 64.674 24.874 64.674 27.538 L 64.674 33.338 L 61.382 33.338 L 61.382 20.68 L 61.343 20.68 Z M 70.081 27.264 L 70.081 26.911 C 70.081 22.679 72.785 20.367 76.468 20.367 C 80.23 20.367 82.855 22.679 82.855 26.911 L 82.855 27.264 C 82.855 31.418 80.308 33.651 76.468 33.651 C 72.393 33.612 70.081 31.418 70.081 27.264 Z M 79.485 27.225 L 79.485 26.911 C 79.485 24.56 78.31 23.15 76.429 23.15 C 74.587 23.15 73.372 24.443 73.372 26.911 L 73.372 27.225 C 73.372 29.498 74.548 30.791 76.429 30.791 C 78.31 30.751 79.485 29.498 79.485 27.225 Z M 84.58 20.681 L 87.323 20.681 L 87.636 23.071 C 88.303 21.465 89.713 20.367 91.79 20.367 C 95.003 20.367 97.119 22.679 97.119 26.951 L 97.119 27.303 C 97.119 31.457 94.768 33.651 91.79 33.651 C 89.792 33.651 88.42 32.75 87.754 31.3 L 87.754 37.687 L 84.541 37.687 Z M 93.789 27.225 L 93.789 26.951 C 93.789 24.443 92.495 23.189 90.771 23.189 C 88.93 23.189 87.715 24.599 87.715 26.951 L 87.715 27.186 C 87.715 29.419 88.89 30.83 90.732 30.83 C 92.613 30.791 93.789 29.576 93.789 27.225 Z M 101.978 30.987 L 101.704 33.299 L 98.882 33.299 L 98.882 16.449 L 102.095 16.449 L 102.095 22.914 C 102.801 21.269 104.211 20.367 106.21 20.367 C 109.227 20.407 111.461 22.483 111.461 26.676 L 111.461 27.068 C 111.461 31.261 109.345 33.651 106.131 33.651 C 104.015 33.612 102.644 32.632 101.978 30.986 Z M 108.091 27.068 L 108.091 26.755 C 108.091 24.443 106.837 23.15 105.074 23.15 C 103.271 23.15 102.018 24.6 102.018 26.794 L 102.018 27.068 C 102.018 29.419 103.232 30.791 105.035 30.791 C 106.955 30.791 108.091 29.576 108.091 27.068 Z M 112.871 27.264 L 112.871 26.911 C 112.871 22.679 115.575 20.367 119.259 20.367 C 123.02 20.367 125.646 22.679 125.646 26.911 L 125.646 27.264 C 125.646 31.418 123.06 33.651 119.259 33.651 C 115.183 33.612 112.871 31.418 112.871 27.264 Z M 122.315 27.225 L 122.315 26.911 C 122.315 24.56 121.139 23.15 119.259 23.15 C 117.417 23.15 116.202 24.443 116.202 26.911 L 116.202 27.225 C 116.202 29.498 117.378 30.791 119.259 30.791 C 121.139 30.751 122.315 29.498 122.315 27.225 Z M 129.956 26.755 L 125.528 20.681 L 129.329 20.681 L 131.876 24.482 L 134.462 20.681 L 138.224 20.681 L 133.718 26.716 L 138.459 33.299 L 134.737 33.299 L 131.837 29.106 L 129.016 33.299 L 125.136 33.299 Z\" fill=\"var(--token-00f26a75-eb5e-4168-b3a6-0b0505689a08, rgb(28, 28, 28))\"></path></svg>',svgContentId:12660264997,title:\"Dropbox Logo\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-vy5si4\",\"data-framer-name\":\"Airtable Logo\",layout:\"position\",name:\"Airtable Logo\",opacity:.3,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 150 50\"><path d=\"M 65.06 25.665 L 63.301 20.922 C 63.269 20.835 63.185 20.777 63.092 20.777 C 62.999 20.777 62.915 20.835 62.883 20.922 L 61.123 25.666 C 61.098 25.734 61.108 25.81 61.15 25.87 C 61.192 25.93 61.26 25.966 61.333 25.966 L 64.851 25.966 C 64.924 25.965 64.993 25.93 65.034 25.871 C 65.076 25.811 65.086 25.734 65.06 25.666 M 65.873 28.331 L 60.311 28.331 C 60.218 28.33 60.134 28.388 60.102 28.476 L 59.007 31.427 C 58.974 31.515 58.891 31.573 58.798 31.573 L 56.387 31.573 C 56.273 31.573 56.177 31.487 56.165 31.374 C 56.161 31.338 56.166 31.301 56.18 31.267 L 61.731 17.439 C 61.765 17.355 61.847 17.299 61.938 17.299 L 64.246 17.299 C 64.337 17.299 64.419 17.355 64.453 17.439 L 70.004 31.267 C 70.017 31.301 70.023 31.338 70.019 31.374 C 70.007 31.488 69.911 31.574 69.797 31.573 L 67.386 31.573 C 67.293 31.573 67.21 31.515 67.177 31.427 L 66.082 28.476 C 66.05 28.389 65.966 28.331 65.873 28.331 M 71.133 22.153 L 73.195 22.153 C 73.255 22.152 73.311 22.176 73.353 22.218 C 73.395 22.26 73.419 22.316 73.418 22.376 L 73.418 31.351 C 73.418 31.41 73.395 31.466 73.353 31.508 C 73.311 31.55 73.255 31.573 73.195 31.573 L 71.133 31.573 C 71.074 31.573 71.018 31.55 70.976 31.508 C 70.934 31.466 70.91 31.409 70.91 31.35 L 70.91 22.375 C 70.91 22.316 70.934 22.259 70.976 22.217 C 71.018 22.176 71.074 22.152 71.133 22.153 M 80.939 24.336 C 80.939 24.395 80.916 24.451 80.874 24.493 C 80.832 24.535 80.775 24.559 80.716 24.559 L 80.654 24.559 C 79.634 24.559 78.886 24.804 78.411 25.293 C 77.935 25.782 77.697 26.591 77.697 27.719 L 77.697 31.35 C 77.697 31.409 77.674 31.466 77.632 31.508 C 77.59 31.55 77.533 31.573 77.474 31.573 L 75.432 31.573 C 75.309 31.573 75.209 31.473 75.209 31.35 L 75.209 22.375 C 75.209 22.316 75.233 22.259 75.274 22.217 C 75.316 22.176 75.373 22.152 75.432 22.153 L 77.454 22.153 C 77.513 22.152 77.57 22.176 77.611 22.218 C 77.653 22.259 77.677 22.316 77.677 22.376 L 77.677 24.151 L 77.718 24.151 C 77.962 23.417 78.35 22.853 78.88 22.458 C 79.41 22.064 80.063 21.867 80.837 21.867 L 80.939 21.867 Z M 86.578 24.253 C 86.454 24.253 86.355 24.352 86.355 24.476 L 86.355 28.209 C 86.355 28.589 86.429 28.861 86.579 29.024 C 86.728 29.187 86.987 29.269 87.354 29.269 L 87.559 29.269 C 87.618 29.269 87.674 29.292 87.716 29.334 C 87.758 29.376 87.782 29.433 87.782 29.492 L 87.782 31.371 C 87.782 31.43 87.758 31.486 87.716 31.528 C 87.674 31.57 87.618 31.594 87.559 31.594 L 86.681 31.594 C 85.77 31.594 85.07 31.359 84.58 30.89 C 84.091 30.421 83.846 29.725 83.846 28.8 L 83.846 24.475 C 83.846 24.416 83.823 24.359 83.781 24.317 C 83.739 24.275 83.682 24.252 83.623 24.252 L 82.336 24.252 C 82.213 24.251 82.114 24.152 82.113 24.029 L 82.113 22.375 C 82.114 22.252 82.213 22.153 82.336 22.152 L 83.623 22.152 C 83.746 22.152 83.846 22.052 83.846 21.929 L 83.846 18.603 C 83.846 18.543 83.869 18.487 83.911 18.445 C 83.953 18.403 84.01 18.379 84.069 18.38 L 86.131 18.38 C 86.254 18.38 86.354 18.479 86.354 18.603 L 86.354 21.929 C 86.354 21.988 86.377 22.045 86.419 22.087 C 86.461 22.129 86.518 22.152 86.577 22.152 L 88.069 22.152 C 88.192 22.152 88.292 22.252 88.292 22.375 L 88.292 24.03 C 88.292 24.089 88.268 24.145 88.226 24.187 C 88.184 24.229 88.128 24.253 88.069 24.253 Z M 96.019 28.78 C 96.488 28.29 96.723 27.652 96.723 26.863 C 96.723 26.075 96.488 25.436 96.019 24.946 C 95.55 24.457 94.935 24.212 94.174 24.212 C 93.413 24.212 92.798 24.457 92.329 24.946 C 91.86 25.436 91.625 26.075 91.625 26.863 C 91.625 27.652 91.86 28.29 92.329 28.78 C 92.798 29.269 93.413 29.514 94.174 29.514 C 94.935 29.514 95.55 29.269 96.019 28.78 Z M 91.258 31.287 C 90.565 30.893 90.018 30.319 89.617 29.564 C 89.216 28.81 89.015 27.909 89.015 26.862 C 89.015 25.816 89.216 24.915 89.617 24.161 C 90.018 23.406 90.565 22.832 91.258 22.438 C 91.952 22.044 92.713 21.846 93.542 21.846 C 94.276 21.846 94.905 21.989 95.428 22.275 C 95.947 22.556 96.38 22.972 96.682 23.478 L 96.723 23.478 L 96.723 22.375 C 96.723 22.316 96.746 22.259 96.788 22.217 C 96.83 22.175 96.887 22.152 96.946 22.152 L 98.988 22.152 C 99.111 22.152 99.211 22.252 99.211 22.375 L 99.211 31.35 C 99.211 31.409 99.188 31.466 99.146 31.508 C 99.104 31.55 99.047 31.573 98.988 31.573 L 96.946 31.573 C 96.887 31.573 96.83 31.55 96.788 31.508 C 96.746 31.466 96.723 31.409 96.723 31.35 L 96.723 30.247 L 96.682 30.247 C 96.38 30.754 95.947 31.169 95.428 31.45 C 94.905 31.736 94.276 31.878 93.542 31.878 C 92.713 31.878 91.952 31.681 91.258 31.287 Z M 107.702 28.78 C 108.171 28.29 108.405 27.652 108.405 26.863 C 108.405 26.075 108.171 25.436 107.702 24.946 C 107.233 24.457 106.618 24.212 105.857 24.212 C 105.095 24.212 104.48 24.457 104.011 24.946 C 103.542 25.436 103.308 26.075 103.308 26.863 C 103.308 27.652 103.542 28.29 104.011 28.78 C 104.48 29.269 105.095 29.514 105.857 29.514 C 106.618 29.514 107.233 29.269 107.702 28.78 Z M 104.603 31.451 C 104.084 31.17 103.651 30.754 103.348 30.248 L 103.308 30.248 L 103.308 31.35 C 103.308 31.409 103.285 31.466 103.243 31.508 C 103.201 31.55 103.144 31.573 103.085 31.573 L 101.023 31.573 C 100.9 31.573 100.8 31.473 100.8 31.35 L 100.8 17.523 C 100.801 17.4 100.9 17.3 101.023 17.3 L 103.085 17.3 C 103.208 17.3 103.308 17.399 103.308 17.523 L 103.308 23.478 L 103.348 23.478 C 103.651 22.971 104.084 22.556 104.603 22.275 C 105.126 21.989 105.755 21.847 106.489 21.847 C 107.318 21.847 108.079 22.044 108.772 22.438 C 109.466 22.833 110.013 23.407 110.414 24.161 C 110.815 24.916 111.016 25.817 111.016 26.863 C 111.016 27.91 110.815 28.81 110.414 29.565 C 110.013 30.32 109.466 30.894 108.773 31.288 C 108.079 31.682 107.318 31.879 106.489 31.879 C 105.755 31.879 105.126 31.737 104.603 31.451 M 114.49 31.573 L 112.428 31.573 C 112.369 31.573 112.312 31.55 112.27 31.508 C 112.228 31.466 112.205 31.409 112.205 31.35 L 112.205 17.522 C 112.205 17.463 112.228 17.407 112.27 17.365 C 112.312 17.323 112.369 17.299 112.428 17.299 L 114.49 17.299 C 114.549 17.299 114.606 17.323 114.648 17.365 C 114.69 17.407 114.713 17.464 114.713 17.523 L 114.713 31.35 C 114.713 31.409 114.69 31.466 114.648 31.508 C 114.606 31.55 114.549 31.573 114.49 31.573 Z M 119.354 24.334 C 119.012 24.601 118.781 24.986 118.662 25.489 C 118.647 25.556 118.663 25.625 118.706 25.678 C 118.748 25.731 118.812 25.762 118.88 25.761 L 122.804 25.761 C 122.869 25.762 122.931 25.733 122.974 25.684 C 123.016 25.635 123.035 25.57 123.025 25.505 C 122.947 25.029 122.743 24.649 122.413 24.365 C 122.025 24.032 121.519 23.865 120.893 23.865 C 120.268 23.865 119.755 24.022 119.354 24.334 Z M 124.381 23.162 C 125.183 24.039 125.584 25.28 125.584 26.883 L 125.584 27.15 C 125.584 27.209 125.56 27.265 125.518 27.307 C 125.476 27.349 125.42 27.373 125.361 27.373 L 118.805 27.373 C 118.738 27.373 118.676 27.402 118.633 27.453 C 118.591 27.503 118.572 27.57 118.584 27.635 C 118.689 28.231 118.952 28.704 119.375 29.055 C 119.857 29.456 120.466 29.657 121.2 29.657 C 122.147 29.657 123.025 29.287 123.831 28.547 C 123.878 28.504 123.942 28.483 124.005 28.491 C 124.069 28.498 124.126 28.533 124.162 28.586 L 125.165 30.025 C 125.23 30.117 125.216 30.244 125.131 30.319 C 124.638 30.75 124.091 31.113 123.504 31.4 C 122.851 31.719 122.083 31.879 121.2 31.879 C 120.18 31.879 119.29 31.672 118.529 31.257 C 117.78 30.856 117.164 30.247 116.755 29.504 C 116.333 28.749 116.122 27.876 116.122 26.884 C 116.122 25.891 116.326 25.015 116.734 24.253 C 117.142 23.492 117.713 22.901 118.447 22.479 C 119.181 22.058 120.037 21.847 121.016 21.847 C 122.457 21.847 123.578 22.286 124.381 23.162 Z M 73.688 18.834 C 73.688 19.676 73.006 20.357 72.165 20.357 C 71.324 20.357 70.642 19.676 70.642 18.834 C 70.642 17.993 71.324 17.311 72.165 17.311 C 73.006 17.311 73.688 17.993 73.688 18.834\" fill=\"var(--token-00f26a75-eb5e-4168-b3a6-0b0505689a08, rgb(28, 28, 28))\"></path><path d=\"M 36.244 13.278 L 26.439 17.335 C 25.894 17.561 25.899 18.335 26.448 18.553 L 36.294 22.457 C 37.159 22.8 38.122 22.8 38.987 22.457 L 48.833 18.552 C 49.382 18.335 49.387 17.561 48.842 17.335 L 39.037 13.278 C 38.143 12.907 37.138 12.907 36.243 13.278\" fill=\"var(--token-00f26a75-eb5e-4168-b3a6-0b0505689a08, rgb(28, 28, 28))\"></path><path d=\"M 38.513 24.589 L 38.513 34.342 C 38.513 34.806 38.981 35.124 39.412 34.953 L 50.384 30.695 C 50.634 30.596 50.799 30.354 50.798 30.084 L 50.798 20.33 C 50.798 19.866 50.331 19.548 49.899 19.719 L 38.928 23.978 C 38.678 24.077 38.514 24.319 38.513 24.588\" fill=\"var(--token-00f26a75-eb5e-4168-b3a6-0b0505689a08, rgb(28, 28, 28))\"></path><path d=\"M 35.952 25.092 L 32.696 26.664 L 32.365 26.824 L 25.492 30.117 C 25.056 30.327 24.5 30.009 24.5 29.525 L 24.5 20.371 C 24.5 20.196 24.59 20.045 24.71 19.931 C 24.76 19.882 24.816 19.84 24.876 19.806 C 25.059 19.702 25.278 19.685 25.475 19.76 L 35.897 23.89 C 36.427 24.1 36.469 24.842 35.952 25.092\" fill=\"var(--token-00f26a75-eb5e-4168-b3a6-0b0505689a08, rgb(28, 28, 28))\"></path><path d=\"M 35.952 25.092 L 32.696 26.664 L 24.711 19.931 C 24.76 19.881 24.816 19.839 24.877 19.806 C 25.06 19.702 25.279 19.685 25.475 19.76 L 35.898 23.89 C 36.427 24.1 36.469 24.842 35.952 25.092\" fill=\"var(--token-00f26a75-eb5e-4168-b3a6-0b0505689a08, rgb(28, 28, 28))\"></path></svg>',svgContentId:12781227985,title:\"Airtable Logo\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-j0t6df\",\"data-framer-name\":\"Bahance Logo\",layout:\"position\",name:\"Bahance Logo\",opacity:.3,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 150 50\"><path d=\"M 35.242 14.736 C 34.508 14.576 33.704 14.5 32.813 14.5 L 24.037 14.5 L 24.037 33.114 L 33.06 33.114 C 33.894 33.114 34.709 33.009 35.492 32.801 C 36.286 32.592 36.994 32.272 37.61 31.836 C 38.228 31.4 38.733 30.822 39.083 30.15 C 39.444 29.467 39.625 28.654 39.625 27.71 C 39.625 26.545 39.348 25.553 38.783 24.721 C 38.22 23.898 37.371 23.318 36.225 22.989 C 37.067 22.591 37.696 22.078 38.125 21.453 C 38.55 20.827 38.763 20.044 38.763 19.108 C 38.763 18.241 38.621 17.508 38.338 16.923 C 38.046 16.33 37.641 15.858 37.123 15.504 C 36.596 15.149 35.973 14.891 35.242 14.736 Z M 33.659 29.827 C 33.281 29.908 32.896 29.947 32.51 29.944 L 28.136 29.944 L 28.136 24.818 L 32.592 24.818 C 33.474 24.818 34.191 25.02 34.729 25.428 C 35.266 25.842 35.536 26.523 35.536 27.483 C 35.536 27.972 35.456 28.377 35.291 28.69 C 35.136 28.99 34.907 29.246 34.625 29.433 C 34.351 29.62 34.026 29.747 33.659 29.827 Z M 34.087 21.498 C 33.611 21.848 33.01 22.02 32.283 22.02 L 28.136 22.02 L 28.136 17.67 L 31.971 17.67 C 32.333 17.67 32.687 17.696 33.025 17.762 C 33.368 17.821 33.665 17.931 33.927 18.089 C 34.191 18.241 34.4 18.459 34.559 18.737 C 34.711 19.014 34.787 19.372 34.787 19.805 C 34.787 20.585 34.559 21.154 34.087 21.498 Z M 47.861 30.696 C 46.823 30.696 46.022 30.424 45.468 29.883 C 44.911 29.341 44.551 28.332 44.551 27.266 L 54.276 27.266 C 54.346 26.221 54.262 25.221 54.019 24.266 C 53.775 23.308 53.384 22.454 52.835 21.708 C 52.283 20.956 51.563 20.344 50.733 19.922 C 49.877 19.475 48.878 19.255 47.737 19.255 C 46.705 19.255 45.772 19.439 44.927 19.804 C 44.106 20.153 43.363 20.664 42.743 21.306 C 42.132 21.938 41.668 22.692 41.331 23.565 C 41.002 24.435 40.834 25.377 40.834 26.384 C 40.834 27.427 40.996 28.389 41.317 29.258 C 41.642 30.131 42.099 30.875 42.686 31.504 C 43.289 32.129 44.005 32.61 44.863 32.953 C 45.721 33.292 46.676 33.463 47.738 33.463 C 49.261 33.463 50.568 33.114 51.641 32.415 C 52.725 31.717 53.52 30.559 54.044 28.936 L 50.784 28.936 C 50.657 29.354 50.331 29.755 49.795 30.131 C 49.254 30.507 48.608 30.696 47.861 30.696 Z M 47.626 22.05 C 48.536 22.05 49.281 22.313 49.721 22.8 C 50.163 23.291 50.486 23.989 50.574 24.933 L 44.551 24.933 C 44.575 24.632 44.631 24.334 44.72 24.044 C 44.815 23.708 44.977 23.393 45.216 23.095 C 45.456 22.802 45.77 22.553 46.153 22.352 C 46.546 22.149 47.035 22.05 47.627 22.05 Z\" fill=\"var(--token-00f26a75-eb5e-4168-b3a6-0b0505689a08, rgb(28, 28, 28))\"></path><path d=\"M 59.537 14.5 L 59.537 21.518 L 59.621 21.518 C 60.091 20.737 60.686 20.169 61.416 19.818 C 62.146 19.463 62.857 19.288 63.551 19.288 C 64.54 19.288 65.35 19.418 65.983 19.686 C 66.616 19.958 67.117 20.327 67.484 20.807 C 67.844 21.285 68.098 21.869 68.247 22.556 C 68.393 23.241 68.47 23.998 68.47 24.832 L 68.47 33.114 L 64.75 33.114 L 64.75 25.504 C 64.75 24.394 64.576 23.559 64.231 23.014 C 63.885 22.467 63.272 22.193 62.387 22.193 C 61.386 22.193 60.663 22.497 60.214 23.095 C 59.757 23.695 59.537 24.68 59.537 26.052 L 59.537 33.114 L 55.817 33.114 L 55.817 14.5 Z\" fill=\"var(--token-00f26a75-eb5e-4168-b3a6-0b0505689a08, rgb(28, 28, 28))\"></path><path d=\"M 72.563 20.224 C 71.978 20.566 71.481 21.04 71.11 21.608 C 70.722 22.181 70.506 22.903 70.452 23.778 L 74.167 23.778 C 74.241 23.045 74.481 22.52 74.898 22.201 C 75.305 21.893 75.879 21.731 76.603 21.731 C 76.928 21.731 77.234 21.755 77.522 21.796 C 77.787 21.835 78.041 21.924 78.271 22.059 C 78.487 22.193 78.665 22.382 78.785 22.605 C 78.914 22.843 78.984 23.16 78.984 23.559 C 79.001 23.946 78.886 24.235 78.646 24.435 C 78.401 24.634 78.07 24.79 77.655 24.894 C 77.234 24.999 76.764 25.075 76.219 25.129 C 75.67 25.183 75.122 25.253 74.577 25.337 C 74.021 25.425 73.471 25.544 72.928 25.691 C 72.406 25.825 71.912 26.05 71.468 26.356 C 71.037 26.651 70.693 27.049 70.428 27.545 C 70.155 28.039 70.018 28.671 70.018 29.438 C 70.018 30.134 70.138 30.736 70.372 31.243 C 70.594 31.731 70.928 32.16 71.346 32.496 C 71.763 32.826 72.251 33.068 72.8 33.226 C 73.359 33.382 73.955 33.463 74.596 33.463 C 75.425 33.464 76.25 33.341 77.043 33.1 C 77.837 32.86 78.555 32.418 79.127 31.817 C 79.144 32.044 79.175 32.266 79.219 32.481 C 79.261 32.701 79.354 32.953 79.464 33.114 L 83.246 33.123 C 83.067 32.848 82.876 32.427 82.803 31.867 C 82.735 31.287 82.7 30.704 82.7 30.12 L 82.7 23.095 C 82.7 22.275 82.515 21.614 82.148 21.126 C 81.786 20.624 81.319 20.241 80.746 19.959 C 80.171 19.68 79.539 19.493 78.847 19.398 C 78.164 19.304 77.475 19.256 76.786 19.255 C 76.036 19.255 75.296 19.326 74.557 19.479 C 73.815 19.626 73.154 19.872 72.563 20.224 Z M 77.649 27.049 C 77.912 26.994 78.167 26.93 78.397 26.853 C 78.614 26.786 78.814 26.673 78.984 26.523 L 78.984 27.909 C 78.984 28.119 78.962 28.398 78.914 28.745 C 78.876 29.09 78.761 29.432 78.571 29.771 C 78.384 30.11 78.083 30.402 77.686 30.645 C 77.285 30.888 76.724 31.009 75.997 31.009 C 75.703 31.009 75.417 30.989 75.14 30.933 C 74.882 30.889 74.635 30.796 74.413 30.66 C 74.203 30.529 74.033 30.345 73.92 30.126 C 73.801 29.898 73.738 29.62 73.738 29.291 C 73.738 28.946 73.801 28.654 73.92 28.429 C 74.038 28.21 74.203 28.019 74.403 27.87 C 74.614 27.714 74.849 27.595 75.1 27.518 C 75.368 27.431 75.642 27.361 75.919 27.307 C 76.211 27.256 76.505 27.214 76.8 27.18 C 77.084 27.145 77.367 27.102 77.649 27.049 Z\" fill=\"var(--token-00f26a75-eb5e-4168-b3a6-0b0505689a08, rgb(28, 28, 28))\"></path><path d=\"M 88.253 19.64 L 88.253 21.518 L 88.336 21.518 C 88.804 20.737 89.409 20.17 90.16 19.818 C 90.876 19.471 91.661 19.29 92.456 19.288 C 93.449 19.288 94.265 19.418 94.895 19.686 C 95.536 19.958 96.034 20.327 96.395 20.807 C 96.766 21.285 97.02 21.869 97.169 22.556 C 97.318 23.241 97.393 23.998 97.393 24.832 L 97.393 33.114 L 93.671 33.114 L 93.671 25.504 C 93.671 24.394 93.497 23.559 93.15 23.014 C 92.797 22.467 92.19 22.118 91.298 22.118 C 90.292 22.118 89.557 22.497 89.107 23.095 C 88.653 23.695 88.429 24.68 88.429 26.051 L 88.429 33.114 L 84.747 33.114 L 84.747 19.64 Z M 104.15 22.454 C 104.545 22.181 105.037 22.051 105.632 22.051 C 107.214 22.051 108.126 22.818 108.367 24.356 L 111.997 24.356 C 111.94 23.492 111.733 22.736 111.372 22.104 C 111.014 21.481 110.529 20.941 109.947 20.519 C 109.366 20.091 108.704 19.773 107.967 19.566 C 107.215 19.359 106.438 19.255 105.657 19.255 C 104.563 19.255 103.589 19.439 102.737 19.804 C 101.881 20.17 101.157 20.679 100.565 21.333 C 99.968 21.983 99.52 22.759 99.217 23.655 C 98.912 24.552 98.759 25.524 98.759 26.567 C 98.759 27.575 98.924 28.504 99.253 29.349 C 99.589 30.192 100.049 30.919 100.641 31.529 C 101.233 32.138 101.952 32.61 102.799 32.953 C 103.647 33.292 104.567 33.463 105.579 33.463 C 107.37 33.463 108.841 32.989 109.99 32.054 C 111.134 31.112 111.829 29.748 112.075 27.96 L 108.5 27.96 C 108.375 28.794 108.08 29.459 107.604 29.955 C 107.125 30.447 106.443 30.696 105.551 30.696 C 104.977 30.696 104.492 30.566 104.094 30.303 C 103.703 30.048 103.376 29.704 103.14 29.3 C 102.905 28.887 102.739 28.432 102.631 27.928 C 102.53 27.437 102.477 26.938 102.473 26.437 C 102.473 25.931 102.53 25.423 102.631 24.908 C 102.739 24.394 102.913 23.924 103.166 23.499 C 103.411 23.081 103.748 22.724 104.15 22.454 Z M 51.339 15.749 L 43.793 15.749 L 43.793 17.586 L 51.339 17.586 Z\" fill=\"var(--token-00f26a75-eb5e-4168-b3a6-0b0505689a08, rgb(28, 28, 28))\"></path><path d=\"M 120.083 30.696 C 119.037 30.696 118.198 30.423 117.641 29.882 C 117.084 29.341 116.728 28.331 116.728 27.266 L 126.497 27.266 C 126.565 26.221 126.473 25.221 126.234 24.266 C 125.992 23.308 125.597 22.454 125.048 21.707 C 124.502 20.96 123.799 20.362 122.944 19.921 C 122.097 19.474 121.094 19.255 119.955 19.255 C 118.928 19.255 117.988 19.438 117.141 19.803 C 116.322 20.155 115.582 20.666 114.962 21.306 C 114.355 21.938 113.881 22.691 113.547 23.565 C 113.218 24.435 113.052 25.377 113.052 26.384 C 113.052 27.426 113.212 28.389 113.534 29.257 C 113.858 30.131 114.313 30.874 114.907 31.504 C 115.507 32.129 116.224 32.61 117.08 32.953 C 117.931 33.291 118.89 33.463 119.955 33.463 C 121.484 33.463 122.786 33.114 123.862 32.414 C 124.939 31.716 125.74 30.559 126.261 28.936 L 123.001 28.936 C 122.882 29.353 122.548 29.755 122.01 30.131 C 121.472 30.507 120.828 30.696 120.083 30.696 Z M 119.847 22.05 C 120.744 22.05 121.495 22.313 121.941 22.8 C 122.383 23.291 122.698 23.989 122.797 24.933 L 116.728 24.933 C 116.744 24.67 116.806 24.372 116.893 24.044 C 116.998 23.698 117.169 23.376 117.396 23.095 C 117.631 22.802 117.982 22.553 118.366 22.352 C 118.764 22.149 119.256 22.05 119.847 22.05 Z\" fill=\"var(--token-00f26a75-eb5e-4168-b3a6-0b0505689a08, rgb(28, 28, 28))\"></path></svg>',svgContentId:9129874079,title:\"Bahance Logo\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1wzm0yi\",\"data-framer-name\":\"Asana Logo\",layout:\"position\",name:\"Asana Logo\",opacity:.3,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 150 50\"><path d=\"M 64.155 31.799 C 63.188 31.799 62.629 30.91 62.568 30.212 L 62.568 30.21 C 61.651 31.425 59.799 32.085 58.1 32.085 C 54.238 32.085 51.107 28.951 51.107 25.086 C 51.107 21.221 54.238 18.088 58.1 18.088 C 59.799 18.088 61.493 18.638 62.568 19.962 L 62.568 18.95 L 62.57 18.95 C 62.582 18.739 62.756 18.573 62.967 18.572 L 64.721 18.572 C 64.933 18.572 65.107 18.74 65.118 18.95 L 65.12 18.95 L 65.12 31.399 C 65.12 31.619 64.942 31.798 64.721 31.799 Z M 53.659 25.086 C 53.659 27.599 55.651 29.635 58.107 29.635 C 60.563 29.635 62.554 27.599 62.554 25.086 C 62.554 22.574 60.563 20.537 58.107 20.537 C 55.651 20.537 53.659 22.574 53.659 25.086 Z\" fill=\"var(--token-00f26a75-eb5e-4168-b3a6-0b0505689a08, rgb(28, 28, 28))\"></path><path d=\"M 69.311 28.429 C 70.482 29.241 71.76 29.635 72.989 29.635 C 74.159 29.635 75.368 29.028 75.368 27.972 C 75.368 26.902 73.852 26.517 72.397 26.148 C 71.934 26.03 71.476 25.914 71.076 25.778 C 69.42 25.215 67.993 24.051 67.993 22.165 C 67.993 19.28 70.562 18.088 72.96 18.088 C 74.479 18.088 76.047 18.589 77.063 19.307 C 77.413 19.572 77.2 19.877 77.2 19.877 L 76.23 21.264 C 76.121 21.42 75.93 21.555 75.657 21.386 C 75.634 21.372 75.612 21.358 75.59 21.344 C 75.248 21.126 74.322 20.537 72.96 20.537 C 71.497 20.537 70.616 21.213 70.616 22.051 C 70.616 23.056 71.761 23.372 73.103 23.715 C 75.441 24.345 77.991 25.103 77.991 27.972 C 77.991 30.514 75.615 32.085 72.989 32.085 C 70.998 32.085 69.304 31.517 67.883 30.474 C 67.587 30.177 67.794 29.902 67.794 29.902 L 68.759 28.522 C 68.955 28.265 69.203 28.354 69.311 28.429 Z\" fill=\"var(--token-00f26a75-eb5e-4168-b3a6-0b0505689a08, rgb(28, 28, 28))\"></path><path d=\"M 123.089 30.212 C 123.151 30.91 123.709 31.799 124.677 31.799 L 125.243 31.799 C 125.463 31.798 125.642 31.619 125.642 31.399 L 125.642 18.951 L 125.639 18.951 C 125.628 18.739 125.454 18.574 125.243 18.573 L 123.489 18.573 C 123.277 18.574 123.103 18.739 123.092 18.951 L 123.089 18.951 L 123.089 19.962 C 122.015 18.637 120.32 18.087 118.621 18.087 C 114.759 18.087 111.629 21.221 111.629 25.086 C 111.629 28.951 114.759 32.084 118.621 32.084 C 120.32 32.084 122.172 31.425 123.089 30.21 Z M 118.628 29.635 C 116.172 29.635 114.181 27.599 114.181 25.086 C 114.181 22.574 116.172 20.537 118.628 20.537 C 121.084 20.537 123.075 22.574 123.075 25.086 C 123.075 27.599 121.084 29.635 118.628 29.635 Z\" fill=\"var(--token-00f26a75-eb5e-4168-b3a6-0b0505689a08, rgb(28, 28, 28))\"></path><path d=\"M 109.411 24.198 C 109.411 20.567 107.122 18.118 103.472 18.118 C 101.73 18.118 100.301 19.126 99.797 19.992 C 99.688 19.315 99.328 18.603 98.214 18.603 L 97.646 18.603 C 97.426 18.603 97.247 18.783 97.247 19.003 L 97.247 31.452 L 97.249 31.452 C 97.261 31.662 97.434 31.83 97.646 31.83 L 99.4 31.83 C 99.427 31.83 99.453 31.827 99.479 31.822 C 99.486 31.82 99.493 31.818 99.501 31.816 C 99.505 31.815 99.509 31.813 99.513 31.812 L 99.524 31.808 C 99.534 31.806 99.543 31.803 99.552 31.8 C 99.564 31.795 99.575 31.789 99.586 31.782 L 99.596 31.776 C 99.603 31.772 99.61 31.768 99.617 31.764 C 99.635 31.753 99.651 31.74 99.666 31.725 L 99.675 31.719 C 99.748 31.649 99.792 31.554 99.797 31.452 L 99.799 31.452 L 99.799 24.098 C 99.799 23.162 100.171 22.264 100.833 21.602 C 101.495 20.94 102.392 20.568 103.328 20.567 C 105.278 20.568 106.858 22.149 106.857 24.098 L 106.859 30.245 L 106.859 30.243 L 106.859 30.251 L 106.86 30.26 L 106.86 31.452 L 106.862 31.452 C 106.874 31.664 107.048 31.829 107.259 31.83 L 109.013 31.83 C 109.04 31.83 109.066 31.827 109.092 31.822 C 109.102 31.82 109.112 31.816 109.122 31.813 L 109.132 31.81 C 109.143 31.807 109.154 31.804 109.165 31.799 L 109.169 31.798 L 109.182 31.791 L 109.196 31.783 L 109.206 31.778 L 109.21 31.775 L 109.215 31.773 C 109.221 31.771 109.226 31.768 109.231 31.764 C 109.247 31.753 109.262 31.741 109.276 31.728 L 109.278 31.726 L 109.284 31.721 L 109.288 31.719 C 109.304 31.703 109.319 31.686 109.333 31.667 L 109.334 31.666 L 109.334 31.665 L 109.336 31.663 C 109.38 31.602 109.406 31.529 109.41 31.453 L 109.41 31.452 L 109.412 31.452 Z\" fill=\"var(--token-00f26a75-eb5e-4168-b3a6-0b0505689a08, rgb(28, 28, 28))\"></path><path d=\"M 92.732 31.799 C 91.765 31.799 91.206 30.91 91.145 30.212 L 91.145 30.211 C 90.227 31.425 88.376 32.085 86.677 32.085 C 82.815 32.085 79.684 28.951 79.684 25.086 C 79.684 21.221 82.815 18.088 86.677 18.088 C 88.376 18.088 90.07 18.638 91.145 19.962 L 91.145 18.951 L 91.147 18.951 C 91.158 18.74 91.332 18.574 91.544 18.573 L 93.298 18.573 C 93.51 18.573 93.683 18.741 93.695 18.951 L 93.697 18.951 L 93.697 31.399 C 93.697 31.62 93.518 31.799 93.298 31.799 L 92.732 31.799 Z M 82.236 25.086 C 82.236 27.599 84.227 29.635 86.683 29.635 C 89.14 29.635 91.131 27.599 91.131 25.086 C 91.131 22.574 89.14 20.537 86.683 20.537 C 84.227 20.537 82.236 22.574 82.236 25.086 Z\" fill=\"var(--token-00f26a75-eb5e-4168-b3a6-0b0505689a08, rgb(28, 28, 28))\"></path><path d=\"M 41.304 25.562 C 38.704 25.562 36.598 27.669 36.598 30.268 C 36.598 32.867 38.704 34.974 41.304 34.974 C 43.902 34.974 46.009 32.867 46.01 30.268 C 46.01 29.02 45.514 27.823 44.631 26.941 C 43.749 26.058 42.552 25.562 41.304 25.562 Z M 29.077 25.562 C 27.384 25.545 25.813 26.438 24.961 27.901 C 24.11 29.364 24.11 31.172 24.961 32.635 C 25.813 34.098 27.384 34.991 29.077 34.974 C 30.77 34.991 32.341 34.098 33.193 32.635 C 34.044 31.172 34.044 29.364 33.193 27.901 C 32.341 26.438 30.77 25.545 29.077 25.562 Z M 39.896 19.68 C 39.913 21.373 39.02 22.944 37.557 23.796 C 36.094 24.647 34.286 24.647 32.823 23.796 C 31.36 22.944 30.467 21.373 30.484 19.68 C 30.511 17.1 32.61 15.023 35.19 15.023 C 37.77 15.023 39.869 17.1 39.896 19.68 Z\" fill=\"var(--token-00f26a75-eb5e-4168-b3a6-0b0505689a08, rgb(28, 28, 28))\"></path></svg>',svgContentId:10026189147,title:\"Asana Logo\",withExternalLayout:true})],speed:25,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-6t819t\",\"data-framer-name\":\"Course Details\",id:elementId11,name:\"Course Details\",ref:ref15,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xjdvyr\",\"data-framer-name\":\"Course Details Wrapper\",name:\"Course Details Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{y:undefined},WtNiEKlZc:{y:7464}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,y:7904,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1twg5im-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{variant:\"bRIvZWhIZ\"}},children:/*#__PURE__*/_jsx(DetailsCard,{bZw23KxvP:\"Difficulty\",cKYY0axlk:\"Intermediate\",height:\"100%\",id:\"qM7nI1b7Y\",layoutId:\"qM7nI1b7Y\",miCnh9_RJ:\"Gauge\",TfKhEyKzu:\"var(--token-342ca76b-3fbd-4ec1-b2bc-bd892795bf7e, rgb(79, 26, 239))\",variant:\"kgMlZX0xc\",VKilSm4g3:\"var(--token-987359ad-fda1-4597-9209-cf9ade080265, rgb(14, 107, 236))\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{y:undefined},WtNiEKlZc:{y:7464}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,y:7904,children:/*#__PURE__*/_jsx(Container,{className:\"framer-18qmohu-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{variant:\"bRIvZWhIZ\"}},children:/*#__PURE__*/_jsx(DetailsCard,{bZw23KxvP:\"Resources\",cKYY0axlk:\"Workbook\",height:\"100%\",id:\"fTWI0AfWt\",layoutId:\"fTWI0AfWt\",miCnh9_RJ:\"Files\",TfKhEyKzu:\"var(--token-342ca76b-3fbd-4ec1-b2bc-bd892795bf7e, rgb(79, 26, 239))\",variant:\"kgMlZX0xc\",VKilSm4g3:\"var(--token-987359ad-fda1-4597-9209-cf9ade080265, rgb(14, 107, 236))\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{y:undefined},WtNiEKlZc:{y:7464}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,y:7904,children:/*#__PURE__*/_jsx(Container,{className:\"framer-nfgsyo-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{variant:\"bRIvZWhIZ\"}},children:/*#__PURE__*/_jsx(DetailsCard,{bZw23KxvP:\"Duration\",cKYY0axlk:\"40+ hours\",height:\"100%\",id:\"oTxcObat1\",layoutId:\"oTxcObat1\",miCnh9_RJ:\"Clock\",TfKhEyKzu:\"var(--token-342ca76b-3fbd-4ec1-b2bc-bd892795bf7e, rgb(79, 26, 239))\",variant:\"kgMlZX0xc\",VKilSm4g3:\"var(--token-987359ad-fda1-4597-9209-cf9ade080265, rgb(14, 107, 236))\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{y:undefined},WtNiEKlZc:{y:7584}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,y:8040,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5rbulf-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{variant:\"bRIvZWhIZ\"}},children:/*#__PURE__*/_jsx(DetailsCard,{bZw23KxvP:\"Certificate\",cKYY0axlk:\"Recognized\",height:\"100%\",id:\"yKuvJl8cR\",layoutId:\"yKuvJl8cR\",miCnh9_RJ:\"Certificate\",TfKhEyKzu:\"var(--token-342ca76b-3fbd-4ec1-b2bc-bd892795bf7e, rgb(79, 26, 239))\",variant:\"kgMlZX0xc\",VKilSm4g3:\"var(--token-987359ad-fda1-4597-9209-cf9ade080265, rgb(14, 107, 236))\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{y:undefined},WtNiEKlZc:{y:7584}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,y:8040,children:/*#__PURE__*/_jsx(Container,{className:\"framer-jbw5h6-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{variant:\"bRIvZWhIZ\"}},children:/*#__PURE__*/_jsx(DetailsCard,{bZw23KxvP:\"Lessons\",cKYY0axlk:\"50 lessons\",height:\"100%\",id:\"qVMDlVNIx\",layoutId:\"qVMDlVNIx\",miCnh9_RJ:\"Video\",TfKhEyKzu:\"var(--token-342ca76b-3fbd-4ec1-b2bc-bd892795bf7e, rgb(79, 26, 239))\",variant:\"kgMlZX0xc\",VKilSm4g3:\"var(--token-987359ad-fda1-4597-9209-cf9ade080265, rgb(14, 107, 236))\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{y:undefined},WtNiEKlZc:{y:7584}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,y:8040,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tiyn3-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{variant:\"bRIvZWhIZ\"}},children:/*#__PURE__*/_jsx(DetailsCard,{bZw23KxvP:\"Support\",cKYY0axlk:\"Community\",height:\"100%\",id:\"C7J41uFSj\",layoutId:\"C7J41uFSj\",miCnh9_RJ:\"Lifebuoy\",TfKhEyKzu:\"var(--token-342ca76b-3fbd-4ec1-b2bc-bd892795bf7e, rgb(79, 26, 239))\",variant:\"kgMlZX0xc\",VKilSm4g3:\"var(--token-987359ad-fda1-4597-9209-cf9ade080265, rgb(14, 107, 236))\",width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1atnhwx\",\"data-framer-name\":\"Pains\",name:\"Pains\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ztlswf\",\"data-framer-name\":\"Pains Wrapper\",name:\"Pains Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xyfxw6\",\"data-framer-name\":\"Left Column\",name:\"Left Column\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1rpe66o\",\"data-styles-preset\":\"DSPHxWNiI\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-00f26a75-eb5e-4168-b3a6-0b0505689a08, rgb(28, 28, 28))\"},children:\"Facing challenges with generative AI?\"})})},WtNiEKlZc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1rpe66o\",\"data-styles-preset\":\"DSPHxWNiI\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-00f26a75-eb5e-4168-b3a6-0b0505689a08, rgb(28, 28, 28))\"},children:\"Facing challenges with generative AI?\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1rpe66o\",\"data-styles-preset\":\"DSPHxWNiI\",style:{\"--framer-text-color\":\"var(--token-00f26a75-eb5e-4168-b3a6-0b0505689a08, rgb(28, 28, 28))\"},children:\"Facing challenges with generative AI?\"})}),className:\"framer-17fver\",\"data-framer-name\":\"What you\u2019ll learn from this course\",fonts:[\"Inter\"],name:\"What you\u2019ll learn from this course\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1305ls2\",\"data-styles-preset\":\"YeRS4aV5v\",style:{\"--framer-text-alignment\":\"center\"},children:\"Join over 1,000+ learners who've turned their challenges with Generative AI  into victories.\"})})},WtNiEKlZc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1305ls2\",\"data-styles-preset\":\"YeRS4aV5v\",style:{\"--framer-text-alignment\":\"center\"},children:\"Join over 1,000+ learners who've turned their challenges with Generative AI  into victories.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1305ls2\",\"data-styles-preset\":\"YeRS4aV5v\",children:\"Join over 1,000+ learners who've turned their challenges with Generative AI  into victories.\"})}),className:\"framer-1yu6jpu\",\"data-framer-name\":\"Over 5,000 students faced these pains. They all triumphed, smashing their AI challenges with our course.\",fonts:[\"Inter\"],name:\"Over 5,000 students faced these pains. They all triumphed, smashing their AI challenges with our course.\",verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mwenp1\",\"data-framer-name\":\"Right Column\",name:\"Right Column\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{width:\"min(min(100vw - 48px, 1120px), 220px)\",y:undefined},WtNiEKlZc:{y:8058.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,width:\"480px\",y:8256,children:/*#__PURE__*/_jsx(Container,{className:\"framer-n9auc9-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{variant:\"ILqSlOxhq\"}},children:/*#__PURE__*/_jsx(DetailsCardLarge,{a4L2N9A3f:\"Overwhelmed by AI complexity?\",height:\"100%\",HqyRbXUUJ:\"Simplified step-by-step tutorials for all skill levels.\",id:\"lTsRMO1vd\",JfZol7Nri:\"PuzzlePiece\",K_50kURhH:\"var(--token-987359ad-fda1-4597-9209-cf9ade080265, rgb(14, 107, 236))\",layoutId:\"lTsRMO1vd\",RH191LRIv:\"var(--token-3837cdad-9f47-4020-9603-23c0a8a29bf9, rgb(250, 89, 40))\",style:{width:\"100%\"},variant:\"k_cKd_wpp\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{width:\"min(min(100vw - 48px, 1120px), 220px)\",y:undefined},WtNiEKlZc:{y:8154.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,width:\"480px\",y:8368,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10twkfn-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{variant:\"ILqSlOxhq\"}},children:/*#__PURE__*/_jsx(DetailsCardLarge,{a4L2N9A3f:\"Can't keep up with tech changes?\",height:\"100%\",HqyRbXUUJ:\"Constant updates on the latest AI advancements.\",id:\"MlypYElzr\",JfZol7Nri:\"Hourglass\",K_50kURhH:\"var(--token-987359ad-fda1-4597-9209-cf9ade080265, rgb(14, 107, 236))\",layoutId:\"MlypYElzr\",RH191LRIv:\"var(--token-3837cdad-9f47-4020-9603-23c0a8a29bf9, rgb(250, 89, 40))\",style:{width:\"100%\"},variant:\"k_cKd_wpp\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{width:\"min(min(100vw - 48px, 1120px), 220px)\",y:undefined},WtNiEKlZc:{y:8250.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,width:\"480px\",y:8480,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uugapv-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{variant:\"ILqSlOxhq\"}},children:/*#__PURE__*/_jsx(DetailsCardLarge,{a4L2N9A3f:\"Struggling to apply AI in real projects?\",height:\"100%\",HqyRbXUUJ:\"Practical projects for real-world application.\",id:\"BSILpWbIi\",JfZol7Nri:\"Gear\",K_50kURhH:\"var(--token-987359ad-fda1-4597-9209-cf9ade080265, rgb(14, 107, 236))\",layoutId:\"BSILpWbIi\",RH191LRIv:\"var(--token-3837cdad-9f47-4020-9603-23c0a8a29bf9, rgb(250, 89, 40))\",style:{width:\"100%\"},variant:\"k_cKd_wpp\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{width:\"min(min(100vw - 48px, 1120px), 220px)\",y:undefined},WtNiEKlZc:{y:8346.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,width:\"480px\",y:8592,children:/*#__PURE__*/_jsx(Container,{className:\"framer-hduiub-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{variant:\"ILqSlOxhq\"}},children:/*#__PURE__*/_jsx(DetailsCardLarge,{a4L2N9A3f:\"Need creative AI inspiration?\",height:\"100%\",HqyRbXUUJ:\"Innovative modules to spark creativity.\",id:\"bx24td8SN\",JfZol7Nri:\"Lightbulb\",K_50kURhH:\"var(--token-987359ad-fda1-4597-9209-cf9ade080265, rgb(14, 107, 236))\",layoutId:\"bx24td8SN\",RH191LRIv:\"var(--token-3837cdad-9f47-4020-9603-23c0a8a29bf9, rgb(250, 89, 40))\",style:{width:\"100%\"},variant:\"k_cKd_wpp\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{width:\"min(min(100vw - 48px, 1120px), 220px)\",y:undefined},WtNiEKlZc:{y:8442.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,width:\"480px\",y:8704,children:/*#__PURE__*/_jsx(Container,{className:\"framer-6yetba-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{variant:\"ILqSlOxhq\"}},children:/*#__PURE__*/_jsx(DetailsCardLarge,{a4L2N9A3f:\"Feeling isolated in your AI journey?\",height:\"100%\",HqyRbXUUJ:\"Join a supportive community for guidance.\",id:\"qwFoMzazF\",JfZol7Nri:\"User\",K_50kURhH:\"var(--token-987359ad-fda1-4597-9209-cf9ade080265, rgb(14, 107, 236))\",layoutId:\"qwFoMzazF\",RH191LRIv:\"var(--token-3837cdad-9f47-4020-9603-23c0a8a29bf9, rgb(250, 89, 40))\",style:{width:\"100%\"},variant:\"k_cKd_wpp\",width:\"100%\"})})})})})]})]})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1h8bfo3\",\"data-framer-name\":\"Key Outcomes\",name:\"Key Outcomes\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7akpdt\",\"data-framer-name\":\"Text\",name:\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1rpe66o\",\"data-styles-preset\":\"DSPHxWNiI\",style:{\"--framer-text-alignment\":\"center\"},children:\"Unlock your potential\"})}),className:\"framer-1rz9gpf\",\"data-framer-name\":\"What you\u2019ll learn from this course\",fonts:[\"Inter\"],name:\"What you\u2019ll learn from this course\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1305ls2\",\"data-styles-preset\":\"YeRS4aV5v\",style:{\"--framer-text-alignment\":\"center\"},children:\"Fast-track your journey into the heart of generative AI and emerge ready to innovate and excel.\"})}),className:\"framer-13g28pv\",\"data-framer-name\":\"We provide a comprehensive, hands-on approach to generative AI, guiding you every step of the way. With real-world projects, up-to-date curriculum, and a supportive learning community, we're committed to transforming your AI challenges into victories.\",fonts:[\"Inter\"],name:\"We provide a comprehensive, hands-on approach to generative AI, guiding you every step of the way. With real-world projects, up-to-date curriculum, and a supportive learning community, we're committed to transforming your AI challenges into victories.\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yhbw3y\",\"data-framer-name\":\"Arc Carousel\",name:\"Arc Carousel\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kdi4n3\",\"data-framer-name\":\"Arc Carousel Slide 1\",id:elementId12,name:\"Arc Carousel Slide 1\",ref:ref16,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bdz4wd\",\"data-framer-name\":\"Carousel Wrapper\",name:\"Carousel Wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{y:undefined},WtNiEKlZc:{y:8933}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:5e3,width:\"5000px\",y:9266.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pii1mx-container\",children:/*#__PURE__*/_jsx(CarouselWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref16,target:\"ZSHB2qk4h\"},{ref:ref17,target:\"AF3BJdstj\"},{ref:ref18,target:\"D880D2CBq\"},{ref:ref19,target:\"msWNxGwzW\"},{ref:ref20,target:\"b8fzZN6zC\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,AK4HCowpC:\"Navigate and adapt to the ever-evolving tech landscape.\",Au3cfm0Sr:addImageAlt({src:\"https://framerusercontent.com/images/YiIFGtEznPUNQpFpnqRLMLZvUIY.webp\",srcSet:\"https://framerusercontent.com/images/YiIFGtEznPUNQpFpnqRLMLZvUIY.webp 572w\"},\"Card 1\"),Cczi87cgT:\"FOUNDER & CREATIVE DIRECTOR\",DrAQiCvlO:addImageAlt({src:\"https://framerusercontent.com/images/8OrGuAcfks1pRdh6jIq4gJLnw8.webp\",srcSet:\"https://framerusercontent.com/images/8OrGuAcfks1pRdh6jIq4gJLnw8.webp 572w\"},\"Card 2\"),height:\"100%\",id:\"rzUc9t8gp\",layoutId:\"rzUc9t8gp\",lPzxcY4oT:\"Unlock new realms of creativity in digital art and design.\",style:{height:\"100%\",width:\"100%\"},variant:\"ZSHB2qk4h\",w0gcyXOp4:\"Apply AI concepts to real-world projects effectively.\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-yfh0xg\",\"data-framer-name\":\"Arc Carousel Slide 2\",id:elementId13,name:\"Arc Carousel Slide 2\",ref:ref17}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-w2smhy\",\"data-framer-name\":\"Arc Carousel Slide 3\",id:elementId14,name:\"Arc Carousel Slide 3\",ref:ref18}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-x1m3py\",\"data-framer-name\":\"Arc Carousel Slide 4\",id:elementId15,name:\"Arc Carousel Slide 4\",ref:ref19}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-k4a6r9\",\"data-framer-name\":\"Arc Carousel Slide 5\",id:elementId16,name:\"Arc Carousel Slide 5\",ref:ref20})]})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1qz1eq4\",\"data-framer-name\":\"Skills\",name:\"Skills\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1aywyw2\",\"data-framer-name\":\"Skills Wrapper\",name:\"Skills Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14ultkl\",\"data-framer-name\":\"Skills Header\",name:\"Skills Header\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WtNiEKlZc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1rpe66o\",\"data-styles-preset\":\"DSPHxWNiI\",style:{\"--framer-text-alignment\":\"center\"},children:\"Skills you'll acquire\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1rpe66o\",\"data-styles-preset\":\"DSPHxWNiI\",children:\"Skills you'll acquire\"})}),className:\"framer-u5et7w\",\"data-framer-name\":\"Empower your future: skills you'll acquire\",fonts:[\"Inter\"],name:\"Empower your future: skills you'll acquire\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WtNiEKlZc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1305ls2\",\"data-styles-preset\":\"YeRS4aV5v\",style:{\"--framer-text-alignment\":\"center\"},children:\"Equip yourself with a broad range of skills to become a versatile, future-ready AI expert.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1305ls2\",\"data-styles-preset\":\"YeRS4aV5v\",children:\"Equip yourself with a broad range of skills to become a versatile, future-ready AI expert.\"})}),className:\"framer-11t1m5g\",\"data-framer-name\":\"Equip yourself with a broad range of skills to become a versatile, future-ready AI expert.\",fonts:[\"Inter\"],name:\"Equip yourself with a broad range of skills to become a versatile, future-ready AI expert.\",verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sdqnzz\",\"data-framer-name\":\"Skills Group\",name:\"Skills Group\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ob6749\",\"data-framer-name\":\"Skills Category\",name:\"Skills Category\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-17zq1w6\",\"data-styles-preset\":\"Ewm9BChyp\",children:\"AI fundamentals\"})}),className:\"framer-euglrc\",\"data-framer-name\":\"AI concepts\",fonts:[\"Inter\"],name:\"AI concepts\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ofc9n6\",\"data-framer-name\":\"Skills List\",name:\"Skills List\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{y:undefined},WtNiEKlZc:{y:11861}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:\"260px\",y:12264,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1l4apeb-container\",children:/*#__PURE__*/_jsx(ListItem,{C4zSN2kMA:\"var(--token-ca7d1dac-bb4c-4da2-8694-cbe9440e9687, rgb(24, 171, 14))\",ebhZ9xQmu:\"Data analysis\",height:\"100%\",id:\"nMWcx2wqI\",layoutId:\"nMWcx2wqI\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{y:undefined},WtNiEKlZc:{y:11893}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:\"260px\",y:12296,children:/*#__PURE__*/_jsx(Container,{className:\"framer-9rrtt2-container\",children:/*#__PURE__*/_jsx(ListItem,{C4zSN2kMA:\"var(--token-ca7d1dac-bb4c-4da2-8694-cbe9440e9687, rgb(24, 171, 14))\",ebhZ9xQmu:\"Machine learning concepts\",height:\"100%\",id:\"BOs61qGYG\",layoutId:\"BOs61qGYG\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{y:undefined},WtNiEKlZc:{y:11925}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:\"260px\",y:12328,children:/*#__PURE__*/_jsx(Container,{className:\"framer-7x5it1-container\",children:/*#__PURE__*/_jsx(ListItem,{C4zSN2kMA:\"var(--token-ca7d1dac-bb4c-4da2-8694-cbe9440e9687, rgb(24, 171, 14))\",ebhZ9xQmu:\"Neural network basics\",height:\"100%\",id:\"twPjiEGHQ\",layoutId:\"twPjiEGHQ\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{y:undefined},WtNiEKlZc:{y:11957}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:\"260px\",y:12360,children:/*#__PURE__*/_jsx(Container,{className:\"framer-8k899f-container\",children:/*#__PURE__*/_jsx(ListItem,{C4zSN2kMA:\"var(--token-ca7d1dac-bb4c-4da2-8694-cbe9440e9687, rgb(24, 171, 14))\",ebhZ9xQmu:\"AI ethics and privacy\",height:\"100%\",id:\"b0sKgTMNC\",layoutId:\"b0sKgTMNC\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{y:undefined},WtNiEKlZc:{y:11989}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:\"260px\",y:12392,children:/*#__PURE__*/_jsx(Container,{className:\"framer-hr8gdi-container\",children:/*#__PURE__*/_jsx(ListItem,{C4zSN2kMA:\"var(--token-ca7d1dac-bb4c-4da2-8694-cbe9440e9687, rgb(24, 171, 14))\",ebhZ9xQmu:\"Algorithm design\",height:\"100%\",id:\"zgmWXwG9l\",layoutId:\"zgmWXwG9l\",style:{width:\"100%\"},width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gqnpb3\",\"data-framer-name\":\"Skills Category\",name:\"Skills Category\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-17zq1w6\",\"data-styles-preset\":\"Ewm9BChyp\",children:\"Creative AI applications\"})}),className:\"framer-12edvem\",\"data-framer-name\":\"AI concepts\",fonts:[\"Inter\"],name:\"AI concepts\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-25k41k\",\"data-framer-name\":\"Skills List\",name:\"Skills List\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{y:undefined},WtNiEKlZc:{y:11861}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:\"260px\",y:12264,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xqvm0s-container\",children:/*#__PURE__*/_jsx(ListItem,{C4zSN2kMA:\"var(--token-ca7d1dac-bb4c-4da2-8694-cbe9440e9687, rgb(24, 171, 14))\",ebhZ9xQmu:\"Digital art creation\",height:\"100%\",id:\"GbslEGrR8\",layoutId:\"GbslEGrR8\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{y:undefined},WtNiEKlZc:{y:11893}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:\"260px\",y:12296,children:/*#__PURE__*/_jsx(Container,{className:\"framer-nls7b8-container\",children:/*#__PURE__*/_jsx(ListItem,{C4zSN2kMA:\"var(--token-ca7d1dac-bb4c-4da2-8694-cbe9440e9687, rgb(24, 171, 14))\",ebhZ9xQmu:\"Design techniques\",height:\"100%\",id:\"vDulaQRZx\",layoutId:\"vDulaQRZx\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{y:undefined},WtNiEKlZc:{y:11925}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:\"260px\",y:12328,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1n51vtb-container\",children:/*#__PURE__*/_jsx(ListItem,{C4zSN2kMA:\"var(--token-ca7d1dac-bb4c-4da2-8694-cbe9440e9687, rgb(24, 171, 14))\",ebhZ9xQmu:\"Media production\",height:\"100%\",id:\"kJdyjopW3\",layoutId:\"kJdyjopW3\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{y:undefined},WtNiEKlZc:{y:11957}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:\"260px\",y:12360,children:/*#__PURE__*/_jsx(Container,{className:\"framer-btk6gg-container\",children:/*#__PURE__*/_jsx(ListItem,{C4zSN2kMA:\"var(--token-ca7d1dac-bb4c-4da2-8694-cbe9440e9687, rgb(24, 171, 14))\",ebhZ9xQmu:\"Audio and visual synthesis\",height:\"100%\",id:\"zKlQAjSVE\",layoutId:\"zKlQAjSVE\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{y:undefined},WtNiEKlZc:{y:11989}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:\"260px\",y:12392,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1oeh1bt-container\",children:/*#__PURE__*/_jsx(ListItem,{C4zSN2kMA:\"var(--token-ca7d1dac-bb4c-4da2-8694-cbe9440e9687, rgb(24, 171, 14))\",ebhZ9xQmu:\"AI-driven storytelling\",height:\"100%\",id:\"ZiYl5cKRP\",layoutId:\"ZiYl5cKRP\",style:{width:\"100%\"},width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r0fi3\",\"data-framer-name\":\"Skills Category\",name:\"Skills Category\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-17zq1w6\",\"data-styles-preset\":\"Ewm9BChyp\",children:\"Technical proficiency\"})}),className:\"framer-32r4g3\",\"data-framer-name\":\"AI concepts\",fonts:[\"Inter\"],name:\"AI concepts\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bgwxi5\",\"data-framer-name\":\"Skills List\",name:\"Skills List\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{y:undefined},WtNiEKlZc:{y:12197}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:\"260px\",y:12600,children:/*#__PURE__*/_jsx(Container,{className:\"framer-12w5a3g-container\",children:/*#__PURE__*/_jsx(ListItem,{C4zSN2kMA:\"var(--token-ca7d1dac-bb4c-4da2-8694-cbe9440e9687, rgb(24, 171, 14))\",ebhZ9xQmu:\"Programming in Python\",height:\"100%\",id:\"agUTS9CVY\",layoutId:\"agUTS9CVY\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{y:undefined},WtNiEKlZc:{y:12229}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:\"260px\",y:12632,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1p798zl-container\",children:/*#__PURE__*/_jsx(ListItem,{C4zSN2kMA:\"var(--token-ca7d1dac-bb4c-4da2-8694-cbe9440e9687, rgb(24, 171, 14))\",ebhZ9xQmu:\"AI model training\",height:\"100%\",id:\"l2MabdMfF\",layoutId:\"l2MabdMfF\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{y:undefined},WtNiEKlZc:{y:12261}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:\"260px\",y:12664,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hmprg2-container\",children:/*#__PURE__*/_jsx(ListItem,{C4zSN2kMA:\"var(--token-ca7d1dac-bb4c-4da2-8694-cbe9440e9687, rgb(24, 171, 14))\",ebhZ9xQmu:\"Code debugging\",height:\"100%\",id:\"K_4dzCJet\",layoutId:\"K_4dzCJet\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{y:undefined},WtNiEKlZc:{y:12293}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:\"260px\",y:12696,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bo8zx9-container\",children:/*#__PURE__*/_jsx(ListItem,{C4zSN2kMA:\"var(--token-ca7d1dac-bb4c-4da2-8694-cbe9440e9687, rgb(24, 171, 14))\",ebhZ9xQmu:\"Data visualization\",height:\"100%\",id:\"D8_BSBIjr\",layoutId:\"D8_BSBIjr\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{y:undefined},WtNiEKlZc:{y:12325}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:\"260px\",y:12728,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rs9y43-container\",children:/*#__PURE__*/_jsx(ListItem,{C4zSN2kMA:\"var(--token-ca7d1dac-bb4c-4da2-8694-cbe9440e9687, rgb(24, 171, 14))\",ebhZ9xQmu:\"Cloud computing for AI\",height:\"100%\",id:\"jI1hE3Gpr\",layoutId:\"jI1hE3Gpr\",style:{width:\"100%\"},width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1djn4j7\",\"data-framer-name\":\"Skills Category\",name:\"Skills Category\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-17zq1w6\",\"data-styles-preset\":\"Ewm9BChyp\",children:\"Innovation and Strategy\"})}),className:\"framer-vl7qvc\",\"data-framer-name\":\"AI concepts\",fonts:[\"Inter\"],name:\"AI concepts\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vbzsgb\",\"data-framer-name\":\"Skills List\",name:\"Skills List\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{y:undefined},WtNiEKlZc:{y:12197}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:\"260px\",y:12600,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1azeoj4-container\",children:/*#__PURE__*/_jsx(ListItem,{C4zSN2kMA:\"var(--token-ca7d1dac-bb4c-4da2-8694-cbe9440e9687, rgb(24, 171, 14))\",ebhZ9xQmu:\"Identifying AI opportunities\",height:\"100%\",id:\"ZxfxXofE2\",layoutId:\"ZxfxXofE2\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{y:undefined},WtNiEKlZc:{y:12229}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:\"260px\",y:12632,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1g36xt1-container\",children:/*#__PURE__*/_jsx(ListItem,{C4zSN2kMA:\"var(--token-ca7d1dac-bb4c-4da2-8694-cbe9440e9687, rgb(24, 171, 14))\",ebhZ9xQmu:\"Strategic planning with AI\",height:\"100%\",id:\"kre9F1ldz\",layoutId:\"kre9F1ldz\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{y:undefined},WtNiEKlZc:{y:12261}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:\"260px\",y:12664,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vj1nol-container\",children:/*#__PURE__*/_jsx(ListItem,{C4zSN2kMA:\"var(--token-ca7d1dac-bb4c-4da2-8694-cbe9440e9687, rgb(24, 171, 14))\",ebhZ9xQmu:\"Innovation in AI applications\",height:\"100%\",id:\"h53jXVF_W\",layoutId:\"h53jXVF_W\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{y:undefined},WtNiEKlZc:{y:12293}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:\"260px\",y:12696,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1udwj40-container\",children:/*#__PURE__*/_jsx(ListItem,{C4zSN2kMA:\"var(--token-ca7d1dac-bb4c-4da2-8694-cbe9440e9687, rgb(24, 171, 14))\",ebhZ9xQmu:\"Market trend analysis\",height:\"100%\",id:\"HuASETA3N\",layoutId:\"HuASETA3N\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{y:undefined},WtNiEKlZc:{y:12325}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:\"260px\",y:12728,children:/*#__PURE__*/_jsx(Container,{className:\"framer-hj25y-container\",children:/*#__PURE__*/_jsx(ListItem,{C4zSN2kMA:\"var(--token-ca7d1dac-bb4c-4da2-8694-cbe9440e9687, rgb(24, 171, 14))\",ebhZ9xQmu:\"Ethical AI deployment\",height:\"100%\",id:\"ithhkUIbn\",layoutId:\"ithhkUIbn\",style:{width:\"100%\"},width:\"100%\"})})})})]})]})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-c9wubz\",\"data-framer-name\":\"Audience\",name:\"Audience\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-flwsoj\",\"data-framer-name\":\"Audience Wrapper\",name:\"Audience Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fcjm9f\",\"data-framer-name\":\"Audience Header\",name:\"Audience Header\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1rpe66o\",\"data-styles-preset\":\"DSPHxWNiI\",style:{\"--framer-text-alignment\":\"center\"},children:\"Who this course is for\"})}),className:\"framer-kjb2mn\",\"data-framer-name\":\"Empower your future: skills you'll acquire\",fonts:[\"Inter\"],name:\"Empower your future: skills you'll acquire\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1305ls2\",\"data-styles-preset\":\"YeRS4aV5v\",style:{\"--framer-text-alignment\":\"center\"},children:\"Tailored for those ready to dive into generative AI, enhancing creativity, and driving innovation across any field.\"})}),className:\"framer-gfp2mn\",\"data-framer-name\":\"Equip yourself with a broad range of skills to become a versatile, future-ready AI expert.\",fonts:[\"Inter\"],name:\"Equip yourself with a broad range of skills to become a versatile, future-ready AI expert.\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lwbdkr\",\"data-framer-name\":\"Grid\",name:\"Grid\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{width:\"max(max(min(100vw - 48px, 1120px), 200px), 320px)\",y:undefined},WtNiEKlZc:{width:\"max(max((min(max(100vw - 80px, 1px), 1120px) - 40px) / 2, 200px), 320px)\",y:12767.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:205,width:\"max(max((min(max(100vw - 80px, 1px), 1120px) - 80px) / 3, 200px), 320px)\",y:13218.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-kdvdnj-container\",children:/*#__PURE__*/_jsx(AudienceCard,{h9ezYG1bg:\"var(--token-987359ad-fda1-4597-9209-cf9ade080265, rgb(14, 107, 236))\",height:\"100%\",id:\"j4eVIJ3be\",layoutId:\"j4eVIJ3be\",lxOHx7dtp:\"Designers\",lZGqT8WZj:\"Unlock AI-driven design innovation, streamline workflows, and bring visionary ideas to life.\",pHpUwmVGw:\"01\",style:{width:\"100%\"},VRI8RCTlG:\"BezierCurve\",vyprMD1JF:\"var(--token-72386102-7a44-40df-835e-8d6424daf8aa, rgb(255, 255, 255))\",width:\"100%\",woIVis5Zd:\"var(--token-72386102-7a44-40df-835e-8d6424daf8aa, rgb(255, 255, 255))\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{width:\"max(max(min(100vw - 48px, 1120px), 200px), 320px)\",y:undefined},WtNiEKlZc:{width:\"max(max((min(max(100vw - 80px, 1px), 1120px) - 40px) / 2, 200px), 320px)\",y:12767.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:205,width:\"max(max((min(max(100vw - 80px, 1px), 1120px) - 80px) / 3, 200px), 320px)\",y:13218.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5jt744-container\",children:/*#__PURE__*/_jsx(AudienceCard,{h9ezYG1bg:\"var(--token-987359ad-fda1-4597-9209-cf9ade080265, rgb(14, 107, 236))\",height:\"100%\",id:\"jpZToHCga\",layoutId:\"jpZToHCga\",lxOHx7dtp:\"Illustrators\",lZGqT8WZj:\"Explore AI to create stunning visuals, experiment with styles, and push the boundaries of digital art.\",pHpUwmVGw:\"02\",style:{height:\"100%\",width:\"100%\"},VRI8RCTlG:\"PaintBrush\",vyprMD1JF:\"var(--token-72386102-7a44-40df-835e-8d6424daf8aa, rgb(255, 255, 255))\",width:\"100%\",woIVis5Zd:\"var(--token-72386102-7a44-40df-835e-8d6424daf8aa, rgb(255, 255, 255))\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{width:\"max(max(min(100vw - 48px, 1120px), 200px), 320px)\",y:undefined},WtNiEKlZc:{width:\"max(max((min(max(100vw - 80px, 1px), 1120px) - 40px) / 2, 200px), 320px)\",y:13012.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:205,width:\"max(max((min(max(100vw - 80px, 1px), 1120px) - 80px) / 3, 200px), 320px)\",y:13218.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-eu9lhx-container\",children:/*#__PURE__*/_jsx(AudienceCard,{h9ezYG1bg:\"var(--token-987359ad-fda1-4597-9209-cf9ade080265, rgb(14, 107, 236))\",height:\"100%\",id:\"pNjW0gA9n\",layoutId:\"pNjW0gA9n\",lxOHx7dtp:\"Developers\",lZGqT8WZj:\"Speed up development, refine code quality, and innovate your solutions quickly and effectively.\",pHpUwmVGw:\"03\",style:{height:\"100%\",width:\"100%\"},VRI8RCTlG:\"Code\",vyprMD1JF:\"var(--token-72386102-7a44-40df-835e-8d6424daf8aa, rgb(255, 255, 255))\",width:\"100%\",woIVis5Zd:\"var(--token-72386102-7a44-40df-835e-8d6424daf8aa, rgb(255, 255, 255))\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{width:\"max(max(min(100vw - 48px, 1120px), 200px), 320px)\",y:undefined},WtNiEKlZc:{width:\"max(max((min(max(100vw - 80px, 1px), 1120px) - 40px) / 2, 200px), 320px)\",y:13012.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:205,width:\"max(max((min(max(100vw - 80px, 1px), 1120px) - 80px) / 3, 200px), 320px)\",y:13463.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1iyyke6-container\",children:/*#__PURE__*/_jsx(AudienceCard,{h9ezYG1bg:\"var(--token-987359ad-fda1-4597-9209-cf9ade080265, rgb(14, 107, 236))\",height:\"100%\",id:\"mzDgCGQn2\",layoutId:\"mzDgCGQn2\",lxOHx7dtp:\"Copywriters\",lZGqT8WZj:\"Generate ideas, refine messaging, and create compelling content with unmatched efficiency.\",pHpUwmVGw:\"04\",style:{height:\"100%\",width:\"100%\"},VRI8RCTlG:\"PencilCircle\",vyprMD1JF:\"var(--token-72386102-7a44-40df-835e-8d6424daf8aa, rgb(255, 255, 255))\",width:\"100%\",woIVis5Zd:\"var(--token-72386102-7a44-40df-835e-8d6424daf8aa, rgb(255, 255, 255))\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{width:\"max(max(min(100vw - 48px, 1120px), 200px), 320px)\",y:undefined},WtNiEKlZc:{width:\"max(max((min(max(100vw - 80px, 1px), 1120px) - 40px) / 2, 200px), 320px)\",y:13257.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:205,width:\"max(max((min(max(100vw - 80px, 1px), 1120px) - 80px) / 3, 200px), 320px)\",y:13463.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ayuv41-container\",children:/*#__PURE__*/_jsx(AudienceCard,{h9ezYG1bg:\"var(--token-987359ad-fda1-4597-9209-cf9ade080265, rgb(14, 107, 236))\",height:\"100%\",id:\"ImctmgXwu\",layoutId:\"ImctmgXwu\",lxOHx7dtp:\"Marketers\",lZGqT8WZj:\"Personalize campaigns, analyze trends, gain followers, and engage audiences at scale.\",pHpUwmVGw:\"05\",style:{height:\"100%\",width:\"100%\"},VRI8RCTlG:\"Megaphone\",vyprMD1JF:\"var(--token-72386102-7a44-40df-835e-8d6424daf8aa, rgb(255, 255, 255))\",width:\"100%\",woIVis5Zd:\"var(--token-72386102-7a44-40df-835e-8d6424daf8aa, rgb(255, 255, 255))\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{width:\"max(max(min(100vw - 48px, 1120px), 200px), 320px)\",y:undefined},WtNiEKlZc:{width:\"max(max((min(max(100vw - 80px, 1px), 1120px) - 40px) / 2, 200px), 320px)\",y:13257.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:205,width:\"max(max((min(max(100vw - 80px, 1px), 1120px) - 80px) / 3, 200px), 320px)\",y:13463.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-d820kd-container\",children:/*#__PURE__*/_jsx(AudienceCard,{h9ezYG1bg:\"var(--token-987359ad-fda1-4597-9209-cf9ade080265, rgb(14, 107, 236))\",height:\"100%\",id:\"n3rUW_SlQ\",layoutId:\"n3rUW_SlQ\",lxOHx7dtp:\"Influencers\",lZGqT8WZj:\"Craft captivating content, analyze engagement, and grow your audience smarter and faster.\",pHpUwmVGw:\"06\",style:{height:\"100%\",width:\"100%\"},VRI8RCTlG:\"ChatsCircle\",vyprMD1JF:\"var(--token-72386102-7a44-40df-835e-8d6424daf8aa, rgb(255, 255, 255))\",width:\"100%\",woIVis5Zd:\"var(--token-72386102-7a44-40df-835e-8d6424daf8aa, rgb(255, 255, 255))\"})})})})]})]})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1d0ygfn\",\"data-framer-name\":\"Students\",id:elementId17,name:\"Students\",ref:ref21,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1r8iue9\",\"data-framer-name\":\"Header Wrapper\",name:\"Header Wrapper\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d5a9xf\",\"data-framer-name\":\"Students Header\",name:\"Students Header\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1rpe66o\",\"data-styles-preset\":\"DSPHxWNiI\",style:{\"--framer-text-alignment\":\"center\"},children:\"Student works\"})})},WtNiEKlZc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1rpe66o\",\"data-styles-preset\":\"DSPHxWNiI\",style:{\"--framer-text-alignment\":\"center\"},children:\"Student works\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1rpe66o\",\"data-styles-preset\":\"DSPHxWNiI\",style:{\"--framer-text-alignment\":\"left\"},children:\"Student works\"})}),className:\"framer-1b6anrr\",\"data-framer-name\":\"Empower your future: skills you'll acquire\",fonts:[\"Inter\"],name:\"Empower your future: skills you'll acquire\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1305ls2\",\"data-styles-preset\":\"YeRS4aV5v\",style:{\"--framer-text-alignment\":\"center\"},children:\"Explore the innovative AI projects our students have crafted, showcasing their creativity and technical skills.\"})})},WtNiEKlZc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1305ls2\",\"data-styles-preset\":\"YeRS4aV5v\",style:{\"--framer-text-alignment\":\"center\"},children:\"Explore the innovative AI projects our students have crafted, showcasing their creativity and technical skills.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1305ls2\",\"data-styles-preset\":\"YeRS4aV5v\",style:{\"--framer-text-alignment\":\"left\"},children:\"Explore the innovative AI projects our students have crafted, showcasing their creativity and technical skills.\"})}),className:\"framer-4qxtce\",\"data-framer-name\":\"Equip yourself with a broad range of skills to become a versatile, future-ready AI expert.\",fonts:[\"Inter\"],name:\"Equip yourself with a broad range of skills to become a versatile, future-ready AI expert.\",verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tr92b3\",\"data-framer-name\":\"Student Works\",name:\"Student Works\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1sw5pcv-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{gap:24,sizingOptions:{heightType:false,widthType:true}},WtNiEKlZc:{gap:24,sizingOptions:{heightType:false,widthType:true}}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:40,height:\"100%\",hoverFactor:1,id:\"kLvw7MPI3\",layoutId:\"kLvw7MPI3\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Student work 1\",fit:\"fill\",intrinsicHeight:640,intrinsicWidth:896,pixelHeight:640,pixelWidth:896,sizes:\"448px\",src:\"https://framerusercontent.com/images/ozSgLY0JDiHdh1YbO3JJNMvF2vM.webp\",srcSet:\"https://framerusercontent.com/images/ozSgLY0JDiHdh1YbO3JJNMvF2vM.webp?scale-down-to=512 512w,https://framerusercontent.com/images/ozSgLY0JDiHdh1YbO3JJNMvF2vM.webp 896w\"},className:\"framer-178c1qd\",\"data-framer-name\":\"Student Work Image 1\",name:\"Student Work Image 1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Student work 2\",fit:\"fill\",intrinsicHeight:640,intrinsicWidth:896,pixelHeight:640,pixelWidth:896,sizes:\"448px\",src:\"https://framerusercontent.com/images/c0DdbA8Se9NdJN4bVrvF31dixY.webp\",srcSet:\"https://framerusercontent.com/images/c0DdbA8Se9NdJN4bVrvF31dixY.webp?scale-down-to=512 512w,https://framerusercontent.com/images/c0DdbA8Se9NdJN4bVrvF31dixY.webp 896w\"},className:\"framer-4stbp2\",\"data-framer-name\":\"Student Work Image 2\",name:\"Student Work Image 2\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Student work 3\",fit:\"fill\",intrinsicHeight:640,intrinsicWidth:896,pixelHeight:640,pixelWidth:896,sizes:\"448px\",src:\"https://framerusercontent.com/images/95Af27GfGYYSrVED47CX38RuMM.webp\",srcSet:\"https://framerusercontent.com/images/95Af27GfGYYSrVED47CX38RuMM.webp?scale-down-to=512 512w,https://framerusercontent.com/images/95Af27GfGYYSrVED47CX38RuMM.webp 896w\"},className:\"framer-xb045l\",\"data-framer-name\":\"Student Work Image 3\",name:\"Student Work Image 3\"})],speed:30,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-151r05f-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{gap:24,sizingOptions:{heightType:false,widthType:true}},WtNiEKlZc:{gap:24,sizingOptions:{heightType:false,widthType:true}}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:40,height:\"100%\",hoverFactor:1,id:\"CKdwTVNjT\",layoutId:\"CKdwTVNjT\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Student work 4\",fit:\"fill\",intrinsicHeight:640,intrinsicWidth:896,pixelHeight:640,pixelWidth:896,sizes:\"448px\",src:\"https://framerusercontent.com/images/UeeAXbMdEocOo5X4MbpxUrvuvE.webp\",srcSet:\"https://framerusercontent.com/images/UeeAXbMdEocOo5X4MbpxUrvuvE.webp?scale-down-to=512 512w,https://framerusercontent.com/images/UeeAXbMdEocOo5X4MbpxUrvuvE.webp 896w\"},className:\"framer-jrhf2s\",\"data-framer-name\":\"Student Work Image 4\",name:\"Student Work Image 4\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Student work 5\",fit:\"fill\",intrinsicHeight:640,intrinsicWidth:896,pixelHeight:640,pixelWidth:896,sizes:\"448px\",src:\"https://framerusercontent.com/images/yfGI8h1hg5lKHYKj31K3JBpro.webp\",srcSet:\"https://framerusercontent.com/images/yfGI8h1hg5lKHYKj31K3JBpro.webp?scale-down-to=512 512w,https://framerusercontent.com/images/yfGI8h1hg5lKHYKj31K3JBpro.webp 896w\"},className:\"framer-1nn697s\",\"data-framer-name\":\"Student Work Image 5\",name:\"Student Work Image 5\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Student work 6\",fit:\"fill\",intrinsicHeight:640,intrinsicWidth:896,pixelHeight:640,pixelWidth:896,sizes:\"448px\",src:\"https://framerusercontent.com/images/vPaxrMa1aslWB6JszGuiaZT6I.webp\",srcSet:\"https://framerusercontent.com/images/vPaxrMa1aslWB6JszGuiaZT6I.webp?scale-down-to=512 512w,https://framerusercontent.com/images/vPaxrMa1aslWB6JszGuiaZT6I.webp 896w\"},className:\"framer-19ihkqu\",\"data-framer-name\":\"Student Work Image 6\",name:\"Student Work Image 6\"})],speed:30,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ilxbz\",\"data-framer-name\":\"Testimonials\",name:\"Testimonials\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-39t7wa\",\"data-framer-name\":\"Column\",name:\"Column\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{width:\"max(min(100vw - 48px, 1120px), 200px)\",y:undefined},WtNiEKlZc:{width:\"max((100vw - 104px) / 2, 200px)\",y:14529}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:222,width:\"max((min(100vw - 80px, 1120px) - 48px) / 3, 200px)\",y:14895,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1akbzb6-container\",children:/*#__PURE__*/_jsx(TestimonialCard,{aiZBwasO4:addImageAlt({src:\"https://framerusercontent.com/images/yigtGYKxnv4flVZyinaplcJaZ2U.jpg\"},\"\"),Au3nudYOp:\"@emilychen_design\",dV6cN4mL0:\"var(--token-72386102-7a44-40df-835e-8d6424daf8aa, rgb(255, 255, 255))\",height:\"100%\",id:\"XrXHtN_yp\",layoutId:\"XrXHtN_yp\",OFNI5KvPI:{borderColor:'var(--token-8052cbed-4c3a-4a1e-89e5-72fa38102795, rgb(255, 202, 0)) /* {\"name\":\"Lejit Yellow\"} */',borderStyle:\"solid\",borderWidth:10},PacMUSUT6:\"Absolutely recommend this course! It transformed my design process, making me more efficient and innovative. The AI tools and techniques I've learned have been a game-changer.\",style:{width:\"100%\"},width:\"100%\",zuyaBF76f:\"Emily Chen\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{width:\"max(min(100vw - 48px, 1120px), 200px)\",y:undefined},WtNiEKlZc:{width:\"max((100vw - 104px) / 2, 200px)\",y:14775}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:222,width:\"max((min(100vw - 80px, 1120px) - 48px) / 3, 200px)\",y:15141,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13tivnd-container\",children:/*#__PURE__*/_jsx(TestimonialCard,{aiZBwasO4:addImageAlt({src:\"https://framerusercontent.com/images/ba76aMFuC8ZJziTFYFlv4X5V86Y.jpg\"},\"\"),Au3nudYOp:\"@codebyalex\",dV6cN4mL0:\"var(--token-72386102-7a44-40df-835e-8d6424daf8aa, rgb(255, 255, 255))\",height:\"100%\",id:\"vey04BJvi\",layoutId:\"vey04BJvi\",OFNI5KvPI:{borderColor:'var(--token-8052cbed-4c3a-4a1e-89e5-72fa38102795, rgb(255, 202, 0)) /* {\"name\":\"Lejit Yellow\"} */',borderStyle:\"solid\",borderWidth:10},PacMUSUT6:\"kyrocketed my development skills with AI coding techniques. A total game changer for developers looking to enhance efficiency and creativity.\",style:{width:\"100%\"},width:\"100%\",zuyaBF76f:\"Alex Johnson\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:222,width:\"max((min(100vw - 80px, 1120px) - 48px) / 3, 200px)\",y:15387,children:/*#__PURE__*/_jsx(Container,{className:\"framer-l54t4b-container hidden-1ghkpiv hidden-2rldx4\",children:/*#__PURE__*/_jsx(TestimonialCard,{aiZBwasO4:addImageAlt({src:\"https://framerusercontent.com/images/P4TYuyivofCM35Qc8NcTw4MDpQ.jpg\"},\"\"),Au3nudYOp:\"@sarahsketches\",dV6cN4mL0:\"var(--token-72386102-7a44-40df-835e-8d6424daf8aa, rgb(255, 255, 255))\",height:\"100%\",id:\"tNU5JpT3b\",layoutId:\"tNU5JpT3b\",OFNI5KvPI:{borderColor:'var(--token-8052cbed-4c3a-4a1e-89e5-72fa38102795, rgb(255, 202, 0)) /* {\"name\":\"Lejit Yellow\"} */',borderStyle:\"solid\",borderWidth:10},PacMUSUT6:\"The AI art modules have revolutionized the way I approach illustrations, opening up new creative possibilities I never thought possible. I'm now able to experiment with styles and concepts far beyond my initial capabilities.\",style:{width:\"100%\"},width:\"100%\",zuyaBF76f:\"Sarah Kim\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1acor6l\",\"data-framer-name\":\"Column\",name:\"Column\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{width:\"max(min(100vw - 48px, 1120px), 200px)\",y:undefined},WtNiEKlZc:{width:\"max((100vw - 104px) / 2, 200px)\",y:14529}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:222,width:\"max((min(100vw - 80px, 1120px) - 48px) / 3, 200px)\",y:14895,children:/*#__PURE__*/_jsx(Container,{className:\"framer-yem81s-container\",children:/*#__PURE__*/_jsx(TestimonialCard,{aiZBwasO4:addImageAlt({src:\"https://framerusercontent.com/images/jAFFPAiZrnGFVyoXIiLFAZYp7oU.jpg\"},\"\"),Au3nudYOp:\"@miketorreswrites\",dV6cN4mL0:\"var(--token-72386102-7a44-40df-835e-8d6424daf8aa, rgb(255, 255, 255))\",height:\"100%\",id:\"kh5tCFJX7\",layoutId:\"kh5tCFJX7\",OFNI5KvPI:{borderColor:'var(--token-8052cbed-4c3a-4a1e-89e5-72fa38102795, rgb(255, 202, 0)) /* {\"name\":\"Lejit Yellow\"} */',borderStyle:\"solid\",borderWidth:10},PacMUSUT6:\"This course provided me with incredible tools to generate fresh ideas and refine content, significantly enhancing my copywriting skills. It's changed how I approach writing and content creation, making my process more efficient and my outcomes more effective.\",style:{width:\"100%\"},width:\"100%\",zuyaBF76f:\"Michael Torres\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{width:\"max(min(100vw - 48px, 1120px), 200px)\",y:undefined},WtNiEKlZc:{width:\"max((100vw - 104px) / 2, 200px)\",y:14775}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:222,width:\"max((min(100vw - 80px, 1120px) - 48px) / 3, 200px)\",y:15141,children:/*#__PURE__*/_jsx(Container,{className:\"framer-v8nok7-container\",children:/*#__PURE__*/_jsx(TestimonialCard,{aiZBwasO4:addImageAlt({src:\"https://framerusercontent.com/images/SGb544vcQbA31kQu16QrwgJ2Ow.jpg\"},\"\"),Au3nudYOp:\"@jessicamarkets\",dV6cN4mL0:\"var(--token-72386102-7a44-40df-835e-8d6424daf8aa, rgb(255, 255, 255))\",height:\"100%\",id:\"RBryWbT7l\",layoutId:\"RBryWbT7l\",OFNI5KvPI:{borderColor:'var(--token-8052cbed-4c3a-4a1e-89e5-72fa38102795, rgb(255, 202, 0)) /* {\"name\":\"Lejit Yellow\"} */',borderStyle:\"solid\",borderWidth:10},PacMUSUT6:\"The marketing strategies I've learned have significantly improved my campaigns' ROI.\",style:{width:\"100%\"},width:\"100%\",zuyaBF76f:\"Jessica Liu\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:222,width:\"max((min(100vw - 80px, 1120px) - 48px) / 3, 200px)\",y:15387,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1holy25-container hidden-1ghkpiv hidden-2rldx4\",children:/*#__PURE__*/_jsx(TestimonialCard,{aiZBwasO4:addImageAlt({src:\"https://framerusercontent.com/images/8x1WvqPfZYo2v234qAZlX1BFlkU.jpg\"},\"\"),Au3nudYOp:\"@davidsinfluence\",dV6cN4mL0:\"var(--token-72386102-7a44-40df-835e-8d6424daf8aa, rgb(255, 255, 255))\",height:\"100%\",id:\"sn9IN_tHR\",layoutId:\"sn9IN_tHR\",OFNI5KvPI:{borderColor:'var(--token-8052cbed-4c3a-4a1e-89e5-72fa38102795, rgb(255, 202, 0)) /* {\"name\":\"Lejit Yellow\"} */',borderStyle:\"solid\",borderWidth:10},PacMUSUT6:\"Leveraging AI strategies from this course has made my content resonate more effectively with my audience, growing my influence faster than I thought possible. It's been an incredible journey of learning and applying these new techniques.\",style:{width:\"100%\"},width:\"100%\",zuyaBF76f:\"David Smith\"})})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q262at hidden-1ghkpiv hidden-2rldx4\",\"data-framer-name\":\"Column\",name:\"Column\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:222,width:\"max((min(100vw - 80px, 1120px) - 48px) / 3, 200px)\",y:14895,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cz7fge-container\",children:/*#__PURE__*/_jsx(TestimonialCard,{aiZBwasO4:addImageAlt({src:\"https://framerusercontent.com/images/KxSSc4OYmNw2NM3uJULCqtPf9o4.jpg\"},\"\"),Au3nudYOp:\"@rachelgweb\",dV6cN4mL0:\"var(--token-72386102-7a44-40df-835e-8d6424daf8aa, rgb(255, 255, 255))\",height:\"100%\",id:\"MH0y3Lqmj\",layoutId:\"MH0y3Lqmj\",OFNI5KvPI:{borderColor:'var(--token-8052cbed-4c3a-4a1e-89e5-72fa38102795, rgb(255, 202, 0)) /* {\"name\":\"Lejit Yellow\"} */',borderStyle:\"solid\",borderWidth:10},PacMUSUT6:\"This course was a revelation for my career, introducing me to AI tools that have revolutionized my web development process. I've seen a significant improvement in my projects' quality and efficiency.\",style:{width:\"100%\"},width:\"100%\",zuyaBF76f:\"Rachel Green\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:222,width:\"max((min(100vw - 80px, 1120px) - 48px) / 3, 200px)\",y:15141,children:/*#__PURE__*/_jsx(Container,{className:\"framer-17ujif1-container\",children:/*#__PURE__*/_jsx(TestimonialCard,{aiZBwasO4:addImageAlt({src:\"https://framerusercontent.com/images/D29JPZsTtskUD2nVVM7EJqoA3kU.jpg\"},\"\"),Au3nudYOp:\"@omarfarooqart\",dV6cN4mL0:\"var(--token-72386102-7a44-40df-835e-8d6424daf8aa, rgb(255, 255, 255))\",height:\"100%\",id:\"dTveiuk42\",layoutId:\"dTveiuk42\",OFNI5KvPI:{borderColor:'var(--token-8052cbed-4c3a-4a1e-89e5-72fa38102795, rgb(255, 202, 0)) /* {\"name\":\"Lejit Yellow\"} */',borderStyle:\"solid\",borderWidth:10},PacMUSUT6:\"An absolute must for creatives looking to push the boundaries of digital art. The course has opened up new horizons for me, allowing me to explore and create in ways I never imagined.\",style:{width:\"100%\"},width:\"100%\",zuyaBF76f:\"Omar Farooq\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:222,width:\"max((min(100vw - 80px, 1120px) - 48px) / 3, 200px)\",y:15387,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1iygblz-container\",children:/*#__PURE__*/_jsx(TestimonialCard,{aiZBwasO4:addImageAlt({src:\"https://framerusercontent.com/images/UxmEYc6BrqkIRTnlkz8AY4LZOck.jpeg\"},\"\"),Au3nudYOp:\"@lauramwrites\",dV6cN4mL0:\"var(--token-72386102-7a44-40df-835e-8d6424daf8aa, rgb(255, 255, 255))\",height:\"100%\",id:\"SxBoJnxC0\",layoutId:\"SxBoJnxC0\",OFNI5KvPI:{borderColor:'var(--token-8052cbed-4c3a-4a1e-89e5-72fa38102795, rgb(255, 202, 0)) /* {\"name\":\"Lejit Yellow\"} */',borderStyle:\"solid\",borderWidth:10},PacMUSUT6:\"The insights into AI-driven content creation have been invaluable for my writing career, marking the beginning of a new era. The course has equipped me with the knowledge and tools to innovate and excel in my field.\",style:{width:\"100%\"},width:\"100%\",zuyaBF76f:\"Laura Martinez\"})})})]})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-vp1p6c\",\"data-framer-name\":\"Instructor\",id:elementId18,name:\"Instructor\",ref:ref22,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jq41l1\",\"data-framer-name\":\"Instructor Header\",name:\"Instructor Header\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1rpe66o\",\"data-styles-preset\":\"DSPHxWNiI\",style:{\"--framer-text-alignment\":\"center\"},children:\"Meet your instructor\"})}),className:\"framer-11wzu32\",\"data-framer-name\":\"Empower your future: skills you'll acquire\",fonts:[\"Inter\"],name:\"Empower your future: skills you'll acquire\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1305ls2\",\"data-styles-preset\":\"YeRS4aV5v\",style:{\"--framer-text-alignment\":\"center\"},children:\"Get to know your expert instructor, a pioneer in generative AI, ready to guide you through every step of mastering AI tools and techniques.\"})}),className:\"framer-ytbtvi\",\"data-framer-name\":\"Equip yourself with a broad range of skills to become a versatile, future-ready AI expert.\",fonts:[\"Inter\"],name:\"Equip yourself with a broad range of skills to become a versatile, future-ready AI expert.\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{width:\"calc(100vw - 48px)\",y:undefined},WtNiEKlZc:{width:\"calc(100vw - 80px)\",y:15415.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:560,y:16075.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1f0gsbn-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{style:{width:\"100%\"},variant:\"qFZJktvWb\"},WtNiEKlZc:{style:{width:\"100%\"},variant:\"qFZJktvWb\"}},children:/*#__PURE__*/_jsx(InstructorCard,{avVdCxG3b:false,baMlPKESi:true,bDsIYioeu:true,e4W3tiWLh:\"https://www.instagram.com/\",EiAXZ7mbF:\"Dr. Alex Rivera\",gt1eVNJ8B:\"var(--token-8052cbed-4c3a-4a1e-89e5-72fa38102795, rgb(255, 202, 0))\",GW9Sov8gG:false,height:\"100%\",id:\"mUoyok2f3\",kI_XvpNP2:true,KzZ_JMPt8:\"Dr. Alex Rivera, a prominent AI researcher and educator, has spent more than ten years advancing generative AI technology. His method demystifies complex AI ideas, enabling students to innovate and excel in the digital era.\",layoutId:\"mUoyok2f3\",M1wKISznc:\"https://boondesign.store\",mlT3gd5hq:\"https://twitter.com/boon_dsgn\",oLBHnAeS4:\"https://linkedin.com/\",OWYisxn1W:\"https://www.facebook.com/\",vAIlMU7YP:\"PhD in Computer Science, AI Researcher, and Educator\",variant:\"h4rg9bIWb\",vw00QH0zh:true,WcpxAQtyY:\"https://www.youtube.com/@BoonDesignStore\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-aaryzp\",\"data-framer-name\":\"Free Lesson\",id:elementId19,name:\"Free Lesson\",ref:ref23,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pkjnht\",\"data-framer-name\":\"Free Lesson Wrapper\",name:\"Free Lesson Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{y:undefined},WtNiEKlZc:{y:16039.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:480,y:16795.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jco8hz-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{variant:\"AEpJP4yyi\"}},children:/*#__PURE__*/_jsx(FreeLessonImages,{C0t9KkJXK:ref23,g_4TKF3gM:addImageAlt({src:\"https://framerusercontent.com/images/A143OLAX0itPdHTEdfospqAnRA.webp\",srcSet:\"https://framerusercontent.com/images/A143OLAX0itPdHTEdfospqAnRA.webp 686w\"},\"Free lesson image 1\"),height:\"100%\",id:\"MPSrdCDZp\",layoutId:\"MPSrdCDZp\",Q3CWNSg6I:ref23,taw15pXMM:addImageAlt({src:\"https://framerusercontent.com/images/IvvFW8q0d6VHngpipXoobxxOA.webp\",srcSet:\"https://framerusercontent.com/images/IvvFW8q0d6VHngpipXoobxxOA.webp 686w\"},\"Free lesson image 3\"),variant:\"Br9jhjsEf\",width:\"100%\",Xi3tqtzc0:addImageAlt({src:\"https://framerusercontent.com/images/ev7lq7lEOg5KZAxjMxBPFxuSq00.webp\",srcSet:\"https://framerusercontent.com/images/ev7lq7lEOg5KZAxjMxBPFxuSq00.webp 686w\"},\"Free lesson image 2\")})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1whk3kc\",\"data-framer-name\":\"Text\",name:\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1y95ra2\",\"data-styles-preset\":\"r5J1M1OpR\",style:{\"--framer-text-alignment\":\"center\"},children:\"Get a free lesson\"})}),className:\"framer-lbalyo\",\"data-framer-name\":\"Frequently asked questions\",fonts:[\"Inter\"],name:\"Frequently asked questions\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1305ls2\",\"data-styles-preset\":\"YeRS4aV5v\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2acfc62e-1dad-487e-a2fb-3f54e1bdc5cc, rgb(77, 77, 77))\"},children:\"Claim your free lesson today and start exploring the magic of AI tools.\"})}),className:\"framer-qqu88n\",\"data-framer-name\":\"Frequently asked questions\",fonts:[\"Inter\"],name:\"Frequently asked questions\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qw071q-container\",children:/*#__PURE__*/_jsx(Input,{button:{buttonFont:{fontFamily:'\"Poppins\", \"Poppins Placeholder\", sans-serif',fontSize:\"18px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"0em\",lineHeight:\"1em\"},buttonPadding:16,buttonPaddingBottom:16,buttonPaddingLeft:16,buttonPaddingPerSide:false,buttonPaddingRight:16,buttonPaddingTop:16,color:\"var(--token-72386102-7a44-40df-835e-8d6424daf8aa, rgb(255, 255, 255))\",fill:\"var(--token-342ca76b-3fbd-4ec1-b2bc-bd892795bf7e, rgb(79, 26, 239))\",insetWhenDocked:5,isDocked:false,label:\"Send lesson\",shouldAppear:true,widthWhenDocked:100},convertkitAPI:\"\",convertkitFormID:\"\",font:{},formsparkID:\"\",gap:16,getwaitlistAPI:\"\",height:\"100%\",id:\"rIs05iYzZ\",input:{borderObject:{borderColor:\"var(--token-d9f7a847-28c8-4daa-b45d-c033b60947cf, rgb(209, 209, 209))\",borderWidth:1},borderRadius:8,color:\"var(--token-00f26a75-eb5e-4168-b3a6-0b0505689a08, rgb(28, 28, 28))\",fill:\"var(--token-b445e89f-125f-4d6a-8ba9-052d49c5a306, rgb(255, 255, 255))\",fixedHeight:50,focusObject:{focusColor:\"var(--token-342ca76b-3fbd-4ec1-b2bc-bd892795bf7e, rgb(79, 26, 239))\",focusWidthFrom:0,focusWidthTo:1},height:true,padding:16,paddingBottom:16,paddingLeft:16,paddingPerSide:false,paddingRight:16,paddingTop:16,placeholder:\"name@email.com\",placeholderColor:\"var(--token-746a9166-a037-4aad-9fe1-3f32e9324220, rgb(122, 122, 122))\"},layout:\"vertical\",layoutId:\"rIs05iYzZ\",loopsID:\"\",loopsUserGroup:\"\",mailchimpURL:\"\",redirectAs:\"link\",service:\"loops\",style:{maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})]})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1ut5xre\",\"data-framer-name\":\"FAQ\",id:elementId20,name:\"FAQ\",ref:ref24,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1rpe66o\",\"data-styles-preset\":\"DSPHxWNiI\",style:{\"--framer-text-alignment\":\"center\"},children:\"Frequently asked questions\"})}),className:\"framer-1rgwknk\",\"data-framer-name\":\"Frequently asked questions\",fonts:[\"Inter\"],name:\"Frequently asked questions\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1syge09\",\"data-framer-name\":\"FAQ Content\",name:\"FAQ Content\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{width:\"min(max(100vw - 48px, 1px), 800px)\",y:undefined},WtNiEKlZc:{y:17086.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:548,width:\"min(max(100vw - 80px, 1px), 800px)\",y:17890.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-qbxdst-container\",children:/*#__PURE__*/_jsx(FAQ,{height:\"100%\",id:\"lCIXQaDsG\",layoutId:\"lCIXQaDsG\",style:{maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{y:undefined},WtNiEKlZc:{y:17762.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:439,width:\"100vw\",y:18598.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-bbu6zl-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sfWwB6vkc:{variant:\"CGeUXsixp\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"oUpiveLNm\",layoutId:\"oUpiveLNm\",style:{width:\"100%\"},variant:\"Lc4SZcwrB\",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-GA1AW { background: var(--token-d0485797-949e-4485-b3da-9495df0de19c, rgb(251, 251, 254)); }`,\".framer-GA1AW.framer-1tn1aam, .framer-GA1AW .framer-1tn1aam { display: block; }\",\".framer-GA1AW.framer-koi6u7 { align-content: center; align-items: center; background-color: var(--token-d0485797-949e-4485-b3da-9495df0de19c, #fbfbfe); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-GA1AW .framer-kinz0r-container { flex: none; height: 1px; position: relative; width: 1px; }\",\".framer-GA1AW .framer-mih2t5-container { height: 200px; position: relative; width: 200px; }\",\".framer-GA1AW .framer-121hdmm-container, .framer-GA1AW .framer-1f0gsbn-container, .framer-GA1AW .framer-1jco8hz-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-GA1AW .framer-4jrc95-container { cursor: default; flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 3; }\",\".framer-GA1AW .framer-15mivdo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-GA1AW .framer-1b9z8hs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 240vh; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-GA1AW .framer-1occ2l0 { align-content: center; align-items: center; background-color: #e8e8e8; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: 1100px; justify-content: flex-start; overflow: hidden; padding: 0px 40px 0px 40px; position: sticky; top: 0px; width: 100%; will-change: transform; z-index: 1; }\",\".framer-GA1AW .framer-1b4hew6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; max-width: 640px; overflow: visible; padding: 200px 0px 0px 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-GA1AW .framer-wjhtc5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-GA1AW .framer-1airy9n, .framer-GA1AW .framer-1hv93, .framer-GA1AW .framer-1lu6a97, .framer-GA1AW .framer-17fver, .framer-GA1AW .framer-1rz9gpf, .framer-GA1AW .framer-u5et7w, .framer-GA1AW .framer-euglrc, .framer-GA1AW .framer-12edvem, .framer-GA1AW .framer-32r4g3, .framer-GA1AW .framer-vl7qvc, .framer-GA1AW .framer-kjb2mn, .framer-GA1AW .framer-1b6anrr, .framer-GA1AW .framer-11wzu32, .framer-GA1AW .framer-lbalyo, .framer-GA1AW .framer-qqu88n, .framer-GA1AW .framer-1rgwknk { --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-GA1AW .framer-q5uzgn { --framer-paragraph-spacing: 24px; flex: none; height: auto; max-width: 560px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-GA1AW .framer-1cpayir-container { flex: none; height: auto; left: 50%; position: absolute; top: 80px; transform: translateX(-50%); width: auto; z-index: 2; }\",\".framer-GA1AW .framer-1ccgybr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100vh; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-GA1AW .framer-1weu3y7 { align-content: center; align-items: center; background-color: var(--token-d0485797-949e-4485-b3da-9495df0de19c, #fbfbfe); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 80px; position: relative; scroll-margin-top: 160px; width: 100%; z-index: 2; }\",\".framer-GA1AW .framer-34tui1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-GA1AW .framer-yhrqmm, .framer-GA1AW .framer-1jq41l1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; max-width: 480px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-GA1AW .framer-gvet0j, .framer-GA1AW .framer-19amoc5, .framer-GA1AW .framer-w3ivbd, .framer-GA1AW .framer-1yu6jpu, .framer-GA1AW .framer-13g28pv, .framer-GA1AW .framer-11t1m5g, .framer-GA1AW .framer-gfp2mn, .framer-GA1AW .framer-4qxtce, .framer-GA1AW .framer-ytbtvi { --framer-paragraph-spacing: 24px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-GA1AW .framer-1y9ab9e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 1120px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-GA1AW .framer-r3vgqs-container, .framer-GA1AW .framer-qyo71r-container, .framer-GA1AW .framer-1152lhr-container, .framer-GA1AW .framer-1x7l3rh-container, .framer-GA1AW .framer-mfxv5h-container { flex: none; height: auto; position: sticky; top: 96px; width: 100%; will-change: transform; z-index: 1; }\",\".framer-GA1AW .framer-dse3z5, .framer-GA1AW .framer-vp1p6c { align-content: center; align-items: center; background-color: var(--token-d0485797-949e-4485-b3da-9495df0de19c, #fbfbfe); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 80px 40px 80px 40px; position: relative; scroll-margin-top: 80px; width: 100%; z-index: 2; }\",\".framer-GA1AW .framer-1v3ewr2, .framer-GA1AW .framer-fcjm9f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; max-width: 560px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-GA1AW .framer-1oftd2a { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1120px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-GA1AW .framer-grzw2j-container, .framer-GA1AW .framer-1pwfi6h-container, .framer-GA1AW .framer-qadodp-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-GA1AW .framer-m2c9nu { --framer-paragraph-spacing: 24px; flex: none; height: auto; max-width: 400px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-GA1AW .framer-jletsi { align-content: center; align-items: center; background-color: var(--token-d0485797-949e-4485-b3da-9495df0de19c, #fbfbfe); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 40px 40px 0px 40px; position: relative; scroll-margin-top: 80px; width: 100%; z-index: 2; }\",\".framer-GA1AW .framer-srxopb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 1120px; overflow: visible; padding: 40px 80px 40px 80px; position: relative; width: 100%; }\",\".framer-GA1AW .framer-epryxr-container { flex: none; height: 50px; position: relative; width: 560px; }\",\".framer-GA1AW .framer-19yn1gg, .framer-GA1AW .framer-vy5si4, .framer-GA1AW .framer-j0t6df, .framer-GA1AW .framer-1wzm0yi { height: 50px; opacity: 0.3; position: relative; width: 150px; }\",\".framer-GA1AW .framer-6t819t, .framer-GA1AW .framer-1atnhwx, .framer-GA1AW .framer-1qz1eq4 { align-content: center; align-items: center; background-color: var(--token-d0485797-949e-4485-b3da-9495df0de19c, #fbfbfe); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 80px 40px 80px 40px; position: relative; width: 100%; z-index: 2; }\",\".framer-GA1AW .framer-1xjdvyr { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: grid; flex: none; gap: 80px; grid-auto-rows: min-content; grid-template-columns: repeat(3, 200px); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; max-width: 1120px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-GA1AW .framer-1twg5im-container, .framer-GA1AW .framer-18qmohu-container, .framer-GA1AW .framer-nfgsyo-container, .framer-GA1AW .framer-5rbulf-container, .framer-GA1AW .framer-jbw5h6-container, .framer-GA1AW .framer-1tiyn3-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: fit-content; }\",\".framer-GA1AW .framer-ztlswf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1120px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-GA1AW .framer-xyfxw6 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; max-width: 480px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-GA1AW .framer-1mwenp1 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: flex-start; max-width: 480px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-GA1AW .framer-n9auc9-container, .framer-GA1AW .framer-10twkfn-container, .framer-GA1AW .framer-1uugapv-container, .framer-GA1AW .framer-hduiub-container, .framer-GA1AW .framer-6yetba-container { flex: none; height: auto; position: relative; width: 480px; }\",\".framer-GA1AW .framer-1h8bfo3 { align-content: center; align-items: center; background-color: var(--token-d0485797-949e-4485-b3da-9495df0de19c, #fbfbfe); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 120px; height: 960px; justify-content: flex-start; min-height: 320vh; overflow: visible; padding: 80px 0px 160px 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-GA1AW .framer-7akpdt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; max-width: 640px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-GA1AW .framer-yhbw3y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-GA1AW .framer-1kdi4n3 { flex: none; height: 50vh; overflow: visible; position: sticky; top: 200px; width: 100%; will-change: transform; z-index: 1; }\",\".framer-GA1AW .framer-1bdz4wd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px; position: absolute; top: 0px; transform: translateX(-50%); width: 100%; }\",\".framer-GA1AW .framer-1pii1mx-container { flex: none; height: 5000px; position: relative; width: 5000px; }\",\".framer-GA1AW .framer-yfh0xg, .framer-GA1AW .framer-w2smhy, .framer-GA1AW .framer-x1m3py, .framer-GA1AW .framer-k4a6r9 { flex: none; height: 50vh; overflow: hidden; position: sticky; top: 0px; width: 100%; will-change: transform; z-index: 1; }\",\".framer-GA1AW .framer-1aywyw2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; max-width: 1120px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-GA1AW .framer-14ultkl { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; max-width: 480px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-GA1AW .framer-1sdqnzz { display: grid; flex: 1 0 0px; gap: 40px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(200px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: min-content; justify-content: center; max-width: 640px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-GA1AW .framer-ob6749, .framer-GA1AW .framer-gqnpb3, .framer-GA1AW .framer-1r0fi3, .framer-GA1AW .framer-1djn4j7 { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 100%; justify-content: flex-start; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-GA1AW .framer-ofc9n6, .framer-GA1AW .framer-25k41k, .framer-GA1AW .framer-bgwxi5, .framer-GA1AW .framer-vbzsgb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-GA1AW .framer-1l4apeb-container, .framer-GA1AW .framer-9rrtt2-container, .framer-GA1AW .framer-7x5it1-container, .framer-GA1AW .framer-8k899f-container, .framer-GA1AW .framer-hr8gdi-container, .framer-GA1AW .framer-1xqvm0s-container, .framer-GA1AW .framer-nls7b8-container, .framer-GA1AW .framer-1n51vtb-container, .framer-GA1AW .framer-btk6gg-container, .framer-GA1AW .framer-1oeh1bt-container, .framer-GA1AW .framer-12w5a3g-container, .framer-GA1AW .framer-1p798zl-container, .framer-GA1AW .framer-1hmprg2-container, .framer-GA1AW .framer-1bo8zx9-container, .framer-GA1AW .framer-1rs9y43-container, .framer-GA1AW .framer-1azeoj4-container, .framer-GA1AW .framer-1g36xt1-container, .framer-GA1AW .framer-1vj1nol-container, .framer-GA1AW .framer-1udwj40-container, .framer-GA1AW .framer-hj25y-container { flex: none; height: auto; position: relative; width: 260px; }\",\".framer-GA1AW .framer-c9wubz { align-content: flex-start; align-items: flex-start; background-color: var(--token-d0485797-949e-4485-b3da-9495df0de19c, #fbfbfe); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 80px 40px 80px 40px; position: relative; width: 100%; z-index: 2; }\",\".framer-GA1AW .framer-flwsoj { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; max-width: 1120px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-GA1AW .framer-lwbdkr { display: grid; flex: none; gap: 40px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(200px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-GA1AW .framer-kdvdnj-container { align-self: start; flex: none; height: auto; justify-self: start; min-width: 320px; position: relative; width: 100%; }\",\".framer-GA1AW .framer-5jt744-container, .framer-GA1AW .framer-eu9lhx-container, .framer-GA1AW .framer-1iyyke6-container, .framer-GA1AW .framer-1ayuv41-container, .framer-GA1AW .framer-d820kd-container { align-self: start; flex: none; height: 100%; justify-self: start; min-width: 320px; position: relative; width: 100%; }\",\".framer-GA1AW .framer-1d0ygfn { align-content: center; align-items: center; background-color: var(--token-d0485797-949e-4485-b3da-9495df0de19c, #fbfbfe); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: visible; padding: 80px 40px 80px 40px; position: relative; scroll-margin-top: 80px; width: 100%; z-index: 2; }\",\".framer-GA1AW .framer-1r8iue9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 1120px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-GA1AW .framer-d5a9xf { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; max-width: 560px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-GA1AW .framer-1tr92b3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-GA1AW .framer-1sw5pcv-container, .framer-GA1AW .framer-151r05f-container { flex: none; height: 320px; position: relative; width: 100%; }\",\".framer-GA1AW .framer-178c1qd, .framer-GA1AW .framer-4stbp2, .framer-GA1AW .framer-xb045l, .framer-GA1AW .framer-jrhf2s, .framer-GA1AW .framer-1nn697s, .framer-GA1AW .framer-19ihkqu { aspect-ratio: 1.4 / 1; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; height: var(--framer-aspect-ratio-supported, 320px); overflow: hidden; position: relative; width: 448px; will-change: var(--framer-will-change-override, transform); }\",\".framer-GA1AW .framer-ilxbz { display: grid; flex: none; gap: 24px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(200px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: min-content; justify-content: center; max-width: 1120px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-GA1AW .framer-39t7wa, .framer-GA1AW .framer-1acor6l, .framer-GA1AW .framer-q262at { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 100%; justify-content: flex-start; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-GA1AW .framer-1akbzb6-container, .framer-GA1AW .framer-13tivnd-container, .framer-GA1AW .framer-l54t4b-container, .framer-GA1AW .framer-yem81s-container, .framer-GA1AW .framer-v8nok7-container, .framer-GA1AW .framer-1holy25-container, .framer-GA1AW .framer-1cz7fge-container, .framer-GA1AW .framer-17ujif1-container, .framer-GA1AW .framer-1iygblz-container, .framer-GA1AW .framer-bbu6zl-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-GA1AW .framer-aaryzp { align-content: center; align-items: center; background-color: var(--token-d0485797-949e-4485-b3da-9495df0de19c, #fbfbfe); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 80px 40px 80px 40px; position: relative; scroll-margin-top: 80px; width: 100%; }\",\".framer-GA1AW .framer-1pkjnht { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 560px; overflow: visible; padding: 0px; position: relative; width: 480px; z-index: 1; }\",\".framer-GA1AW .framer-1whk3kc { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-GA1AW .framer-1qw071q-container { flex: none; height: auto; max-width: 320px; position: relative; width: 100%; }\",\".framer-GA1AW .framer-1ut5xre { align-content: center; align-items: center; background-color: var(--token-d0485797-949e-4485-b3da-9495df0de19c, #fbfbfe); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 80px 40px 160px 40px; position: relative; scroll-margin-top: 80px; width: 100%; }\",\".framer-GA1AW .framer-1syge09 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-GA1AW .framer-qbxdst-container { flex: 1 0 0px; height: auto; max-width: 800px; position: relative; width: 1px; z-index: 2; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-GA1AW.framer-koi6u7, .framer-GA1AW .framer-15mivdo, .framer-GA1AW .framer-1b9z8hs, .framer-GA1AW .framer-1occ2l0, .framer-GA1AW .framer-1b4hew6, .framer-GA1AW .framer-wjhtc5, .framer-GA1AW .framer-1ccgybr, .framer-GA1AW .framer-1weu3y7, .framer-GA1AW .framer-34tui1, .framer-GA1AW .framer-yhrqmm, .framer-GA1AW .framer-1y9ab9e, .framer-GA1AW .framer-dse3z5, .framer-GA1AW .framer-1v3ewr2, .framer-GA1AW .framer-1oftd2a, .framer-GA1AW .framer-jletsi, .framer-GA1AW .framer-srxopb, .framer-GA1AW .framer-6t819t, .framer-GA1AW .framer-1atnhwx, .framer-GA1AW .framer-xyfxw6, .framer-GA1AW .framer-1mwenp1, .framer-GA1AW .framer-1h8bfo3, .framer-GA1AW .framer-7akpdt, .framer-GA1AW .framer-yhbw3y, .framer-GA1AW .framer-1bdz4wd, .framer-GA1AW .framer-1qz1eq4, .framer-GA1AW .framer-1aywyw2, .framer-GA1AW .framer-14ultkl, .framer-GA1AW .framer-ob6749, .framer-GA1AW .framer-ofc9n6, .framer-GA1AW .framer-gqnpb3, .framer-GA1AW .framer-25k41k, .framer-GA1AW .framer-1r0fi3, .framer-GA1AW .framer-bgwxi5, .framer-GA1AW .framer-1djn4j7, .framer-GA1AW .framer-vbzsgb, .framer-GA1AW .framer-c9wubz, .framer-GA1AW .framer-flwsoj, .framer-GA1AW .framer-fcjm9f, .framer-GA1AW .framer-1d0ygfn, .framer-GA1AW .framer-1r8iue9, .framer-GA1AW .framer-d5a9xf, .framer-GA1AW .framer-1tr92b3, .framer-GA1AW .framer-39t7wa, .framer-GA1AW .framer-1acor6l, .framer-GA1AW .framer-q262at, .framer-GA1AW .framer-vp1p6c, .framer-GA1AW .framer-1jq41l1, .framer-GA1AW .framer-aaryzp, .framer-GA1AW .framer-1pkjnht, .framer-GA1AW .framer-1whk3kc, .framer-GA1AW .framer-1ut5xre, .framer-GA1AW .framer-1syge09 { gap: 0px; } .framer-GA1AW.framer-koi6u7 > *, .framer-GA1AW .framer-15mivdo > *, .framer-GA1AW .framer-1b9z8hs > *, .framer-GA1AW .framer-1ccgybr > *, .framer-GA1AW .framer-jletsi > *, .framer-GA1AW .framer-6t819t > *, .framer-GA1AW .framer-1atnhwx > *, .framer-GA1AW .framer-yhbw3y > *, .framer-GA1AW .framer-1qz1eq4 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-GA1AW.framer-koi6u7 > :first-child, .framer-GA1AW .framer-15mivdo > :first-child, .framer-GA1AW .framer-1b9z8hs > :first-child, .framer-GA1AW .framer-1occ2l0 > :first-child, .framer-GA1AW .framer-1b4hew6 > :first-child, .framer-GA1AW .framer-wjhtc5 > :first-child, .framer-GA1AW .framer-1ccgybr > :first-child, .framer-GA1AW .framer-1weu3y7 > :first-child, .framer-GA1AW .framer-34tui1 > :first-child, .framer-GA1AW .framer-yhrqmm > :first-child, .framer-GA1AW .framer-1y9ab9e > :first-child, .framer-GA1AW .framer-dse3z5 > :first-child, .framer-GA1AW .framer-1v3ewr2 > :first-child, .framer-GA1AW .framer-jletsi > :first-child, .framer-GA1AW .framer-srxopb > :first-child, .framer-GA1AW .framer-6t819t > :first-child, .framer-GA1AW .framer-1atnhwx > :first-child, .framer-GA1AW .framer-xyfxw6 > :first-child, .framer-GA1AW .framer-1mwenp1 > :first-child, .framer-GA1AW .framer-1h8bfo3 > :first-child, .framer-GA1AW .framer-7akpdt > :first-child, .framer-GA1AW .framer-yhbw3y > :first-child, .framer-GA1AW .framer-1qz1eq4 > :first-child, .framer-GA1AW .framer-14ultkl > :first-child, .framer-GA1AW .framer-ob6749 > :first-child, .framer-GA1AW .framer-ofc9n6 > :first-child, .framer-GA1AW .framer-gqnpb3 > :first-child, .framer-GA1AW .framer-25k41k > :first-child, .framer-GA1AW .framer-1r0fi3 > :first-child, .framer-GA1AW .framer-bgwxi5 > :first-child, .framer-GA1AW .framer-1djn4j7 > :first-child, .framer-GA1AW .framer-vbzsgb > :first-child, .framer-GA1AW .framer-flwsoj > :first-child, .framer-GA1AW .framer-fcjm9f > :first-child, .framer-GA1AW .framer-1d0ygfn > :first-child, .framer-GA1AW .framer-d5a9xf > :first-child, .framer-GA1AW .framer-1tr92b3 > :first-child, .framer-GA1AW .framer-39t7wa > :first-child, .framer-GA1AW .framer-1acor6l > :first-child, .framer-GA1AW .framer-q262at > :first-child, .framer-GA1AW .framer-vp1p6c > :first-child, .framer-GA1AW .framer-1jq41l1 > :first-child, .framer-GA1AW .framer-aaryzp > :first-child, .framer-GA1AW .framer-1pkjnht > :first-child, .framer-GA1AW .framer-1whk3kc > :first-child, .framer-GA1AW .framer-1ut5xre > :first-child { margin-top: 0px; } .framer-GA1AW.framer-koi6u7 > :last-child, .framer-GA1AW .framer-15mivdo > :last-child, .framer-GA1AW .framer-1b9z8hs > :last-child, .framer-GA1AW .framer-1occ2l0 > :last-child, .framer-GA1AW .framer-1b4hew6 > :last-child, .framer-GA1AW .framer-wjhtc5 > :last-child, .framer-GA1AW .framer-1ccgybr > :last-child, .framer-GA1AW .framer-1weu3y7 > :last-child, .framer-GA1AW .framer-34tui1 > :last-child, .framer-GA1AW .framer-yhrqmm > :last-child, .framer-GA1AW .framer-1y9ab9e > :last-child, .framer-GA1AW .framer-dse3z5 > :last-child, .framer-GA1AW .framer-1v3ewr2 > :last-child, .framer-GA1AW .framer-jletsi > :last-child, .framer-GA1AW .framer-srxopb > :last-child, .framer-GA1AW .framer-6t819t > :last-child, .framer-GA1AW .framer-1atnhwx > :last-child, .framer-GA1AW .framer-xyfxw6 > :last-child, .framer-GA1AW .framer-1mwenp1 > :last-child, .framer-GA1AW .framer-1h8bfo3 > :last-child, .framer-GA1AW .framer-7akpdt > :last-child, .framer-GA1AW .framer-yhbw3y > :last-child, .framer-GA1AW .framer-1qz1eq4 > :last-child, .framer-GA1AW .framer-14ultkl > :last-child, .framer-GA1AW .framer-ob6749 > :last-child, .framer-GA1AW .framer-ofc9n6 > :last-child, .framer-GA1AW .framer-gqnpb3 > :last-child, .framer-GA1AW .framer-25k41k > :last-child, .framer-GA1AW .framer-1r0fi3 > :last-child, .framer-GA1AW .framer-bgwxi5 > :last-child, .framer-GA1AW .framer-1djn4j7 > :last-child, .framer-GA1AW .framer-vbzsgb > :last-child, .framer-GA1AW .framer-flwsoj > :last-child, .framer-GA1AW .framer-fcjm9f > :last-child, .framer-GA1AW .framer-1d0ygfn > :last-child, .framer-GA1AW .framer-d5a9xf > :last-child, .framer-GA1AW .framer-1tr92b3 > :last-child, .framer-GA1AW .framer-39t7wa > :last-child, .framer-GA1AW .framer-1acor6l > :last-child, .framer-GA1AW .framer-q262at > :last-child, .framer-GA1AW .framer-vp1p6c > :last-child, .framer-GA1AW .framer-1jq41l1 > :last-child, .framer-GA1AW .framer-aaryzp > :last-child, .framer-GA1AW .framer-1pkjnht > :last-child, .framer-GA1AW .framer-1whk3kc > :last-child, .framer-GA1AW .framer-1ut5xre > :last-child { margin-bottom: 0px; } .framer-GA1AW .framer-1occ2l0 > *, .framer-GA1AW .framer-1weu3y7 > *, .framer-GA1AW .framer-34tui1 > *, .framer-GA1AW .framer-dse3z5 > *, .framer-GA1AW .framer-flwsoj > *, .framer-GA1AW .framer-1d0ygfn > *, .framer-GA1AW .framer-vp1p6c > *, .framer-GA1AW .framer-aaryzp > *, .framer-GA1AW .framer-1ut5xre > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-GA1AW .framer-1b4hew6 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-GA1AW .framer-wjhtc5 > *, .framer-GA1AW .framer-yhrqmm > *, .framer-GA1AW .framer-1v3ewr2 > *, .framer-GA1AW .framer-xyfxw6 > *, .framer-GA1AW .framer-7akpdt > *, .framer-GA1AW .framer-14ultkl > *, .framer-GA1AW .framer-fcjm9f > *, .framer-GA1AW .framer-d5a9xf > *, .framer-GA1AW .framer-1jq41l1 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-GA1AW .framer-1y9ab9e > *, .framer-GA1AW .framer-1tr92b3 > *, .framer-GA1AW .framer-1pkjnht > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-GA1AW .framer-1oftd2a > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-GA1AW .framer-1oftd2a > :first-child, .framer-GA1AW .framer-1bdz4wd > :first-child, .framer-GA1AW .framer-1aywyw2 > :first-child, .framer-GA1AW .framer-c9wubz > :first-child, .framer-GA1AW .framer-1r8iue9 > :first-child, .framer-GA1AW .framer-1syge09 > :first-child { margin-left: 0px; } .framer-GA1AW .framer-1oftd2a > :last-child, .framer-GA1AW .framer-1bdz4wd > :last-child, .framer-GA1AW .framer-1aywyw2 > :last-child, .framer-GA1AW .framer-c9wubz > :last-child, .framer-GA1AW .framer-1r8iue9 > :last-child, .framer-GA1AW .framer-1syge09 > :last-child { margin-right: 0px; } .framer-GA1AW .framer-srxopb > *, .framer-GA1AW .framer-ob6749 > *, .framer-GA1AW .framer-gqnpb3 > *, .framer-GA1AW .framer-1r0fi3 > *, .framer-GA1AW .framer-1djn4j7 > *, .framer-GA1AW .framer-39t7wa > *, .framer-GA1AW .framer-1acor6l > *, .framer-GA1AW .framer-q262at > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-GA1AW .framer-1mwenp1 > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-GA1AW .framer-1h8bfo3 > * { margin: 0px; margin-bottom: calc(120px / 2); margin-top: calc(120px / 2); } .framer-GA1AW .framer-1bdz4wd > *, .framer-GA1AW .framer-c9wubz > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-GA1AW .framer-1aywyw2 > * { margin: 0px; margin-left: calc(64px / 2); margin-right: calc(64px / 2); } .framer-GA1AW .framer-ofc9n6 > *, .framer-GA1AW .framer-25k41k > *, .framer-GA1AW .framer-bgwxi5 > *, .framer-GA1AW .framer-vbzsgb > *, .framer-GA1AW .framer-1whk3kc > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-GA1AW .framer-1r8iue9 > *, .framer-GA1AW .framer-1syge09 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\"@media (min-width: 1200px) { .framer-GA1AW .hidden-koi6u7 { display: none !important; } }\",`@media (min-width: 810px) and (max-width: 1199px) { .framer-GA1AW .hidden-1ghkpiv { display: none !important; } .${metadata.bodyClassName}-framer-GA1AW { background: var(--token-d0485797-949e-4485-b3da-9495df0de19c, rgb(251, 251, 254)); } .framer-GA1AW.framer-koi6u7 { width: 810px; } .framer-GA1AW .framer-1b9z8hs { height: 800px; } .framer-GA1AW .framer-1occ2l0 { height: min-content; padding: 120px 40px 320px 40px; } .framer-GA1AW .framer-1b4hew6 { gap: 32px; padding: 0px; } .framer-GA1AW .framer-1cpayir-container { top: 40px; } .framer-GA1AW .framer-1weu3y7 { gap: 64px; padding: 80px 80px 64px 80px; } .framer-GA1AW .framer-34tui1, .framer-GA1AW .framer-1xjdvyr, .framer-GA1AW .framer-flwsoj { gap: 64px; } .framer-GA1AW .framer-1y9ab9e { gap: 80px; max-width: 800px; } .framer-GA1AW .framer-r3vgqs-container, .framer-GA1AW .framer-qyo71r-container, .framer-GA1AW .framer-1152lhr-container, .framer-GA1AW .framer-1x7l3rh-container, .framer-GA1AW .framer-mfxv5h-container { position: relative; top: unset; } .framer-GA1AW .framer-dse3z5, .framer-GA1AW .framer-1d0ygfn, .framer-GA1AW .framer-vp1p6c { gap: 64px; padding: 64px 40px 64px 40px; } .framer-GA1AW .framer-1oftd2a { flex-direction: column; max-width: 640px; } .framer-GA1AW .framer-grzw2j-container, .framer-GA1AW .framer-1pwfi6h-container, .framer-GA1AW .framer-qadodp-container, .framer-GA1AW .framer-1sdqnzz { flex: none; width: 100%; } .framer-GA1AW .framer-6t819t, .framer-GA1AW .framer-1atnhwx, .framer-GA1AW .framer-1qz1eq4, .framer-GA1AW .framer-c9wubz { padding: 64px 40px 64px 40px; } .framer-GA1AW .framer-ztlswf { align-content: center; align-items: center; flex-direction: column; gap: 64px; justify-content: flex-start; } .framer-GA1AW .framer-xyfxw6, .framer-GA1AW .framer-14ultkl { align-content: center; align-items: center; flex: none; width: 100%; } .framer-GA1AW .framer-1mwenp1 { flex: none; gap: 40px; width: 100%; } .framer-GA1AW .framer-1h8bfo3 { gap: 80px; height: 800px; min-height: 280vh; padding: 64px 0px 0px 0px; } .framer-GA1AW .framer-1kdi4n3 { top: 160px; } .framer-GA1AW .framer-1aywyw2 { align-content: center; align-items: center; flex-direction: column; } .framer-GA1AW .framer-lwbdkr { grid-template-columns: repeat(2, minmax(200px, 1fr)); } .framer-GA1AW .framer-d5a9xf { align-content: center; align-items: center; } .framer-GA1AW .framer-1tr92b3 { gap: 24px; } .framer-GA1AW .framer-1sw5pcv-container, .framer-GA1AW .framer-151r05f-container { height: 280px; } .framer-GA1AW .framer-ilxbz { grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(200px, 1fr)); grid-template-rows: repeat(1, min-content); max-width: unset; } .framer-GA1AW .framer-39t7wa, .framer-GA1AW .framer-1acor6l { height: auto; } .framer-GA1AW .framer-1f0gsbn-container { width: 100%; } .framer-GA1AW .framer-aaryzp { gap: 64px; padding: 0px 40px 64px 40px; } .framer-GA1AW .framer-1ut5xre { gap: 64px; padding: 64px 40px 128px 40px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-GA1AW .framer-1b4hew6, .framer-GA1AW .framer-1weu3y7, .framer-GA1AW .framer-34tui1, .framer-GA1AW .framer-1y9ab9e, .framer-GA1AW .framer-dse3z5, .framer-GA1AW .framer-1oftd2a, .framer-GA1AW .framer-1xjdvyr, .framer-GA1AW .framer-ztlswf, .framer-GA1AW .framer-1mwenp1, .framer-GA1AW .framer-1h8bfo3, .framer-GA1AW .framer-1aywyw2, .framer-GA1AW .framer-flwsoj, .framer-GA1AW .framer-1d0ygfn, .framer-GA1AW .framer-1tr92b3, .framer-GA1AW .framer-vp1p6c, .framer-GA1AW .framer-aaryzp, .framer-GA1AW .framer-1ut5xre { gap: 0px; } .framer-GA1AW .framer-1b4hew6 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-GA1AW .framer-1b4hew6 > :first-child, .framer-GA1AW .framer-1weu3y7 > :first-child, .framer-GA1AW .framer-34tui1 > :first-child, .framer-GA1AW .framer-1y9ab9e > :first-child, .framer-GA1AW .framer-dse3z5 > :first-child, .framer-GA1AW .framer-1oftd2a > :first-child, .framer-GA1AW .framer-ztlswf > :first-child, .framer-GA1AW .framer-1mwenp1 > :first-child, .framer-GA1AW .framer-1h8bfo3 > :first-child, .framer-GA1AW .framer-1aywyw2 > :first-child, .framer-GA1AW .framer-flwsoj > :first-child, .framer-GA1AW .framer-1d0ygfn > :first-child, .framer-GA1AW .framer-1tr92b3 > :first-child, .framer-GA1AW .framer-vp1p6c > :first-child, .framer-GA1AW .framer-aaryzp > :first-child, .framer-GA1AW .framer-1ut5xre > :first-child { margin-top: 0px; } .framer-GA1AW .framer-1b4hew6 > :last-child, .framer-GA1AW .framer-1weu3y7 > :last-child, .framer-GA1AW .framer-34tui1 > :last-child, .framer-GA1AW .framer-1y9ab9e > :last-child, .framer-GA1AW .framer-dse3z5 > :last-child, .framer-GA1AW .framer-1oftd2a > :last-child, .framer-GA1AW .framer-ztlswf > :last-child, .framer-GA1AW .framer-1mwenp1 > :last-child, .framer-GA1AW .framer-1h8bfo3 > :last-child, .framer-GA1AW .framer-1aywyw2 > :last-child, .framer-GA1AW .framer-flwsoj > :last-child, .framer-GA1AW .framer-1d0ygfn > :last-child, .framer-GA1AW .framer-1tr92b3 > :last-child, .framer-GA1AW .framer-vp1p6c > :last-child, .framer-GA1AW .framer-aaryzp > :last-child, .framer-GA1AW .framer-1ut5xre > :last-child { margin-bottom: 0px; } .framer-GA1AW .framer-1weu3y7 > *, .framer-GA1AW .framer-34tui1 > *, .framer-GA1AW .framer-dse3z5 > *, .framer-GA1AW .framer-ztlswf > *, .framer-GA1AW .framer-1aywyw2 > *, .framer-GA1AW .framer-flwsoj > *, .framer-GA1AW .framer-1d0ygfn > *, .framer-GA1AW .framer-vp1p6c > *, .framer-GA1AW .framer-aaryzp > *, .framer-GA1AW .framer-1ut5xre > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-GA1AW .framer-1y9ab9e > *, .framer-GA1AW .framer-1h8bfo3 > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-GA1AW .framer-1oftd2a > *, .framer-GA1AW .framer-1mwenp1 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-GA1AW .framer-1xjdvyr > *, .framer-GA1AW .framer-1xjdvyr > :first-child, .framer-GA1AW .framer-1xjdvyr > :last-child { margin: 0px; } .framer-GA1AW .framer-1tr92b3 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }}`,`@media (max-width: 809px) { .framer-GA1AW .hidden-2rldx4 { display: none !important; } .${metadata.bodyClassName}-framer-GA1AW { background: var(--token-d0485797-949e-4485-b3da-9495df0de19c, rgb(251, 251, 254)); } .framer-GA1AW.framer-koi6u7 { width: 390px; } .framer-GA1AW .framer-1b9z8hs { height: min-content; } .framer-GA1AW .framer-1occ2l0 { height: min-content; padding: 120px 24px 0px 24px; position: relative; top: unset; } .framer-GA1AW .framer-1b4hew6 { gap: 24px; padding: 0px; } .framer-GA1AW .framer-1cpayir-container { left: unset; position: relative; top: unset; transform: unset; } .framer-GA1AW .framer-1weu3y7 { gap: 40px; padding: 80px 24px 40px 24px; } .framer-GA1AW .framer-34tui1 { gap: 40px; } .framer-GA1AW .framer-1y9ab9e { gap: 80px; } .framer-GA1AW .framer-r3vgqs-container, .framer-GA1AW .framer-qyo71r-container, .framer-GA1AW .framer-1152lhr-container, .framer-GA1AW .framer-1x7l3rh-container, .framer-GA1AW .framer-mfxv5h-container { position: relative; top: unset; } .framer-GA1AW .framer-dse3z5, .framer-GA1AW .framer-1d0ygfn, .framer-GA1AW .framer-vp1p6c { gap: 40px; padding: 40px 24px 40px 24px; } .framer-GA1AW .framer-1oftd2a { flex-direction: column; gap: 24px; } .framer-GA1AW .framer-grzw2j-container, .framer-GA1AW .framer-1pwfi6h-container, .framer-GA1AW .framer-qadodp-container, .framer-GA1AW .framer-14ultkl { flex: none; width: 100%; } .framer-GA1AW .framer-jletsi { padding: 40px 24px 0px 24px; } .framer-GA1AW .framer-srxopb { padding: 0px; } .framer-GA1AW .framer-w3ivbd { max-width: 200px; } .framer-GA1AW .framer-epryxr-container, .framer-GA1AW .framer-n9auc9-container, .framer-GA1AW .framer-10twkfn-container, .framer-GA1AW .framer-1uugapv-container, .framer-GA1AW .framer-hduiub-container, .framer-GA1AW .framer-6yetba-container, .framer-GA1AW .framer-1f0gsbn-container { width: 100%; } .framer-GA1AW .framer-6t819t { padding: 64px 24px 64px 24px; } .framer-GA1AW .framer-1xjdvyr { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: wrap; gap: 40px; } .framer-GA1AW .framer-1twg5im-container, .framer-GA1AW .framer-18qmohu-container, .framer-GA1AW .framer-nfgsyo-container, .framer-GA1AW .framer-5rbulf-container, .framer-GA1AW .framer-jbw5h6-container, .framer-GA1AW .framer-1tiyn3-container { align-self: unset; min-width: 120px; width: auto; } .framer-GA1AW .framer-1atnhwx, .framer-GA1AW .framer-1qz1eq4 { padding: 40px 24px 40px 24px; } .framer-GA1AW .framer-ztlswf { align-content: center; align-items: center; flex-direction: column; gap: 64px; justify-content: flex-start; } .framer-GA1AW .framer-xyfxw6 { align-content: center; align-items: center; flex: none; width: 100%; } .framer-GA1AW .framer-1mwenp1 { flex: none; gap: 40px; max-width: 220px; width: 100%; } .framer-GA1AW .framer-1h8bfo3 { gap: 40px; height: min-content; min-height: 330vh; padding: 40px 0px 0px 0px; } .framer-GA1AW .framer-7akpdt { padding: 0px 24px 0px 24px; } .framer-GA1AW .framer-yhbw3y { height: 300vh; padding: 0px 0px 40px 0px; } .framer-GA1AW .framer-1kdi4n3 { top: 160px; } .framer-GA1AW .framer-1aywyw2 { flex-direction: column; gap: 40px; } .framer-GA1AW .framer-1sdqnzz { flex: none; grid-template-columns: repeat(1, minmax(200px, 1fr)); width: 100%; } .framer-GA1AW .framer-c9wubz { flex-direction: column; padding: 40px 24px 40px 24px; } .framer-GA1AW .framer-flwsoj { flex: none; gap: 40px; width: 100%; } .framer-GA1AW .framer-lwbdkr { gap: 24px; grid-template-columns: repeat(1, minmax(200px, 1fr)); } .framer-GA1AW .framer-d5a9xf { align-content: center; align-items: center; } .framer-GA1AW .framer-1tr92b3 { gap: 24px; } .framer-GA1AW .framer-1sw5pcv-container, .framer-GA1AW .framer-151r05f-container { height: 200px; } .framer-GA1AW .framer-ilxbz { grid-auto-rows: min-content; grid-template-columns: repeat(1, minmax(200px, 1fr)); grid-template-rows: repeat(2, min-content); } .framer-GA1AW .framer-39t7wa, .framer-GA1AW .framer-1acor6l { height: auto; } .framer-GA1AW .framer-aaryzp { gap: 40px; padding: 0px 24px 40px 24px; } .framer-GA1AW .framer-1pkjnht { gap: 32px; width: 100%; } .framer-GA1AW .framer-1ut5xre { gap: 40px; padding: 40px 24px 80px 24px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-GA1AW .framer-1b4hew6, .framer-GA1AW .framer-1weu3y7, .framer-GA1AW .framer-34tui1, .framer-GA1AW .framer-1y9ab9e, .framer-GA1AW .framer-dse3z5, .framer-GA1AW .framer-1oftd2a, .framer-GA1AW .framer-1xjdvyr, .framer-GA1AW .framer-ztlswf, .framer-GA1AW .framer-1mwenp1, .framer-GA1AW .framer-1h8bfo3, .framer-GA1AW .framer-1aywyw2, .framer-GA1AW .framer-c9wubz, .framer-GA1AW .framer-flwsoj, .framer-GA1AW .framer-lwbdkr, .framer-GA1AW .framer-1d0ygfn, .framer-GA1AW .framer-1tr92b3, .framer-GA1AW .framer-vp1p6c, .framer-GA1AW .framer-aaryzp, .framer-GA1AW .framer-1pkjnht, .framer-GA1AW .framer-1ut5xre { gap: 0px; } .framer-GA1AW .framer-1b4hew6 > *, .framer-GA1AW .framer-1oftd2a > *, .framer-GA1AW .framer-1tr92b3 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-GA1AW .framer-1b4hew6 > :first-child, .framer-GA1AW .framer-1weu3y7 > :first-child, .framer-GA1AW .framer-34tui1 > :first-child, .framer-GA1AW .framer-1y9ab9e > :first-child, .framer-GA1AW .framer-dse3z5 > :first-child, .framer-GA1AW .framer-1oftd2a > :first-child, .framer-GA1AW .framer-ztlswf > :first-child, .framer-GA1AW .framer-1mwenp1 > :first-child, .framer-GA1AW .framer-1h8bfo3 > :first-child, .framer-GA1AW .framer-1aywyw2 > :first-child, .framer-GA1AW .framer-c9wubz > :first-child, .framer-GA1AW .framer-flwsoj > :first-child, .framer-GA1AW .framer-1d0ygfn > :first-child, .framer-GA1AW .framer-1tr92b3 > :first-child, .framer-GA1AW .framer-vp1p6c > :first-child, .framer-GA1AW .framer-aaryzp > :first-child, .framer-GA1AW .framer-1pkjnht > :first-child, .framer-GA1AW .framer-1ut5xre > :first-child { margin-top: 0px; } .framer-GA1AW .framer-1b4hew6 > :last-child, .framer-GA1AW .framer-1weu3y7 > :last-child, .framer-GA1AW .framer-34tui1 > :last-child, .framer-GA1AW .framer-1y9ab9e > :last-child, .framer-GA1AW .framer-dse3z5 > :last-child, .framer-GA1AW .framer-1oftd2a > :last-child, .framer-GA1AW .framer-ztlswf > :last-child, .framer-GA1AW .framer-1mwenp1 > :last-child, .framer-GA1AW .framer-1h8bfo3 > :last-child, .framer-GA1AW .framer-1aywyw2 > :last-child, .framer-GA1AW .framer-c9wubz > :last-child, .framer-GA1AW .framer-flwsoj > :last-child, .framer-GA1AW .framer-1d0ygfn > :last-child, .framer-GA1AW .framer-1tr92b3 > :last-child, .framer-GA1AW .framer-vp1p6c > :last-child, .framer-GA1AW .framer-aaryzp > :last-child, .framer-GA1AW .framer-1pkjnht > :last-child, .framer-GA1AW .framer-1ut5xre > :last-child { margin-bottom: 0px; } .framer-GA1AW .framer-1weu3y7 > *, .framer-GA1AW .framer-34tui1 > *, .framer-GA1AW .framer-dse3z5 > *, .framer-GA1AW .framer-1mwenp1 > *, .framer-GA1AW .framer-1h8bfo3 > *, .framer-GA1AW .framer-1aywyw2 > *, .framer-GA1AW .framer-flwsoj > *, .framer-GA1AW .framer-1d0ygfn > *, .framer-GA1AW .framer-vp1p6c > *, .framer-GA1AW .framer-aaryzp > *, .framer-GA1AW .framer-1ut5xre > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-GA1AW .framer-1y9ab9e > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-GA1AW .framer-1xjdvyr > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-GA1AW .framer-1xjdvyr > :first-child { margin-left: 0px; } .framer-GA1AW .framer-1xjdvyr > :last-child { margin-right: 0px; } .framer-GA1AW .framer-ztlswf > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-GA1AW .framer-c9wubz > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-GA1AW .framer-lwbdkr > *, .framer-GA1AW .framer-lwbdkr > :first-child, .framer-GA1AW .framer-lwbdkr > :last-child { margin: 0px; } .framer-GA1AW .framer-1pkjnht > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 14250.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"WtNiEKlZc\":{\"layout\":[\"fixed\",\"auto\"]},\"sfWwB6vkc\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerBcinYFtiY=withCSS(Component,css,\"framer-GA1AW\");export default FramerBcinYFtiY;FramerBcinYFtiY.displayName=\"Home\";FramerBcinYFtiY.defaultProps={height:14250.5,width:1200};addFonts(FramerBcinYFtiY,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLGT9V15vFP-KUEg.woff2\",weight:\"500\"}]},...PreloaderContentFonts,...PreLoaderFonts,...SmoothScrollFonts,...NavbarFonts,...HeroImagesFonts,...ModuleCardFonts,...PricingCardFonts,...TickerFonts,...DetailsCardFonts,...DetailsCardLargeFonts,...CarouselFonts,...ListItemFonts,...AudienceCardFonts,...TestimonialCardFonts,...InstructorCardFonts,...FreeLessonImagesFonts,...InputFonts,...FAQFonts,...FooterFonts,...CursorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerBcinYFtiY\",\"slots\":[],\"annotations\":{\"framerResponsiveScreen\":\"\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WtNiEKlZc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"sfWwB6vkc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"14250.5\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["emailRegex", "mailchimpRegex", "validateEmail", "email", "parseMailChimpUrl", "url", "_url_replace_match", "domain", "parameters", "safeURL", "isInternalURL", "href", "VERSION", "Input", "withCSS", "service", "redirectAs", "mailchimpURL", "loopsID", "loopsUserGroup", "formsparkID", "getwaitlistAPI", "convertkitAPI", "convertkitFormID", "input", "button", "font", "layout", "link", "gap", "style", "onSubmit", "setEmail", "ye", "isError", "setError", "isLoading", "setLoading", "isFocus", "setFocus", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "padding", "borderRadius", "borderObject", "focusObject", "shadowObject", "height", "fixedHeight", "buttonPaddingPerSide", "buttonPaddingTop", "buttonPaddingRight", "buttonPaddingBottom", "buttonPaddingLeft", "buttonPadding", "paddingValue", "buttonPaddingValue", "router", "useRouter", "onSuccess", "path", "hash", "routeId", "pathVariables", "inferInitialRouteFromPath", "window", "validateForm", "te", "formControls", "handleChange", "event", "handleFocus", "handleBlur", "handleSubmit", "response", "error", "emailBody", "userGroupBody", "formBody", "data", "entries", "formData", "useAnimationControls", "focusStylesFrom", "focusStylesTo", "shadowStyles", "borderStyles", "formVariants", "inputVariants", "dynamicBoxShadow", "p", "motion", "containerStyles", "u", "defaultStyle", "Spinner", "getButtonShadow", "props", "noButtonStyles", "addPropertyControls", "ControlType", "shadows", "output", "shadow", "Input_default", "ImageWithFX", "withFX", "Image2", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "transformTemplate1", "_", "t", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "imageCenter", "imageLeft", "imageRight", "scrollSection", "scrollSection2", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "_ref3", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "g_4TKF3gM", "Xi3tqtzc0", "taw15pXMM", "C0t9KkJXK", "Q3CWNSg6I", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "getLoadingLazyAtYPosition", "css", "FramerWUs0OKP3U", "withCSS", "WUs0OKP3U_default", "addPropertyControls", "ControlType", "addFonts", "PreloaderContentFonts", "getFonts", "gr9MoGztk_default", "PreLoaderFonts", "PreLoader", "SmoothScrollFonts", "SmoothScroll", "NavbarFonts", "BfpZeIo8n_default", "RichTextWithOptimizedAppearEffect", "withOptimizedAppearEffect", "RichText2", "MotionDivWithFX", "withFX", "motion", "HeroImagesFonts", "RgJUdfSiU_default", "ContainerWithFX", "Container", "ModuleCardFonts", "BhsVvA5zW_default", "ModuleCardWithVariantAppearEffect", "withVariantAppearEffect", "PricingCardFonts", "wK3qwR22N_default", "TickerFonts", "Ticker", "DetailsCardFonts", "fIP3vrSI8_default", "DetailsCardLargeFonts", "JojClw5ST_default", "CarouselFonts", "E6yTbQ7rO_default", "CarouselWithVariantAppearEffect", "ListItemFonts", "woCW3QcAq_default", "AudienceCardFonts", "sfy9PfTn_default", "TestimonialCardFonts", "sFAA4szNQ_default", "InstructorCardFonts", "nXt0c6u8E_default", "FreeLessonImagesFonts", "WUs0OKP3U_default", "InputFonts", "Input_default", "FAQFonts", "xfb7pi9J9_default", "FooterFonts", "F801woTAj_default", "CursorFonts", "ITTHT9C01_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "transformTemplate1", "_", "t", "transition2", "animation", "animation1", "transition3", "animation2", "animation3", "transition4", "animation4", "animation5", "transition5", "animation6", "animation7", "animation8", "animation9", "addImageAlt", "image", "alt", "animation10", "animation11", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "cursor", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "ref1", "pe", "router", "useRouter", "elementId", "useRouteElementId", "ref2", "elementId1", "ref3", "ref4", "isDisplayed", "elementId2", "elementId3", "ref5", "ref6", "ref7", "elementId4", "ref8", "elementId5", "ref9", "elementId6", "ref10", "elementId7", "ref11", "elementId8", "ref12", "elementId9", "ref13", "elementId10", "ref14", "elementId11", "ref15", "elementId12", "ref16", "ref17", "ref18", "ref19", "ref20", "elementId13", "elementId14", "elementId15", "elementId16", "elementId17", "ref21", "isDisplayed1", "elementId18", "ref22", "elementId19", "ref23", "elementId20", "ref24", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "cx", "ComponentViewportProvider", "ResolveLinks", "resolvedLinks", "x", "SVG", "Image2", "css", "FramerBcinYFtiY", "withCSS", "BcinYFtiY_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
