{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/tbiAmyP8q4mMaXLQcmj3/Video.js", "ssg:https://framerusercontent.com/modules/zV9EKDIVxOfJIO4jOf8A/c64nEMIqsqKAw28KuAm4/yHg2lFFuL.js", "ssg:https://framerusercontent.com/modules/McyeTySuYdp2nOJbIdHE/XqZ5AQEZwpdZNkYhvVY0/H6tWq_sNl.js", "ssg:https://framerusercontent.com/modules/RieXsQHNFQAlaU1CZQUN/0TNRKgkl3jiSKrJYhKFB/az8oiSy1s.js", "ssg:https://framerusercontent.com/modules/8HglgzzcDjptm8VOIQSM/AiYmChG5tGEvpSO2tAuK/QgUdwo61q.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://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={}));// 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=\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\",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 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]);/**\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!==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\";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\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\",description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},...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\",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\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"112\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (2c4b293)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"NwIwZUPtl\",\"sMKvkR2aY\",\"JAkKn2vPX\"];const serializationHash=\"framer-T6ldL\";const variantClassNames={JAkKn2vPX:\"framer-v-jjlqwu\",NwIwZUPtl:\"framer-v-xt67qh\",sMKvkR2aY:\"framer-v-1scnse0\"};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(React.Fragment);const humanReadableVariantMap={LG:\"sMKvkR2aY\",MD:\"JAkKn2vPX\",XL:\"NwIwZUPtl\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"NwIwZUPtl\"};};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({cycleOrder,defaultVariant:\"NwIwZUPtl\",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-xt67qh\",className,classNames),\"data-framer-name\":\"XL\",layoutDependency:layoutDependency,layoutId:\"NwIwZUPtl\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-466f412f-31e4-4f7f-a7e6-91a69b113f31, rgba(1, 1, 1, 0))\",...style},...addPropertyOverrides({JAkKn2vPX:{\"data-framer-name\":\"MD\"},sMKvkR2aY:{\"data-framer-name\":\"LG\"}},baseVariant,gestureVariant)})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-T6ldL.framer-12ot0g9, .framer-T6ldL .framer-12ot0g9 { display: block; }\",\".framer-T6ldL.framer-xt67qh { height: 72px; overflow: hidden; position: relative; width: 72px; }\",\".framer-T6ldL.framer-v-1scnse0.framer-xt67qh { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 40px); width: 40px; }\",\".framer-T6ldL.framer-v-jjlqwu.framer-xt67qh { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 28px); width: 28px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 72\n * @framerIntrinsicWidth 72\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"sMKvkR2aY\":{\"layout\":[\"fixed\",\"fixed\"]},\"JAkKn2vPX\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameryHg2lFFuL=withCSS(Component,css,\"framer-T6ldL\");export default FrameryHg2lFFuL;FrameryHg2lFFuL.displayName=\"Spacer\";FrameryHg2lFFuL.defaultProps={height:72,width:72};addPropertyControls(FrameryHg2lFFuL,{variant:{options:[\"NwIwZUPtl\",\"sMKvkR2aY\",\"JAkKn2vPX\"],optionTitles:[\"XL\",\"LG\",\"MD\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FrameryHg2lFFuL,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameryHg2lFFuL\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"sMKvkR2aY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"JAkKn2vPX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"72\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"72\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./yHg2lFFuL.map", "// Generated by Framer (b2780b5)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={rvc6rKALL:{hover:true}};const cycleOrder=[\"rvc6rKALL\",\"OTOpkUuDi\"];const serializationHash=\"framer-q8DTU\";const variantClassNames={OTOpkUuDi:\"framer-v-97lgtf\",rvc6rKALL:\"framer-v-1s58rch\"};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={Active:\"OTOpkUuDi\",Default:\"rvc6rKALL\"};const getProps=({click,height,id,tabNavLabel,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,BGdg6MBHf:(_ref=tabNavLabel!==null&&tabNavLabel!==void 0?tabNavLabel:props.BGdg6MBHf)!==null&&_ref!==void 0?_ref:\"Tabs\",hijpcCPjy:click!==null&&click!==void 0?click:props.hijpcCPjy,variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"rvc6rKALL\"};};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,BGdg6MBHf,hijpcCPjy,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"rvc6rKALL\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1it1o4z=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(hijpcCPjy){const res=await hijpcCPjy(...args);if(res===false)return false;}});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.button,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1s58rch\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Default\",\"data-highlight\":true,\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"rvc6rKALL\",onTap:onTap1it1o4z,ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-466f412f-31e4-4f7f-a7e6-91a69b113f31, rgba(175, 209, 21, 0))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-466f412f-31e4-4f7f-a7e6-91a69b113f31, rgba(1, 1, 1, 0))\",borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40,boxShadow:\"0px 4px 33px 0px rgba(0, 0, 0, 0)\",...style},variants:{\"rvc6rKALL-hover\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-9816b8d3-c571-43a3-b285-f189958d18d9, rgba(26, 26, 28, 0.3))\"},OTOpkUuDi:{\"--border-color\":\"var(--token-3f2ed845-52f7-4251-b4a0-12a53e6eb83c, rgba(55, 55, 55, 0.3))\",backgroundColor:\"var(--token-317d93ff-fb27-4d9a-ae32-2ce664474f21, rgb(42, 42, 42))\",boxShadow:\"inset 0.3010936508871964px 0.3010936508871964px 0.4258107246291031px -1.25px rgba(255, 255, 255, 0.03599), inset 1.1442666516217286px 1.1442666516217286px 1.618237417694698px -2.5px rgba(255, 255, 255, 0.03178), inset 5px 5px 7.0710678118654755px -3.75px rgba(255, 255, 255, 0.0125), inset -0.3010936508871964px -0.3010936508871964px 0.4258107246291031px -1.25px rgba(255, 255, 255, 0.03599), inset -1.1442666516217286px -1.1442666516217286px 1.618237417694698px -2.5px rgba(255, 255, 255, 0.03178), inset -5px -5px 7.0710678118654755px -3.75px rgba(255, 255, 255, 0.0125)\"}},...addPropertyOverrides({\"rvc6rKALL-hover\":{\"data-framer-name\":undefined},OTOpkUuDi:{\"data-framer-name\":\"Active\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d2bc7a45-11e0-468d-8e86-da93ff072b7c, rgb(175, 175, 175)))\"},children:\"Tabs\"})}),className:\"framer-18zfbyx\",fonts:[\"GF;Plus Jakarta Sans-500\"],layoutDependency:layoutDependency,layoutId:\"otgoodR_s\",style:{\"--extracted-r6o4lv\":\"var(--token-d2bc7a45-11e0-468d-8e86-da93ff072b7c, rgb(175, 175, 175))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:BGdg6MBHf,variants:{\"rvc6rKALL-hover\":{\"--extracted-r6o4lv\":\"var(--token-64f5bd03-6b7a-43e3-ba7b-3a0b2b8b7a5e, rgb(242, 249, 254))\"},OTOpkUuDi:{\"--extracted-r6o4lv\":\"var(--token-64f5bd03-6b7a-43e3-ba7b-3a0b2b8b7a5e, rgb(242, 249, 254))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"rvc6rKALL-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-64f5bd03-6b7a-43e3-ba7b-3a0b2b8b7a5e, rgb(242, 249, 254)))\"},children:\"Tabs\"})})},OTOpkUuDi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-64f5bd03-6b7a-43e3-ba7b-3a0b2b8b7a5e, rgb(242, 249, 254)))\"},children:\"Tabs\"})})}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-q8DTU.framer-18e9no4, .framer-q8DTU .framer-18e9no4 { display: block; }\",\".framer-q8DTU.framer-1s58rch { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 23px 13px 23px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-q8DTU .framer-18zfbyx { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-q8DTU.framer-1s58rch { gap: 0px; } .framer-q8DTU.framer-1s58rch > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-q8DTU.framer-1s58rch > :first-child { margin-left: 0px; } .framer-q8DTU.framer-1s58rch > :last-child { margin-right: 0px; } }\",'.framer-q8DTU[data-border=\"true\"]::after, .framer-q8DTU [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 45\n * @framerIntrinsicWidth 86.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"OTOpkUuDi\":{\"layout\":[\"auto\",\"auto\"]},\"JLHR878ph\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"BGdg6MBHf\":\"tabNavLabel\",\"hijpcCPjy\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerH6tWq_sNl=withCSS(Component,css,\"framer-q8DTU\");export default FramerH6tWq_sNl;FramerH6tWq_sNl.displayName=\"Feature Tabs/Nav Item\";FramerH6tWq_sNl.defaultProps={height:45,width:86.5};addPropertyControls(FramerH6tWq_sNl,{variant:{options:[\"rvc6rKALL\",\"OTOpkUuDi\"],optionTitles:[\"Default\",\"Active\"],title:\"Variant\",type:ControlType.Enum},BGdg6MBHf:{defaultValue:\"Tabs\",displayTextArea:false,title:\"Tab Nav Label\",type:ControlType.String},hijpcCPjy:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerH6tWq_sNl,[{explicitInter:true,fonts:[{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_m07NTxXUEKi4Rw.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerH6tWq_sNl\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"OTOpkUuDi\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"JLHR878ph\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"45\",\"framerVariables\":\"{\\\"BGdg6MBHf\\\":\\\"tabNavLabel\\\",\\\"hijpcCPjy\\\":\\\"click\\\"}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"86.5\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./H6tWq_sNl.map", "// Generated by Framer (48da836)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/tbiAmyP8q4mMaXLQcmj3/Video.js\";import Spacer from\"https://framerusercontent.com/modules/zV9EKDIVxOfJIO4jOf8A/c64nEMIqsqKAw28KuAm4/yHg2lFFuL.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/rOcJGsUiml0v3gpIQBag/EH88vsqehHjGe27OR2SO/kVUuD2Qa_.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/2APhTXtso0mgjC3Ixmiu/TS5ad9k8D9RZHT5rrtrW/TQhhncL3l.js\";import FeatureTabsNavItem from\"https://framerusercontent.com/modules/McyeTySuYdp2nOJbIdHE/XqZ5AQEZwpdZNkYhvVY0/H6tWq_sNl.js\";const FeatureTabsNavItemFonts=getFonts(FeatureTabsNavItem);const SpacerFonts=getFonts(Spacer);const MotionDivWithFX=withFX(motion.div);const VideoFonts=getFonts(Video);const cycleOrder=[\"lhFOdaaDp\",\"OVx66v_X7\",\"VWCYjedcD\",\"SRrMyvW2U\",\"aBJ_Gf9eP\",\"sQbMLXCjI\",\"mGMOvew6S\",\"F9Ttz4OFU\"];const serializationHash=\"framer-VyKEA\";const variantClassNames={aBJ_Gf9eP:\"framer-v-cu6zm0\",F9Ttz4OFU:\"framer-v-7xt929\",lhFOdaaDp:\"framer-v-1hd878g\",mGMOvew6S:\"framer-v-17l4ifx\",OVx66v_X7:\"framer-v-mndg90\",sQbMLXCjI:\"framer-v-f0jnpl\",SRrMyvW2U:\"framer-v-ccaavm\",VWCYjedcD:\"framer-v-1mob0bx\"};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 animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.95,skewX:0,skewY:0,x:0,y:0};const transition2={delay:0,duration:.8,ease:[.44,0,.16,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop Tab 1\":\"lhFOdaaDp\",\"Desktop Tab 2\":\"OVx66v_X7\",\"Desktop Tab 3\":\"VWCYjedcD\",\"Desktop Tab 4\":\"SRrMyvW2U\",\"Mobile Tab 1\":\"aBJ_Gf9eP\",\"Mobile Tab 2\":\"sQbMLXCjI\",\"Mobile Tab 3\":\"mGMOvew6S\",\"Mobile Tab 4\":\"F9Ttz4OFU\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"lhFOdaaDp\"};};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,MX8w9TBP7,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"lhFOdaaDp\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const hijpcCPjy1ytuje9=activeVariantCallback(async(...args)=>{setVariant(\"OVx66v_X7\");});const hijpcCPjytlrgef=activeVariantCallback(async(...args)=>{setVariant(\"sQbMLXCjI\");});const hijpcCPjyz7r6yl=activeVariantCallback(async(...args)=>{setVariant(\"lhFOdaaDp\");});const hijpcCPjy5ngksl=activeVariantCallback(async(...args)=>{setVariant(\"aBJ_Gf9eP\");});const hijpcCPjyrm357a=activeVariantCallback(async(...args)=>{setVariant(\"VWCYjedcD\");});const hijpcCPjy1ctmg1n=activeVariantCallback(async(...args)=>{setVariant(\"mGMOvew6S\");});const hijpcCPjy1t6m1yl=activeVariantCallback(async(...args)=>{setVariant(\"SRrMyvW2U\");});const hijpcCPjy1xr046q=activeVariantCallback(async(...args)=>{setVariant(\"F9Ttz4OFU\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"sQbMLXCjI\")return false;return true;};const isDisplayed1=()=>{if([\"OVx66v_X7\",\"VWCYjedcD\",\"SRrMyvW2U\",\"mGMOvew6S\",\"F9Ttz4OFU\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if(baseVariant===\"OVx66v_X7\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"OVx66v_X7\")return false;return true;};const isDisplayed4=()=>{if([\"VWCYjedcD\",\"mGMOvew6S\"].includes(baseVariant))return true;return false;};const isDisplayed5=()=>{if(baseVariant===\"mGMOvew6S\")return false;return true;};const isDisplayed6=()=>{if(baseVariant===\"VWCYjedcD\")return false;return true;};const isDisplayed7=()=>{if([\"SRrMyvW2U\",\"F9Ttz4OFU\"].includes(baseVariant))return true;return false;};const isDisplayed8=()=>{if(baseVariant===\"F9Ttz4OFU\")return false;return true;};const isDisplayed9=()=>{if(baseVariant===\"SRrMyvW2U\")return false;return true;};const isDisplayed10=()=>{if(baseVariant===\"F9Ttz4OFU\")return true;return false;};const isDisplayed11=()=>{if(baseVariant===\"sQbMLXCjI\")return true;return false;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();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-1hd878g\",className,classNames),\"data-framer-name\":\"Desktop Tab 1\",layoutDependency:layoutDependency,layoutId:\"lhFOdaaDp\",ref:ref??ref1,style:{...style},...addPropertyOverrides({aBJ_Gf9eP:{\"data-framer-name\":\"Mobile Tab 1\"},F9Ttz4OFU:{\"data-framer-name\":\"Mobile Tab 4\"},mGMOvew6S:{\"data-framer-name\":\"Mobile Tab 3\"},OVx66v_X7:{\"data-framer-name\":\"Desktop Tab 2\"},sQbMLXCjI:{\"data-framer-name\":\"Mobile Tab 2\"},SRrMyvW2U:{\"data-framer-name\":\"Desktop Tab 4\"},VWCYjedcD:{\"data-framer-name\":\"Desktop Tab 3\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-m0cfvr\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"NRkzMd8Xk\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ppi1la\",\"data-framer-name\":\"Tabs Nav Wrap\",layoutDependency:layoutDependency,layoutId:\"oaQ1WLkGS\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-p1z46t\",\"data-framer-name\":\"Tabs Nav Container\",\"data-hide-scrollbars\":true,layoutDependency:layoutDependency,layoutId:\"KLzHGTrbG\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17mtakz\",\"data-framer-name\":\"Tabs Nav\",layoutDependency:layoutDependency,layoutId:\"XY3e7gJ_c\",style:{backgroundColor:\"var(--token-466f412f-31e4-4f7f-a7e6-91a69b113f31, rgba(1, 1, 1, 0))\",borderBottomLeftRadius:33,borderBottomRightRadius:33,borderTopLeftRadius:33,borderTopRightRadius:33,boxShadow:\"0px 4px 33px 0px rgba(0, 0, 0, 0.05000000074505806)\"},variants:{aBJ_Gf9eP:{backgroundColor:\"var(--token-9816b8d3-c571-43a3-b285-f189958d18d9, rgba(26, 26, 28, 0.3))\"}},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,y:(componentViewport?.y||0)+0+0+0+0+0+0+7,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ntkodb-container\",layoutDependency:layoutDependency,layoutId:\"xImPV1X5O-container\",children:/*#__PURE__*/_jsx(FeatureTabsNavItem,{BGdg6MBHf:\"Multi AI\",height:\"100%\",hijpcCPjy:hijpcCPjy1ytuje9,id:\"xImPV1X5O\",layoutId:\"xImPV1X5O\",variant:\"rvc6rKALL\",width:\"100%\",...addPropertyOverrides({aBJ_Gf9eP:{hijpcCPjy:hijpcCPjytlrgef},F9Ttz4OFU:{hijpcCPjy:hijpcCPjytlrgef},mGMOvew6S:{hijpcCPjy:hijpcCPjytlrgef},OVx66v_X7:{hijpcCPjy:undefined,variant:\"OTOpkUuDi\"},sQbMLXCjI:{hijpcCPjy:hijpcCPjytlrgef,variant:\"OTOpkUuDi\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,y:(componentViewport?.y||0)+0+0+0+0+0+0+7,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-khaigx-container\",layoutDependency:layoutDependency,layoutId:\"EwP5U5WEI-container\",children:/*#__PURE__*/_jsx(FeatureTabsNavItem,{BGdg6MBHf:\"Context\",height:\"100%\",hijpcCPjy:hijpcCPjyz7r6yl,id:\"EwP5U5WEI\",layoutId:\"EwP5U5WEI\",variant:\"OTOpkUuDi\",width:\"100%\",...addPropertyOverrides({aBJ_Gf9eP:{hijpcCPjy:hijpcCPjy5ngksl},F9Ttz4OFU:{hijpcCPjy:hijpcCPjy5ngksl,variant:\"rvc6rKALL\"},mGMOvew6S:{hijpcCPjy:hijpcCPjy5ngksl,variant:\"rvc6rKALL\"},OVx66v_X7:{variant:\"rvc6rKALL\"},sQbMLXCjI:{hijpcCPjy:hijpcCPjy5ngksl,variant:\"rvc6rKALL\"},SRrMyvW2U:{variant:\"rvc6rKALL\"},VWCYjedcD:{variant:\"rvc6rKALL\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,y:(componentViewport?.y||0)+0+0+0+0+0+0+7,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-13wdwo7-container\",layoutDependency:layoutDependency,layoutId:\"Nd5YXt0cp-container\",children:/*#__PURE__*/_jsx(FeatureTabsNavItem,{BGdg6MBHf:\"Snippets\",height:\"100%\",hijpcCPjy:hijpcCPjyrm357a,id:\"Nd5YXt0cp\",layoutId:\"Nd5YXt0cp\",variant:\"rvc6rKALL\",width:\"100%\",...addPropertyOverrides({aBJ_Gf9eP:{hijpcCPjy:hijpcCPjy1ctmg1n},F9Ttz4OFU:{hijpcCPjy:hijpcCPjy1ctmg1n},mGMOvew6S:{hijpcCPjy:hijpcCPjy1ctmg1n,variant:\"OTOpkUuDi\"},sQbMLXCjI:{hijpcCPjy:hijpcCPjy1ctmg1n},VWCYjedcD:{variant:\"OTOpkUuDi\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,y:(componentViewport?.y||0)+0+0+0+0+0+0+7,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-amzh7t-container\",layoutDependency:layoutDependency,layoutId:\"K5Kr1W3Hy-container\",children:/*#__PURE__*/_jsx(FeatureTabsNavItem,{BGdg6MBHf:\"Collaboration\",height:\"100%\",hijpcCPjy:hijpcCPjy1t6m1yl,id:\"K5Kr1W3Hy\",layoutId:\"K5Kr1W3Hy\",variant:\"rvc6rKALL\",width:\"100%\",...addPropertyOverrides({aBJ_Gf9eP:{hijpcCPjy:hijpcCPjy1xr046q},F9Ttz4OFU:{hijpcCPjy:hijpcCPjy1xr046q,variant:\"OTOpkUuDi\"},mGMOvew6S:{hijpcCPjy:hijpcCPjy1xr046q},sQbMLXCjI:{hijpcCPjy:hijpcCPjy1xr046q},SRrMyvW2U:{variant:\"OTOpkUuDi\"}},baseVariant,gestureVariant)})})})]})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1cgc6kn\",\"data-framer-name\":\"Tabs Content Wrapper\",layoutDependency:layoutDependency,layoutId:\"Qh4XIQtb6\",children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1u1alpo\",\"data-border\":true,\"data-framer-name\":\"Tabs Content\",layoutDependency:layoutDependency,layoutId:\"FTMMd_Dt4\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-3f2ed845-52f7-4251-b4a0-12a53e6eb83c, rgba(55, 55, 55, 0.3))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-641fb0ba-b534-40bb-a1f4-f60d209ef917, rgba(26, 26, 28, 0.5))\",borderBottomLeftRadius:45,borderBottomRightRadius:45,borderTopLeftRadius:45,borderTopRightRadius:45,boxShadow:\"inset 0.3010936508871964px 0.3010936508871964px 0.4258107246291031px -1.25px rgba(255, 255, 255, 0.03599), inset 1.1442666516217286px 1.1442666516217286px 1.618237417694698px -2.5px rgba(255, 255, 255, 0.03178), inset 5px 5px 7.0710678118654755px -3.75px rgba(255, 255, 255, 0.0125), inset -0.3010936508871964px -0.3010936508871964px 0.4258107246291031px -1.25px rgba(255, 255, 255, 0.03599), inset -1.1442666516217286px -1.1442666516217286px 1.618237417694698px -2.5px rgba(255, 255, 255, 0.03178), inset -5px -5px 7.0710678118654755px -3.75px rgba(255, 255, 255, 0.0125)\"},children:[isDisplayed1()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-p89sux\",\"data-framer-name\":\"Tab Content\",layoutDependency:layoutDependency,layoutId:\"bON0dnViu\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-l3cgt7\",\"data-framer-name\":\"Description\",layoutDependency:layoutDependency,layoutId:\"Fp6sfGalI\",style:{borderBottomLeftRadius:33,borderBottomRightRadius:33,borderTopLeftRadius:33,borderTopRightRadius:33},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17x2u1f\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"uUykZeiiN\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-i7sxc3\",\"data-styles-preset\":\"TQhhncL3l\",children:\"Ship features faster\"})}),className:\"framer-1zsdf4\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ylXxfWsVQ\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({aBJ_Gf9eP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-i7sxc3\",\"data-styles-preset\":\"TQhhncL3l\",style:{\"--framer-text-alignment\":\"center\"},children:\"Ship features faster\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-a3i9m3\",\"data-styles-preset\":\"kVUuD2Qa_\",children:\"Context-Aware conversations with your code snippets library, helping you gain a deeper understanding of your code.\"})}),className:\"framer-ao1v6t\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Bi0mF9JZe\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({aBJ_Gf9eP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-a3i9m3\",\"data-styles-preset\":\"kVUuD2Qa_\",style:{\"--framer-text-alignment\":\"center\"},children:\"Context-Aware conversations with your code snippets library, helping you gain a deeper understanding of your code.\"})})}},baseVariant,gestureVariant)})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,y:(componentViewport?.y||0)+0+0+0+83+0+0+40+136,...addPropertyOverrides({aBJ_Gf9eP:{height:42,width:\"72px\",y:(componentViewport?.y||0)+0+0+0+89+0+45+0+186}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-v8yx4c-container\",layoutDependency:layoutDependency,layoutId:\"yBFgTRuuT-container\",children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"yBFgTRuuT\",layoutId:\"yBFgTRuuT\",variant:MX8w9TBP7,width:\"100%\",...addPropertyOverrides({aBJ_Gf9eP:{style:{height:\"100%\",width:\"100%\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1frrljq\",\"data-framer-name\":\"Row App\",layoutDependency:layoutDependency,layoutId:\"wpHpHfisC\",style:{borderBottomLeftRadius:33,borderBottomRightRadius:33,borderTopLeftRadius:33,borderTopRightRadius:33},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+83+0+0+40+0+-.5),pixelHeight:706,pixelWidth:1414,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ae77Y2OIFsvwes8082Hg41vge0.png\",srcSet:\"https://framerusercontent.com/images/ae77Y2OIFsvwes8082Hg41vge0.png?scale-down-to=512 512w,https://framerusercontent.com/images/ae77Y2OIFsvwes8082Hg41vge0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ae77Y2OIFsvwes8082Hg41vge0.png 1414w\"},className:\"framer-5qhcf4\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"LiA8eZvxd\",style:{borderBottomLeftRadius:27,borderBottomRightRadius:27,borderTopLeftRadius:27,borderTopRightRadius:27},...addPropertyOverrides({aBJ_Gf9eP:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+89+0+45+0+228+-.5),pixelHeight:706,pixelWidth:1414,positionX:\"center\",positionY:\"center\",sizes:`min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px) - 40px, 483px)`,src:\"https://framerusercontent.com/images/ae77Y2OIFsvwes8082Hg41vge0.png\",srcSet:\"https://framerusercontent.com/images/ae77Y2OIFsvwes8082Hg41vge0.png?scale-down-to=512 512w,https://framerusercontent.com/images/ae77Y2OIFsvwes8082Hg41vge0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ae77Y2OIFsvwes8082Hg41vge0.png 1414w\"}}},baseVariant,gestureVariant)})})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-z7dtcz\",\"data-framer-name\":\"Tab Content\",layoutDependency:layoutDependency,layoutId:\"tJZEhruoQ\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mh9mla\",\"data-framer-name\":\"Description\",layoutDependency:layoutDependency,layoutId:\"HCC4q6V6d\",style:{borderBottomLeftRadius:33,borderBottomRightRadius:33,borderTopLeftRadius:33,borderTopRightRadius:33},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ojcwmq\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"MMKkI3GaI\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-64f5bd03-6b7a-43e3-ba7b-3a0b2b8b7a5e, rgb(242, 249, 254)))\"},children:\"Gain Insight, Decide Wisely\"})}),className:\"framer-wol4eb\",fonts:[\"GF;Plus Jakarta Sans-500\"],layoutDependency:layoutDependency,layoutId:\"Z15wrIU6z\",style:{\"--extracted-1eung3n\":\"var(--token-64f5bd03-6b7a-43e3-ba7b-3a0b2b8b7a5e, rgb(242, 249, 254))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({OVx66v_X7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-i7sxc3\",\"data-styles-preset\":\"TQhhncL3l\",children:\"Open & Closed-Source LLMs\"})}),fonts:[\"Inter\"]}},baseVariant,gestureVariant)}),isDisplayed3()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-i7sxc3\",\"data-styles-preset\":\"TQhhncL3l\",children:\"Open & Closed-Source LLMs\"})}),className:\"framer-5a2gb5\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"pYi7HLOmG\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d2bc7a45-11e0-468d-8e86-da93ff072b7c, rgb(175, 175, 175)))\"},children:\"Our intuitive platform converts data into actionable insights, helping you make informed decisions quickly. Discover trends, optimize strategies, and drive growth effortlessly.\"})}),className:\"framer-mjz1ww\",fonts:[\"GF;Manrope-regular\"],layoutDependency:layoutDependency,layoutId:\"Q69O4fR7T\",style:{\"--extracted-r6o4lv\":\"var(--token-d2bc7a45-11e0-468d-8e86-da93ff072b7c, rgb(175, 175, 175))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({OVx66v_X7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-a3i9m3\",\"data-styles-preset\":\"kVUuD2Qa_\",children:\"Seamless chats with hundreds of Open & Closed-Source LLMs within the same conversation.\"})}),fonts:[\"Inter\"]}},baseVariant,gestureVariant)})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,...addPropertyOverrides({OVx66v_X7:{y:(componentViewport?.y||0)+0+0+0+83+0+0+40+151.5}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1oajmwr-container\",layoutDependency:layoutDependency,layoutId:\"lWlF3xlTP-container\",children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"lWlF3xlTP\",layoutId:\"lWlF3xlTP\",variant:MX8w9TBP7,width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-b32ldd\",\"data-border\":true,\"data-framer-name\":\"Row App\",layoutDependency:layoutDependency,layoutId:\"QKYHpEfof\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-dac0bec6-6acb-444c-ac02-87950f2b7f18, rgb(26, 24, 34))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:33,borderBottomRightRadius:33,borderTopLeftRadius:33,borderTopRightRadius:33},variants:{OVx66v_X7:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:340,pixelWidth:450,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/4xKtiKyTmVu8tyHJJJV7DVJvsKM.png\"},className:\"framer-hi62qc\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"bMi16UmMf\",style:{borderBottomLeftRadius:33,borderBottomRightRadius:33,borderTopLeftRadius:33,borderTopRightRadius:33},variants:{OVx66v_X7:{borderBottomLeftRadius:27,borderBottomRightRadius:27,borderTopLeftRadius:27,borderTopRightRadius:27}},...addPropertyOverrides({OVx66v_X7:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+83+0+0+40+0+19.5),pixelHeight:340,pixelWidth:450,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/4xKtiKyTmVu8tyHJJJV7DVJvsKM.png\"}}},baseVariant,gestureVariant)})})]}),isDisplayed4()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-17zybbj\",\"data-framer-name\":\"Tab Content\",layoutDependency:layoutDependency,layoutId:\"tNrX2KFct\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-us0i7t\",\"data-framer-name\":\"Description\",layoutDependency:layoutDependency,layoutId:\"qLZqbCK3P\",style:{borderBottomLeftRadius:33,borderBottomRightRadius:33,borderTopLeftRadius:33,borderTopRightRadius:33},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ot8qie\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"GYU_rkqun\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-i7sxc3\",\"data-styles-preset\":\"TQhhncL3l\",children:\"Code Snippets Library\"})}),className:\"framer-jhyh6n\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"BKUiLpFuw\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({mGMOvew6S:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-i7sxc3\",\"data-styles-preset\":\"TQhhncL3l\",style:{\"--framer-text-alignment\":\"center\"},children:\"Code Snippets Library\"})})}},baseVariant,gestureVariant)}),isDisplayed5()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d2bc7a45-11e0-468d-8e86-da93ff072b7c, rgb(175, 175, 175)))\"},children:\"Our platform scales effortlessly, managing increased workloads and expanding capabilities, so you can handle growth efficiently and focus on strategic goals.\"})}),className:\"framer-3fk6gt\",fonts:[\"GF;Manrope-regular\"],layoutDependency:layoutDependency,layoutId:\"fptoQhFzf\",style:{\"--extracted-r6o4lv\":\"var(--token-d2bc7a45-11e0-468d-8e86-da93ff072b7c, rgb(175, 175, 175))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({VWCYjedcD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-a3i9m3\",\"data-styles-preset\":\"kVUuD2Qa_\",children:[\"Effortlessly generate, store, and enhance code snippets in your team's \",/*#__PURE__*/_jsx(motion.strong,{children:\"always online\"}),\" library, helping you to  streamline your development workflow.\"]})}),fonts:[\"Inter\",\"Inter-Bold\"]}},baseVariant,gestureVariant)}),isDisplayed6()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-a3i9m3\",\"data-styles-preset\":\"kVUuD2Qa_\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Effortlessly generate, store, and enhance code snippets in your team's \",/*#__PURE__*/_jsx(motion.strong,{children:\"always online\"}),\" library, helping you to  streamline your development workflow.\"]})}),className:\"framer-1ihsjcw\",fonts:[\"Inter\",\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"rRxxH2UAJ\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,...addPropertyOverrides({mGMOvew6S:{height:19,width:\"74px\",y:(componentViewport?.y||0)+0+0+0+89+0+0+40+0+0+81},VWCYjedcD:{y:(componentViewport?.y||0)+0+0+0+83+0+0+40+150.75}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1f6nff0-container\",layoutDependency:layoutDependency,layoutId:\"uHdv6uTII-container\",children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"uHdv6uTII\",layoutId:\"uHdv6uTII\",variant:MX8w9TBP7,width:\"100%\",...addPropertyOverrides({mGMOvew6S:{style:{height:\"100%\",width:\"100%\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-neqk7i\",\"data-framer-name\":\"Row App\",layoutDependency:layoutDependency,layoutId:\"BtPSLHJOE\",style:{borderBottomLeftRadius:33,borderBottomRightRadius:33,borderTopLeftRadius:33,borderTopRightRadius:33},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:340,pixelWidth:450,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/WPYOrDQI9tPgzBox8FrJPFiveDE.png\"},className:\"framer-qlbr76\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"PLiSZmNXu\",style:{borderBottomLeftRadius:27,borderBottomRightRadius:27,borderTopLeftRadius:27,borderTopRightRadius:27},...addPropertyOverrides({mGMOvew6S:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+89+0+0+40+0+0+100+-.5),pixelHeight:340,pixelWidth:450,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/WPYOrDQI9tPgzBox8FrJPFiveDE.png\"}},VWCYjedcD:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+83+0+0+40+0+-.5),pixelHeight:340,pixelWidth:450,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/WPYOrDQI9tPgzBox8FrJPFiveDE.png\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vka3cf-container\",layoutDependency:layoutDependency,layoutId:\"OkjOEwM6L-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"OkjOEwM6L\",isMixedBorderRadius:false,layoutId:\"OkjOEwM6L\",loop:true,muted:true,objectFit:\"cover\",playing:true,poster:\"https://framerusercontent.com/images/QsOlRSXjeHRR3dCOX8EggUaw.png\",posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/mDzb57QDKy7cFO6d1S5Yx4kmb6k.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})})]}),isDisplayed7()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1985lqq\",\"data-framer-name\":\"Tab Content\",layoutDependency:layoutDependency,layoutId:\"FrMktrh2a\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hx6elz\",\"data-framer-name\":\"Description\",layoutDependency:layoutDependency,layoutId:\"Jg7SOrKe9\",style:{borderBottomLeftRadius:33,borderBottomRightRadius:33,borderTopLeftRadius:33,borderTopRightRadius:33},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-881rpb\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"sm65wJC75\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-i7sxc3\",\"data-styles-preset\":\"TQhhncL3l\",children:\"Collaborate Efficiently\"})}),className:\"framer-tg5kw7\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Kr6krTmbR\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({F9Ttz4OFU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-i7sxc3\",\"data-styles-preset\":\"TQhhncL3l\",style:{\"--framer-text-alignment\":\"center\"},children:\"Collaborate Efficiently\"})})}},baseVariant,gestureVariant)}),isDisplayed8()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d2bc7a45-11e0-468d-8e86-da93ff072b7c, rgb(175, 175, 175)))\"},children:\"Our platform streamlines communication, coordinates teams, synchronizes projects for seamless collaboration, achieving more efficiently and focusing on priorities.\"})}),className:\"framer-rlwwdb\",fonts:[\"GF;Manrope-regular\"],layoutDependency:layoutDependency,layoutId:\"Ks41Z2tQl\",style:{\"--extracted-r6o4lv\":\"var(--token-d2bc7a45-11e0-468d-8e86-da93ff072b7c, rgb(175, 175, 175))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({SRrMyvW2U:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-a3i9m3\",\"data-styles-preset\":\"kVUuD2Qa_\",children:\"Our platform streamlines communication, coordinates teams, synchronizes projects for seamless collaboration, achieving more efficiently and focusing on priorities.\"})}),fonts:[\"Inter\"]}},baseVariant,gestureVariant)}),isDisplayed9()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-a3i9m3\",\"data-styles-preset\":\"kVUuD2Qa_\",children:\"Our platform streamlines communication, coordinates teams, synchronizes projects for seamless collaboration, achieving more efficiently and focusing on priorities.\"})}),className:\"framer-bluxol\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"owTClGjhy\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({F9Ttz4OFU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-a3i9m3\",\"data-styles-preset\":\"kVUuD2Qa_\",style:{\"--framer-text-alignment\":\"center\"},children:\"Our platform streamlines communication, coordinates teams, synchronizes projects for seamless collaboration, achieving more efficiently and focusing on priorities.\"})})}},baseVariant,gestureVariant)})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,...addPropertyOverrides({F9Ttz4OFU:{height:13,width:\"72px\",y:(componentViewport?.y||0)+0+0+0+89+0+0+41+0+81},SRrMyvW2U:{y:(componentViewport?.y||0)+0+0+0+83+0+0+40+56.5}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1d0m53b-container\",layoutDependency:layoutDependency,layoutId:\"vXL6axXnl-container\",children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"vXL6axXnl\",layoutId:\"vXL6axXnl\",variant:MX8w9TBP7,width:\"100%\",...addPropertyOverrides({F9Ttz4OFU:{style:{height:\"100%\",width:\"100%\"}}},baseVariant,gestureVariant)})})}),isDisplayed10()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-n3ts8e\",\"data-framer-name\":\"Row App\",layoutDependency:layoutDependency,layoutId:\"jjj17SpYb\",style:{borderBottomLeftRadius:33,borderBottomRightRadius:33,borderTopLeftRadius:33,borderTopRightRadius:33},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:990,pixelWidth:1088,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/PHfG7bpnvSr7kqRemY0M043xg.png\",srcSet:\"https://framerusercontent.com/images/PHfG7bpnvSr7kqRemY0M043xg.png?scale-down-to=512 512w,https://framerusercontent.com/images/PHfG7bpnvSr7kqRemY0M043xg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/PHfG7bpnvSr7kqRemY0M043xg.png 1088w\"},className:\"framer-ou3ejm\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"fUKXO9oMU\",style:{borderBottomLeftRadius:27,borderBottomRightRadius:27,borderTopLeftRadius:27,borderTopRightRadius:27},...addPropertyOverrides({F9Ttz4OFU:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+89+0+0+41+0+94+.5),pixelHeight:990,pixelWidth:1088,positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 80px, 483px) - 63px)`,src:\"https://framerusercontent.com/images/PHfG7bpnvSr7kqRemY0M043xg.png\",srcSet:\"https://framerusercontent.com/images/PHfG7bpnvSr7kqRemY0M043xg.png?scale-down-to=512 512w,https://framerusercontent.com/images/PHfG7bpnvSr7kqRemY0M043xg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/PHfG7bpnvSr7kqRemY0M043xg.png 1088w\"}}},baseVariant,gestureVariant)})}),isDisplayed8()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gj5l0g\",\"data-framer-name\":\"Row App\",layoutDependency:layoutDependency,layoutId:\"gXiY5cbCe\",style:{borderBottomLeftRadius:33,borderBottomRightRadius:33,borderTopLeftRadius:33,borderTopRightRadius:33},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:990,pixelWidth:1088,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/PHfG7bpnvSr7kqRemY0M043xg.png\",srcSet:\"https://framerusercontent.com/images/PHfG7bpnvSr7kqRemY0M043xg.png?scale-down-to=512 512w,https://framerusercontent.com/images/PHfG7bpnvSr7kqRemY0M043xg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/PHfG7bpnvSr7kqRemY0M043xg.png 1088w\"},className:\"framer-xcuz8l\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"O4vckm5u7\",style:{borderBottomLeftRadius:27,borderBottomRightRadius:27,borderTopLeftRadius:27,borderTopRightRadius:27},...addPropertyOverrides({SRrMyvW2U:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+83+0+0+40+14.860248447204967+.5),pixelHeight:990,pixelWidth:1088,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/PHfG7bpnvSr7kqRemY0M043xg.png\",srcSet:\"https://framerusercontent.com/images/PHfG7bpnvSr7kqRemY0M043xg.png?scale-down-to=512 512w,https://framerusercontent.com/images/PHfG7bpnvSr7kqRemY0M043xg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/PHfG7bpnvSr7kqRemY0M043xg.png 1088w\"}}},baseVariant,gestureVariant)})})]})]}),isDisplayed11()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-10wus6q\",\"data-border\":true,\"data-framer-name\":\"Tabs Content\",layoutDependency:layoutDependency,layoutId:\"NU5dGrj05\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-3f2ed845-52f7-4251-b4a0-12a53e6eb83c, rgba(55, 55, 55, 0.3))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-641fb0ba-b534-40bb-a1f4-f60d209ef917, rgba(26, 26, 28, 0.5))\",borderBottomLeftRadius:45,borderBottomRightRadius:45,borderTopLeftRadius:45,borderTopRightRadius:45,boxShadow:\"inset 0.3010936508871964px 0.3010936508871964px 0.4258107246291031px -1.25px rgba(255, 255, 255, 0.03599), inset 1.1442666516217286px 1.1442666516217286px 1.618237417694698px -2.5px rgba(255, 255, 255, 0.03178), inset 5px 5px 7.0710678118654755px -3.75px rgba(255, 255, 255, 0.0125), inset -0.3010936508871964px -0.3010936508871964px 0.4258107246291031px -1.25px rgba(255, 255, 255, 0.03599), inset -1.1442666516217286px -1.1442666516217286px 1.618237417694698px -2.5px rgba(255, 255, 255, 0.03178), inset -5px -5px 7.0710678118654755px -3.75px rgba(255, 255, 255, 0.0125)\"},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1fvcvmm\",\"data-framer-name\":\"Tab Content\",layoutDependency:layoutDependency,layoutId:\"CkYaRjyvH\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-19qr8ho\",\"data-framer-name\":\"Description\",layoutDependency:layoutDependency,layoutId:\"CHicy5_Fe\",style:{borderBottomLeftRadius:33,borderBottomRightRadius:33,borderTopLeftRadius:33,borderTopRightRadius:33},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14h01jt\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"FBp5DasEt\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-i7sxc3\",\"data-styles-preset\":\"TQhhncL3l\",style:{\"--framer-text-alignment\":\"center\"},children:\"Open & Closed-Source LLMs\"})}),className:\"framer-1cqm9kf\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"UWlzYgegW\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-a3i9m3\",\"data-styles-preset\":\"kVUuD2Qa_\",style:{\"--framer-text-alignment\":\"center\"},children:\"Context-Aware conversations with your code snippets library, helping you gain a deeper understanding of your code.\"})}),className:\"framer-12gvlc1\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"bQLDruUGv\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,width:\"72px\",...addPropertyOverrides({sQbMLXCjI:{y:(componentViewport?.y||0)+0+0+0+89+0+0+45+0+186}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-12be82s-container\",layoutDependency:layoutDependency,layoutId:\"A_d2x72c4-container\",children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"A_d2x72c4\",layoutId:\"A_d2x72c4\",style:{height:\"100%\",width:\"100%\"},variant:MX8w9TBP7,width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ujem1l\",\"data-framer-name\":\"Row App\",layoutDependency:layoutDependency,layoutId:\"q6gm7PqEu\",style:{borderBottomLeftRadius:33,borderBottomRightRadius:33,borderTopLeftRadius:33,borderTopRightRadius:33},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:340,pixelWidth:450,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/4xKtiKyTmVu8tyHJJJV7DVJvsKM.png\"},className:\"framer-1oxywu4\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"h9cog0Rb0\",style:{borderBottomLeftRadius:27,borderBottomRightRadius:27,borderTopLeftRadius:27,borderTopRightRadius:27},...addPropertyOverrides({sQbMLXCjI:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+89+0+0+45+0+228+19.5),pixelHeight:340,pixelWidth:450,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/4xKtiKyTmVu8tyHJJJV7DVJvsKM.png\"}}},baseVariant,gestureVariant)})})]})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-VyKEA.framer-ekohdg, .framer-VyKEA .framer-ekohdg { display: block; }\",\".framer-VyKEA.framer-1hd878g { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1018px; }\",\".framer-VyKEA .framer-m0cfvr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-VyKEA .framer-1ppi1la { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-VyKEA .framer-p1z46t { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; overflow-x: auto; padding: 0px; position: relative; width: 1px; }\",\".framer-VyKEA .framer-17mtakz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 7px; position: relative; width: min-content; }\",\".framer-VyKEA .framer-ntkodb-container, .framer-VyKEA .framer-khaigx-container, .framer-VyKEA .framer-13wdwo7-container, .framer-VyKEA .framer-amzh7t-container, .framer-VyKEA .framer-v8yx4c-container, .framer-VyKEA .framer-1oajmwr-container, .framer-VyKEA .framer-1f6nff0-container, .framer-VyKEA .framer-1d0m53b-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-VyKEA .framer-1cgc6kn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-VyKEA .framer-1u1alpo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 40px; position: relative; width: 100%; }\",\".framer-VyKEA .framer-p89sux, .framer-VyKEA .framer-z7dtcz, .framer-VyKEA .framer-17zybbj, .framer-VyKEA .framer-1985lqq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-VyKEA .framer-l3cgt7 { align-content: flex-start; align-items: flex-start; display: flex; flex: 0.8 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 463px; padding: 0px; position: relative; width: 1px; }\",\".framer-VyKEA .framer-17x2u1f, .framer-VyKEA .framer-14h01jt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-VyKEA .framer-1zsdf4, .framer-VyKEA .framer-ao1v6t, .framer-VyKEA .framer-wol4eb, .framer-VyKEA .framer-5a2gb5, .framer-VyKEA .framer-mjz1ww, .framer-VyKEA .framer-jhyh6n, .framer-VyKEA .framer-3fk6gt, .framer-VyKEA .framer-tg5kw7, .framer-VyKEA .framer-rlwwdb, .framer-VyKEA .framer-1cqm9kf, .framer-VyKEA .framer-12gvlc1 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-VyKEA .framer-1frrljq { align-content: center; align-items: center; aspect-ratio: 1.288 / 1; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 374px); justify-content: center; max-width: 483px; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-VyKEA .framer-5qhcf4 { bottom: -1px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-VyKEA .framer-1mh9mla, .framer-VyKEA .framer-us0i7t, .framer-VyKEA .framer-1hx6elz { align-content: flex-start; align-items: flex-start; display: flex; flex: 0.8 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; max-width: 463px; padding: 0px; position: relative; width: 1px; }\",\".framer-VyKEA .framer-ojcwmq, .framer-VyKEA .framer-ot8qie, .framer-VyKEA .framer-881rpb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-VyKEA .framer-b32ldd, .framer-VyKEA .framer-neqk7i, .framer-VyKEA .framer-n3ts8e, .framer-VyKEA .framer-1gj5l0g { align-content: center; align-items: center; aspect-ratio: 1.288 / 1; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 155px); justify-content: center; max-width: 483px; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-VyKEA .framer-hi62qc { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-VyKEA .framer-1ihsjcw, .framer-VyKEA .framer-bluxol { --framer-text-wrap-override: balance; flex: none; height: auto; position: relative; width: auto; }\",\".framer-VyKEA .framer-qlbr76 { bottom: 20px; flex: none; left: 16px; position: absolute; right: 16px; top: 0px; z-index: 1; }\",\".framer-VyKEA .framer-1vka3cf-container { bottom: -1px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-VyKEA .framer-ou3ejm, .framer-VyKEA .framer-xcuz8l { bottom: 1px; flex: none; left: 32px; position: absolute; right: 31px; top: 1px; z-index: 1; }\",\".framer-VyKEA .framer-10wus6q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 45px 20px 20px 20px; position: relative; width: 100%; }\",\".framer-VyKEA .framer-1fvcvmm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-VyKEA .framer-19qr8ho { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-VyKEA .framer-12be82s-container { flex: none; height: 42px; position: relative; width: 72px; }\",\".framer-VyKEA .framer-1ujem1l { align-content: center; align-items: center; aspect-ratio: 1.288 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 155px); justify-content: center; max-width: 483px; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-VyKEA .framer-1oxywu4 { bottom: 20px; flex: none; left: 16px; position: absolute; right: 16px; top: 20px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-VyKEA.framer-1hd878g, .framer-VyKEA .framer-m0cfvr, .framer-VyKEA .framer-1ppi1la, .framer-VyKEA .framer-p1z46t, .framer-VyKEA .framer-17mtakz, .framer-VyKEA .framer-1cgc6kn, .framer-VyKEA .framer-1u1alpo, .framer-VyKEA .framer-p89sux, .framer-VyKEA .framer-l3cgt7, .framer-VyKEA .framer-17x2u1f, .framer-VyKEA .framer-1frrljq, .framer-VyKEA .framer-z7dtcz, .framer-VyKEA .framer-1mh9mla, .framer-VyKEA .framer-ojcwmq, .framer-VyKEA .framer-b32ldd, .framer-VyKEA .framer-17zybbj, .framer-VyKEA .framer-us0i7t, .framer-VyKEA .framer-ot8qie, .framer-VyKEA .framer-neqk7i, .framer-VyKEA .framer-1985lqq, .framer-VyKEA .framer-1hx6elz, .framer-VyKEA .framer-881rpb, .framer-VyKEA .framer-n3ts8e, .framer-VyKEA .framer-1gj5l0g, .framer-VyKEA .framer-10wus6q, .framer-VyKEA .framer-1fvcvmm, .framer-VyKEA .framer-19qr8ho, .framer-VyKEA .framer-14h01jt, .framer-VyKEA .framer-1ujem1l { gap: 0px; } .framer-VyKEA.framer-1hd878g > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-VyKEA.framer-1hd878g > :first-child, .framer-VyKEA .framer-m0cfvr > :first-child, .framer-VyKEA .framer-1cgc6kn > :first-child, .framer-VyKEA .framer-l3cgt7 > :first-child, .framer-VyKEA .framer-17x2u1f > :first-child, .framer-VyKEA .framer-1mh9mla > :first-child, .framer-VyKEA .framer-ojcwmq > :first-child, .framer-VyKEA .framer-us0i7t > :first-child, .framer-VyKEA .framer-ot8qie > :first-child, .framer-VyKEA .framer-1hx6elz > :first-child, .framer-VyKEA .framer-881rpb > :first-child, .framer-VyKEA .framer-1fvcvmm > :first-child, .framer-VyKEA .framer-19qr8ho > :first-child, .framer-VyKEA .framer-14h01jt > :first-child { margin-top: 0px; } .framer-VyKEA.framer-1hd878g > :last-child, .framer-VyKEA .framer-m0cfvr > :last-child, .framer-VyKEA .framer-1cgc6kn > :last-child, .framer-VyKEA .framer-l3cgt7 > :last-child, .framer-VyKEA .framer-17x2u1f > :last-child, .framer-VyKEA .framer-1mh9mla > :last-child, .framer-VyKEA .framer-ojcwmq > :last-child, .framer-VyKEA .framer-us0i7t > :last-child, .framer-VyKEA .framer-ot8qie > :last-child, .framer-VyKEA .framer-1hx6elz > :last-child, .framer-VyKEA .framer-881rpb > :last-child, .framer-VyKEA .framer-1fvcvmm > :last-child, .framer-VyKEA .framer-19qr8ho > :last-child, .framer-VyKEA .framer-14h01jt > :last-child { margin-bottom: 0px; } .framer-VyKEA .framer-m0cfvr > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-VyKEA .framer-1ppi1la > *, .framer-VyKEA .framer-p1z46t > *, .framer-VyKEA .framer-1frrljq > *, .framer-VyKEA .framer-b32ldd > *, .framer-VyKEA .framer-neqk7i > *, .framer-VyKEA .framer-n3ts8e > *, .framer-VyKEA .framer-1gj5l0g > *, .framer-VyKEA .framer-1ujem1l > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-VyKEA .framer-1ppi1la > :first-child, .framer-VyKEA .framer-p1z46t > :first-child, .framer-VyKEA .framer-17mtakz > :first-child, .framer-VyKEA .framer-1u1alpo > :first-child, .framer-VyKEA .framer-p89sux > :first-child, .framer-VyKEA .framer-1frrljq > :first-child, .framer-VyKEA .framer-z7dtcz > :first-child, .framer-VyKEA .framer-b32ldd > :first-child, .framer-VyKEA .framer-17zybbj > :first-child, .framer-VyKEA .framer-neqk7i > :first-child, .framer-VyKEA .framer-1985lqq > :first-child, .framer-VyKEA .framer-n3ts8e > :first-child, .framer-VyKEA .framer-1gj5l0g > :first-child, .framer-VyKEA .framer-10wus6q > :first-child, .framer-VyKEA .framer-1ujem1l > :first-child { margin-left: 0px; } .framer-VyKEA .framer-1ppi1la > :last-child, .framer-VyKEA .framer-p1z46t > :last-child, .framer-VyKEA .framer-17mtakz > :last-child, .framer-VyKEA .framer-1u1alpo > :last-child, .framer-VyKEA .framer-p89sux > :last-child, .framer-VyKEA .framer-1frrljq > :last-child, .framer-VyKEA .framer-z7dtcz > :last-child, .framer-VyKEA .framer-b32ldd > :last-child, .framer-VyKEA .framer-17zybbj > :last-child, .framer-VyKEA .framer-neqk7i > :last-child, .framer-VyKEA .framer-1985lqq > :last-child, .framer-VyKEA .framer-n3ts8e > :last-child, .framer-VyKEA .framer-1gj5l0g > :last-child, .framer-VyKEA .framer-10wus6q > :last-child, .framer-VyKEA .framer-1ujem1l > :last-child { margin-right: 0px; } .framer-VyKEA .framer-17mtakz > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-VyKEA .framer-1cgc6kn > *, .framer-VyKEA .framer-1mh9mla > *, .framer-VyKEA .framer-us0i7t > *, .framer-VyKEA .framer-1hx6elz > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-VyKEA .framer-1u1alpo > *, .framer-VyKEA .framer-p89sux > *, .framer-VyKEA .framer-z7dtcz > *, .framer-VyKEA .framer-17zybbj > *, .framer-VyKEA .framer-1985lqq > *, .framer-VyKEA .framer-10wus6q > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-VyKEA .framer-l3cgt7 > *, .framer-VyKEA .framer-19qr8ho > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-VyKEA .framer-17x2u1f > *, .framer-VyKEA .framer-14h01jt > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-VyKEA .framer-ojcwmq > *, .framer-VyKEA .framer-ot8qie > *, .framer-VyKEA .framer-881rpb > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-VyKEA .framer-1fvcvmm > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-VyKEA.framer-v-mndg90 .framer-ntkodb-container, .framer-VyKEA.framer-v-1mob0bx .framer-ntkodb-container, .framer-VyKEA.framer-v-ccaavm .framer-ntkodb-container, .framer-VyKEA.framer-v-cu6zm0 .framer-17mtakz, .framer-VyKEA.framer-v-f0jnpl .framer-17mtakz, .framer-VyKEA.framer-v-f0jnpl .framer-1oxywu4, .framer-VyKEA.framer-v-17l4ifx .framer-17mtakz, .framer-VyKEA.framer-v-17l4ifx .framer-jhyh6n, .framer-VyKEA.framer-v-7xt929 .framer-17mtakz, .framer-VyKEA.framer-v-7xt929 .framer-tg5kw7 { order: 0; }\",\".framer-VyKEA.framer-v-mndg90 .framer-khaigx-container, .framer-VyKEA.framer-v-1mob0bx .framer-khaigx-container, .framer-VyKEA.framer-v-ccaavm .framer-khaigx-container, .framer-VyKEA.framer-v-7xt929 .framer-bluxol { order: 1; }\",\".framer-VyKEA.framer-v-mndg90 .framer-13wdwo7-container, .framer-VyKEA.framer-v-1mob0bx .framer-13wdwo7-container, .framer-VyKEA.framer-v-ccaavm .framer-13wdwo7-container, .framer-VyKEA.framer-v-17l4ifx .framer-1ihsjcw { order: 2; }\",\".framer-VyKEA.framer-v-mndg90 .framer-amzh7t-container, .framer-VyKEA.framer-v-1mob0bx .framer-amzh7t-container, .framer-VyKEA.framer-v-ccaavm .framer-amzh7t-container { order: 3; }\",\".framer-VyKEA.framer-v-mndg90 .framer-b32ldd, .framer-VyKEA.framer-v-1mob0bx .framer-neqk7i, .framer-VyKEA.framer-v-ccaavm .framer-1gj5l0g { height: var(--framer-aspect-ratio-supported, 374px); }\",\".framer-VyKEA.framer-v-mndg90 .framer-hi62qc { bottom: 20px; left: 16px; order: 0; right: 16px; top: 20px; z-index: 1; }\",\".framer-VyKEA.framer-v-cu6zm0.framer-1hd878g, .framer-VyKEA.framer-v-f0jnpl.framer-1hd878g, .framer-VyKEA.framer-v-17l4ifx.framer-1hd878g, .framer-VyKEA.framer-v-7xt929.framer-1hd878g { gap: 30px; width: 581px; }\",\".framer-VyKEA.framer-v-cu6zm0 .framer-m0cfvr, .framer-VyKEA.framer-v-f0jnpl .framer-m0cfvr, .framer-VyKEA.framer-v-17l4ifx .framer-m0cfvr, .framer-VyKEA.framer-v-7xt929 .framer-m0cfvr { gap: 30px; }\",\".framer-VyKEA.framer-v-cu6zm0 .framer-p1z46t, .framer-VyKEA.framer-v-f0jnpl .framer-p1z46t, .framer-VyKEA.framer-v-17l4ifx .framer-p1z46t { justify-content: flex-start; max-width: 542px; order: 0; padding: 0px 20px 0px 20px; }\",\".framer-VyKEA.framer-v-cu6zm0 .framer-1cgc6kn { flex-direction: row; padding: 0px 20px 0px 20px; }\",\".framer-VyKEA.framer-v-cu6zm0 .framer-1u1alpo { flex: 1 0 0px; padding: 45px 20px 20px 20px; width: 1px; }\",\".framer-VyKEA.framer-v-cu6zm0 .framer-p89sux, .framer-VyKEA.framer-v-7xt929 .framer-1985lqq { flex-direction: column; }\",\".framer-VyKEA.framer-v-cu6zm0 .framer-l3cgt7, .framer-VyKEA.framer-v-17l4ifx .framer-us0i7t, .framer-VyKEA.framer-v-7xt929 .framer-1hx6elz { align-content: center; align-items: center; flex: none; max-width: unset; width: 100%; }\",\".framer-VyKEA.framer-v-cu6zm0 .framer-v8yx4c-container { height: 42px; width: 72px; }\",\".framer-VyKEA.framer-v-cu6zm0 .framer-1frrljq, .framer-VyKEA.framer-v-17l4ifx .framer-neqk7i, .framer-VyKEA.framer-v-7xt929 .framer-n3ts8e { flex: none; height: var(--framer-aspect-ratio-supported, 375px); width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-VyKEA.framer-v-cu6zm0.framer-1hd878g, .framer-VyKEA.framer-v-cu6zm0 .framer-m0cfvr, .framer-VyKEA.framer-v-cu6zm0 .framer-1cgc6kn, .framer-VyKEA.framer-v-cu6zm0 .framer-p89sux { gap: 0px; } .framer-VyKEA.framer-v-cu6zm0.framer-1hd878g > *, .framer-VyKEA.framer-v-cu6zm0 .framer-m0cfvr > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-VyKEA.framer-v-cu6zm0.framer-1hd878g > :first-child, .framer-VyKEA.framer-v-cu6zm0 .framer-m0cfvr > :first-child, .framer-VyKEA.framer-v-cu6zm0 .framer-p89sux > :first-child { margin-top: 0px; } .framer-VyKEA.framer-v-cu6zm0.framer-1hd878g > :last-child, .framer-VyKEA.framer-v-cu6zm0 .framer-m0cfvr > :last-child, .framer-VyKEA.framer-v-cu6zm0 .framer-p89sux > :last-child { margin-bottom: 0px; } .framer-VyKEA.framer-v-cu6zm0 .framer-1cgc6kn > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-VyKEA.framer-v-cu6zm0 .framer-1cgc6kn > :first-child { margin-left: 0px; } .framer-VyKEA.framer-v-cu6zm0 .framer-1cgc6kn > :last-child { margin-right: 0px; } .framer-VyKEA.framer-v-cu6zm0 .framer-p89sux > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-VyKEA.framer-v-f0jnpl .framer-1cgc6kn, .framer-VyKEA.framer-v-17l4ifx .framer-1cgc6kn, .framer-VyKEA.framer-v-7xt929 .framer-1cgc6kn { padding: 0px 20px 0px 20px; }\",\".framer-VyKEA.framer-v-f0jnpl .framer-1ujem1l { height: var(--framer-aspect-ratio-supported, 375px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-VyKEA.framer-v-f0jnpl.framer-1hd878g, .framer-VyKEA.framer-v-f0jnpl .framer-m0cfvr { gap: 0px; } .framer-VyKEA.framer-v-f0jnpl.framer-1hd878g > *, .framer-VyKEA.framer-v-f0jnpl .framer-m0cfvr > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-VyKEA.framer-v-f0jnpl.framer-1hd878g > :first-child, .framer-VyKEA.framer-v-f0jnpl .framer-m0cfvr > :first-child { margin-top: 0px; } .framer-VyKEA.framer-v-f0jnpl.framer-1hd878g > :last-child, .framer-VyKEA.framer-v-f0jnpl .framer-m0cfvr > :last-child { margin-bottom: 0px; } }\",\".framer-VyKEA.framer-v-17l4ifx .framer-1u1alpo { flex-direction: column; padding: 40px 20px 37px 20px; }\",\".framer-VyKEA.framer-v-17l4ifx .framer-17zybbj { flex-direction: column; order: 3; }\",\".framer-VyKEA.framer-v-17l4ifx .framer-1f6nff0-container { height: 19px; width: 74px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-VyKEA.framer-v-17l4ifx.framer-1hd878g, .framer-VyKEA.framer-v-17l4ifx .framer-m0cfvr, .framer-VyKEA.framer-v-17l4ifx .framer-1u1alpo, .framer-VyKEA.framer-v-17l4ifx .framer-17zybbj { gap: 0px; } .framer-VyKEA.framer-v-17l4ifx.framer-1hd878g > *, .framer-VyKEA.framer-v-17l4ifx .framer-m0cfvr > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-VyKEA.framer-v-17l4ifx.framer-1hd878g > :first-child, .framer-VyKEA.framer-v-17l4ifx .framer-m0cfvr > :first-child, .framer-VyKEA.framer-v-17l4ifx .framer-1u1alpo > :first-child, .framer-VyKEA.framer-v-17l4ifx .framer-17zybbj > :first-child { margin-top: 0px; } .framer-VyKEA.framer-v-17l4ifx.framer-1hd878g > :last-child, .framer-VyKEA.framer-v-17l4ifx .framer-m0cfvr > :last-child, .framer-VyKEA.framer-v-17l4ifx .framer-1u1alpo > :last-child, .framer-VyKEA.framer-v-17l4ifx .framer-17zybbj > :last-child { margin-bottom: 0px; } .framer-VyKEA.framer-v-17l4ifx .framer-1u1alpo > *, .framer-VyKEA.framer-v-17l4ifx .framer-17zybbj > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-VyKEA.framer-v-7xt929 .framer-p1z46t { justify-content: flex-start; max-width: 562px; order: 0; padding: 0px 20px 0px 20px; }\",\".framer-VyKEA.framer-v-7xt929 .framer-1u1alpo { padding: 41px 20px 37px 20px; }\",\".framer-VyKEA.framer-v-7xt929 .framer-1d0m53b-container { height: 13px; width: 72px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-VyKEA.framer-v-7xt929.framer-1hd878g, .framer-VyKEA.framer-v-7xt929 .framer-m0cfvr, .framer-VyKEA.framer-v-7xt929 .framer-1985lqq { gap: 0px; } .framer-VyKEA.framer-v-7xt929.framer-1hd878g > *, .framer-VyKEA.framer-v-7xt929 .framer-m0cfvr > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-VyKEA.framer-v-7xt929.framer-1hd878g > :first-child, .framer-VyKEA.framer-v-7xt929 .framer-m0cfvr > :first-child, .framer-VyKEA.framer-v-7xt929 .framer-1985lqq > :first-child { margin-top: 0px; } .framer-VyKEA.framer-v-7xt929.framer-1hd878g > :last-child, .framer-VyKEA.framer-v-7xt929 .framer-m0cfvr > :last-child, .framer-VyKEA.framer-v-7xt929 .framer-1985lqq > :last-child { margin-bottom: 0px; } .framer-VyKEA.framer-v-7xt929 .framer-1985lqq > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-VyKEA[data-hide-scrollbars=\"true\"]::-webkit-scrollbar, .framer-VyKEA [data-hide-scrollbars=\"true\"]::-webkit-scrollbar { width: 0px; height: 0px; }','.framer-VyKEA[data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb, .framer-VyKEA [data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb { background: transparent; }','.framer-VyKEA[data-border=\"true\"]::after, .framer-VyKEA [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 536.5\n * @framerIntrinsicWidth 1018\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"OVx66v_X7\":{\"layout\":[\"fixed\",\"auto\"]},\"VWCYjedcD\":{\"layout\":[\"fixed\",\"auto\"]},\"SRrMyvW2U\":{\"layout\":[\"fixed\",\"auto\"]},\"aBJ_Gf9eP\":{\"layout\":[\"fixed\",\"auto\"]},\"sQbMLXCjI\":{\"layout\":[\"fixed\",\"auto\"]},\"mGMOvew6S\":{\"layout\":[\"fixed\",\"auto\"]},\"F9Ttz4OFU\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Frameraz8oiSy1s=withCSS(Component,css,\"framer-VyKEA\");export default Frameraz8oiSy1s;Frameraz8oiSy1s.displayName=\"Feature Tabs/Section\";Frameraz8oiSy1s.defaultProps={height:536.5,width:1018};addPropertyControls(Frameraz8oiSy1s,{variant:{options:[\"lhFOdaaDp\",\"OVx66v_X7\",\"VWCYjedcD\",\"SRrMyvW2U\",\"aBJ_Gf9eP\",\"sQbMLXCjI\",\"mGMOvew6S\",\"F9Ttz4OFU\"],optionTitles:[\"Desktop Tab 1\",\"Desktop Tab 2\",\"Desktop Tab 3\",\"Desktop Tab 4\",\"Mobile Tab 1\",\"Mobile Tab 2\",\"Mobile Tab 3\",\"Mobile Tab 4\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Frameraz8oiSy1s,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_m07NTxXUEKi4Rw.woff2\",weight:\"500\"},{family:\"Manrope\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk79FO_A87jxeN7B.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"}]},...FeatureTabsNavItemFonts,...SpacerFonts,...VideoFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Frameraz8oiSy1s\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"536.5\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"OVx66v_X7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"VWCYjedcD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"SRrMyvW2U\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"aBJ_Gf9eP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"sQbMLXCjI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mGMOvew6S\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"F9Ttz4OFU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1018\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./az8oiSy1s.map", "// Generated by Framer (1a71db7)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;DM Sans-500\",\"GF;DM Sans-700\",\"GF;DM Sans-700italic\",\"GF;DM Sans-500italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAkJxhS2f3ZGMZpg.woff2\",weight:\"500\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwARZthS2f3ZGMZpg.woff2\",weight:\"700\"},{family:\"DM Sans\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat9uCm32RmYJpso5.woff2\",weight:\"700\"},{family:\"DM Sans\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat-7DW32RmYJpso5.woff2\",weight:\"500\"}]}];export const css=['.framer-D8nlj .framer-styles-preset-144bprb:not(.rich-text-wrapper), .framer-D8nlj .framer-styles-preset-144bprb.rich-text-wrapper h3 { --framer-font-family: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-bold: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-italic: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 36px; --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: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: -0.03em; --framer-line-height: 48px; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-05b68a22-b27f-4707-a41e-0c181a8bb21b, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-D8nlj .framer-styles-preset-144bprb:not(.rich-text-wrapper), .framer-D8nlj .framer-styles-preset-144bprb.rich-text-wrapper h3 { --framer-font-family: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-bold: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-italic: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 32px; --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: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: -0.03em; --framer-line-height: 44px; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-05b68a22-b27f-4707-a41e-0c181a8bb21b, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-D8nlj .framer-styles-preset-144bprb:not(.rich-text-wrapper), .framer-D8nlj .framer-styles-preset-144bprb.rich-text-wrapper h3 { --framer-font-family: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-bold: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-family-italic: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 24px; --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: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: -0.03em; --framer-line-height: 36px; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-05b68a22-b27f-4707-a41e-0c181a8bb21b, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-D8nlj\";\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\"}}}"],
  "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", "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", "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", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "css", "FrameryHg2lFFuL", "withCSS", "yHg2lFFuL_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "tabNavLabel", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "BGdg6MBHf", "hijpcCPjy", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1it1o4z", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "RichText2", "css", "FramerH6tWq_sNl", "withCSS", "H6tWq_sNl_default", "addPropertyControls", "ControlType", "addFonts", "FeatureTabsNavItemFonts", "getFonts", "H6tWq_sNl_default", "SpacerFonts", "yHg2lFFuL_default", "MotionDivWithFX", "withFX", "motion", "VideoFonts", "Video", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "MX8w9TBP7", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "hijpcCPjy1ytuje9", "args", "hijpcCPjytlrgef", "hijpcCPjyz7r6yl", "hijpcCPjy5ngksl", "hijpcCPjyrm357a", "hijpcCPjy1ctmg1n", "hijpcCPjy1t6m1yl", "hijpcCPjy1xr046q", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "isDisplayed8", "isDisplayed9", "isDisplayed10", "isDisplayed11", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "ComponentViewportProvider", "RichText2", "Image2", "getLoadingLazyAtYPosition", "css", "Frameraz8oiSy1s", "withCSS", "az8oiSy1s_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className"]
}
