{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/8aCGinfRQO68tQ3QF42d/YouTube.js", "ssg:https://framerusercontent.com/modules/ARTmrnamFD9MMnOh9ViC/YjBETUvMeMeKRuSfxbYd/JF1mHoxDp.js", "ssg:https://framerusercontent.com/modules/3JWoEVP8ONPsu450hgxY/IX4OHxSsTiYDbAF8ssFG/xH9Z0TRDV.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,title,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==\"Off\";const showThumbnail=onCanvas||thumbnail!==\"Off\"&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/_jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL]=parsedURL;// https://developers.google.com/youtube/player_parameters\nconst searchParams=embedURL.searchParams;searchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(!showVideo){// if a browser does not support `loading=lazy`, make sure the video doesn't start playing in the background\nsearchParams.set(\"autoplay\",\"0\");}else if(isAutoplay||// when there is no thumbnail, we don't want to autoplay, unless video is started\nshowThumbnail&&showVideo){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===\"Loop\"){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}const iframeProps={title:title||\"Youtube Video\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",src:embedURL.href,frameBorder:\"0\",onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp};return /*#__PURE__*/_jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onKeyDown:startVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:// Safari sometimes struggles to render border-radius:\n// - on the canvas when changing from 0 to any other value\n// - or when rendering an iframe\nhasBorderRadius&&(showVideo||onCanvas)?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},role:\"presentation\",children:[isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),/*#__PURE__*/_jsx(\"div\",{style:{...videoStyle,background:showThumbnail?`center / cover url(${getThumbnailURL(videoId,thumbnail)}) no-repeat`:undefined}}),!onCanvas?/*#__PURE__*/_jsx(\"iframe\",{loading:!showVideo?\"lazy\":undefined,style:!showVideo?{...videoStyle,display:\"none\"}:videoStyle,...iframeProps}):null,showVideo?null:/*#__PURE__*/_jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===\"Off\";}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==\"Off\";}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:\"Off\",shouldMute:true,thumbnail:\"Medium Quality\",isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL];}if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");// https://www.youtube.com/watch?v=Fop2oskTug8\nif(pathSegments[0]===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId=pathSegments[1];return[videoId,url];}// https://www.youtube.com/shorts/zwMEhBq4kYM\nif(pathSegments[0]===\"shorts\"){const videoId=pathSegments[1];const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId=url.pathname.slice(1);const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst pre=\"https://i.ytimg.com/vi_webp/\";const ext=\"webp\";switch(res){case\"Low Quality\":return`${pre}${videoId}/hqdefault.${ext}`;case\"Medium Quality\":return`${pre}${videoId}/sddefault.${ext}`;case\"High Quality\":return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/_jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/_jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/_jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/_jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/_jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"315\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"560\",\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "// Generated by Framer (128ce9c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,Link,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/8aCGinfRQO68tQ3QF42d/YouTube.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";const YouTubeFonts=getFonts(YouTube);const PhosphorFonts=getFonts(Phosphor);const cycleOrder=[\"s20JZJMQ1\",\"mbRPEEy_j\",\"PbA2S4rAs\",\"SCJkImO3J\"];const serializationHash=\"framer-6JryW\";const variantClassNames={mbRPEEy_j:\"framer-v-f6mo83\",PbA2S4rAs:\"framer-v-jqitx9\",s20JZJMQ1:\"framer-v-1xh0xux\",SCJkImO3J:\"framer-v-65uok3\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop Video\":\"mbRPEEy_j\",\"Mobile Video\":\"SCJkImO3J\",Desktop:\"s20JZJMQ1\",Mobile:\"PbA2S4rAs\"};const getProps=({click,height,id,text,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"s20JZJMQ1\",XTPYEZXjw:text??props.XTPYEZXjw??\"How can Leap help you to train your employees?\",XWKQl3HZh:click??props.XWKQl3HZh};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,XWKQl3HZh,XTPYEZXjw,T1lRT1OOIcO7t6xdD4,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"s20JZJMQ1\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1fbk34b=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"mbRPEEy_j\");});const onTapnvhw3q=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"SCJkImO3J\");});const onTap1r6v68d=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(XWKQl3HZh){const res=await XWKQl3HZh(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"mbRPEEy_j\",\"SCJkImO3J\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"mbRPEEy_j\",\"SCJkImO3J\"].includes(baseVariant))return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(Image,{...restProps,...gestureHandlers,as:\"header\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:2250,loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:1600,pixelWidth:2400,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/iNAz6hRkMMwKVLs75guOWZ0F3hg.jpg\",srcSet:\"https://framerusercontent.com/images/iNAz6hRkMMwKVLs75guOWZ0F3hg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/iNAz6hRkMMwKVLs75guOWZ0F3hg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/iNAz6hRkMMwKVLs75guOWZ0F3hg.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/iNAz6hRkMMwKVLs75guOWZ0F3hg.jpg 2400w\"},className:cx(scopingClassNames,\"framer-1xh0xux\",className,classNames),\"data-framer-name\":\"Desktop\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"s20JZJMQ1\",onTap:onTap1fbk34b,ref:refBinding,style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"0px 0.6021873017743928px 2.2883117467426928px -1.25px rgba(0, 0, 0, 0.18), 0px 2.288533303243457px 8.696426552325137px -2.5px rgba(0, 0, 0, 0.16), 0px 10px 38px -3.75px rgba(0, 0, 0, 0.06)\",...style},...addPropertyOverrides({mbRPEEy_j:{\"data-framer-name\":\"Desktop Video\"},PbA2S4rAs:{\"data-framer-name\":\"Mobile\",onTap:onTapnvhw3q},SCJkImO3J:{\"data-framer-name\":\"Mobile Video\",onTap:onTap1r6v68d}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1aflo47-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"D4tdQjDE_-container\",nodeId:\"D4tdQjDE_\",rendersWithMotion:true,scopeId:\"JF1mHoxDp\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"D4tdQjDE_\",isMixedBorderRadius:false,isRed:false,layoutId:\"D4tdQjDE_\",play:\"On\",shouldMute:false,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://www.youtube.com/watch?v=2mU92uTXdWg\",width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1f22hql\",layoutDependency:layoutDependency,layoutId:\"nxVmXkb_v\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-01422742-084b-4eb0-8b74-448cfd7ecfe0, rgb(255, 255, 255)))\"},children:\"How can Leap help you to train your employees?\"})}),className:\"framer-1c2okes\",fonts:[\"GF;DM Sans-700\"],layoutDependency:layoutDependency,layoutId:\"MbysRIfCy\",style:{\"--extracted-gdpscs\":\"var(--token-01422742-084b-4eb0-8b74-448cfd7ecfe0, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:XTPYEZXjw,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({PbA2S4rAs:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-01422742-084b-4eb0-8b74-448cfd7ecfe0, rgb(255, 255, 255)))\"},children:\"How can Leap help you to train your employees?\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Link,{href:T1lRT1OOIcO7t6xdD4,motionChild:true,nodeId:\"ZNxRT7vDi\",openInNewTab:false,scopeId:\"JF1mHoxDp\",smoothScroll:false,...addPropertyOverrides({PbA2S4rAs:{href:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-yy4hau framer-109u3ld\",\"data-border\":true,\"data-framer-name\":\"Button\",layoutDependency:layoutDependency,layoutId:\"ZNxRT7vDi\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-febd3000-c8ea-4f5a-be3b-a182948468ba, rgb(124, 87, 252))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-01422742-084b-4eb0-8b74-448cfd7ecfe0, rgb(255, 255, 255))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-hrn9of-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"HO2D1pfti-container\",nodeId:\"HO2D1pfti\",rendersWithMotion:true,scopeId:\"JF1mHoxDp\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-febd3000-c8ea-4f5a-be3b-a182948468ba, rgb(124, 87, 252))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Play\",id:\"HO2D1pfti\",layoutId:\"HO2D1pfti\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-7jwayz\",\"data-framer-name\":\"Overlay\",layoutDependency:layoutDependency,layoutId:\"z9iJqNJpO\",style:{backgroundColor:\"rgba(0, 0, 0, 0.19)\"}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-6JryW.framer-109u3ld, .framer-6JryW .framer-109u3ld { display: block; }\",\".framer-6JryW.framer-1xh0xux { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: 467px; justify-content: flex-end; overflow: hidden; padding: 64px; position: relative; width: 830px; will-change: var(--framer-will-change-override, transform); }\",\".framer-6JryW .framer-1aflo47-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-6JryW .framer-1f22hql { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 60%; z-index: 5; }\",\".framer-6JryW .framer-1c2okes { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-6JryW .framer-yy4hau { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 64px; justify-content: center; overflow: visible; padding: 16px; position: relative; text-decoration: none; width: var(--framer-aspect-ratio-supported, 64px); z-index: 1; }\",\".framer-6JryW .framer-hrn9of-container { flex: none; height: 30px; position: relative; width: 30px; }\",\".framer-6JryW .framer-7jwayz { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-6JryW.framer-1xh0xux, .framer-6JryW .framer-1f22hql, .framer-6JryW .framer-yy4hau { gap: 0px; } .framer-6JryW.framer-1xh0xux > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-6JryW.framer-1xh0xux > :first-child, .framer-6JryW .framer-yy4hau > :first-child { margin-left: 0px; } .framer-6JryW.framer-1xh0xux > :last-child, .framer-6JryW .framer-yy4hau > :last-child { margin-right: 0px; } .framer-6JryW .framer-1f22hql > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-6JryW .framer-1f22hql > :first-child { margin-top: 0px; } .framer-6JryW .framer-1f22hql > :last-child { margin-bottom: 0px; } .framer-6JryW .framer-yy4hau > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-6JryW.framer-v-f6mo83.framer-1xh0xux { padding: 0px; }\",\".framer-6JryW.framer-v-jqitx9.framer-1xh0xux { height: 180px; padding: 24px; width: 320px; }\",\".framer-6JryW.framer-v-jqitx9 .framer-1f22hql { flex: 1 0 0px; gap: 16px; width: 1px; }\",\".framer-6JryW.framer-v-jqitx9 .framer-yy4hau { aspect-ratio: unset; height: 48px; width: 48px; }\",\".framer-6JryW.framer-v-jqitx9 .framer-hrn9of-container { height: 26px; width: 26px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-6JryW.framer-v-jqitx9 .framer-1f22hql { gap: 0px; } .framer-6JryW.framer-v-jqitx9 .framer-1f22hql > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-6JryW.framer-v-jqitx9 .framer-1f22hql > :first-child { margin-top: 0px; } .framer-6JryW.framer-v-jqitx9 .framer-1f22hql > :last-child { margin-bottom: 0px; } }\",\".framer-6JryW.framer-v-65uok3.framer-1xh0xux { height: 180px; padding: 0px; width: 320px; }\",'.framer-6JryW[data-border=\"true\"]::after, .framer-6JryW [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 467\n * @framerIntrinsicWidth 830\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"mbRPEEy_j\":{\"layout\":[\"fixed\",\"fixed\"]},\"PbA2S4rAs\":{\"layout\":[\"fixed\",\"fixed\"]},\"SCJkImO3J\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"XWKQl3HZh\":\"click\",\"XTPYEZXjw\":\"text\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerJF1mHoxDp=withCSS(Component,css,\"framer-6JryW\");export default FramerJF1mHoxDp;FramerJF1mHoxDp.displayName=\"Main Video\";FramerJF1mHoxDp.defaultProps={height:467,width:830};addPropertyControls(FramerJF1mHoxDp,{variant:{options:[\"s20JZJMQ1\",\"mbRPEEy_j\",\"PbA2S4rAs\",\"SCJkImO3J\"],optionTitles:[\"Desktop\",\"Desktop Video\",\"Mobile\",\"Mobile Video\"],title:\"Variant\",type:ControlType.Enum},XWKQl3HZh:{title:\"Click\",type:ControlType.EventHandler},XTPYEZXjw:{defaultValue:\"How can Leap help you to train your employees?\",displayTextArea:false,title:\"Text\",type:ControlType.String}});addFonts(FramerJF1mHoxDp,[{explicitInter:true,fonts:[{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwARZthS2f3ZGMZpg.woff2\",weight:\"700\"}]},...YouTubeFonts,...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerJF1mHoxDp\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"830\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"XWKQl3HZh\\\":\\\"click\\\",\\\"XTPYEZXjw\\\":\\\"text\\\"}\",\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"467\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"mbRPEEy_j\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"PbA2S4rAs\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"SCJkImO3J\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./JF1mHoxDp.map", "// Generated by Framer (128ce9c)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Noise from\"https://framerusercontent.com/modules/bamMgJhjMszHbcnxCtZj/20nHFbpxFqdlchR1dDZF/Noise.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import Button from\"#framer/local/canvasComponent/cO7t6xdD4/cO7t6xdD4.js\";import MainVideo from\"#framer/local/canvasComponent/JF1mHoxDp/JF1mHoxDp.js\";import Header from\"#framer/local/canvasComponent/lP038Dv06/lP038Dv06.js\";import AppSection from\"#framer/local/canvasComponent/Nj_sJLLhB/Nj_sJLLhB.js\";import Footer from\"#framer/local/canvasComponent/qNfwVkhXY/qNfwVkhXY.js\";import LeapLogo from\"#framer/local/canvasComponent/TDdW_D4U9/TDdW_D4U9.js\";import Articles from\"#framer/local/collection/Jyqvzinc3/Jyqvzinc3.js\";import Categories from\"#framer/local/collection/sHry3QQZp/sHry3QQZp.js\";import*as sharedStyle from\"#framer/local/css/cKqDDFj7l/cKqDDFj7l.js\";import*as sharedStyle2 from\"#framer/local/css/KyqWspsYE/KyqWspsYE.js\";import*as sharedStyle3 from\"#framer/local/css/NBhr8OI6W/NBhr8OI6W.js\";import*as sharedStyle5 from\"#framer/local/css/NORdal0NK/NORdal0NK.js\";import*as sharedStyle4 from\"#framer/local/css/OH43W8jhe/OH43W8jhe.js\";import*as sharedStyle1 from\"#framer/local/css/uQ57UL_0U/uQ57UL_0U.js\";import metadataProvider from\"#framer/local/webPageMetadata/xH9Z0TRDV/xH9Z0TRDV.js\";const HeaderFonts=getFonts(Header);const ContainerWithFX=withFX(Container);const LeapLogoFonts=getFonts(LeapLogo);const RichTextWithFX=withFX(RichText);const ButtonFonts=getFonts(Button);const MotionDivWithFX=withFX(motion.div);const MainVideoFonts=getFonts(MainVideo);const NoiseFonts=getFonts(Noise);const ImageWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(Image));const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const ImageWithFX=withFX(Image);const PhosphorFonts=getFonts(Phosphor);const AppSectionFonts=getFonts(AppSection);const FooterFonts=getFonts(Footer);const breakpoints={C1HoLIOMu:\"(min-width: 810px) and (max-width: 1199px)\",Lq2vwSur3:\"(min-width: 1200px)\",ZjeJSByB4:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-SR4X0\";const variantClassNames={C1HoLIOMu:\"framer-v-1eukjwr\",Lq2vwSur3:\"framer-v-1x891tc\",ZjeJSByB4:\"framer-v-jngp2s\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-150};const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:-150};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:150};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation7={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={damping:45,delay:.4,mass:1,stiffness:168,type:\"spring\"};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation9={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-90};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-150,y:0};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:-150,y:0};const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const animation13={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"Lq2vwSur3\",Phone:\"ZjeJSByB4\",Tablet:\"C1HoLIOMu\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"Lq2vwSur3\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,ARSqiJGiDL0saqF3pg,aD5O2P7NiL0saqF3pg,FrSThAp4cL0saqF3pg,U3A9MgObmL0saqF3pg,idL0saqF3pg,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const router=useRouter();const isDisplayed=()=>{if(!isBrowser())return true;if([\"C1HoLIOMu\",\"ZjeJSByB4\"].includes(baseVariant))return false;return true;};const elementId=useRouteElementId(\"rwj2C6We3\");const elementId1=useRouteElementId(\"roBFlgog6\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"nJr7POQ_P\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"x412RiglZ\");const ref4=React.useRef(null);const elementId4=useRouteElementId(\"hOqlmL08_\");const ref5=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"Lq2vwSur3\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-01422742-084b-4eb0-8b74-448cfd7ecfe0, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1x891tc\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref1,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-54p445-container\",layoutScroll:true,nodeId:\"lqzLDLtee\",rendersWithMotion:true,scopeId:\"xH9Z0TRDV\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C1HoLIOMu:{variant:\"BG3g_NK8F\"},ZjeJSByB4:{variant:\"RLmeyFdW6\"}},children:/*#__PURE__*/_jsx(Header,{height:\"100%\",id:\"lqzLDLtee\",layoutId:\"lqzLDLtee\",style:{width:\"100%\"},variant:\"HnoYAnL1y\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xsdbsr\",\"data-framer-name\":\"Hero 2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-xfjlbb\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ts4qe\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9o0hwy\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C1HoLIOMu:{y:(componentViewport?.y||0)+0+0+48+0+0+0+32+0+0+0},ZjeJSByB4:{y:(componentViewport?.y||0)+0+0+48+0+0+0+32+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:129,y:(componentViewport?.y||0)+0+0+48+2411.4+0+32+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-vyienk-container\",nodeId:\"JyRz3B5kg\",rendersWithMotion:true,scopeId:\"xH9Z0TRDV\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZjeJSByB4:{variant:\"yPM3_jfHi\"}},children:/*#__PURE__*/_jsx(LeapLogo,{height:\"100%\",id:\"JyRz3B5kg\",layoutId:\"JyRz3B5kg\",variant:\"pMCZbLYNT\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZjeJSByB4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-3a1ab859-4bc4-424e-8e44-773db23ad58d, rgb(30, 29, 28))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Build Your Own Smart Corporate University with AI\"})})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"47px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-3a1ab859-4bc4-424e-8e44-773db23ad58d, rgb(30, 29, 28))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Build Your Own Smart Corporate University with AI\"})})}),className:\"framer-ujofw\",fonts:[\"GF;DM Sans-700\",\"GF;DM Sans-900\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZjeJSByB4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"blockquote\",{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-3a1ab859-4bc4-424e-8e44-773db23ad58d, rgb(30, 29, 28))\"},children:/*#__PURE__*/_jsx(\"em\",{children:\"AI-powered learning that adapts to every role. Your people learn better, faster\u2014and stay longer.\"})})})}),fonts:[\"GF;DM Sans-regular\",\"GF;DM Sans-italic\"]}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"blockquote\",{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-o8ttdn\",\"data-styles-preset\":\"cKqDDFj7l\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-3a1ab859-4bc4-424e-8e44-773db23ad58d, rgb(30, 29, 28))\"},children:/*#__PURE__*/_jsx(\"em\",{children:\"AI-powered learning that adapts to every role. Your people learn better, faster\u2014and stay longer.\"})})})}),className:\"framer-drk7kl\",fonts:[\"Inter\",\"Inter-Italic\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-f000gl\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"yCPRLwsIn\"},implicitPathVariables:undefined},{href:{webPageId:\"yCPRLwsIn\"},implicitPathVariables:undefined},{href:{webPageId:\"yCPRLwsIn\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C1HoLIOMu:{y:(componentViewport?.y||0)+0+0+48+0+0+0+32+0+0+420.7+0},ZjeJSByB4:{y:(componentViewport?.y||0)+0+0+48+0+0+0+32+0+0+413+0+56}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+0+48+2411.4+0+32+0+0+420.7+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1acte53-container\",nodeId:\"CjMvZ228Z\",scopeId:\"xH9Z0TRDV\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C1HoLIOMu:{T1lRT1OOI:resolvedLinks[1]},ZjeJSByB4:{T1lRT1OOI:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(Button,{ADOjmSVVE:\"House\",AJBmoEBMT:false,aQjl1QVUa:true,BHeWvg3Yq:false,fDcCRAF0A:\"Take the Free Diagnostic\",height:\"100%\",id:\"CjMvZ228Z\",layoutId:\"CjMvZ228Z\",p7UwBuzQZ:true,qbTodvRv9:\"center\",T1lRT1OOI:resolvedLinks[0],T3_K9UECw:false,variant:\"JLOGInSiQ\",VhFnfZvO1:\"House\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"XtTDhNcVY\"},implicitPathVariables:undefined},{href:{webPageId:\"XtTDhNcVY\"},implicitPathVariables:undefined},{href:{webPageId:\"XtTDhNcVY\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C1HoLIOMu:{y:(componentViewport?.y||0)+0+0+48+0+0+0+32+0+0+420.7+0},ZjeJSByB4:{y:(componentViewport?.y||0)+0+0+48+0+0+0+32+0+0+413+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+0+48+2411.4+0+32+0+0+420.7+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1s4axc4-container\",nodeId:\"LU0aEJWPr\",scopeId:\"xH9Z0TRDV\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C1HoLIOMu:{T1lRT1OOI:resolvedLinks1[1]},ZjeJSByB4:{T1lRT1OOI:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(Button,{ADOjmSVVE:\"House\",AJBmoEBMT:false,aQjl1QVUa:true,BHeWvg3Yq:false,fDcCRAF0A:\"Book a Strategy Call\",height:\"100%\",id:\"LU0aEJWPr\",layoutId:\"LU0aEJWPr\",p7UwBuzQZ:true,qbTodvRv9:\"center\",T1lRT1OOI:resolvedLinks1[0],T3_K9UECw:false,variant:\"QzcKu3gkn\",VhFnfZvO1:\"House\",width:\"100%\"})})})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C1HoLIOMu:{height:467,width:`min(${componentViewport?.width||\"100vw\"} - 96px, 1000px)`,y:(componentViewport?.y||0)+0+0+48+0+0+0+32+524.7},ZjeJSByB4:{width:`min(${componentViewport?.width||\"100vw\"} - 32px, 1000px)`,y:(componentViewport?.y||0)+0+0+48+0+0+0+32+557}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:463,width:\"830px\",y:(componentViewport?.y||0)+0+0+48+2411.4+0+32+524.7,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-9vd7xp-container\",nodeId:\"laGa_6K1S\",rendersWithMotion:true,scopeId:\"xH9Z0TRDV\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZjeJSByB4:{variant:\"PbA2S4rAs\"}},children:/*#__PURE__*/_jsx(MainVideo,{height:\"100%\",id:\"laGa_6K1S\",layoutId:\"laGa_6K1S\",style:{height:\"100%\",width:\"100%\"},variant:\"s20JZJMQ1\",width:\"100%\",XTPYEZXjw:\"How can Leap help you to train your employees?\"})})})})})]})}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation6,className:\"framer-1k857tp\",\"data-framer-appear-id\":\"1k857tp\",initial:animation7,optimized:true,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-wzcas5-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"F5MKavrRK\",scopeId:\"xH9Z0TRDV\",children:/*#__PURE__*/_jsx(Noise,{backgroundSize:128,borderRadius:0,height:\"100%\",id:\"F5MKavrRK\",layoutId:\"F5MKavrRK\",opacity:.5,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xwl4jx\"}),isDisplayed()&&/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:30,__perspectiveFX:false,__targetOpacity:1,animate:animation8,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1920,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0),pixelHeight:1320,pixelWidth:1920,positionX:\"25%\",positionY:\"45.4%\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/7uQWaxMx2T808vUi1jJLlx2q1M.jpg\",srcSet:\"https://framerusercontent.com/images/7uQWaxMx2T808vUi1jJLlx2q1M.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/7uQWaxMx2T808vUi1jJLlx2q1M.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/7uQWaxMx2T808vUi1jJLlx2q1M.jpg 1920w\"},className:\"framer-1gtz0f7 hidden-1eukjwr hidden-jngp2s\",\"data-framer-appear-id\":\"1gtz0f7\",\"data-framer-name\":\"02-Foto-bn--1\",initial:animation9,optimized:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cojojm\",\"data-framer-name\":\"content\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-wegv3w\",\"data-framer-name\":\"phylosophy\",id:elementId1,ref:ref2,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qkjgjo\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-aljuv7\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZjeJSByB4:{__framer__enter:animation10,__framer__exit:animation11}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1wqhvrt\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-o8ttdn\",\"data-styles-preset\":\"cKqDDFj7l\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-febd3000-c8ea-4f5a-be3b-a182948468ba, rgb(124, 87, 252))\"},children:\"The Problem with Corporate Training Today\"})}),className:\"framer-navy34\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-m69r3f\",\"data-styles-preset\":\"uQ57UL_0U\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-3a1ab859-4bc4-424e-8e44-773db23ad58d, rgb(30, 29, 28))\"},children:\"Why Traditional Training Fails Most Teams\"})}),className:\"framer-clvre9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZjeJSByB4:{__framer__enter:animation10,__framer__exit:animation11}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kzkroi\",\"data-styles-preset\":\"KyqWspsYE\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-3a1ab859-4bc4-424e-8e44-773db23ad58d, rgb(30, 29, 28))\"},children:\"Most companies struggle to train their teams effectively. Courses are too generic, learners lose interest, and there\u2019s no clear path to real growth.\"})}),className:\"framer-znwd9r\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1td3qbu\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w865fb\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-110a4ia\",\"data-framer-name\":\"man\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:1168,intrinsicWidth:535,svg:'<svg width=\"535\" height=\"1168\" viewBox=\"0 0 535 1168\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_15_23)\">\\n<path d=\"M389.395 128.157C389.395 198.678 332.228 255.845 261.707 255.845C191.182 255.845 134.02 198.678 134.02 128.157C134.02 57.6365 191.182 0.469743 261.707 0.469743C332.228 0.469743 389.395 57.6365 389.395 128.157Z\" fill=\"#7C57FC\"/>\\n<path d=\"M271.203 1167.48L534.89 1016.2L534.028 819.288C533.199 629.08 431.886 453.484 267.648 357.555C103.402 453.484 2.09815 629.08 1.26065 819.288L0.402344 1016.2L264.094 1167.48H271.203Z\" fill=\"#7C57FC\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_15_23\">\\n<rect width=\"535\" height=\"1168\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-477n68\",\"data-styles-preset\":\"NBhr8OI6W\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-3a1ab859-4bc4-424e-8e44-773db23ad58d, rgb(30, 29, 28))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Generic Content\"})})}),className:\"framer-19v0fjn\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kzkroi\",\"data-styles-preset\":\"KyqWspsYE\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-3a1ab859-4bc4-424e-8e44-773db23ad58d, rgb(30, 29, 28))\"},children:/*#__PURE__*/_jsx(\"em\",{children:\"Our team feels disconnected from the training. The content is too generic.\"})})}),className:\"framer-yfa04g\",fonts:[\"Inter\",\"Inter-Italic\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tdouot\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-14xiujj\",\"data-framer-name\":\"ringlete\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:980,intrinsicWidth:980,svg:'<svg width=\"980\" height=\"980\" viewBox=\"0 0 980 980\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_15_41)\">\\n<path d=\"M478.813 979.251L490.326 489.632C587.979 550.386 646.251 658.235 643.548 773.216L640.753 892.254L478.813 979.251Z\" fill=\"#7C57FC\"/>\\n<path d=\"M501.837 0.00463576L490.325 489.624C392.672 428.87 334.399 321.02 337.103 206.039L339.897 87.0013L501.837 0.00463576Z\" fill=\"#7C57FC\"/>\\n<path d=\"M0.706686 478.119L490.322 489.632C429.568 587.285 321.718 645.557 206.737 642.854L87.7034 640.055L0.706686 478.119Z\" fill=\"#7C57FC\"/>\\n<path d=\"M979.945 501.137L490.33 489.625C551.084 391.972 658.933 333.699 773.91 336.407L892.948 339.202L979.945 501.137Z\" fill=\"#7C57FC\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_15_41\">\\n<rect width=\"980\" height=\"980\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-477n68\",\"data-styles-preset\":\"NBhr8OI6W\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-3a1ab859-4bc4-424e-8e44-773db23ad58d, rgb(30, 29, 28))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Low Completion\"})})}),className:\"framer-ft287n\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kzkroi\",\"data-styles-preset\":\"KyqWspsYE\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-3a1ab859-4bc4-424e-8e44-773db23ad58d, rgb(30, 29, 28))\"},children:/*#__PURE__*/_jsx(\"em\",{children:\"Most people start the courses but don\u2019t finish them.\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kzkroi\",\"data-styles-preset\":\"KyqWspsYE\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-3a1ab859-4bc4-424e-8e44-773db23ad58d, rgb(30, 29, 28))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-188vq6f\",fonts:[\"Inter\",\"Inter-Italic\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kolegi\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-vhne50\",\"data-framer-name\":\"Group\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 47.763 78\"><path d=\"M 7.937 15.504 L 7.767 15.362 L 0.043 24.605 L 0.214 24.748 C 9.696 32.67 9.515 53.028 9.306 76.603 L 9.309 77.963 L 21.364 77.963 L 21.35 76.705 C 21.587 50.077 21.791 27.08 7.937 15.504 Z\" fill=\"rgb(124,87,252)\"></path><path d=\"M 39.864 15.504 L 40.034 15.362 L 47.758 24.605 L 47.587 24.748 C 38.105 32.67 38.286 53.028 38.495 76.603 L 38.492 77.963 L 26.437 77.963 L 26.451 76.705 C 26.214 50.077 26.01 27.08 39.864 15.504 Z\" fill=\"rgb(124,87,252)\"></path><path d=\"M 33.491 9.622 C 33.491 14.919 29.198 19.213 23.901 19.213 C 18.604 19.213 14.31 14.919 14.31 9.622 C 14.31 4.325 18.604 0.031 23.901 0.031 C 29.198 0.031 33.491 4.325 33.491 9.622 Z\" fill=\"rgb(124,87,252)\"></path></svg>',svgContentId:9270219356,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-477n68\",\"data-styles-preset\":\"NBhr8OI6W\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-3a1ab859-4bc4-424e-8e44-773db23ad58d, rgb(30, 29, 28))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"No Adaptation\"})})}),className:\"framer-11nk9mc\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kzkroi\",\"data-styles-preset\":\"KyqWspsYE\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-3a1ab859-4bc4-424e-8e44-773db23ad58d, rgb(30, 29, 28))\"},children:/*#__PURE__*/_jsx(\"em\",{children:\"We need a solution that evolves with our team, not against it.\"})})}),className:\"framer-ftxwze\",fonts:[\"Inter\",\"Inter-Italic\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"yCPRLwsIn\"},implicitPathVariables:undefined},{href:{webPageId:\"yCPRLwsIn\"},implicitPathVariables:undefined},{href:{webPageId:\"yCPRLwsIn\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C1HoLIOMu:{y:(componentViewport?.y||0)+0+806+0+0+220+0+848.6},ZjeJSByB4:{y:(componentViewport?.y||0)+0+748+0+0+110+0+0+1404.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+5611.8+0+0+285+0+848.6,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-19lro10-container\",nodeId:\"BNLQeFAYm\",rendersWithMotion:true,scopeId:\"xH9Z0TRDV\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C1HoLIOMu:{T1lRT1OOI:resolvedLinks2[1]},ZjeJSByB4:{T1lRT1OOI:resolvedLinks2[2]}},children:/*#__PURE__*/_jsx(Button,{ADOjmSVVE:\"House\",AJBmoEBMT:false,aQjl1QVUa:true,BHeWvg3Yq:false,fDcCRAF0A:\"Book a call\",height:\"100%\",id:\"BNLQeFAYm\",layoutId:\"BNLQeFAYm\",p7UwBuzQZ:true,qbTodvRv9:\"center\",T1lRT1OOI:resolvedLinks2[0],T3_K9UECw:false,variant:\"bXR5mN9NA\",VhFnfZvO1:\"House\",width:\"100%\"})})})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C1HoLIOMu:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+806+0+1156.6),pixelHeight:1080,pixelWidth:1920,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/UhFafXx9gSnV5n3Uxx363CCvZ2Q.jpg\",srcSet:\"https://framerusercontent.com/images/UhFafXx9gSnV5n3Uxx363CCvZ2Q.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/UhFafXx9gSnV5n3Uxx363CCvZ2Q.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/UhFafXx9gSnV5n3Uxx363CCvZ2Q.jpg 1920w\"}},ZjeJSByB4:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+748+0+1602.6),pixelHeight:1080,pixelWidth:1920,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/UhFafXx9gSnV5n3Uxx363CCvZ2Q.jpg\",srcSet:\"https://framerusercontent.com/images/UhFafXx9gSnV5n3Uxx363CCvZ2Q.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/UhFafXx9gSnV5n3Uxx363CCvZ2Q.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/UhFafXx9gSnV5n3Uxx363CCvZ2Q.jpg 1920w\"}}},children:/*#__PURE__*/_jsxs(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,as:\"header\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5611.8+0+1221.6),pixelHeight:1080,pixelWidth:1920,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/UhFafXx9gSnV5n3Uxx363CCvZ2Q.jpg\",srcSet:\"https://framerusercontent.com/images/UhFafXx9gSnV5n3Uxx363CCvZ2Q.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/UhFafXx9gSnV5n3Uxx363CCvZ2Q.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/UhFafXx9gSnV5n3Uxx363CCvZ2Q.jpg 1920w\"},className:\"framer-1q0qcb9\",\"data-framer-name\":\"Journey\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9zunr9\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-m69r3f\",\"data-styles-preset\":\"uQ57UL_0U\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-01422742-084b-4eb0-8b74-448cfd7ecfe0, rgb(255, 255, 255))\"},children:\"Our journey shapes our future\"})}),className:\"framer-10wl8gz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15d6zt5\",\"data-styles-preset\":\"OH43W8jhe\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-01422742-084b-4eb0-8b74-448cfd7ecfe0, rgb(255, 255, 255))\"},children:\"Our team has over 10 years of experience developing successful educational initiatives that have transformed lives and reached millions of people, and now, we aim to do the same with leap.\"})}),className:\"framer-1sc47lv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"v7cKD55jM\"},implicitPathVariables:undefined},{href:{webPageId:\"v7cKD55jM\"},implicitPathVariables:undefined},{href:{webPageId:\"v7cKD55jM\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C1HoLIOMu:{y:(componentViewport?.y||0)+0+806+0+1156.6+40+226.4+0+253.6},ZjeJSByB4:{y:(componentViewport?.y||0)+0+748+0+1602.6+60+186.4+0+253.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+5611.8+0+1221.6+40+226.4+0+253.6,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-10ln24j-container\",nodeId:\"WKDKmd0qC\",rendersWithMotion:true,scopeId:\"xH9Z0TRDV\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C1HoLIOMu:{T1lRT1OOI:resolvedLinks3[1]},ZjeJSByB4:{T1lRT1OOI:resolvedLinks3[2]}},children:/*#__PURE__*/_jsx(Button,{ADOjmSVVE:\"House\",AJBmoEBMT:false,aQjl1QVUa:true,BHeWvg3Yq:false,fDcCRAF0A:\"View our story\",height:\"100%\",id:\"WKDKmd0qC\",layoutId:\"WKDKmd0qC\",p7UwBuzQZ:false,qbTodvRv9:\"center\",T1lRT1OOI:resolvedLinks3[0],T3_K9UECw:false,variant:\"RVsJ84naj\",VhFnfZvO1:\"House\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-29dmeo\"})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1foqcio\",\"data-framer-name\":\"tailor\",id:elementId2,ref:ref3,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1u90s8c\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-b2huos\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1hmjbve\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-17nuxuo-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Z_TIgZc22\",scopeId:\"xH9Z0TRDV\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-febd3000-c8ea-4f5a-be3b-a182948468ba, rgb(124, 87, 252))\",height:\"100%\",iconSearch:\"document\",iconSelection:\"LightbulbFilament\",id:\"Z_TIgZc22\",layoutId:\"Z_TIgZc22\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15nydpe\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-477n68\",\"data-styles-preset\":\"NBhr8OI6W\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-3a1ab859-4bc4-424e-8e44-773db23ad58d, rgb(30, 29, 28))\"},children:\"Built on expertise\"})}),className:\"framer-9r4llh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kzkroi\",\"data-styles-preset\":\"KyqWspsYE\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-3a1ab859-4bc4-424e-8e44-773db23ad58d, rgb(30, 29, 28))\"},children:\"With years of experience in e-learning, we create personalized solutions that help your team grow and succeed in a fast-changing world.\"})}),className:\"framer-170pgiw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-134a9td\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1se1mua-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Lq0DaVkBY\",scopeId:\"xH9Z0TRDV\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-febd3000-c8ea-4f5a-be3b-a182948468ba, rgb(124, 87, 252))\",height:\"100%\",iconSearch:\"document\",iconSelection:\"OpenAiLogo\",id:\"Lq0DaVkBY\",layoutId:\"Lq0DaVkBY\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ncpw0g\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-477n68\",\"data-styles-preset\":\"NBhr8OI6W\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-3a1ab859-4bc4-424e-8e44-773db23ad58d, rgb(30, 29, 28))\"},children:\"AI-Powered learning\"})}),className:\"framer-1ihshq9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kzkroi\",\"data-styles-preset\":\"KyqWspsYE\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-3a1ab859-4bc4-424e-8e44-773db23ad58d, rgb(30, 29, 28))\"},children:\"Our advanced AI adapts to your team\u2019s journey, delivering engaging and skill-focused learning tailored to their needs.\"})}),className:\"framer-1tvr4e5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1pckeb2\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1v2wj76-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"epNNG1pBQ\",scopeId:\"xH9Z0TRDV\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-febd3000-c8ea-4f5a-be3b-a182948468ba, rgb(124, 87, 252))\",height:\"100%\",iconSearch:\"document\",iconSelection:\"ChartLineUp\",id:\"epNNG1pBQ\",layoutId:\"epNNG1pBQ\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cb4i64\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-477n68\",\"data-styles-preset\":\"NBhr8OI6W\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-3a1ab859-4bc4-424e-8e44-773db23ad58d, rgb(30, 29, 28))\"},children:\"Results that make a difference\"})}),className:\"framer-o2regh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kzkroi\",\"data-styles-preset\":\"KyqWspsYE\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-3a1ab859-4bc4-424e-8e44-773db23ad58d, rgb(30, 29, 28))\"},children:\"Leap\u2019s training goes beyond teaching\u2014it creates real impact. Boost collaboration, spark innovation, and achieve measurable progress.\"})}),className:\"framer-16qznr9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-uv23sz\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-9c69lr-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Xy6EyVhoP\",scopeId:\"xH9Z0TRDV\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-febd3000-c8ea-4f5a-be3b-a182948468ba, rgb(124, 87, 252))\",height:\"100%\",iconSearch:\"document\",iconSelection:\"UsersThree\",id:\"Xy6EyVhoP\",layoutId:\"Xy6EyVhoP\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-weq4fm\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-477n68\",\"data-styles-preset\":\"NBhr8OI6W\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-3a1ab859-4bc4-424e-8e44-773db23ad58d, rgb(30, 29, 28))\"},children:\"Preparing your team for tomorrow\"})}),className:\"framer-1w3u6zx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kzkroi\",\"data-styles-preset\":\"KyqWspsYE\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-3a1ab859-4bc4-424e-8e44-773db23ad58d, rgb(30, 29, 28))\"},children:\"We help unlock your team\u2019s potential, equipping them to thrive in a world that\u2019s constantly evolving, building a stronger future together.\"})}),className:\"framer-1n2hygl\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C1HoLIOMu:{y:(componentViewport?.y||0)+0+806+0+2444.6},ZjeJSByB4:{y:(componentViewport?.y||0)+0+748+0+3498.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:890,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+5611.8+0+2591.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-si4xoz-container\",nodeId:\"p89ro5BZw\",scopeId:\"xH9Z0TRDV\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C1HoLIOMu:{variant:\"mPc3QnYgh\"},ZjeJSByB4:{variant:\"oHcJ7pveS\"}},children:/*#__PURE__*/_jsx(AppSection,{height:\"100%\",id:\"p89ro5BZw\",jqZlm209d:true,kVJ6ihuns:true,layoutId:\"p89ro5BZw\",style:{width:\"100%\"},variant:\"LsD_jvr0H\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-30j7rc\",\"data-framer-name\":\"phylosophy\",id:elementId3,ref:ref4,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qq67a0\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qb8jap\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZjeJSByB4:{__framer__enter:animation10,__framer__exit:animation11}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-4mkwby\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-o8ttdn\",\"data-styles-preset\":\"cKqDDFj7l\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-febd3000-c8ea-4f5a-be3b-a182948468ba, rgb(124, 87, 252))\"},children:\"Leap philosophy\"})}),className:\"framer-4n16lb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-m69r3f\",\"data-styles-preset\":\"uQ57UL_0U\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-3a1ab859-4bc4-424e-8e44-773db23ad58d, rgb(30, 29, 28))\"},children:\"Turning knowledge into action\"})}),className:\"framer-yv5yqs\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZjeJSByB4:{__framer__enter:animation10,__framer__exit:animation11}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kzkroi\",\"data-styles-preset\":\"KyqWspsYE\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-3a1ab859-4bc4-424e-8e44-773db23ad58d, rgb(30, 29, 28))\"},children:\"Leap represents the courageous act of moving forward\u2014trusting in innovation, people, and purpose. We empower businesses to simplify learning, embrace new tools, and foster meaningful growth within their teams.\"})}),className:\"framer-7q38z7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1r9rwtr\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1iplp9q\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-12bb6jj\",\"data-framer-name\":\"man\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:1168,intrinsicWidth:535,svg:'<svg width=\"535\" height=\"1168\" viewBox=\"0 0 535 1168\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_15_23)\">\\n<path d=\"M389.395 128.157C389.395 198.678 332.228 255.845 261.707 255.845C191.182 255.845 134.02 198.678 134.02 128.157C134.02 57.6365 191.182 0.469743 261.707 0.469743C332.228 0.469743 389.395 57.6365 389.395 128.157Z\" fill=\"#7C57FC\"/>\\n<path d=\"M271.203 1167.48L534.89 1016.2L534.028 819.288C533.199 629.08 431.886 453.484 267.648 357.555C103.402 453.484 2.09815 629.08 1.26065 819.288L0.402344 1016.2L264.094 1167.48H271.203Z\" fill=\"#7C57FC\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_15_23\">\\n<rect width=\"535\" height=\"1168\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-477n68\",\"data-styles-preset\":\"NBhr8OI6W\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-3a1ab859-4bc4-424e-8e44-773db23ad58d, rgb(30, 29, 28))\"},children:\"Empower teams\"})}),className:\"framer-gmsvy0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kzkroi\",\"data-styles-preset\":\"KyqWspsYE\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-3a1ab859-4bc4-424e-8e44-773db23ad58d, rgb(30, 29, 28))\"},children:\"Enable employees to absorb knowledge through personalized learning paths.\"})}),className:\"framer-14ujxzo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-l5h7s4\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-y4l0aa\",\"data-framer-name\":\"ringlete\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:980,intrinsicWidth:980,svg:'<svg width=\"980\" height=\"980\" viewBox=\"0 0 980 980\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_15_41)\">\\n<path d=\"M478.813 979.251L490.326 489.632C587.979 550.386 646.251 658.235 643.548 773.216L640.753 892.254L478.813 979.251Z\" fill=\"#7C57FC\"/>\\n<path d=\"M501.837 0.00463576L490.325 489.624C392.672 428.87 334.399 321.02 337.103 206.039L339.897 87.0013L501.837 0.00463576Z\" fill=\"#7C57FC\"/>\\n<path d=\"M0.706686 478.119L490.322 489.632C429.568 587.285 321.718 645.557 206.737 642.854L87.7034 640.055L0.706686 478.119Z\" fill=\"#7C57FC\"/>\\n<path d=\"M979.945 501.137L490.33 489.625C551.084 391.972 658.933 333.699 773.91 336.407L892.948 339.202L979.945 501.137Z\" fill=\"#7C57FC\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_15_41\">\\n<rect width=\"980\" height=\"980\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-477n68\",\"data-styles-preset\":\"NBhr8OI6W\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-3a1ab859-4bc4-424e-8e44-773db23ad58d, rgb(30, 29, 28))\"},children:\"Simplify complexity\"})}),className:\"framer-1rboels\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kzkroi\",\"data-styles-preset\":\"KyqWspsYE\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-3a1ab859-4bc4-424e-8e44-773db23ad58d, rgb(30, 29, 28))\"},children:\"Break down even the most intricate content into simple, actionable steps.\"})}),className:\"framer-1p3wtn5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hv96nw\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-6sxwzf\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:1166,intrinsicWidth:714,svg:'<svg width=\"714\" height=\"1166\" viewBox=\"0 0 714 1166\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M118.653 231.769L116.107 229.64L0.648438 367.819L3.2026 369.948C144.949 488.377 142.244 792.694 139.107 1145.12L139.161 1165.44H319.365L319.161 1146.64C322.695 748.586 325.753 404.806 118.653 231.769Z\" fill=\"#7C57FC\"/>\\n<path d=\"M595.912 231.769L598.458 229.64L713.916 367.819L711.362 369.948C569.616 488.377 572.321 792.694 575.458 1145.12L575.404 1165.44H395.2L395.404 1146.64C391.87 748.586 388.812 404.806 595.912 231.769Z\" fill=\"#7C57FC\"/>\\n<path d=\"M500.653 143.835C500.653 223.014 436.466 287.206 357.282 287.206C278.103 287.206 213.911 223.014 213.911 143.835C213.911 64.6556 278.103 0.463889 357.282 0.463889C436.466 0.463889 500.653 64.6556 500.653 143.835Z\" fill=\"#7C57FC\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-477n68\",\"data-styles-preset\":\"NBhr8OI6W\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-3a1ab859-4bc4-424e-8e44-773db23ad58d, rgb(30, 29, 28))\"},children:\"Drive engagement\"})}),className:\"framer-16n4929\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kzkroi\",\"data-styles-preset\":\"KyqWspsYE\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-3a1ab859-4bc4-424e-8e44-773db23ad58d, rgb(30, 29, 28))\"},children:\"Build stronger, more connected teams with tools that prioritize growth.\"})}),className:\"framer-ue1djm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"yCPRLwsIn\"},implicitPathVariables:undefined},{href:{webPageId:\"yCPRLwsIn\"},implicitPathVariables:undefined},{href:{webPageId:\"yCPRLwsIn\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C1HoLIOMu:{y:(componentViewport?.y||0)+0+806+0+3334.6+96+0+700.6},ZjeJSByB4:{y:(componentViewport?.y||0)+0+748+0+4388.6+96+0+0+1256.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+5611.8+0+3481.6+96+0+700.6,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1lkbqkb-container\",nodeId:\"YcrdnUUVM\",rendersWithMotion:true,scopeId:\"xH9Z0TRDV\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C1HoLIOMu:{T1lRT1OOI:resolvedLinks4[1]},ZjeJSByB4:{T1lRT1OOI:resolvedLinks4[2]}},children:/*#__PURE__*/_jsx(Button,{ADOjmSVVE:\"House\",AJBmoEBMT:false,aQjl1QVUa:true,BHeWvg3Yq:false,fDcCRAF0A:\"Book a call\",height:\"100%\",id:\"YcrdnUUVM\",layoutId:\"YcrdnUUVM\",p7UwBuzQZ:true,qbTodvRv9:\"center\",T1lRT1OOI:resolvedLinks4[0],T3_K9UECw:false,variant:\"bXR5mN9NA\",VhFnfZvO1:\"House\",width:\"100%\"})})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qbehh2\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-bo1cfk\",\"data-framer-name\":\"Company Benefits\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7ywasu\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-10y8mwp\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-m69r3f\",\"data-styles-preset\":\"uQ57UL_0U\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-febd3000-c8ea-4f5a-be3b-a182948468ba, rgb(124, 87, 252))\"},children:\"Top industry insights you need to know\"})}),className:\"framer-1ory8br\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1u59ng3\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"L0saqF3pg\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},select:[{collection:\"L0saqF3pg\",name:\"ARSqiJGiD\",type:\"Identifier\"},{collection:\"L0saqF3pg\",name:\"aD5O2P7Ni\",type:\"Identifier\"},{collection:\"L0saqF3pg\",name:\"FrSThAp4c\",type:\"Identifier\"},{collection:\"L0saqF3pg\",name:\"U3A9MgObm\",type:\"Identifier\"},{collection:\"L0saqF3pg\",name:\"id\",type:\"Identifier\"}],where:{left:{type:\"LiteralValue\",value:\"L22evxMHY\"},operator:\"in\",right:{arguments:[{from:{alias:\"RWVCKlEnb\",data:Categories,type:\"Collection\"},orderBy:[{arguments:[{collection:\"L0saqF3pg\",name:\"RWVCKlEnb\",type:\"Identifier\"},{collection:\"RWVCKlEnb\",name:\"id\",type:\"Identifier\"}],functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"RWVCKlEnb\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"RWVCKlEnb\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{collection:\"L0saqF3pg\",name:\"RWVCKlEnb\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"FLAT_ARRAY\",type:\"FunctionCall\"},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({aD5O2P7Ni:aD5O2P7NiL0saqF3pg,ARSqiJGiD:ARSqiJGiDL0saqF3pg,FrSThAp4c:FrSThAp4cL0saqF3pg,id:idL0saqF3pg,U3A9MgObm:U3A9MgObmL0saqF3pg},index)=>{aD5O2P7NiL0saqF3pg??=\"\";FrSThAp4cL0saqF3pg??=\"\";U3A9MgObmL0saqF3pg??=\"\";const visible=isSet(ARSqiJGiDL0saqF3pg);return /*#__PURE__*/_jsx(LayoutGroup,{id:`L0saqF3pg-${idL0saqF3pg}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{aD5O2P7Ni:aD5O2P7NiL0saqF3pg},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-hqvg2h\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b9grwf\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w2gmoq\",children:[visible&&/*#__PURE__*/_jsx(Link,{href:{pathVariables:{aD5O2P7Ni:aD5O2P7NiL0saqF3pg},webPageId:\"ByqBSOySr\"},motionChild:true,nodeId:\"nj20jENZG\",scopeId:\"xH9Z0TRDV\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C1HoLIOMu:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+806+0+4219.2+0+96+0+109.6+0+0+16+0+0+0+0),sizes:`max(max((max(max(min(${componentViewport?.width||\"100vw\"}, 1000px), 1px) - 96px, 1px) - 24px) / 2, 50px) - 32px, 1px)`,...toResponsiveImage(ARSqiJGiDL0saqF3pg)}},ZjeJSByB4:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+748+0+5829.2+0+64+0+109.6+0+0+0+0+0+0+0),sizes:`max(max(min(${componentViewport?.width||\"100vw\"}, 1000px), 1px) - 32px, 1px)`,...toResponsiveImage(ARSqiJGiDL0saqF3pg)}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5611.8+0+4366.2+0+96+0+109.6+0+0+16+0+0+0+0),sizes:`max(max((max(max(min(${componentViewport?.width||\"100vw\"}, 1000px), 1px) - 96px, 1px) - 24px) / 2, 50px) - 32px, 1px)`,...toResponsiveImage(ARSqiJGiDL0saqF3pg)},className:\"framer-1iq3zm1 framer-bsviqx\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-477n68\",\"data-styles-preset\":\"NBhr8OI6W\",children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{aD5O2P7Ni:aD5O2P7NiL0saqF3pg},webPageId:\"ByqBSOySr\"},motionChild:true,nodeId:\"gZifEjWRj\",openInNewTab:false,scopeId:\"xH9Z0TRDV\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-u65bb\",\"data-styles-preset\":\"NORdal0NK\",children:\"Educational Architecture: A Strategic Framework to Boost Engagement, Retention, and Productivity\"})})})}),className:\"framer-qxsvwk\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:FrSThAp4cL0saqF3pg,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15d6zt5\",\"data-styles-preset\":\"OH43W8jhe\",children:\"Discover how educational architecture can transform corporate learning by aligning development strategies with business goals, enhancing employee engagement, and maximizing productivity.\"})}),className:\"framer-yypdki\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:U3A9MgObmL0saqF3pg,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{aD5O2P7Ni:aD5O2P7NiL0saqF3pg},webPageId:\"ByqBSOySr\"},implicitPathVariables:undefined},{href:{pathVariables:{aD5O2P7Ni:aD5O2P7NiL0saqF3pg},webPageId:\"ByqBSOySr\"},implicitPathVariables:undefined},{href:{pathVariables:{aD5O2P7Ni:aD5O2P7NiL0saqF3pg},webPageId:\"ByqBSOySr\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C1HoLIOMu:{y:(componentViewport?.y||0)+0+806+0+4219.2+0+96+0+109.6+0+0+16+0+457},ZjeJSByB4:{y:(componentViewport?.y||0)+0+748+0+5829.2+0+64+0+109.6+0+0+0+0+457}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+5611.8+0+4366.2+0+96+0+109.6+0+0+16+0+457,children:/*#__PURE__*/_jsx(Container,{className:\"framer-86u2mp-container\",nodeId:\"wdy5rMDbc\",scopeId:\"xH9Z0TRDV\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C1HoLIOMu:{T1lRT1OOI:resolvedLinks5[1]},ZjeJSByB4:{T1lRT1OOI:resolvedLinks5[2]}},children:/*#__PURE__*/_jsx(Button,{ADOjmSVVE:\"ArrowRight\",AJBmoEBMT:false,aQjl1QVUa:true,BHeWvg3Yq:false,fDcCRAF0A:\"Read full article\",height:\"100%\",id:\"wdy5rMDbc\",layoutId:\"wdy5rMDbc\",p7UwBuzQZ:false,qbTodvRv9:\"center\",T1lRT1OOI:resolvedLinks5[0],T3_K9UECw:true,variant:\"bXR5mN9NA\",VhFnfZvO1:\"House\",width:\"100%\"})})})})})})]})})})},idL0saqF3pg);})})})})})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C1HoLIOMu:{y:(componentViewport?.y||0)+0+806+0+5073.8},ZjeJSByB4:{y:(componentViewport?.y||0)+0+748+0+6563.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:391,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+5611.8+0+5220.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-dbianh-container\",id:elementId4,nodeId:\"hOqlmL08_\",ref:ref5,scopeId:\"xH9Z0TRDV\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C1HoLIOMu:{variant:\"Psazh_fxq\"},ZjeJSByB4:{variant:\"f2mfVWI6v\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"hOqlmL08_\",layoutId:\"hOqlmL08_\",style:{width:\"100%\"},variant:\"xB_D8Z1Zh\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-SR4X0.framer-bsviqx, .framer-SR4X0 .framer-bsviqx { display: block; }\",\".framer-SR4X0.framer-1x891tc { align-content: center; align-items: center; background-color: var(--token-01422742-084b-4eb0-8b74-448cfd7ecfe0, #ffffff); 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-SR4X0 .framer-54p445-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 3; }\",\".framer-SR4X0 .framer-xsdbsr { align-content: center; align-items: center; background-color: var(--token-8707b53d-27ff-43c8-865d-28b7af693153, #dcd6fc); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: 100%; justify-content: center; overflow: visible; padding: 48px; position: relative; width: 100%; }\",\".framer-SR4X0 .framer-xfjlbb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-SR4X0 .framer-1ts4qe { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: 693px; justify-content: flex-start; overflow: visible; padding: 32px 0px 32px 0px; position: relative; width: 830px; }\",\".framer-SR4X0 .framer-9o0hwy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-SR4X0 .framer-vyienk-container, .framer-SR4X0 .framer-1acte53-container, .framer-SR4X0 .framer-1s4axc4-container, .framer-SR4X0 .framer-19lro10-container, .framer-SR4X0 .framer-10ln24j-container, .framer-SR4X0 .framer-1lkbqkb-container, .framer-SR4X0 .framer-86u2mp-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-SR4X0 .framer-ujofw, .framer-SR4X0 .framer-drk7kl, .framer-SR4X0 .framer-clvre9, .framer-SR4X0 .framer-znwd9r, .framer-SR4X0 .framer-19v0fjn, .framer-SR4X0 .framer-yfa04g, .framer-SR4X0 .framer-ft287n, .framer-SR4X0 .framer-188vq6f, .framer-SR4X0 .framer-11nk9mc, .framer-SR4X0 .framer-ftxwze, .framer-SR4X0 .framer-10wl8gz, .framer-SR4X0 .framer-9r4llh, .framer-SR4X0 .framer-170pgiw, .framer-SR4X0 .framer-1ihshq9, .framer-SR4X0 .framer-1tvr4e5, .framer-SR4X0 .framer-o2regh, .framer-SR4X0 .framer-16qznr9, .framer-SR4X0 .framer-1w3u6zx, .framer-SR4X0 .framer-1n2hygl, .framer-SR4X0 .framer-yv5yqs, .framer-SR4X0 .framer-7q38z7, .framer-SR4X0 .framer-gmsvy0, .framer-SR4X0 .framer-14ujxzo, .framer-SR4X0 .framer-1rboels, .framer-SR4X0 .framer-1p3wtn5, .framer-SR4X0 .framer-16n4929, .framer-SR4X0 .framer-ue1djm, .framer-SR4X0 .framer-1ory8br { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-SR4X0 .framer-f000gl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-SR4X0 .framer-9vd7xp-container { flex: none; height: 463px; position: relative; width: 830px; }\",\".framer-SR4X0 .framer-1k857tp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; left: 0px; overflow: hidden; padding: 0px; pointer-events: none; position: absolute; top: 0px; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-SR4X0 .framer-wzcas5-container { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); mix-blend-mode: overlay; opacity: 0.2; pointer-events: none; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 1; }\",\".framer-SR4X0 .framer-xwl4jx { background: linear-gradient(0deg, var(--token-8707b53d-27ff-43c8-865d-28b7af693153, #dcd6fc) 8%, rgba(220, 215, 252, 0.66) 48.81228885135134%, var(--token-8707b53d-27ff-43c8-865d-28b7af693153, rgb(220, 214, 252)) 100%); flex: 1 0 0px; height: 100%; overflow: visible; pointer-events: none; position: relative; width: 1px; z-index: 2; }\",\".framer-SR4X0 .framer-1gtz0f7 { flex: none; height: 100%; left: 0px; mix-blend-mode: multiply; overflow: visible; pointer-events: none; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-SR4X0 .framer-1cojojm, .framer-SR4X0 .framer-1wqhvrt, .framer-SR4X0 .framer-4mkwby { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-SR4X0 .framer-wegv3w { align-content: center; align-items: center; background-color: var(--token-01422742-084b-4eb0-8b74-448cfd7ecfe0, #ffffff); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 1000px; overflow: hidden; padding: 285px 48px 48px 48px; position: relative; width: 100%; }\",\".framer-SR4X0 .framer-qkjgjo, .framer-SR4X0 .framer-1qq67a0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 829px; z-index: 1; }\",\".framer-SR4X0 .framer-aljuv7, .framer-SR4X0 .framer-qb8jap, .framer-SR4X0 .framer-w2gmoq { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-SR4X0 .framer-navy34, .framer-SR4X0 .framer-4n16lb, .framer-SR4X0 .framer-qxsvwk, .framer-SR4X0 .framer-yypdki { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-SR4X0 .framer-1td3qbu, .framer-SR4X0 .framer-1r9rwtr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-SR4X0 .framer-w865fb, .framer-SR4X0 .framer-tdouot, .framer-SR4X0 .framer-1kolegi, .framer-SR4X0 .framer-1iplp9q, .framer-SR4X0 .framer-l5h7s4, .framer-SR4X0 .framer-hv96nw { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-SR4X0 .framer-110a4ia, .framer-SR4X0 .framer-12bb6jj { flex: none; height: 78px; position: relative; width: 36px; }\",\".framer-SR4X0 .framer-14xiujj, .framer-SR4X0 .framer-y4l0aa { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 79px); position: relative; width: 79px; }\",\".framer-SR4X0 .framer-vhne50 { flex: none; height: 78px; position: relative; width: 48px; }\",\".framer-SR4X0 .framer-1q0qcb9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: 600px; justify-content: flex-end; overflow: hidden; padding: 40px; position: relative; width: 100%; }\",\".framer-SR4X0 .framer-9zunr9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; max-width: 650px; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-SR4X0 .framer-1sc47lv { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-SR4X0 .framer-29dmeo { background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.86) 75%); flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; pointer-events: none; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 1; }\",\".framer-SR4X0 .framer-1foqcio { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 1000px; overflow: hidden; padding: 48px 48px 130px 48px; position: relative; width: 100%; }\",\".framer-SR4X0 .framer-1u90s8c, .framer-SR4X0 .framer-7ywasu { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-SR4X0 .framer-b2huos { display: grid; flex: none; gap: 16px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-SR4X0 .framer-1hmjbve, .framer-SR4X0 .framer-134a9td, .framer-SR4X0 .framer-1pckeb2, .framer-SR4X0 .framer-uv23sz { align-content: center; align-items: center; align-self: start; background-color: var(--token-01422742-084b-4eb0-8b74-448cfd7ecfe0, #ffffff); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 0.6021873017743928px 3.010936508871964px -0.8333333333333333px rgba(0, 0, 0, 0.03), 0px 2.288533303243457px 11.442666516217285px -1.6666666666666665px rgba(0, 0, 0, 0.03), 0px 10px 50px -2.5px rgba(0, 0, 0, 0.03); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 100%; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 24px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-SR4X0 .framer-17nuxuo-container, .framer-SR4X0 .framer-1se1mua-container, .framer-SR4X0 .framer-1v2wj76-container, .framer-SR4X0 .framer-9c69lr-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 53px); position: relative; width: 50px; }\",\".framer-SR4X0 .framer-15nydpe, .framer-SR4X0 .framer-ncpw0g, .framer-SR4X0 .framer-cb4i64, .framer-SR4X0 .framer-weq4fm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-SR4X0 .framer-si4xoz-container, .framer-SR4X0 .framer-dbianh-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-SR4X0 .framer-30j7rc { align-content: center; align-items: center; background-color: var(--token-01422742-084b-4eb0-8b74-448cfd7ecfe0, #ffffff); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 1000px; overflow: hidden; padding: 96px 48px 48px 48px; position: relative; width: 100%; }\",\".framer-SR4X0 .framer-6sxwzf { aspect-ratio: 0.6123499142367067 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 78px); position: relative; width: 48px; }\",\".framer-SR4X0 .framer-qbehh2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1000px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-SR4X0 .framer-bo1cfk { align-content: flex-start; align-items: flex-start; background-color: var(--token-01422742-084b-4eb0-8b74-448cfd7ecfe0, #ffffff); display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 96px 48px 96px 48px; position: relative; width: 1px; }\",\".framer-SR4X0 .framer-10y8mwp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-SR4X0 .framer-1u59ng3 { display: grid; flex: none; gap: 24px; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(50px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-SR4X0 .framer-hqvg2h { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; justify-self: start; padding: 16px; position: relative; width: 100%; }\",\".framer-SR4X0 .framer-1b9grwf { 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; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-SR4X0 .framer-1iq3zm1 { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: 221px; position: relative; text-decoration: none; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-SR4X0.framer-1x891tc, .framer-SR4X0 .framer-xsdbsr, .framer-SR4X0 .framer-xfjlbb, .framer-SR4X0 .framer-1ts4qe, .framer-SR4X0 .framer-9o0hwy, .framer-SR4X0 .framer-f000gl, .framer-SR4X0 .framer-1k857tp, .framer-SR4X0 .framer-1cojojm, .framer-SR4X0 .framer-wegv3w, .framer-SR4X0 .framer-qkjgjo, .framer-SR4X0 .framer-aljuv7, .framer-SR4X0 .framer-1wqhvrt, .framer-SR4X0 .framer-1td3qbu, .framer-SR4X0 .framer-w865fb, .framer-SR4X0 .framer-tdouot, .framer-SR4X0 .framer-1kolegi, .framer-SR4X0 .framer-1q0qcb9, .framer-SR4X0 .framer-9zunr9, .framer-SR4X0 .framer-1foqcio, .framer-SR4X0 .framer-1u90s8c, .framer-SR4X0 .framer-1hmjbve, .framer-SR4X0 .framer-15nydpe, .framer-SR4X0 .framer-134a9td, .framer-SR4X0 .framer-ncpw0g, .framer-SR4X0 .framer-1pckeb2, .framer-SR4X0 .framer-cb4i64, .framer-SR4X0 .framer-uv23sz, .framer-SR4X0 .framer-weq4fm, .framer-SR4X0 .framer-30j7rc, .framer-SR4X0 .framer-1qq67a0, .framer-SR4X0 .framer-qb8jap, .framer-SR4X0 .framer-4mkwby, .framer-SR4X0 .framer-1r9rwtr, .framer-SR4X0 .framer-1iplp9q, .framer-SR4X0 .framer-l5h7s4, .framer-SR4X0 .framer-hv96nw, .framer-SR4X0 .framer-qbehh2, .framer-SR4X0 .framer-bo1cfk, .framer-SR4X0 .framer-7ywasu, .framer-SR4X0 .framer-10y8mwp, .framer-SR4X0 .framer-hqvg2h, .framer-SR4X0 .framer-1b9grwf, .framer-SR4X0 .framer-w2gmoq { gap: 0px; } .framer-SR4X0.framer-1x891tc > *, .framer-SR4X0 .framer-1cojojm > *, .framer-SR4X0 .framer-1wqhvrt > *, .framer-SR4X0 .framer-4mkwby > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-SR4X0.framer-1x891tc > :first-child, .framer-SR4X0 .framer-xsdbsr > :first-child, .framer-SR4X0 .framer-1ts4qe > :first-child, .framer-SR4X0 .framer-9o0hwy > :first-child, .framer-SR4X0 .framer-1cojojm > :first-child, .framer-SR4X0 .framer-qkjgjo > :first-child, .framer-SR4X0 .framer-aljuv7 > :first-child, .framer-SR4X0 .framer-1wqhvrt > :first-child, .framer-SR4X0 .framer-w865fb > :first-child, .framer-SR4X0 .framer-tdouot > :first-child, .framer-SR4X0 .framer-1kolegi > :first-child, .framer-SR4X0 .framer-1q0qcb9 > :first-child, .framer-SR4X0 .framer-9zunr9 > :first-child, .framer-SR4X0 .framer-1u90s8c > :first-child, .framer-SR4X0 .framer-1hmjbve > :first-child, .framer-SR4X0 .framer-15nydpe > :first-child, .framer-SR4X0 .framer-134a9td > :first-child, .framer-SR4X0 .framer-ncpw0g > :first-child, .framer-SR4X0 .framer-1pckeb2 > :first-child, .framer-SR4X0 .framer-cb4i64 > :first-child, .framer-SR4X0 .framer-uv23sz > :first-child, .framer-SR4X0 .framer-weq4fm > :first-child, .framer-SR4X0 .framer-1qq67a0 > :first-child, .framer-SR4X0 .framer-qb8jap > :first-child, .framer-SR4X0 .framer-4mkwby > :first-child, .framer-SR4X0 .framer-1iplp9q > :first-child, .framer-SR4X0 .framer-l5h7s4 > :first-child, .framer-SR4X0 .framer-hv96nw > :first-child, .framer-SR4X0 .framer-7ywasu > :first-child, .framer-SR4X0 .framer-10y8mwp > :first-child, .framer-SR4X0 .framer-1b9grwf > :first-child, .framer-SR4X0 .framer-w2gmoq > :first-child { margin-top: 0px; } .framer-SR4X0.framer-1x891tc > :last-child, .framer-SR4X0 .framer-xsdbsr > :last-child, .framer-SR4X0 .framer-1ts4qe > :last-child, .framer-SR4X0 .framer-9o0hwy > :last-child, .framer-SR4X0 .framer-1cojojm > :last-child, .framer-SR4X0 .framer-qkjgjo > :last-child, .framer-SR4X0 .framer-aljuv7 > :last-child, .framer-SR4X0 .framer-1wqhvrt > :last-child, .framer-SR4X0 .framer-w865fb > :last-child, .framer-SR4X0 .framer-tdouot > :last-child, .framer-SR4X0 .framer-1kolegi > :last-child, .framer-SR4X0 .framer-1q0qcb9 > :last-child, .framer-SR4X0 .framer-9zunr9 > :last-child, .framer-SR4X0 .framer-1u90s8c > :last-child, .framer-SR4X0 .framer-1hmjbve > :last-child, .framer-SR4X0 .framer-15nydpe > :last-child, .framer-SR4X0 .framer-134a9td > :last-child, .framer-SR4X0 .framer-ncpw0g > :last-child, .framer-SR4X0 .framer-1pckeb2 > :last-child, .framer-SR4X0 .framer-cb4i64 > :last-child, .framer-SR4X0 .framer-uv23sz > :last-child, .framer-SR4X0 .framer-weq4fm > :last-child, .framer-SR4X0 .framer-1qq67a0 > :last-child, .framer-SR4X0 .framer-qb8jap > :last-child, .framer-SR4X0 .framer-4mkwby > :last-child, .framer-SR4X0 .framer-1iplp9q > :last-child, .framer-SR4X0 .framer-l5h7s4 > :last-child, .framer-SR4X0 .framer-hv96nw > :last-child, .framer-SR4X0 .framer-7ywasu > :last-child, .framer-SR4X0 .framer-10y8mwp > :last-child, .framer-SR4X0 .framer-1b9grwf > :last-child, .framer-SR4X0 .framer-w2gmoq > :last-child { margin-bottom: 0px; } .framer-SR4X0 .framer-xsdbsr > *, .framer-SR4X0 .framer-9o0hwy > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-SR4X0 .framer-xfjlbb > * { margin: 0px; margin-left: calc(64px / 2); margin-right: calc(64px / 2); } .framer-SR4X0 .framer-xfjlbb > :first-child, .framer-SR4X0 .framer-f000gl > :first-child, .framer-SR4X0 .framer-1k857tp > :first-child, .framer-SR4X0 .framer-wegv3w > :first-child, .framer-SR4X0 .framer-1td3qbu > :first-child, .framer-SR4X0 .framer-1foqcio > :first-child, .framer-SR4X0 .framer-30j7rc > :first-child, .framer-SR4X0 .framer-1r9rwtr > :first-child, .framer-SR4X0 .framer-qbehh2 > :first-child, .framer-SR4X0 .framer-bo1cfk > :first-child, .framer-SR4X0 .framer-hqvg2h > :first-child { margin-left: 0px; } .framer-SR4X0 .framer-xfjlbb > :last-child, .framer-SR4X0 .framer-f000gl > :last-child, .framer-SR4X0 .framer-1k857tp > :last-child, .framer-SR4X0 .framer-wegv3w > :last-child, .framer-SR4X0 .framer-1td3qbu > :last-child, .framer-SR4X0 .framer-1foqcio > :last-child, .framer-SR4X0 .framer-30j7rc > :last-child, .framer-SR4X0 .framer-1r9rwtr > :last-child, .framer-SR4X0 .framer-qbehh2 > :last-child, .framer-SR4X0 .framer-bo1cfk > :last-child, .framer-SR4X0 .framer-hqvg2h > :last-child { margin-right: 0px; } .framer-SR4X0 .framer-1ts4qe > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-SR4X0 .framer-f000gl > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-SR4X0 .framer-1k857tp > *, .framer-SR4X0 .framer-qbehh2 > *, .framer-SR4X0 .framer-hqvg2h > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-SR4X0 .framer-wegv3w > *, .framer-SR4X0 .framer-1foqcio > *, .framer-SR4X0 .framer-30j7rc > *, .framer-SR4X0 .framer-bo1cfk > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-SR4X0 .framer-qkjgjo > *, .framer-SR4X0 .framer-1q0qcb9 > *, .framer-SR4X0 .framer-1u90s8c > *, .framer-SR4X0 .framer-1qq67a0 > *, .framer-SR4X0 .framer-7ywasu > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-SR4X0 .framer-aljuv7 > *, .framer-SR4X0 .framer-9zunr9 > *, .framer-SR4X0 .framer-qb8jap > *, .framer-SR4X0 .framer-1b9grwf > *, .framer-SR4X0 .framer-w2gmoq > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-SR4X0 .framer-1td3qbu > *, .framer-SR4X0 .framer-1r9rwtr > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-SR4X0 .framer-w865fb > *, .framer-SR4X0 .framer-tdouot > *, .framer-SR4X0 .framer-1kolegi > *, .framer-SR4X0 .framer-15nydpe > *, .framer-SR4X0 .framer-ncpw0g > *, .framer-SR4X0 .framer-cb4i64 > *, .framer-SR4X0 .framer-weq4fm > *, .framer-SR4X0 .framer-1iplp9q > *, .framer-SR4X0 .framer-l5h7s4 > *, .framer-SR4X0 .framer-hv96nw > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-SR4X0 .framer-1hmjbve > *, .framer-SR4X0 .framer-134a9td > *, .framer-SR4X0 .framer-1pckeb2 > *, .framer-SR4X0 .framer-uv23sz > *, .framer-SR4X0 .framer-10y8mwp > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,\"@media (min-width: 810px) and (max-width: 1199px) { .framer-SR4X0.framer-1x891tc { width: 810px; } .framer-SR4X0 .framer-xsdbsr { height: min-content; } .framer-SR4X0 .framer-xfjlbb { flex-direction: column; gap: 32px; height: 710px; justify-content: flex-start; } .framer-SR4X0 .framer-1ts4qe { height: min-content; order: 0; position: sticky; top: 0px; width: 100%; z-index: 1; } .framer-SR4X0 .framer-9o0hwy, .framer-SR4X0 .framer-1acte53-container { order: 0; } .framer-SR4X0 .framer-ujofw { width: 722px; } .framer-SR4X0 .framer-1s4axc4-container { order: 1; } .framer-SR4X0 .framer-9vd7xp-container { aspect-ratio: 1.777301927194861 / 1; height: var(--framer-aspect-ratio-supported, 402px); order: 1; width: 100%; } .framer-SR4X0 .framer-1k857tp { height: 800px; } .framer-SR4X0 .framer-wegv3w { padding: 220px 48px 48px 48px; } .framer-SR4X0 .framer-qkjgjo, .framer-SR4X0 .framer-1qq67a0 { flex: 1 0 0px; width: 1px; } .framer-SR4X0 .framer-1foqcio { align-content: center; align-items: center; flex-direction: column; padding: 48px; } .framer-SR4X0 .framer-1u90s8c { flex: none; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-SR4X0 .framer-xfjlbb, .framer-SR4X0 .framer-1foqcio { gap: 0px; } .framer-SR4X0 .framer-xfjlbb > *, .framer-SR4X0 .framer-1foqcio > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-SR4X0 .framer-xfjlbb > :first-child, .framer-SR4X0 .framer-1foqcio > :first-child { margin-top: 0px; } .framer-SR4X0 .framer-xfjlbb > :last-child, .framer-SR4X0 .framer-1foqcio > :last-child { margin-bottom: 0px; } }}\",\"@media (max-width: 809px) { .framer-SR4X0.framer-1x891tc { width: 390px; } .framer-SR4X0 .framer-xsdbsr { height: min-content; padding: 48px 16px 48px 16px; } .framer-SR4X0 .framer-xfjlbb { flex-direction: column; gap: 0px; } .framer-SR4X0 .framer-1ts4qe { gap: 48px; height: 652px; order: 0; width: 100%; } .framer-SR4X0 .framer-9o0hwy { order: 0; } .framer-SR4X0 .framer-f000gl, .framer-SR4X0 .framer-1td3qbu, .framer-SR4X0 .framer-1r9rwtr { flex-direction: column; } .framer-SR4X0 .framer-1acte53-container { order: 1; z-index: 1; } .framer-SR4X0 .framer-1s4axc4-container { order: 0; z-index: 1; } .framer-SR4X0 .framer-9vd7xp-container { aspect-ratio: 1.792656587473002 / 1; height: var(--framer-aspect-ratio-supported, 199px); order: 1; width: 100%; } .framer-SR4X0 .framer-wegv3w { flex-direction: column; padding: 110px 16px 48px 16px; } .framer-SR4X0 .framer-qkjgjo, .framer-SR4X0 .framer-1qq67a0 { width: 100%; } .framer-SR4X0 .framer-w865fb, .framer-SR4X0 .framer-tdouot, .framer-SR4X0 .framer-1kolegi, .framer-SR4X0 .framer-1u90s8c, .framer-SR4X0 .framer-1iplp9q, .framer-SR4X0 .framer-l5h7s4, .framer-SR4X0 .framer-hv96nw { flex: none; width: 100%; } .framer-SR4X0 .framer-1q0qcb9 { padding: 60px 16px 60px 16px; } .framer-SR4X0 .framer-1foqcio { flex-direction: column; padding: 48px 16px 48px 16px; } .framer-SR4X0 .framer-b2huos { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; } .framer-SR4X0 .framer-1hmjbve, .framer-SR4X0 .framer-134a9td, .framer-SR4X0 .framer-1pckeb2, .framer-SR4X0 .framer-uv23sz { align-self: unset; height: min-content; } .framer-SR4X0 .framer-30j7rc { flex-direction: column; padding: 96px 16px 48px 16px; } .framer-SR4X0 .framer-bo1cfk { padding: 64px 16px 64px 16px; } .framer-SR4X0 .framer-1u59ng3 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; } .framer-SR4X0 .framer-hqvg2h { align-self: unset; padding: 0px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-SR4X0 .framer-xfjlbb, .framer-SR4X0 .framer-1ts4qe, .framer-SR4X0 .framer-f000gl, .framer-SR4X0 .framer-wegv3w, .framer-SR4X0 .framer-1td3qbu, .framer-SR4X0 .framer-1foqcio, .framer-SR4X0 .framer-b2huos, .framer-SR4X0 .framer-30j7rc, .framer-SR4X0 .framer-1r9rwtr, .framer-SR4X0 .framer-1u59ng3 { gap: 0px; } .framer-SR4X0 .framer-xfjlbb > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-SR4X0 .framer-xfjlbb > :first-child, .framer-SR4X0 .framer-1ts4qe > :first-child, .framer-SR4X0 .framer-f000gl > :first-child, .framer-SR4X0 .framer-wegv3w > :first-child, .framer-SR4X0 .framer-1td3qbu > :first-child, .framer-SR4X0 .framer-1foqcio > :first-child, .framer-SR4X0 .framer-b2huos > :first-child, .framer-SR4X0 .framer-30j7rc > :first-child, .framer-SR4X0 .framer-1r9rwtr > :first-child, .framer-SR4X0 .framer-1u59ng3 > :first-child { margin-top: 0px; } .framer-SR4X0 .framer-xfjlbb > :last-child, .framer-SR4X0 .framer-1ts4qe > :last-child, .framer-SR4X0 .framer-f000gl > :last-child, .framer-SR4X0 .framer-wegv3w > :last-child, .framer-SR4X0 .framer-1td3qbu > :last-child, .framer-SR4X0 .framer-1foqcio > :last-child, .framer-SR4X0 .framer-b2huos > :last-child, .framer-SR4X0 .framer-30j7rc > :last-child, .framer-SR4X0 .framer-1r9rwtr > :last-child, .framer-SR4X0 .framer-1u59ng3 > :last-child { margin-bottom: 0px; } .framer-SR4X0 .framer-1ts4qe > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-SR4X0 .framer-f000gl > *, .framer-SR4X0 .framer-b2huos > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-SR4X0 .framer-wegv3w > *, .framer-SR4X0 .framer-1foqcio > *, .framer-SR4X0 .framer-30j7rc > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-SR4X0 .framer-1td3qbu > *, .framer-SR4X0 .framer-1r9rwtr > *, .framer-SR4X0 .framer-1u59ng3 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6331\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"C1HoLIOMu\":{\"layout\":[\"fixed\",\"auto\"]},\"ZjeJSByB4\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"rwj2C6We3\":{\"pattern\":\":rwj2C6We3\",\"name\":\"content\"},\"roBFlgog6\":{\"pattern\":\":roBFlgog6\",\"name\":\"solution\"},\"nJr7POQ_P\":{\"pattern\":\":nJr7POQ_P\",\"name\":\"content\"},\"x412RiglZ\":{\"pattern\":\":x412RiglZ\",\"name\":\"solution\"},\"hOqlmL08_\":{\"pattern\":\":hOqlmL08_\",\"name\":\"content\"}}\n * @framerResponsiveScreen\n */const FramerxH9Z0TRDV=withCSS(Component,css,\"framer-SR4X0\");export default FramerxH9Z0TRDV;FramerxH9Z0TRDV.displayName=\"Home Final\";FramerxH9Z0TRDV.defaultProps={height:6331,width:1200};addFonts(FramerxH9Z0TRDV,[{explicitInter:true,fonts:[{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwARZthS2f3ZGMZpg.woff2\",weight:\"700\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAC5thS2f3ZGMZpg.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAopxhS2f3ZGMZpg.woff2\",weight:\"400\"},{family:\"DM Sans\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat-JDW32RmYJpso5.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"}]},...HeaderFonts,...LeapLogoFonts,...ButtonFonts,...MainVideoFonts,...NoiseFonts,...PhosphorFonts,...AppSectionFonts,...FooterFonts,...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\":\"FramerxH9Z0TRDV\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"C1HoLIOMu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZjeJSByB4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerScrollSections\":\"{\\\"rwj2C6We3\\\":{\\\"pattern\\\":\\\":rwj2C6We3\\\",\\\"name\\\":\\\"content\\\"},\\\"roBFlgog6\\\":{\\\"pattern\\\":\\\":roBFlgog6\\\",\\\"name\\\":\\\"solution\\\"},\\\"nJr7POQ_P\\\":{\\\"pattern\\\":\\\":nJr7POQ_P\\\",\\\"name\\\":\\\"content\\\"},\\\"x412RiglZ\\\":{\\\"pattern\\\":\\\":x412RiglZ\\\",\\\"name\\\":\\\"solution\\\"},\\\"hOqlmL08_\\\":{\\\"pattern\\\":\\\":hOqlmL08_\\\",\\\"name\\\":\\\"content\\\"}}\",\"framerIntrinsicWidth\":\"1200\",\"framerResponsiveScreen\":\"\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicHeight\":\"6331\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["PlayOptions", "ThumbnailOptions", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "title", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "searchParams", "iframeProps", "u", "wrapperStyle", "videoStyle", "getThumbnailURL", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "res", "pre", "ext", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "YouTubeFonts", "getFonts", "Youtube", "PhosphorFonts", "Icon", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "text", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "XWKQl3HZh", "XTPYEZXjw", "T1lRT1OOIcO7t6xdD4", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1fbk34b", "args", "onTapnvhw3q", "onTap1r6v68d", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "Link", "css", "FramerJF1mHoxDp", "withCSS", "JF1mHoxDp_default", "addPropertyControls", "ControlType", "addFonts", "HeaderFonts", "getFonts", "lP038Dv06_default", "ContainerWithFX", "withFX", "Container", "LeapLogoFonts", "TDdW_D4U9_default", "RichTextWithFX", "RichText2", "ButtonFonts", "cO7t6xdD4_default", "MotionDivWithFX", "motion", "MainVideoFonts", "JF1mHoxDp_default", "NoiseFonts", "Noise", "ImageWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Image2", "MotionDivWithOptimizedAppearEffect", "ImageWithFX", "PhosphorFonts", "Icon", "AppSectionFonts", "Nj_sJLLhB_default", "FooterFonts", "qNfwVkhXY_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "transformTemplate1", "_", "t", "animation2", "animation3", "animation4", "animation5", "animation6", "animation7", "transition2", "animation8", "animation9", "animation10", "animation11", "animation12", "animation13", "isSet", "value", "toResponsiveImage", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "ARSqiJGiDL0saqF3pg", "aD5O2P7NiL0saqF3pg", "FrSThAp4cL0saqF3pg", "U3A9MgObmL0saqF3pg", "idL0saqF3pg", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "ref1", "router", "useRouter", "isDisplayed", "elementId", "useRouteElementId", "elementId1", "ref2", "elementId2", "ref3", "elementId3", "ref4", "elementId4", "ref5", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "PropertyOverrides2", "x", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "getLoadingLazyAtYPosition", "SVG", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "ChildrenCanSuspend", "Jyqvzinc3_default", "sHry3QQZp_default", "collection", "paginationInfo", "loadMore", "l", "index", "visible", "PathVariablesContext", "Link", "resolvedLinks5", "css", "FramerxH9Z0TRDV", "withCSS", "xH9Z0TRDV_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
