{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/90ICLbTHnkXgVfH1BSgW/Video.js", "ssg:https://framerusercontent.com/modules/SjyKsnPLI5PrHt9gjQFq/5HzHr2K3Yj8apxdJaUar/drQrPei6Z.js", "ssg:https://framerusercontent.com/modules/Yx9NGBH5T79oD6mH7Ktl/jIV4rff21t3tdsiLW2Vm/tecIXODge.js", "ssg:https://framerusercontent.com/modules/7yfC4iP34BGpeMjm1PuA/GiSKpng5sKfAjr01TREY/augiA20Il.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={}));const defaultVideo=\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\";// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const isPlayingRef=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{// default props\nsrcType=\"URL\",srcUrl,srcFile=\"\",posterEnabled=false,controls=false,playing=true,loop=true,muted=true,playsinline=true,restartOnEnter=false,objectFit=\"cover\",backgroundColor=\"rgba(0,0,0,0)\",radius=0,volume=25,startTime:startTimeProp=0,poster,playing:playingProp,progress,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const 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:\"0px 0px 100px 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(// when the component updates (e.g. only srcFile/url changes), and the video was already playing, keep playing\nisPlaying.current||autoplayBehavior===\"on-mount\"||autoplayBehavior===\"on-viewport\"&&isInViewport)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:isPlaying.current||autoplayBehavior===\"on-mount\"||autoplayBehavior===\"on-viewport\"&&isInViewport,preload:isPlaying.current?\"auto\":isOnCanvas&&!poster?\"metadata\":autoplayBehavior!==\"on-mount\"&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled&&!srcFile&&srcUrl===defaultVideo?\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\":posterEnabled&&poster?poster:undefined,onLoadedData:handleReady,controls:controls,muted: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\":{\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"112\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (679ce5e)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"ZQqrUOw_A\",\"Mf65_RSlv\"];const serializationHash=\"framer-Trq9L\";const variantClassNames={Mf65_RSlv:\"framer-v-1w9co5l\",ZQqrUOw_A:\"framer-v-1npdlnn\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,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={Desktop:\"ZQqrUOw_A\",Mobile:\"Mf65_RSlv\"};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:\"ZQqrUOw_A\"};};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:\"ZQqrUOw_A\",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-1npdlnn\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"ZQqrUOw_A\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({Mf65_RSlv:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-c2jays\",\"data-framer-name\":\"Gena-logo-white-big\",fill:\"black\",intrinsicHeight:229,intrinsicWidth:475,layoutDependency:layoutDependency,layoutId:\"AK8kO8_n7\",svg:'<svg width=\"475\" height=\"229\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M90.482 164.668c5.634 1.09 12.267 1.755 19.897 1.997h5.81c8.1 0 15.378-.302 21.834-.907 6.574-.606 12.267-1.877 17.08-3.813 4.93-2.058 8.922-5.144 11.974-9.26 3.052-4.236 5.047-9.986 5.986-17.248l2.226-15.776c.312-2.212-1.352-4.196-3.52-4.196h-42.021c-4.109 0-7.161.485-9.157 1.453-3.651 1.772-4.873 5.92-5.55 9.944-.372 2.211 1.348 4.218 3.524 4.218h25.467c2.315 0 4.089 2.26 3.687 4.61-.55 3.214-1.213 6.315-3.533 9.007-1.761 2.178-4.519 3.691-8.276 4.539-3.756.847-8.98 1.271-15.671 1.271-5.986 0-10.741-.666-14.262-1.998-3.522-1.452-5.869-4.055-7.043-7.807-1.174-3.873-1.292-9.32-.352-16.34 1.056-7.626 2.817-13.375 5.282-17.248 2.465-3.995 6.104-6.658 10.917-7.99 4.93-1.451 11.621-2.178 20.073-2.178 1.174 0 3.169.06 5.987.182 2.934 0 6.163.12 9.684.363 6.976.48 13.595 1.488 20.313 3.153 1.933.479 3.901-.704 4.244-2.723.403-2.371.761-5.403.447-7.511-.118-1.573-.822-2.965-2.113-4.176-1.174-1.331-3.346-2.3-6.515-2.905-2.113-.484-4.872-.847-8.276-1.09-3.404-.362-7.278-.604-11.621-.725a455.49 455.49 0 0 0-13.03-.182c-9.157 0-17.432.484-24.828 1.453-7.278.968-13.617 2.965-19.016 5.991-5.4 2.905-9.802 7.262-13.206 13.072-3.405 5.689-5.752 13.254-7.044 22.695-1.173 8.594-1.173 15.675 0 21.243 1.174 5.447 3.463 9.683 6.868 12.709 3.521 2.905 8.1 4.963 13.734 6.173Zm92.892 1.09c-2.161 0-3.823-1.971-3.523-4.178l9.292-68.265c.352-2.784.704-4.963 1.057-6.536.469-1.574 1.408-2.724 2.817-3.45 1.526-.726 3.874-1.09 7.043-1.09h63.079c2.144 0 3.801 1.941 3.529 4.134l-1.027 8.278c-.227 1.831-1.739 3.203-3.529 3.203h-41.544c-1.766 0-3.265 1.336-3.52 3.139l-1.428 10.094c-.313 2.213 1.352 4.197 3.52 4.197h33.909c2.163 0 3.825 1.973 3.522 4.18l-1.108 8.097c-.248 1.81-1.75 3.155-3.522 3.155h-35.786c-1.762 0-3.258 1.33-3.518 3.126l-1.754 12.091c-.321 2.217 1.344 4.21 3.518 4.21h39.535c2.16 0 3.822 1.969 3.523 4.175l-1.12 8.279c-.245 1.812-1.748 3.161-3.523 3.161h-69.442Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M267.115 161.586c-.296 2.205 1.365 4.172 3.524 4.172h13.474c1.752 0 3.243-1.316 3.514-3.101l6.298-41.451c.513-3.379 4.835-4.259 6.556-1.335l25.959 44.121a3.534 3.534 0 0 0 3.041 1.766h26.382c4.343 0 7.395-.485 9.156-1.453 1.761-.968 2.935-3.45 3.521-7.444.62-4.605 1.236-9.211 1.852-13.816l.005-.037c2.522-18.86 5.043-37.718 7.846-56.534.332-2.225-1.336-4.234-3.519-4.234H361.02c-1.753 0-3.244 1.316-3.515 3.1l-6.116 40.307c-.514 3.385-4.848 4.26-6.562 1.324l-25.08-42.955c-.644-1.102-1.8-1.776-3.048-1.776H287.86c-3.052 0-5.341.302-6.867.908-1.409.484-2.406 1.452-2.993 2.905-.587 1.452-1.115 3.57-1.585 6.354l-9.3 69.179Zm32.788-66.255c2.359-1.74 5.66-1.086 7.11 1.504 1.449 2.588.35 5.86-2.289 7.096l-.884.413c-2.197 1.029-4.782.101-5.989-2.054-1.208-2.157-.695-4.932 1.27-6.382l.782-.577Zm18.834 18.566c2.205-1.135 3.123-3.901 1.891-6.102-1.231-2.199-4.011-2.762-6.066-1.362l-5.189 3.536c-1.649 1.124-2.082 3.412-1.094 5.177.989 1.767 3.13 2.525 4.9 1.614l5.558-2.863Zm-2.767 14.39c1.004 1.792 3.263 2.223 4.961 1.119l9.578-6.224c1.316-.855 1.642-2.676.864-4.065-.777-1.388-2.468-2.006-3.843-1.259l-10.021 5.443c-1.774.964-2.542 3.195-1.539 4.986Zm17.264 2.467c2.056-1.401 4.838-.839 6.071 1.362 1.231 2.2.313 4.963-1.89 6.098l-5.564 2.866c-1.768.91-3.907.153-4.895-1.612-.989-1.766-.556-4.057 1.095-5.182l5.183-3.532Zm16.47 14.227c-1.451-2.59-4.752-3.244-7.11-1.504l-.783.577c-1.964 1.45-2.478 4.225-1.27 6.382 1.207 2.155 3.792 3.083 5.99 2.054l.883-.413c2.639-1.236 3.739-4.508 2.29-7.096Zm27.037 20.777c-2.714 0-4.429-3.01-3.107-5.455l34.556-63.901c2.583-4.721 5.811-8.352 9.685-10.894 3.873-2.663 9.625-3.994 17.255-3.994 6.105 0 10.917 1.21 14.439 3.63 3.522 2.422 5.928 6.174 7.219 11.257l17.414 64.708c.629 2.337-1.076 4.649-3.428 4.649H446.98c-1.593 0-2.992-1.093-3.424-2.674l-3.646-13.353c-.431-1.582-1.83-2.674-3.424-2.674h-31.815c-1.304 0-2.503.735-3.126 1.916l-7.84 14.869c-.622 1.18-1.821 1.916-3.125 1.916h-13.839Zm37.742-30.139c-2.688 0-4.405-2.957-3.135-5.4l10.4-20.019c.47-.968.998-1.815 1.585-2.542.587-.847 1.526-1.271 2.817-1.271 1.027 0 1.74.325 2.138.973.074.121.141.246.208.371l.073.136.043.077c.369.66.605 1.412.708 2.256l4.919 20.885c.544 2.309-1.153 4.534-3.457 4.534h-16.299Zm-297.534 73.022c-3.022 0-5.31-2.641-5.115-5.681l.42-6.553c.157-2.452 2.258-4.296 4.695-4.296 2.435 0 4.534 1.843 4.69 4.292l.421 6.563c.194 3.036-2.092 5.675-5.111 5.675Zm18.58-7.759c.717 2.962-1.056 5.961-4.035 6.488-2.979.526-5.712-1.679-6.037-4.709l-.703-6.539c-.261-2.435 1.513-4.61 3.906-5.033 2.393-.424 4.748 1.025 5.323 3.404l1.546 6.389Zm12.905-4.415c1.22 2.791-.013 6.061-2.856 7.105-2.843 1.043-5.909-.652-6.754-3.58l-1.823-6.314c-.678-2.35.682-4.8 2.963-5.638 2.282-.838 4.86.169 5.839 2.409l2.631 6.018Zm-53.365 3.524c-.846 2.928-3.912 4.622-6.755 3.578-2.843-1.043-4.076-4.314-2.856-7.105l2.631-6.018c.98-2.24 3.558-3.246 5.84-2.408 2.281.838 3.641 3.288 2.963 5.638l-1.823 6.315ZM70.72 187.88c-1.79 2.455-5.23 2.995-7.544 1.035-2.314-1.959-2.376-5.463-.286-7.663l4.512-4.75c1.683-1.77 4.46-1.82 6.323-.244 1.862 1.577 2.297 4.346.857 6.322l-3.862 5.3Zm-10.241-9.059c-2.183 2.107-5.66 2.045-7.604-.288-1.944-2.332-1.408-5.8 1.028-7.603l5.258-3.892c1.96-1.451 4.708-1.014 6.272.863 1.565 1.878 1.515 4.677-.242 6.373l-4.712 4.547Zm-8.533-10.707c-2.513 1.696-5.925 1.034-7.44-1.604-1.514-2.637-.392-5.967 2.32-7.317l5.85-2.913c2.178-1.085 4.808-.169 6.026 1.951 1.217 2.12.686 4.862-1.334 6.225l-5.422 3.658ZM41.004 143.07c-2.938.722-5.915-1.065-6.438-4.068-.523-3.002 1.666-5.758 4.673-6.086l6.486-.708c2.416-.264 4.575 1.524 4.995 3.937.42 2.412-1.017 4.786-3.378 5.367l-6.338 1.558Zm-2.064-13.576c-3.015.196-5.636-2.11-5.636-5.155 0-3.046 2.62-5.352 5.636-5.155l6.503.423c2.432.159 4.262 2.275 4.262 4.732 0 2.456-1.83 4.573-4.262 4.732l-6.503.423Zm.3-13.732c-3.008-.329-5.197-3.084-4.674-6.087.523-3.003 3.5-4.789 6.438-4.067l6.338 1.558c2.361.58 3.798 2.954 3.378 5.367-.42 2.412-2.58 4.2-4.995 3.937l-6.486-.708Zm2.647-13.476c-2.905-.852-4.587-3.942-3.551-6.807 1.036-2.865 4.28-4.108 7.05-2.878l5.97 2.651c2.223.987 3.221 3.586 2.39 5.886-.831 2.299-3.262 3.67-5.594 2.986l-6.265-1.838Zm4.94-12.802c-2.712-1.35-3.834-4.679-2.32-7.317 1.515-2.638 4.928-3.3 7.44-1.604l5.422 3.659c2.02 1.363 2.551 4.105 1.334 6.225-1.218 2.12-3.848 3.035-6.027 1.95l-5.85-2.913Zm7.077-11.737c-2.436-1.803-2.972-5.27-1.028-7.603 1.944-2.332 5.42-2.394 7.604-.288l4.712 4.548C66.95 76.1 67 78.9 65.434 80.776c-1.564 1.877-4.311 2.315-6.272.864l-5.258-3.893Zm8.987-10.32c-2.09-2.201-2.028-5.705.286-7.665 2.314-1.959 5.755-1.419 7.544 1.036l3.862 5.3c1.44 1.976 1.005 4.744-.857 6.321-1.862 1.577-4.64 1.527-6.323-.243l-4.512-4.75Zm10.624-8.6c-1.683-2.533-1.026-5.972 1.591-7.499 2.617-1.527 5.92-.395 7.26 2.337l2.89 5.896c1.077 2.196.169 4.847-1.935 6.074-2.103 1.227-4.824.692-6.176-1.344l-3.63-5.464Zm11.943-6.614c-1.22-2.79.013-6.06 2.856-7.105 2.843-1.044 5.909.651 6.755 3.58L96.891 55c.678 2.35-.681 4.8-2.963 5.639-2.282.837-4.86-.169-5.84-2.409l-2.63-6.018Zm53.366-3.528c.845-2.928 3.911-4.623 6.754-3.579 2.843 1.044 4.076 4.314 2.856 7.105l-2.63 6.018c-.98 2.24-3.558 3.246-5.84 2.409-2.281-.838-3.641-3.288-2.963-5.638l1.823-6.315Zm-40.46-.887c-.716-2.962 1.056-5.962 4.036-6.49 2.979-.526 5.713 1.68 6.039 4.71l.702 6.537c.262 2.435-1.512 4.611-3.906 5.035-2.394.423-4.749-1.025-5.325-3.405l-1.546-6.387Zm27.093-1.78c.325-3.031 3.058-5.237 6.037-4.71 2.979.527 4.752 3.526 4.035 6.487l-1.546 6.39c-.575 2.38-2.93 3.827-5.323 3.404-2.393-.423-4.167-2.599-3.906-5.033l.703-6.539Zm-13.623-.3c-.195-3.04 2.093-5.681 5.115-5.681 3.019 0 5.305 2.639 5.111 5.675l-.421 6.563c-.156 2.449-2.255 4.291-4.69 4.291-2.437 0-4.538-1.844-4.695-4.295l-.42-6.554Z\" fill=\"#fff\"/><path d=\"M108.439 202.659c-.326 3.031-3.06 5.237-6.039 4.71-2.98-.527-4.752-3.527-4.036-6.489l1.546-6.387c.576-2.38 2.931-3.828 5.325-3.405 2.394.423 4.168 2.6 3.906 5.035l-.702 6.536Zm-26.073-7.647c-1.34 2.733-4.643 3.864-7.26 2.338-2.617-1.527-3.274-4.966-1.591-7.499l3.63-5.464c1.352-2.036 4.073-2.571 6.176-1.344 2.104 1.227 3.012 3.878 1.936 6.074l-2.89 5.895Zm8.082 22.461c-1.097 3.862-5.129 6.114-8.874 4.738-3.746-1.375-5.35-5.692-3.727-9.362l1.27-2.87c1.364-3.083 4.924-4.454 8.072-3.299 3.147 1.156 5.039 4.526 4.117 7.771l-.858 3.022Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M34.596 204.959c-3.249 3.181-8.463 3.122-11.397-.356-.32-.38-.64-.762-.955-1.146-2.892-3.512-2.049-8.699 1.62-11.375l.36-.262c3.471-2.53 8.302-1.722 11.057 1.584 2.756 3.306 2.706 8.235-.367 11.243l-.318.312ZM6.47 92.756c-4.358-1.243-6.917-5.824-5.394-10.122.168-.475.34-.948.513-1.42 1.576-4.28 6.457-6.13 10.588-4.258l.412.186c3.904 1.768 5.628 6.357 4.163 10.41-1.466 4.052-5.73 6.503-9.847 5.328l-.435-.124ZM52.468 28.59c-2.547-3.775-1.588-8.941 2.318-11.251.43-.254.86-.505 1.293-.754 3.934-2.262 8.855-.523 10.832 3.584l.195.406c1.869 3.883.231 8.539-3.475 10.7-3.706 2.162-8.503 1.256-10.911-2.312l-.252-.373Z\" fill=\"#fff\"/><path d=\"M151.532 53.67c1.34-2.733 4.643-3.865 7.26-2.338 2.618 1.526 3.274 4.966 1.592 7.498l-3.63 5.465c-1.352 2.035-4.073 2.57-6.177 1.344-2.104-1.227-3.012-3.878-1.935-6.074l2.89-5.896Zm8.851 136.182-3.629-5.465c-1.353-2.035-4.074-2.571-6.177-1.344-2.104 1.227-3.012 3.878-1.935 6.074l2.89 5.896c1.339 2.732 4.643 3.864 7.26 2.337 2.617-1.527 3.274-4.966 1.591-7.498ZM143.45 31.203c1.097-3.862 5.128-6.114 8.874-4.738 3.745 1.375 5.35 5.692 3.726 9.362l-1.27 2.87c-1.364 3.084-4.924 4.454-8.071 3.299-3.147-1.156-5.039-4.526-4.117-7.771l.858-3.022Zm11.23 178.804 1.28 2.903c1.616 3.662.01 7.966-3.727 9.335-3.737 1.368-7.757-.881-8.848-4.734l-.865-3.055c-.917-3.238.973-6.598 4.113-7.748 3.14-1.149 6.69.222 8.047 3.299Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M110.239 220.975c-.275 4.006 2.727 7.502 6.71 7.502 3.97 0 6.961-3.484 6.689-7.475l-.216-3.169c-.229-3.366-3.125-5.886-6.473-5.886-3.359 0-6.266 2.528-6.497 5.906l-.213 3.122Zm-71.054-39.693c-3.22 2.362-3.947 6.929-1.385 10.003 2.561 3.073 7.145 3.134 10.01.346l2.242-2.183c2.412-2.348 2.463-6.207.306-8.795s-5.941-3.209-8.652-1.22l-2.521 1.849Zm-8.64-14.47c-3.58 1.763-5.08 6.145-3.083 9.621 1.996 3.476 6.497 4.326 9.798 2.078l2.584-1.76c2.776-1.891 3.492-5.675 1.813-8.598-1.679-2.924-5.3-4.204-8.31-2.721l-2.802 1.38ZM29.128 84.93c-3.64-1.637-7.924-.02-9.289 3.755-1.364 3.775.87 7.839 4.702 8.944l2.998.865c3.22.93 6.564-.978 7.71-4.15 1.147-3.171-.213-6.76-3.272-8.134l-2.849-1.28ZM60.45 45.964c-2.343-3.246-6.876-3.978-9.925-1.396-3.05 2.582-3.11 7.201-.343 10.088l2.166 2.26c2.33 2.431 6.158 2.482 8.726.308 2.568-2.173 3.184-5.987 1.21-8.72l-1.834-2.54Zm14.357-8.708c-1.75-3.608-6.097-5.119-9.546-3.107-3.449 2.011-4.293 6.548-2.062 9.875l1.746 2.604c1.877 2.798 5.63 3.52 8.532 1.827 2.9-1.692 4.17-5.34 2.699-8.375l-1.37-2.824Zm15.64-6.051c-1.096-3.863-5.128-6.114-8.873-4.739-3.746 1.376-5.35 5.693-3.727 9.362l1.27 2.871c1.364 3.083 4.924 4.454 8.072 3.298 3.146-1.155 5.039-4.525 4.117-7.77l-.858-3.022Zm16.454-3.207c-.412-3.996-4.005-6.92-7.93-6.225-3.926.695-6.242 4.659-5.28 8.557l.75 3.048c.81 3.278 4.064 5.26 7.365 4.676 3.301-.584 5.763-3.573 5.417-6.933l-.322-3.123Zm33.25 2.297c.956-3.888-1.356-7.84-5.271-8.53-3.915-.691-7.497 2.225-7.907 6.21l-.325 3.16c-.345 3.35 2.112 6.331 5.404 6.912 3.292.58 6.537-1.398 7.341-4.668l.758-3.084Z\" fill=\"#fff\"/><path d=\"m139.393 215.298.758 3.084c.956 3.889-1.356 7.84-5.271 8.531-3.915.691-7.497-2.225-7.907-6.21l-.325-3.16c-.345-3.351 2.112-6.331 5.404-6.912 3.292-.581 6.537 1.398 7.341 4.667Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M123.659 27.7c.274-4.004-2.727-7.5-6.71-7.5-3.97 0-6.962 3.483-6.69 7.474l.216 3.169c.23 3.366 3.126 5.886 6.474 5.886 3.359 0 6.265-2.528 6.496-5.906l.214-3.122Zm1.64-18.77c.324-4.553-3.076-8.537-7.605-8.564a124.42 124.42 0 0 0-1.485 0c-4.529.026-7.93 4.01-7.605 8.563l.031.44c.307 4.31 4.026 7.524 8.314 7.524 4.29 0 8.011-3.216 8.319-7.53l.031-.433Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Trq9L.framer-1f47wjn, .framer-Trq9L .framer-1f47wjn { display: block; }\",\".framer-Trq9L.framer-1npdlnn { height: 86px; position: relative; width: 406px; }\",\".framer-Trq9L .framer-c2jays { aspect-ratio: 2.074235807860262 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 229px); left: -69px; position: absolute; top: -81px; width: 475px; }\",\".framer-Trq9L.framer-v-1w9co5l .framer-c2jays { height: var(--framer-aspect-ratio-supported, 135px); left: 0px; top: -25px; width: 280px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 86\n * @framerIntrinsicWidth 406\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Mf65_RSlv\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerdrQrPei6Z=withCSS(Component,css,\"framer-Trq9L\");export default FramerdrQrPei6Z;FramerdrQrPei6Z.displayName=\"Logo/Large\";FramerdrQrPei6Z.defaultProps={height:86,width:406};addPropertyControls(FramerdrQrPei6Z,{variant:{options:[\"ZQqrUOw_A\",\"Mf65_RSlv\"],optionTitles:[\"Desktop\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerdrQrPei6Z,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerdrQrPei6Z\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"86\",\"framerIntrinsicWidth\":\"406\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Mf65_RSlv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./drQrPei6Z.map", "// Generated by Framer (552ec80)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getPropertyControls,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/2iNPz414F9gMBRdavxFn/69e94NzesmwW23PWt5MY/hFFy7eoDJ.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/mhDh9kiF5uKkHIqIsd62/vRBwUnCw2StovtAurzjg/MFJitBA8c.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/tMmFhTXVRgx64Lxe28Mn/sBQlmdhZ793s8Vsbwc5o/Ofzxm8HTZ.js\";import BubbleProduct from\"https://framerusercontent.com/modules/supgyJC0VwidCLjSkLd6/JN0L7CuI52vUc4qFfIyk/mqTRrQdDC.js\";const BubbleProductFonts=getFonts(BubbleProduct);const MotionDivWithFX=withFX(motion.div);const BubbleProductControls=getPropertyControls(BubbleProduct);const serializationHash=\"framer-2yfaM\";const variantClassNames={H5LUTBs5V:\"framer-v-1ohx34y\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition1={delay:0,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const transition2={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableEnumMap={\"Fast Libraries\":\"GkLTubsGh\",Edu:\"pk8lOnbdR\",Map:\"WQcQFwIAk\",Screen:\"i5eReYT5J\",Test:\"ja7q0DB_Y\"};const getProps=({amount,color,description,height,id,product,productTitle,width,...props})=>{return{...props,F67SkL0Ow:humanReadableEnumMap[product]??product??props.F67SkL0Ow??\"i5eReYT5J\",QKL4qBnwo:color??props.QKL4qBnwo??\"var(--token-672a2495-d48e-4a25-8bae-3a311555fa3f, rgb(224, 96, 96))\",qlZhij8Ta:amount??props.qlZhij8Ta??\"160%\",Qr_xdOYeO:description??props.Qr_xdOYeO??\"Text\",ZQjyavp2D:productTitle??props.ZQjyavp2D??\"Product\"};};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,qlZhij8Ta,Qr_xdOYeO,QKL4qBnwo,ZQjyavp2D,F67SkL0Ow,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"H5LUTBs5V\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsx(MotionDivWithFX,{...restProps,...gestureHandlers,__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1ohx34y\",className,classNames),\"data-border\":true,\"data-framer-name\":\"On white\",layoutDependency:layoutDependency,layoutId:\"H5LUTBs5V\",ref:ref??ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-e9aa3794-1813-4ab1-8548-86c51f026648, rgba(63, 55, 39, 0.3))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-99eef9d1-6dfd-4c7f-80e8-1204a58d8b6a, rgb(255, 255, 255))\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32,...style},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rnivjd\",layoutDependency:layoutDependency,layoutId:\"N84cUAAV5\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nf0rai\",layoutDependency:layoutDependency,layoutId:\"RyyMix9jn\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:\"80px\",y:(componentViewport?.y||0)+40+(((componentViewport?.height||317)-80-236.8)/2+0+0)+0+0+0+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-oeci0e-container\",layoutDependency:layoutDependency,layoutId:\"vQzQr8XVF-container\",children:/*#__PURE__*/_jsx(BubbleProduct,{height:\"100%\",id:\"vQzQr8XVF\",layoutId:\"vQzQr8XVF\",style:{height:\"100%\",width:\"100%\"},variant:F67SkL0Ow,width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-2tlhb8\",\"data-styles-preset\":\"hFFy7eoDJ\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--variable-reference-QKL4qBnwo-tecIXODge))\"},children:\"Practitioners\"})}),className:\"framer-12iivkm\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"xWrxfUg7n\",style:{\"--extracted-1eung3n\":\"var(--variable-reference-QKL4qBnwo-tecIXODge)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-QKL4qBnwo-tecIXODge\":QKL4qBnwo},text:ZQjyavp2D,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-1lcq1ka\",\"data-styles-preset\":\"MFJitBA8c\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--variable-reference-QKL4qBnwo-tecIXODge))\"},children:\"160%\"})}),className:\"framer-1swfzhz\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"gRVTzOYHQ\",style:{\"--extracted-gdpscs\":\"var(--variable-reference-QKL4qBnwo-tecIXODge)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-QKL4qBnwo-tecIXODge\":QKL4qBnwo},text:qlZhij8Ta,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-h3ley0\",\"data-styles-preset\":\"Ofzxm8HTZ\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--variable-reference-QKL4qBnwo-tecIXODge))\"},children:\"Genetic tests served\"})}),className:\"framer-e6o6tx\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"QS20eOuFv\",style:{\"--extracted-1lwpl3i\":\"var(--variable-reference-QKL4qBnwo-tecIXODge)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-QKL4qBnwo-tecIXODge\":QKL4qBnwo},text:Qr_xdOYeO,verticalAlignment:\"top\",withExternalLayout:true})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-2yfaM.framer-16lk0b4, .framer-2yfaM .framer-16lk0b4 { display: block; }\",\".framer-2yfaM.framer-1ohx34y { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-2yfaM .framer-1rnivjd { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: auto; }\",\".framer-2yfaM .framer-nf0rai { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-2yfaM .framer-oeci0e-container { flex: none; height: 80px; position: relative; width: 80px; }\",\".framer-2yfaM .framer-12iivkm, .framer-2yfaM .framer-e6o6tx { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 166px; word-break: break-word; word-wrap: break-word; }\",\".framer-2yfaM .framer-1swfzhz { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 193px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-2yfaM.framer-1ohx34y, .framer-2yfaM .framer-1rnivjd, .framer-2yfaM .framer-nf0rai { gap: 0px; } .framer-2yfaM.framer-1ohx34y > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-2yfaM.framer-1ohx34y > :first-child, .framer-2yfaM .framer-1rnivjd > :first-child, .framer-2yfaM .framer-nf0rai > :first-child { margin-top: 0px; } .framer-2yfaM.framer-1ohx34y > :last-child, .framer-2yfaM .framer-1rnivjd > :last-child, .framer-2yfaM .framer-nf0rai > :last-child { margin-bottom: 0px; } .framer-2yfaM .framer-1rnivjd > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-2yfaM .framer-nf0rai > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-2yfaM[data-border=\"true\"]::after, .framer-2yfaM [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 317\n * @framerIntrinsicWidth 273\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"qlZhij8Ta\":\"amount\",\"Qr_xdOYeO\":\"description\",\"QKL4qBnwo\":\"color\",\"ZQjyavp2D\":\"productTitle\",\"F67SkL0Ow\":\"product\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramertecIXODge=withCSS(Component,css,\"framer-2yfaM\");export default FramertecIXODge;FramertecIXODge.displayName=\"Card/Metric\";FramertecIXODge.defaultProps={height:317,width:273};addPropertyControls(FramertecIXODge,{qlZhij8Ta:{defaultValue:\"160%\",displayTextArea:false,title:\"Amount\",type:ControlType.String},Qr_xdOYeO:{defaultValue:\"Text\",displayTextArea:false,title:\"Description\",type:ControlType.String},QKL4qBnwo:{defaultValue:'var(--token-672a2495-d48e-4a25-8bae-3a311555fa3f, rgb(224, 96, 96)) /* {\"name\":\"GENA screen\"} */',title:\"Color\",type:ControlType.Color},ZQjyavp2D:{defaultValue:\"Product\",displayTextArea:false,placeholder:\"\",title:\"Product Title\",type:ControlType.String},F67SkL0Ow:BubbleProductControls?.[\"variant\"]&&{...BubbleProductControls[\"variant\"],defaultValue:\"i5eReYT5J\",description:undefined,hidden:undefined,title:\"Product\"}});addFonts(FramertecIXODge,[{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\"}]},...BubbleProductFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramertecIXODge\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"273\",\"framerIntrinsicHeight\":\"317\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"qlZhij8Ta\\\":\\\"amount\\\",\\\"Qr_xdOYeO\\\":\\\"description\\\",\\\"QKL4qBnwo\\\":\\\"color\\\",\\\"ZQjyavp2D\\\":\\\"productTitle\\\",\\\"F67SkL0Ow\\\":\\\"product\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (e22b717)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCSS,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/90ICLbTHnkXgVfH1BSgW/Video.js\";import CardFeature from\"#framer/local/canvasComponent/bQ8r_Ctzp/bQ8r_Ctzp.js\";import LogoLarge from\"#framer/local/canvasComponent/drQrPei6Z/drQrPei6Z.js\";import ButtonText from\"#framer/local/canvasComponent/fGKWir27W/fGKWir27W.js\";import SectionNewsletter from\"#framer/local/canvasComponent/ld6q2lsAq/ld6q2lsAq.js\";import SectionExploreGena from\"#framer/local/canvasComponent/MlqBxEurI/MlqBxEurI.js\";import SectionFooter from\"#framer/local/canvasComponent/nPqw2SSF9/nPqw2SSF9.js\";import CardMetric from\"#framer/local/canvasComponent/tecIXODge/tecIXODge.js\";import SectionOurProducts from\"#framer/local/canvasComponent/tftekNuqG/tftekNuqG.js\";import NavigationBar from\"#framer/local/canvasComponent/ubMnWMmXn/ubMnWMmXn.js\";import*as sharedStyle2 from\"#framer/local/css/ALz2qhywq/ALz2qhywq.js\";import*as sharedStyle1 from\"#framer/local/css/XYD6iCLRe/XYD6iCLRe.js\";import*as sharedStyle from\"#framer/local/css/Yip__pnRU/Yip__pnRU.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavigationBarFonts=getFonts(NavigationBar);const NavigationBarWithVariantAppearEffect=withVariantAppearEffect(NavigationBar);const VideoFonts=getFonts(Video);const LogoLargeFonts=getFonts(LogoLarge);const ButtonTextFonts=getFonts(ButtonText);const CardFeatureFonts=getFonts(CardFeature);const SectionOurProductsFonts=getFonts(SectionOurProducts);const CardMetricFonts=getFonts(CardMetric);const SectionExploreGenaFonts=getFonts(SectionExploreGena);const SectionNewsletterFonts=getFonts(SectionNewsletter);const SectionFooterFonts=getFonts(SectionFooter);const breakpoints={I8J59a3vs:\"(max-width: 809px)\",TrtpmCoFQ:\"(min-width: 810px) and (max-width: 1199px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-g1Vrp\";const variantClassNames={I8J59a3vs:\"framer-v-1086k7f\",TrtpmCoFQ:\"framer-v-z5t6k\",WQLkyLRf1:\"framer-v-72rtr7\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Tablet 2\":\"TrtpmCoFQ\",Desktop:\"WQLkyLRf1\",Phone:\"I8J59a3vs\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const elementId=useRouteElementId(\"I_0o28ZFp\");const router=useRouter();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-0225801f-b707-4c67-8ecc-b06b0cc9627c, rgb(16, 15, 46)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-nreg8l-container\",layoutScroll:true,nodeId:\"Oa60zmDGt\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I8J59a3vs:{__framer__targets:[{ref:ref1,target:\"jqYKSsSIJ\"}],style:{height:\"100%\",width:\"100%\"},variant:\"NzF2b4xUU\"},TrtpmCoFQ:{__framer__targets:[{ref:ref1,target:\"jqYKSsSIJ\"}],variant:\"NzF2b4xUU\"}},children:/*#__PURE__*/_jsx(NavigationBarWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref1,target:\"jtaZ9iDrz\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"Oa60zmDGt\",layoutId:\"Oa60zmDGt\",style:{width:\"100%\"},variant:\"Msbq58XhT\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1g2vjpu\",\"data-framer-name\":\"Hero\",children:/*#__PURE__*/_jsxs(\"div\",{background:{alt:\"\",fit:\"fill\"},className:\"framer-tymfzk\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1sf2pfq-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"N_FQ_2VJ4\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"N_FQ_2VJ4\",isMixedBorderRadius:false,layoutId:\"N_FQ_2VJ4\",loop:true,muted:true,objectFit:\"cover\",playing:true,poster:\"https://framerusercontent.com/images/QlJgZeo68e8hlYJxC5EErbJ7WI4.jpg\",posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/fURjjMhptZBo1YgIDPynDHBMO4I.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%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1aj6wqq\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:86,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uq96yl-container\",nodeId:\"o3U4OT471\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I8J59a3vs:{variant:\"Mf65_RSlv\"}},children:/*#__PURE__*/_jsx(LogoLarge,{height:\"100%\",id:\"o3U4OT471\",layoutId:\"o3U4OT471\",variant:\"ZQqrUOw_A\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1eagi2w\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I8J59a3vs:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-1essonr\",\"data-styles-preset\":\"XYD6iCLRe\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-99eef9d1-6dfd-4c7f-80e8-1204a58d8b6a, rgb(255, 255, 255))\"},children:\"Pioneering AI-Powered, DNA-Informed\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-99eef9d1-6dfd-4c7f-80e8-1204a58d8b6a, rgb(255, 255, 255))\"},children:\"Healthcare Innovation\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-y54y9c\",\"data-styles-preset\":\"Yip__pnRU\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-99eef9d1-6dfd-4c7f-80e8-1204a58d8b6a, rgb(255, 255, 255))\"},children:\"Pioneering AI-Powered, DNA-Informed\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-99eef9d1-6dfd-4c7f-80e8-1204a58d8b6a, rgb(255, 255, 255))\"},children:\"Healthcare Innovation\"})]})}),className:\"framer-10fk7hr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1c6rvd5\",\"data-styles-preset\":\"ALz2qhywq\",style:{\"--framer-text-color\":\"var(--token-99eef9d1-6dfd-4c7f-80e8-1204a58d8b6a, rgb(255, 255, 255))\"},children:\"At GENA, we are pioneering AI-powered, DNA-informed healthcare innovation. On average, it takes five years to diagnose a child with a rare disease\u2014but with GENA, we're changing that. Our platform acts like the mind of a geneticist, plugged in to deliver rapid, accurate insights that reduce diagnosis times from years to minutes through clinical decision support, testing recommendations, analysis, and billing support.\"})}),className:\"framer-1vsn7g1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sv0es4\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Av0GOzPnc\"},implicitPathVariables:undefined},{href:{webPageId:\"Av0GOzPnc\"},implicitPathVariables:undefined},{href:{webPageId:\"Av0GOzPnc\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(Container,{className:\"framer-a7hfft-container\",nodeId:\"YR2tYAYKd\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I8J59a3vs:{OJfmEXFDG:resolvedLinks[1]},TrtpmCoFQ:{OJfmEXFDG:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(ButtonText,{cbIULd6iG:\"var(--token-99eef9d1-6dfd-4c7f-80e8-1204a58d8b6a, rgb(255, 255, 255))\",height:\"100%\",id:\"YR2tYAYKd\",IsTxbnkbM:\"rgb(16, 15, 46)\",layoutId:\"YR2tYAYKd\",OJfmEXFDG:resolvedLinks[0],OsbmLY4SK:\"Book a Demo\",variant:\"ybK9IYGyg\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ydXLNGd5Q\"},implicitPathVariables:undefined},{href:{webPageId:\"ydXLNGd5Q\"},implicitPathVariables:undefined},{href:{webPageId:\"ydXLNGd5Q\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1blfub9-container\",nodeId:\"lT8UsS2Rb\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I8J59a3vs:{OJfmEXFDG:resolvedLinks1[1]},TrtpmCoFQ:{OJfmEXFDG:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(ButtonText,{cbIULd6iG:\"var(--token-99eef9d1-6dfd-4c7f-80e8-1204a58d8b6a, rgb(255, 255, 255))\",height:\"100%\",id:\"lT8UsS2Rb\",IsTxbnkbM:\"rgb(16, 15, 46)\",layoutId:\"lT8UsS2Rb\",OJfmEXFDG:resolvedLinks1[0],OsbmLY4SK:\"Learn More\",variant:\"MCNTLbhEd\",width:\"100%\"})})})})})]})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1i4cg92\",\"data-framer-name\":\"Discover GENA\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-avkzfo\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1j9ykm3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1essonr\",\"data-styles-preset\":\"XYD6iCLRe\",children:\"Discover GENA\u2019s Capabilities and Products\"})}),className:\"framer-1xsej3r\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1c6rvd5\",\"data-styles-preset\":\"ALz2qhywq\",children:\"The GENA Platform leverages advanced Artificial Intelligence (AI) and Generative AI to offer innovative solutions for healthcare providers, geneticists and companies. Our AI-powered tools provide the insights needed to drive better decision-making, faster diagnosis, and more efficient workflows.\"})}),className:\"framer-1czzvq4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I8J59a3vs:{background:{alt:\"\",fit:\"fill\",pixelHeight:3072,pixelWidth:4608,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1040px), 288px)`,src:\"https://framerusercontent.com/images/C1FePse232LtEdHtlqlN9ywGvmI.jpg\",srcSet:\"https://framerusercontent.com/images/C1FePse232LtEdHtlqlN9ywGvmI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/C1FePse232LtEdHtlqlN9ywGvmI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/C1FePse232LtEdHtlqlN9ywGvmI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/C1FePse232LtEdHtlqlN9ywGvmI.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/C1FePse232LtEdHtlqlN9ywGvmI.jpg 4608w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3072,pixelWidth:4608,sizes:`max(min(max(${componentViewport?.width||\"100vw\"} - 160px, 1px), 1040px), 288px)`,src:\"https://framerusercontent.com/images/C1FePse232LtEdHtlqlN9ywGvmI.jpg\",srcSet:\"https://framerusercontent.com/images/C1FePse232LtEdHtlqlN9ywGvmI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/C1FePse232LtEdHtlqlN9ywGvmI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/C1FePse232LtEdHtlqlN9ywGvmI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/C1FePse232LtEdHtlqlN9ywGvmI.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/C1FePse232LtEdHtlqlN9ywGvmI.jpg 4608w\"},className:\"framer-k2pdnh\",\"data-border\":true,\"data-framer-name\":\"Image\"})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1iwq20w\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o13awc\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-13nyols\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-y54y9c\",\"data-styles-preset\":\"Yip__pnRU\",children:\"Core Services\"})}),className:\"framer-i588j1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16ul9hl\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I8J59a3vs:{width:`max(min(max(min(${componentViewport?.width||\"100vw\"} - 48px, 1040px), 280px), 1040px), 280px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:345,width:`max(min(max(min(${componentViewport?.width||\"100vw\"} - 160px, 1040px), 280px), 1040px), 280px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mq6bme-container\",nodeId:\"VDwth_ieg\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CardFeature,{GPiRJM6Na:\"Title\",height:\"100%\",id:\"VDwth_ieg\",layoutId:\"VDwth_ieg\",style:{width:\"100%\"},Utgl5QzUJ:'<svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 32 32\" id=\"Coins-Stack--Streamline-Flex-Remix\" height=\"32\" width=\"32\"><desc>Coins Stack Streamline Icon: https://streamlinehq.com</desc><g id=\"coins-stack--accounting-billing-payment-stack-cash-coins-currency-money-finance\"><path id=\"Union\" fill=\"#000000\" fill-rule=\"evenodd\" d=\"M3.2125257142857144 1.2534902857142856C1.4475657142857143 2.1248777142857143 0.24282971428571426 3.5585371428571424 0.17913942857142856 5.517828571428571 0.062331199999999996 7.2334628571428565 0.0001463606857142857 9.390171428571428 0.0001463606857142857 11.088297142857144c0 0.23405714285714285 0.0016639547428571428 0.46754285714285715 0.004838896457142857 0.7003657142857143 -0.007829737142857143 0.09327999999999999 -0.006549609142857142 0.1887085714285714 0.004641759999999999 0.2852571428571428 0.039794925714285716 2.1081142857142856 0.19888635428571427 4.16144 0.36293983999999996 6.122468571428572C0.6104388571428571 21.039794285714283 2.800342857142857 23.39748571428571 5.6381942857142855 23.809371428571428c1.138102857142857 0.16525714285714285 2.3351542857142857 0.31359999999999993 3.5692571428571425 0.3693714285714285 -0.06831999999999999 -0.9330285714285714 -0.1282742857142857 -1.89248 -0.16825142857142855 -2.8695771428571426 -0.9912685714285714 -0.05819428571428571 -1.9847314285714284 -0.18128 -2.9906514285714287 -0.3272685714285714 -1.5079771428571427 -0.2188342857142857 -2.7005714285714286 -1.491062857142857 -2.8287771428571427 -3.023702857142857 -0.04779428571428571 -0.5711085714285714 -0.09453714285714285 -1.1435885714285714 -0.13773714285714286 -1.7177371428571429 1.0436114285714284 0.5768914285714285 2.2550857142857144 0.9330057142857142 3.479657142857143 1.0272 0.7957485714285714 0.06121142857142857 1.6101485714285713 0.11184 2.43904 0.13842285714285715 0.016159999999999997 -0.9324571428571428 0.04674285714285714 -1.9181257142857142 0.09113142857142857 -2.85568 -0.7721142857142856 -0.02477714285714286 -1.5419657142857144 -0.07232 -2.3110628571428573 -0.1314742857142857 -2.3241142857142854 -0.17876571428571428 -3.7100342857142854 -1.49648 -3.917645714285714 -2.5785371428571424 -0.00384 -0.2502628571428571 -0.005874285714285714 -0.5009371428571429 -0.005874285714285714 -0.7520914285714285 0 -0.8680228571428571 0.01689142857142857 -1.8586742857142855 0.049165714285714285 -2.8410742857142854 1.3817828571428572 1.0848457142857142 3.830925714285714 1.6735999999999998 7.188662857142856 1.6878171428571427 0.8296228571428571 -1.4367085714285714 2.12688 -2.4925714285714284 3.5380342857142857 -3.18928 1.87552 -0.9259885714285714 4.167222857142857 -1.3616 6.62224 -1.4827885714285713l-0.007657142857142857 -0.09846857142857142c-0.007428571428571428 -0.09424 -0.02384 -0.18562285714285714 -0.04834285714285714 -0.27337142857142854C19.92576 3.250308571428571 18.798582857142858 2.029142857142857 17.227542857142854 1.2534902857142856 15.47926857142857 0.390336 13.072342857142857 0 10.220022857142856 0 7.367725714285714 0 4.9608 0.390336 3.2125257142857144 1.2534902857142856ZM31.758399999999998 12.688571428571427c0.024457142857142854 0.08774857142857143 0.04091428571428571 0.17913142857142855 0.048228571428571426 0.27337142857142854 0.15337142857142858 1.9442971428571427 0.1936 3.933965714285714 0.1936 5.923794285714285 0 0.23405714285714285 -0.0018285714285714285 0.46754285714285715 -0.0048 0.7003657142857143 0.007771428571428571 0.09327999999999999 0.0063999999999999994 0.1887085714285714 -0.0048 0.2852342857142857 -0.03977142857142857 2.1081142857142856 -0.19885714285714284 4.161348571428571 -0.36297142857142856 6.122491428571427 -0.23771428571428568 2.8434285714285714 -2.427657142857143 5.201142857142857 -5.2656 5.613028571428572 -1.447085714285714 0.21005714285714283 -2.9894857142857143 0.39291428571428566 -4.5824 0.39291428571428566 -1.5927999999999998 0 -3.135268571428571 -0.18285714285714286 -4.582445714285714 -0.39291428571428566 -2.837874285714286 -0.41188571428571424 -5.027771428571429 -2.7696 -5.265645714285714 -5.613028571428572 -0.16404571428571427 -1.961142857142857 -0.32313142857142857 -4.014377142857143 -0.3629257142857143 -6.122468571428572 -0.011199999999999998 -0.09654857142857143 -0.012479999999999998 -0.19197714285714285 -0.00464 -0.28528 -0.0031771428571428567 -0.23282285714285714 -0.004845714285714286 -0.46628571428571425 -0.004845714285714286 -0.7003428571428572 0 -1.6981257142857142 0.062171428571428565 -3.854857142857143 0.17899428571428572 -5.570491428571429 0.06368 -1.9592685714285714 1.2684342857142856 -3.392937142857143 3.0333714285714284 -4.26432 1.7482742857142857 -0.8631542857142858 4.1552 -1.2534857142857143 7.0075199999999995 -1.2534857142857143 2.8522742857142855 0 5.259131428571429 0.39033142857142855 7.007474285714285 1.2534857142857143 1.5709714285714285 0.7756571428571428 2.6982857142857144 1.996822857142857 2.971885714285714 3.637645714285714ZM14.416297142857141 18.885737142857142c0 -0.8680228571428571 0.01689142857142857 -1.8586742857142855 0.049142857142857134 -2.8410971428571425 1.3988800000000001 1.098262857142857 3.8916571428571425 1.6880914285714284 7.313599999999999 1.6880914285714284 3.4330742857142855 0 5.930902857142857 -0.5936685714285714 7.327245714285714 -1.6988571428571426 0.027200000000000002 0.9367542857142858 0.0368 1.888022857142857 0.0368 2.851862857142857 0 0.2511542857142857 -0.0020571428571428568 0.5018285714285714 -0.005942857142857142 0.7520685714285713 -0.20754285714285714 1.08208 -1.5936 2.3997942857142855 -3.9177142857142853 2.57856 -1.1433142857142855 0.08793142857142856 -2.2882285714285717 0.15019428571428572 -3.439771428571428 0.15019428571428572 -1.1516114285714285 0 -2.296548571428571 -0.06226285714285714 -3.4398400000000002 -0.15019428571428572 -2.324137142857143 -0.17876571428571428 -3.710057142857143 -1.49648 -3.917645714285714 -2.5785371428571424 -0.0038628571428571427 -0.2502628571428571 -0.005874285714285714 -0.5009371428571429 -0.005874285714285714 -0.7520914285714285Zm14.501874285714285 5.1522057142857145c-1.0434285714285714 0.5769142857142857 -2.2550857142857144 0.9330285714285714 -3.479542857142857 1.0272 -1.183085714285714 0.09097142857142856 -2.407085714285714 0.15862857142857142 -3.6589714285714283 0.15862857142857142 -1.2518171428571427 0 -2.475977142857143 -0.06765714285714286 -3.6589714285714283 -0.15862857142857142 -1.2245714285714284 -0.09417142857142857 -2.4360457142857146 -0.4502857142857143 -3.479657142857143 -1.0272 0.043199999999999995 0.5741714285714284 0.08996571428571427 1.1465142857142858 0.13773714285714286 1.7177142857142855 0.12822857142857141 1.5325714285714285 1.3208 2.8048 2.8287771428571427 3.023771428571428 1.4057142857142857 0.20388571428571428 2.787085714285714 0.3632 4.172114285714286 0.3632 1.385142857142857 0 2.7663999999999995 -0.1593142857142857 4.172114285714286 -0.3632 1.507885714285714 -0.21897142857142854 2.7005714285714286 -1.4911999999999999 2.8287999999999998 -3.023771428571428 0.04777142857142856 -0.5712 0.0944 -1.143542857142857 0.13759999999999997 -1.7177142857142855Z\" clip-rule=\"evenodd\" stroke-width=\"1\"></path></g></svg>',variant:\"cdHmkEBby\",width:\"100%\",XjxaS3Q9q:\"Scalable data models for personalized healthcare insights\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I8J59a3vs:{width:`max(min(max(min(${componentViewport?.width||\"100vw\"} - 48px, 1040px), 280px), 1040px), 280px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:`max(min(max(min(${componentViewport?.width||\"100vw\"} - 160px, 1040px), 280px), 1040px), 280px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-18xb0cl-container\",nodeId:\"kb7h5frOj\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CardFeature,{GPiRJM6Na:\"Title\",height:\"100%\",id:\"kb7h5frOj\",layoutId:\"kb7h5frOj\",style:{height:\"100%\",width:\"100%\"},Utgl5QzUJ:'<svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 32 32\" id=\"Heart-Rate-Search--Streamline-Flex-Remix\" height=\"32\" width=\"32\"><desc>Heart Rate Search Streamline Icon: https://streamlinehq.com</desc><g id=\"heart-rate-search--health-medical-monitor-heart-rate-search\"><path id=\"Union\" fill=\"#000000\" fill-rule=\"evenodd\" d=\"M3.966514285714285 10.355931428571427c0.7295085714285714 -2.366011428571429 2.0460342857142857 -4.133782857142857 3.877462857142857 -5.3268571428571425 1.8479085714285712 -1.20384 4.319954285714285 -1.8862171428571426 7.443634285714285 -1.8862171428571426 4.025554285714286 0 6.969028571428571 1.1297599999999999 8.907817142857143 3.0720685714285714 1.9389714285714286 1.9426971428571427 3.0674285714285716 4.893005714285715 3.0674285714285716 8.92790857142857 0 4.034902857142857 -1.1284571428571428 6.985211428571428 -3.0674285714285716 8.927794285714285 -1.9387885714285713 1.9424 -4.882262857142857 3.0722285714285715 -8.907817142857143 3.0722285714285715 -2.9541714285714287 0 -5.325965714285714 -0.6105142857142857 -7.136754285714285 -1.6946285714285712 -1.795062857142857 -1.0745142857142858 -3.1177371428571425 -2.660045714285714 -3.924754285714285 -4.765668571428571 -0.2823771428571428 -0.7367085714285714 -1.108502857142857 -1.1050285714285712 -1.8452114285714285 -0.8226742857142857 -0.7367268571428571 0.2823771428571428 -1.1050537142857142 1.108502857142857 -0.822688 1.8452114285714285C2.582102857142857 24.376685714285713 4.311337142857142 26.479771428571425 6.68336 27.89965714285714c2.3562742857142855 1.4105142857142856 5.266742857142856 2.100342857142857 8.604251428571429 2.100342857142857 3.9639542857142853 0 7.325691428571428 -0.976 9.857302857142857 -2.959771428571428l4.246857142857142 4.254628571428571c0.5574857142857143 0.5583999999999999 1.461942857142857 0.5593142857142857 2.020342857142857 0.0018285714285714285 0.5583999999999999 -0.5572571428571428 0.5593142857142857 -1.4617142857142855 0.0018285714285714285 -2.0201142857142855l-4.250285714285714 -4.258057142857143c1.981942857142857 -2.536068571428571 2.9563428571428574 -5.904114285714286 2.9563428571428574 -9.875680000000001 0 -4.5593828571428565 -1.284342857142857 -8.323337142857142 -3.9024 -10.946354285714285C23.598857142857142 1.5730857142857142 19.840525714285715 0.2857142857142857 15.287611428571427 0.2857142857142857c-3.528777142857143 0 -6.580708571428571 0.771248 -9.0032 2.3493942857142858C3.8453942857142858 4.224 2.1450194285714286 6.566605714285714 1.2362011428571429 9.51408c-0.23247085714285715 0.753942857142857 0.190272 1.5535999999999999 0.944224 1.7860800000000001 0.753952 0.23245714285714283 1.5536091428571428 -0.19028571428571428 1.7860891428571428 -0.9442285714285714Zm6.2217142857142855 -0.8304914285714285c0.59504 0.03597714285714285 1.1286857142857143 0.37849142857142853 1.4091885714285712 0.9045028571428572L14.448685714285713 15.776594285714285l1.5223085714285713 -2.174925714285714c0.3207771428571428 -0.4583085714285714 0.8450057142857142 -0.7312685714285714 1.4044342857142855 -0.7312685714285714h3.124548571428571c0.9467885714285713 0 1.7142857142857142 0.7675199999999999 1.7142857142857142 1.7142857142857142s-0.7674971428571429 1.7142857142857142 -1.7142857142857142 1.7142857142857142h-2.2319314285714285L15.655314285714285 20.031794285714284c-0.34182857142857137 0.4883885714285714 -0.9128457142857143 0.7641142857142856 -1.507885714285714 0.72816 -0.5950628571428571 -0.03597714285714285 -1.1286857142857143 -0.37849142857142853 -1.4091885714285712 -0.9045028571428572L9.886971428571428 14.508799999999999l-1.5223085714285713 2.174925714285714c-0.3207771428571428 0.4583085714285714 -0.8450057142857142 0.7312685714285714 -1.4044342857142855 0.7312685714285714H1.8828114285714284c-0.9467725714285714 0 -1.7142845714285715 -0.7675199999999999 -1.7142845714285715 -1.7142857142857142s0.767512 -1.7142857142857142 1.7142845714285715 -1.7142857142857142h4.1848l2.6127314285714287 -3.732822857142857c0.34182857142857137 -0.4883885714285714 0.9128457142857143 -0.7641371428571428 1.507885714285714 -0.72816Z\" clip-rule=\"evenodd\" stroke-width=\"1\"></path></g></svg>',variant:\"cdHmkEBby\",width:\"100%\",XjxaS3Q9q:\"Pre-diagnosis tools & insurance support systems\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bc45lu\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I8J59a3vs:{width:`max(min(max(min(${componentViewport?.width||\"100vw\"} - 48px, 1040px), 280px), 1040px), 280px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:`max(min(max(min(${componentViewport?.width||\"100vw\"} - 160px, 1040px), 280px), 1040px), 280px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-pfg67b-container\",nodeId:\"My3CJKma8\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CardFeature,{GPiRJM6Na:\"Title\",height:\"100%\",id:\"My3CJKma8\",layoutId:\"My3CJKma8\",style:{height:\"100%\",width:\"100%\"},Utgl5QzUJ:'<svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 32 32\" id=\"Dashboard-4--Streamline-Flex-Remix\" height=\"32\" width=\"32\"><desc>Dashboard 4 Streamline Icon: https://streamlinehq.com</desc><g id=\"dashboard-4--app-application-dashboard-home-layout-horizontal\"><path id=\"Union\" fill=\"#000000\" fill-rule=\"evenodd\" d=\"M3.771177142857143 27.474742857142857C3.5848685714285713 26.388799999999996 3.4285714285714284 25.376685714285713 3.4285714285714284 24.366628571428567c0 -1.0100571428571428 0.15629714285714283 -2.0221942857142854 0.34260571428571424 -3.1081371428571427 0.07485714285714286 -0.4363885714285714 0.4456 -0.7702171428571428 0.8741028571428571 -0.8023771428571429l0.30944 -0.023268571428571427c1.7976685714285712 -0.13533714285714285 3.6000457142857143 -0.27101714285714285 5.442582857142857 -0.27101714285714285 1.8425142857142858 0 3.6448914285714284 0.13568 5.442582857142857 0.27101714285714285l0.30944 0.023268571428571427c0.42847999999999997 0.032159999999999994 0.7992228571428571 0.36598857142857144 0.87408 0.8023771428571429 0.1863085714285714 1.085942857142857 0.34260571428571424 2.09808 0.34260571428571424 3.1081371428571427 0 1.0100571428571428 -0.15629714285714283 2.0221714285714287 -0.34260571428571424 3.108114285714285 -0.07485714285714286 0.4363428571428571 -0.4456 0.7702857142857142 -0.87408 0.8022857142857142l-0.30946285714285715 0.023314285714285714 -0.00004571428571428572 0 -0.00002285714285714286 0 -0.00002285714285714286 0 -0.00002285714285714286 0 -0.00004571428571428572 0c-1.7976228571428572 0.13531428571428572 -3.5999314285714283 0.27108571428571426 -5.4424 0.27108571428571426 -1.8424914285714284 0 -3.644822857142857 -0.13577142857142857 -5.442422857142858 -0.27108571428571426l-0.00004571428571428572 0 -0.00002285714285714286 0 -0.00002285714285714286 0 -0.00002285714285714286 0 -0.00004571428571428572 0 -0.30944 -0.023314285714285714c-0.42850285714285713 -0.032 -0.7992457142857142 -0.3659428571428571 -0.8741028571428571 -0.8022857142857142ZM0.5714285714285714 24.366628571428567c0 1.2790857142857142 0.19763199999999997 2.5062857142857142 0.38373942857142856 3.5913142857142852 0.29435885714285714 1.7156571428571428 1.7272777142857143 3.0370285714285714 3.476329142857143 3.1682285714285716l0.3335542857142857 0.02514285714285714 0.00004571428571428572 0 0.00004571428571428572 0c1.7765028571428572 0.13394285714285714 3.678331428571428 0.27725714285714287 5.63216 0.27725714285714287 1.9538057142857144 0 3.8556342857142853 -0.14331428571428573 5.632137142857142 -0.27725714285714287l0.00004571428571428572 0 0.00004571428571428572 0 0.3335542857142857 -0.02514285714285714c1.7490514285714283 -0.13119999999999998 3.181965714285714 -1.4525714285714284 3.476342857142857 -3.1682285714285716 0.18610285714285715 -1.0850285714285715 0.3837257142857143 -2.3122285714285713 0.3837257142857143 -3.5913142857142852 0 -1.2790857142857142 -0.19762285714285713 -2.506377142857143 -0.3837257142857143 -3.591245714285714 -0.29437714285714284 -1.715862857142857 -1.7272914285714285 -3.037165714285714 -3.476342857142857 -3.1684114285714284l-0.33359999999999995 -0.025097142857142856c-1.7765028571428572 -0.1338742857142857 -3.6783542857142857 -0.2771885714285714 -5.632182857142857 -0.2771885714285714s-3.855702857142857 0.14331428571428573 -5.632205714285714 0.2771885714285714l-0.33359999999999995 0.025097142857142856c-1.7490514285714283 0.13124571428571427 -3.1819702857142858 1.4525485714285713 -3.476329142857143 3.1684114285714284C0.7690605714285713 21.860251428571427 0.5714285714285714 23.087542857142854 0.5714285714285714 24.366628571428567Zm14.40509714285714 -13.625119999999999c-0.18628571428571428 -1.0859657142857142 -0.34260571428571424 -2.0980114285714286 -0.34260571428571424 -3.10816 0 -1.0101257142857143 0.15632000000000001 -2.0221714285714287 0.34260571428571424 -3.108114285714285 0.07485714285714286 -0.4363885714285714 0.4456 -0.7702171428571428 0.8741028571428571 -0.8023771428571429l0.30944 -0.023268571428571427C17.95773714285714 3.5642514285714286 19.760114285714284 3.4285714285714284 21.602651428571427 3.4285714285714284c1.8426057142857142 0 3.6448914285714284 0.13568 5.442605714285714 0.27101714285714285l0.30948571428571425 0.023268571428571427c0.42834285714285714 0.032159999999999994 0.7990857142857143 0.36598857142857144 0.8740571428571429 0.8023771428571429 0.18628571428571428 1.085942857142857 0.34262857142857145 2.097988571428571 0.34262857142857145 3.108114285714285 0 1.0101485714285714 -0.15634285714285714 2.0221942857142854 -0.34262857142857145 3.10816 -0.07497142857142858 0.43636571428571425 -0.44571428571428573 0.7701942857142856 -0.8740571428571429 0.8023542857142857l-0.30948571428571425 0.023268571428571427c-1.7977142857142856 0.13533714285714285 -3.5999999999999996 0.27101714285714285 -5.442605714285714 0.27101714285714285 -1.8425142857142858 0 -3.6448685714285713 -0.13568 -5.442537142857143 -0.27101714285714285l-0.00002285714285714286 0 -0.30946285714285715 -0.023268571428571427c-0.42850285714285713 -0.032159999999999994 -0.7992457142857142 -0.36598857142857144 -0.8741028571428571 -0.8023542857142857ZM11.776777142857142 7.633348571428571c0 1.279062857142857 0.19764571428571429 2.506377142857143 0.38374857142857144 3.591245714285714 0.29435428571428573 1.715862857142857 1.7272685714285714 3.037165714285714 3.476342857142857 3.1684114285714284l0.3335542857142857 0.025097142857142856c1.7765028571428572 0.1338742857142857 3.678377142857143 0.2771885714285714 5.632228571428572 0.2771885714285714 1.95392 0 3.8556342857142853 -0.14331428571428573 5.63232 -0.2771885714285714l0.3334857142857143 -0.025097142857142856c1.7490285714285714 -0.13124571428571427 3.1819428571428565 -1.4525485714285713 3.476342857142857 -3.1684114285714284 0.18605714285714284 -1.0848685714285713 0.38377142857142854 -2.3121828571428567 0.38377142857142854 -3.591245714285714 0 -1.27904 -0.19771428571428568 -2.5063542857142855 -0.38377142857142854 -3.591222857142857 -0.2944 -1.715862857142857 -1.7273142857142858 -3.037174857142857 -3.476342857142857 -3.1684022857142855l-0.3337142857142857 -0.025101714285714286 0 -0.00000457142857142857C25.45828571428571 0.7147451428571429 23.556571428571424 0.5714285714285714 21.602651428571427 0.5714285714285714c-1.9538057142857144 0 -3.8556571428571424 0.14331657142857143 -5.63216 0.2771908571428571l-0.00002285714285714286 0.00000228571428571429 -0.33359999999999995 0.025101714285714286c-1.7490742857142856 0.13122742857142855 -3.181988571428571 1.4525394285714284 -3.476342857142857 3.1684022857142855 -0.18610285714285715 1.0848685714285713 -0.38374857142857144 2.3121828571428567 -0.38374857142857144 3.591222857142857ZM0.7041302857142857 11.092822857142856C0.6376594285714285 10.000342857142856 0.5714285714285714 8.834034285714285 0.5714285714285714 7.633348571428571c0 -1.2006628571428573 0.06623085714285713 -2.3669714285714285 0.13270171428571428 -3.459451428571428C0.8052639999999999 2.5117028571428572 2.0198125714285715 0.9386582857142857 3.821462857142857 0.6654331428571428 4.178148571428571 0.6113394285714285 4.566148571428571 0.5714285714285714 4.974994285714285 0.5714285714285714c0.40884571428571426 0 0.796822857142857 0.039910857142857144 1.1535314285714284 0.09400457142857141 1.801622857142857 0.27322514285714283 3.016182857142857 1.846269714285714 3.1173257142857143 3.508464 0.06646857142857143 1.09248 0.13268571428571427 2.258788571428571 0.13268571428571427 3.459451428571428 0 1.2006857142857141 -0.06621714285714285 2.3669942857142856 -0.13268571428571427 3.4594742857142853 -0.10114285714285713 1.6621942857142857 -1.315702857142857 3.235245714285714 -3.1173257142857143 3.508457142857143 -0.35670857142857143 0.05410285714285714 -0.7446857142857142 0.09401142857142857 -1.1535314285714284 0.09401142857142857 -0.40884571428571426 0 -0.7968457142857142 -0.039908571428571425 -1.1535314285714284 -0.09401142857142857C2.019814857142857 14.32806857142857 0.8052662857142857 12.755017142857143 0.7041302857142857 11.092822857142856ZM22.621645714285712 24.366628571428567c0 1.2006857142857141 0.06624 2.366857142857143 0.13270857142857143 3.4594285714285715 0.10114285714285713 1.6621714285714284 1.3155885714285713 3.2352 3.1174171428571427 3.508571428571428 0.35657142857142854 0.05394285714285714 0.7446857142857142 0.09394285714285713 1.1533714285714287 0.09394285714285713 0.4089142857142857 0 0.7968 -0.04 1.1536 -0.09394285714285713 1.8015999999999999 -0.27337142857142854 3.0162285714285715 -1.8463999999999998 3.1172571428571425 -3.508571428571428 0.0665142857142857 -1.0925714285714285 0.1328 -2.258742857142857 0.1328 -3.4594285714285715 0 -1.2006857142857141 -0.06628571428571428 -2.3669942857142856 -0.1328 -3.4594742857142853 -0.10102857142857143 -1.6621942857142857 -1.3156571428571429 -3.235245714285714 -3.1172571428571425 -3.508457142857143 -0.35679999999999995 -0.05410285714285714 -0.7446857142857142 -0.09401142857142857 -1.1536 -0.09401142857142857 -0.4086857142857142 0 -0.7968 0.039908571428571425 -1.1533714285714287 0.09401142857142857 -1.8018285714285713 0.27321142857142855 -3.0162742857142857 1.846262857142857 -3.1174171428571427 3.508457142857143 -0.06646857142857143 1.09248 -0.13270857142857143 2.258788571428571 -0.13270857142857143 3.4594742857142853Z\" clip-rule=\"evenodd\" stroke-width=\"1\"></path></g></svg>',variant:\"cdHmkEBby\",width:\"100%\",XjxaS3Q9q:\"Situational dashboards\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I8J59a3vs:{width:`max(min(max(min(${componentViewport?.width||\"100vw\"} - 48px, 1040px), 280px), 1040px), 280px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:345,width:`max(min(max(min(${componentViewport?.width||\"100vw\"} - 160px, 1040px), 280px), 1040px), 280px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kdu8ug-container\",nodeId:\"fJPTzHUxj\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CardFeature,{GPiRJM6Na:\"Title\",height:\"100%\",id:\"fJPTzHUxj\",layoutId:\"fJPTzHUxj\",style:{width:\"100%\"},Utgl5QzUJ:'<svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 32 32\" id=\"File-Report--Streamline-Flex-Remix\" height=\"32\" width=\"32\"><desc>File Report Streamline Icon: https://streamlinehq.com</desc><g id=\"file-report\"><path id=\"Union\" fill=\"#000000\" fill-rule=\"evenodd\" d=\"M16 0C12.518285714285714 0 9.730468571428572 0.10870491428571429 6.809577142857142 0.3155108571428571 3.9426514285714283 0.5184982857142857 1.6614674285714284 2.802742857142857 1.4740137142857144 5.678148571428571 1.2570125714285714 9.00678857142857 1.1428571428571428 12.459977142857143 1.1428571428571428 16c0 3.5400228571428567 0.11415542857142857 6.993142857142857 0.3311565714285714 10.32182857142857 0.18745599999999998 2.8754285714285714 2.468637714285714 5.159771428571428 5.335563428571429 5.362742857142857C9.730468571428572 31.8912 12.518285714285714 32 16 32s6.269531428571428 -0.10880000000000001 9.1904 -0.31542857142857145c2.8669714285714285 -0.20297142857142858 5.148114285714286 -2.4873142857142856 5.3355428571428565 -5.362742857142857 0.21714285714285714 -3.328685714285714 0.3312 -6.7818057142857135 0.3312 -10.32182857142857 0 -0.9633142857142857 -0.008457142857142858 -1.9201828571428572 -0.02514285714285714 -2.869828571428571 -0.03588571428571428 -2.0429942857142858 -0.6909714285714286 -4.061051428571428 -1.9673142857142856 -5.710742857142857 -1.9229714285714286 -2.4855085714285714 -3.6553142857142853 -4.217508571428571 -6.297005714285714 -6.2343588571428565C21.61005714285714 0.45395657142857143 20.449531428571426 0.06247245714285714 19.26521142857143 0.03548 18.23213714285714 0.011935108571428571 17.15376 0 16 0ZM7.01136 3.1655085714285716C9.865302857142856 2.9634514285714286 12.585851428571427 2.8571428571428568 16 2.8571428571428568c1.1339199999999998 0 2.190514285714286 0.011725714285714285 3.200091428571428 0.03474285714285714 0.5999542857142857 0.013668571428571427 1.1719771428571428 0.21154285714285712 1.633782857142857 0.5641371428571428 2.4465828571428574 1.8679085714285713 4.001554285714286 3.424754285714285 5.771154285714285 5.711794285714285 0.8733714285714285 1.1288228571428571 1.3444571428571426 2.540822857142857 1.3702857142857143 4.012525714285714 0.016457142857142854 0.9329142857142857 0.024685714285714287 1.8730514285714284 0.024685714285714287 2.819657142857143 0 3.478902857142857 -0.11222857142857141 6.870171428571428 -0.3250285714285714 10.136 -0.0944 1.4459428571428572 -1.2404571428571427 2.5961142857142856 -2.6864 2.698514285714286 -2.8538742857142854 0.20205714285714285 -5.574422857142857 0.3083428571428571 -8.988571428571428 0.3083428571428571s-6.1346742857142855 -0.10628571428571428 -8.988617142857143 -0.3083428571428571c-1.4459199999999999 -0.10239999999999999 -2.5919999999999996 -1.2525714285714287 -2.686285714285714 -2.698514285714286C4.1122057142857145 22.870171428571425 4 19.478902857142856 4 16s0.11220571428571428 -6.870102857142856 0.3250971428571428 -10.135977142857143c0.09428571428571428 -1.446057142857143 1.2403657142857143 -2.5961371428571427 2.6862628571428573 -2.698514285714286Zm15.485051428571428 5.1927771428571425c0.11899428571428572 -0.9392685714285715 -0.5459885714285714 -1.7971428571428572 -1.4852571428571428 -1.9161142857142857 -0.9392685714285715 -0.11899428571428572 -1.7971428571428572 0.5459885714285714 -1.9161371428571428 1.4852571428571428 -0.02361142857142857 0.18637714285714285 -0.21652571428571427 1.1771657142857141 -0.6317942857142856 2.0903542857142856 -0.20589714285714283 0.45273142857142856 -0.4247542857142857 0.7922285714285714 -0.6291428571428571 1.0020114285714286 -0.05266285714285714 0.05405714285714286 -0.09792000000000001 0.09334857142857142 -0.13613714285714285 0.12191999999999999 -0.09684571428571427 -0.16367999999999996 -0.21241142857142856 -0.4120457142857143 -0.3898514285714285 -0.8151314285714285l-0.029645714285714286 -0.06749714285714285c-0.19065142857142856 -0.43460571428571426 -0.4919314285714285 -1.1213942857142856 -0.9437942857142857 -1.6628571428571428 -0.57024 -0.68336 -1.471245714285714 -1.2464914285714286 -2.693348571428571 -1.0974857142857142 -1.7464457142857142 0.21295999999999998 -2.7961142857142858 1.557005714285714 -3.3444342857142857 2.480365714285714 -0.5544914285714285 0.9337142857142856 -0.8813942857142857 1.9215771428571429 -1.0202514285714284 2.341142857142857l-0.022354285714285715 0.06745142857142856c-0.2993828571428572 0.8981942857142856 0.18605714285714284 1.8690057142857142 1.0842514285714284 2.1683885714285713 0.8981942857142856 0.29936 1.8690285714285713 -0.18607999999999997 2.1683885714285713 -1.0842742857142857l0.012479999999999998 -0.03741714285714285c0.13954285714285714 -0.4191771428571428 0.3660571428571428 -1.09952 0.72544 -1.7046857142857141 0.24180571428571426 -0.4072 0.4466971428571428 -0.6180114285714285 0.5943314285714285 -0.7247771428571428 0.08114285714285713 0.1488685714285714 0.18372571428571427 0.3685257142857143 0.3309485714285714 0.7029714285714285l0.034422857142857144 0.07846857142857143c0.19028571428571428 0.4341485714285714 0.4858285714285714 1.1084571428571428 0.9199314285714285 1.6498514285714283 0.5367314285714285 0.6693942857142857 1.39728 1.2774400000000001 2.6156342857142856 1.2047771428571428 1.10336 -0.06580571428571429 1.95248 -0.6155428571428571 2.549851428571429 -1.2287542857142855 0.5842971428571428 -0.5997942857142856 1.0000457142857142 -1.3281599999999998 1.294262857142857 -1.9751542857142854 0.5849599999999999 -1.2862628571428572 0.8543771428571428 -2.6223314285714285 0.9122057142857143 -3.0788114285714285Zm-13.457074285714286 10.1664c0 -0.9467657142857143 0.7675199999999999 -1.7142857142857142 1.7142857142857142 -1.7142857142857142h10.49248c0.9467657142857143 0 1.7143542857142855 0.7675199999999999 1.7143542857142855 1.7142857142857142 0 0.9467885714285713 -0.7675885714285714 1.7142857142857142 -1.7143542857142855 1.7142857142857142H10.753622857142858c-0.9467657142857143 0 -1.7142857142857142 -0.7674971428571429 -1.7142857142857142 -1.7142857142857142Zm1.7142857142857142 3.74848c-0.9467657142857143 0 -1.7142857142857142 0.7675199999999999 -1.7142857142857142 1.714262857142857 0 0.9467428571428571 0.7675199999999999 1.7142857142857142 1.7142857142857142 1.7142857142857142h10.49248c0.9467657142857143 0 1.7143542857142855 -0.7675428571428571 1.7143542857142855 -1.7142857142857142s-0.7675885714285714 -1.714262857142857 -1.7143542857142855 -1.714262857142857H10.753622857142858Z\" clip-rule=\"evenodd\" stroke-width=\"1\"></path></g></svg>',variant:\"cdHmkEBby\",width:\"100%\",XjxaS3Q9q:\"AI-generated reports & analytics\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I8J59a3vs:{width:`max(min(max(min(${componentViewport?.width||\"100vw\"} - 48px, 1040px), 280px), 1040px), 280px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:`max(min(max(min(${componentViewport?.width||\"100vw\"} - 160px, 1040px), 280px), 1040px), 280px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-12othk8-container\",nodeId:\"EIMMiS6dl\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CardFeature,{GPiRJM6Na:\"Title\",height:\"100%\",id:\"EIMMiS6dl\",layoutId:\"EIMMiS6dl\",style:{height:\"100%\",width:\"100%\"},Utgl5QzUJ:'<svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 32 32\" id=\"Task-List-Edit--Streamline-Flex-Remix\" height=\"32\" width=\"32\"><desc>Task List Edit Streamline Icon: https://streamlinehq.com</desc><g id=\"task-list-edit--task-list-edit-work\"><path id=\"Union\" fill=\"#000000\" fill-rule=\"evenodd\" d=\"M15.674948571428569 3.598765714285714c-3.060091428571428 0 -5.521897142857143 0.09218285714285714 -8.070285714285713 0.26761142857142856 -1.482422857142857 0.10205714285714286 -2.657485714285714 1.2824685714285715 -2.7504685714285713 2.7657142857142856 -0.18665142857142855 2.9778057142857137 -0.2848685714285714 6.065028571428571 -0.2848685714285714 9.2296 0 3.1645714285714286 0.09821714285714285 6.251794285714285 0.2848685714285714 9.229508571428571 0.09298285714285714 1.4834285714285713 1.2680457142857142 2.6637714285714282 2.7504685714285713 2.7657142857142856 0.5818514285714286 0.040228571428571426 1.1586514285714284 0.07588571428571428 1.7385599999999999 0.10697142857142856 0.7878171428571428 0.042514285714285706 1.3921142857142856 0.7156571428571428 1.3496914285714283 1.5033142857142856 -0.0424 0.7878857142857143 -0.7154514285714285 1.3922285714285714 -1.5032914285714285 1.3497142857142856 -0.5951314285714285 -0.032 -1.1861714285714287 -0.06857142857142856 -1.7811885714285713 -0.10948571428571427 -2.90976 -0.20045714285714283 -5.222980571428572 -2.5209142857142854 -5.405787428571428 -5.437485714285714C1.812208 22.23193142857143 1.712192 19.085074285714285 1.712192 15.861691428571428c0 -3.223382857142857 0.100016 -6.370239999999999 0.2904548571428571 -9.408342857142857C2.185453714285714 3.536982857142857 4.498674285714285 1.2163039999999998 7.408434285714286 1.0159885714285712 10.022971428571427 0.8359931428571428 12.550239999999999 0.7416297142857142 15.674948571428569 0.7416297142857142c1.0310857142857142 0 1.9978285714285713 0.010271999999999998 2.9248 0.03055542857142857 1.20752 0.026422857142857144 2.392571428571429 0.4275908571428571 3.3660342857142855 1.1798788571428571C24.71542857142857 4.076982857142856 26.40342857142857 5.8767314285714285 28.4768 8.705074285714284c0.7026285714285714 0.9583771428571428 1.082742857142857 2.106537142857143 1.1122285714285713 3.279954285714285 0.019885714285714284 0.7887314285714285 -0.6034285714285714 1.444205714285714 -1.392 1.4640685714285715 -0.7888 0.01984 -1.4443428571428572 -0.6034514285714286 -1.4642285714285712 -1.392182857142857 -0.015085714285714286 -0.6056457142857142 -0.21119999999999997 -1.1864 -0.5602285714285714 -1.6626285714285713 -1.9350857142857143 -2.6396342857142856 -3.4406857142857143 -4.239291428571428 -5.9538971428571426 -6.1814857142857145 -0.47277714285714284 -0.3653485714285714 -1.0624914285714284 -0.5706057142857143 -1.681417142857143 -0.58416 -0.90448 -0.019794285714285712 -1.8503314285714285 -0.029874285714285714 -2.862308571428571 -0.029874285714285714Zm13.517965714285713 14.06256c-1.4658285714285713 -1.6815085714285714 -3.9556571428571425 -2.0460342857142857 -5.568 -0.6316799999999999L15.333211428571428 24.303085714285714c-0.07366857142857143 0.06445714285714285 -0.12946285714285713 0.14697142857142856 -0.16198857142857143 0.23954285714285714l-1.5942628571428572 4.534857142857143c-0.20740571428571428 0.5899428571428571 -0.023177142857142854 1.1835428571428572 0.31869714285714285 1.5860571428571426 0.34189714285714284 0.4027428571428571 0.8974399999999999 0.6799999999999999 1.5122514285714286 0.5707428571428571l4.823634285714285 -0.8569142857142857c0.0951542857142857 -0.016914285714285715 0.18448 -0.057828571428571424 0.25952 -0.11885714285714284l8.48448 -6.896228571428571c1.7055999999999998 -1.3863542857142857 1.7172571428571426 -3.980342857142857 0.21737142857142858 -5.700959999999999ZM15.030834285714285 6.3970514285714275c0.4999542857142857 0.6103771428571428 0.4104228571428571 1.5104457142857142 -0.19993142857142857 2.0104 -0.87552 0.7171428571428571 -1.4414857142857143 1.2869714285714287 -1.901942857142857 1.9359085714285715 -0.4645714285714285 0.6547657142857143 -0.8662628571428571 1.4528 -1.338422857142857 2.6775085714285716 -0.17065142857142857 0.44260571428571427 -0.5498514285714285 0.7716342857142857 -1.0120914285714286 0.8781714285714285 -0.46224 0.10653714285714284 -0.9472228571428571 -0.023314285714285714 -1.2943771428571427 -0.3465828571428571l-2.096045714285714 -1.9517485714285714c-0.5774171428571429 -0.5376685714285714 -0.6096228571428571 -1.441622857142857 -0.07197714285714285 -2.019017142857143 0.5376685714285714 -0.5774171428571429 1.441622857142857 -0.6096457142857142 2.01904 -0.07197714285714285l0.6229942857142857 0.5801142857142857c0.2575085714285714 -0.5041371428571428 0.5319771428571428 -0.9646857142857141 0.8407085714285715 -1.3998171428571426 0.6619428571428572 -0.9328914285714285 1.436845714285714 -1.68624 2.421668571428571 -2.4928914285714288 0.6103542857142856 -0.4999314285714285 1.5104457142857142 -0.4104228571428571 2.0103771428571426 0.19993142857142857ZM14.830902857142856 16.96685714285714c0.6103542857142856 -0.4999542857142857 0.6998857142857143 -1.400022857142857 0.19993142857142857 -2.0103771428571426 -0.4999314285714285 -0.6103771428571428 -1.400022857142857 -0.6998857142857143 -2.0103771428571426 -0.1999542857142857 -0.9848228571428571 0.8066514285714286 -1.7597257142857141 1.5599999999999998 -2.421668571428571 2.4928914285714288 -0.30873142857142855 0.43513142857142856 -0.5831999999999999 0.8956799999999999 -0.8407085714285715 1.3998171428571426l-0.6229942857142857 -0.5801142857142857c-0.5774171428571429 -0.5376685714285714 -1.4813714285714286 -0.50544 -2.01904 0.07197714285714285 -0.5376457142857143 0.5774171428571429 -0.50544 1.4813485714285715 0.07197714285714285 2.019017142857143l2.096045714285714 1.9517714285714285c0.3471542857142857 0.32324571428571425 0.8321371428571428 0.4530971428571428 1.2943771428571427 0.34656 0.46224 -0.10653714285714284 0.84144 -0.4355657142857143 1.0120914285714286 -0.8781714285714285 0.47215999999999997 -1.2246857142857144 0.8738514285714285 -2.022742857142857 1.338422857142857 -2.677485714285714 0.4604571428571428 -0.6489371428571428 1.026422857142857 -1.2187885714285713 1.901942857142857 -1.9359314285714284Z\" clip-rule=\"evenodd\" stroke-width=\"1\"></path></g></svg>',variant:\"cdHmkEBby\",width:\"100%\",XjxaS3Q9q:\"Regulatory documentation support\"})})})})]})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1224,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-3eb214-container\",nodeId:\"QW7zrUpfX\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I8J59a3vs:{SbySlLdEg:\"24px\"},TrtpmCoFQ:{SbySlLdEg:\"56px\"}},children:/*#__PURE__*/_jsx(SectionOurProducts,{height:\"100%\",id:\"QW7zrUpfX\",layoutId:\"QW7zrUpfX\",SbySlLdEg:\"80px\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-lxx28o\",\"data-framer-name\":\"Discover GENA\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ivhd47\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I8J59a3vs:{background:{alt:\"\",fit:\"fill\",pixelHeight:4406,pixelWidth:4132,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1040px), 288px)`,src:\"https://framerusercontent.com/images/pUmuoUSO27B7hFYJApoUQxbM.jpg\",srcSet:\"https://framerusercontent.com/images/pUmuoUSO27B7hFYJApoUQxbM.jpg?scale-down-to=1024 960w,https://framerusercontent.com/images/pUmuoUSO27B7hFYJApoUQxbM.jpg?scale-down-to=2048 1920w,https://framerusercontent.com/images/pUmuoUSO27B7hFYJApoUQxbM.jpg?scale-down-to=4096 3841w,https://framerusercontent.com/images/pUmuoUSO27B7hFYJApoUQxbM.jpg 4132w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:4406,pixelWidth:4132,sizes:`max(min(max(${componentViewport?.width||\"100vw\"} - 160px, 1px), 1040px), 288px)`,src:\"https://framerusercontent.com/images/pUmuoUSO27B7hFYJApoUQxbM.jpg\",srcSet:\"https://framerusercontent.com/images/pUmuoUSO27B7hFYJApoUQxbM.jpg?scale-down-to=1024 960w,https://framerusercontent.com/images/pUmuoUSO27B7hFYJApoUQxbM.jpg?scale-down-to=2048 1920w,https://framerusercontent.com/images/pUmuoUSO27B7hFYJApoUQxbM.jpg?scale-down-to=4096 3841w,https://framerusercontent.com/images/pUmuoUSO27B7hFYJApoUQxbM.jpg 4132w\"},className:\"framer-qfmphy\",\"data-border\":true,\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gt6i0\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1essonr\",\"data-styles-preset\":\"XYD6iCLRe\",style:{\"--framer-text-color\":\"var(--token-99eef9d1-6dfd-4c7f-80e8-1204a58d8b6a, rgb(255, 255, 255))\"},children:\"Overview of GENA\u2122\"})}),className:\"framer-117ctj4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1c6rvd5\",\"data-styles-preset\":\"ALz2qhywq\",style:{\"--framer-text-color\":\"var(--token-99eef9d1-6dfd-4c7f-80e8-1204a58d8b6a, rgb(255, 255, 255))\"},children:\"At the core of GENA is the patented AI that allows us to provide actionable insights across genomic data, rare genetic diseases and healthcare data. Our holistic approach integrates data across specialties to offer a complete view of patient health.\"})}),className:\"framer-f8nbmg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1r8blid\",\"data-framer-name\":\"Metrics\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rre8gz\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I8J59a3vs:{height:undefined,width:`max(min(max(min(${componentViewport?.width||\"100vw\"} - 48px, 1040px), 280px), 1040px), 280px)`},TrtpmCoFQ:{height:317,width:`max(min(max(min(max(${componentViewport?.width||\"100vw\"} - 160px, 1px), 1040px), 280px), 1040px), 280px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:753.5,width:\"400px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-ewwh14-container\",nodeId:\"lWzUfrueq\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TrtpmCoFQ:{style:{maxWidth:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(CardMetric,{F67SkL0Ow:\"i5eReYT5J\",height:\"100%\",id:\"lWzUfrueq\",layoutId:\"lWzUfrueq\",QKL4qBnwo:\"var(--token-672a2495-d48e-4a25-8bae-3a311555fa3f, rgb(224, 96, 96))\",qlZhij8Ta:\"95%\",Qr_xdOYeO:\"Decrease in time to diagnose\",style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\",ZQjyavp2D:\"GENA Screen\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sq06h1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I8J59a3vs:{width:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1040px), 280px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:317,width:`max(min(max(${componentViewport?.width||\"100vw\"} - 160px, 1px), 1040px), 280px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-farrpi-container\",nodeId:\"R7WJpFKsh\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CardMetric,{F67SkL0Ow:\"ja7q0DB_Y\",height:\"100%\",id:\"R7WJpFKsh\",layoutId:\"R7WJpFKsh\",QKL4qBnwo:\"var(--token-a6934403-fcdb-4748-8898-aa018524b6c4, rgb(62, 133, 219))\",qlZhij8Ta:\"160K\",Qr_xdOYeO:\"Genetic tests served\",style:{width:\"100%\"},width:\"100%\",ZQjyavp2D:\"GENA Test\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bhz05f\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I8J59a3vs:{width:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1040px), 280px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:`max(min(max(${componentViewport?.width||\"100vw\"} - 160px, 1px), 1040px), 280px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-f8nxbf-container\",nodeId:\"s4pan8aK9\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TrtpmCoFQ:{ZQjyavp2D:\"GENA Analysis\"}},children:/*#__PURE__*/_jsx(CardMetric,{F67SkL0Ow:\"WQcQFwIAk\",height:\"100%\",id:\"s4pan8aK9\",layoutId:\"s4pan8aK9\",QKL4qBnwo:\"var(--token-7c574ca2-f1c6-4a5d-897a-a59181a9ee02, rgb(154, 195, 38))\",qlZhij8Ta:\"150X\",Qr_xdOYeO:\"Faster genetic analysis\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",ZQjyavp2D:\"GENA Map\"})})})})})})]})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1200,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pclmwh-container\",nodeId:\"DevkVflUV\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SectionExploreGena,{height:\"100%\",id:\"DevkVflUV\",layoutId:\"DevkVflUV\",style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:305,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1x5tew1-container\",nodeId:\"WAcEt0UVL\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I8J59a3vs:{DTzRTojy8:\"24px\"}},children:/*#__PURE__*/_jsx(SectionNewsletter,{DTzRTojy8:\"80px\",height:\"100%\",id:\"WAcEt0UVL\",layoutId:\"WAcEt0UVL\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:809,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ydib05-container\",nodeId:\"smZIqXual\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I8J59a3vs:{tTeejp99F:\"40px 24px 24px 24px\"}},children:/*#__PURE__*/_jsx(SectionFooter,{height:\"100%\",id:\"smZIqXual\",layoutId:\"smZIqXual\",style:{width:\"100%\"},tTeejp99F:\"80px\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-g1Vrp.framer-lux5qc, .framer-g1Vrp .framer-lux5qc { display: block; }\",\".framer-g1Vrp.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-0225801f-b707-4c67-8ecc-b06b0cc9627c, #100f2e); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-g1Vrp .framer-nreg8l-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 1; }\",\".framer-g1Vrp .framer-1g2vjpu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-g1Vrp .framer-tymfzk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 200px 80px 80px 80px; position: relative; width: 100%; }\",\".framer-g1Vrp .framer-1sf2pfq-container { bottom: 0px; flex: none; left: 0px; opacity: 0.4; position: absolute; right: 0px; top: 0px; }\",\".framer-g1Vrp .framer-1aj6wqq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1040px; min-width: 280px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-g1Vrp .framer-1uq96yl-container, .framer-g1Vrp .framer-a7hfft-container, .framer-g1Vrp .framer-1blfub9-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-g1Vrp .framer-1eagi2w { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 704px; min-width: 280px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-g1Vrp .framer-10fk7hr { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 703.5px; min-width: 280px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-g1Vrp .framer-1vsn7g1 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 700px; min-width: 280px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-g1Vrp .framer-sv0es4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; max-width: 338px; min-width: 280px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-g1Vrp .framer-1i4cg92, .framer-g1Vrp .framer-1r8blid { align-content: center; align-items: center; background-color: var(--token-99eef9d1-6dfd-4c7f-80e8-1204a58d8b6a, #ffffff); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 80px; position: relative; width: 100%; }\",\".framer-g1Vrp .framer-avkzfo, .framer-g1Vrp .framer-ivhd47 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: wrap; gap: 64px; height: min-content; justify-content: center; max-width: 1040px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-g1Vrp .framer-1j9ykm3, .framer-g1Vrp .framer-gt6i0 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; min-width: 288px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-g1Vrp .framer-1xsej3r, .framer-g1Vrp .framer-1czzvq4, .framer-g1Vrp .framer-i588j1, .framer-g1Vrp .framer-117ctj4, .framer-g1Vrp .framer-f8nbmg { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-g1Vrp .framer-k2pdnh, .framer-g1Vrp .framer-qfmphy { --border-bottom-width: 1px; --border-color: var(--token-e9aa3794-1813-4ab1-8548-86c51f026648, rgba(63, 55, 39, 0.3)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; border-bottom-left-radius: 176px; border-bottom-right-radius: 176px; border-top-left-radius: 176px; border-top-right-radius: 176px; flex: 1 0 0px; height: 400px; min-width: 288px; position: relative; width: 1px; }\",\".framer-g1Vrp .framer-1iwq20w { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 80px; position: relative; width: 100%; }\",\".framer-g1Vrp .framer-o13awc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 16px; height: min-content; justify-content: center; max-width: 1040px; min-width: 280px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-g1Vrp .framer-13nyols { 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; min-width: 280px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-g1Vrp .framer-16ul9hl, .framer-g1Vrp .framer-1bc45lu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 16px; height: min-content; justify-content: center; max-width: 1040px; min-width: 280px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-g1Vrp .framer-1mq6bme-container, .framer-g1Vrp .framer-1kdu8ug-container { flex: 1 0 0px; height: auto; min-width: 280px; position: relative; width: 1px; }\",\".framer-g1Vrp .framer-18xb0cl-container, .framer-g1Vrp .framer-pfg67b-container, .framer-g1Vrp .framer-12othk8-container, .framer-g1Vrp .framer-f8nxbf-container { align-self: stretch; flex: 1 0 0px; height: auto; min-width: 280px; position: relative; width: 1px; }\",\".framer-g1Vrp .framer-3eb214-container, .framer-g1Vrp .framer-1pclmwh-container, .framer-g1Vrp .framer-1x5tew1-container, .framer-g1Vrp .framer-1ydib05-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-g1Vrp .framer-lxx28o { align-content: center; align-items: center; background-color: var(--token-0225801f-b707-4c67-8ecc-b06b0cc9627c, #100f2e); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 80px; position: relative; width: 100%; }\",\".framer-g1Vrp .framer-1rre8gz { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: wrap; gap: 16px; height: 754px; justify-content: center; max-width: 1040px; min-width: 280px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-g1Vrp .framer-ewwh14-container { flex: none; height: 100%; max-width: 1040px; min-width: 280px; position: relative; width: 400px; }\",\".framer-g1Vrp .framer-1sq06h1 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: wrap; gap: 16px; height: min-content; justify-content: center; min-width: 280px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-g1Vrp .framer-farrpi-container { flex: none; height: auto; min-width: 280px; position: relative; width: 100%; }\",\".framer-g1Vrp .framer-1bhz05f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 16px; height: min-content; justify-content: center; min-width: 280px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-g1Vrp.framer-72rtr7, .framer-g1Vrp .framer-1g2vjpu, .framer-g1Vrp .framer-tymfzk, .framer-g1Vrp .framer-1aj6wqq, .framer-g1Vrp .framer-1eagi2w, .framer-g1Vrp .framer-sv0es4, .framer-g1Vrp .framer-1i4cg92, .framer-g1Vrp .framer-avkzfo, .framer-g1Vrp .framer-1j9ykm3, .framer-g1Vrp .framer-1iwq20w, .framer-g1Vrp .framer-o13awc, .framer-g1Vrp .framer-13nyols, .framer-g1Vrp .framer-16ul9hl, .framer-g1Vrp .framer-1bc45lu, .framer-g1Vrp .framer-lxx28o, .framer-g1Vrp .framer-ivhd47, .framer-g1Vrp .framer-gt6i0, .framer-g1Vrp .framer-1r8blid, .framer-g1Vrp .framer-1rre8gz, .framer-g1Vrp .framer-1sq06h1, .framer-g1Vrp .framer-1bhz05f { gap: 0px; } .framer-g1Vrp.framer-72rtr7 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-g1Vrp.framer-72rtr7 > :first-child, .framer-g1Vrp .framer-tymfzk > :first-child, .framer-g1Vrp .framer-1aj6wqq > :first-child, .framer-g1Vrp .framer-1eagi2w > :first-child, .framer-g1Vrp .framer-1j9ykm3 > :first-child, .framer-g1Vrp .framer-1iwq20w > :first-child, .framer-g1Vrp .framer-o13awc > :first-child, .framer-g1Vrp .framer-13nyols > :first-child, .framer-g1Vrp .framer-gt6i0 > :first-child, .framer-g1Vrp .framer-1sq06h1 > :first-child { margin-top: 0px; } .framer-g1Vrp.framer-72rtr7 > :last-child, .framer-g1Vrp .framer-tymfzk > :last-child, .framer-g1Vrp .framer-1aj6wqq > :last-child, .framer-g1Vrp .framer-1eagi2w > :last-child, .framer-g1Vrp .framer-1j9ykm3 > :last-child, .framer-g1Vrp .framer-1iwq20w > :last-child, .framer-g1Vrp .framer-o13awc > :last-child, .framer-g1Vrp .framer-13nyols > :last-child, .framer-g1Vrp .framer-gt6i0 > :last-child, .framer-g1Vrp .framer-1sq06h1 > :last-child { margin-bottom: 0px; } .framer-g1Vrp .framer-1g2vjpu > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-g1Vrp .framer-1g2vjpu > :first-child, .framer-g1Vrp .framer-sv0es4 > :first-child, .framer-g1Vrp .framer-1i4cg92 > :first-child, .framer-g1Vrp .framer-avkzfo > :first-child, .framer-g1Vrp .framer-16ul9hl > :first-child, .framer-g1Vrp .framer-1bc45lu > :first-child, .framer-g1Vrp .framer-lxx28o > :first-child, .framer-g1Vrp .framer-ivhd47 > :first-child, .framer-g1Vrp .framer-1r8blid > :first-child, .framer-g1Vrp .framer-1rre8gz > :first-child, .framer-g1Vrp .framer-1bhz05f > :first-child { margin-left: 0px; } .framer-g1Vrp .framer-1g2vjpu > :last-child, .framer-g1Vrp .framer-sv0es4 > :last-child, .framer-g1Vrp .framer-1i4cg92 > :last-child, .framer-g1Vrp .framer-avkzfo > :last-child, .framer-g1Vrp .framer-16ul9hl > :last-child, .framer-g1Vrp .framer-1bc45lu > :last-child, .framer-g1Vrp .framer-lxx28o > :last-child, .framer-g1Vrp .framer-ivhd47 > :last-child, .framer-g1Vrp .framer-1r8blid > :last-child, .framer-g1Vrp .framer-1rre8gz > :last-child, .framer-g1Vrp .framer-1bhz05f > :last-child { margin-right: 0px; } .framer-g1Vrp .framer-tymfzk > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-g1Vrp .framer-1aj6wqq > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-g1Vrp .framer-1eagi2w > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-g1Vrp .framer-sv0es4 > *, .framer-g1Vrp .framer-16ul9hl > *, .framer-g1Vrp .framer-1bc45lu > *, .framer-g1Vrp .framer-1rre8gz > *, .framer-g1Vrp .framer-1bhz05f > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-g1Vrp .framer-1i4cg92 > *, .framer-g1Vrp .framer-lxx28o > *, .framer-g1Vrp .framer-1r8blid > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-g1Vrp .framer-avkzfo > *, .framer-g1Vrp .framer-ivhd47 > * { margin: 0px; margin-left: calc(64px / 2); margin-right: calc(64px / 2); } .framer-g1Vrp .framer-1j9ykm3 > *, .framer-g1Vrp .framer-1iwq20w > *, .framer-g1Vrp .framer-o13awc > *, .framer-g1Vrp .framer-13nyols > *, .framer-g1Vrp .framer-gt6i0 > *, .framer-g1Vrp .framer-1sq06h1 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-g1Vrp[data-border=\"true\"]::after, .framer-g1Vrp [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (max-width: 809px) { .framer-g1Vrp.framer-72rtr7 { width: 390px; } .framer-g1Vrp .framer-nreg8l-container { height: 96px; } .framer-g1Vrp .framer-1g2vjpu { flex-direction: column; } .framer-g1Vrp .framer-tymfzk { padding: 160px 24px 24px 24px; } .framer-g1Vrp .framer-sv0es4 { flex-direction: column; width: 100%; } .framer-g1Vrp .framer-1i4cg92 { flex-direction: column; overflow: visible; padding: 24px; } .framer-g1Vrp .framer-avkzfo, .framer-g1Vrp .framer-ivhd47 { flex: none; width: 100%; } .framer-g1Vrp .framer-1iwq20w { overflow: visible; padding: 24px; } .framer-g1Vrp .framer-lxx28o, .framer-g1Vrp .framer-1r8blid { flex-direction: column; padding: 24px; } .framer-g1Vrp .framer-qfmphy { order: 1; } .framer-g1Vrp .framer-gt6i0 { order: 0; } .framer-g1Vrp .framer-1rre8gz { flex: none; height: min-content; width: 100%; } .framer-g1Vrp .framer-ewwh14-container { align-self: stretch; flex: 1 0 0px; height: auto; width: 1px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-g1Vrp .framer-1g2vjpu, .framer-g1Vrp .framer-sv0es4, .framer-g1Vrp .framer-1i4cg92, .framer-g1Vrp .framer-lxx28o, .framer-g1Vrp .framer-1r8blid { gap: 0px; } .framer-g1Vrp .framer-1g2vjpu > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-g1Vrp .framer-1g2vjpu > :first-child, .framer-g1Vrp .framer-sv0es4 > :first-child, .framer-g1Vrp .framer-1i4cg92 > :first-child, .framer-g1Vrp .framer-lxx28o > :first-child, .framer-g1Vrp .framer-1r8blid > :first-child { margin-top: 0px; } .framer-g1Vrp .framer-1g2vjpu > :last-child, .framer-g1Vrp .framer-sv0es4 > :last-child, .framer-g1Vrp .framer-1i4cg92 > :last-child, .framer-g1Vrp .framer-lxx28o > :last-child, .framer-g1Vrp .framer-1r8blid > :last-child { margin-bottom: 0px; } .framer-g1Vrp .framer-sv0es4 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-g1Vrp .framer-1i4cg92 > *, .framer-g1Vrp .framer-lxx28o > *, .framer-g1Vrp .framer-1r8blid > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }}\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-g1Vrp.framer-72rtr7 { width: 810px; } .framer-g1Vrp .framer-1rre8gz { flex-direction: column; height: min-content; } .framer-g1Vrp .framer-ewwh14-container { height: auto; order: 0; width: 100%; } .framer-g1Vrp .framer-1sq06h1 { flex: none; order: 1; width: 100%; } .framer-g1Vrp .framer-farrpi-container { order: 1; } .framer-g1Vrp .framer-1bhz05f, .framer-g1Vrp .framer-f8nxbf-container { order: 0; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-g1Vrp .framer-1rre8gz { gap: 0px; } .framer-g1Vrp .framer-1rre8gz > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-g1Vrp .framer-1rre8gz > :first-child { margin-top: 0px; } .framer-g1Vrp .framer-1rre8gz > :last-child { margin-bottom: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7226\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"I8J59a3vs\":{\"layout\":[\"fixed\",\"auto\"]},\"TrtpmCoFQ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"I_0o28ZFp\":{\"pattern\":\":I_0o28ZFp\",\"name\":\"menu-trigger\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-g1Vrp\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:7226,width:1200};addFonts(FrameraugiA20Il,[{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\"}]},...NavigationBarFonts,...VideoFonts,...LogoLargeFonts,...ButtonTextFonts,...CardFeatureFonts,...SectionOurProductsFonts,...CardMetricFonts,...SectionExploreGenaFonts,...SectionNewsletterFonts,...SectionFooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerScrollSections\":\"{\\\"I_0o28ZFp\\\":{\\\"pattern\\\":\\\":I_0o28ZFp\\\",\\\"name\\\":\\\"menu-trigger\\\"}}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"I8J59a3vs\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TrtpmCoFQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"7226\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicWidth\":\"1200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "defaultVideo", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "X", "srcType", "srcUrl", "srcFile", "posterEnabled", "playing", "restartOnEnter", "objectFit", "backgroundColor", "radius", "volume", "startTimeProp", "poster", "progress", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "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", "SVG", "css", "FramerdrQrPei6Z", "withCSS", "drQrPei6Z_default", "addPropertyControls", "ControlType", "addFonts", "BubbleProductFonts", "getFonts", "mqTRrQdDC_default", "MotionDivWithFX", "withFX", "motion", "BubbleProductControls", "getPropertyControls", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "getProps", "amount", "color", "description", "height", "id", "product", "productTitle", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "qlZhij8Ta", "Qr_xdOYeO", "QKL4qBnwo", "ZQjyavp2D", "F67SkL0Ow", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "MotionDivWithFX", "cx", "serializationHash", "u", "ComponentViewportProvider", "mqTRrQdDC_default", "RichText2", "css", "FramertecIXODge", "withCSS", "tecIXODge_default", "addPropertyControls", "ControlType", "BubbleProductControls", "addFonts", "BubbleProductFonts", "getFontsFromSharedStyle", "fonts", "NavigationBarFonts", "getFonts", "ubMnWMmXn_default", "NavigationBarWithVariantAppearEffect", "withVariantAppearEffect", "VideoFonts", "Video", "LogoLargeFonts", "drQrPei6Z_default", "ButtonTextFonts", "fGKWir27W_default", "CardFeatureFonts", "bQ8r_Ctzp_default", "SectionOurProductsFonts", "tftekNuqG_default", "CardMetricFonts", "tecIXODge_default", "SectionExploreGenaFonts", "MlqBxEurI_default", "SectionNewsletterFonts", "ld6q2lsAq_default", "SectionFooterFonts", "nPqw2SSF9_default", "breakpoints", "serializationHash", "variantClassNames", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "ref1", "elementId", "useRouteElementId", "router", "useRouter", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "PropertyOverrides2", "NavigationBarWithVariantAppearEffect", "Video", "drQrPei6Z_default", "x", "RichText2", "ResolveLinks", "resolvedLinks", "fGKWir27W_default", "resolvedLinks1", "Image2", "bQ8r_Ctzp_default", "tftekNuqG_default", "tecIXODge_default", "MlqBxEurI_default", "ld6q2lsAq_default", "nPqw2SSF9_default", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "NavigationBarFonts", "VideoFonts", "LogoLargeFonts", "ButtonTextFonts", "CardFeatureFonts", "SectionOurProductsFonts", "CardMetricFonts", "SectionExploreGenaFonts", "SectionNewsletterFonts", "SectionFooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
