{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js", "ssg:https://framerusercontent.com/modules/ejqq6RSYiNFWO5u7dfO7/c6zz4WkgeZrfnU7CBRYP/gsRhsfTK8.js", "ssg:https://framerusercontent.com/modules/LOPHc0mv4VSINlUpY7XV/rKtQodpLj46PHj096K6T/O9GsTobzh.js", "ssg:https://framerusercontent.com/modules/aNTFhtgLgSXajceEFM2H/wx4qilffgYVFdaCNEQwc/sTiL9M9B_.js", "ssg:https://framerusercontent.com/modules/iRTshVFGyHnswSUu3D7C/vrgWLah6Vvvwi1MRuq32/K3blbqL6d.js", "ssg:https://framerusercontent.com/modules/uegNDS7ZJJwtAR1YPDVM/pjpA9tcGxVMPLfJe6gMr/X0kElRguY.js", "ssg:https://framerusercontent.com/modules/0RWTHQSTkHYj188co7wS/lzxnrQkCB5MamRHnS7ol/FEglhfX_A.js", "ssg:https://framerusercontent.com/modules/4SmQdg0mn3Z7CfR2b72b/xc4oj9nPbG19HoxCLJum/jtpOaLYZX.js", "ssg:https://framerusercontent.com/modules/j1oo32hXXjVMYtSUcGcB/U46JqKFLFmvoemrbRZ0m/Sgqu1GegR.js", "ssg:https://framerusercontent.com/modules/3rNt3cIR0ECM2yXW3Xlw/aEQsLLfDUbFsrl58DOXT/Y3_vSTLGd.js", "ssg:https://framerusercontent.com/modules/jxZoaOOdm1DGLyS3DtCH/eiv9moptyHYEyqTerXCp/xNglRLpPp.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget,RenderTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius,useRenderTarget}from\"https://framerusercontent.com/modules/G4IfyjvwmaeSBpdb4TWu/OIjZRBmWDcIE2B6qgG1j/index.js\";// https://framer.com/m/framer/default-utils.js@^0.45.0\nimport{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));const defaultVideo=\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\";// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const isPlayingRef=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{// default props\nsrcType=\"URL\",srcUrl,srcFile=\"\",posterEnabled=false,controls=false,playing=true,loop=true,muted=true,playsinline=true,restartOnEnter=false,objectFit=\"cover\",backgroundColor=\"rgba(0,0,0,0)\",radius=0,volume=25,startTime:startTimeProp=0,poster,playing:playingProp,progress,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const renderTarget=useRenderTarget();const isStaticRenderer=isOnCanvas||renderTarget===RenderTarget.export;const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isStaticRenderer won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isStaticRenderer?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isStaticRenderer?true:useInView(videoRef);const isCloseToViewport=isStaticRenderer?false:useInView(videoRef,{margin:\"10%\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress,isPlaying}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isStaticRenderer)return;if(autoplayBehavior===\"on-viewport\")return;if(playingProp)play();else pause();},[autoplayBehavior,playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isStaticRenderer)return;// this also explicitly retries playing for videos that play on-mount, which could fail if they're not muted for example\nif(isInViewport&&playingProp&&autoplayBehavior!==\"no-autoplay\")play();if(autoplayBehavior!==\"on-viewport\")return;pause();},[autoplayBehavior,isInViewport,playingProp]);useEffect(()=>{if(!isOnCanvas||poster||posterEnabled||startTime||!videoRef.current)return;// forces a poster to show up when the video is in an iframe; this is needed when `poster` changes\nvideoRef.current.currentTime=.01;},[posterEnabled,poster,startTime]);/**\n     * The Video component has some effects that sync the video element with props\n     * like `startTime`, `progress`, etc. React calls these effects whenever these\n     * props change. However, it also calls them on the first mount, and this is\n     * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n     * the video was hydrated, the initial `useEffect` call will reset the video\n     * state. To avoid this, we use this flag.\n     */const isMountedAndReadyForProgressChanges=useRef(false);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges.current){isMountedAndReadyForProgressChanges.current=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress??0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue??0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime??0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isStaticRenderer\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume??0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime??0)*.01);if(// when the component updates (e.g. only srcFile/url changes), and the video was already playing, keep playing\nisPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport)play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked?.(e),onPause:e=>onPause?.(e),onPlay:e=>onPlay?.(e),onEnded:e=>onEnd?.(e),autoPlay:isPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport,preload:isPlaying.current?\"auto\":isStaticRenderer&&!poster?\"metadata\":autoplayBehavior!==\"on-mount\"&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled&&!srcFile&&srcUrl===defaultVideo?\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\":posterEnabled&&poster?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isStaticRenderer?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",defaultValue:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",hidden(props){return props.srcType===\"Upload\";}},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},...borderRadiusControl,posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\"Image\",hidden:({posterEnabled})=>!posterEnabled,description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted,defaultValue:25},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"112\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (56d1180)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import{Icon as Phosphor1}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";const PhosphorFonts=getFonts(Phosphor);const Phosphor1Controls=getPropertyControls(Phosphor1);const cycleOrder=[\"imidm18zF\",\"nRPpzEgBT\"];const serializationHash=\"framer-BBfaf\";const variantClassNames={imidm18zF:\"framer-v-1sgongn\",nRPpzEgBT:\"framer-v-154yd7g\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"imidm18zF\",\"Variant 2\":\"nRPpzEgBT\"};const getProps=({color,height,icon,id,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2;return{...props,ByFhoK_Ir:(_ref=icon!==null&&icon!==void 0?icon:props.ByFhoK_Ir)!==null&&_ref!==void 0?_ref:\"House\",Fn98ATeSb:(_ref1=color!==null&&color!==void 0?color:props.Fn98ATeSb)!==null&&_ref1!==void 0?_ref1:\"var(--token-e67cab62-f01f-4ef5-bf80-b623efaf7ee2, rgb(226, 226, 226))\",variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"imidm18zF\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,Fn98ATeSb,ByFhoK_Ir,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"imidm18zF\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1sgongn\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"imidm18zF\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(52, 50, 49)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",background:\"radial-gradient(287.6615331937709% 61.538461538461554% at 49.99999571350915% -2.282618538629322e-11%, rgba(143, 142, 141, 0.5) 0%, rgba(36, 35, 35, 0.5) 100%)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"0px 8px 46.599998474121094px 2px rgba(32, 31, 31, 1), 0px 4px 4px 0px rgba(0, 0, 0, 0.5)\",...style},variants:{nRPpzEgBT:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100}},...addPropertyOverrides({nRPpzEgBT:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-inj789\",\"data-framer-name\":\"Inner Container\",layoutDependency:layoutDependency,layoutId:\"cQgflQbBx\",style:{background:'radial-gradient(25% 18.870110809803013% at 49.99996793939629% -7.039230309757727e-11%, rgb(255, 255, 255) 0%, var(--token-6baedbc3-30f2-40bc-9f77-86e02fea1a25, rgb(52, 50, 50)) /* {\"name\":\"Mono/2\"} */ 100%)',borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},variants:{nRPpzEgBT:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-b6v22t\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"H_2yF42zU\",style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:7,borderBottomRightRadius:7,borderTopLeftRadius:7,borderTopRightRadius:7,boxShadow:\"0px 8px 46.599998474121094px 2px rgba(32, 31, 31, 1), 0px 4px 4px 0px rgba(0, 0, 0, 0.5)\"},variants:{nRPpzEgBT:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-w6gmf-container\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"e6HVqI_8g-container\",name:\"Icon\",children:/*#__PURE__*/_jsx(Phosphor,{color:Fn98ATeSb,height:\"100%\",iconSearch:\"House\",iconSelection:ByFhoK_Ir,id:\"e6HVqI_8g\",layoutId:\"e6HVqI_8g\",mirrored:false,name:\"Icon\",selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-BBfaf.framer-u8pm32, .framer-BBfaf .framer-u8pm32 { display: block; }\",\".framer-BBfaf.framer-1sgongn { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: 48px; justify-content: center; overflow: hidden; padding: 4px; position: relative; width: 48px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BBfaf .framer-inj789 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: center; overflow: hidden; padding: 1px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BBfaf .framer-b6v22t { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BBfaf .framer-w6gmf-container { flex: none; height: 20px; position: relative; width: 16px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-BBfaf.framer-1sgongn, .framer-BBfaf .framer-inj789, .framer-BBfaf .framer-b6v22t { gap: 0px; } .framer-BBfaf.framer-1sgongn > *, .framer-BBfaf .framer-b6v22t > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-BBfaf.framer-1sgongn > :first-child, .framer-BBfaf .framer-inj789 > :first-child, .framer-BBfaf .framer-b6v22t > :first-child { margin-left: 0px; } .framer-BBfaf.framer-1sgongn > :last-child, .framer-BBfaf .framer-inj789 > :last-child, .framer-BBfaf .framer-b6v22t > :last-child { margin-right: 0px; } .framer-BBfaf .framer-inj789 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",'.framer-BBfaf[data-border=\"true\"]::after, .framer-BBfaf [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 48\n * @framerIntrinsicWidth 48\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"nRPpzEgBT\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"Fn98ATeSb\":\"color\",\"ByFhoK_Ir\":\"icon\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramergsRhsfTK8=withCSS(Component,css,\"framer-BBfaf\");export default FramergsRhsfTK8;FramergsRhsfTK8.displayName=\"Buttons/Icon\";FramergsRhsfTK8.defaultProps={height:48,width:48};addPropertyControls(FramergsRhsfTK8,{variant:{options:[\"imidm18zF\",\"nRPpzEgBT\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},Fn98ATeSb:{defaultValue:'var(--token-e67cab62-f01f-4ef5-bf80-b623efaf7ee2, rgb(226, 226, 226)) /* {\"name\":\"Mono/8\"} */',title:\"Color\",type:ControlType.Color},ByFhoK_Ir:(Phosphor1Controls===null||Phosphor1Controls===void 0?void 0:Phosphor1Controls[\"iconSelection\"])&&{...Phosphor1Controls[\"iconSelection\"],defaultValue:\"House\",description:undefined,hidden:undefined,title:\"Icon\"}});addFonts(FramergsRhsfTK8,[{explicitInter:true,fonts:[]},...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramergsRhsfTK8\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"48\",\"framerIntrinsicWidth\":\"48\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"Fn98ATeSb\\\":\\\"color\\\",\\\"ByFhoK_Ir\\\":\\\"icon\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"nRPpzEgBT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./gsRhsfTK8.map", "// Generated by Framer (ab692b1)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Montserrat-regular\",\"FS;Montserrat-bold\",\"FS;Montserrat-bold italic\",\"FS;Montserrat-italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Montserrat\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NZ67QOF3FXYLOR27ABJOZVKKBKNRMKMF/EHBFE55HTLOOJHTZSLD54GSL3EBTAFNQ/DI2GHUWG3WKRXISSCTNDMTWKWZC25UIW.woff2\",weight:\"400\"},{family:\"Montserrat\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/KDZE2GHZ4MXZP7RVHASNN75AFABT2ZB2/G33WYZOWF5RLCYVGCMU5BFGBXH4DMKUK/SHZ3SDA4YUDBQPNRSIGO7XNSCQQUBDYR.woff2\",weight:\"700\"},{family:\"Montserrat\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/WVRVHC26IF7VQKSULH6U5DSAGCYOIAQ7/CPARYH2DVA55XB4ZSTA7WTMPVZAVMNA5/BOBO2BRVXZQHPXSPDS5WN3IZQ5SL56OZ.woff2\",weight:\"700\"},{family:\"Montserrat\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/CC6FT7O535LIU5P34T6V2W7R57LGKSDT/KUZZS4REMM64PV6S4GGM77HZQUVJPYU2/3ZPIFBJ6EZFOZSYT4ISIO7DHQQODA5IR.woff2\",weight:\"400\"}]}];export const css=['.framer-BFT8z .framer-styles-preset-1tocqif:not(.rich-text-wrapper), .framer-BFT8z .framer-styles-preset-1tocqif.rich-text-wrapper p { --framer-font-family: \"Montserrat\", \"Montserrat Placeholder\", sans-serif; --framer-font-family-bold: \"Montserrat\", \"Montserrat Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Montserrat\", \"Montserrat Placeholder\", sans-serif; --framer-font-family-italic: \"Montserrat\", \"Montserrat Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.5px; --framer-line-height: 1.5em; --framer-paragraph-spacing: 20px; --framer-text-alignment: center; --framer-text-color: var(--token-055ee7e2-7589-493d-8f06-30f52832c6d1, #eeeeee); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-BFT8z\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ab692b1)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Termina Test Bold\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Termina Test Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/7klCdu8DwdtRw6vldEiks6LJtnE.woff2\"}]}];export const css=['.framer-XT5LZ .framer-styles-preset-yct9du:not(.rich-text-wrapper), .framer-XT5LZ .framer-styles-preset-yct9du.rich-text-wrapper h4 { --framer-font-family: \"Termina Test Bold\", \"Termina Test Bold Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 17px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0.1em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: #f0f1f1; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: uppercase; }'];export const className=\"framer-XT5LZ\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ab692b1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/LOPHc0mv4VSINlUpY7XV/rKtQodpLj46PHj096K6T/O9GsTobzh.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/aNTFhtgLgSXajceEFM2H/wx4qilffgYVFdaCNEQwc/sTiL9M9B_.js\";const cycleOrder=[\"bA4BawRwr\",\"nF6mLv5VF\",\"wVNdQk33h\"];const serializationHash=\"framer-PPlKu\";const variantClassNames={bA4BawRwr:\"framer-v-1rxrruk\",nF6mLv5VF:\"framer-v-1yxm7z2\",wVNdQk33h:\"framer-v-1gn0o13\"};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={\"M / Center\":\"wVNdQk33h\",\"M / Left\":\"nF6mLv5VF\",\"S / Left\":\"bA4BawRwr\"};const getProps=({header,height,id,subtitle,width,...props})=>{return{...props,daHyFdJVA:header??props.daHyFdJVA??\"Generate, edit and transform workflows\",gYIduh5aF:subtitle??props.gYIduh5aF??\"Experience the enchanting magic of AI as it transforms data into insights.\",variant:humanReadableVariantMap[props.variant]??props.variant??\"bA4BawRwr\"};};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,daHyFdJVA,gYIduh5aF,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"bA4BawRwr\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1rxrruk\",className,classNames),\"data-framer-name\":\"S / Left\",layoutDependency:layoutDependency,layoutId:\"bA4BawRwr\",ref:refBinding,style:{...style},...addPropertyOverrides({nF6mLv5VF:{\"data-framer-name\":\"M / Left\"},wVNdQk33h:{\"data-framer-name\":\"M / Center\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-yct9du\",\"data-styles-preset\":\"sTiL9M9B_\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1eung3n, rgb(255, 255, 255))\"},children:\"Generate, edit and transform workflows\"})}),className:\"framer-y5qm2d\",\"data-framer-name\":\"Generate, edit and transform workflows\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"kEwB1jbUC\",style:{\"--extracted-1eung3n\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},text:daHyFdJVA,variants:{nF6mLv5VF:{\"--extracted-1eung3n\":\"var(--token-db6cbb3d-c62d-4ea4-a451-f621c9643547, rgb(255, 255, 255))\"},wVNdQk33h:{\"--extracted-1eung3n\":\"var(--token-db6cbb3d-c62d-4ea4-a451-f621c9643547, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({nF6mLv5VF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-yct9du\",\"data-styles-preset\":\"sTiL9M9B_\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-db6cbb3d-c62d-4ea4-a451-f621c9643547, rgb(255, 255, 255)))\"},children:\"Generate, edit and transform workflows\"})})},wVNdQk33h:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-yct9du\",\"data-styles-preset\":\"sTiL9M9B_\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-db6cbb3d-c62d-4ea4-a451-f621c9643547, rgb(255, 255, 255)))\"},children:\"Generate, edit and transform workflows\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1tocqif\",\"data-styles-preset\":\"O9GsTobzh\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Experience the enchanting magic of AI as it transforms data into insights.\"})}),className:\"framer-124i41u\",\"data-framer-name\":\"Experience the enchanting magic of AI as it transforms data into insights.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"fseNNXx4e\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},text:gYIduh5aF,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({wVNdQk33h:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1tocqif\",\"data-styles-preset\":\"O9GsTobzh\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Experience the enchanting magic of AI as it transforms data into insights.\"})})}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-PPlKu.framer-bgxix5, .framer-PPlKu .framer-bgxix5 { display: block; }\",\".framer-PPlKu.framer-1rxrruk { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 334px; }\",\".framer-PPlKu .framer-y5qm2d, .framer-PPlKu .framer-124i41u { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PPlKu.framer-1rxrruk { gap: 0px; } .framer-PPlKu.framer-1rxrruk > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-PPlKu.framer-1rxrruk > :first-child { margin-top: 0px; } .framer-PPlKu.framer-1rxrruk > :last-child { margin-bottom: 0px; } }\",\".framer-PPlKu.framer-v-1gn0o13.framer-1rxrruk { align-content: center; align-items: center; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 95\n * @framerIntrinsicWidth 334\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"nF6mLv5VF\":{\"layout\":[\"fixed\",\"auto\"]},\"wVNdQk33h\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"daHyFdJVA\":\"header\",\"gYIduh5aF\":\"subtitle\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerK3blbqL6d=withCSS(Component,css,\"framer-PPlKu\");export default FramerK3blbqL6d;FramerK3blbqL6d.displayName=\"Content\";FramerK3blbqL6d.defaultProps={height:95,width:334};addPropertyControls(FramerK3blbqL6d,{variant:{options:[\"bA4BawRwr\",\"nF6mLv5VF\",\"wVNdQk33h\"],optionTitles:[\"S / Left\",\"M / Left\",\"M / Center\"],title:\"Variant\",type:ControlType.Enum},daHyFdJVA:{defaultValue:\"Generate, edit and transform workflows\",displayTextArea:false,title:\"Header\",type:ControlType.String},gYIduh5aF:{defaultValue:\"Experience the enchanting magic of AI as it transforms data into insights.\",displayTextArea:true,title:\"Subtitle\",type:ControlType.String}});addFonts(FramerK3blbqL6d,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerK3blbqL6d\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"95\",\"framerVariables\":\"{\\\"daHyFdJVA\\\":\\\"header\\\",\\\"gYIduh5aF\\\":\\\"subtitle\\\"}\",\"framerIntrinsicWidth\":\"334\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nF6mLv5VF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wVNdQk33h\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./K3blbqL6d.map", "// Generated by Framer (ab692b1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import ButtonsIcon from\"https://framerusercontent.com/modules/ejqq6RSYiNFWO5u7dfO7/c6zz4WkgeZrfnU7CBRYP/gsRhsfTK8.js\";import Content from\"https://framerusercontent.com/modules/iRTshVFGyHnswSUu3D7C/vrgWLah6Vvvwi1MRuq32/K3blbqL6d.js\";const ButtonsIconFonts=getFonts(ButtonsIcon);const ContentFonts=getFonts(Content);const serializationHash=\"framer-J0RT0\";const variantClassNames={E3hTrM_Mm:\"framer-v-5iglnn\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,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 getProps=({header,height,id,subtitle,width,...props})=>{return{...props,hjN1y4eSN:header??props.hjN1y4eSN??\"Generate, edit and transform workflows\",uHoXD8OXR:subtitle??props.uHoXD8OXR??\"Experience the enchanting magic of AI as it transforms data into insights.\"};};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,hjN1y4eSN,uHoXD8OXR,josXl_DJ_,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"E3hTrM_Mm\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-5iglnn\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"E3hTrM_Mm\",ref:refBinding,style:{background:'radial-gradient(13% 18.870110809803013% at 49.99996793939629% -7.039230309757727e-11%, rgba(255, 255, 255, 0.5) 0%, var(--token-6baedbc3-30f2-40bc-9f77-86e02fea1a25, rgb(52, 50, 50)) /* {\"name\":\"Mono/2\"} */ 100%)',borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40,...style},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1psqpyv\",\"data-framer-name\":\"Inner Container\",layoutDependency:layoutDependency,layoutId:\"DEGzFcCwe\",style:{backgroundColor:\"var(--token-0d0dea3e-7cce-43bd-b7f0-0fc6732c7375, rgb(0, 0, 0))\",borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-yehnmm\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"IzQ4T1POF\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"48px\",y:(componentViewport?.y||0)+(1+((componentViewport?.height||210)-2-((componentViewport?.height||210)-2)*1)/2)+24+((((componentViewport?.height||210)-2)*1-48-(Math.max(0,(((componentViewport?.height||210)-2)*1-48-0)/1)*1+0))/2+0+0)+0+(0+0+(Math.max(0,(((componentViewport?.height||210)-2)*1-48-0)/1)*1-0-118)/1*0),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ll08mh-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"tJziFgnl0-container\",nodeId:\"tJziFgnl0\",rendersWithMotion:true,scopeId:\"X0kElRguY\",children:/*#__PURE__*/_jsx(ButtonsIcon,{ByFhoK_Ir:josXl_DJ_,Fn98ATeSb:\"var(--token-e67cab62-f01f-4ef5-bf80-b623efaf7ee2, rgb(226, 226, 226))\",height:\"100%\",id:\"tJziFgnl0\",layoutId:\"tJziFgnl0\",style:{height:\"100%\",width:\"100%\"},variant:\"nRPpzEgBT\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:70,width:`calc(max(${componentViewport?.width||\"100vw\"} - 2px, 1px) - 48px)`,y:(componentViewport?.y||0)+(1+((componentViewport?.height||210)-2-((componentViewport?.height||210)-2)*1)/2)+24+((((componentViewport?.height||210)-2)*1-48-(Math.max(0,(((componentViewport?.height||210)-2)*1-48-0)/1)*1+0))/2+0+0)+0+(0+48+(Math.max(0,(((componentViewport?.height||210)-2)*1-48-0)/1)*1-0-118)/1*1),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-v3xcjg-container\",layoutDependency:layoutDependency,layoutId:\"ckzqjlZK7-container\",nodeId:\"ckzqjlZK7\",rendersWithMotion:true,scopeId:\"X0kElRguY\",children:/*#__PURE__*/_jsx(Content,{daHyFdJVA:hjN1y4eSN,gYIduh5aF:uHoXD8OXR,height:\"100%\",id:\"ckzqjlZK7\",layoutId:\"ckzqjlZK7\",style:{width:\"100%\"},variant:\"bA4BawRwr\",width:\"100%\"})})})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-J0RT0.framer-mlhd74, .framer-J0RT0 .framer-mlhd74 { display: block; }\",\".framer-J0RT0.framer-5iglnn { align-content: center; align-items: center; cursor: default; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 210px; justify-content: center; overflow: hidden; padding: 1px; position: relative; width: 384px; will-change: var(--framer-will-change-override, transform); }\",\".framer-J0RT0 .framer-1psqpyv { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: 100%; justify-content: center; overflow: hidden; padding: 24px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-J0RT0 .framer-yehnmm { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 1px; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-J0RT0 .framer-1ll08mh-container { flex: none; height: 48px; position: relative; width: 48px; }\",\".framer-J0RT0 .framer-v3xcjg-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-J0RT0.framer-5iglnn, .framer-J0RT0 .framer-1psqpyv { gap: 0px; } .framer-J0RT0.framer-5iglnn > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-J0RT0.framer-5iglnn > :first-child { margin-left: 0px; } .framer-J0RT0.framer-5iglnn > :last-child { margin-right: 0px; } .framer-J0RT0 .framer-1psqpyv > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-J0RT0 .framer-1psqpyv > :first-child { margin-top: 0px; } .framer-J0RT0 .framer-1psqpyv > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 210\n * @framerIntrinsicWidth 384\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"hjN1y4eSN\":\"header\",\"uHoXD8OXR\":\"subtitle\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerX0kElRguY=withCSS(Component,css,\"framer-J0RT0\");export default FramerX0kElRguY;FramerX0kElRguY.displayName=\"Card/Feature\";FramerX0kElRguY.defaultProps={height:210,width:384};addPropertyControls(FramerX0kElRguY,{hjN1y4eSN:{defaultValue:\"Generate, edit and transform workflows\",displayTextArea:false,title:\"Header\",type:ControlType.String},uHoXD8OXR:{defaultValue:\"Experience the enchanting magic of AI as it transforms data into insights.\",displayTextArea:true,title:\"Subtitle\",type:ControlType.String}});addFonts(FramerX0kElRguY,[{explicitInter:true,fonts:[]},...ButtonsIconFonts,...ContentFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerX0kElRguY\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"210\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"384\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"hjN1y4eSN\\\":\\\"header\\\",\\\"uHoXD8OXR\\\":\\\"subtitle\\\"}\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (0c5492c)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-Bold\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/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\"},{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/mkY5Sgyq51ik0AMrSBwhm9DJg.woff2\",weight:\"900\"},{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/X5hj6qzcHUYv7h1390c8Rhm6550.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/gQhNpS3tN86g8RcVKYUUaKt2oMQ.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cugnVhSraaRyANCaUtI5FV17wk.woff2\",weight:\"900\"},{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/5HcVoGak8k5agFJSaKa4floXVu0.woff2\",weight:\"900\"},{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/jn4BtSPLlS0NDp1KiFAtFKiiY0o.woff2\",weight:\"900\"},{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/P2Bw01CtL0b9wqygO0sSVogWbo.woff2\",weight:\"900\"},{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/05KsVHGDmqXSBXM4yRZ65P8i0s.woff2\",weight:\"900\"},{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/ky8ovPukK4dJ1Pxq74qGhOqCYI.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/vvNSqIj42qeQ2bvCRBIWKHscrc.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/3ZmXbBKToJifDV9gwcifVd1tEY.woff2\",weight:\"900\"},{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/FNfhX3dt4ChuLJq2PwdlxHO7PU.woff2\",weight:\"900\"},{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/g0c8vEViiXNlKAgI4Ymmk3Ig.woff2\",weight:\"900\"},{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/efTfQcBJ53kM2pB1hezSZ3RDUFs.woff2\",weight:\"900\"},{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/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{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/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{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/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{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/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{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/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"}]}];export const css=['.framer-eCB8a .framer-styles-preset-hnhmgk:not(.rich-text-wrapper), .framer-eCB8a .framer-styles-preset-hnhmgk.rich-text-wrapper h3 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 26px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.04em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-eCB8a\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (56d1180)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Manrope-semibold\",\"FS;Manrope-bold\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Manrope\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/6U2SGH566NSNERG6RGEV3DSNEK7DL2RF/JRDYRKMSAW2H35IWEQIPL67HAJQ35MG5/JNU3GNMUBPWW6V6JTED3S27XL5HN7NM5.woff2\",weight:\"600\"},{family:\"Manrope\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NGBUP45ES3F7RD5XGKPEDJ6QEPO4TMOK/EXDVWJ2EDDVVV65UENMX33EDDYBX6OF7/6P4FPMFQH7CCC7RZ4UU4NKSGJ2RLF7V5.woff2\",weight:\"700\"}]}];export const css=['.framer-xV5Ek .framer-styles-preset-2e0pby:not(.rich-text-wrapper), .framer-xV5Ek .framer-styles-preset-2e0pby.rich-text-wrapper h2 { --framer-font-family: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-family-bold: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 48px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 600; --framer-font-weight-bold: 700; --framer-letter-spacing: -0.05em; --framer-line-height: 60px; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-db6cbb3d-c62d-4ea4-a451-f621c9643547, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-xV5Ek\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (0c5492c)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-Bold\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/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\"},{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/mkY5Sgyq51ik0AMrSBwhm9DJg.woff2\",weight:\"900\"},{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/X5hj6qzcHUYv7h1390c8Rhm6550.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/gQhNpS3tN86g8RcVKYUUaKt2oMQ.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cugnVhSraaRyANCaUtI5FV17wk.woff2\",weight:\"900\"},{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/5HcVoGak8k5agFJSaKa4floXVu0.woff2\",weight:\"900\"},{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/jn4BtSPLlS0NDp1KiFAtFKiiY0o.woff2\",weight:\"900\"},{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/P2Bw01CtL0b9wqygO0sSVogWbo.woff2\",weight:\"900\"},{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/05KsVHGDmqXSBXM4yRZ65P8i0s.woff2\",weight:\"900\"},{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/ky8ovPukK4dJ1Pxq74qGhOqCYI.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/vvNSqIj42qeQ2bvCRBIWKHscrc.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/3ZmXbBKToJifDV9gwcifVd1tEY.woff2\",weight:\"900\"},{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/FNfhX3dt4ChuLJq2PwdlxHO7PU.woff2\",weight:\"900\"},{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/g0c8vEViiXNlKAgI4Ymmk3Ig.woff2\",weight:\"900\"},{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/efTfQcBJ53kM2pB1hezSZ3RDUFs.woff2\",weight:\"900\"},{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/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{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/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{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/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{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/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{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/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"}]}];export const css=['.framer-QiWgt .framer-styles-preset-x3ttti:not(.rich-text-wrapper), .framer-QiWgt .framer-styles-preset-x3ttti.rich-text-wrapper h4 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 22px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.04em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-QiWgt\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (0c5492c)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-Bold\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/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\"},{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/mkY5Sgyq51ik0AMrSBwhm9DJg.woff2\",weight:\"900\"},{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/X5hj6qzcHUYv7h1390c8Rhm6550.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/gQhNpS3tN86g8RcVKYUUaKt2oMQ.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cugnVhSraaRyANCaUtI5FV17wk.woff2\",weight:\"900\"},{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/5HcVoGak8k5agFJSaKa4floXVu0.woff2\",weight:\"900\"},{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/jn4BtSPLlS0NDp1KiFAtFKiiY0o.woff2\",weight:\"900\"},{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/P2Bw01CtL0b9wqygO0sSVogWbo.woff2\",weight:\"900\"},{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/05KsVHGDmqXSBXM4yRZ65P8i0s.woff2\",weight:\"900\"},{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/ky8ovPukK4dJ1Pxq74qGhOqCYI.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/vvNSqIj42qeQ2bvCRBIWKHscrc.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/3ZmXbBKToJifDV9gwcifVd1tEY.woff2\",weight:\"900\"},{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/FNfhX3dt4ChuLJq2PwdlxHO7PU.woff2\",weight:\"900\"},{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/g0c8vEViiXNlKAgI4Ymmk3Ig.woff2\",weight:\"900\"},{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/efTfQcBJ53kM2pB1hezSZ3RDUFs.woff2\",weight:\"900\"},{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/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{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/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{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/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{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/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{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/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"}]}];export const css=['.framer-fq8lS .framer-styles-preset-1qym4ly:not(.rich-text-wrapper), .framer-fq8lS .framer-styles-preset-1qym4ly.rich-text-wrapper h5 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.04em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-fq8lS\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (2abc263)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import CardFeature from\"https://framerusercontent.com/modules/uegNDS7ZJJwtAR1YPDVM/pjpA9tcGxVMPLfJe6gMr/X0kElRguY.js\";import NavigationNavbar2 from\"#framer/local/canvasComponent/JhroRnPHR/JhroRnPHR.js\";import*as sharedStyle from\"#framer/local/css/FEglhfX_A/FEglhfX_A.js\";import*as sharedStyle3 from\"#framer/local/css/jtpOaLYZX/jtpOaLYZX.js\";import*as sharedStyle1 from\"#framer/local/css/Sgqu1GegR/Sgqu1GegR.js\";import*as sharedStyle2 from\"#framer/local/css/Y3_vSTLGd/Y3_vSTLGd.js\";import metadataProvider from\"#framer/local/webPageMetadata/xNglRLpPp/xNglRLpPp.js\";const NavigationNavbar2Fonts=getFonts(NavigationNavbar2);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const MotionAWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.a);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const MotionHeaderWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.header);const VideoFonts=getFonts(Video);const ImageWithFX=withFX(Image);const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const MotionDivWithFX=withFX(motion.div);const CardFeatureFonts=getFonts(CardFeature);const ContainerWithFX=withFX(Container);const breakpoints={d5k0IvmtO:\"(min-width: 1440px) and (max-width: 1919px)\",q0MCN5HHs:\"(max-width: 1199px)\",RrrYrO80I:\"(min-width: 1920px)\",xNXtD9sUz:\"(min-width: 1200px) and (max-width: 1439px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-GPiFO\";const variantClassNames={d5k0IvmtO:\"framer-v-77ephm\",q0MCN5HHs:\"framer-v-luj03p\",RrrYrO80I:\"framer-v-1joxx4c\",xNXtD9sUz:\"framer-v-1lrcj9w\"};const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={delay:0,duration:1.5,ease:[.44,0,.56,1],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const transition3={bounce:.2,delay:0,duration:.7,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const transition4={delay:0,duration:2,ease:[.44,0,.56,1],type:\"tween\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const transition5={bounce:.2,delay:0,duration:2,type:\"spring\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const transition6={bounce:.2,delay:0,duration:1,type:\"spring\"};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const transition7={delay:0,duration:2.5,ease:[.44,0,.56,1],type:\"tween\"};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7,x:0,y:0};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const transition8={delay:0,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition8,x:0,y:150};const transition9={delay:.5,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition9,x:0,y:150};const transition10={delay:1,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition10,x:0,y:150};const transition11={delay:0,duration:.7,ease:[.44,0,.56,1],type:\"tween\"};const animation13={opacity:1,rotate:-4,rotateX:10,rotateY:10,scale:1.1,skewX:0,skewY:0,transition:transition11};const animation14={opacity:1,rotate:0,rotateX:0,rotateY:-180,scale:1,skewX:0,skewY:0,x:0,y:0};const transition12={delay:1.5,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation15={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition12,x:0,y:150};const animation16={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const animation17={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition8,x:0,y:0};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const animation18={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition9,x:0,y:0};const animation19={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition10,x:0,y:0};const animation20={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop 2\":\"xNXtD9sUz\",Breakpoint:\"RrrYrO80I\",Desktop:\"d5k0IvmtO\",Phone:\"q0MCN5HHs\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"d5k0IvmtO\"};};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,...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];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"xNXtD9sUz\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"xNXtD9sUz\")return true;return false;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"q0MCN5HHs\")return false;return true;};const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"q0MCN5HHs\")return true;return false;};const isDisplayed4=()=>{if(!isBrowser())return true;if(baseVariant===\"RrrYrO80I\")return true;return false;};const elementId=useRouteElementId(\"MRvLzXFia\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"NCSo91BYt\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"Teg_a2MFf\");const ref3=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"d5k0IvmtO\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-b1ede605-497e-4b87-8618-25bcd26941d3, rgb(33, 33, 33)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-77ephm\",className),ref:refBinding,style:{...style},children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1f7c6hb-container hidden-1lrcj9w\",layoutScroll:true,nodeId:\"JPTUiusBW\",scopeId:\"xNglRLpPp\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{q0MCN5HHs:{variant:\"wR0jeQ2qm\"},RrrYrO80I:{style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(NavigationNavbar2,{height:\"100%\",id:\"JPTUiusBW\",layoutId:\"JPTUiusBW\",style:{width:\"100%\"},variant:\"X1Rv2Gh7o\",width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xNXtD9sUz:{height:72,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-k44b2j-container hidden-77ephm hidden-luj03p hidden-1joxx4c\",nodeId:\"M07OnyO4o\",scopeId:\"xNglRLpPp\",children:/*#__PURE__*/_jsx(NavigationNavbar2,{height:\"100%\",id:\"M07OnyO4o\",layoutId:\"M07OnyO4o\",style:{width:\"100%\"},variant:\"X1Rv2Gh7o\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RrrYrO80I:{animate:animation,initial:animation1,optimized:true}},children:/*#__PURE__*/_jsxs(MotionHeaderWithOptimizedAppearEffect,{className:\"framer-ue5pnn\",\"data-framer-appear-id\":\"ue5pnn\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-abog2y\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:162,intrinsicWidth:712,svg:'<svg width=\"712\" height=\"162\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#FEC301\"><path d=\"M220.34 155.52c0-3 2.48-5.36 6.06-5.36 3.58 0 6 2.36 6 5.36 0 3-2.48 5.3-6 5.3s-6.06-2.24-6.06-5.3Zm74.439-10.14 9.32 4.66c-4.22 6.32-12.82 11.42-24.5 11.42-16.78 0-27.7-8.86-27.7-23.74 0-14.88 10.92-23.74 28.14-23.74 11.22 0 19.84 5.16 23.92 11.36l-9.38 4.66c-3.2-4.98-8.04-7.2-14.68-7.2-10.6 0-17.6 5.1-17.6 14.92s7.02 14.92 17.6 14.92c6.64 0 11.54-2.16 14.86-7.28l.02.02Zm29.841-7.66c0-14.92 10.98-23.74 28.4-23.74 17.42 0 28.4 8.8 28.4 23.74 0 14.94-10.98 23.74-28.4 23.74-17.42 0-28.4-8.8-28.4-23.74Zm46.38 0c0-9.58-6.96-14.92-18-14.92s-18 5.36-18 14.92c0 9.56 6.9 14.92 18 14.92s18-5.36 18-14.92Zm91.36-22.34v44.66h-10.2v-31.08l-19.58 23.92h-.52l-19.58-23.92v31.08h-9.88v-44.66h11.1l18.88 23.6 18.88-23.6h10.92-.02Zm-353-45.5c0 17.06-14.58 26.42-37.7 26.42H0V0h66.16c23.1 0 37.7 9.08 37.7 24.62 0 11-7.16 20.36-21.46 21.32 15.14.82 26.96 8.66 26.96 23.94ZM21.74 39.06H62.6c11.96 0 19.4-1.92 19.4-10.86s-7.42-10.86-19.4-10.86H21.74v21.74-.02ZM86.8 67.4c0-9.76-7.3-11.56-19.68-11.56H21.74v23.12h45.4c12.38 0 19.68-1.92 19.68-11.56h-.02Zm297.42 8.54h-58.18L315.72 96.3H292.2L343.24 0h24.08l51.04 96.3h-23.8l-10.32-20.36h-.02ZM375 58.04l-19.94-39.2-19.94 39.2h39.9-.02ZM536.66 96.3l-27.64-32.74h-34.8V96.3h-21.88V0h66.44c23.52 0 41.26 10.86 41.26 31.78 0 16.36-10.86 26.54-26.82 30.26l29.72 34.26h-26.28Zm-19.12-50.9c11.56 0 20.08-2.76 20.08-13.48s-8.52-13.48-20.08-13.48h-43.46V45.4h43.46Zm193.72 2.74c0 29.98-23.24 48.14-59.56 48.14h-51.18V0h51.18c36.32 0 59.56 18.16 59.56 48.14Zm-22.42 0c0-19.8-15.681-29.44-38.801-29.44H622.52v58.88h27.519c23.12 0 38.801-9.62 38.801-29.44ZM279.14 0h-90.32l-9.8 18.44h90.34L279.14 0ZM149.66 77.86l-9.78 18.44h90.32l9.8-18.44h-90.34Zm19.579-38.94-9.8 18.44h90.34l9.8-18.44h-90.34Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h711.26v161.46H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{q0MCN5HHs:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1Rlcm1pbmEgVGVzdCBCb2xk\",\"--framer-font-family\":'\"Termina Test Bold\", \"Termina Test Bold Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-letter-spacing\":\"0.15em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"THE NEXT GENERATION OF PRIVATE EQUITY\"})})},RrrYrO80I:{animate:animation4,initial:animation1}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1Rlcm1pbmEgVGVzdCBCb2xk\",\"--framer-font-family\":'\"Termina Test Bold\", \"Termina Test Bold Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-letter-spacing\":\"0.25em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"THE NEXT GENERATION OF PRIVATE EQUITY\"})}),className:\"framer-8104w6\",\"data-framer-appear-id\":\"8104w6\",fonts:[\"CUSTOM;Termina Test Bold\"],initial:animation3,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{q0MCN5HHs:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-hnhmgk\",\"data-styles-preset\":\"FEglhfX_A\",children:[\"FOR FOUNDERS,\",/*#__PURE__*/_jsx(\"br\",{}),\"BY FOUNDERS\"]})}),fonts:[\"Inter\"]},RrrYrO80I:{animate:animation6,initial:animation1}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation5,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1Rlcm1pbmEgVGVzdCBEZW1p\",\"--framer-font-family\":'\"Termina Test Demi\", \"Termina Test Demi Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-letter-spacing\":\"0.25em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f1729de2-d68d-40ca-b255-ee867f88a47b, rgb(238, 238, 238))\",\"--framer-text-transform\":\"uppercase\"},children:\"FOR FOUNDERS, BY FOUNDERS\"})}),className:\"framer-olwqzm\",\"data-framer-appear-id\":\"olwqzm\",fonts:[\"CUSTOM;Termina Test Demi\"],initial:animation3,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RrrYrO80I:{animate:animation7,initial:animation1,optimized:true}},children:/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{className:\"framer-15wcpmz\",\"data-framer-appear-id\":\"15wcpmz\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ycYffly6s\"},motionChild:true,nodeId:\"pfwaZbxfl\",openInNewTab:false,scopeId:\"xNglRLpPp\",children:/*#__PURE__*/_jsx(MotionAWithOptimizedAppearEffect,{animate:animation8,className:\"framer-mgzzul framer-1rzf4k1\",\"data-border\":true,\"data-framer-appear-id\":\"mgzzul\",\"data-framer-name\":\"Button\",initial:animation3,optimized:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{q0MCN5HHs:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1Rlcm1pbmEgVGVzdCBSZWd1bGFy\",\"--framer-font-family\":'\"Termina Test Regular\", \"Termina Test Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.25em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-055ee7e2-7589-493d-8f06-30f52832c6d1, rgb(238, 238, 238))\",\"--framer-text-transform\":\"uppercase\"},children:\"JOIN US NOW\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1Rlcm1pbmEgVGVzdCBSZWd1bGFy\",\"--framer-font-family\":'\"Termina Test Regular\", \"Termina Test Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.25em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f1729de2-d68d-40ca-b255-ee867f88a47b, rgb(238, 238, 238))\",\"--framer-text-transform\":\"uppercase\"},children:\"JOIN US NOW\"})}),className:\"framer-1gl4qak\",fonts:[\"CUSTOM;Termina Test Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-5qc0v7 hidden-luj03p\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:58,svg:'<svg width=\"58\" height=\"48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect x=\".613\" y=\".862\" width=\"56.775\" height=\"47.138\" rx=\"18\" fill=\"#fff\" fill-opacity=\".2\"/><path d=\"m15.613 19.612 11.358 11.36a2.869 2.869 0 0 0 4.058 0l11.359-11.36\" stroke=\"#FBCE41\" stroke-width=\"3.825\" stroke-linecap=\"round\"/></svg>',withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1nnq6wv hidden-77ephm hidden-1joxx4c hidden-1lrcj9w\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:58,svg:'<svg width=\"58\" height=\"48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect x=\".613\" y=\".862\" width=\"56.775\" height=\"47.138\" rx=\"18\" fill=\"#fff\" fill-opacity=\".2\"/><path d=\"m15.613 19.612 11.358 11.36a2.869 2.869 0 0 0 4.058 0l11.359-11.36\" stroke=\"#FBCE41\" stroke-width=\"3.825\" stroke-linecap=\"round\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1b3gjdh\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:432,intrinsicWidth:524,svg:'<svg width=\"524\" height=\"432\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path d=\"m441.714 147.93.373-.745c42.774-4.659 64.207-33.727 64.207-67.734C506.294 29.699 459.607.63 385.708.63H225.889L178.27 94.265h66.443l17.613-34.659H403.6c6.244 0 12.487 1.211 17.892 4.286 9.599 5.217 14.817 13.696 14.817 27.019 0 20.217-11.835 29.162-32.336 32.702H112.386v.186C43.24 126.036 0 155.663 0 208.117c0 47.517 35.785 72.486 82.192 76.306l-.372.745c-42.774 4.659-64.207 33.727-64.207 67.734 0 49.752 46.687 78.821 120.586 78.821h159.818l47.62-93.635h-66.444l-17.612 34.659H120.307c-6.244 0-12.488-1.211-17.893-4.286-9.598-5.217-14.817-13.695-14.817-27.019 0-20.217 11.835-29.162 32.337-32.702h291.68v-.186C480.76 306.318 524 276.69 524 224.236c0-47.516-35.784-72.486-82.192-76.306h-.094Zm-3.634 96.71c-5.591 3.54-12.208 5.031-18.917 5.031h-28.982l18.265-36.616h-66.537l-18.265 36.616H100.085v.279c-1.678-.372-3.262-.745-4.846-1.211-14.91-4.751-23.018-14.255-23.018-32.702 0-13.976 4.753-22.827 13.699-28.417 5.591-3.54 12.208-5.031 18.917-5.031h28.982l-18.265 36.616h66.537l18.265-36.616h223.559v-.279c1.678.372 3.262.745 4.846 1.211 14.91 4.751 23.018 14.255 23.018 32.702 0 13.976-4.753 22.827-13.699 28.417Z\" fill=\"#fff\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(0 .63)\" d=\"M0 0h524v431H0z\"/></clipPath></defs></svg>',withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nqmn28\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-edwxjj\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:760,intrinsicWidth:2611,style:{rotate:180},svg:'<svg width=\"2611\" height=\"760\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M0 760 2611 31v729H0Z\" fill=\"#000\"/><path d=\"M2611 35.036 0 760v-5.98L2611 25v10.036Zm0-25L0 735v-5.98L2611 0v10.036Z\" fill=\"#FEC301\"/></svg>',withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1mylcxu hidden-77ephm hidden-luj03p hidden-1lrcj9w\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:760,intrinsicWidth:2611,svg:'<svg width=\"2611\" height=\"760\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M2611 35.036 0 760v-5.98L2611 25v10.036Zm0-25L0 735v-5.98L2611 0v10.036Z\" fill=\"#FEC301\"/></svg>',withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-rffgj8 hidden-77ephm hidden-1joxx4c hidden-1lrcj9w\",style:{rotate:180},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-74f9j0\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:869,intrinsicWidth:2093,style:{rotate:180},svg:'<svg width=\"2093\" height=\"869\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M2088.6 289.469 7.604 866.89C3.781 867.951 0 865.076 0 861.108V34a6 6 0 0 1 6-6h2081c3.31 0 6 2.686 6 6v249.687c0 2.696-1.8 5.061-4.4 5.782Z\" fill=\"#B22036\"/><path d=\"M2088.6 261.469 7.604 838.89C3.781 839.951 0 837.076 0 833.108V6a6 6 0 0 1 6-6h2081c3.31 0 6 2.686 6 6v249.687c0 2.696-1.8 5.061-4.4 5.782Z\" fill=\"#020003\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-201lmv\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ejhqh3-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"NnnwWahvI\",scopeId:\"xNglRLpPp\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{q0MCN5HHs:{style:{height:\"100%\",width:\"100%\"}},RrrYrO80I:{style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:60,bottomLeftRadius:60,bottomRightRadius:60,controls:true,height:\"100%\",id:\"NnnwWahvI\",isMixedBorderRadius:false,layoutId:\"NnnwWahvI\",loop:false,muted:false,objectFit:\"cover\",playing:false,poster:\"https://framerusercontent.com/images/piNyFwgLUVctHhcyyfVfj10FQk.png\",posterEnabled:true,srcType:\"URL\",srcUrl:\"https://pub-2c1f08ea2d8e4b809447b2134a40ef40.r2.dev/beard.com%20website%20hero%20video%20(2).mp4\",startTime:0,style:{width:\"100%\"},topLeftRadius:60,topRightRadius:60,volume:25,width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-hur3pd\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a8eiub\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1Rlcm1pbmEgVGVzdCBSZWd1bGFy\",\"--framer-font-family\":'\"Termina Test Regular\", \"Termina Test Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.25em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f1729de2-d68d-40ca-b255-ee867f88a47b, rgb(238, 238, 238))\",\"--framer-text-transform\":\"uppercase\"},children:\"AS SEEN ON\"})}),className:\"framer-1tqvrgl\",fonts:[\"CUSTOM;Termina Test Regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mbdjp0\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{q0MCN5HHs:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:247,intrinsicWidth:776,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+959.9+20+0+0+29.2+0+0),pixelHeight:247,pixelWidth:776,sizes:\"214px\",src:\"https://framerusercontent.com/images/EmcBdlbBoNQtF3Z7oaayEmt9Q.png\",srcSet:\"https://framerusercontent.com/images/EmcBdlbBoNQtF3Z7oaayEmt9Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/EmcBdlbBoNQtF3Z7oaayEmt9Q.png 776w\"}},xNXtD9sUz:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:247,intrinsicWidth:776,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1288.85+40+0+0+29.2+0),pixelHeight:247,pixelWidth:776,sizes:\"388px\",src:\"https://framerusercontent.com/images/EmcBdlbBoNQtF3Z7oaayEmt9Q.png\",srcSet:\"https://framerusercontent.com/images/EmcBdlbBoNQtF3Z7oaayEmt9Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/EmcBdlbBoNQtF3Z7oaayEmt9Q.png 776w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:247,intrinsicWidth:776,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+698.85+40+0+0+29.2+0),pixelHeight:247,pixelWidth:776,sizes:\"388px\",src:\"https://framerusercontent.com/images/EmcBdlbBoNQtF3Z7oaayEmt9Q.png\",srcSet:\"https://framerusercontent.com/images/EmcBdlbBoNQtF3Z7oaayEmt9Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/EmcBdlbBoNQtF3Z7oaayEmt9Q.png 776w\"},className:\"framer-yf4uht\",\"data-framer-name\":\"FORBES\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{q0MCN5HHs:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:247,intrinsicWidth:776,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+959.9+20+0+0+29.2+0+68),pixelHeight:247,pixelWidth:776,sizes:\"278px\",src:\"https://framerusercontent.com/images/LUyvosgVADmsEbImYI4B0AeZYeU.png\",srcSet:\"https://framerusercontent.com/images/LUyvosgVADmsEbImYI4B0AeZYeU.png?scale-down-to=512 512w,https://framerusercontent.com/images/LUyvosgVADmsEbImYI4B0AeZYeU.png 776w\"}},xNXtD9sUz:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:247,intrinsicWidth:776,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1288.85+40+0+0+29.2+0),pixelHeight:247,pixelWidth:776,sizes:\"388px\",src:\"https://framerusercontent.com/images/LUyvosgVADmsEbImYI4B0AeZYeU.png\",srcSet:\"https://framerusercontent.com/images/LUyvosgVADmsEbImYI4B0AeZYeU.png?scale-down-to=512 512w,https://framerusercontent.com/images/LUyvosgVADmsEbImYI4B0AeZYeU.png 776w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:247,intrinsicWidth:776,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+698.85+40+0+0+29.2+0),pixelHeight:247,pixelWidth:776,sizes:\"388px\",src:\"https://framerusercontent.com/images/LUyvosgVADmsEbImYI4B0AeZYeU.png\",srcSet:\"https://framerusercontent.com/images/LUyvosgVADmsEbImYI4B0AeZYeU.png?scale-down-to=512 512w,https://framerusercontent.com/images/LUyvosgVADmsEbImYI4B0AeZYeU.png 776w\"},className:\"framer-1e42iuk\",\"data-framer-name\":\"AFR\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{q0MCN5HHs:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:247,intrinsicWidth:776,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+959.9+20+0+0+29.2+0+191),pixelHeight:247,pixelWidth:776,sizes:\"214px\",src:\"https://framerusercontent.com/images/tkBcpXUdEajxgglaIICd4kt0XE.png\",srcSet:\"https://framerusercontent.com/images/tkBcpXUdEajxgglaIICd4kt0XE.png?scale-down-to=512 512w,https://framerusercontent.com/images/tkBcpXUdEajxgglaIICd4kt0XE.png 776w\"}},xNXtD9sUz:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:247,intrinsicWidth:776,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1288.85+40+0+0+29.2+0),pixelHeight:247,pixelWidth:776,sizes:\"388px\",src:\"https://framerusercontent.com/images/tkBcpXUdEajxgglaIICd4kt0XE.png\",srcSet:\"https://framerusercontent.com/images/tkBcpXUdEajxgglaIICd4kt0XE.png?scale-down-to=512 512w,https://framerusercontent.com/images/tkBcpXUdEajxgglaIICd4kt0XE.png 776w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:247,intrinsicWidth:776,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+698.85+40+0+0+29.2+0),pixelHeight:247,pixelWidth:776,sizes:\"388px\",src:\"https://framerusercontent.com/images/tkBcpXUdEajxgglaIICd4kt0XE.png\",srcSet:\"https://framerusercontent.com/images/tkBcpXUdEajxgglaIICd4kt0XE.png?scale-down-to=512 512w,https://framerusercontent.com/images/tkBcpXUdEajxgglaIICd4kt0XE.png 776w\"},className:\"framer-18ka7m6\",\"data-framer-name\":\"FORBES\"})})]})]}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tr3h3a hidden-luj03p\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-al6qnt\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RrrYrO80I:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+698.85+40+176.7+0+0+0),pixelHeight:1350,pixelWidth:1080,sizes:\"468.75px\",src:\"https://framerusercontent.com/images/H5hw7GrB1aC5ybkMbQWcLeSGs.png\",srcSet:\"https://framerusercontent.com/images/H5hw7GrB1aC5ybkMbQWcLeSGs.png?scale-down-to=1024 819w,https://framerusercontent.com/images/H5hw7GrB1aC5ybkMbQWcLeSGs.png 1080w\"}},xNXtD9sUz:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1288.85+40+176.7+8+0),pixelHeight:1350,pixelWidth:1080,sizes:\"375px\",src:\"https://framerusercontent.com/images/H5hw7GrB1aC5ybkMbQWcLeSGs.png\",srcSet:\"https://framerusercontent.com/images/H5hw7GrB1aC5ybkMbQWcLeSGs.png?scale-down-to=1024 819w,https://framerusercontent.com/images/H5hw7GrB1aC5ybkMbQWcLeSGs.png 1080w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:false,__framer__enter:animation9,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+698.85+40+176.7+8+0),pixelHeight:1350,pixelWidth:1080,sizes:\"375px\",src:\"https://framerusercontent.com/images/H5hw7GrB1aC5ybkMbQWcLeSGs.png\",srcSet:\"https://framerusercontent.com/images/H5hw7GrB1aC5ybkMbQWcLeSGs.png?scale-down-to=1024 819w,https://framerusercontent.com/images/H5hw7GrB1aC5ybkMbQWcLeSGs.png 1080w\"},className:\"framer-q37yor\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RrrYrO80I:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+698.85+40+176.7+0+0+0),pixelHeight:1350,pixelWidth:1080,sizes:\"468.75px\",src:\"https://framerusercontent.com/images/1omcy1dKzoYUWWLEpzd9TK43Wo.png\",srcSet:\"https://framerusercontent.com/images/1omcy1dKzoYUWWLEpzd9TK43Wo.png?scale-down-to=1024 819w,https://framerusercontent.com/images/1omcy1dKzoYUWWLEpzd9TK43Wo.png 1080w\"}},xNXtD9sUz:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1288.85+40+176.7+8+0),pixelHeight:1350,pixelWidth:1080,sizes:\"375px\",src:\"https://framerusercontent.com/images/1omcy1dKzoYUWWLEpzd9TK43Wo.png\",srcSet:\"https://framerusercontent.com/images/1omcy1dKzoYUWWLEpzd9TK43Wo.png?scale-down-to=1024 819w,https://framerusercontent.com/images/1omcy1dKzoYUWWLEpzd9TK43Wo.png 1080w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:false,__framer__enter:animation9,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+698.85+40+176.7+8+0),pixelHeight:1350,pixelWidth:1080,sizes:\"375px\",src:\"https://framerusercontent.com/images/1omcy1dKzoYUWWLEpzd9TK43Wo.png\",srcSet:\"https://framerusercontent.com/images/1omcy1dKzoYUWWLEpzd9TK43Wo.png?scale-down-to=1024 819w,https://framerusercontent.com/images/1omcy1dKzoYUWWLEpzd9TK43Wo.png 1080w\"},className:\"framer-s7y8ee\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RrrYrO80I:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+698.85+40+176.7+0+0+0),pixelHeight:2778,pixelWidth:1284,sizes:\"468.75px\",src:\"https://framerusercontent.com/images/ZUizHHe9F7I6TxgrNt5RxMn78Us.png\",srcSet:\"https://framerusercontent.com/images/ZUizHHe9F7I6TxgrNt5RxMn78Us.png?scale-down-to=2048 946w,https://framerusercontent.com/images/ZUizHHe9F7I6TxgrNt5RxMn78Us.png 1284w\"}},xNXtD9sUz:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1288.85+40+176.7+8+0),pixelHeight:2778,pixelWidth:1284,sizes:\"375px\",src:\"https://framerusercontent.com/images/ZUizHHe9F7I6TxgrNt5RxMn78Us.png\",srcSet:\"https://framerusercontent.com/images/ZUizHHe9F7I6TxgrNt5RxMn78Us.png?scale-down-to=2048 946w,https://framerusercontent.com/images/ZUizHHe9F7I6TxgrNt5RxMn78Us.png 1284w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:false,__framer__enter:animation9,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+698.85+40+176.7+8+0),pixelHeight:2778,pixelWidth:1284,sizes:\"375px\",src:\"https://framerusercontent.com/images/ZUizHHe9F7I6TxgrNt5RxMn78Us.png\",srcSet:\"https://framerusercontent.com/images/ZUizHHe9F7I6TxgrNt5RxMn78Us.png?scale-down-to=2048 946w,https://framerusercontent.com/images/ZUizHHe9F7I6TxgrNt5RxMn78Us.png 1284w\"},className:\"framer-1pgk7du\"})})]})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-16bgpk1\",\"data-framer-name\":\"Graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2131 760\"><path d=\"M 0 760 L 2131 31 L 2131 760 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 2131 35.036 L 0 760 L 0 754.02 L 2131 25 Z M 2131 10.036 L 0 735 L 0 729.02 L 2131 0 Z\" fill=\"rgb(254,195,1)\"></path></svg>',svgContentId:12558481478,withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ysnmam hidden-77ephm hidden-1joxx4c hidden-1lrcj9w\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{q0MCN5HHs:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+959.9+20+288.2+34),pixelHeight:1350,pixelWidth:1080,sizes:\"198px\",src:\"https://framerusercontent.com/images/H5hw7GrB1aC5ybkMbQWcLeSGs.png\",srcSet:\"https://framerusercontent.com/images/H5hw7GrB1aC5ybkMbQWcLeSGs.png?scale-down-to=1024 819w,https://framerusercontent.com/images/H5hw7GrB1aC5ybkMbQWcLeSGs.png 1080w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1350,pixelWidth:1080,sizes:\"198px\",src:\"https://framerusercontent.com/images/H5hw7GrB1aC5ybkMbQWcLeSGs.png\",srcSet:\"https://framerusercontent.com/images/H5hw7GrB1aC5ybkMbQWcLeSGs.png?scale-down-to=1024 819w,https://framerusercontent.com/images/H5hw7GrB1aC5ybkMbQWcLeSGs.png 1080w\"},className:\"framer-1211rgc\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{q0MCN5HHs:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+959.9+20+288.2+109),pixelHeight:1350,pixelWidth:1080,sizes:\"199px\",src:\"https://framerusercontent.com/images/1omcy1dKzoYUWWLEpzd9TK43Wo.png\",srcSet:\"https://framerusercontent.com/images/1omcy1dKzoYUWWLEpzd9TK43Wo.png?scale-down-to=1024 819w,https://framerusercontent.com/images/1omcy1dKzoYUWWLEpzd9TK43Wo.png 1080w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1350,pixelWidth:1080,sizes:\"199px\",src:\"https://framerusercontent.com/images/1omcy1dKzoYUWWLEpzd9TK43Wo.png\",srcSet:\"https://framerusercontent.com/images/1omcy1dKzoYUWWLEpzd9TK43Wo.png?scale-down-to=1024 819w,https://framerusercontent.com/images/1omcy1dKzoYUWWLEpzd9TK43Wo.png 1080w\"},className:\"framer-1a7s16\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{q0MCN5HHs:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+959.9+20+288.2+508-262),pixelHeight:1428,pixelWidth:1284,sizes:\"185px\",src:\"https://framerusercontent.com/images/KO5wxbadXz1y49L6Fi2sqwZlY0.png\",srcSet:\"https://framerusercontent.com/images/KO5wxbadXz1y49L6Fi2sqwZlY0.png?scale-down-to=1024 920w,https://framerusercontent.com/images/KO5wxbadXz1y49L6Fi2sqwZlY0.png 1284w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1428,pixelWidth:1284,sizes:\"185px\",src:\"https://framerusercontent.com/images/KO5wxbadXz1y49L6Fi2sqwZlY0.png\",srcSet:\"https://framerusercontent.com/images/KO5wxbadXz1y49L6Fi2sqwZlY0.png?scale-down-to=1024 920w,https://framerusercontent.com/images/KO5wxbadXz1y49L6Fi2sqwZlY0.png 1284w\"},className:\"framer-1j2bmal\"})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8quu0o\",\"data-framer-name\":\"Templates\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oc7bq1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1Rlcm1pbmEgVGVzdCBSZWd1bGFy\",\"--framer-font-family\":'\"Termina Test Regular\", \"Termina Test Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.25em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b1eeb3d9-badd-4f35-9e88-c51b1d08c430, rgb(238, 238, 238))\",\"--framer-text-transform\":\"uppercase\"},children:\"Let's Get Started\"})}),className:\"framer-d56kh5\",fonts:[\"CUSTOM;Termina Test Regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{q0MCN5HHs:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-x3ttti\",\"data-styles-preset\":\"Sgqu1GegR\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"START HERE FOR VALUE CREATION\"})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1Rlcm1pbmEgVGVzdCBEZW1p\",\"--framer-font-family\":'\"Termina Test Demi\", \"Termina Test Demi Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-letter-spacing\":\"0.25em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"START HERE FOR VALUE CREATION\"})}),className:\"framer-1c9m5f8\",fonts:[\"CUSTOM;Termina Test Demi\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w3i6cv\",\"data-framer-name\":\"Frame 38\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RrrYrO80I:{__framer__styleAppearEffectEnabled:undefined,animate:animation,initial:animation14,optimized:true}},children:/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__framer__animate:{transition:transition8},__framer__animateOnce:false,__framer__enter:animation9,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-5dmpu8\",\"data-framer-appear-id\":\"5dmpu8\",\"data-framer-name\":\"Frame 44\",whileHover:animation13,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{q0MCN5HHs:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1Rlcm1pbmEgVGVzdCBFeHRyYSBMaWdodA==\",\"--framer-font-family\":'\"Termina Test Extra Light\", \"Termina Test Extra Light Placeholder\", sans-serif',\"--framer-font-size\":\"76px\",\"--framer-line-height\":\"68.9095px\",\"--framer-text-color\":\"var(--token-055ee7e2-7589-493d-8f06-30f52832c6d1, rgb(238, 238, 238))\"},children:\"CREATORS\"})})},RrrYrO80I:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1Rlcm1pbmEgVGVzdCBFeHRyYSBMaWdodA==\",\"--framer-font-family\":'\"Termina Test Extra Light\", \"Termina Test Extra Light Placeholder\", sans-serif',\"--framer-font-size\":\"80px\",\"--framer-line-height\":\"72.963px\",\"--framer-text-color\":\"var(--token-055ee7e2-7589-493d-8f06-30f52832c6d1, rgb(238, 238, 238))\"},children:\"CREATORS\"})})},xNXtD9sUz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1Rlcm1pbmEgVGVzdCBFeHRyYSBMaWdodA==\",\"--framer-font-family\":'\"Termina Test Extra Light\", \"Termina Test Extra Light Placeholder\", sans-serif',\"--framer-font-size\":\"57px\",\"--framer-line-height\":\"51.68212499999999px\",\"--framer-text-color\":\"var(--token-055ee7e2-7589-493d-8f06-30f52832c6d1, rgb(238, 238, 238))\"},children:\"CREATORS\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1Rlcm1pbmEgVGVzdCBFeHRyYSBMaWdodA==\",\"--framer-font-family\":'\"Termina Test Extra Light\", \"Termina Test Extra Light Placeholder\", sans-serif',\"--framer-font-size\":\"67px\",\"--framer-line-height\":\"60.802499999999995px\",\"--framer-text-color\":\"var(--token-f1729de2-d68d-40ca-b255-ee867f88a47b, rgb(238, 238, 238))\"},children:\"CREATORS\"})}),className:\"framer-1s0afaq\",\"data-framer-name\":\"CREATORS\",fonts:[\"CUSTOM;Termina Test Extra Light\"],style:{rotate:90},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8owud1\",\"data-framer-name\":\"Frame 36\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{q0MCN5HHs:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2556.1+60+94+0+0+40.72+0),pixelHeight:968,pixelWidth:736,sizes:\"623px\",src:\"https://framerusercontent.com/images/oVGjv7vXz9LK3mPdvpa6scaAzXI.jpg\",srcSet:\"https://framerusercontent.com/images/oVGjv7vXz9LK3mPdvpa6scaAzXI.jpg 736w\"}},RrrYrO80I:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2308.93+60+154.2+0+43.12+-76),pixelHeight:968,pixelWidth:736,sizes:\"730px\",src:\"https://framerusercontent.com/images/oVGjv7vXz9LK3mPdvpa6scaAzXI.jpg\",srcSet:\"https://framerusercontent.com/images/oVGjv7vXz9LK3mPdvpa6scaAzXI.jpg 736w\"}},xNXtD9sUz:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2888.55+60+129.2+0+30.54+0),pixelHeight:968,pixelWidth:736,sizes:\"467px\",src:\"https://framerusercontent.com/images/oVGjv7vXz9LK3mPdvpa6scaAzXI.jpg\",srcSet:\"https://framerusercontent.com/images/oVGjv7vXz9LK3mPdvpa6scaAzXI.jpg 736w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2298.55+60+154.2+0+35.93+0),pixelHeight:968,pixelWidth:736,sizes:\"537px\",src:\"https://framerusercontent.com/images/oVGjv7vXz9LK3mPdvpa6scaAzXI.jpg\",srcSet:\"https://framerusercontent.com/images/oVGjv7vXz9LK3mPdvpa6scaAzXI.jpg 736w\"},className:\"framer-1isoo8w\",\"data-framer-name\":\"pexels-amar-14899693 1\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hhowrt\",\"data-framer-name\":\"Rectangle 8\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16n5wrf\",\"data-framer-name\":\"Frame 1\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13d82xs\",\"data-framer-name\":\"Frame 23\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RrrYrO80I:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1Rlcm1pbmEgVGVzdCBEZW1p\",\"--framer-font-family\":'\"Termina Test Demi\", \"Termina Test Demi Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"CREATORS\"})})},xNXtD9sUz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1qym4ly\",\"data-styles-preset\":\"Y3_vSTLGd\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"CREATORS\"})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1Rlcm1pbmEgVGVzdCBEZW1p\",\"--framer-font-family\":'\"Termina Test Demi\", \"Termina Test Demi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"CREATORS\"})}),className:\"framer-1dx9n84\",\"data-framer-name\":\"CREATORS\",fonts:[\"CUSTOM;Termina Test Demi\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{q0MCN5HHs:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-055ee7e2-7589-493d-8f06-30f52832c6d1, rgb(238, 238, 238))\"},children:\"Join the beard.com creator army , or create your own brand -\\xa0Creators are the new retailers\"})})},RrrYrO80I:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--token-055ee7e2-7589-493d-8f06-30f52832c6d1, rgb(238, 238, 238))\"},children:\"Join the beard.com creator army , or create your own brand -\\xa0Creators are the new retailers\"})})},xNXtD9sUz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--token-055ee7e2-7589-493d-8f06-30f52832c6d1, rgb(238, 238, 238))\"},children:\"Join the beard.com creator army , or create your own brand -\\xa0Creators are the new retailers\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--token-f1729de2-d68d-40ca-b255-ee867f88a47b, rgb(238, 238, 238))\"},children:\"Join the beard.com creator army , or create your own brand -\\xa0Creators are the new retailers\"})}),className:\"framer-h3a1kh\",\"data-framer-name\":\"Join the beard.com creator army , or create your own brand -\\xa0Creators are the new retailers\",fonts:[\"GF;Montserrat-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"pjqoOTUwN\"},motionChild:true,nodeId:\"ONiOAjMQj\",scopeId:\"xNglRLpPp\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1y5x7mf framer-1rzf4k1\",\"data-border\":true,\"data-framer-name\":\"Frame 17\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RrrYrO80I:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1Rlcm1pbmEgVGVzdCBEZW1p\",\"--framer-font-family\":'\"Termina Test Demi\", \"Termina Test Demi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(240, 241, 241)\"},children:\"CREATORS\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1Rlcm1pbmEgVGVzdCBEZW1p\",\"--framer-font-family\":'\"Termina Test Demi\", \"Termina Test Demi Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(240, 241, 241)\"},children:\"CREATORS\"})}),className:\"framer-15e9h9v\",\"data-framer-name\":\"CREATORS\",fonts:[\"CUSTOM;Termina Test Demi\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]})})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RrrYrO80I:{__framer__styleAppearEffectEnabled:undefined,animate:animation,initial:animation14,optimized:true}},children:/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__framer__animate:{transition:transition9},__framer__animateOnce:false,__framer__enter:animation9,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1i57we5\",\"data-framer-appear-id\":\"1i57we5\",\"data-framer-name\":\"Frame 45\",whileHover:animation13,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{q0MCN5HHs:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1Rlcm1pbmEgVGVzdCBFeHRyYSBMaWdodA==\",\"--framer-font-family\":'\"Termina Test Extra Light\", \"Termina Test Extra Light Placeholder\", sans-serif',\"--framer-font-size\":\"76px\",\"--framer-line-height\":\"68.9095px\",\"--framer-text-color\":\"var(--token-055ee7e2-7589-493d-8f06-30f52832c6d1, rgb(238, 238, 238))\"},children:\"BUSINESS OWNERS\"})})},RrrYrO80I:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1Rlcm1pbmEgVGVzdCBFeHRyYSBMaWdodA==\",\"--framer-font-family\":'\"Termina Test Extra Light\", \"Termina Test Extra Light Placeholder\", sans-serif',\"--framer-font-size\":\"80px\",\"--framer-line-height\":\"72.963px\",\"--framer-text-color\":\"var(--token-055ee7e2-7589-493d-8f06-30f52832c6d1, rgb(238, 238, 238))\"},children:\"BUSINESS OWNERS\"})})},xNXtD9sUz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1Rlcm1pbmEgVGVzdCBFeHRyYSBMaWdodA==\",\"--framer-font-family\":'\"Termina Test Extra Light\", \"Termina Test Extra Light Placeholder\", sans-serif',\"--framer-font-size\":\"57px\",\"--framer-line-height\":\"51.68212499999999px\",\"--framer-text-color\":\"var(--token-055ee7e2-7589-493d-8f06-30f52832c6d1, rgb(238, 238, 238))\"},children:\"BUSINESS OWNERS\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1Rlcm1pbmEgVGVzdCBFeHRyYSBMaWdodA==\",\"--framer-font-family\":'\"Termina Test Extra Light\", \"Termina Test Extra Light Placeholder\", sans-serif',\"--framer-font-size\":\"67px\",\"--framer-line-height\":\"60.802499999999995px\",\"--framer-text-color\":\"var(--token-f1729de2-d68d-40ca-b255-ee867f88a47b, rgb(238, 238, 238))\"},children:\"BUSINESS OWNERS\"})}),className:\"framer-9116oo\",\"data-framer-name\":\"BUSINESS OWNERS\",fonts:[\"CUSTOM;Termina Test Extra Light\"],style:{rotate:90},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19rmslm\",\"data-framer-name\":\"Frame 36\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{q0MCN5HHs:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2556.1+60+94+0+732.79+40.72+671.66-671.66),pixelHeight:4096,pixelWidth:2734,sizes:\"457.3px\",src:\"https://framerusercontent.com/images/GpEJg4vZOoCU5vQHSri4wI7fvQ.jpg\",srcSet:\"https://framerusercontent.com/images/GpEJg4vZOoCU5vQHSri4wI7fvQ.jpg?scale-down-to=1024 683w,https://framerusercontent.com/images/GpEJg4vZOoCU5vQHSri4wI7fvQ.jpg?scale-down-to=2048 1367w,https://framerusercontent.com/images/GpEJg4vZOoCU5vQHSri4wI7fvQ.jpg 2734w\"}},RrrYrO80I:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2308.93+60+154.2+0+43.12+711.17-711.17),pixelHeight:4096,pixelWidth:2734,sizes:\"484.2px\",src:\"https://framerusercontent.com/images/GpEJg4vZOoCU5vQHSri4wI7fvQ.jpg\",srcSet:\"https://framerusercontent.com/images/GpEJg4vZOoCU5vQHSri4wI7fvQ.jpg?scale-down-to=1024 683w,https://framerusercontent.com/images/GpEJg4vZOoCU5vQHSri4wI7fvQ.jpg?scale-down-to=2048 1367w,https://framerusercontent.com/images/GpEJg4vZOoCU5vQHSri4wI7fvQ.jpg 2734w\"}},xNXtD9sUz:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2888.55+60+129.2+0+30.54+503.74-503.75),pixelHeight:4096,pixelWidth:2734,sizes:\"342.97px\",src:\"https://framerusercontent.com/images/GpEJg4vZOoCU5vQHSri4wI7fvQ.jpg\",srcSet:\"https://framerusercontent.com/images/GpEJg4vZOoCU5vQHSri4wI7fvQ.jpg?scale-down-to=1024 683w,https://framerusercontent.com/images/GpEJg4vZOoCU5vQHSri4wI7fvQ.jpg?scale-down-to=2048 1367w,https://framerusercontent.com/images/GpEJg4vZOoCU5vQHSri4wI7fvQ.jpg 2734w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2298.55+60+154.2+0+35.93+592.64-592.64),pixelHeight:4096,pixelWidth:2734,sizes:\"403.5px\",src:\"https://framerusercontent.com/images/GpEJg4vZOoCU5vQHSri4wI7fvQ.jpg\",srcSet:\"https://framerusercontent.com/images/GpEJg4vZOoCU5vQHSri4wI7fvQ.jpg?scale-down-to=1024 683w,https://framerusercontent.com/images/GpEJg4vZOoCU5vQHSri4wI7fvQ.jpg?scale-down-to=2048 1367w,https://framerusercontent.com/images/GpEJg4vZOoCU5vQHSri4wI7fvQ.jpg 2734w\"},className:\"framer-7utuli\",\"data-framer-name\":\"pexels-mikhail-nilov-7989229 1\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-a06570\",\"data-framer-name\":\"Rectangle 8\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-tjd8z5\",\"data-framer-name\":\"Frame 1\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bgsjue\",\"data-framer-name\":\"Frame 23\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RrrYrO80I:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1Rlcm1pbmEgVGVzdCBCb2xk\",\"--framer-font-family\":'\"Termina Test Bold\", \"Termina Test Bold Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-text-color\":\"rgb(250, 250, 250)\"},children:\"BUSINESS OWNERS\"})})},xNXtD9sUz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1qym4ly\",\"data-styles-preset\":\"Y3_vSTLGd\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"BUSINESS OWNERS\"})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1Rlcm1pbmEgVGVzdCBCb2xk\",\"--framer-font-family\":'\"Termina Test Bold\", \"Termina Test Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(250, 250, 250)\"},children:\"BUSINESS OWNERS\"})}),className:\"framer-1kj84au\",\"data-framer-name\":\"BUSINESS OWNERS\",fonts:[\"CUSTOM;Termina Test Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{q0MCN5HHs:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-055ee7e2-7589-493d-8f06-30f52832c6d1, rgb(238, 238, 238))\"},children:\"Get early access to latest gamechanger AI tools, or simply join our community of like minded entrepreneurs that are slaying the old dinosaur brands.\\xa0 Or best of all do a deal with us if your can cope with exploding demand\"})})},RrrYrO80I:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--token-055ee7e2-7589-493d-8f06-30f52832c6d1, rgb(238, 238, 238))\"},children:\"Get early access to latest gamechanger AI tools, or simply join our community of like minded entrepreneurs that are slaying the old dinosaur brands.\\xa0 Or best of all do a deal with us if your can cope with exploding demand\"})})},xNXtD9sUz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--token-055ee7e2-7589-493d-8f06-30f52832c6d1, rgb(238, 238, 238))\"},children:\"Get early access to latest gamechanger AI tools, or simply join our community of like minded entrepreneurs that are slaying the old dinosaur brands.\\xa0 Or best of all do a deal with us if your can cope with exploding demand\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--token-f1729de2-d68d-40ca-b255-ee867f88a47b, rgb(238, 238, 238))\"},children:\"Get early access to latest gamechanger AI tools, or simply join our community of like minded entrepreneurs that are slaying the old dinosaur brands.\\xa0 Or best of all do a deal with us if your can cope with exploding demand\"})}),className:\"framer-lulgo4\",\"data-framer-name\":\"Get early access to latest gamechanger AI tools, or simply join our community of like minded entrepreneurs that are slaying the old dinosaur brands.\\xa0 Or best of all do a deal with us if your can cope with exploding demand\",fonts:[\"GF;Montserrat-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"e15NUo9jz\"},motionChild:true,nodeId:\"YCMepjD9M\",scopeId:\"xNglRLpPp\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1csxsa7 framer-1rzf4k1\",\"data-border\":true,\"data-framer-name\":\"Frame 17\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RrrYrO80I:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1Rlcm1pbmEgVGVzdCBEZW1p\",\"--framer-font-family\":'\"Termina Test Demi\", \"Termina Test Demi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(240, 241, 241)\"},children:\"OWNERS\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1Rlcm1pbmEgVGVzdCBEZW1p\",\"--framer-font-family\":'\"Termina Test Demi\", \"Termina Test Demi Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(240, 241, 241)\"},children:\"OWNERS\"})}),className:\"framer-8sqm1v\",\"data-framer-name\":\"OWNERS\",fonts:[\"CUSTOM;Termina Test Demi\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]})})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RrrYrO80I:{__framer__styleAppearEffectEnabled:undefined,animate:animation,initial:animation14,optimized:true}},children:/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__framer__animate:{transition:transition10},__framer__animateOnce:false,__framer__enter:animation9,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1dlovnt\",\"data-framer-appear-id\":\"1dlovnt\",\"data-framer-name\":\"Frame 46\",whileHover:animation13,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{q0MCN5HHs:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1Rlcm1pbmEgVGVzdCBFeHRyYSBMaWdodA==\",\"--framer-font-family\":'\"Termina Test Extra Light\", \"Termina Test Extra Light Placeholder\", sans-serif',\"--framer-font-size\":\"76px\",\"--framer-line-height\":\"68.9095px\",\"--framer-text-color\":\"var(--token-055ee7e2-7589-493d-8f06-30f52832c6d1, rgb(238, 238, 238))\"},children:\"JOIN US\"})})},RrrYrO80I:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1Rlcm1pbmEgVGVzdCBFeHRyYSBMaWdodA==\",\"--framer-font-family\":'\"Termina Test Extra Light\", \"Termina Test Extra Light Placeholder\", sans-serif',\"--framer-font-size\":\"80px\",\"--framer-line-height\":\"72.963px\",\"--framer-text-color\":\"var(--token-055ee7e2-7589-493d-8f06-30f52832c6d1, rgb(238, 238, 238))\"},children:\"JOIN US\"})})},xNXtD9sUz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1Rlcm1pbmEgVGVzdCBFeHRyYSBMaWdodA==\",\"--framer-font-family\":'\"Termina Test Extra Light\", \"Termina Test Extra Light Placeholder\", sans-serif',\"--framer-font-size\":\"57px\",\"--framer-line-height\":\"51.68212499999999px\",\"--framer-text-color\":\"var(--token-055ee7e2-7589-493d-8f06-30f52832c6d1, rgb(238, 238, 238))\"},children:\"JOIN US\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1Rlcm1pbmEgVGVzdCBFeHRyYSBMaWdodA==\",\"--framer-font-family\":'\"Termina Test Extra Light\", \"Termina Test Extra Light Placeholder\", sans-serif',\"--framer-font-size\":\"67px\",\"--framer-line-height\":\"60.802499999999995px\",\"--framer-text-color\":\"var(--token-f1729de2-d68d-40ca-b255-ee867f88a47b, rgb(238, 238, 238))\"},children:\"JOIN US\"})}),className:\"framer-8igk79\",\"data-framer-name\":\"DREAM TEAM\",fonts:[\"CUSTOM;Termina Test Extra Light\"],style:{rotate:90},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-r3ck2f\",\"data-framer-name\":\"Frame 36\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{q0MCN5HHs:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2556.1+60+94+0+1504.91+40.72+-1.7),pixelHeight:1350,pixelWidth:1080,sizes:\"537.2px\",src:\"https://framerusercontent.com/images/H5hw7GrB1aC5ybkMbQWcLeSGs.png\",srcSet:\"https://framerusercontent.com/images/H5hw7GrB1aC5ybkMbQWcLeSGs.png?scale-down-to=1024 819w,https://framerusercontent.com/images/H5hw7GrB1aC5ybkMbQWcLeSGs.png 1080w\"}},RrrYrO80I:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2308.93+60+154.2+0+43.12+-1.8),pixelHeight:1350,pixelWidth:1080,sizes:\"568.8px\",src:\"https://framerusercontent.com/images/H5hw7GrB1aC5ybkMbQWcLeSGs.png\",srcSet:\"https://framerusercontent.com/images/H5hw7GrB1aC5ybkMbQWcLeSGs.png?scale-down-to=1024 819w,https://framerusercontent.com/images/H5hw7GrB1aC5ybkMbQWcLeSGs.png 1080w\"}},xNXtD9sUz:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2888.55+60+129.2+0+30.54+-1.27),pixelHeight:1350,pixelWidth:1080,sizes:\"402.89px\",src:\"https://framerusercontent.com/images/H5hw7GrB1aC5ybkMbQWcLeSGs.png\",srcSet:\"https://framerusercontent.com/images/H5hw7GrB1aC5ybkMbQWcLeSGs.png?scale-down-to=1024 819w,https://framerusercontent.com/images/H5hw7GrB1aC5ybkMbQWcLeSGs.png 1080w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2298.55+60+154.2+0+35.93+-1.5),pixelHeight:1350,pixelWidth:1080,sizes:\"474px\",src:\"https://framerusercontent.com/images/H5hw7GrB1aC5ybkMbQWcLeSGs.png\",srcSet:\"https://framerusercontent.com/images/H5hw7GrB1aC5ybkMbQWcLeSGs.png?scale-down-to=1024 819w,https://framerusercontent.com/images/H5hw7GrB1aC5ybkMbQWcLeSGs.png 1080w\"},className:\"framer-1tjj2g4\",\"data-framer-name\":\"Forbes 1\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bvcfot\",\"data-framer-name\":\"Rectangle 8\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ou9tq9\",\"data-framer-name\":\"Frame 1\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dxeavc\",\"data-framer-name\":\"Frame 23\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RrrYrO80I:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1Rlcm1pbmEgVGVzdCBEZW1p\",\"--framer-font-family\":'\"Termina Test Demi\", \"Termina Test Demi Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-text-color\":\"rgb(250, 250, 250)\"},children:\"WANT TO JOIN THE DREAM TEAM?\"})})},xNXtD9sUz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1qym4ly\",\"data-styles-preset\":\"Y3_vSTLGd\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"WANT TO JOIN THE DREAM TEAM?\"})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1Rlcm1pbmEgVGVzdCBEZW1p\",\"--framer-font-family\":'\"Termina Test Demi\", \"Termina Test Demi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(250, 250, 250)\"},children:\"WANT TO JOIN THE DREAM TEAM?\"})}),className:\"framer-tr7hjm\",\"data-framer-name\":\"WANT TO JOIN THE DREAM TEAM?\",fonts:[\"CUSTOM;Termina Test Demi\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{q0MCN5HHs:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-055ee7e2-7589-493d-8f06-30f52832c6d1, rgb(238, 238, 238))\"},children:\"Join our team at beard.com or our portfolio companies\"})})},RrrYrO80I:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--token-055ee7e2-7589-493d-8f06-30f52832c6d1, rgb(238, 238, 238))\"},children:\"Join our team at beard.com or our portfolio companies\"})})},xNXtD9sUz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--token-055ee7e2-7589-493d-8f06-30f52832c6d1, rgb(238, 238, 238))\"},children:\"Join our team at beard.com or our portfolio companies\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--token-f1729de2-d68d-40ca-b255-ee867f88a47b, rgb(238, 238, 238))\"},children:\"Join our team at beard.com or our portfolio companies\"})}),className:\"framer-dluoxl\",\"data-framer-name\":\"Join our team at beard.com or our portfolio companies\",fonts:[\"GF;Montserrat-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"whIPgFlSx\"},motionChild:true,nodeId:\"j7aHxK4XZ\",scopeId:\"xNglRLpPp\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1eug6vf framer-1rzf4k1\",\"data-border\":true,\"data-framer-name\":\"Frame 17\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RrrYrO80I:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"Q1VTVE9NO1Rlcm1pbmEgVGVzdCBCb2xk\",\"--framer-font-family\":'\"Termina Test Bold\", \"Termina Test Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-055ee7e2-7589-493d-8f06-30f52832c6d1, rgb(238, 238, 238))\",\"--framer-text-transform\":\"uppercase\"},children:\"JOIN THE TEAM\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"Q1VTVE9NO1Rlcm1pbmEgVGVzdCBCb2xk\",\"--framer-font-family\":'\"Termina Test Bold\", \"Termina Test Bold Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f1729de2-d68d-40ca-b255-ee867f88a47b, rgb(238, 238, 238))\",\"--framer-text-transform\":\"uppercase\"},children:\"JOIN THE TEAM\"})}),className:\"framer-cbfmyv\",\"data-framer-name\":\"JOIN THE TEAM\",fonts:[\"CUSTOM;Termina Test Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]})})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RrrYrO80I:{__framer__styleAppearEffectEnabled:undefined,animate:animation,initial:animation14,optimized:true}},children:/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__framer__animate:{transition:transition12},__framer__animateOnce:false,__framer__enter:animation9,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-c4obt9\",\"data-framer-appear-id\":\"c4obt9\",\"data-framer-name\":\"Frame 47\",whileHover:animation13,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{q0MCN5HHs:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1Rlcm1pbmEgVGVzdCBFeHRyYSBMaWdodA==\",\"--framer-font-family\":'\"Termina Test Extra Light\", \"Termina Test Extra Light Placeholder\", sans-serif',\"--framer-font-size\":\"76px\",\"--framer-line-height\":\"68.9095px\",\"--framer-text-color\":\"var(--token-055ee7e2-7589-493d-8f06-30f52832c6d1, rgb(238, 238, 238))\"},children:\"LEARNING\"})})},RrrYrO80I:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1Rlcm1pbmEgVGVzdCBFeHRyYSBMaWdodA==\",\"--framer-font-family\":'\"Termina Test Extra Light\", \"Termina Test Extra Light Placeholder\", sans-serif',\"--framer-font-size\":\"80px\",\"--framer-line-height\":\"72.963px\",\"--framer-text-color\":\"var(--token-055ee7e2-7589-493d-8f06-30f52832c6d1, rgb(238, 238, 238))\"},children:\"LEARNING\"})})},xNXtD9sUz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1Rlcm1pbmEgVGVzdCBFeHRyYSBMaWdodA==\",\"--framer-font-family\":'\"Termina Test Extra Light\", \"Termina Test Extra Light Placeholder\", sans-serif',\"--framer-font-size\":\"57px\",\"--framer-line-height\":\"51.68212499999999px\",\"--framer-text-color\":\"var(--token-055ee7e2-7589-493d-8f06-30f52832c6d1, rgb(238, 238, 238))\"},children:\"LEARNING\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1Rlcm1pbmEgVGVzdCBFeHRyYSBMaWdodA==\",\"--framer-font-family\":'\"Termina Test Extra Light\", \"Termina Test Extra Light Placeholder\", sans-serif',\"--framer-font-size\":\"67px\",\"--framer-line-height\":\"60.802499999999995px\",\"--framer-text-color\":\"var(--token-f1729de2-d68d-40ca-b255-ee867f88a47b, rgb(238, 238, 238))\"},children:\"LEARNING\"})}),className:\"framer-dh7nze\",\"data-framer-name\":\"LEARNING\",fonts:[\"CUSTOM;Termina Test Extra Light\"],style:{rotate:90},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1exnbi6\",\"data-framer-name\":\"Frame 36\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{q0MCN5HHs:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2556.1+60+94+0+2277.03+40.72+-72.83),pixelHeight:4096,pixelWidth:3729,sizes:\"678.07px\",src:\"https://framerusercontent.com/images/lDL63M53KCIkYQFQHKd37AxpS4.jpg\",srcSet:\"https://framerusercontent.com/images/lDL63M53KCIkYQFQHKd37AxpS4.jpg?scale-down-to=1024 932w,https://framerusercontent.com/images/lDL63M53KCIkYQFQHKd37AxpS4.jpg?scale-down-to=2048 1864w,https://framerusercontent.com/images/lDL63M53KCIkYQFQHKd37AxpS4.jpg 3729w\"}},RrrYrO80I:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2308.93+60+154.2+0+43.12+-77.11),pixelHeight:4096,pixelWidth:3729,sizes:\"717.96px\",src:\"https://framerusercontent.com/images/lDL63M53KCIkYQFQHKd37AxpS4.jpg\",srcSet:\"https://framerusercontent.com/images/lDL63M53KCIkYQFQHKd37AxpS4.jpg?scale-down-to=1024 932w,https://framerusercontent.com/images/lDL63M53KCIkYQFQHKd37AxpS4.jpg?scale-down-to=2048 1864w,https://framerusercontent.com/images/lDL63M53KCIkYQFQHKd37AxpS4.jpg 3729w\"}},xNXtD9sUz:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2888.55+60+129.2+0+30.54+-54.62),pixelHeight:4096,pixelWidth:3729,sizes:\"508.55px\",src:\"https://framerusercontent.com/images/lDL63M53KCIkYQFQHKd37AxpS4.jpg\",srcSet:\"https://framerusercontent.com/images/lDL63M53KCIkYQFQHKd37AxpS4.jpg?scale-down-to=1024 932w,https://framerusercontent.com/images/lDL63M53KCIkYQFQHKd37AxpS4.jpg?scale-down-to=2048 1864w,https://framerusercontent.com/images/lDL63M53KCIkYQFQHKd37AxpS4.jpg 3729w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2298.55+60+154.2+0+35.93+-64.26),pixelHeight:4096,pixelWidth:3729,sizes:\"598.3px\",src:\"https://framerusercontent.com/images/lDL63M53KCIkYQFQHKd37AxpS4.jpg\",srcSet:\"https://framerusercontent.com/images/lDL63M53KCIkYQFQHKd37AxpS4.jpg?scale-down-to=1024 932w,https://framerusercontent.com/images/lDL63M53KCIkYQFQHKd37AxpS4.jpg?scale-down-to=2048 1864w,https://framerusercontent.com/images/lDL63M53KCIkYQFQHKd37AxpS4.jpg 3729w\"},className:\"framer-1m9ucdc\",\"data-framer-name\":\"pexels-amar-14899693 1\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{q0MCN5HHs:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2556.1+60+94+0+2277.03+40.72+0),pixelHeight:4096,pixelWidth:2734,sizes:\"437.54px\",src:\"https://framerusercontent.com/images/GpEJg4vZOoCU5vQHSri4wI7fvQ.jpg\",srcSet:\"https://framerusercontent.com/images/GpEJg4vZOoCU5vQHSri4wI7fvQ.jpg?scale-down-to=1024 683w,https://framerusercontent.com/images/GpEJg4vZOoCU5vQHSri4wI7fvQ.jpg?scale-down-to=2048 1367w,https://framerusercontent.com/images/GpEJg4vZOoCU5vQHSri4wI7fvQ.jpg 2734w\"}},RrrYrO80I:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2308.93+60+154.2+0+43.12+0),pixelHeight:4096,pixelWidth:2734,sizes:\"463.28px\",src:\"https://framerusercontent.com/images/GpEJg4vZOoCU5vQHSri4wI7fvQ.jpg\",srcSet:\"https://framerusercontent.com/images/GpEJg4vZOoCU5vQHSri4wI7fvQ.jpg?scale-down-to=1024 683w,https://framerusercontent.com/images/GpEJg4vZOoCU5vQHSri4wI7fvQ.jpg?scale-down-to=2048 1367w,https://framerusercontent.com/images/GpEJg4vZOoCU5vQHSri4wI7fvQ.jpg 2734w\"}},xNXtD9sUz:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2888.55+60+129.2+0+30.54+0),pixelHeight:4096,pixelWidth:2734,sizes:\"328.16px\",src:\"https://framerusercontent.com/images/GpEJg4vZOoCU5vQHSri4wI7fvQ.jpg\",srcSet:\"https://framerusercontent.com/images/GpEJg4vZOoCU5vQHSri4wI7fvQ.jpg?scale-down-to=1024 683w,https://framerusercontent.com/images/GpEJg4vZOoCU5vQHSri4wI7fvQ.jpg?scale-down-to=2048 1367w,https://framerusercontent.com/images/GpEJg4vZOoCU5vQHSri4wI7fvQ.jpg 2734w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2298.55+60+154.2+0+35.93+0),pixelHeight:4096,pixelWidth:2734,sizes:\"386.07px\",src:\"https://framerusercontent.com/images/GpEJg4vZOoCU5vQHSri4wI7fvQ.jpg\",srcSet:\"https://framerusercontent.com/images/GpEJg4vZOoCU5vQHSri4wI7fvQ.jpg?scale-down-to=1024 683w,https://framerusercontent.com/images/GpEJg4vZOoCU5vQHSri4wI7fvQ.jpg?scale-down-to=2048 1367w,https://framerusercontent.com/images/GpEJg4vZOoCU5vQHSri4wI7fvQ.jpg 2734w\"},className:\"framer-16ht4cy\",\"data-framer-name\":\"pexels-mikhail-nilov-7989229 1\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{q0MCN5HHs:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2556.1+60+94+0+2277.03+40.72+0),pixelHeight:1350,pixelWidth:1080,sizes:\"537.51px\",src:\"https://framerusercontent.com/images/H5hw7GrB1aC5ybkMbQWcLeSGs.png\",srcSet:\"https://framerusercontent.com/images/H5hw7GrB1aC5ybkMbQWcLeSGs.png?scale-down-to=1024 819w,https://framerusercontent.com/images/H5hw7GrB1aC5ybkMbQWcLeSGs.png 1080w\"}},RrrYrO80I:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2308.93+60+154.2+0+43.12+0),pixelHeight:1350,pixelWidth:1080,sizes:\"569.12px\",src:\"https://framerusercontent.com/images/H5hw7GrB1aC5ybkMbQWcLeSGs.png\",srcSet:\"https://framerusercontent.com/images/H5hw7GrB1aC5ybkMbQWcLeSGs.png?scale-down-to=1024 819w,https://framerusercontent.com/images/H5hw7GrB1aC5ybkMbQWcLeSGs.png 1080w\"}},xNXtD9sUz:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2888.55+60+129.2+0+30.54+0),pixelHeight:1350,pixelWidth:1080,sizes:\"403.13px\",src:\"https://framerusercontent.com/images/H5hw7GrB1aC5ybkMbQWcLeSGs.png\",srcSet:\"https://framerusercontent.com/images/H5hw7GrB1aC5ybkMbQWcLeSGs.png?scale-down-to=1024 819w,https://framerusercontent.com/images/H5hw7GrB1aC5ybkMbQWcLeSGs.png 1080w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2298.55+60+154.2+0+35.93+0),pixelHeight:1350,pixelWidth:1080,sizes:\"474.27px\",src:\"https://framerusercontent.com/images/H5hw7GrB1aC5ybkMbQWcLeSGs.png\",srcSet:\"https://framerusercontent.com/images/H5hw7GrB1aC5ybkMbQWcLeSGs.png?scale-down-to=1024 819w,https://framerusercontent.com/images/H5hw7GrB1aC5ybkMbQWcLeSGs.png 1080w\"},className:\"framer-1rmavls\",\"data-framer-name\":\"Forbes 1\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{q0MCN5HHs:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2556.1+60+94+0+2277.03+40.72+-.67),pixelHeight:1278,pixelWidth:998,sizes:\"535.66px\",src:\"https://framerusercontent.com/images/wQ1oGLsawLgpkfNLlbi2OKMQ.png\",srcSet:\"https://framerusercontent.com/images/wQ1oGLsawLgpkfNLlbi2OKMQ.png?scale-down-to=1024 799w,https://framerusercontent.com/images/wQ1oGLsawLgpkfNLlbi2OKMQ.png 998w\"}},RrrYrO80I:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2308.93+60+154.2+0+43.12+-.71),pixelHeight:1278,pixelWidth:998,sizes:\"567.17px\",src:\"https://framerusercontent.com/images/wQ1oGLsawLgpkfNLlbi2OKMQ.png\",srcSet:\"https://framerusercontent.com/images/wQ1oGLsawLgpkfNLlbi2OKMQ.png?scale-down-to=1024 799w,https://framerusercontent.com/images/wQ1oGLsawLgpkfNLlbi2OKMQ.png 998w\"}},xNXtD9sUz:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2888.55+60+129.2+0+30.54+-.5),pixelHeight:1278,pixelWidth:998,sizes:\"401.74px\",src:\"https://framerusercontent.com/images/wQ1oGLsawLgpkfNLlbi2OKMQ.png\",srcSet:\"https://framerusercontent.com/images/wQ1oGLsawLgpkfNLlbi2OKMQ.png?scale-down-to=1024 799w,https://framerusercontent.com/images/wQ1oGLsawLgpkfNLlbi2OKMQ.png 998w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2298.55+60+154.2+0+35.93+-.59),pixelHeight:1278,pixelWidth:998,sizes:\"472.64px\",src:\"https://framerusercontent.com/images/wQ1oGLsawLgpkfNLlbi2OKMQ.png\",srcSet:\"https://framerusercontent.com/images/wQ1oGLsawLgpkfNLlbi2OKMQ.png?scale-down-to=1024 799w,https://framerusercontent.com/images/wQ1oGLsawLgpkfNLlbi2OKMQ.png 998w\"},className:\"framer-1rjfolo\",\"data-framer-name\":\"Screenshot 2025-03-24 at 12.36.55\u202Fpm 1\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13vjrt1\",\"data-framer-name\":\"Rectangle 8\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xjgqmx\",\"data-framer-name\":\"Frame 1\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vw58vb\",\"data-framer-name\":\"Frame 23\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RrrYrO80I:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1Rlcm1pbmEgVGVzdCBEZW1p\",\"--framer-font-family\":'\"Termina Test Demi\", \"Termina Test Demi Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-text-color\":\"rgb(250, 250, 250)\"},children:\"HERE TO LEARN\"})})},xNXtD9sUz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1qym4ly\",\"data-styles-preset\":\"Y3_vSTLGd\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"HERE TO LEARN\"})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1Rlcm1pbmEgVGVzdCBEZW1p\",\"--framer-font-family\":'\"Termina Test Demi\", \"Termina Test Demi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(250, 250, 250)\"},children:\"HERE TO LEARN\"})}),className:\"framer-1kihhh4\",\"data-framer-name\":\"HERE TO LEARN\",fonts:[\"CUSTOM;Termina Test Demi\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{q0MCN5HHs:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-055ee7e2-7589-493d-8f06-30f52832c6d1, rgb(238, 238, 238))\"},children:\"Sign up to the latest Free content and strategy on how to take advantage of this opportunity to disrupt.\"})})},RrrYrO80I:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--token-055ee7e2-7589-493d-8f06-30f52832c6d1, rgb(238, 238, 238))\"},children:\"Sign up to the latest Free content and strategy on how to take advantage of this opportunity to disrupt.\"})})},xNXtD9sUz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--token-055ee7e2-7589-493d-8f06-30f52832c6d1, rgb(238, 238, 238))\"},children:\"Sign up to the latest Free content and strategy on how to take advantage of this opportunity to disrupt.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--token-f1729de2-d68d-40ca-b255-ee867f88a47b, rgb(238, 238, 238))\"},children:\"Sign up to the latest Free content and strategy on how to take advantage of this opportunity to disrupt.\"})}),className:\"framer-1k1hriq\",\"data-framer-name\":\"Sign up to the latest Free content and strategy on how to take advantage of this opportunity to disrupt.\",fonts:[\"GF;Montserrat-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RrrYrO80I:{href:\"https://simonbeard.kit.com/dab9d56c8d\"}},children:/*#__PURE__*/_jsx(Link,{href:\"newsletter.beard.com\",motionChild:true,nodeId:\"AejIGOPlW\",openInNewTab:true,scopeId:\"xNglRLpPp\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-t6q2ux framer-1rzf4k1\",\"data-border\":true,\"data-framer-name\":\"Frame 17\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RrrYrO80I:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1Rlcm1pbmEgVGVzdCBEZW1p\",\"--framer-font-family\":'\"Termina Test Demi\", \"Termina Test Demi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(240, 241, 241)\"},children:\"LEARNING\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1Rlcm1pbmEgVGVzdCBEZW1p\",\"--framer-font-family\":'\"Termina Test Demi\", \"Termina Test Demi Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(240, 241, 241)\"},children:\"LEARNING\"})}),className:\"framer-ukxlwi\",\"data-framer-name\":\"LEARNING\",fonts:[\"CUSTOM;Termina Test Demi\"],verticalAlignment:\"top\",withExternalLayout:true})})})})})]})})]})]})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vs8j8t\",\"data-framer-name\":\"Our Mission\",id:elementId1,ref:ref2,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-n5ievl\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u9lvrz\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1Rlcm1pbmEgVGVzdCBSZWd1bGFy\",\"--framer-font-family\":'\"Termina Test Regular\", \"Termina Test Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.25em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b1eeb3d9-badd-4f35-9e88-c51b1d08c430, rgb(238, 238, 238))\",\"--framer-text-transform\":\"uppercase\"},children:\"OUR MISSION\"})}),className:\"framer-ap8npo\",fonts:[\"CUSTOM;Termina Test Regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{q0MCN5HHs:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-x3ttti\",\"data-styles-preset\":\"Sgqu1GegR\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-5797f1af-9d18-4a9d-89fb-53c16df14757, rgb(254, 195, 1))\"},children:\"Mission: unlock the art of emotion with the science of AI to make 1+1= 11  \"})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1Rlcm1pbmEgVGVzdCBEZW1p\",\"--framer-font-family\":'\"Termina Test Demi\", \"Termina Test Demi Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-letter-spacing\":\"0.25em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7bc93b1c-63f2-4d8c-8aa1-e9b2ddb286e4, rgb(254, 195, 1))\",\"--framer-text-transform\":\"uppercase\"},children:\"Mission: unlock the art of emotion with the science of AI to make 1+1= 11  \"})}),className:\"framer-v3t57p\",fonts:[\"CUSTOM;Termina Test Demi\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})}),isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ht1lll hidden-77ephm hidden-1joxx4c hidden-1lrcj9w\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-mifrsa\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-lhi4z8\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:760,intrinsicWidth:2611,style:{rotate:180},svg:'<svg width=\"2611\" height=\"760\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M0 760 2611 31v729H0Z\" fill=\"#000\"/><path d=\"M2611 35.036 0 760v-5.98L2611 25v10.036Zm0-25L0 735v-5.98L2611 0v10.036Z\" fill=\"#FEC301\"/></svg>',withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ucw0a0\",\"data-framer-name\":\"Blog\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1az9djh\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9s2zpu\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:false,__framer__enter:animation16,__framer__exit:animation17,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-glj1se\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{q0MCN5HHs:{transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1Rlcm1pbmEgVGVzdCBFeHRyYSBMaWdodA==\",\"--framer-font-family\":'\"Termina Test Extra Light\", \"Termina Test Extra Light Placeholder\", sans-serif',\"--framer-font-size\":\"233px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f1729de2-d68d-40ca-b255-ee867f88a47b, rgb(238, 238, 238))\",\"--framer-text-transform\":\"capitalize\"},children:\"1\"})}),className:\"framer-1alwl1n\",fonts:[\"CUSTOM;Termina Test Extra Light\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13omlvr\",\"data-framer-name\":\"Card\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-py5cz6\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b1eeb3d9-badd-4f35-9e88-c51b1d08c430, rgb(238, 238, 238))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Rewrite the textbook \"}),\"on how businesses should run in the new age of AI.\"]})}),className:\"framer-834mtl\",fonts:[\"FS;Montserrat-regular\",\"FS;Montserrat-bold\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:false,__framer__enter:animation16,__framer__exit:animation18,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-vtb637\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1Rlcm1pbmEgVGVzdCBFeHRyYSBMaWdodA==\",\"--framer-font-family\":'\"Termina Test Extra Light\", \"Termina Test Extra Light Placeholder\", sans-serif',\"--framer-font-size\":\"233px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f1729de2-d68d-40ca-b255-ee867f88a47b, rgb(238, 238, 238))\",\"--framer-text-transform\":\"capitalize\"},children:\"2\"})}),className:\"framer-1vz23e\",fonts:[\"CUSTOM;Termina Test Extra Light\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1s1knpi\",\"data-framer-name\":\"Card\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-x1enlz\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b1eeb3d9-badd-4f35-9e88-c51b1d08c430, rgb(238, 238, 238))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Become Australia\u2019s leading holding company,\"}),\" setting the global standard for creating and capturing value.\"]})}),className:\"framer-cprwrd\",fonts:[\"FS;Montserrat-regular\",\"FS;Montserrat-bold\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:false,__framer__enter:animation16,__framer__exit:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ay6dr4\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1Rlcm1pbmEgVGVzdCBFeHRyYSBMaWdodA==\",\"--framer-font-family\":'\"Termina Test Extra Light\", \"Termina Test Extra Light Placeholder\", sans-serif',\"--framer-font-size\":\"233px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f1729de2-d68d-40ca-b255-ee867f88a47b, rgb(238, 238, 238))\",\"--framer-text-transform\":\"capitalize\"},children:\"3\"})}),className:\"framer-tmg4zb\",fonts:[\"CUSTOM;Termina Test Extra Light\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-aze64p\",\"data-framer-name\":\"Card\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-179wp0q\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b1eeb3d9-badd-4f35-9e88-c51b1d08c430, rgb(238, 238, 238))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Operate as the \u201Cdream buyer\u201D\"}),\" for entrepreneurs and founders \u2014 the \",/*#__PURE__*/_jsx(\"strong\",{children:\"exact\"}),\" company you wish you could have sold to, rather than settling for the traditional private equity route.\"]})}),className:\"framer-1sg6xh9\",fonts:[\"FS;Montserrat-regular\",\"FS;Montserrat-bold\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{q0MCN5HHs:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:380,intrinsicWidth:600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5770.46+0+0+0+708),pixelHeight:1350,pixelWidth:1350,positionX:\"center\",positionY:\"bottom\",sizes:\"398px\",src:\"https://framerusercontent.com/images/dYAFqlXObawkUGjl3j6so8.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/dYAFqlXObawkUGjl3j6so8.png?scale-down-to=512 512w,https://framerusercontent.com/images/dYAFqlXObawkUGjl3j6so8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/dYAFqlXObawkUGjl3j6so8.png 1350w\"}},RrrYrO80I:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:380,intrinsicWidth:600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3440.77+60+0+0),pixelHeight:1350,pixelWidth:1350,positionX:\"center\",positionY:\"bottom\",sizes:\"688px\",src:\"https://framerusercontent.com/images/dYAFqlXObawkUGjl3j6so8.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/dYAFqlXObawkUGjl3j6so8.png?scale-down-to=512 512w,https://framerusercontent.com/images/dYAFqlXObawkUGjl3j6so8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/dYAFqlXObawkUGjl3j6so8.png 1350w\"}},xNXtD9sUz:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:380,intrinsicWidth:600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3702.75+60+0+0),pixelHeight:1350,pixelWidth:1350,positionX:\"center\",positionY:\"bottom\",sizes:\"688px\",src:\"https://framerusercontent.com/images/dYAFqlXObawkUGjl3j6so8.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/dYAFqlXObawkUGjl3j6so8.png?scale-down-to=512 512w,https://framerusercontent.com/images/dYAFqlXObawkUGjl3j6so8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/dYAFqlXObawkUGjl3j6so8.png 1350w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:380,intrinsicWidth:600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3297.45+60+0+0),pixelHeight:1350,pixelWidth:1350,positionX:\"center\",positionY:\"bottom\",sizes:\"688px\",src:\"https://framerusercontent.com/images/dYAFqlXObawkUGjl3j6so8.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/dYAFqlXObawkUGjl3j6so8.png?scale-down-to=512 512w,https://framerusercontent.com/images/dYAFqlXObawkUGjl3j6so8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/dYAFqlXObawkUGjl3j6so8.png 1350w\"},className:\"framer-tbee3a\",\"data-framer-name\":\"Mockup\"})})]})}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sntvdb hidden-luj03p\",\"data-framer-name\":\"2 Columns Text Image\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1omc63x\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vpafd8\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z5h2w3\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1Rlcm1pbmEgVGVzdCBSZWd1bGFy\",\"--framer-font-family\":'\"Termina Test Regular\", \"Termina Test Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.25em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"OUR CORE VALUES\"})}),className:\"framer-lwgwa0\",fonts:[\"CUSTOM;Termina Test Regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation8,className:\"framer-1utg8a8\",\"data-border\":true,\"data-framer-appear-id\":\"1utg8a8\",\"data-framer-name\":\"Button\",initial:animation3,optimized:true,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1Rlcm1pbmEgVGVzdCBSZWd1bGFy\",\"--framer-font-family\":'\"Termina Test Regular\", \"Termina Test Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.25em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f1729de2-d68d-40ca-b255-ee867f88a47b, rgb(238, 238, 238))\",\"--framer-text-transform\":\"uppercase\"},children:\"SEE OUR CORE VALUES\"})}),className:\"framer-uc7th\",fonts:[\"CUSTOM;Termina Test Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-znytw6\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:58,svg:'<svg width=\"58\" height=\"48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect x=\".613\" y=\".862\" width=\"56.775\" height=\"47.138\" rx=\"18\" fill=\"#fff\" fill-opacity=\".2\"/><path d=\"m15.613 19.612 11.358 11.36a2.869 2.869 0 0 0 4.058 0l11.359-11.36\" stroke=\"#FBCE41\" stroke-width=\"3.825\" stroke-linecap=\"round\"/></svg>',withExternalLayout:true})]})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-bms7r6 hidden-luj03p\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-bxyyvk\",\"data-framer-name\":\"Graphic\",intrinsicHeight:760,intrinsicWidth:2611,style:{rotate:180},svg:'<svg width=\"2611\" height=\"760\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M0 760 2611 31v729H0Z\" fill=\"#000\"/><path d=\"M2611 35.036 0 760v-5.98L2611 25v10.036Zm0-25L0 735v-5.98L2611 0v10.036Z\" fill=\"#FEC301\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10xxerq\",children:/*#__PURE__*/_jsxs(\"header\",{className:\"framer-196xtn1\",\"data-framer-name\":\"Why Partner\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{q0MCN5HHs:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-x3ttti\",\"data-styles-preset\":\"Sgqu1GegR\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a62499c0-f5f7-41ff-866d-3b4c60a261e2, rgb(2, 0, 3))\"},children:\"WHY PARTNER WITH us\"})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1Rlcm1pbmEgVGVzdCBEZW1p\",\"--framer-font-family\":'\"Termina Test Demi\", \"Termina Test Demi Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-letter-spacing\":\"0.25em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-88f6797d-c643-4fa6-8666-ca2c59a16f60, rgb(2, 0, 3))\",\"--framer-text-transform\":\"uppercase\"},children:\"WHY PARTNER WITH us\"})}),className:\"framer-jljmuk\",fonts:[\"CUSTOM;Termina Test Demi\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1y2ium0\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:432,intrinsicWidth:524,svg:'<svg width=\"524\" height=\"432\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path d=\"m441.714 147.93.373-.745c42.774-4.659 64.207-33.727 64.207-67.734C506.294 29.699 459.607.63 385.708.63H225.889L178.27 94.265h66.443l17.613-34.659H403.6c6.244 0 12.487 1.211 17.892 4.286 9.599 5.217 14.817 13.696 14.817 27.019 0 20.217-11.835 29.162-32.336 32.702H112.386v.186C43.24 126.036 0 155.663 0 208.117c0 47.517 35.785 72.486 82.192 76.306l-.372.745c-42.774 4.659-64.207 33.727-64.207 67.734 0 49.752 46.687 78.821 120.586 78.821h159.818l47.62-93.635h-66.444l-17.612 34.659H120.307c-6.244 0-12.488-1.211-17.893-4.286-9.598-5.217-14.817-13.695-14.817-27.019 0-20.217 11.835-29.162 32.337-32.702h291.68v-.186C480.76 306.318 524 276.69 524 224.236c0-47.516-35.784-72.486-82.192-76.306h-.094Zm-3.634 96.71c-5.591 3.54-12.208 5.031-18.917 5.031h-28.982l18.265-36.616h-66.537l-18.265 36.616H100.085v.279c-1.678-.372-3.262-.745-4.846-1.211-14.91-4.751-23.018-14.255-23.018-32.702 0-13.976 4.753-22.827 13.699-28.417 5.591-3.54 12.208-5.031 18.917-5.031h28.982l-18.265 36.616h66.537l18.265-36.616h223.559v-.279c1.678.372 3.262.745 4.846 1.211 14.91 4.751 23.018 14.255 23.018 32.702 0 13.976-4.753 22.827-13.699 28.417Z\" fill=\"#fff\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(0 .63)\" d=\"M0 0h524v431H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o3g142\",\"data-framer-name\":\"Container/1080px\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-v6q49a\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{q0MCN5HHs:{height:260,width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,y:(componentViewport?.y||0)+0+7103.46+0+0+60+90.8+0+0+0+0},RrrYrO80I:{y:(componentViewport?.y||0)+0+4612.77+0+0+60+90+0+0+0},xNXtD9sUz:{y:(componentViewport?.y||0)+0+4874.75+0+0+60+90+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:210,width:\"528px\",y:(componentViewport?.y||0)+0+4469.45+0+0+60+90+0+0+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{q0MCN5HHs:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:false,__framer__enter:animation16,__framer__exit:animation20,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-lwh845-container\",isModuleExternal:true,nodeId:\"pGdBa0tWF\",rendersWithMotion:true,scopeId:\"xNglRLpPp\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{q0MCN5HHs:{style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(CardFeature,{height:\"100%\",hjN1y4eSN:\"Founder-Centric Approach\",id:\"pGdBa0tWF\",layoutId:\"pGdBa0tWF\",style:{width:\"100%\"},uHoXD8OXR:\"We\u2019re the modern, purpose-driven buyer that founders dream of\u2014removing hassles so they can focus on their passion.\\n\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{q0MCN5HHs:{height:249,width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,y:(componentViewport?.y||0)+0+7103.46+0+0+60+90.8+0+0+0+276},RrrYrO80I:{y:(componentViewport?.y||0)+0+4612.77+0+0+60+90+0+0+0},xNXtD9sUz:{y:(componentViewport?.y||0)+0+4874.75+0+0+60+90+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:210,width:\"528px\",y:(componentViewport?.y||0)+0+4469.45+0+0+60+90+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:false,__framer__enter:animation16,__framer__exit:animation20,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-5kz9y5-container\",isModuleExternal:true,nodeId:\"HiiYEqcl0\",rendersWithMotion:true,scopeId:\"xNglRLpPp\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{q0MCN5HHs:{style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(CardFeature,{height:\"100%\",hjN1y4eSN:\"Proven Track Record\",id:\"HiiYEqcl0\",layoutId:\"HiiYEqcl0\",style:{width:\"100%\"},uHoXD8OXR:\"From Culture Kings\u2019 success to our forward-thinking AI strategies, we bring deep operational expertise to scale businesses rapidly.\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14360dm\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{q0MCN5HHs:{height:228,width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,y:(componentViewport?.y||0)+0+7103.46+0+0+60+90.8+0+541+0+0},RrrYrO80I:{y:(componentViewport?.y||0)+0+4612.77+0+0+60+90+0+234+0},xNXtD9sUz:{y:(componentViewport?.y||0)+0+4874.75+0+0+60+90+0+234+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:210,width:\"344px\",y:(componentViewport?.y||0)+0+4469.45+0+0+60+90+0+234+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:false,__framer__enter:animation16,__framer__exit:animation20,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-uzbuzv-container\",isModuleExternal:true,nodeId:\"ttTLKQSQe\",rendersWithMotion:true,scopeId:\"xNglRLpPp\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{q0MCN5HHs:{style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(CardFeature,{height:\"100%\",hjN1y4eSN:\"Future-Ready\",id:\"ttTLKQSQe\",layoutId:\"ttTLKQSQe\",style:{width:\"100%\"},uHoXD8OXR:\"We constantly embrace new technologies and methodologies, staying ahead of the curve to unlock new opportunities.\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{q0MCN5HHs:{width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,y:(componentViewport?.y||0)+0+7103.46+0+0+60+90.8+0+541+0+244},RrrYrO80I:{y:(componentViewport?.y||0)+0+4612.77+0+0+60+90+0+234+0},xNXtD9sUz:{y:(componentViewport?.y||0)+0+4874.75+0+0+60+90+0+234+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:210,width:\"344px\",y:(componentViewport?.y||0)+0+4469.45+0+0+60+90+0+234+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:false,__framer__enter:animation16,__framer__exit:animation20,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1jaymbr-container\",isModuleExternal:true,nodeId:\"qJttBwrDp\",rendersWithMotion:true,scopeId:\"xNglRLpPp\",children:/*#__PURE__*/_jsx(CardFeature,{height:\"100%\",hjN1y4eSN:\"Real Value Creation & Shared Rewards\",id:\"qJttBwrDp\",layoutId:\"qJttBwrDp\",style:{width:\"100%\"},uHoXD8OXR:\"We don\u2019t just talk about synergy; we make it tangible with shared equity, bonuses, and ongoing collaboration.\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{q0MCN5HHs:{width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,y:(componentViewport?.y||0)+0+7103.46+0+0+60+90.8+0+541+0+470},RrrYrO80I:{y:(componentViewport?.y||0)+0+4612.77+0+0+60+90+0+234+0},xNXtD9sUz:{y:(componentViewport?.y||0)+0+4874.75+0+0+60+90+0+234+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:210,width:\"344px\",y:(componentViewport?.y||0)+0+4469.45+0+0+60+90+0+234+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:false,__framer__enter:animation16,__framer__exit:animation20,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-tkxok7-container\",isModuleExternal:true,nodeId:\"jDeMAyCUJ\",rendersWithMotion:true,scopeId:\"xNglRLpPp\",children:/*#__PURE__*/_jsx(CardFeature,{height:\"100%\",hjN1y4eSN:\"Transparent & Purpose-Driven\",id:\"jDeMAyCUJ\",layoutId:\"jDeMAyCUJ\",style:{width:\"100%\"},uHoXD8OXR:\"Our core measure is the emotional uplift we create for everyone involved\u2014even beyond just financial gains.\\n\",width:\"100%\"})})})})]})]})]})}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-m6xins\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-277cn0\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:162,intrinsicWidth:712,svg:'<svg width=\"712\" height=\"162\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#FEC301\"><path d=\"M220.34 155.52c0-3 2.48-5.36 6.06-5.36 3.58 0 6 2.36 6 5.36 0 3-2.48 5.3-6 5.3s-6.06-2.24-6.06-5.3Zm74.439-10.14 9.32 4.66c-4.22 6.32-12.82 11.42-24.5 11.42-16.78 0-27.7-8.86-27.7-23.74 0-14.88 10.92-23.74 28.14-23.74 11.22 0 19.84 5.16 23.92 11.36l-9.38 4.66c-3.2-4.98-8.04-7.2-14.68-7.2-10.6 0-17.6 5.1-17.6 14.92s7.02 14.92 17.6 14.92c6.64 0 11.54-2.16 14.86-7.28l.02.02Zm29.841-7.66c0-14.92 10.98-23.74 28.4-23.74 17.42 0 28.4 8.8 28.4 23.74 0 14.94-10.98 23.74-28.4 23.74-17.42 0-28.4-8.8-28.4-23.74Zm46.38 0c0-9.58-6.96-14.92-18-14.92s-18 5.36-18 14.92c0 9.56 6.9 14.92 18 14.92s18-5.36 18-14.92Zm91.36-22.34v44.66h-10.2v-31.08l-19.58 23.92h-.52l-19.58-23.92v31.08h-9.88v-44.66h11.1l18.88 23.6 18.88-23.6h10.92-.02Zm-353-45.5c0 17.06-14.58 26.42-37.7 26.42H0V0h66.16c23.1 0 37.7 9.08 37.7 24.62 0 11-7.16 20.36-21.46 21.32 15.14.82 26.96 8.66 26.96 23.94ZM21.74 39.06H62.6c11.96 0 19.4-1.92 19.4-10.86s-7.42-10.86-19.4-10.86H21.74v21.74-.02ZM86.8 67.4c0-9.76-7.3-11.56-19.68-11.56H21.74v23.12h45.4c12.38 0 19.68-1.92 19.68-11.56h-.02Zm297.42 8.54h-58.18L315.72 96.3H292.2L343.24 0h24.08l51.04 96.3h-23.8l-10.32-20.36h-.02ZM375 58.04l-19.94-39.2-19.94 39.2h39.9-.02ZM536.66 96.3l-27.64-32.74h-34.8V96.3h-21.88V0h66.44c23.52 0 41.26 10.86 41.26 31.78 0 16.36-10.86 26.54-26.82 30.26l29.72 34.26h-26.28Zm-19.12-50.9c11.56 0 20.08-2.76 20.08-13.48s-8.52-13.48-20.08-13.48h-43.46V45.4h43.46Zm193.72 2.74c0 29.98-23.24 48.14-59.56 48.14h-51.18V0h51.18c36.32 0 59.56 18.16 59.56 48.14Zm-22.42 0c0-19.8-15.681-29.44-38.801-29.44H622.52v58.88h27.519c23.12 0 38.801-9.62 38.801-29.44ZM279.14 0h-90.32l-9.8 18.44h90.34L279.14 0ZM149.66 77.86l-9.78 18.44h90.32l9.8-18.44h-90.34Zm19.579-38.94-9.8 18.44h90.34l9.8-18.44h-90.34Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h711.26v161.46H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{q0MCN5HHs:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-2e0pby\",\"data-styles-preset\":\"jtpOaLYZX\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-055ee7e2-7589-493d-8f06-30f52832c6d1, rgb(238, 238, 238))\"},children:\"THE NEXT GENERATION OF PRIVATE EQUITY\"})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1Rlcm1pbmEgVGVzdCBEZW1p\",\"--framer-font-family\":'\"Termina Test Demi\", \"Termina Test Demi Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"0.25em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(232, 232, 232)\"},children:\"THE NEXT GENERATION OF PRIVATE EQUITY\"})}),className:\"framer-1mrpexd\",fonts:[\"CUSTOM;Termina Test Demi\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation8,className:\"framer-1dmozsj\",\"data-border\":true,\"data-framer-appear-id\":\"1dmozsj\",\"data-framer-name\":\"Button\",initial:animation3,optimized:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{q0MCN5HHs:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1Rlcm1pbmEgVGVzdCBSZWd1bGFy\",\"--framer-font-family\":'\"Termina Test Regular\", \"Termina Test Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.25em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-055ee7e2-7589-493d-8f06-30f52832c6d1, rgb(238, 238, 238))\",\"--framer-text-transform\":\"uppercase\"},children:\"join us now\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1Rlcm1pbmEgVGVzdCBSZWd1bGFy\",\"--framer-font-family\":'\"Termina Test Regular\", \"Termina Test Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.25em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f1729de2-d68d-40ca-b255-ee867f88a47b, rgb(238, 238, 238))\",\"--framer-text-transform\":\"uppercase\"},children:\"join us now\"})}),className:\"framer-1j0nrc3\",fonts:[\"CUSTOM;Termina Test Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-14xd2hr\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:267,intrinsicWidth:141,svg:'<svg width=\"141\" height=\"267\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill=\"#FBCE41\" d=\"M0 0h141v267H0z\"/><g clip-path=\"url(#a)\"><path d=\"m98.845 54.553.06-.119c6.838-.745 10.264-5.393 10.264-10.83 0-7.956-7.463-12.604-19.277-12.604h-25.55L56.73 45.972h10.623l2.815-5.542h22.585c.998 0 1.996.194 2.86.686 1.535.834 2.37 2.19 2.37 4.32 0 3.233-1.893 4.663-5.17 5.229H46.197v.03c-11.055.357-17.967 5.095-17.967 13.482 0 7.598 5.72 11.59 13.14 12.201l-.06.12c-6.838.745-10.264 5.393-10.264 10.83 0 7.956 7.463 12.604 19.277 12.604h25.55l7.613-14.972H72.864l-2.816 5.542H47.463c-.998 0-1.996-.194-2.86-.686-1.535-.834-2.37-2.19-2.37-4.32 0-3.233 1.893-4.663 5.17-5.23h46.63v-.029C105.087 79.879 112 75.142 112 66.755c0-7.598-5.721-11.59-13.14-12.202h-.015Zm-.58 15.464c-.895.566-1.952.805-3.025.805h-4.633l2.92-5.855H82.89l-2.92 5.855H44.23v.044a11.75 11.75 0 0 1-.774-.193c-2.384-.76-3.68-2.28-3.68-5.23 0-2.234.76-3.65 2.19-4.543.894-.566 1.951-.805 3.024-.805h4.633l-2.92 5.855H57.34l2.92-5.855H96v-.044c.268.06.521.119.775.193 2.383.76 3.679 2.28 3.679 5.23 0 2.234-.76 3.65-2.19 4.543Z\" fill=\"#212121\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(28.23 31)\" d=\"M0 0h83.77v68.917H0z\"/></clipPath></defs></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-134l1k2\",\"data-framer-name\":\"Footer\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lpvkzh\",\"data-framer-name\":\"Frame 38\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-khxtfz\",\"data-framer-name\":\"List\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ffpprp\",\"data-framer-name\":\"Frame 32\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-fztjaw\",\"data-border\":true,\"data-framer-name\":\"Item\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1Rlcm1pbmEgVGVzdCBSZWd1bGFy\",\"--framer-font-family\":'\"Termina Test Regular\", \"Termina Test Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.25em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(232, 232, 232)\",\"--framer-text-transform\":\"uppercase\"},children:\"ABOUT\"})}),className:\"framer-17cygoi\",\"data-framer-name\":\"Link \u2192 Buy Creatine Gummies\",fonts:[\"CUSTOM;Termina Test Regular\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1w6xnt6\",\"data-border\":true,\"data-framer-name\":\"Item\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1Rlcm1pbmEgVGVzdCBSZWd1bGFy\",\"--framer-font-family\":'\"Termina Test Regular\", \"Termina Test Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.25em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(232, 232, 232)\",\"--framer-text-transform\":\"uppercase\"},children:\"CREATORS\"})}),className:\"framer-uqrdiy\",\"data-framer-name\":\"Link \u2192 Become an Affiliate\",fonts:[\"CUSTOM;Termina Test Regular\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ujkt9\",\"data-border\":true,\"data-framer-name\":\"Item\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{q0MCN5HHs:{transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1Rlcm1pbmEgVGVzdCBSZWd1bGFy\",\"--framer-font-family\":'\"Termina Test Regular\", \"Termina Test Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.25em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(232, 232, 232)\",\"--framer-text-transform\":\"uppercase\"},children:\"BUSINESS OWNERS\"})}),className:\"framer-vl3ii2\",\"data-framer-name\":\"Link \u2192 Become a Wholesaler\",fonts:[\"CUSTOM;Termina Test Regular\"],verticalAlignment:\"center\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-oppss3\",\"data-border\":true,\"data-framer-name\":\"Item\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1Rlcm1pbmEgVGVzdCBSZWd1bGFy\",\"--framer-font-family\":'\"Termina Test Regular\", \"Termina Test Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.25em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(232, 232, 232)\",\"--framer-text-transform\":\"uppercase\"},children:\"JOIN US\"})}),className:\"framer-1qoyvn4\",\"data-framer-name\":\"Link \u2192 Manage Subscription\",fonts:[\"CUSTOM;Termina Test Regular\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1p3ll8i\",\"data-border\":true,\"data-framer-name\":\"Item\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1Rlcm1pbmEgVGVzdCBSZWd1bGFy\",\"--framer-font-family\":'\"Termina Test Regular\", \"Termina Test Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.25em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(232, 232, 232)\",\"--framer-text-transform\":\"uppercase\"},children:\"HERE TO LEARN\"})}),className:\"framer-oakfj9\",\"data-framer-name\":\"Link \u2192 Manage Subscription\",fonts:[\"CUSTOM;Termina Test Regular\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-f54qcl\",\"data-border\":true,\"data-framer-name\":\"Item\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1Rlcm1pbmEgVGVzdCBSZWd1bGFy\",\"--framer-font-family\":'\"Termina Test Regular\", \"Termina Test Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.25em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(232, 232, 232)\",\"--framer-text-transform\":\"uppercase\"},children:\"Contact Us\"})}),className:\"framer-1q56xxk\",\"data-framer-name\":\"Link \u2192 Contact Us\",fonts:[\"CUSTOM;Termina Test Regular\"],verticalAlignment:\"center\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wpk7tl\",\"data-framer-name\":\"Frame 37\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1Rlcm1pbmEgVGVzdCBCb2xk\",\"--framer-font-family\":'\"Termina Test Bold\", \"Termina Test Bold Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-letter-spacing\":\"0.15em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7bc93b1c-63f2-4d8c-8aa1-e9b2ddb286e4, rgb(254, 195, 1))\"},children:\"JOIN THE DREAM TEAM\"})}),className:\"framer-1lckjyv\",\"data-framer-name\":\"Join the Apex Commmunity\",fonts:[\"CUSTOM;Termina Test Bold\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ddgjes\",\"data-border\":true,\"data-framer-name\":\"Form\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-q9vbvv\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Email\"})}),className:\"framer-crdojr\",\"data-framer-name\":\"Email\",fonts:[\"GF;Montserrat-300\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ct168s\",\"data-border\":true,\"data-framer-name\":\"Button - Subscribe\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1ib2xk\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.37px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-88f6797d-c643-4fa6-8666-ca2c59a16f60, rgb(2, 0, 3))\"},children:\"Sign up\"})}),className:\"framer-sc3mdf\",\"data-framer-name\":\"Sign up\",fonts:[\"FS;Montserrat-bold\"],transformTemplate:transformTemplate2,verticalAlignment:\"center\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qe747w\",\"data-framer-name\":\"Frame 36\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1Rlcm1pbmEgVGVzdCBCb2xk\",\"--framer-font-family\":'\"Termina Test Bold\", \"Termina Test Bold Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-letter-spacing\":\"0.15em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7bc93b1c-63f2-4d8c-8aa1-e9b2ddb286e4, rgb(254, 195, 1))\"},children:\"FOLLOW US\"})}),className:\"framer-s85vqy\",\"data-framer-name\":\"Follow Us @apexflow\",fonts:[\"CUSTOM;Termina Test Bold\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1f80ti5\",\"data-framer-name\":\"Frame 35\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:45,intrinsicWidth:166,svg:'<svg width=\"166\" height=\"45\" viewBox=\"0 0 166 45\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect x=\"0.660156\" width=\"45\" height=\"45\" rx=\"16\" fill=\"#1E1E1E\"/>\\n<path d=\"M23.1602 12.417C26.4463 12.417 26.832 12.4316 28.1309 12.4902C29.332 12.5439 29.9814 12.7441 30.416 12.915C30.9922 13.1396 31.4023 13.4033 31.832 13.833C32.2617 14.2627 32.5303 14.6729 32.75 15.249C32.916 15.6836 33.1211 16.333 33.1748 17.5342C33.2334 18.833 33.248 19.2187 33.248 22.5049C33.248 25.791 33.2334 26.1768 33.1748 27.4756C33.1211 28.6768 32.9209 29.3262 32.75 29.7607C32.5254 30.3369 32.2617 30.7471 31.832 31.1768C31.4023 31.6064 30.9922 31.875 30.416 32.0947C29.9814 32.2607 29.332 32.4658 28.1309 32.5195C26.832 32.5781 26.4463 32.5928 23.1602 32.5928C19.874 32.5928 19.4883 32.5781 18.1895 32.5195C16.9883 32.4658 16.3389 32.2656 15.9043 32.0947C15.3281 31.8701 14.918 31.6064 14.4883 31.1768C14.0586 30.7471 13.79 30.3369 13.5703 29.7607C13.4043 29.3262 13.1992 28.6768 13.1455 27.4756C13.0869 26.1768 13.0723 25.791 13.0723 22.5049C13.0723 19.2187 13.0869 18.833 13.1455 17.5342C13.1992 16.333 13.3994 15.6836 13.5703 15.249C13.7949 14.6729 14.0586 14.2627 14.4883 13.833C14.918 13.4033 15.3281 13.1348 15.9043 12.915C16.3389 12.749 16.9883 12.5439 18.1895 12.4902C19.4883 12.4268 19.874 12.417 23.1602 12.417ZM23.1602 10.2002C19.8203 10.2002 19.4004 10.2148 18.0869 10.2734C16.7783 10.332 15.8848 10.542 15.1035 10.8447C14.293 11.1572 13.6094 11.582 12.9258 12.2656C12.2422 12.9492 11.8223 13.6377 11.5049 14.4434C11.2021 15.2246 10.9922 16.1182 10.9336 17.4316C10.875 18.7402 10.8604 19.1602 10.8604 22.5C10.8604 25.8398 10.875 26.2598 10.9336 27.5732C10.9922 28.8818 11.2021 29.7754 11.5049 30.5615C11.8174 31.3721 12.2422 32.0557 12.9258 32.7393C13.6094 33.4229 14.2979 33.8428 15.1035 34.1602C15.8848 34.4629 16.7783 34.6729 18.0918 34.7314C19.4053 34.79 19.8203 34.8047 23.165 34.8047C26.5098 34.8047 26.9248 34.79 28.2383 34.7314C29.5469 34.6729 30.4404 34.4629 31.2266 34.1602C32.0371 33.8477 32.7207 33.4229 33.4043 32.7393C34.0879 32.0557 34.5078 31.3672 34.8252 30.5615C35.1279 29.7803 35.3379 28.8867 35.3965 27.5732C35.4551 26.2598 35.4697 25.8447 35.4697 22.5C35.4697 19.1553 35.4551 18.7402 35.3965 17.4268C35.3379 16.1182 35.1279 15.2246 34.8252 14.4385C34.5127 13.6279 34.0879 12.9443 33.4043 12.2607C32.7207 11.5771 32.0322 11.1572 31.2266 10.8398C30.4453 10.5371 29.5518 10.3271 28.2383 10.2686C26.9199 10.2148 26.5 10.2002 23.1602 10.2002Z\" fill=\"#EEEEEE\"/>\\n<path d=\"M23.1602 16.1816C19.6738 16.1816 16.8418 19.0088 16.8418 22.5C16.8418 25.9912 19.6738 28.8184 23.1602 28.8184C26.6465 28.8184 29.4785 25.9863 29.4785 22.5C29.4785 19.0137 26.6465 16.1816 23.1602 16.1816ZM23.1602 26.6016C20.8945 26.6016 19.0586 24.7656 19.0586 22.5C19.0586 20.2344 20.8945 18.3984 23.1602 18.3984C25.4258 18.3984 27.2617 20.2344 27.2617 22.5C27.2617 24.7656 25.4258 26.6016 23.1602 26.6016Z\" fill=\"#EEEEEE\"/>\\n<path d=\"M29.7275 17.4072C30.5419 17.4072 31.2021 16.747 31.2021 15.9326C31.2021 15.1182 30.5419 14.458 29.7275 14.458C28.9131 14.458 28.2529 15.1182 28.2529 15.9326C28.2529 16.747 28.9131 17.4072 29.7275 17.4072Z\" fill=\"#EEEEEE\"/>\\n<rect x=\"60.6602\" width=\"45\" height=\"45\" rx=\"16\" fill=\"#1E1E1E\"/>\\n<path d=\"M88.7033 23.5349L89.3712 19.1802H85.1931V16.3544C85.1931 15.163 85.7768 14.0016 87.6482 14.0016H89.5478V10.2942C89.5478 10.2942 87.8238 10 86.1755 10C82.7344 10 80.4853 12.0856 80.4853 15.8612V19.1802H76.6602V23.5349H80.4853V34.0622H85.1931V23.5349H88.7033Z\" fill=\"white\"/>\\n<rect x=\"120.66\" width=\"45\" height=\"45\" rx=\"16\" fill=\"#1E1E1E\"/>\\n<path d=\"M150.645 14.8597C149.339 14.008 148.396 12.6458 148.102 11.0578C148.039 10.7145 148.004 10.3615 148.004 10H143.836L143.829 26.7047C143.759 28.5753 142.219 30.0768 140.332 30.0768C139.745 30.0768 139.193 29.9302 138.706 29.674C137.591 29.087 136.828 27.9179 136.828 26.5728C136.828 24.6406 138.4 23.0688 140.332 23.0688C140.692 23.0688 141.038 23.1283 141.365 23.2307V18.9753C141.027 18.9292 140.683 18.9005 140.332 18.9005C136.102 18.9009 132.66 22.3426 132.66 26.5728C132.66 29.1684 133.957 31.4653 135.935 32.8541C137.181 33.7289 138.697 34.2447 140.332 34.2447C144.562 34.2447 148.004 30.803 148.004 26.5728V18.1022C149.639 19.2758 151.642 19.9672 153.803 19.9672V15.7988C152.639 15.7988 151.554 15.4527 150.645 14.8597Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"rgb(255, 244, 255)\"},children:\"\\xa9 2025, Beard.com. All Rights Reserved.\"})}),className:\"framer-1x6vd3o\",\"data-framer-name\":\"\\xa9 2024, Apex Flow. All Rights Reserved.\",fonts:[\"Inter-Light\"],verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xjvcxz\",\"data-framer-name\":\"List\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"rgb(255, 244, 255)\"},children:\"Terms & Conditions\"})}),className:\"framer-g2r7fy\",\"data-framer-name\":\"Item \u2192 Link \u2192 Terms & Conditions\",fonts:[\"Inter-Light\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"rgb(255, 244, 255)\"},children:\"Privacy Policy\"})}),className:\"framer-dm421s\",\"data-framer-name\":\"Item \u2192 Link \u2192 Privacy Policy\",fonts:[\"Inter-Light\"],verticalAlignment:\"center\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-GPiFO.framer-1rzf4k1, .framer-GPiFO .framer-1rzf4k1 { display: block; }\",\".framer-GPiFO.framer-77ephm { align-content: center; align-items: center; background-color: var(--token-b1ede605-497e-4b87-8618-25bcd26941d3, #212121); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-GPiFO .framer-1f7c6hb-container { -webkit-user-select: none; flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; user-select: none; z-index: 10; }\",\".framer-GPiFO .framer-k44b2j-container { -webkit-user-select: none; flex: none; height: auto; left: 0px; position: absolute; right: 0px; top: 0px; user-select: none; z-index: 10; }\",\".framer-GPiFO .framer-ue5pnn { align-content: center; align-items: center; background: linear-gradient(180deg, #2b2b2b 10%, var(--token-88f6797d-c643-4fa6-8666-ca2c59a16f60, rgb(2, 0, 3)) 48.3404420045045%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 40px 30px 40px; position: relative; width: 100%; }\",\".framer-GPiFO .framer-abog2y { aspect-ratio: 4.395061728395062 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 69px); position: relative; width: 303px; }\",\".framer-GPiFO .framer-8104w6 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 70%; position: relative; white-space: pre-wrap; width: auto; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-GPiFO .framer-olwqzm { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: 1160px; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-GPiFO .framer-15wcpmz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-GPiFO .framer-mgzzul { --border-bottom-width: 2px; --border-color: var(--token-7bc93b1c-63f2-4d8c-8aa1-e9b2ddb286e4, #fec301); --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: center; align-items: center; border-bottom-left-radius: 23px; border-bottom-right-radius: 23px; border-top-left-radius: 23px; border-top-right-radius: 23px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 30px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-GPiFO .framer-1gl4qak, .framer-GPiFO .framer-uc7th, .framer-GPiFO .framer-1j0nrc3 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-GPiFO .framer-5qc0v7, .framer-GPiFO .framer-1nnq6wv, .framer-GPiFO .framer-znytw6 { aspect-ratio: 1.2083333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 36px); position: relative; width: 44px; }\",\".framer-GPiFO .framer-1b3gjdh { aspect-ratio: 1.212962962962963 / 1; bottom: 0px; flex: none; left: -366px; opacity: 0.1; position: absolute; top: -20px; width: var(--framer-aspect-ratio-supported, 772px); z-index: 0; }\",\".framer-GPiFO .framer-nqmn28 { align-content: center; align-items: center; background: linear-gradient(180deg, var(--token-88f6797d-c643-4fa6-8666-ca2c59a16f60, #020003) 35%, var(--token-b1ede605-497e-4b87-8618-25bcd26941d3, rgb(33, 33, 33)) 90.71121903153153%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 960px; overflow: hidden; padding: 60px 110px 170px 110px; position: relative; width: 100%; }\",\".framer-GPiFO .framer-edwxjj { aspect-ratio: 3.4355263157894735 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 760px); left: -345px; position: absolute; right: -346px; top: 0px; z-index: 1; }\",\".framer-GPiFO .framer-1mylcxu { aspect-ratio: 3.4355263157894735 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 58px); left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 117%; z-index: 1; }\",\".framer-GPiFO .framer-rffgj8 { bottom: 19px; flex: none; height: 360px; left: -92px; overflow: hidden; position: absolute; right: -93px; z-index: 1; }\",\".framer-GPiFO .framer-74f9j0 { bottom: -79px; flex: none; left: calc(50.00000000000002% - 216.4102564102564% / 2); position: absolute; top: -42px; width: 216%; z-index: 0; }\",\".framer-GPiFO .framer-201lmv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 799px; justify-content: center; left: calc(50.00000000000002% - 90% / 2); overflow: hidden; padding: 0px; position: absolute; top: 60px; width: 90%; z-index: 1; }\",\".framer-GPiFO .framer-ejhqh3-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-GPiFO .framer-hur3pd { align-content: center; align-items: center; background: linear-gradient(180deg, var(--token-ce3bc974-4c57-4493-a4d4-2904dcbe93f0, #212121) 62%, var(--token-88f6797d-c643-4fa6-8666-ca2c59a16f60, rgb(2, 0, 3)) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-GPiFO .framer-a8eiub { 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%; z-index: 1; }\",\".framer-GPiFO .framer-1tqvrgl { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 70%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-GPiFO .framer-1mbdjp0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-GPiFO .framer-yf4uht, .framer-GPiFO .framer-1e42iuk, .framer-GPiFO .framer-18ka7m6 { aspect-ratio: 3.1417004048582995 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 124px); overflow: visible; position: relative; width: 388px; }\",\".framer-GPiFO .framer-1tr3h3a { flex: none; height: 599px; overflow: hidden; position: relative; width: 1444px; z-index: 1; }\",\".framer-GPiFO .framer-al6qnt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 23px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px; position: absolute; top: 8px; transform: translateX(-50%); width: 82%; }\",\".framer-GPiFO .framer-q37yor, .framer-GPiFO .framer-s7y8ee, .framer-GPiFO .framer-1pgk7du { border-bottom-left-radius: 45px; border-bottom-right-radius: 45px; border-top-left-radius: 45px; border-top-right-radius: 45px; flex: none; height: 488px; overflow: hidden; position: relative; width: 375px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-GPiFO .framer-16bgpk1 { flex: none; height: 760px; position: relative; width: 2131px; z-index: 0; }\",\".framer-GPiFO .framer-1ysnmam { flex: none; height: 508px; overflow: hidden; position: relative; width: 111%; }\",\".framer-GPiFO .framer-1211rgc { border-bottom-left-radius: 18px; border-bottom-right-radius: 18px; border-top-left-radius: 18px; border-top-right-radius: 18px; box-shadow: 10px 31px 32px 10px rgba(0, 0, 0, 0.25); flex: none; height: 257px; left: 19px; overflow: hidden; position: absolute; top: 34px; width: 198px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-GPiFO .framer-1a7s16 { border-bottom-left-radius: 18px; border-bottom-right-radius: 18px; border-top-left-radius: 18px; border-top-right-radius: 18px; box-shadow: 10px 31px 32px 10px rgba(0, 0, 0, 0.25); flex: none; height: 258px; left: 175px; overflow: hidden; position: absolute; top: calc(46.85039370078742% - 258px / 2); width: 199px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-GPiFO .framer-1j2bmal { border-bottom-left-radius: 18px; border-bottom-right-radius: 18px; border-top-left-radius: 18px; border-top-right-radius: 18px; bottom: 22px; box-shadow: 10px 10px 25px 40px rgba(0, 0, 0, 0.25); flex: none; height: 240px; left: 32px; overflow: hidden; position: absolute; width: 185px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-GPiFO .framer-8quu0o { align-content: center; align-items: center; background: linear-gradient(180deg, var(--token-88f6797d-c643-4fa6-8666-ca2c59a16f60, #020003) 63.91997466216216%, rgb(33, 33, 33) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 85px; height: min-content; justify-content: center; overflow: hidden; padding: 60px 40px 120px 40px; position: relative; width: 100%; }\",\".framer-GPiFO .framer-oc7bq1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-GPiFO .framer-d56kh5 { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-GPiFO .framer-1c9m5f8 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 80%; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-GPiFO .framer-1w3i6cv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 17px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-GPiFO .framer-5dmpu8, .framer-GPiFO .framer-1i57we5, .framer-GPiFO .framer-1dlovnt, .framer-GPiFO .framer-c4obt9 { flex: none; height: 665px; overflow: visible; position: relative; width: 312px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-GPiFO .framer-1s0afaq, .framer-GPiFO .framer-8igk79, .framer-GPiFO .framer-dh7nze { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: -33px; position: absolute; top: 284px; white-space: pre-wrap; width: 629px; word-break: break-word; word-wrap: break-word; }\",\".framer-GPiFO .framer-8owud1, .framer-GPiFO .framer-19rmslm, .framer-GPiFO .framer-r3ck2f, .framer-GPiFO .framer-1exnbi6 { background-color: #dfdfdf; border-bottom-left-radius: 45px; border-bottom-right-radius: 45px; border-top-left-radius: 45px; border-top-right-radius: 45px; flex: none; height: 593px; left: 7px; overflow: hidden; position: absolute; top: 36px; width: 264px; will-change: var(--framer-will-change-override, transform); }\",\".framer-GPiFO .framer-1isoo8w { aspect-ratio: 0.9104003994340051 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 590px); left: -110px; position: absolute; right: -163px; top: 0px; }\",\".framer-GPiFO .framer-1hhowrt { background: linear-gradient(180deg, rgba(10, 10, 10, 0) 0%, rgb(10, 10, 10) 19.499999284744263%, rgb(10, 10, 10) 100%); bottom: -7px; flex: none; height: 308px; left: -2px; opacity: 0.9; position: absolute; right: -1px; }\",\".framer-GPiFO .framer-16n5wrf { align-content: flex-start; align-items: flex-start; bottom: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; left: 29px; overflow: visible; padding: 0px; position: absolute; right: 26px; }\",\".framer-GPiFO .framer-13d82xs, .framer-GPiFO .framer-1bgsjue, .framer-GPiFO .framer-1dxeavc, .framer-GPiFO .framer-vw58vb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 518px; }\",\".framer-GPiFO .framer-1dx9n84, .framer-GPiFO .framer-h3a1kh, .framer-GPiFO .framer-1kj84au, .framer-GPiFO .framer-lulgo4, .framer-GPiFO .framer-tr7hjm, .framer-GPiFO .framer-dluoxl, .framer-GPiFO .framer-1kihhh4, .framer-GPiFO .framer-1k1hriq { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 220px; word-break: break-word; word-wrap: break-word; }\",\".framer-GPiFO .framer-1y5x7mf { --border-bottom-width: 2px; --border-color: var(--token-7bc93b1c-63f2-4d8c-8aa1-e9b2ddb286e4, #fec301); --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: center; align-items: center; background-color: var(--token-88f6797d-c643-4fa6-8666-ca2c59a16f60, #020003); border-bottom-left-radius: 22px; border-bottom-right-radius: 22px; border-top-left-radius: 22px; border-top-right-radius: 22px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 54px; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 221px; }\",\".framer-GPiFO .framer-15e9h9v, .framer-GPiFO .framer-8sqm1v, .framer-GPiFO .framer-cbfmyv, .framer-GPiFO .framer-ukxlwi { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-GPiFO .framer-9116oo { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: -63px; position: absolute; top: 253px; white-space: pre-wrap; width: 629px; word-break: break-word; word-wrap: break-word; }\",\".framer-GPiFO .framer-7utuli { aspect-ratio: 0.6674804750490355 / 1; bottom: -11px; flex: none; height: var(--framer-aspect-ratio-supported, 604px); left: -64px; position: absolute; right: -76px; }\",\".framer-GPiFO .framer-a06570, .framer-GPiFO .framer-1bvcfot, .framer-GPiFO .framer-13vjrt1 { background: linear-gradient(180deg, rgba(10, 10, 10, 0) 0%, rgb(10, 10, 10) 19.499999284744263%, rgb(10, 10, 10) 100%); bottom: -10px; flex: none; height: 308px; left: -2px; opacity: 0.9; position: absolute; right: -1px; }\",\".framer-GPiFO .framer-tjd8z5, .framer-GPiFO .framer-1ou9tq9, .framer-GPiFO .framer-xjgqmx { align-content: flex-start; align-items: flex-start; bottom: 27px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; left: 29px; overflow: visible; padding: 0px; position: absolute; right: 26px; }\",\".framer-GPiFO .framer-1csxsa7, .framer-GPiFO .framer-1eug6vf, .framer-GPiFO .framer-t6q2ux { --border-bottom-width: 2px; --border-color: var(--token-7bc93b1c-63f2-4d8c-8aa1-e9b2ddb286e4, #fec301); --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: center; align-items: center; border-bottom-left-radius: 22px; border-bottom-right-radius: 22px; border-top-left-radius: 22px; border-top-right-radius: 22px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 54px; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 221px; }\",\".framer-GPiFO .framer-1tjj2g4 { aspect-ratio: 0.8 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 593px); left: -97px; position: absolute; right: -112px; top: -1px; }\",\".framer-GPiFO .framer-1m9ucdc { aspect-ratio: 0.9104003994340051 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 658px); left: -167px; position: absolute; top: -64px; width: 598px; }\",\".framer-GPiFO .framer-16ht4cy { aspect-ratio: 0.6674804750490355 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 578px); left: -62px; position: absolute; top: 0px; width: 386px; }\",\".framer-GPiFO .framer-1rmavls { aspect-ratio: 0.8 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 593px); left: -98px; position: absolute; top: 0px; width: 474px; }\",\".framer-GPiFO .framer-1rjfolo { aspect-ratio: 0.7809076531997559 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 605px); left: -20px; position: absolute; top: -1px; width: 473px; }\",\".framer-GPiFO .framer-1vs8j8t, .framer-GPiFO .framer-1sntvdb { align-content: center; align-items: center; background-color: var(--token-b1ede605-497e-4b87-8618-25bcd26941d3, #212121); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-GPiFO .framer-n5ievl { align-content: center; align-items: center; align-self: stretch; background-color: var(--token-b1ede605-497e-4b87-8618-25bcd26941d3, #212121); display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 60px; position: relative; width: 1px; }\",\".framer-GPiFO .framer-1u9lvrz, .framer-GPiFO .framer-1vpafd8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 2018px; padding: 0px; position: relative; width: 576px; }\",\".framer-GPiFO .framer-ap8npo { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 200%; word-break: break-word; word-wrap: break-word; }\",\".framer-GPiFO .framer-v3t57p { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 200%; word-break: break-word; word-wrap: break-word; }\",\".framer-GPiFO .framer-1ht1lll { align-content: center; align-items: center; background: linear-gradient(180deg, #967300 0%, var(--token-7bc93b1c-63f2-4d8c-8aa1-e9b2ddb286e4, rgb(254, 195, 1)) 64.3845016891892%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 133px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-GPiFO .framer-mifrsa { flex: none; height: 244px; overflow: hidden; position: relative; width: 100%; }\",\".framer-GPiFO .framer-lhi4z8 { aspect-ratio: 3.4355263157894735 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 186px); left: -125px; position: absolute; right: -126px; top: -103px; z-index: 0; }\",\".framer-GPiFO .framer-ucw0a0 { align-content: center; align-items: center; background-color: var(--token-b1ede605-497e-4b87-8618-25bcd26941d3, #212121); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 60px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-GPiFO .framer-1az9djh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-GPiFO .framer-9s2zpu { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 52px; height: auto; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 591px; }\",\".framer-GPiFO .framer-glj1se { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 10px 40px 10px 80px; position: relative; width: min-content; }\",\".framer-GPiFO .framer-1alwl1n { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; left: -54px; opacity: 0.2; overflow: visible; position: absolute; top: -31px; white-space: pre-wrap; width: 262px; word-break: break-word; word-wrap: break-word; z-index: 0; }\",\".framer-GPiFO .framer-13omlvr, .framer-GPiFO .framer-1s1knpi, .framer-GPiFO .framer-aze64p { align-content: center; align-items: center; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; box-shadow: 0px 0.5971439051427296px 2.5080044015994645px -0.75px rgba(0, 0, 0, 0.09), 0px 1.8108796073283884px 7.605694350779231px -1.5px rgba(0, 0, 0, 0.09), 0px 4.786990141113346px 20.105358592676055px -2.25px rgba(0, 0, 0, 0.08), 0px 15px 63px -3px rgba(0, 0, 0, 0.06); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; min-width: 100px; overflow: hidden; padding: 0px; position: relative; width: 410px; will-change: var(--framer-will-change-override, transform); }\",\".framer-GPiFO .framer-py5cz6, .framer-GPiFO .framer-x1enlz, .framer-GPiFO .framer-179wp0q { align-content: flex-start; align-items: flex-start; background-color: var(--token-7a6f1c58-bf13-46e9-b153-2530016b2e5e, #020003); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 30px; position: relative; width: 100%; }\",\".framer-GPiFO .framer-834mtl, .framer-GPiFO .framer-cprwrd, .framer-GPiFO .framer-1sg6xh9, .framer-GPiFO .framer-lwgwa0 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-GPiFO .framer-vtb637, .framer-GPiFO .framer-1ay6dr4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 10px 40px 40px 80px; position: relative; width: min-content; }\",\".framer-GPiFO .framer-1vz23e { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; left: -45px; opacity: 0.2; overflow: visible; position: absolute; top: -31px; white-space: pre-wrap; width: 262px; word-break: break-word; word-wrap: break-word; z-index: 0; }\",\".framer-GPiFO .framer-tmg4zb { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; left: -34px; opacity: 0.2; overflow: visible; position: absolute; top: -16px; white-space: pre-wrap; width: 262px; word-break: break-word; word-wrap: break-word; z-index: 0; }\",\".framer-GPiFO .framer-tbee3a { border-bottom-left-radius: 60px; border-bottom-right-radius: 60px; border-top-left-radius: 60px; border-top-right-radius: 60px; flex: none; height: 799px; opacity: 0.9; overflow: visible; position: relative; width: 688px; }\",\".framer-GPiFO .framer-1omc63x { align-content: center; align-items: center; align-self: stretch; background: linear-gradient(180deg, var(--token-b1ede605-497e-4b87-8618-25bcd26941d3, #212121) 0%, rgb(0, 0, 0) 100%); display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 60px; position: relative; width: 1px; }\",\".framer-GPiFO .framer-z5h2w3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 2018px; padding: 0px; position: relative; width: 1004px; }\",\".framer-GPiFO .framer-1utg8a8 { --border-bottom-width: 2px; --border-color: var(--token-7bc93b1c-63f2-4d8c-8aa1-e9b2ddb286e4, #fec301); --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: center; align-items: center; border-bottom-left-radius: 23px; border-bottom-right-radius: 23px; border-top-left-radius: 23px; border-top-right-radius: 23px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 30px; position: relative; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-GPiFO .framer-bms7r6 { background: linear-gradient(180deg, var(--token-88f6797d-c643-4fa6-8666-ca2c59a16f60, #020003) -1.3513513513513513%, rgb(224, 172, 0) 5.5542652027027035%, var(--token-7bc93b1c-63f2-4d8c-8aa1-e9b2ddb286e4, rgb(254, 195, 1)) 100%); flex: none; height: 313px; overflow: hidden; position: relative; width: 100%; }\",\".framer-GPiFO .framer-bxyyvk { bottom: 2px; flex: none; left: 0px; position: absolute; right: 0px; top: -2px; z-index: 0; }\",\".framer-GPiFO .framer-10xxerq { align-content: center; align-items: center; background-color: var(--token-f1729de2-d68d-40ca-b255-ee867f88a47b, #eeeeee); 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-GPiFO .framer-196xtn1 { align-content: center; align-items: center; background-color: var(--token-7bc93b1c-63f2-4d8c-8aa1-e9b2ddb286e4, #fec301); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 60px 40px 120px 40px; position: relative; width: 100%; }\",\".framer-GPiFO .framer-jljmuk { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 60%; position: relative; white-space: pre-wrap; width: 720px; word-break: break-word; word-wrap: break-word; }\",\".framer-GPiFO .framer-1y2ium0 { aspect-ratio: 1.212962962962963 / 1; bottom: -7px; flex: none; opacity: 0.25; position: absolute; right: -469px; top: 0px; width: var(--framer-aspect-ratio-supported, 874px); z-index: 0; }\",\".framer-GPiFO .framer-o3g142 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1080px; }\",\".framer-GPiFO .framer-v6q49a, .framer-GPiFO .framer-14360dm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-GPiFO .framer-lwh845-container, .framer-GPiFO .framer-5kz9y5-container, .framer-GPiFO .framer-uzbuzv-container, .framer-GPiFO .framer-1jaymbr-container, .framer-GPiFO .framer-tkxok7-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-GPiFO .framer-m6xins { align-content: center; align-items: center; background-color: var(--token-88f6797d-c643-4fa6-8666-ca2c59a16f60, #020003); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 545px; justify-content: center; overflow: hidden; padding: 60px 40px 200px 40px; position: relative; width: 100%; }\",\".framer-GPiFO .framer-277cn0 { aspect-ratio: 4.395061728395062 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 81px); position: relative; width: 356px; }\",\".framer-GPiFO .framer-1mrpexd { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: 1160px; word-break: break-word; word-wrap: break-word; }\",\".framer-GPiFO .framer-1dmozsj { --border-bottom-width: 2px; --border-color: var(--token-7bc93b1c-63f2-4d8c-8aa1-e9b2ddb286e4, #fec301); --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: center; align-items: center; border-bottom-left-radius: 23px; border-bottom-right-radius: 23px; border-top-left-radius: 23px; border-top-right-radius: 23px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 60px; justify-content: center; overflow: visible; padding: 30px; position: relative; width: 286px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-GPiFO .framer-14xd2hr { aspect-ratio: 0.5280898876404494 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 216px); left: 50%; position: absolute; top: 87%; transform: translate(-50%, -50%); width: 114px; z-index: 1; }\",\".framer-GPiFO .framer-134l1k2 { background-color: var(--token-b1ede605-497e-4b87-8618-25bcd26941d3, #212121); flex: none; height: 364px; overflow: visible; position: relative; width: 1201px; }\",\".framer-GPiFO .framer-lpvkzh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 44px; height: min-content; justify-content: flex-start; left: 54%; overflow: visible; padding: 0px; position: absolute; top: 90px; transform: translateX(-50%); width: min-content; }\",\".framer-GPiFO .framer-khxtfz { flex: none; height: 184px; overflow: visible; position: relative; width: 350px; }\",\".framer-GPiFO .framer-ffpprp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; left: 0px; overflow: visible; padding: 0px; position: absolute; top: 0px; width: 350px; }\",\".framer-GPiFO .framer-fztjaw { --border-bottom-width: 0px; --border-color: var(--token-f1729de2-d68d-40ca-b255-ee867f88a47b, #eeeeee); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0.75px; flex: none; height: 35px; overflow: visible; position: relative; width: 100%; }\",\".framer-GPiFO .framer-17cygoi { --framer-paragraph-spacing: 0px; flex: none; height: 23px; left: 0px; position: absolute; top: 7px; white-space: pre-wrap; width: 314px; word-break: break-word; word-wrap: break-word; }\",\".framer-GPiFO .framer-1w6xnt6, .framer-GPiFO .framer-1ujkt9, .framer-GPiFO .framer-oppss3, .framer-GPiFO .framer-1p3ll8i, .framer-GPiFO .framer-f54qcl { --border-bottom-width: 0px; --border-color: #fff4ff; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0.75px; flex: none; height: 35px; overflow: visible; position: relative; width: 100%; }\",\".framer-GPiFO .framer-uqrdiy { --framer-paragraph-spacing: 0px; flex: none; height: 23px; left: 0px; position: absolute; top: 7px; white-space: pre-wrap; width: 263px; word-break: break-word; word-wrap: break-word; }\",\".framer-GPiFO .framer-vl3ii2 { --framer-paragraph-spacing: 0px; flex: none; height: 23px; left: 0px; position: absolute; top: calc(48.93617021276598% - 22.5px / 2); white-space: pre-wrap; width: 296px; word-break: break-word; word-wrap: break-word; }\",\".framer-GPiFO .framer-1qoyvn4, .framer-GPiFO .framer-oakfj9 { --framer-paragraph-spacing: 0px; flex: none; height: 23px; left: 0px; position: absolute; top: 7px; white-space: pre-wrap; width: 293px; word-break: break-word; word-wrap: break-word; }\",\".framer-GPiFO .framer-1q56xxk { --framer-paragraph-spacing: 0px; flex: none; height: 23px; left: 0px; position: absolute; top: 7px; white-space: pre-wrap; width: 350px; word-break: break-word; word-wrap: break-word; }\",\".framer-GPiFO .framer-1wpk7tl, .framer-GPiFO .framer-qe747w { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 11px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 263px; }\",\".framer-GPiFO .framer-1lckjyv, .framer-GPiFO .framer-s85vqy { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 263px; word-break: break-word; word-wrap: break-word; }\",\".framer-GPiFO .framer-ddgjes { --border-bottom-width: 1.5px; --border-color: #ffffff; --border-left-width: 1.5px; --border-right-width: 1.5px; --border-style: solid; --border-top-width: 1.5px; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: 38px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-GPiFO .framer-q9vbvv { flex: none; height: 19px; left: 9px; overflow: hidden; position: absolute; right: 87px; top: 9px; }\",\".framer-GPiFO .framer-crdojr { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 0px; position: absolute; top: 0px; white-space: pre; width: auto; }\",\".framer-GPiFO .framer-ct168s { --border-bottom-width: 1.5px; --border-color: #ffffff; --border-left-width: 1.5px; --border-right-width: 1.5px; --border-style: solid; --border-top-width: 1.5px; background-color: var(--token-7bc93b1c-63f2-4d8c-8aa1-e9b2ddb286e4, #fec301); border-bottom-right-radius: 8px; border-top-right-radius: 8px; bottom: 0px; flex: none; overflow: visible; position: absolute; right: 0px; top: 0px; width: 85px; }\",\".framer-GPiFO .framer-sc3mdf { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 49%; position: absolute; top: 50%; transform: translate(-50%, -50%); white-space: pre; width: auto; }\",\".framer-GPiFO .framer-1f80ti5 { flex: none; height: 34px; position: relative; width: 125px; }\",\".framer-GPiFO .framer-1x6vd3o { --framer-paragraph-spacing: 0px; flex: none; height: 18px; position: relative; white-space: pre-wrap; width: 215px; word-break: break-word; word-wrap: break-word; }\",\".framer-GPiFO .framer-1xjvcxz { bottom: 22px; flex: none; height: 18px; left: 368px; overflow: visible; position: absolute; width: 788px; }\",\".framer-GPiFO .framer-g2r7fy { --framer-paragraph-spacing: 0px; flex: none; height: 15px; left: 595px; position: absolute; top: 2px; white-space: pre-wrap; width: 103px; word-break: break-word; word-wrap: break-word; }\",\".framer-GPiFO .framer-dm421s { --framer-paragraph-spacing: 0px; flex: none; height: 15px; left: 716px; position: absolute; top: 2px; white-space: pre-wrap; width: 71px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-GPiFO.framer-77ephm, .framer-GPiFO .framer-ue5pnn, .framer-GPiFO .framer-15wcpmz, .framer-GPiFO .framer-mgzzul, .framer-GPiFO .framer-nqmn28, .framer-GPiFO .framer-201lmv, .framer-GPiFO .framer-hur3pd, .framer-GPiFO .framer-a8eiub, .framer-GPiFO .framer-1mbdjp0, .framer-GPiFO .framer-al6qnt, .framer-GPiFO .framer-8quu0o, .framer-GPiFO .framer-oc7bq1, .framer-GPiFO .framer-1w3i6cv, .framer-GPiFO .framer-16n5wrf, .framer-GPiFO .framer-13d82xs, .framer-GPiFO .framer-1y5x7mf, .framer-GPiFO .framer-tjd8z5, .framer-GPiFO .framer-1bgsjue, .framer-GPiFO .framer-1csxsa7, .framer-GPiFO .framer-1ou9tq9, .framer-GPiFO .framer-1dxeavc, .framer-GPiFO .framer-1eug6vf, .framer-GPiFO .framer-xjgqmx, .framer-GPiFO .framer-vw58vb, .framer-GPiFO .framer-t6q2ux, .framer-GPiFO .framer-1vs8j8t, .framer-GPiFO .framer-n5ievl, .framer-GPiFO .framer-1u9lvrz, .framer-GPiFO .framer-1ht1lll, .framer-GPiFO .framer-ucw0a0, .framer-GPiFO .framer-1az9djh, .framer-GPiFO .framer-9s2zpu, .framer-GPiFO .framer-glj1se, .framer-GPiFO .framer-13omlvr, .framer-GPiFO .framer-py5cz6, .framer-GPiFO .framer-vtb637, .framer-GPiFO .framer-1s1knpi, .framer-GPiFO .framer-x1enlz, .framer-GPiFO .framer-1ay6dr4, .framer-GPiFO .framer-aze64p, .framer-GPiFO .framer-179wp0q, .framer-GPiFO .framer-1sntvdb, .framer-GPiFO .framer-1omc63x, .framer-GPiFO .framer-1vpafd8, .framer-GPiFO .framer-z5h2w3, .framer-GPiFO .framer-1utg8a8, .framer-GPiFO .framer-10xxerq, .framer-GPiFO .framer-196xtn1, .framer-GPiFO .framer-o3g142, .framer-GPiFO .framer-v6q49a, .framer-GPiFO .framer-14360dm, .framer-GPiFO .framer-m6xins, .framer-GPiFO .framer-1dmozsj, .framer-GPiFO .framer-lpvkzh, .framer-GPiFO .framer-ffpprp, .framer-GPiFO .framer-1wpk7tl, .framer-GPiFO .framer-qe747w { gap: 0px; } .framer-GPiFO.framer-77ephm > *, .framer-GPiFO .framer-13omlvr > *, .framer-GPiFO .framer-1s1knpi > *, .framer-GPiFO .framer-aze64p > *, .framer-GPiFO .framer-10xxerq > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-GPiFO.framer-77ephm > :first-child, .framer-GPiFO .framer-ue5pnn > :first-child, .framer-GPiFO .framer-nqmn28 > :first-child, .framer-GPiFO .framer-201lmv > :first-child, .framer-GPiFO .framer-hur3pd > :first-child, .framer-GPiFO .framer-a8eiub > :first-child, .framer-GPiFO .framer-8quu0o > :first-child, .framer-GPiFO .framer-oc7bq1 > :first-child, .framer-GPiFO .framer-16n5wrf > :first-child, .framer-GPiFO .framer-13d82xs > :first-child, .framer-GPiFO .framer-tjd8z5 > :first-child, .framer-GPiFO .framer-1bgsjue > :first-child, .framer-GPiFO .framer-1ou9tq9 > :first-child, .framer-GPiFO .framer-1dxeavc > :first-child, .framer-GPiFO .framer-xjgqmx > :first-child, .framer-GPiFO .framer-vw58vb > :first-child, .framer-GPiFO .framer-1u9lvrz > :first-child, .framer-GPiFO .framer-1ht1lll > :first-child, .framer-GPiFO .framer-ucw0a0 > :first-child, .framer-GPiFO .framer-9s2zpu > :first-child, .framer-GPiFO .framer-13omlvr > :first-child, .framer-GPiFO .framer-py5cz6 > :first-child, .framer-GPiFO .framer-1s1knpi > :first-child, .framer-GPiFO .framer-x1enlz > :first-child, .framer-GPiFO .framer-aze64p > :first-child, .framer-GPiFO .framer-179wp0q > :first-child, .framer-GPiFO .framer-1vpafd8 > :first-child, .framer-GPiFO .framer-z5h2w3 > :first-child, .framer-GPiFO .framer-10xxerq > :first-child, .framer-GPiFO .framer-196xtn1 > :first-child, .framer-GPiFO .framer-o3g142 > :first-child, .framer-GPiFO .framer-m6xins > :first-child, .framer-GPiFO .framer-ffpprp > :first-child, .framer-GPiFO .framer-1wpk7tl > :first-child, .framer-GPiFO .framer-qe747w > :first-child { margin-top: 0px; } .framer-GPiFO.framer-77ephm > :last-child, .framer-GPiFO .framer-ue5pnn > :last-child, .framer-GPiFO .framer-nqmn28 > :last-child, .framer-GPiFO .framer-201lmv > :last-child, .framer-GPiFO .framer-hur3pd > :last-child, .framer-GPiFO .framer-a8eiub > :last-child, .framer-GPiFO .framer-8quu0o > :last-child, .framer-GPiFO .framer-oc7bq1 > :last-child, .framer-GPiFO .framer-16n5wrf > :last-child, .framer-GPiFO .framer-13d82xs > :last-child, .framer-GPiFO .framer-tjd8z5 > :last-child, .framer-GPiFO .framer-1bgsjue > :last-child, .framer-GPiFO .framer-1ou9tq9 > :last-child, .framer-GPiFO .framer-1dxeavc > :last-child, .framer-GPiFO .framer-xjgqmx > :last-child, .framer-GPiFO .framer-vw58vb > :last-child, .framer-GPiFO .framer-1u9lvrz > :last-child, .framer-GPiFO .framer-1ht1lll > :last-child, .framer-GPiFO .framer-ucw0a0 > :last-child, .framer-GPiFO .framer-9s2zpu > :last-child, .framer-GPiFO .framer-13omlvr > :last-child, .framer-GPiFO .framer-py5cz6 > :last-child, .framer-GPiFO .framer-1s1knpi > :last-child, .framer-GPiFO .framer-x1enlz > :last-child, .framer-GPiFO .framer-aze64p > :last-child, .framer-GPiFO .framer-179wp0q > :last-child, .framer-GPiFO .framer-1vpafd8 > :last-child, .framer-GPiFO .framer-z5h2w3 > :last-child, .framer-GPiFO .framer-10xxerq > :last-child, .framer-GPiFO .framer-196xtn1 > :last-child, .framer-GPiFO .framer-o3g142 > :last-child, .framer-GPiFO .framer-m6xins > :last-child, .framer-GPiFO .framer-ffpprp > :last-child, .framer-GPiFO .framer-1wpk7tl > :last-child, .framer-GPiFO .framer-qe747w > :last-child { margin-bottom: 0px; } .framer-GPiFO .framer-ue5pnn > *, .framer-GPiFO .framer-oc7bq1 > *, .framer-GPiFO .framer-1u9lvrz > *, .framer-GPiFO .framer-py5cz6 > *, .framer-GPiFO .framer-x1enlz > *, .framer-GPiFO .framer-179wp0q > *, .framer-GPiFO .framer-1vpafd8 > *, .framer-GPiFO .framer-z5h2w3 > *, .framer-GPiFO .framer-m6xins > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-GPiFO .framer-15wcpmz > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-GPiFO .framer-15wcpmz > :first-child, .framer-GPiFO .framer-mgzzul > :first-child, .framer-GPiFO .framer-1mbdjp0 > :first-child, .framer-GPiFO .framer-al6qnt > :first-child, .framer-GPiFO .framer-1w3i6cv > :first-child, .framer-GPiFO .framer-1y5x7mf > :first-child, .framer-GPiFO .framer-1csxsa7 > :first-child, .framer-GPiFO .framer-1eug6vf > :first-child, .framer-GPiFO .framer-t6q2ux > :first-child, .framer-GPiFO .framer-1vs8j8t > :first-child, .framer-GPiFO .framer-n5ievl > :first-child, .framer-GPiFO .framer-1az9djh > :first-child, .framer-GPiFO .framer-glj1se > :first-child, .framer-GPiFO .framer-vtb637 > :first-child, .framer-GPiFO .framer-1ay6dr4 > :first-child, .framer-GPiFO .framer-1sntvdb > :first-child, .framer-GPiFO .framer-1omc63x > :first-child, .framer-GPiFO .framer-1utg8a8 > :first-child, .framer-GPiFO .framer-v6q49a > :first-child, .framer-GPiFO .framer-14360dm > :first-child, .framer-GPiFO .framer-1dmozsj > :first-child, .framer-GPiFO .framer-lpvkzh > :first-child { margin-left: 0px; } .framer-GPiFO .framer-15wcpmz > :last-child, .framer-GPiFO .framer-mgzzul > :last-child, .framer-GPiFO .framer-1mbdjp0 > :last-child, .framer-GPiFO .framer-al6qnt > :last-child, .framer-GPiFO .framer-1w3i6cv > :last-child, .framer-GPiFO .framer-1y5x7mf > :last-child, .framer-GPiFO .framer-1csxsa7 > :last-child, .framer-GPiFO .framer-1eug6vf > :last-child, .framer-GPiFO .framer-t6q2ux > :last-child, .framer-GPiFO .framer-1vs8j8t > :last-child, .framer-GPiFO .framer-n5ievl > :last-child, .framer-GPiFO .framer-1az9djh > :last-child, .framer-GPiFO .framer-glj1se > :last-child, .framer-GPiFO .framer-vtb637 > :last-child, .framer-GPiFO .framer-1ay6dr4 > :last-child, .framer-GPiFO .framer-1sntvdb > :last-child, .framer-GPiFO .framer-1omc63x > :last-child, .framer-GPiFO .framer-1utg8a8 > :last-child, .framer-GPiFO .framer-v6q49a > :last-child, .framer-GPiFO .framer-14360dm > :last-child, .framer-GPiFO .framer-1dmozsj > :last-child, .framer-GPiFO .framer-lpvkzh > :last-child { margin-right: 0px; } .framer-GPiFO .framer-mgzzul > *, .framer-GPiFO .framer-n5ievl > *, .framer-GPiFO .framer-1az9djh > *, .framer-GPiFO .framer-glj1se > *, .framer-GPiFO .framer-vtb637 > *, .framer-GPiFO .framer-1ay6dr4 > *, .framer-GPiFO .framer-1omc63x > *, .framer-GPiFO .framer-1utg8a8 > *, .framer-GPiFO .framer-1dmozsj > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-GPiFO .framer-nqmn28 > *, .framer-GPiFO .framer-201lmv > *, .framer-GPiFO .framer-a8eiub > *, .framer-GPiFO .framer-1ht1lll > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-GPiFO .framer-hur3pd > *, .framer-GPiFO .framer-o3g142 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-GPiFO .framer-1mbdjp0 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-GPiFO .framer-al6qnt > * { margin: 0px; margin-left: calc(22.5px / 2); margin-right: calc(22.5px / 2); } .framer-GPiFO .framer-8quu0o > * { margin: 0px; margin-bottom: calc(85px / 2); margin-top: calc(85px / 2); } .framer-GPiFO .framer-1w3i6cv > * { margin: 0px; margin-left: calc(16.58px / 2); margin-right: calc(16.58px / 2); } .framer-GPiFO .framer-16n5wrf > *, .framer-GPiFO .framer-tjd8z5 > *, .framer-GPiFO .framer-1ou9tq9 > *, .framer-GPiFO .framer-xjgqmx > * { margin: 0px; margin-bottom: calc(5.82px / 2); margin-top: calc(5.82px / 2); } .framer-GPiFO .framer-13d82xs > *, .framer-GPiFO .framer-1bgsjue > *, .framer-GPiFO .framer-1dxeavc > *, .framer-GPiFO .framer-vw58vb > * { margin: 0px; margin-bottom: calc(13.96px / 2); margin-top: calc(13.96px / 2); } .framer-GPiFO .framer-1y5x7mf > *, .framer-GPiFO .framer-1csxsa7 > *, .framer-GPiFO .framer-1eug6vf > *, .framer-GPiFO .framer-t6q2ux > * { margin: 0px; margin-left: calc(7.5px / 2); margin-right: calc(7.5px / 2); } .framer-GPiFO .framer-1vs8j8t > *, .framer-GPiFO .framer-1sntvdb > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-GPiFO .framer-ucw0a0 > *, .framer-GPiFO .framer-196xtn1 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-GPiFO .framer-9s2zpu > * { margin: 0px; margin-bottom: calc(52px / 2); margin-top: calc(52px / 2); } .framer-GPiFO .framer-v6q49a > *, .framer-GPiFO .framer-14360dm > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-GPiFO .framer-lpvkzh > * { margin: 0px; margin-left: calc(43.5px / 2); margin-right: calc(43.5px / 2); } .framer-GPiFO .framer-ffpprp > * { margin: 0px; margin-bottom: calc(2.25px / 2); margin-top: calc(2.25px / 2); } .framer-GPiFO .framer-1wpk7tl > *, .framer-GPiFO .framer-qe747w > * { margin: 0px; margin-bottom: calc(11.25px / 2); margin-top: calc(11.25px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,'.framer-GPiFO[data-border=\"true\"]::after, .framer-GPiFO [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (max-width: 1199px) { .framer-GPiFO.framer-77ephm { width: 390px; } .framer-GPiFO .framer-1f7c6hb-container { order: 10; } .framer-GPiFO .framer-ue5pnn { justify-content: flex-start; order: 0; padding: 140px 20px 20px 20px; } .framer-GPiFO .framer-abog2y { height: var(--framer-aspect-ratio-supported, 41px); order: 0; width: 178px; } .framer-GPiFO .framer-8104w6 { max-width: 100%; order: 1; } .framer-GPiFO .framer-olwqzm { order: 2; width: 300px; } .framer-GPiFO .framer-15wcpmz, .framer-GPiFO .framer-16bgpk1 { order: 3; } .framer-GPiFO .framer-1nnq6wv { order: 4; } .framer-GPiFO .framer-1b3gjdh { bottom: unset; height: var(--framer-aspect-ratio-supported, 382px); left: -285px; order: 6; top: 0px; width: 463px; } .framer-GPiFO .framer-nqmn28 { height: 539px; min-height: unset; order: 2; padding: 0px 0px 48px 0px; } .framer-GPiFO .framer-edwxjj, .framer-GPiFO .framer-a8eiub { order: 0; } .framer-GPiFO .framer-rffgj8 { order: 2; } .framer-GPiFO .framer-201lmv { height: min-content; left: 50%; order: 3; transform: translateX(-50%); width: 388px; } .framer-GPiFO .framer-ejhqh3-container { height: 387px; } .framer-GPiFO .framer-hur3pd { background: linear-gradient(180deg, var(--token-c2a7f425-9371-4bcf-8070-89e047e4bbab, #212121) 62%, var(--token-a62499c0-f5f7-41ff-866d-3b4c60a261e2, rgb(2, 0, 3)) 100%); gap: 0px; order: 3; padding: 20px; z-index: 1; } .framer-GPiFO .framer-1tqvrgl { max-width: 100%; } .framer-GPiFO .framer-1mbdjp0 { flex-direction: column; gap: 0px; } .framer-GPiFO .framer-yf4uht, .framer-GPiFO .framer-18ka7m6 { height: var(--framer-aspect-ratio-supported, 68px); width: 214px; } .framer-GPiFO .framer-1e42iuk { height: var(--framer-aspect-ratio-supported, 88px); width: 278px; } .framer-GPiFO .framer-1ysnmam { order: 1; } .framer-GPiFO .framer-8quu0o { background: linear-gradient(180deg, var(--token-a62499c0-f5f7-41ff-866d-3b4c60a261e2, #020003) 0%, var(--token-a62499c0-f5f7-41ff-866d-3b4c60a261e2, rgb(2, 0, 3)) 79.55729166666667%, rgb(33, 33, 33) 100%); gap: 24px; order: 4; padding: 60px 24px 30px 24px; } .framer-GPiFO .framer-1c9m5f8 { max-width: 100%; width: auto; } .framer-GPiFO .framer-1w3i6cv { align-content: flex-end; align-items: flex-end; flex-direction: column; gap: 19px; } .framer-GPiFO .framer-5dmpu8 { height: 714px; width: 354px; } .framer-GPiFO .framer-1s0afaq, .framer-GPiFO .framer-8igk79, .framer-GPiFO .framer-dh7nze { left: -37px; top: 321px; width: 713px; } .framer-GPiFO .framer-8owud1, .framer-GPiFO .framer-19rmslm, .framer-GPiFO .framer-r3ck2f, .framer-GPiFO .framer-1exnbi6 { border-bottom-left-radius: 51px; border-bottom-right-radius: 51px; border-top-left-radius: 51px; border-top-right-radius: 51px; height: 672px; left: 8px; top: 41px; width: 299px; } .framer-GPiFO .framer-1isoo8w { height: var(--framer-aspect-ratio-supported, 684px); left: -162px; right: unset; width: 208%; } .framer-GPiFO .framer-1hhowrt { bottom: -8px; height: 349px; left: -3px; right: -1px; } .framer-GPiFO .framer-16n5wrf { bottom: 24px; gap: 7px; left: 47%; right: unset; transform: translateX(-50%); width: 237px; } .framer-GPiFO .framer-13d82xs, .framer-GPiFO .framer-1bgsjue, .framer-GPiFO .framer-1dxeavc { gap: 16px; width: 587px; } .framer-GPiFO .framer-1dx9n84, .framer-GPiFO .framer-h3a1kh, .framer-GPiFO .framer-1kj84au, .framer-GPiFO .framer-lulgo4, .framer-GPiFO .framer-tr7hjm, .framer-GPiFO .framer-dluoxl, .framer-GPiFO .framer-1kihhh4, .framer-GPiFO .framer-1k1hriq { width: 249px; } .framer-GPiFO .framer-1y5x7mf, .framer-GPiFO .framer-1csxsa7, .framer-GPiFO .framer-1eug6vf, .framer-GPiFO .framer-t6q2ux { border-bottom-left-radius: 25px; border-bottom-right-radius: 25px; border-top-left-radius: 25px; border-top-right-radius: 25px; gap: 9px; height: 61px; width: 250px; } .framer-GPiFO .framer-1i57we5, .framer-GPiFO .framer-1dlovnt, .framer-GPiFO .framer-c4obt9 { height: 753px; width: 354px; } .framer-GPiFO .framer-9116oo { left: -72px; top: 287px; width: 713px; } .framer-GPiFO .framer-7utuli { bottom: -13px; height: var(--framer-aspect-ratio-supported, 685px); left: -72px; right: -86px; } .framer-GPiFO .framer-a06570, .framer-GPiFO .framer-1bvcfot, .framer-GPiFO .framer-13vjrt1 { bottom: -12px; height: 349px; left: -3px; right: -2px; } .framer-GPiFO .framer-tjd8z5 { bottom: 31px; gap: 7px; left: 13px; right: unset; width: 237px; } .framer-GPiFO .framer-1tjj2g4 { height: var(--framer-aspect-ratio-supported, 671px); left: -110px; right: -127px; top: -2px; } .framer-GPiFO .framer-1ou9tq9 { bottom: 32px; gap: 7px; left: 48%; right: unset; transform: translateX(-50%); width: 247px; } .framer-GPiFO .framer-1m9ucdc { height: var(--framer-aspect-ratio-supported, 745px); left: -189px; top: -73px; width: 678px; } .framer-GPiFO .framer-16ht4cy { height: var(--framer-aspect-ratio-supported, 655px); left: -70px; width: 438px; } .framer-GPiFO .framer-1rmavls { height: var(--framer-aspect-ratio-supported, 672px); left: -111px; width: 538px; } .framer-GPiFO .framer-1rjfolo { height: var(--framer-aspect-ratio-supported, 686px); left: -23px; top: -1px; width: 536px; } .framer-GPiFO .framer-xjgqmx { bottom: 32px; gap: 7px; left: 48%; right: unset; transform: translateX(-50%); width: 244px; } .framer-GPiFO .framer-vw58vb { gap: 16px; width: 248px; } .framer-GPiFO .framer-1vs8j8t { order: 5; } .framer-GPiFO .framer-v3t57p { width: 342px; } .framer-GPiFO .framer-1ht1lll { order: 9; } .framer-GPiFO .framer-lhi4z8 { height: var(--framer-aspect-ratio-supported, 451px); } .framer-GPiFO .framer-ucw0a0 { background: linear-gradient(180deg, var(--token-c2a7f425-9371-4bcf-8070-89e047e4bbab, #212121) 0%, var(--token-a62499c0-f5f7-41ff-866d-3b4c60a261e2, rgb(2, 0, 3)) 100%); background-color: unset; order: 7; padding: 0px 0px 30px 0px; } .framer-GPiFO .framer-1az9djh { flex-direction: column; } .framer-GPiFO .framer-9s2zpu { align-content: center; align-items: center; align-self: unset; gap: 10px; height: min-content; width: 320px; } .framer-GPiFO .framer-1alwl1n { left: -58px; top: 53%; transform: translateY(-50%); } .framer-GPiFO .framer-13omlvr, .framer-GPiFO .framer-py5cz6, .framer-GPiFO .framer-1s1knpi, .framer-GPiFO .framer-x1enlz, .framer-GPiFO .framer-aze64p, .framer-GPiFO .framer-179wp0q { width: min-content; } .framer-GPiFO .framer-834mtl, .framer-GPiFO .framer-cprwrd, .framer-GPiFO .framer-1sg6xh9 { width: 314px; } .framer-GPiFO .framer-1vz23e { left: -49px; top: -22px; } .framer-GPiFO .framer-tmg4zb { left: -38px; top: -7px; } .framer-GPiFO .framer-tbee3a { height: 462px; width: 398px; } .framer-GPiFO .framer-10xxerq { order: 11; } .framer-GPiFO .framer-196xtn1 { padding: 60px 0px 120px 0px; } .framer-GPiFO .framer-1y2ium0 { height: var(--framer-aspect-ratio-supported, 1067px); left: -318px; right: -585px; top: unset; width: unset; } .framer-GPiFO .framer-o3g142 { gap: 16px; padding: 0px 24px 0px 24px; width: 100%; } .framer-GPiFO .framer-v6q49a, .framer-GPiFO .framer-14360dm { flex-direction: column; gap: 16px; } .framer-GPiFO .framer-lwh845-container { flex: none; height: 260px; width: 100%; } .framer-GPiFO .framer-5kz9y5-container { flex: none; height: 249px; width: 100%; } .framer-GPiFO .framer-uzbuzv-container { flex: none; height: 228px; width: 100%; } .framer-GPiFO .framer-1jaymbr-container, .framer-GPiFO .framer-tkxok7-container { flex: none; width: 100%; } .framer-GPiFO .framer-m6xins { height: min-content; order: 12; } .framer-GPiFO .framer-277cn0 { height: var(--framer-aspect-ratio-supported, 61px); width: 267px; } .framer-GPiFO .framer-14xd2hr { height: var(--framer-aspect-ratio-supported, 140px); top: 86%; width: 74px; } .framer-GPiFO .framer-134l1k2 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; order: 13; padding: 60px 0px 60px 0px; width: 100%; } .framer-GPiFO .framer-lpvkzh { flex-direction: column; left: unset; position: relative; top: unset; transform: unset; } .framer-GPiFO .framer-khxtfz { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; padding: 0px; } .framer-GPiFO .framer-ffpprp { left: unset; position: relative; top: unset; } .framer-GPiFO .framer-17cygoi, .framer-GPiFO .framer-uqrdiy, .framer-GPiFO .framer-1qoyvn4, .framer-GPiFO .framer-oakfj9, .framer-GPiFO .framer-1q56xxk { white-space: pre; width: auto; } .framer-GPiFO .framer-vl3ii2 { top: 49%; transform: translateY(-50%); white-space: pre; width: auto; } .framer-GPiFO .framer-1xjvcxz { bottom: unset; left: unset; position: relative; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-GPiFO .framer-hur3pd, .framer-GPiFO .framer-1mbdjp0, .framer-GPiFO .framer-8quu0o, .framer-GPiFO .framer-1w3i6cv, .framer-GPiFO .framer-16n5wrf, .framer-GPiFO .framer-13d82xs, .framer-GPiFO .framer-1y5x7mf, .framer-GPiFO .framer-tjd8z5, .framer-GPiFO .framer-1bgsjue, .framer-GPiFO .framer-1csxsa7, .framer-GPiFO .framer-1ou9tq9, .framer-GPiFO .framer-1dxeavc, .framer-GPiFO .framer-1eug6vf, .framer-GPiFO .framer-xjgqmx, .framer-GPiFO .framer-vw58vb, .framer-GPiFO .framer-t6q2ux, .framer-GPiFO .framer-1az9djh, .framer-GPiFO .framer-9s2zpu, .framer-GPiFO .framer-o3g142, .framer-GPiFO .framer-v6q49a, .framer-GPiFO .framer-14360dm, .framer-GPiFO .framer-134l1k2, .framer-GPiFO .framer-lpvkzh, .framer-GPiFO .framer-khxtfz { gap: 0px; } .framer-GPiFO .framer-hur3pd > *, .framer-GPiFO .framer-1mbdjp0 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-GPiFO .framer-hur3pd > :first-child, .framer-GPiFO .framer-1mbdjp0 > :first-child, .framer-GPiFO .framer-8quu0o > :first-child, .framer-GPiFO .framer-1w3i6cv > :first-child, .framer-GPiFO .framer-16n5wrf > :first-child, .framer-GPiFO .framer-13d82xs > :first-child, .framer-GPiFO .framer-tjd8z5 > :first-child, .framer-GPiFO .framer-1bgsjue > :first-child, .framer-GPiFO .framer-1ou9tq9 > :first-child, .framer-GPiFO .framer-1dxeavc > :first-child, .framer-GPiFO .framer-xjgqmx > :first-child, .framer-GPiFO .framer-vw58vb > :first-child, .framer-GPiFO .framer-1az9djh > :first-child, .framer-GPiFO .framer-9s2zpu > :first-child, .framer-GPiFO .framer-o3g142 > :first-child, .framer-GPiFO .framer-v6q49a > :first-child, .framer-GPiFO .framer-14360dm > :first-child, .framer-GPiFO .framer-134l1k2 > :first-child, .framer-GPiFO .framer-lpvkzh > :first-child { margin-top: 0px; } .framer-GPiFO .framer-hur3pd > :last-child, .framer-GPiFO .framer-1mbdjp0 > :last-child, .framer-GPiFO .framer-8quu0o > :last-child, .framer-GPiFO .framer-1w3i6cv > :last-child, .framer-GPiFO .framer-16n5wrf > :last-child, .framer-GPiFO .framer-13d82xs > :last-child, .framer-GPiFO .framer-tjd8z5 > :last-child, .framer-GPiFO .framer-1bgsjue > :last-child, .framer-GPiFO .framer-1ou9tq9 > :last-child, .framer-GPiFO .framer-1dxeavc > :last-child, .framer-GPiFO .framer-xjgqmx > :last-child, .framer-GPiFO .framer-vw58vb > :last-child, .framer-GPiFO .framer-1az9djh > :last-child, .framer-GPiFO .framer-9s2zpu > :last-child, .framer-GPiFO .framer-o3g142 > :last-child, .framer-GPiFO .framer-v6q49a > :last-child, .framer-GPiFO .framer-14360dm > :last-child, .framer-GPiFO .framer-134l1k2 > :last-child, .framer-GPiFO .framer-lpvkzh > :last-child { margin-bottom: 0px; } .framer-GPiFO .framer-8quu0o > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-GPiFO .framer-1w3i6cv > * { margin: 0px; margin-bottom: calc(18.79px / 2); margin-top: calc(18.79px / 2); } .framer-GPiFO .framer-16n5wrf > *, .framer-GPiFO .framer-tjd8z5 > *, .framer-GPiFO .framer-1ou9tq9 > *, .framer-GPiFO .framer-xjgqmx > * { margin: 0px; margin-bottom: calc(6.59px / 2); margin-top: calc(6.59px / 2); } .framer-GPiFO .framer-13d82xs > *, .framer-GPiFO .framer-1bgsjue > *, .framer-GPiFO .framer-1dxeavc > *, .framer-GPiFO .framer-vw58vb > * { margin: 0px; margin-bottom: calc(15.82px / 2); margin-top: calc(15.82px / 2); } .framer-GPiFO .framer-1y5x7mf > *, .framer-GPiFO .framer-1csxsa7 > *, .framer-GPiFO .framer-1eug6vf > *, .framer-GPiFO .framer-t6q2ux > * { margin: 0px; margin-left: calc(8.5px / 2); margin-right: calc(8.5px / 2); } .framer-GPiFO .framer-1y5x7mf > :first-child, .framer-GPiFO .framer-1csxsa7 > :first-child, .framer-GPiFO .framer-1eug6vf > :first-child, .framer-GPiFO .framer-t6q2ux > :first-child, .framer-GPiFO .framer-khxtfz > :first-child { margin-left: 0px; } .framer-GPiFO .framer-1y5x7mf > :last-child, .framer-GPiFO .framer-1csxsa7 > :last-child, .framer-GPiFO .framer-1eug6vf > :last-child, .framer-GPiFO .framer-t6q2ux > :last-child, .framer-GPiFO .framer-khxtfz > :last-child { margin-right: 0px; } .framer-GPiFO .framer-1az9djh > *, .framer-GPiFO .framer-9s2zpu > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-GPiFO .framer-o3g142 > *, .framer-GPiFO .framer-v6q49a > *, .framer-GPiFO .framer-14360dm > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-GPiFO .framer-134l1k2 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-GPiFO .framer-lpvkzh > * { margin: 0px; margin-bottom: calc(43.5px / 2); margin-top: calc(43.5px / 2); } .framer-GPiFO .framer-khxtfz > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }}\",\"@media (min-width: 1920px) { .framer-GPiFO.framer-77ephm { width: 1920px; } .framer-GPiFO .framer-1f7c6hb-container { height: 72px; } .framer-GPiFO .framer-ue5pnn, .framer-GPiFO .framer-15wcpmz { will-change: var(--framer-will-change-effect-override, transform); } .framer-GPiFO .framer-1b3gjdh { left: -352px; top: 0px; width: var(--framer-aspect-ratio-supported, 745px); } .framer-GPiFO .framer-1mylcxu { height: var(--framer-aspect-ratio-supported, 654px); } .framer-GPiFO .framer-ejhqh3-container { flex: 1 0 0px; height: 1px; } .framer-GPiFO .framer-hur3pd { background: linear-gradient(180deg, var(--token-c2a7f425-9371-4bcf-8070-89e047e4bbab, #212121) 62%, var(--token-a62499c0-f5f7-41ff-866d-3b4c60a261e2, rgb(2, 0, 3)) 100%); } .framer-GPiFO .framer-a8eiub { order: 0; } .framer-GPiFO .framer-1tr3h3a { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; order: 1; padding: 0px; width: min-content; } .framer-GPiFO .framer-al6qnt { gap: 28px; left: unset; position: relative; top: unset; transform: unset; width: min-content; } .framer-GPiFO .framer-q37yor, .framer-GPiFO .framer-s7y8ee, .framer-GPiFO .framer-1pgk7du { border-bottom-left-radius: 56px; border-bottom-right-radius: 56px; border-top-left-radius: 56px; border-top-right-radius: 56px; height: 609px; width: 469px; } .framer-GPiFO .framer-16bgpk1 { order: 3; } .framer-GPiFO .framer-1w3i6cv { gap: 20px; } .framer-GPiFO .framer-5dmpu8, .framer-GPiFO .framer-1i57we5, .framer-GPiFO .framer-1dlovnt, .framer-GPiFO .framer-c4obt9 { height: 798px; width: 375px; } .framer-GPiFO .framer-1s0afaq { left: -39px; top: 340px; width: 755px; } .framer-GPiFO .framer-8owud1 { border-bottom-left-radius: 54px; border-bottom-right-radius: 54px; border-top-left-radius: 54px; border-top-right-radius: 54px; height: 711px; left: 9px; top: 43px; width: 317px; } .framer-GPiFO .framer-1isoo8w { height: var(--framer-aspect-ratio-supported, 802px); left: -212px; right: -201px; top: -76px; } .framer-GPiFO .framer-1hhowrt { bottom: -9px; height: 370px; left: -3px; right: -1px; } .framer-GPiFO .framer-16n5wrf { bottom: 24px; gap: 7px; left: 35px; right: 31px; } .framer-GPiFO .framer-13d82xs, .framer-GPiFO .framer-1bgsjue, .framer-GPiFO .framer-1dxeavc, .framer-GPiFO .framer-vw58vb { gap: 17px; width: 621px; } .framer-GPiFO .framer-1dx9n84, .framer-GPiFO .framer-h3a1kh, .framer-GPiFO .framer-1kj84au, .framer-GPiFO .framer-lulgo4, .framer-GPiFO .framer-tr7hjm, .framer-GPiFO .framer-dluoxl, .framer-GPiFO .framer-1kihhh4, .framer-GPiFO .framer-1k1hriq { width: 264px; } .framer-GPiFO .framer-1y5x7mf, .framer-GPiFO .framer-1csxsa7, .framer-GPiFO .framer-1eug6vf, .framer-GPiFO .framer-t6q2ux { --border-bottom-width: 0.9px; --border-left-width: 0.9px; --border-right-width: 0.9px; --border-top-width: 0.9px; border-bottom-left-radius: 26px; border-bottom-right-radius: 26px; border-top-left-radius: 26px; border-top-right-radius: 26px; gap: 9px; height: 65px; width: 265px; } .framer-GPiFO .framer-9116oo { left: -76px; top: 304px; width: 755px; } .framer-GPiFO .framer-19rmslm, .framer-GPiFO .framer-r3ck2f, .framer-GPiFO .framer-1exnbi6 { border-bottom-left-radius: 54px; border-bottom-right-radius: 54px; border-top-left-radius: 54px; border-top-right-radius: 54px; height: 711px; left: 8px; top: 43px; width: 317px; } .framer-GPiFO .framer-7utuli { bottom: -13px; height: var(--framer-aspect-ratio-supported, 726px); left: -76px; right: -91px; } .framer-GPiFO .framer-a06570, .framer-GPiFO .framer-1bvcfot, .framer-GPiFO .framer-13vjrt1 { bottom: -12px; height: 370px; left: -3px; right: -2px; } .framer-GPiFO .framer-tjd8z5, .framer-GPiFO .framer-1ou9tq9, .framer-GPiFO .framer-xjgqmx { bottom: 33px; gap: 7px; left: 35px; right: 31px; } .framer-GPiFO .framer-8igk79, .framer-GPiFO .framer-dh7nze { left: -40px; top: 340px; width: 755px; } .framer-GPiFO .framer-1tjj2g4 { height: var(--framer-aspect-ratio-supported, 711px); left: -117px; right: -135px; top: -2px; } .framer-GPiFO .framer-1m9ucdc { height: var(--framer-aspect-ratio-supported, 789px); left: -200px; top: -77px; width: 718px; } .framer-GPiFO .framer-16ht4cy { height: var(--framer-aspect-ratio-supported, 694px); left: -74px; width: 463px; } .framer-GPiFO .framer-1rmavls { height: var(--framer-aspect-ratio-supported, 712px); left: -118px; width: 569px; } .framer-GPiFO .framer-1rjfolo { height: var(--framer-aspect-ratio-supported, 726px); left: -24px; top: -1px; width: 567px; } .framer-GPiFO .framer-bxyyvk { bottom: 0px; height: 313px; top: unset; } .framer-GPiFO .framer-1y2ium0 { right: -341px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-GPiFO .framer-1tr3h3a, .framer-GPiFO .framer-al6qnt, .framer-GPiFO .framer-1w3i6cv, .framer-GPiFO .framer-16n5wrf, .framer-GPiFO .framer-13d82xs, .framer-GPiFO .framer-1y5x7mf, .framer-GPiFO .framer-tjd8z5, .framer-GPiFO .framer-1bgsjue, .framer-GPiFO .framer-1csxsa7, .framer-GPiFO .framer-1ou9tq9, .framer-GPiFO .framer-1dxeavc, .framer-GPiFO .framer-1eug6vf, .framer-GPiFO .framer-xjgqmx, .framer-GPiFO .framer-vw58vb, .framer-GPiFO .framer-t6q2ux { gap: 0px; } .framer-GPiFO .framer-1tr3h3a > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-GPiFO .framer-1tr3h3a > :first-child, .framer-GPiFO .framer-16n5wrf > :first-child, .framer-GPiFO .framer-13d82xs > :first-child, .framer-GPiFO .framer-tjd8z5 > :first-child, .framer-GPiFO .framer-1bgsjue > :first-child, .framer-GPiFO .framer-1ou9tq9 > :first-child, .framer-GPiFO .framer-1dxeavc > :first-child, .framer-GPiFO .framer-xjgqmx > :first-child, .framer-GPiFO .framer-vw58vb > :first-child { margin-top: 0px; } .framer-GPiFO .framer-1tr3h3a > :last-child, .framer-GPiFO .framer-16n5wrf > :last-child, .framer-GPiFO .framer-13d82xs > :last-child, .framer-GPiFO .framer-tjd8z5 > :last-child, .framer-GPiFO .framer-1bgsjue > :last-child, .framer-GPiFO .framer-1ou9tq9 > :last-child, .framer-GPiFO .framer-1dxeavc > :last-child, .framer-GPiFO .framer-xjgqmx > :last-child, .framer-GPiFO .framer-vw58vb > :last-child { margin-bottom: 0px; } .framer-GPiFO .framer-al6qnt > * { margin: 0px; margin-left: calc(28.13px / 2); margin-right: calc(28.13px / 2); } .framer-GPiFO .framer-al6qnt > :first-child, .framer-GPiFO .framer-1w3i6cv > :first-child, .framer-GPiFO .framer-1y5x7mf > :first-child, .framer-GPiFO .framer-1csxsa7 > :first-child, .framer-GPiFO .framer-1eug6vf > :first-child, .framer-GPiFO .framer-t6q2ux > :first-child { margin-left: 0px; } .framer-GPiFO .framer-al6qnt > :last-child, .framer-GPiFO .framer-1w3i6cv > :last-child, .framer-GPiFO .framer-1y5x7mf > :last-child, .framer-GPiFO .framer-1csxsa7 > :last-child, .framer-GPiFO .framer-1eug6vf > :last-child, .framer-GPiFO .framer-t6q2ux > :last-child { margin-right: 0px; } .framer-GPiFO .framer-1w3i6cv > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-GPiFO .framer-16n5wrf > *, .framer-GPiFO .framer-tjd8z5 > *, .framer-GPiFO .framer-1ou9tq9 > *, .framer-GPiFO .framer-xjgqmx > * { margin: 0px; margin-bottom: calc(6.98px / 2); margin-top: calc(6.98px / 2); } .framer-GPiFO .framer-13d82xs > *, .framer-GPiFO .framer-1bgsjue > *, .framer-GPiFO .framer-1dxeavc > *, .framer-GPiFO .framer-vw58vb > * { margin: 0px; margin-bottom: calc(16.75px / 2); margin-top: calc(16.75px / 2); } .framer-GPiFO .framer-1y5x7mf > *, .framer-GPiFO .framer-1csxsa7 > *, .framer-GPiFO .framer-1eug6vf > *, .framer-GPiFO .framer-t6q2ux > * { margin: 0px; margin-left: calc(9px / 2); margin-right: calc(9px / 2); } }}\",\"@media (min-width: 1200px) and (max-width: 1439px) { .framer-GPiFO.framer-77ephm { width: 1200px; } .framer-GPiFO .framer-k44b2j-container { order: 1; } .framer-GPiFO .framer-ue5pnn { order: 0; } .framer-GPiFO .framer-8104w6 { max-width: 100%; width: 840px; } .framer-GPiFO .framer-olwqzm { width: 1000px; } .framer-GPiFO .framer-1b3gjdh { height: var(--framer-aspect-ratio-supported, 493px); top: unset; width: 740px; } .framer-GPiFO .framer-nqmn28 { height: 820px; min-height: unset; min-width: 1200px; order: 2; padding: 60px 110px 80px 110px; width: min-content; } .framer-GPiFO .framer-201lmv { height: min-content; left: 50%; transform: translateX(-50%); width: min-content; } .framer-GPiFO .framer-ejhqh3-container { width: 1080px; } .framer-GPiFO .framer-hur3pd { order: 4; } .framer-GPiFO .framer-8quu0o { gap: 60px; order: 5; padding: 60px 40px 60px 40px; } .framer-GPiFO .framer-1w3i6cv { gap: 14px; } .framer-GPiFO .framer-5dmpu8, .framer-GPiFO .framer-1i57we5, .framer-GPiFO .framer-1dlovnt, .framer-GPiFO .framer-c4obt9 { height: 565px; width: 265px; } .framer-GPiFO .framer-1s0afaq, .framer-GPiFO .framer-8igk79, .framer-GPiFO .framer-dh7nze { left: -28px; top: 241px; width: 534px; } .framer-GPiFO .framer-8owud1, .framer-GPiFO .framer-19rmslm, .framer-GPiFO .framer-r3ck2f, .framer-GPiFO .framer-1exnbi6 { border-bottom-left-radius: 38px; border-bottom-right-radius: 38px; border-top-left-radius: 38px; border-top-right-radius: 38px; height: 504px; left: 6px; top: 31px; width: 224px; } .framer-GPiFO .framer-1isoo8w { height: var(--framer-aspect-ratio-supported, 513px); left: -121px; right: unset; width: 208%; } .framer-GPiFO .framer-1hhowrt { bottom: -5px; height: 252px; left: -2px; right: -1px; } .framer-GPiFO .framer-16n5wrf { bottom: 17px; gap: 5px; left: 25px; right: 22px; } .framer-GPiFO .framer-13d82xs, .framer-GPiFO .framer-1bgsjue, .framer-GPiFO .framer-1dxeavc, .framer-GPiFO .framer-vw58vb { gap: 12px; width: 440px; } .framer-GPiFO .framer-1dx9n84, .framer-GPiFO .framer-h3a1kh, .framer-GPiFO .framer-1kj84au, .framer-GPiFO .framer-lulgo4, .framer-GPiFO .framer-tr7hjm, .framer-GPiFO .framer-dluoxl, .framer-GPiFO .framer-1kihhh4, .framer-GPiFO .framer-1k1hriq { width: 187px; } .framer-GPiFO .framer-1y5x7mf, .framer-GPiFO .framer-1csxsa7, .framer-GPiFO .framer-1eug6vf, .framer-GPiFO .framer-t6q2ux { border-bottom-left-radius: 18px; border-bottom-right-radius: 18px; border-top-left-radius: 18px; border-top-right-radius: 18px; gap: 6px; height: 46px; width: 187px; } .framer-GPiFO .framer-9116oo { left: -54px; top: 215px; width: 534px; } .framer-GPiFO .framer-7utuli { bottom: -9px; height: var(--framer-aspect-ratio-supported, 513px); left: -54px; right: -64px; } .framer-GPiFO .framer-a06570, .framer-GPiFO .framer-1bvcfot, .framer-GPiFO .framer-13vjrt1 { bottom: -9px; height: 323px; left: -2px; right: -2px; } .framer-GPiFO .framer-tjd8z5, .framer-GPiFO .framer-1ou9tq9, .framer-GPiFO .framer-xjgqmx { bottom: 23px; gap: 5px; left: 25px; right: 22px; } .framer-GPiFO .framer-1tjj2g4 { height: var(--framer-aspect-ratio-supported, 504px); left: -83px; right: -96px; top: -1px; } .framer-GPiFO .framer-1m9ucdc { height: var(--framer-aspect-ratio-supported, 558px); left: -142px; top: -55px; width: 509px; } .framer-GPiFO .framer-16ht4cy { height: var(--framer-aspect-ratio-supported, 492px); left: -53px; width: 328px; } .framer-GPiFO .framer-1rmavls { height: var(--framer-aspect-ratio-supported, 504px); left: -83px; width: 403px; } .framer-GPiFO .framer-1rjfolo { height: var(--framer-aspect-ratio-supported, 514px); left: -17px; top: 0px; width: 402px; } .framer-GPiFO .framer-1vs8j8t { order: 6; } .framer-GPiFO .framer-ucw0a0 { order: 7; padding: 60px 0px 0px 70px; } .framer-GPiFO .framer-1az9djh { gap: 100px; } .framer-GPiFO .framer-9s2zpu { gap: 30px; width: min-content; } .framer-GPiFO .framer-glj1se { padding: 0px 0px 10px 100px; } .framer-GPiFO .framer-1alwl1n { left: -51px; top: -33px; } .framer-GPiFO .framer-vtb637, .framer-GPiFO .framer-1ay6dr4 { padding: 0px 0px 40px 100px; } .framer-GPiFO .framer-1vz23e { left: -42px; top: -33px; } .framer-GPiFO .framer-tmg4zb { left: -31px; top: -18px; } .framer-GPiFO .framer-1sntvdb { order: 8; } .framer-GPiFO .framer-bms7r6 { background: linear-gradient(180deg, var(--token-a62499c0-f5f7-41ff-866d-3b4c60a261e2, #020003) -0.9009009009009009%, rgb(224, 172, 0) 10%, var(--token-5797f1af-9d18-4a9d-89fb-53c16df14757, rgb(254, 195, 1)) 100%); order: 9; } .framer-GPiFO .framer-bxyyvk { bottom: 0px; left: -14px; } .framer-GPiFO .framer-10xxerq { order: 11; } .framer-GPiFO .framer-1y2ium0 { right: -402px; width: var(--framer-aspect-ratio-supported, 864px); } .framer-GPiFO .framer-m6xins { order: 12; } .framer-GPiFO .framer-14xd2hr { bottom: 0px; height: var(--framer-aspect-ratio-supported, 162px); top: unset; transform: translateX(-50%); width: 86px; } .framer-GPiFO .framer-134l1k2 { order: 13; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-GPiFO .framer-8quu0o, .framer-GPiFO .framer-1w3i6cv, .framer-GPiFO .framer-16n5wrf, .framer-GPiFO .framer-13d82xs, .framer-GPiFO .framer-1y5x7mf, .framer-GPiFO .framer-tjd8z5, .framer-GPiFO .framer-1bgsjue, .framer-GPiFO .framer-1csxsa7, .framer-GPiFO .framer-1ou9tq9, .framer-GPiFO .framer-1dxeavc, .framer-GPiFO .framer-1eug6vf, .framer-GPiFO .framer-xjgqmx, .framer-GPiFO .framer-vw58vb, .framer-GPiFO .framer-t6q2ux, .framer-GPiFO .framer-1az9djh, .framer-GPiFO .framer-9s2zpu { gap: 0px; } .framer-GPiFO .framer-8quu0o > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-GPiFO .framer-8quu0o > :first-child, .framer-GPiFO .framer-16n5wrf > :first-child, .framer-GPiFO .framer-13d82xs > :first-child, .framer-GPiFO .framer-tjd8z5 > :first-child, .framer-GPiFO .framer-1bgsjue > :first-child, .framer-GPiFO .framer-1ou9tq9 > :first-child, .framer-GPiFO .framer-1dxeavc > :first-child, .framer-GPiFO .framer-xjgqmx > :first-child, .framer-GPiFO .framer-vw58vb > :first-child, .framer-GPiFO .framer-9s2zpu > :first-child { margin-top: 0px; } .framer-GPiFO .framer-8quu0o > :last-child, .framer-GPiFO .framer-16n5wrf > :last-child, .framer-GPiFO .framer-13d82xs > :last-child, .framer-GPiFO .framer-tjd8z5 > :last-child, .framer-GPiFO .framer-1bgsjue > :last-child, .framer-GPiFO .framer-1ou9tq9 > :last-child, .framer-GPiFO .framer-1dxeavc > :last-child, .framer-GPiFO .framer-xjgqmx > :last-child, .framer-GPiFO .framer-vw58vb > :last-child, .framer-GPiFO .framer-9s2zpu > :last-child { margin-bottom: 0px; } .framer-GPiFO .framer-1w3i6cv > * { margin: 0px; margin-left: calc(14.09px / 2); margin-right: calc(14.09px / 2); } .framer-GPiFO .framer-1w3i6cv > :first-child, .framer-GPiFO .framer-1y5x7mf > :first-child, .framer-GPiFO .framer-1csxsa7 > :first-child, .framer-GPiFO .framer-1eug6vf > :first-child, .framer-GPiFO .framer-t6q2ux > :first-child, .framer-GPiFO .framer-1az9djh > :first-child { margin-left: 0px; } .framer-GPiFO .framer-1w3i6cv > :last-child, .framer-GPiFO .framer-1y5x7mf > :last-child, .framer-GPiFO .framer-1csxsa7 > :last-child, .framer-GPiFO .framer-1eug6vf > :last-child, .framer-GPiFO .framer-t6q2ux > :last-child, .framer-GPiFO .framer-1az9djh > :last-child { margin-right: 0px; } .framer-GPiFO .framer-16n5wrf > *, .framer-GPiFO .framer-tjd8z5 > *, .framer-GPiFO .framer-1ou9tq9 > *, .framer-GPiFO .framer-xjgqmx > * { margin: 0px; margin-bottom: calc(4.95px / 2); margin-top: calc(4.95px / 2); } .framer-GPiFO .framer-13d82xs > *, .framer-GPiFO .framer-1bgsjue > *, .framer-GPiFO .framer-1dxeavc > *, .framer-GPiFO .framer-vw58vb > * { margin: 0px; margin-bottom: calc(11.87px / 2); margin-top: calc(11.87px / 2); } .framer-GPiFO .framer-1y5x7mf > *, .framer-GPiFO .framer-1csxsa7 > *, .framer-GPiFO .framer-1eug6vf > *, .framer-GPiFO .framer-t6q2ux > * { margin: 0px; margin-left: calc(6.38px / 2); margin-right: calc(6.38px / 2); } .framer-GPiFO .framer-1az9djh > * { margin: 0px; margin-left: calc(100px / 2); margin-right: calc(100px / 2); } .framer-GPiFO .framer-9s2zpu > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7465\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"q0MCN5HHs\":{\"layout\":[\"fixed\",\"auto\"]},\"RrrYrO80I\":{\"layout\":[\"fixed\",\"auto\"]},\"xNXtD9sUz\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"MRvLzXFia\":{\"pattern\":\":MRvLzXFia\",\"name\":\"start-here\"},\"NCSo91BYt\":{\"pattern\":\":NCSo91BYt\",\"name\":\"mission\"},\"Teg_a2MFf\":{\"pattern\":\":Teg_a2MFf\",\"name\":\"why\"}}\n * @framerResponsiveScreen\n */const FramerxNglRLpPp=withCSS(Component,css,\"framer-GPiFO\");export default FramerxNglRLpPp;FramerxNglRLpPp.displayName=\"Home\";FramerxNglRLpPp.defaultProps={height:7465,width:1440};addFonts(FramerxNglRLpPp,[{explicitInter:true,fonts:[{family:\"Termina Test Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/7klCdu8DwdtRw6vldEiks6LJtnE.woff2\"},{family:\"Termina Test Demi\",source:\"custom\",url:\"https://framerusercontent.com/assets/AMvaJ5HVjKVpcjLSMyrV026urKs.woff2\"},{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:\"Termina Test Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/TjVruzobSNYgTk3Jd6ev46z50.woff2\"},{family:\"Termina Test Extra Light\",source:\"custom\",url:\"https://framerusercontent.com/assets/CaDkbx1kq4gdR4JtbDlEmh5xU.woff2\"},{family:\"Montserrat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v29/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Ew7Y3tcoqK5.woff2\",weight:\"400\"},{family:\"Montserrat\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NZ67QOF3FXYLOR27ABJOZVKKBKNRMKMF/EHBFE55HTLOOJHTZSLD54GSL3EBTAFNQ/DI2GHUWG3WKRXISSCTNDMTWKWZC25UIW.woff2\",weight:\"400\"},{family:\"Montserrat\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/KDZE2GHZ4MXZP7RVHASNN75AFABT2ZB2/G33WYZOWF5RLCYVGCMU5BFGBXH4DMKUK/SHZ3SDA4YUDBQPNRSIGO7XNSCQQUBDYR.woff2\",weight:\"700\"},{family:\"Montserrat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v29/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCs16Ew7Y3tcoqK5.woff2\",weight:\"300\"},{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/BkDpl4ghaqvMi1btKFyG2tdbec.woff2\",weight:\"300\"},{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/zAMK70AQRFSShJgUiaR5IiIhgzk.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/IETjvc5qzUaRoaruDpPSwCUM8.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/oLCoaT3ioA0fHdJnWR9W6k7NY.woff2\",weight:\"300\"},{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/Sj0PCHQSBjFmEp6NBWg6FNaKc.woff2\",weight:\"300\"},{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/v2q8JTTTs7McDMSEhnxAIBqd0.woff2\",weight:\"300\"},{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/H4TfENUY1rh8R9UaSD6vngjJP3M.woff2\",weight:\"300\"}]},...NavigationNavbar2Fonts,...VideoFonts,...CardFeatureFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerxNglRLpPp\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerResponsiveScreen\":\"\",\"framerScrollSections\":\"{\\\"MRvLzXFia\\\":{\\\"pattern\\\":\\\":MRvLzXFia\\\",\\\"name\\\":\\\"start-here\\\"},\\\"NCSo91BYt\\\":{\\\"pattern\\\":\\\":NCSo91BYt\\\",\\\"name\\\":\\\"mission\\\"},\\\"Teg_a2MFf\\\":{\\\"pattern\\\":\\\":Teg_a2MFf\\\",\\\"name\\\":\\\"why\\\"}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"7465\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"q0MCN5HHs\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"RrrYrO80I\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xNXtD9sUz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "defaultVideo", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "X", "srcType", "srcUrl", "srcFile", "posterEnabled", "playing", "restartOnEnter", "objectFit", "backgroundColor", "radius", "volume", "startTimeProp", "poster", "progress", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "renderTarget", "useRenderTarget", "isStaticRenderer", "RenderTarget", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "ue", "isMountedAndReadyForProgressChanges", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "PhosphorFonts", "getFonts", "Icon", "Phosphor1Controls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "color", "height", "icon", "id", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "Fn98ATeSb", "ByFhoK_Ir", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "ComponentViewportProvider", "css", "FramergsRhsfTK8", "withCSS", "gsRhsfTK8_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "header", "height", "id", "subtitle", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "daHyFdJVA", "gYIduh5aF", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "RichText2", "css", "FramerK3blbqL6d", "withCSS", "K3blbqL6d_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "ButtonsIconFonts", "getFonts", "gsRhsfTK8_default", "ContentFonts", "K3blbqL6d_default", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "header", "height", "id", "subtitle", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "hjN1y4eSN", "uHoXD8OXR", "josXl_DJ_", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "gsRhsfTK8_default", "K3blbqL6d_default", "css", "FramerX0kElRguY", "withCSS", "X0kElRguY_default", "addPropertyControls", "ControlType", "addFonts", "ButtonsIconFonts", "ContentFonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "NavigationNavbar2Fonts", "getFonts", "JhroRnPHR_default", "RichTextWithOptimizedAppearEffect", "withOptimizedAppearEffect", "RichText2", "MotionAWithOptimizedAppearEffect", "motion", "MotionDivWithOptimizedAppearEffect", "MotionHeaderWithOptimizedAppearEffect", "VideoFonts", "Video", "ImageWithFX", "withFX", "Image2", "MotionDivWithFXWithOptimizedAppearEffect", "MotionDivWithFX", "CardFeatureFonts", "X0kElRguY_default", "ContainerWithFX", "Container", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "transition3", "animation4", "transition4", "animation5", "transition5", "animation6", "transition6", "animation7", "transition7", "animation8", "animation9", "transition8", "animation10", "transition9", "animation11", "transition10", "animation12", "transition11", "animation13", "animation14", "transition12", "animation15", "animation16", "animation17", "transformTemplate1", "_", "t", "animation18", "animation19", "animation20", "transformTemplate2", "HTMLStyle", "value", "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", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "elementId2", "ref3", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "PropertyOverrides2", "SVG", "x", "Link", "getLoadingLazyAtYPosition", "css", "FramerxNglRLpPp", "withCSS", "xNglRLpPp_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
