{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/zEmAposrjympIK2ybAcQ/Video.js", "ssg:https://framerusercontent.com/modules/VwYGOvewlrsU2unhuw6s/J6FnTyrLrDFw9hVx8o4V/rbv6xLw8V.js", "ssg:https://framerusercontent.com/modules/Xkp5eMfc41H3nPf2D3GF/ENKZk1TvhNWWlkxwytBv/Vu50KGpMk.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const 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;}/**\n * The Video component has some effects that sync the video element with props\n * like `startTime`, `progress`, etc. React calls these effects whenever these\n * props change. However, it also calls them on the first mount, and this is\n * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n * the video was hydrated, the initial `useEffect` call will reset the video\n * state. To avoid this, we use this flag.\n */let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing:playingProp,muted,playsinline,controls,progress,objectFit,backgroundColor,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,posterEnabled,startTime:startTimeProp,volume,loop}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);const isCloseToViewport=isOnCanvas?false:useInView(videoRef,{margin:\"100px\",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(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges){isMountedAndReadyForProgressChanges=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:autoplayBehavior===\"on-mount\",preload:isPlaying.current?\"auto\":autoplayBehavior!==\"on-mount\"&&posterEnabled&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";Video.defaultProps={srcType:\"URL\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",srcFile:\"\",posterEnabled:false,controls:false,playing:true,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:\"cover\",backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime:0};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\",placeholder:\"../example.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\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\",description:\"We recommend adding a poster. [Learn more](http://framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"112\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (90417e1)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const MotionAWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.a));const serializationHash=\"framer-aJDcu\";const variantClassNames={mnnhqTBsO:\"framer-v-1p6ay5\"};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={bounce:.1,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={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"mnnhqTBsO\",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:transition2,children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ZeJhglj42\"},openInNewTab:false,children:/*#__PURE__*/_jsx(MotionAWithFXWithOptimizedAppearEffect,{...restProps,...gestureHandlers,__framer__presenceAnimate:animation,__framer__presenceInitial:animation1,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1p6ay5\",className,classNames)} framer-1qnvndd`,\"data-framer-appear-id\":\"1p6ay5\",\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"mnnhqTBsO\",optimized:true,ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:56,borderBottomRightRadius:56,borderTopLeftRadius:56,borderTopRightRadius:56,boxShadow:\"0px 0px 20px 0px rgba(0, 0, 0, 0.1)\",...style},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQmxhY2s=\",\"--framer-font-size\":\"33.097703979424715px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-0.07px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4fdbb0e4-d648-4585-93ac-cccb6850d497, rgb(67, 39, 74)))\",\"--framer-text-transform\":\"capitalize\"},children:\"get to know us\"})}),className:\"framer-1mprrvx\",fonts:[\"Inter-Black\"],layoutDependency:layoutDependency,layoutId:\"AFDBwdCCa\",style:{\"--extracted-r6o4lv\":\"var(--token-4fdbb0e4-d648-4585-93ac-cccb6850d497, rgb(67, 39, 74))\"},verticalAlignment:\"top\",viewBox:\"0 0 257 40\",withExternalLayout:true})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-aJDcu.framer-1qnvndd, .framer-aJDcu .framer-1qnvndd { display: block; }\",\".framer-aJDcu.framer-1p6ay5 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 12px 14px 12px 12px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-aJDcu .framer-1mprrvx { flex: none; height: auto; position: relative; white-space: pre; width: 257px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-aJDcu.framer-1p6ay5 { gap: 0px; } .framer-aJDcu.framer-1p6ay5 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-aJDcu.framer-1p6ay5 > :first-child { margin-left: 0px; } .framer-aJDcu.framer-1p6ay5 > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 64\n * @framerIntrinsicWidth 283\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerrbv6xLw8V=withCSS(Component,css,\"framer-aJDcu\");export default Framerrbv6xLw8V;Framerrbv6xLw8V.displayName=\"Members\";Framerrbv6xLw8V.defaultProps={height:64,width:283};addFonts(Framerrbv6xLw8V,[{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/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\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerrbv6xLw8V\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"64\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"283\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./rbv6xLw8V.map", "// Generated by Framer (677c5d1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/zEmAposrjympIK2ybAcQ/Video.js\";import Particles from\"https://framerusercontent.com/modules/wb6ZrZlCLNQ5HHBJtNND/c1GLxCsQBQvlLXhkz7er/Particles.js\";import Nav from\"#framer/local/canvasComponent/BvRAsUwfm/BvRAsUwfm.js\";import Members from\"#framer/local/canvasComponent/rbv6xLw8V/rbv6xLw8V.js\";import Footer from\"#framer/local/canvasComponent/YCbXDzWnv/YCbXDzWnv.js\";import metadataProvider from\"#framer/local/webPageMetadata/Vu50KGpMk/Vu50KGpMk.js\";const NavFonts=getFonts(Nav);const VideoFonts=getFonts(Video);const MotionDivWithFX=withFX(motion.div);const ParticlesFonts=getFonts(Particles);const MembersFonts=getFonts(Members);const ContainerWithFX=withFX(Container);const TickerFonts=getFonts(Ticker);const FooterFonts=getFonts(Footer);const breakpoints={nyrFLcWfB:\"(min-width: 1200px)\",xNY_IQ9p4:\"(min-width: 810px) and (max-width: 1199px)\",Xw3Fh9DXR:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-s2RIW\";const variantClassNames={nyrFLcWfB:\"framer-v-1qx9n20\",xNY_IQ9p4:\"framer-v-vrjl92\",Xw3Fh9DXR:\"framer-v-1fm1min\"};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const animation={opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:200,y:0};const transition1={bounce:.25,delay:.1,duration:1,type:\"spring\"};const textEffect={effect:animation,tokenization:\"word\",transition:transition1,trigger:\"onMount\",type:\"appear\"};const textEffect1={effect:animation,startDelay:.3,tokenization:\"word\",transition:transition1,trigger:\"onMount\",type:\"appear\"};const textEffect2={effect:animation,startDelay:.6,tokenization:\"word\",transition:transition1,trigger:\"onMount\",type:\"appear\"};const textEffect3={effect:animation,startDelay:.9,tokenization:\"word\",transition:transition1,trigger:\"onMount\",type:\"appear\"};const textEffect4={effect:animation,repeat:false,startDelay:0,tokenization:\"word\",transition:transition1,trigger:\"onMount\",type:\"appear\"};const textEffect5={effect:animation,repeat:false,startDelay:.3,tokenization:\"word\",transition:transition1,trigger:\"onMount\",type:\"appear\"};const textEffect6={effect:animation,repeat:false,startDelay:.6,tokenization:\"word\",transition:transition1,trigger:\"onMount\",type:\"appear\"};const textEffect7={effect:animation,repeat:false,startDelay:.9,tokenization:\"word\",transition:transition1,trigger:\"onMount\",type:\"appear\"};const transition2={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation1={opacity:.9,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition2};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition3={bounce:.2,delay:0,duration:1.2,type:\"spring\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition2};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.05,skewX:0,skewY:0,transition:transition2};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"nyrFLcWfB\",Phone:\"Xw3Fh9DXR\",Tablet:\"xNY_IQ9p4\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"nyrFLcWfB\"};};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=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"Xw3Fh9DXR\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"Xw3Fh9DXR\")return true;return false;};const elementId=useRouteElementId(\"F9X_sC3NJ\");const ref1=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"nyrFLcWfB\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-7e578644-a4c8-4be4-b344-ecc11cd2ff47, rgb(247, 235, 250)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1qx9n20\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:92,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1iok93c-container\",layoutScroll:true,nodeId:\"kGPxBsXES\",scopeId:\"Vu50KGpMk\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xNY_IQ9p4:{variant:\"wPI1kYneA\"},Xw3Fh9DXR:{variant:\"xp1czyEuR\"}},children:/*#__PURE__*/_jsx(Nav,{height:\"100%\",id:\"kGPxBsXES\",layoutId:\"kGPxBsXES\",style:{width:\"100%\"},variant:\"GyE7_pQxJ\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"section\",{background:{alt:\"\",fit:\"fill\"},className:\"framer-x3qr3e\",\"data-framer-name\":\"Hero Section\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-sk0xra\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1t5zoqr-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"tTFlzRjTi\",scopeId:\"Vu50KGpMk\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"tTFlzRjTi\",isMixedBorderRadius:false,layoutId:\"tTFlzRjTi\",loop:true,muted:true,objectFit:\"cover\",playing:true,poster:\"https://framerusercontent.com/images/WwnzByyHXpsIvKzUUN1vRxp5Jw.jpeg\",posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/pM2gMScJRxCRjRPD9EeHGOl1cbI.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xNY_IQ9p4:{transformTemplate:transformTemplate2}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:125,__framer__spring:{bounce:.2,damping:100,delay:0,duration:.5,durationBasedSpring:false,ease:[.44,0,.56,1],mass:1,stiffness:328,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:.2,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-400}}],__framer__transformTrigger:\"onScroll\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-133vfvv\",transformTemplate:transformTemplate1,children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xNY_IQ9p4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(67, 39, 74)\",\"--framer-text-transform\":\"inherit\"},children:\"Devotional\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(67, 39, 74)\",\"--framer-text-transform\":\"inherit\"},children:\"Devotional\"})}),className:\"framer-1ivw78v hidden-1fm1min\",effect:textEffect,fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xNY_IQ9p4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(67, 39, 74)\",\"--framer-text-transform\":\"inherit\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"40px\"},children:\"Relational\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"40px\"},children:/*#__PURE__*/_jsx(\"br\",{})})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(67, 39, 74)\",\"--framer-text-transform\":\"inherit\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"60px\"},children:\"Relational\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"60px\"},children:/*#__PURE__*/_jsx(\"br\",{})})]})}),className:\"framer-1uwrm6t hidden-1fm1min\",effect:textEffect1,fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xNY_IQ9p4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(67, 39, 74)\",\"--framer-text-transform\":\"inherit\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"40px\"},children:\"Missional\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"40px\"},children:/*#__PURE__*/_jsx(\"br\",{})})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(67, 39, 74)\",\"--framer-text-transform\":\"inherit\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"60px\"},children:\"Missional\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"60px\"},children:/*#__PURE__*/_jsx(\"br\",{})})]})}),className:\"framer-j81514 hidden-1fm1min\",effect:textEffect2,fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xNY_IQ9p4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(67, 39, 74)\",\"--framer-text-transform\":\"inherit\"},children:\"Reproducible\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(67, 39, 74)\",\"--framer-text-transform\":\"inherit\"},children:\"Reproducible\"})}),className:\"framer-1767zyz hidden-1fm1min\",effect:textEffect3,fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(67, 39, 74, 0.75)\",\"--framer-text-transform\":\"inherit\"},children:\"Devotional\"})}),className:\"framer-5hl7uv hidden-1qx9n20 hidden-vrjl92\",effect:textEffect4,fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(67, 39, 74, 0.75)\",\"--framer-text-transform\":\"inherit\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"30px\"},children:\"Relational\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"30px\"},children:/*#__PURE__*/_jsx(\"br\",{})})]})}),className:\"framer-dxnvwi hidden-1qx9n20 hidden-vrjl92\",effect:textEffect5,fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(67, 39, 74, 0.75)\",\"--framer-text-transform\":\"inherit\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"30px\"},children:\"Missional\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"30px\"},children:/*#__PURE__*/_jsx(\"br\",{})})]})}),className:\"framer-1in4qeg hidden-1qx9n20 hidden-vrjl92\",effect:textEffect6,fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(67, 39, 74, 0.75)\",\"--framer-text-transform\":\"inherit\"},children:\"Reproducible\"})}),className:\"framer-10ggdm1 hidden-1qx9n20 hidden-vrjl92\",effect:textEffect7,fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q376g3\",\"data-framer-name\":\"Parallax\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nau82c\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xNY_IQ9p4:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+294+0+0+0+0),pixelHeight:307,pixelWidth:1262,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/t2VHLJ6DwvBwYOY73mZEwauBo6k.png\"}},Xw3Fh9DXR:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+240+0+0+0+0),pixelHeight:307,pixelWidth:686,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/OHuWeVmk2MNGqh6H6L3MfugmCNU.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+700+0+-218.5+0+0),pixelHeight:600,pixelWidth:4e3,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/4ePDlTYjbbVUTdWzYx5zPaECw.png?scale-down-to=2048\"},className:\"framer-1z0k8px\",\"data-framer-name\":\"Books\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-er9ntw\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jtyi2y\",\"data-border\":true,\"data-framer-name\":\"Call to Action\",children:[/*#__PURE__*/_jsx(Link,{href:{hash:\":xQTd_xCa7\",webPageId:\"C6WkdkXFl\"},motionChild:true,nodeId:\"KidH4wFZz\",openInNewTab:false,scopeId:\"Vu50KGpMk\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-17vuff0 framer-1r0zxsq\",\"data-framer-name\":\"Button\",whileHover:animation1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xw3Fh9DXR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"div\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-806a3e8b-537f-422d-88d8-4b9f1a8fbacd, rgb(38, 38, 38))\"},children:\"TOUR\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"div\",{style:{\"--framer-font-size\":\"26px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-806a3e8b-537f-422d-88d8-4b9f1a8fbacd, rgb(38, 38, 38))\"},children:\"TOUR\"})}),className:\"framer-1b1067i\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2392d5\",\"data-framer-name\":\"Divider\"}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"C6WkdkXFl\"},motionChild:true,nodeId:\"sWesQC2oJ\",openInNewTab:false,scopeId:\"Vu50KGpMk\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-de1hb4 framer-1r0zxsq\",\"data-framer-name\":\"Button\",whileHover:animation1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xw3Fh9DXR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"div\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-806a3e8b-537f-422d-88d8-4b9f1a8fbacd, rgb(38, 38, 38))\"},children:\"APPLY\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"div\",{style:{\"--framer-font-size\":\"26px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-806a3e8b-537f-422d-88d8-4b9f1a8fbacd, rgb(38, 38, 38))\"},children:\"APPLY\"})}),className:\"framer-5fk64o\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-dp2pj0\",\"data-framer-name\":\"Divider\"}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"QGGmroZ5j\"},motionChild:true,nodeId:\"oyE9l2oDG\",openInNewTab:false,scopeId:\"Vu50KGpMk\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-fs2alh framer-1r0zxsq\",\"data-framer-name\":\"Button\",whileHover:animation1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xw3Fh9DXR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"div\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-806a3e8b-537f-422d-88d8-4b9f1a8fbacd, rgb(38, 38, 38))\"},children:\"CONTACT\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"div\",{style:{\"--framer-font-size\":\"26px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-806a3e8b-537f-422d-88d8-4b9f1a8fbacd, rgb(38, 38, 38))\"},children:\"CONTACT\"})}),className:\"framer-1n5c87l\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]})})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-ix0gc1\",\"data-framer-name\":\"Mission\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rraewf-container\",id:elementId,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"F9X_sC3NJ\",ref:ref1,scopeId:\"Vu50KGpMk\",children:/*#__PURE__*/_jsx(Particles,{background:\"var(--token-67f46c62-dabf-4520-93ef-2989d3567173, rgb(255, 255, 255))\",clickOptions:{clickEnabled:false,clickModes:\"push\"},color:\"rgb(38, 38, 38)\",colors:[\"var(--token-4fdbb0e4-d648-4585-93ac-cccb6850d497, rgb(67, 39, 74))\",\"rgb(214, 161, 227)\",\"rgb(144, 7, 179)\",\"rgb(38, 38, 38)\"],densityOptions:{densityArea:5e3,densityEnable:false,densityFactor:50},fpsOptions:30,height:\"100%\",hoverOptions:{hoverEnabled:true,hoverForce:10,hoverModes:\"none\",hoverParallax:false,hoverSmooth:10},id:\"F9X_sC3NJ\",layoutId:\"F9X_sC3NJ\",linksOptions:{linksColor:\"rgb(255, 255, 255)\",linksDistance:100,linksEnabled:false,linksOpacity:.2,linksWidth:1},modeOptions:{bubbleDistance:100,bubbleDuration:.4,bubbleSize:40,connectDistance:100,connectLinksOpacity:.2,connectRadius:50,grabDistance:100,grabLinksOpacity:.2,pushQuantity:4,removeQuantity:4,repulseDistance:200,repulseDuration:1.2,trailDelay:.1,trailQuantity:10},moveOptions:{moveAttractDistance:100,moveAttractEnabled:false,moveDirection:\"none\",moveEnabled:true,moveGravityAcceleration:1,moveGravityEnabled:false,moveGravityMaxSpeed:2,moveOut:\"bounce\",moveRandom:true,moveSpeed:.5,moveSpinAcceleration:1,moveSpinEnabled:false,moveStraight:false,moveTrailAmount:100,moveTrailEnabled:false,moveVibrate:false},number:150,opacityOptions:{opacity:.3,opacityMax:1,opacityMin:0,opacityType:true},particlesID:\"One\",radius:0,rotateOptions:{rotateAnimation:false,rotateDirection:\"random\",rotateSpeed:5,rotateSync:false,rotateValue:0},shapeOptions:{characterType:\"\",imageHeight:100,imageWidth:100,shapeType:\"edge\"},sizeOptions:{size:1.25,sizeMax:5,sizeMin:1,sizeType:false},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u87m9n\",\"data-border\":true,\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qjq3mj-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"pahxXlKH6\",scopeId:\"Vu50KGpMk\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:160,bottomRightRadius:0,controls:true,height:\"100%\",id:\"pahxXlKH6\",isMixedBorderRadius:false,layoutId:\"pahxXlKH6\",loop:false,muted:false,objectFit:\"cover\",playing:false,poster:\"https://framerusercontent.com/images/Zg6APHKvvFd4F9UFNBDcS6nAojg.jpg\",posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/wSTzPf29mhXBZe5gqhatVphBI6I.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:160,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gnumys\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1svdz4i\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xNY_IQ9p4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"MISSION\"})})},Xw3Fh9DXR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"MISSION\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"MISSION\"})}),className:\"framer-ncmdht\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xw3Fh9DXR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b8ff48f1-4ece-4369-9661-59835348104f, rgb(89, 89, 89))\"},children:\"Because Jesus is real, we are a family of faith, fully engaged, allowing the Spirit to transform our students through learning that is Godly, relational, and reproducible.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--token-b8ff48f1-4ece-4369-9661-59835348104f, rgb(89, 89, 89))\"},children:\"Because Jesus is real, we are a family of faith, fully engaged, allowing the Spirit to transform our students through learning that is Godly, relational, and reproducible.\"})}),className:\"framer-pusvdu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xNY_IQ9p4:{y:(componentViewport?.y||0)+294+0+300+96+362},Xw3Fh9DXR:{y:(componentViewport?.y||0)+240+0+298+31+549.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,y:(componentViewport?.y||0)+700+0+81.5+96+459,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:false,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-b39y3g-container\",nodeId:\"tfhaG325C\",rendersWithMotion:true,scopeId:\"Vu50KGpMk\",style:{transformPerspective:1200},whileHover:animation4,children:/*#__PURE__*/_jsx(Members,{height:\"100%\",id:\"tfhaG325C\",layoutId:\"tfhaG325C\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-xyni5s\",\"data-framer-name\":\"Tutorials Section\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-6not7l-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"b9yqoprTY\",scopeId:\"Vu50KGpMk\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xw3Fh9DXR:{gap:20}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:.3,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:40,height:\"100%\",hoverFactor:1,id:\"b9yqoprTY\",layoutId:\"b9yqoprTY\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:true,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XNMNeneQI\"},motionChild:true,nodeId:\"Ge9p73BKA\",openInNewTab:false,scopeId:\"Vu50KGpMk\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-3x3a2a framer-1r0zxsq\",\"data-framer-name\":\"Elementary\",whileHover:animation5,children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",pixelHeight:703,pixelWidth:1378,positionX:\"center\",positionY:\"top\",sizes:\"400px\",src:\"https://framerusercontent.com/images/5OIZp2Qo7ENqu7ExHsnvM8CHtU.jpg\",srcSet:\"https://framerusercontent.com/images/5OIZp2Qo7ENqu7ExHsnvM8CHtU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/5OIZp2Qo7ENqu7ExHsnvM8CHtU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/5OIZp2Qo7ENqu7ExHsnvM8CHtU.jpg 1378w\"},className:\"framer-1nahejw\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(67, 39, 74, 0.75)\"},children:\"Elementary School\"})}),className:\"framer-199034b\",fonts:[\"FS;Poppins-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"dNAyaVpTx\"},motionChild:true,nodeId:\"lVABeRNOs\",openInNewTab:false,scopeId:\"Vu50KGpMk\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-13d0lhv framer-1r0zxsq\",\"data-framer-name\":\"Junior High\",whileHover:animation5,children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",pixelHeight:413,pixelWidth:748,positionX:\"center\",positionY:\"center\",sizes:\"400px\",src:\"https://framerusercontent.com/images/ecbN24r5NOyb15gOntk0AnJMvE.jpg\",srcSet:\"https://framerusercontent.com/images/ecbN24r5NOyb15gOntk0AnJMvE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ecbN24r5NOyb15gOntk0AnJMvE.jpg 748w\"},className:\"framer-jmdvcg\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(67, 39, 74, 0.75)\"},children:\"Junior High\"})}),className:\"framer-28ehb5\",fonts:[\"FS;Poppins-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"okoT5by_f\"},motionChild:true,nodeId:\"hp3y0lYum\",openInNewTab:false,scopeId:\"Vu50KGpMk\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-oxs3e9 framer-1r0zxsq\",\"data-framer-name\":\"High School\",whileHover:animation5,children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",pixelHeight:580,pixelWidth:774,positionX:\"center\",positionY:\"top\",sizes:\"400px\",src:\"https://framerusercontent.com/images/QtpF6zDRdb7WL7jnWzpzZuAaIw.jpg\",srcSet:\"https://framerusercontent.com/images/QtpF6zDRdb7WL7jnWzpzZuAaIw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/QtpF6zDRdb7WL7jnWzpzZuAaIw.jpg 774w\"},className:\"framer-1exbu46\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(67, 39, 74, 0.75)\"},children:\"High School\"})}),className:\"framer-1ks80li\",fonts:[\"FS;Poppins-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-pidbnz\",\"data-framer-name\":\"Footer Section\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xNY_IQ9p4:{width:\"791px\",y:(componentViewport?.y||0)+294+0+1268+17+0},Xw3Fh9DXR:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+240+0+1332.8+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:298,width:`min(${componentViewport?.width||\"100vw\"} - 130px, 960px)`,y:(componentViewport?.y||0)+700+0+1146.5+65+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-12wdwhi-container\",nodeId:\"BpFA2PWO2\",scopeId:\"Vu50KGpMk\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xNY_IQ9p4:{variant:\"vmac58uRF\"},Xw3Fh9DXR:{style:{width:\"100%\"},variant:\"FVhDx9ILj\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"BpFA2PWO2\",layoutId:\"BpFA2PWO2\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"knW47DR74\",width:\"100%\"})})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-s2RIW.framer-1r0zxsq, .framer-s2RIW .framer-1r0zxsq { display: block; }\",\".framer-s2RIW.framer-1qx9n20 { align-content: center; align-items: center; background-color: var(--token-7e578644-a4c8-4be4-b344-ecc11cd2ff47, #f7ebfa); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 2264px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-s2RIW .framer-1iok93c-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 9; }\",\".framer-s2RIW .framer-x3qr3e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: 0px; overflow: visible; padding: 0px; position: fixed; top: 110px; width: 100%; z-index: 1; }\",\".framer-s2RIW .framer-sk0xra { -webkit-mask: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0,0,0,1) 77%) add; align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; mask: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0,0,0,1) 77%) add; overflow: hidden; padding: 5px 0px 5px 0px; position: relative; width: 1px; }\",\".framer-s2RIW .framer-1t5zoqr-container { -webkit-mask: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 0%, rgb(0, 0, 0) 51.35135135135135%, rgba(0, 0, 0, 0) 100%) add, radial-gradient(50% 50% at 50% 50%, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 0%) add; flex: 1 0 0px; height: 561px; mask: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 0%, rgb(0, 0, 0) 51.35135135135135%, rgba(0, 0, 0, 0) 100%) add, radial-gradient(50% 50% at 50% 50%, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 0%) add; position: relative; width: 1px; z-index: 1; }\",\".framer-s2RIW .framer-133vfvv { align-content: flex-start; align-items: flex-start; background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4641) 12.399704391891891%, rgba(255, 255, 255, 0.5) 22.3236204954955%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 110px 108px 110px 108px; position: absolute; right: 0px; top: 50%; transform: translateY(-50%); width: min-content; z-index: 1; }\",\".framer-s2RIW .framer-1ivw78v, .framer-s2RIW .framer-1uwrm6t, .framer-s2RIW .framer-j81514, .framer-s2RIW .framer-1767zyz, .framer-s2RIW .framer-5hl7uv, .framer-s2RIW .framer-dxnvwi, .framer-s2RIW .framer-1in4qeg, .framer-s2RIW .framer-10ggdm1 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; z-index: 1; }\",\".framer-s2RIW .framer-1q376g3 { align-content: center; align-items: center; background-color: var(--token-a993f51f-68f8-419f-a94d-9b75ea96bf23, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 1356px; justify-content: center; left: 0px; overflow: visible; padding: 0px; position: absolute; top: 700px; width: 100%; z-index: 2; }\",\".framer-s2RIW .framer-1nau82c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-s2RIW .framer-1z0k8px { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 300px; justify-content: flex-end; padding: 0px; position: relative; width: 100%; }\",\".framer-s2RIW .framer-er9ntw { align-content: center; align-items: center; bottom: 26px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 64px; justify-content: center; left: calc(50.00000000000002% - 550px / 2); overflow: hidden; padding: 0px; position: absolute; width: 550px; }\",\".framer-s2RIW .framer-jtyi2y { --border-bottom-width: 1px; --border-color: var(--token-76cf004d-e6d7-46f5-a40e-afe8d66db178, #e0e0e0); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-67f46c62-dabf-4520-93ef-2989d3567173, #ffffff); border-bottom-left-radius: 18px; border-bottom-right-radius: 18px; border-top-left-radius: 18px; border-top-right-radius: 18px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 960px; overflow: hidden; padding: 12px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-s2RIW .framer-17vuff0, .framer-s2RIW .framer-de1hb4, .framer-s2RIW .framer-fs2alh { align-content: center; align-items: center; background-color: var(--token-67f46c62-dabf-4520-93ef-2989d3567173, #ffffff); border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: 40px; justify-content: center; overflow: hidden; padding: 9px 18px 9px 18px; position: relative; text-decoration: none; width: 150px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-s2RIW .framer-1b1067i, .framer-s2RIW .framer-5fk64o, .framer-s2RIW .framer-1n5c87l { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-s2RIW .framer-2392d5, .framer-s2RIW .framer-dp2pj0 { background-color: #a36db0; flex: none; height: 16px; overflow: hidden; position: relative; width: 1px; }\",\".framer-s2RIW .framer-ix0gc1 { align-content: center; align-items: center; background-color: var(--token-67f46c62-dabf-4520-93ef-2989d3567173, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 49px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 96px 24px 96px 24px; position: relative; width: 1200px; }\",\".framer-s2RIW .framer-1rraewf-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-s2RIW .framer-1u87m9n { --border-bottom-width: 1px; --border-color: var(--token-76cf004d-e6d7-46f5-a40e-afe8d66db178, #e0e0e0); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-67f46c62-dabf-4520-93ef-2989d3567173, #ffffff); border-bottom-left-radius: 15px; border-bottom-right-radius: 160px; border-top-left-radius: 15px; border-top-right-radius: 160px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 70px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 30px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-s2RIW .framer-1qjq3mj-container { flex: none; height: 350px; position: relative; width: 554px; }\",\".framer-s2RIW .framer-1gnumys { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: hidden; padding: 12px 12px 0px 0px; position: relative; width: 1px; }\",\".framer-s2RIW .framer-1svdz4i { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-s2RIW .framer-ncmdht { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-s2RIW .framer-pusvdu { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-s2RIW .framer-b39y3g-container { flex: none; height: auto; position: relative; width: auto; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-s2RIW .framer-xyni5s { align-content: center; align-items: center; background-color: #f1e1f5; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-s2RIW .framer-6not7l-container { flex: none; height: 350px; position: relative; width: 100%; }\",\".framer-s2RIW .framer-3x3a2a, .framer-s2RIW .framer-13d0lhv { align-content: center; align-items: center; aspect-ratio: 1.4545454545454546 / 1; background-color: #ffffff; border-bottom-left-radius: 25px; border-bottom-right-radius: 25px; border-top-left-radius: 25px; border-top-right-radius: 25px; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 275px); justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 400px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-s2RIW .framer-1nahejw, .framer-s2RIW .framer-jmdvcg, .framer-s2RIW .framer-1exbu46 { flex: 1 0 0px; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-s2RIW .framer-199034b, .framer-s2RIW .framer-28ehb5, .framer-s2RIW .framer-1ks80li { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 40px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-s2RIW .framer-oxs3e9 { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 25px; border-bottom-right-radius: 25px; border-top-left-radius: 25px; border-top-right-radius: 25px; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 275px; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 400px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-s2RIW .framer-pidbnz { align-content: center; align-items: center; background-color: var(--token-67f46c62-dabf-4520-93ef-2989d3567173, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 65px; position: relative; width: 100%; }\",\".framer-s2RIW .framer-12wdwhi-container { flex: none; height: auto; max-width: 960px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-s2RIW.framer-1qx9n20, .framer-s2RIW .framer-x3qr3e, .framer-s2RIW .framer-sk0xra, .framer-s2RIW .framer-133vfvv, .framer-s2RIW .framer-1q376g3, .framer-s2RIW .framer-1nau82c, .framer-s2RIW .framer-1z0k8px, .framer-s2RIW .framer-er9ntw, .framer-s2RIW .framer-jtyi2y, .framer-s2RIW .framer-17vuff0, .framer-s2RIW .framer-de1hb4, .framer-s2RIW .framer-fs2alh, .framer-s2RIW .framer-ix0gc1, .framer-s2RIW .framer-1u87m9n, .framer-s2RIW .framer-1gnumys, .framer-s2RIW .framer-1svdz4i, .framer-s2RIW .framer-xyni5s, .framer-s2RIW .framer-3x3a2a, .framer-s2RIW .framer-13d0lhv, .framer-s2RIW .framer-oxs3e9, .framer-s2RIW .framer-pidbnz { gap: 0px; } .framer-s2RIW.framer-1qx9n20 > *, .framer-s2RIW .framer-133vfvv > *, .framer-s2RIW .framer-1q376g3 > *, .framer-s2RIW .framer-1nau82c > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-s2RIW.framer-1qx9n20 > :first-child, .framer-s2RIW .framer-133vfvv > :first-child, .framer-s2RIW .framer-1q376g3 > :first-child, .framer-s2RIW .framer-1nau82c > :first-child, .framer-s2RIW .framer-ix0gc1 > :first-child, .framer-s2RIW .framer-1gnumys > :first-child, .framer-s2RIW .framer-xyni5s > :first-child, .framer-s2RIW .framer-3x3a2a > :first-child, .framer-s2RIW .framer-13d0lhv > :first-child, .framer-s2RIW .framer-oxs3e9 > :first-child, .framer-s2RIW .framer-pidbnz > :first-child { margin-top: 0px; } .framer-s2RIW.framer-1qx9n20 > :last-child, .framer-s2RIW .framer-133vfvv > :last-child, .framer-s2RIW .framer-1q376g3 > :last-child, .framer-s2RIW .framer-1nau82c > :last-child, .framer-s2RIW .framer-ix0gc1 > :last-child, .framer-s2RIW .framer-1gnumys > :last-child, .framer-s2RIW .framer-xyni5s > :last-child, .framer-s2RIW .framer-3x3a2a > :last-child, .framer-s2RIW .framer-13d0lhv > :last-child, .framer-s2RIW .framer-oxs3e9 > :last-child, .framer-s2RIW .framer-pidbnz > :last-child { margin-bottom: 0px; } .framer-s2RIW .framer-x3qr3e > *, .framer-s2RIW .framer-1z0k8px > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-s2RIW .framer-x3qr3e > :first-child, .framer-s2RIW .framer-sk0xra > :first-child, .framer-s2RIW .framer-1z0k8px > :first-child, .framer-s2RIW .framer-er9ntw > :first-child, .framer-s2RIW .framer-jtyi2y > :first-child, .framer-s2RIW .framer-17vuff0 > :first-child, .framer-s2RIW .framer-de1hb4 > :first-child, .framer-s2RIW .framer-fs2alh > :first-child, .framer-s2RIW .framer-1u87m9n > :first-child, .framer-s2RIW .framer-1svdz4i > :first-child { margin-left: 0px; } .framer-s2RIW .framer-x3qr3e > :last-child, .framer-s2RIW .framer-sk0xra > :last-child, .framer-s2RIW .framer-1z0k8px > :last-child, .framer-s2RIW .framer-er9ntw > :last-child, .framer-s2RIW .framer-jtyi2y > :last-child, .framer-s2RIW .framer-17vuff0 > :last-child, .framer-s2RIW .framer-de1hb4 > :last-child, .framer-s2RIW .framer-fs2alh > :last-child, .framer-s2RIW .framer-1u87m9n > :last-child, .framer-s2RIW .framer-1svdz4i > :last-child { margin-right: 0px; } .framer-s2RIW .framer-sk0xra > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } .framer-s2RIW .framer-er9ntw > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-s2RIW .framer-jtyi2y > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-s2RIW .framer-17vuff0 > *, .framer-s2RIW .framer-de1hb4 > *, .framer-s2RIW .framer-fs2alh > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-s2RIW .framer-ix0gc1 > * { margin: 0px; margin-bottom: calc(49px / 2); margin-top: calc(49px / 2); } .framer-s2RIW .framer-1u87m9n > * { margin: 0px; margin-left: calc(70px / 2); margin-right: calc(70px / 2); } .framer-s2RIW .framer-1gnumys > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-s2RIW .framer-1svdz4i > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-s2RIW .framer-xyni5s > *, .framer-s2RIW .framer-3x3a2a > *, .framer-s2RIW .framer-13d0lhv > *, .framer-s2RIW .framer-oxs3e9 > *, .framer-s2RIW .framer-pidbnz > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",'.framer-s2RIW[data-border=\"true\"]::after, .framer-s2RIW [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 (min-width: 810px) and (max-width: 1199px) { .framer-s2RIW.framer-1qx9n20 { height: min-content; min-height: 2233px; width: 810px; } .framer-s2RIW .framer-x3qr3e { top: 100px; } .framer-s2RIW .framer-sk0xra { -webkit-mask: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0,0,0,1) 57.99999999999999%) add; mask: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0,0,0,1) 57.99999999999999%) add; order: 0; padding: 15px 0px 20px 0px; } .framer-s2RIW .framer-1t5zoqr-container { height: 350px; } .framer-s2RIW .framer-133vfvv { gap: 16px; left: 78%; order: 1; padding: 110px 68px 110px 68px; right: unset; top: 43%; transform: translate(-50%, -50%); } .framer-s2RIW .framer-1q376g3 { background-color: unset; height: min-content; top: 294px; width: 811px; } .framer-s2RIW .framer-1nau82c { height: 300px; } .framer-s2RIW .framer-17vuff0, .framer-s2RIW .framer-de1hb4, .framer-s2RIW .framer-fs2alh { width: 120px; } .framer-s2RIW .framer-ix0gc1 { width: 100%; } .framer-s2RIW .framer-1u87m9n { gap: 30px; max-width: 1199px; width: 810px; } .framer-s2RIW .framer-1qjq3mj-container { height: 253px; width: 400px; } .framer-s2RIW .framer-xyni5s { padding: 0px 50px 0px 50px; width: 100%; } .framer-s2RIW .framer-pidbnz { padding: 17px 10px 17px 10px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-s2RIW .framer-133vfvv, .framer-s2RIW .framer-1u87m9n { gap: 0px; } .framer-s2RIW .framer-133vfvv > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-s2RIW .framer-133vfvv > :first-child { margin-top: 0px; } .framer-s2RIW .framer-133vfvv > :last-child { margin-bottom: 0px; } .framer-s2RIW .framer-1u87m9n > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-s2RIW .framer-1u87m9n > :first-child { margin-left: 0px; } .framer-s2RIW .framer-1u87m9n > :last-child { margin-right: 0px; } }}\",'@media (max-width: 809px) { .framer-s2RIW.framer-1qx9n20 { width: 390px; } .framer-s2RIW .framer-x3qr3e { flex-direction: column; max-width: 390px; right: 0px; width: unset; } .framer-s2RIW .framer-sk0xra { flex: none; flex-direction: column; gap: 0px; order: 0; padding: 0px; width: 100%; } .framer-s2RIW .framer-1t5zoqr-container { flex: none; height: 300px; order: 0; width: 100%; } .framer-s2RIW .framer-133vfvv { background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4641) 18%, var(--token-7e578644-a4c8-4be4-b344-ecc11cd2ff47, rgb(253, 247, 255)) /* {\"name\":\"Light Purple\"} */ 100%); justify-content: flex-start; order: 1; padding: 62px 15px 67px 15px; top: 50%; } .framer-s2RIW .framer-5hl7uv { order: 0; } .framer-s2RIW .framer-dxnvwi { order: 1; } .framer-s2RIW .framer-1in4qeg { order: 2; } .framer-s2RIW .framer-10ggdm1 { order: 3; } .framer-s2RIW .framer-1q376g3 { background-color: unset; height: min-content; top: 240px; } .framer-s2RIW .framer-1nau82c { height: 298px; order: 0; } .framer-s2RIW .framer-1z0k8px { align-content: center; align-items: center; flex-direction: column; height: 298px; justify-content: flex-start; } .framer-s2RIW .framer-er9ntw { left: 50%; transform: translateX(-50%); width: min-content; } .framer-s2RIW .framer-jtyi2y { flex: none; gap: 0px; padding: 8px; width: min-content; } .framer-s2RIW .framer-17vuff0, .framer-s2RIW .framer-de1hb4, .framer-s2RIW .framer-fs2alh { width: 100px; } .framer-s2RIW .framer-2392d5, .framer-s2RIW .framer-dp2pj0 { align-self: stretch; height: auto; } .framer-s2RIW .framer-ix0gc1 { order: 1; padding: 31px 24px 31px 24px; width: 100%; } .framer-s2RIW .framer-1u87m9n { border-bottom-left-radius: 160px; border-top-left-radius: unset; border-top-right-radius: unset; flex-direction: column; gap: 30px; padding: 42px 30px 42px 30px; width: 380px; } .framer-s2RIW .framer-1qjq3mj-container { height: 225px; width: 378px; } .framer-s2RIW .framer-1gnumys { flex: none; gap: 5px; padding: 0px 12px 0px 12px; width: 100%; } .framer-s2RIW .framer-1svdz4i { justify-content: center; } .framer-s2RIW .framer-xyni5s { order: 2; padding: 30px 0px 30px 0px; width: 100%; } .framer-s2RIW .framer-6not7l-container { height: 299px; } .framer-s2RIW .framer-pidbnz { order: 3; padding: 0px; } .framer-s2RIW .framer-12wdwhi-container { max-width: unset; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-s2RIW .framer-x3qr3e, .framer-s2RIW .framer-sk0xra, .framer-s2RIW .framer-1z0k8px, .framer-s2RIW .framer-jtyi2y, .framer-s2RIW .framer-1u87m9n, .framer-s2RIW .framer-1gnumys { gap: 0px; } .framer-s2RIW .framer-x3qr3e > *, .framer-s2RIW .framer-sk0xra > *, .framer-s2RIW .framer-1z0k8px > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-s2RIW .framer-x3qr3e > :first-child, .framer-s2RIW .framer-sk0xra > :first-child, .framer-s2RIW .framer-1z0k8px > :first-child, .framer-s2RIW .framer-1u87m9n > :first-child, .framer-s2RIW .framer-1gnumys > :first-child { margin-top: 0px; } .framer-s2RIW .framer-x3qr3e > :last-child, .framer-s2RIW .framer-sk0xra > :last-child, .framer-s2RIW .framer-1z0k8px > :last-child, .framer-s2RIW .framer-1u87m9n > :last-child, .framer-s2RIW .framer-1gnumys > :last-child { margin-bottom: 0px; } .framer-s2RIW .framer-jtyi2y > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-s2RIW .framer-jtyi2y > :first-child { margin-left: 0px; } .framer-s2RIW .framer-jtyi2y > :last-child { margin-right: 0px; } .framer-s2RIW .framer-1u87m9n > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-s2RIW .framer-1gnumys > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } }}'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 2264\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"xNY_IQ9p4\":{\"layout\":[\"fixed\",\"auto\"]},\"Xw3Fh9DXR\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"F9X_sC3NJ\":{\"pattern\":\":F9X_sC3NJ\",\"name\":\"mission\"}}\n * @framerResponsiveScreen\n */const FramerVu50KGpMk=withCSS(Component,css,\"framer-s2RIW\");export default FramerVu50KGpMk;FramerVu50KGpMk.displayName=\"Home\";FramerVu50KGpMk.defaultProps={height:2264,width:1200};addFonts(FramerVu50KGpMk,[{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NC2MP33RO4WQTSTEEAWBJLAEXNCNEQVF/7F4U3COKLHQH4WUH3AXPC7N4UELEWJQN/JMWNCAGBH3TLANIVQPVABVAVNV5QERTH.woff2\",weight:\"400\"}]},...NavFonts,...VideoFonts,...ParticlesFonts,...MembersFonts,...TickerFonts,...FooterFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerVu50KGpMk\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"2264\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerScrollSections\":\"{\\\"F9X_sC3NJ\\\":{\\\"pattern\\\":\\\":F9X_sC3NJ\\\",\\\"name\\\":\\\"mission\\\"}}\",\"framerContractVersion\":\"1\",\"framerResponsiveScreen\":\"\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"xNY_IQ9p4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Xw3Fh9DXR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "progress", "objectFit", "backgroundColor", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "posterEnabled", "startTimeProp", "volume", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "MotionAWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "motion", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "MotionAWithFXWithOptimizedAppearEffect", "cx", "serializationHash", "RichText2", "css", "Framerrbv6xLw8V", "withCSS", "rbv6xLw8V_default", "addFonts", "NavFonts", "getFonts", "BvRAsUwfm_default", "VideoFonts", "Video", "MotionDivWithFX", "withFX", "motion", "ParticlesFonts", "ParticleWrapper", "MembersFonts", "rbv6xLw8V_default", "ContainerWithFX", "Container", "TickerFonts", "Ticker", "FooterFonts", "YCbXDzWnv_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "transformTemplate2", "animation", "transition1", "textEffect", "textEffect1", "textEffect2", "textEffect3", "textEffect4", "textEffect5", "textEffect6", "textEffect7", "transition2", "animation1", "animation2", "transition3", "animation3", "animation4", "animation5", "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", "elementId", "useRouteElementId", "ref1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "PropertyOverrides2", "x", "RichText2", "getLoadingLazyAtYPosition", "Image2", "Link", "css", "FramerVu50KGpMk", "withCSS", "Vu50KGpMk_default", "addFonts", "__FramerMetadata__"]
}
