{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js", "ssg:https://framerusercontent.com/modules/y7v4e58Ymw7hwkzN2ZR5/Jxnz5dR73SWwSUqIvybK/H_FfGTPBg.js", "ssg:https://framerusercontent.com/modules/SkAlU0iAxWCd3vhS4pKw/U5KpKq60f2WUnt8xNkOX/oqpfSNg4r.js", "ssg:https://framerusercontent.com/modules/N34dgvCyZWrauNNb9HpL/togwDXtV1Lvr57rVkCRV/njSXsfF_F.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const 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 isPlaying=videoRef.current.currentTime>0&&videoRef.current.onplaying&&!videoRef.current.paused&&!videoRef.current.ended&&videoRef.current.readyState>videoRef.current.HAVE_CURRENT_DATA;if(!isPlaying&&videoRef.current&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;videoRef.current.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();},[]);return{play,pause,setProgress};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}/**\n * The Video component has some effects that sync the video element with props\n * like `startTime`, `progress`, etc. React calls these effects whenever these\n * props change. However, it also calls them on the first mount, and this is\n * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n * the video was hydrated, the initial `useEffect` call will reset the video\n * state. To avoid this, we use this flag.\n */let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing:playingProp,muted,playsinline,controls,progress,objectFit,backgroundColor,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,posterEnabled,startTime:startTimeProp,volume,loop}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges){isMountedAndReadyForProgressChanges=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{if(!videoRef.current)return;if(videoRef.current.currentTime<.3)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:autoplayBehavior===\"on-mount\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";Video.defaultProps={srcType:\"URL\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",srcFile:\"\",posterEnabled:false,controls:false,playing:true,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:\"cover\",backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime:0};const groupsRegex=/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu;function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(groupsRegex)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",placeholder:\"../example.mp4\",hidden(props){return props.srcType===\"Upload\";},description:\"Hosted video file URL. For YouTube, use the YouTube component.\"},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\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"112\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (41c59c7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/dKl8YMaHTmHcf4ZtmOpy/MEtwO9nEwEfzdq2cip1t/NnUBxt9Mg.js\";const PhosphorFonts=getFonts(Phosphor);const cycleOrder=[\"lgpVJli_j\",\"lKjmr58Sq\",\"YkMkxb8Tw\",\"Elo9GSxXg\",\"OA6bz1ZHl\",\"cMDxFccvy\"];const serializationHash=\"framer-IXDYu\";const variantClassNames={cMDxFccvy:\"framer-v-1vjtm6e\",Elo9GSxXg:\"framer-v-l0kwsn\",lgpVJli_j:\"framer-v-4iwru1\",lKjmr58Sq:\"framer-v-17numkx\",OA6bz1ZHl:\"framer-v-151bt63\",YkMkxb8Tw:\"framer-v-4h3lu9\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Open hover\":\"Elo9GSxXg\",\"Website link hover\":\"cMDxFccvy\",\"Website link\":\"OA6bz1ZHl\",Default:\"lgpVJli_j\",Hover:\"lKjmr58Sq\",Open:\"YkMkxb8Tw\"};const getProps=({height,id,link,tap,title,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,egqwgdXBa:(_ref=title!==null&&title!==void 0?title:props.egqwgdXBa)!==null&&_ref!==void 0?_ref:\"Project information\",TiYkMwRcJ:tap!==null&&tap!==void 0?tap:props.TiYkMwRcJ,variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"lgpVJli_j\",zWjPVTBPn:link!==null&&link!==void 0?link:props.zWjPVTBPn};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,egqwgdXBa,TiYkMwRcJ,zWjPVTBPn,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"lgpVJli_j\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1wcmenc=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(TiYkMwRcJ){const res=await TiYkMwRcJ(...args);if(res===false)return false;}});const onMouseEnter1qng7bp=activeVariantCallback(async(...args)=>{setVariant(\"lKjmr58Sq\");});const onMouseLeaveskpy1j=activeVariantCallback(async(...args)=>{setVariant(\"lgpVJli_j\");});const onMouseEnter11vvgo8=activeVariantCallback(async(...args)=>{setVariant(\"Elo9GSxXg\");});const onMouseLeave1fjssaz=activeVariantCallback(async(...args)=>{setVariant(\"YkMkxb8Tw\");});const onMouseEnter1xsevrp=activeVariantCallback(async(...args)=>{setVariant(\"cMDxFccvy\");});const onMouseLeaveacu0ks=activeVariantCallback(async(...args)=>{setVariant(\"OA6bz1ZHl\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"OA6bz1ZHl\",\"cMDxFccvy\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];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(Link,{...addPropertyOverrides({cMDxFccvy:{href:zWjPVTBPn},OA6bz1ZHl:{href:zWjPVTBPn}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{...restProps,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-4iwru1\",className,classNames)} framer-17jaqh8`,\"data-framer-name\":\"Default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"lgpVJli_j\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onMouseEnter:onMouseEnter1qng7bp,onTap:onTap1wcmenc,onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({cMDxFccvy:{\"data-framer-name\":\"Website link hover\",onMouseEnter:undefined,onMouseLeave:onMouseLeaveacu0ks},Elo9GSxXg:{\"data-framer-name\":\"Open hover\",onMouseEnter:undefined,onMouseLeave:onMouseLeave1fjssaz},lKjmr58Sq:{\"data-framer-name\":\"Hover\",onMouseLeave:onMouseLeaveskpy1j},OA6bz1ZHl:{\"data-framer-name\":\"Website link\",onMouseEnter:onMouseEnter1xsevrp},YkMkxb8Tw:{\"data-framer-name\":\"Open\",onMouseEnter:onMouseEnter11vvgo8}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ftwfda-container\",layoutDependency:layoutDependency,layoutId:\"ZWshyOt6x-container\",style:{rotate:0},variants:{cMDxFccvy:{rotate:45},Elo9GSxXg:{rotate:225},lKjmr58Sq:{rotate:90},YkMkxb8Tw:{rotate:45}},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-4575e468-d744-4e13-ad00-dc25e66bbbef, rgb(244, 245, 245))\",height:\"100%\",iconSearch:\"plus\",iconSelection:\"ArrowRight\",id:\"ZWshyOt6x\",layoutId:\"ZWshyOt6x\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\",...addPropertyOverrides({cMDxFccvy:{iconSelection:\"ArrowUpRight\",selectByList:true},OA6bz1ZHl:{iconSelection:\"ArrowUpRight\",selectByList:true}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xiu5sl\",layoutDependency:layoutDependency,layoutId:\"yjlLoy2JO\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1qulqp\",\"data-styles-preset\":\"NnUBxt9Mg\",children:\"Project information\"})}),className:\"framer-14sg0p\",\"data-framer-name\":\"Future-proof your business\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"B8gCGEQfL\",text:egqwgdXBa,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-sbzc8o\",layoutDependency:layoutDependency,layoutId:\"KRJT_u5VH\",style:{backgroundColor:\"var(--token-4575e468-d744-4e13-ad00-dc25e66bbbef, rgb(244, 245, 245))\"}})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-IXDYu.framer-17jaqh8, .framer-IXDYu .framer-17jaqh8 { display: block; }\",\".framer-IXDYu.framer-4iwru1 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-IXDYu .framer-ftwfda-container { flex: none; height: 18px; position: relative; width: 18px; }\",\".framer-IXDYu .framer-xiu5sl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-IXDYu .framer-14sg0p { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-IXDYu .framer-sbzc8o { align-self: stretch; flex: none; height: 1px; overflow: hidden; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-IXDYu.framer-4iwru1, .framer-IXDYu .framer-xiu5sl { gap: 0px; } .framer-IXDYu.framer-4iwru1 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-IXDYu.framer-4iwru1 > :first-child { margin-left: 0px; } .framer-IXDYu.framer-4iwru1 > :last-child { margin-right: 0px; } .framer-IXDYu .framer-xiu5sl > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-IXDYu .framer-xiu5sl > :first-child { margin-top: 0px; } .framer-IXDYu .framer-xiu5sl > :last-child { margin-bottom: 0px; } }\",\".framer-IXDYu.framer-v-151bt63.framer-4iwru1, .framer-IXDYu.framer-v-1vjtm6e.framer-4iwru1 { text-decoration: none; }\",\".framer-IXDYu.framer-v-151bt63 .framer-ftwfda-container, .framer-IXDYu.framer-v-1vjtm6e .framer-ftwfda-container { order: 1; }\",\".framer-IXDYu.framer-v-151bt63 .framer-xiu5sl, .framer-IXDYu.framer-v-1vjtm6e .framer-xiu5sl { order: 0; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 27\n * @framerIntrinsicWidth 184\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"lKjmr58Sq\":{\"layout\":[\"auto\",\"auto\"]},\"YkMkxb8Tw\":{\"layout\":[\"auto\",\"auto\"]},\"Elo9GSxXg\":{\"layout\":[\"auto\",\"auto\"]},\"OA6bz1ZHl\":{\"layout\":[\"auto\",\"auto\"]},\"cMDxFccvy\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"egqwgdXBa\":\"title\",\"TiYkMwRcJ\":\"tap\",\"zWjPVTBPn\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerH_FfGTPBg=withCSS(Component,css,\"framer-IXDYu\");export default FramerH_FfGTPBg;FramerH_FfGTPBg.displayName=\"Project information link\";FramerH_FfGTPBg.defaultProps={height:27,width:184};addPropertyControls(FramerH_FfGTPBg,{variant:{options:[\"lgpVJli_j\",\"lKjmr58Sq\",\"YkMkxb8Tw\",\"Elo9GSxXg\",\"OA6bz1ZHl\",\"cMDxFccvy\"],optionTitles:[\"Default\",\"Hover\",\"Open\",\"Open hover\",\"Website link\",\"Website link hover\"],title:\"Variant\",type:ControlType.Enum},egqwgdXBa:{defaultValue:\"Project information\",displayTextArea:false,title:\"Title\",type:ControlType.String},TiYkMwRcJ:{title:\"Tap\",type:ControlType.EventHandler},zWjPVTBPn:{title:\"Link\",type:ControlType.Link}});addFonts(FramerH_FfGTPBg,[{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://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerH_FfGTPBg\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"lKjmr58Sq\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"YkMkxb8Tw\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Elo9GSxXg\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"OA6bz1ZHl\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"cMDxFccvy\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"184\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"egqwgdXBa\\\":\\\"title\\\",\\\"TiYkMwRcJ\\\":\\\"tap\\\",\\\"zWjPVTBPn\\\":\\\"link\\\"}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"27\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (4b8bcae)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/4wdVsbzLHHzJ04onmv0w/nQSg7Mk4NAQ4znwWEwUQ/bi4i13Qf8.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/5lrojoslFbMUymdb4rYK/AD5zG00cv1WLbpe82hTH/cSbBjI3Ol.js\";import*as sharedStyle8 from\"https://framerusercontent.com/modules/R39B5QOIoa8SbnmekWLs/7SnAB5L7ap20VUMCbmpS/LFzVrSojj.js\";import*as sharedStyle6 from\"https://framerusercontent.com/modules/cbXzw9M7XbBsQGwwsmcw/RZzC6ff71qkbERcU01YV/lIhIVjUF0.js\";import*as sharedStyle7 from\"https://framerusercontent.com/modules/dKl8YMaHTmHcf4ZtmOpy/MEtwO9nEwEfzdq2cip1t/NnUBxt9Mg.js\";import*as sharedStyle5 from\"https://framerusercontent.com/modules/Yp2eHi9WoTjDSqbhKYuC/62jEcKm4qMMyJq2kMqLy/QEUxJWc3u.js\";import*as sharedStyle9 from\"https://framerusercontent.com/modules/tNwigxLzI4rmiXNW4zDp/66WBMEC0prgVDflwaJuM/sxPXIKKxM.js\";import*as sharedStyle4 from\"https://framerusercontent.com/modules/Kkl6dRQqvMlRqnPrDQet/jUmjypkLFT6aYrnhiWHb/vBhBlNZGw.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/iJsYOJtPXEYL2GQm4op7/k2CdVAeqXwQp0AbWyj1L/vqOHr82zA.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/J6Q72ulSHH3qA1NLvkfH/9IbritYbIXNdLQSK2QXI/ztTLPqftH.js\";import ProjectInformationLink from\"https://framerusercontent.com/modules/y7v4e58Ymw7hwkzN2ZR5/Jxnz5dR73SWwSUqIvybK/H_FfGTPBg.js\";const MotionDivWithFX=withFX(motion.div);const ProjectInformationLinkFonts=getFonts(ProjectInformationLink);const cycleOrder=[\"CmnEcxYsI\",\"QQsU3WzTH\",\"lnY4I8ahe\",\"JVcyFCip2\",\"rj72LJ4Cs\",\"bJINV4R1L\",\"ewTrXe46M\",\"F6uCtNI9g\"];const serializationHash=\"framer-IAtNe\";const variantClassNames={bJINV4R1L:\"framer-v-1jxp88a\",CmnEcxYsI:\"framer-v-1fo9qcw\",ewTrXe46M:\"framer-v-l2ix8q\",F6uCtNI9g:\"framer-v-1683xrb\",JVcyFCip2:\"framer-v-qecmdk\",lnY4I8ahe:\"framer-v-1m0tuv\",QQsU3WzTH:\"framer-v-1249ski\",rj72LJ4Cs:\"framer-v-mtu21x\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:350,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const transition2={delay:0,duration:.5,ease:[.12,.23,.5,1],type:\"tween\"};const transition3={delay:.1,duration:.5,ease:[.12,.23,.5,1],type:\"tween\"};const transition4={delay:.2,duration:.5,ease:[.12,.23,.5,1],type:\"tween\"};const transition5={delay:.3,duration:.5,ease:[.12,.23,.5,1],type:\"tween\"};const transition6={delay:.4,duration:.5,ease:[.12,.23,.5,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Desktop info\":\"QQsU3WzTH\",\"Tablet \":\"lnY4I8ahe\",\"Tablet info\":\"JVcyFCip2\",\"Tablet small info\":\"bJINV4R1L\",\"Tablet small\":\"rj72LJ4Cs\",Desktop:\"CmnEcxYsI\",Phone:\"F6uCtNI9g\"};const getProps=({brief,client,clientAbout,funding,height,id,industry,servicesWeProvided,subline,team,theChallenge,theClient,theSolution,websiteLink,width,...props})=>{return{...props,biM4QA9NX:clientAbout??props.biM4QA9NX??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Yemaachi is biotech company accelrating cancer research in Africa\"})}),CnJRBFEm4:websiteLink??props.CnJRBFEm4,Dwr2xaD6v:theSolution??props.Dwr2xaD6v??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{children:\"In addition to a few other solutions, we designed a web application for their users. Since their previous platform was primarily on the web, our goal was to find a way to make the same functionalities available to existing users. We also had to design an experience that allowed them to move into the more holistic tool that was driven by the the mobile experience.\"})}),HsOvLF4My:industry??props.HsOvLF4My??\"Industry\",lFnuUL8mK:theChallenge??props.lFnuUL8mK??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Viuhealth was evolving from a medical data management platform to a more holistic care management service. This new service has a number of different moving parts. Although technical in nature, these moving parts must be presented in a way that is easy to understand and use by their users. The fact that some of the autoimmune diseases covered also affected vision meant the user experience design of the product needed to cater to these exceptions.\"})}),lOOu1HBjn:servicesWeProvided??props.lOOu1HBjn??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Visual Identity Design\"})}),nn1DCxtdF:funding??props.nn1DCxtdF??\"Funding\",op4ZuuG0H:brief??props.op4ZuuG0H??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Some summary text goes here could be two lines max maybe three of what we did.\"})}),UiaCyzgj6:client??props.UiaCyzgj6??\"Yemaachi Biotech\",variant:humanReadableVariantMap[props.variant]??props.variant??\"CmnEcxYsI\",VgcF2RdnW:team??props.VgcF2RdnW??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Emmanuel Baah\"})}),VWHnqHwqo:theClient??props.VWHnqHwqo??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{children:\"ViuHealth makes managing your day-to-day autoimmune disease simple. Access a personalized care team that will build an autoimmune-specific program tailored to help reduce the chance of flares. This service is primarily driven by a mobile app the allows their users to access their suite of solutions.\"})}),zGu51MuMK:subline??props.zGu51MuMK??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{children:\"$2.5 Million raised during the execution of this project\"})})};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,UiaCyzgj6,CnJRBFEm4,HsOvLF4My,nn1DCxtdF,VWHnqHwqo,biM4QA9NX,lFnuUL8mK,Dwr2xaD6v,zGu51MuMK,op4ZuuG0H,lOOu1HBjn,VgcF2RdnW,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"CmnEcxYsI\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapyqmbbu=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"lnY4I8ahe\");});const TiYkMwRcJ1oaetsw=activeVariantCallback(async(...args)=>{setVariant(\"QQsU3WzTH\");});const TiYkMwRcJzmusfr=activeVariantCallback(async(...args)=>{setVariant(\"CmnEcxYsI\");});const TiYkMwRcJ4pcbq0=activeVariantCallback(async(...args)=>{setVariant(\"JVcyFCip2\");});const TiYkMwRcJ1420w2h=activeVariantCallback(async(...args)=>{setVariant(\"lnY4I8ahe\");});const TiYkMwRcJ14jedmm=activeVariantCallback(async(...args)=>{setVariant(\"bJINV4R1L\");});const TiYkMwRcJjes7jp=activeVariantCallback(async(...args)=>{setVariant(\"rj72LJ4Cs\");});const TiYkMwRcJ1os3das=activeVariantCallback(async(...args)=>{setVariant(\"F6uCtNI9g\");});const TiYkMwRcJ2kxv17=activeVariantCallback(async(...args)=>{setVariant(\"ewTrXe46M\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"QQsU3WzTH\",\"JVcyFCip2\",\"bJINV4R1L\",\"F6uCtNI9g\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1fo9qcw\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"CmnEcxYsI\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref??ref1,style:{...style},...addPropertyOverrides({bJINV4R1L:{\"data-framer-name\":\"Tablet small info\"},ewTrXe46M:{\"data-framer-name\":\"Phone\"},F6uCtNI9g:{\"data-framer-name\":\"Phone\"},JVcyFCip2:{\"data-framer-name\":\"Tablet info\",\"data-highlight\":true,onTap:onTapyqmbbu},lnY4I8ahe:{\"data-framer-name\":\"Tablet \"},QQsU3WzTH:{\"data-framer-name\":\"Desktop info\"},rj72LJ4Cs:{\"data-framer-name\":\"Tablet small\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1b9inbe\",layoutDependency:layoutDependency,layoutId:\"mr_P8xmi8\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-1tlxu39\",\"data-styles-preset\":\"ztTLPqftH\",children:\"Overview\"})}),className:\"framer-8btezx\",\"data-framer-name\":\"You boostrapped your design, did it yourself, you\u2019re growing, but now it\u2019s time to level up the quaility of your brand\u2019s image or your product\u2019s experience.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"oPxhk9c9p\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fg6gq0\",layoutDependency:layoutDependency,layoutId:\"OioTvyeZQ\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19rwpht\",layoutDependency:layoutDependency,layoutId:\"QIEBX4hAO\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1ghhla2\",layoutDependency:layoutDependency,layoutId:\"P0mA7Mjik\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:op4ZuuG0H,className:\"framer-smcbuu\",\"data-framer-name\":\"You boostrapped your design, did it yourself, you\u2019re growing, but now it\u2019s time to level up the quaility of your brand\u2019s image or your product\u2019s experience.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"HzJcd6p4k\",stylesPresetsClassNames:{a:\"framer-styles-preset-1ww98a1\",h1:\"framer-styles-preset-17elcr4\",h2:\"framer-styles-preset-2rxnw7\",h3:\"framer-styles-preset-qk2nge\",h4:\"framer-styles-preset-1yn2d4c\",h5:\"framer-styles-preset-19cul2h\",h6:\"framer-styles-preset-12o5bb5\",p:\"framer-styles-preset-1qulqp\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({QQsU3WzTH:{stylesPresetsClassNames:{a:\"framer-styles-preset-1ww98a1\",h1:\"framer-styles-preset-17elcr4\",h2:\"framer-styles-preset-2rxnw7\",h4:\"framer-styles-preset-1yn2d4c\",h5:\"framer-styles-preset-19cul2h\",h6:\"framer-styles-preset-12o5bb5\",p:\"framer-styles-preset-1qulqp\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-zfyya7\",layoutDependency:layoutDependency,layoutId:\"YzUU2_8z6\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:zGu51MuMK,className:\"framer-jxsfyz\",\"data-framer-name\":\"You boostrapped your design, did it yourself, you\u2019re growing, but now it\u2019s time to level up the quaility of your brand\u2019s image or your product\u2019s experience.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"u0zvCjKAF\",stylesPresetsClassNames:{a:\"framer-styles-preset-1ww98a1\",h1:\"framer-styles-preset-17elcr4\",h2:\"framer-styles-preset-2rxnw7\",h3:\"framer-styles-preset-qk2nge\",h4:\"framer-styles-preset-1yn2d4c\",h5:\"framer-styles-preset-19cul2h\",h6:\"framer-styles-preset-12o5bb5\",p:\"framer-styles-preset-1qulqp\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1hxymed-container\",layoutDependency:layoutDependency,layoutId:\"fT8LgHY6R-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ProjectInformationLink,{egqwgdXBa:\"Detailed project information\",height:\"100%\",id:\"fT8LgHY6R\",layoutId:\"fT8LgHY6R\",TiYkMwRcJ:TiYkMwRcJ1oaetsw,variant:\"lgpVJli_j\",width:\"100%\",...addPropertyOverrides({bJINV4R1L:{TiYkMwRcJ:TiYkMwRcJjes7jp,variant:\"YkMkxb8Tw\"},ewTrXe46M:{TiYkMwRcJ:TiYkMwRcJ1os3das},F6uCtNI9g:{TiYkMwRcJ:TiYkMwRcJ2kxv17,variant:\"YkMkxb8Tw\"},JVcyFCip2:{TiYkMwRcJ:TiYkMwRcJ1420w2h,variant:\"YkMkxb8Tw\"},lnY4I8ahe:{TiYkMwRcJ:TiYkMwRcJ4pcbq0},QQsU3WzTH:{TiYkMwRcJ:TiYkMwRcJzmusfr,variant:\"YkMkxb8Tw\"},rj72LJ4Cs:{TiYkMwRcJ:TiYkMwRcJ14jedmm}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-10aknz3\",layoutDependency:layoutDependency,layoutId:\"ZBCnUBHbv\",style:{backgroundColor:\"var(--token-2623085f-c091-4afa-9e63-f95b42a96b2e, rgba(57, 57, 58, 0.7))\"}}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-164wapn\",\"data-framer-name\":\"Indormation\",layoutDependency:layoutDependency,layoutId:\"Axhc0j7ay\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18268rz\",layoutDependency:layoutDependency,layoutId:\"f47ONTtsi\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-b2w1xn\",layoutDependency:layoutDependency,layoutId:\"wTDrdBCrs\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-n2wth8\",layoutDependency:layoutDependency,layoutId:\"CeUVShn07\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-1tlxu39\",\"data-styles-preset\":\"ztTLPqftH\",children:\"Yemaachi Biotech\"})}),className:\"framer-13u9557\",\"data-framer-name\":\"You boostrapped your design, did it yourself, you\u2019re growing, but now it\u2019s time to level up the quaility of your brand\u2019s image or your product\u2019s experience.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"CBzSoJubH\",text:UiaCyzgj6,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:biM4QA9NX,className:\"framer-1ax41ad\",\"data-framer-name\":\"You boostrapped your design, did it yourself, you\u2019re growing, but now it\u2019s time to level up the quaility of your brand\u2019s image or your product\u2019s experience.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"cw4TnKJFZ\",stylesPresetsClassNames:{a:\"framer-styles-preset-1ww98a1\",h1:\"framer-styles-preset-17elcr4\",h2:\"framer-styles-preset-2rxnw7\",h3:\"framer-styles-preset-qk2nge\",h4:\"framer-styles-preset-1yn2d4c\",h5:\"framer-styles-preset-19cul2h\",h6:\"framer-styles-preset-12o5bb5\",p:\"framer-styles-preset-1qulqp\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-scrsnp-container\",layoutDependency:layoutDependency,layoutId:\"O4vReblAU-container\",children:/*#__PURE__*/_jsx(ProjectInformationLink,{egqwgdXBa:\"Visit website\",height:\"100%\",id:\"O4vReblAU\",layoutId:\"O4vReblAU\",variant:\"OA6bz1ZHl\",width:\"100%\",zWjPVTBPn:CnJRBFEm4})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1nhfk37\",layoutDependency:layoutDependency,layoutId:\"e3FYR4UoP\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-1tlxu39\",\"data-styles-preset\":\"ztTLPqftH\",children:\"Industry\"})}),className:\"framer-vz8nt4\",\"data-framer-name\":\"You boostrapped your design, did it yourself, you\u2019re growing, but now it\u2019s time to level up the quaility of your brand\u2019s image or your product\u2019s experience.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"wb9BWe8xM\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1qulqp\",\"data-styles-preset\":\"NnUBxt9Mg\",children:\"Health Tech\"})}),className:\"framer-ickcbd\",\"data-framer-name\":\"You boostrapped your design, did it yourself, you\u2019re growing, but now it\u2019s time to level up the quaility of your brand\u2019s image or your product\u2019s experience.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"nv44bLkjx\",text:HsOvLF4My,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-8p2vzn\",layoutDependency:layoutDependency,layoutId:\"k5Nc5Tag8\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-1tlxu39\",\"data-styles-preset\":\"ztTLPqftH\",children:\"Funding\"})}),className:\"framer-1s66z8b\",\"data-framer-name\":\"You boostrapped your design, did it yourself, you\u2019re growing, but now it\u2019s time to level up the quaility of your brand\u2019s image or your product\u2019s experience.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"PckEgbcON\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1qulqp\",\"data-styles-preset\":\"NnUBxt9Mg\",children:\"$3M\"})}),className:\"framer-ne5cln\",\"data-framer-name\":\"You boostrapped your design, did it yourself, you\u2019re growing, but now it\u2019s time to level up the quaility of your brand\u2019s image or your product\u2019s experience.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"vpYHtBkR0\",text:nn1DCxtdF,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-mxtfdk\",layoutDependency:layoutDependency,layoutId:\"tqgvxEQGP\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-1tlxu39\",\"data-styles-preset\":\"ztTLPqftH\",children:\"Services We provided\"})}),className:\"framer-aj9bbk\",\"data-framer-name\":\"You boostrapped your design, did it yourself, you\u2019re growing, but now it\u2019s time to level up the quaility of your brand\u2019s image or your product\u2019s experience.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"l1Uu1Bz9a\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:lOOu1HBjn,className:\"framer-xhx9g6\",\"data-framer-name\":\"You boostrapped your design, did it yourself, you\u2019re growing, but now it\u2019s time to level up the quaility of your brand\u2019s image or your product\u2019s experience.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"jrLKU6r1J\",stylesPresetsClassNames:{a:\"framer-styles-preset-1ww98a1\",h1:\"framer-styles-preset-17elcr4\",h2:\"framer-styles-preset-2rxnw7\",h3:\"framer-styles-preset-qk2nge\",h4:\"framer-styles-preset-1yn2d4c\",h5:\"framer-styles-preset-19cul2h\",h6:\"framer-styles-preset-12o5bb5\",p:\"framer-styles-preset-1qulqp\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-mgphfi\",layoutDependency:layoutDependency,layoutId:\"l3y4mYxOT\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-1tlxu39\",\"data-styles-preset\":\"ztTLPqftH\",children:\"Team\"})}),className:\"framer-k5ezdv\",\"data-framer-name\":\"You boostrapped your design, did it yourself, you\u2019re growing, but now it\u2019s time to level up the quaility of your brand\u2019s image or your product\u2019s experience.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"atRjKYqBa\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:VgcF2RdnW,className:\"framer-1t0pb6a\",\"data-framer-name\":\"You boostrapped your design, did it yourself, you\u2019re growing, but now it\u2019s time to level up the quaility of your brand\u2019s image or your product\u2019s experience.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"aNSqdia5X\",stylesPresetsClassNames:{a:\"framer-styles-preset-1ww98a1\",h1:\"framer-styles-preset-17elcr4\",h2:\"framer-styles-preset-2rxnw7\",h3:\"framer-styles-preset-qk2nge\",h4:\"framer-styles-preset-1yn2d4c\",h5:\"framer-styles-preset-19cul2h\",h6:\"framer-styles-preset-12o5bb5\",p:\"framer-styles-preset-1qulqp\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ir9zkt\",layoutDependency:layoutDependency,layoutId:\"sYdjZCUev\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-ut629q\",layoutDependency:layoutDependency,layoutId:\"EEuZyP2Nh\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-uium0\",\"data-styles-preset\":\"sxPXIKKxM\",children:\"The client\"})}),className:\"framer-1kwjeps\",\"data-framer-name\":\"You boostrapped your design, did it yourself, you\u2019re growing, but now it\u2019s time to level up the quaility of your brand\u2019s image or your product\u2019s experience.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"StnmFJPpQ\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:VWHnqHwqo,className:\"framer-gxwihi\",\"data-framer-name\":\"You boostrapped your design, did it yourself, you\u2019re growing, but now it\u2019s time to level up the quaility of your brand\u2019s image or your product\u2019s experience.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"m4rF7w2FF\",stylesPresetsClassNames:{a:\"framer-styles-preset-1ww98a1\",h1:\"framer-styles-preset-17elcr4\",h2:\"framer-styles-preset-2rxnw7\",h3:\"framer-styles-preset-qk2nge\",h4:\"framer-styles-preset-1yn2d4c\",h5:\"framer-styles-preset-19cul2h\",h6:\"framer-styles-preset-12o5bb5\",p:\"framer-styles-preset-1qulqp\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-17eom41\",layoutDependency:layoutDependency,layoutId:\"cwUBBSRYh\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-uium0\",\"data-styles-preset\":\"sxPXIKKxM\",children:\"The challenge\"})}),className:\"framer-r03cwj\",\"data-framer-name\":\"You boostrapped your design, did it yourself, you\u2019re growing, but now it\u2019s time to level up the quaility of your brand\u2019s image or your product\u2019s experience.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"AlqVVd3Si\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:lFnuUL8mK,className:\"framer-9wumao\",\"data-framer-name\":\"You boostrapped your design, did it yourself, you\u2019re growing, but now it\u2019s time to level up the quaility of your brand\u2019s image or your product\u2019s experience.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"VaF1o07MR\",stylesPresetsClassNames:{a:\"framer-styles-preset-1ww98a1\",h1:\"framer-styles-preset-17elcr4\",h2:\"framer-styles-preset-2rxnw7\",h3:\"framer-styles-preset-qk2nge\",h4:\"framer-styles-preset-1yn2d4c\",h5:\"framer-styles-preset-19cul2h\",h6:\"framer-styles-preset-12o5bb5\",p:\"framer-styles-preset-1qulqp\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-19x8x7u\",layoutDependency:layoutDependency,layoutId:\"n33BUpB6F\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-uium0\",\"data-styles-preset\":\"sxPXIKKxM\",children:\"The soution\"})}),className:\"framer-a588lv\",\"data-framer-name\":\"You boostrapped your design, did it yourself, you\u2019re growing, but now it\u2019s time to level up the quaility of your brand\u2019s image or your product\u2019s experience.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"cssqD3D6n\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:Dwr2xaD6v,className:\"framer-4iowyf\",\"data-framer-name\":\"You boostrapped your design, did it yourself, you\u2019re growing, but now it\u2019s time to level up the quaility of your brand\u2019s image or your product\u2019s experience.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"LrZwOGbas\",stylesPresetsClassNames:{a:\"framer-styles-preset-1ww98a1\",h1:\"framer-styles-preset-17elcr4\",h2:\"framer-styles-preset-2rxnw7\",h3:\"framer-styles-preset-qk2nge\",h4:\"framer-styles-preset-1yn2d4c\",h5:\"framer-styles-preset-19cul2h\",h6:\"framer-styles-preset-12o5bb5\",p:\"framer-styles-preset-1qulqp\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-IAtNe.framer-19ild1x, .framer-IAtNe .framer-19ild1x { display: block; }\",\".framer-IAtNe.framer-1fo9qcw { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 121px; height: min-content; justify-content: flex-start; overflow: visible; padding: 100px 64px 50px 64px; position: relative; width: 1440px; }\",\".framer-IAtNe .framer-1b9inbe { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-IAtNe .framer-8btezx, .framer-IAtNe .framer-13u9557, .framer-IAtNe .framer-vz8nt4, .framer-IAtNe .framer-ickcbd, .framer-IAtNe .framer-1s66z8b, .framer-IAtNe .framer-ne5cln, .framer-IAtNe .framer-aj9bbk, .framer-IAtNe .framer-xhx9g6, .framer-IAtNe .framer-k5ezdv, .framer-IAtNe .framer-1t0pb6a, .framer-IAtNe .framer-1kwjeps, .framer-IAtNe .framer-r03cwj, .framer-IAtNe .framer-a588lv { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-IAtNe .framer-fg6gq0 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-IAtNe .framer-19rwpht { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 123px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-IAtNe .framer-1ghhla2, .framer-IAtNe .framer-zfyya7 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-IAtNe .framer-smcbuu, .framer-IAtNe .framer-jxsfyz, .framer-IAtNe .framer-gxwihi, .framer-IAtNe .framer-9wumao, .framer-IAtNe .framer-4iowyf { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-IAtNe .framer-1hxymed-container, .framer-IAtNe .framer-scrsnp-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-IAtNe .framer-10aknz3 { flex: none; height: 2px; overflow: hidden; position: relative; width: 100%; }\",\".framer-IAtNe .framer-164wapn { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 115px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-IAtNe .framer-18268rz { 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; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-IAtNe .framer-b2w1xn { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-IAtNe .framer-n2wth8, .framer-IAtNe .framer-1nhfk37, .framer-IAtNe .framer-8p2vzn, .framer-IAtNe .framer-mxtfdk, .framer-IAtNe .framer-mgphfi { 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: hidden; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-IAtNe .framer-1ax41ad { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 329px; word-break: break-word; word-wrap: break-word; }\",\".framer-IAtNe .framer-ir9zkt { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-IAtNe .framer-ut629q, .framer-IAtNe .framer-17eom41, .framer-IAtNe .framer-19x8x7u { 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: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-IAtNe.framer-1fo9qcw, .framer-IAtNe .framer-1b9inbe, .framer-IAtNe .framer-fg6gq0, .framer-IAtNe .framer-19rwpht, .framer-IAtNe .framer-1ghhla2, .framer-IAtNe .framer-zfyya7, .framer-IAtNe .framer-164wapn, .framer-IAtNe .framer-18268rz, .framer-IAtNe .framer-b2w1xn, .framer-IAtNe .framer-n2wth8, .framer-IAtNe .framer-1nhfk37, .framer-IAtNe .framer-8p2vzn, .framer-IAtNe .framer-mxtfdk, .framer-IAtNe .framer-mgphfi, .framer-IAtNe .framer-ir9zkt, .framer-IAtNe .framer-ut629q, .framer-IAtNe .framer-17eom41, .framer-IAtNe .framer-19x8x7u { gap: 0px; } .framer-IAtNe.framer-1fo9qcw > * { margin: 0px; margin-left: calc(121px / 2); margin-right: calc(121px / 2); } .framer-IAtNe.framer-1fo9qcw > :first-child, .framer-IAtNe .framer-1b9inbe > :first-child, .framer-IAtNe .framer-19rwpht > :first-child, .framer-IAtNe .framer-164wapn > :first-child { margin-left: 0px; } .framer-IAtNe.framer-1fo9qcw > :last-child, .framer-IAtNe .framer-1b9inbe > :last-child, .framer-IAtNe .framer-19rwpht > :last-child, .framer-IAtNe .framer-164wapn > :last-child { margin-right: 0px; } .framer-IAtNe .framer-1b9inbe > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-IAtNe .framer-fg6gq0 > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-IAtNe .framer-fg6gq0 > :first-child, .framer-IAtNe .framer-1ghhla2 > :first-child, .framer-IAtNe .framer-zfyya7 > :first-child, .framer-IAtNe .framer-18268rz > :first-child, .framer-IAtNe .framer-b2w1xn > :first-child, .framer-IAtNe .framer-n2wth8 > :first-child, .framer-IAtNe .framer-1nhfk37 > :first-child, .framer-IAtNe .framer-8p2vzn > :first-child, .framer-IAtNe .framer-mxtfdk > :first-child, .framer-IAtNe .framer-mgphfi > :first-child, .framer-IAtNe .framer-ir9zkt > :first-child, .framer-IAtNe .framer-ut629q > :first-child, .framer-IAtNe .framer-17eom41 > :first-child, .framer-IAtNe .framer-19x8x7u > :first-child { margin-top: 0px; } .framer-IAtNe .framer-fg6gq0 > :last-child, .framer-IAtNe .framer-1ghhla2 > :last-child, .framer-IAtNe .framer-zfyya7 > :last-child, .framer-IAtNe .framer-18268rz > :last-child, .framer-IAtNe .framer-b2w1xn > :last-child, .framer-IAtNe .framer-n2wth8 > :last-child, .framer-IAtNe .framer-1nhfk37 > :last-child, .framer-IAtNe .framer-8p2vzn > :last-child, .framer-IAtNe .framer-mxtfdk > :last-child, .framer-IAtNe .framer-mgphfi > :last-child, .framer-IAtNe .framer-ir9zkt > :last-child, .framer-IAtNe .framer-ut629q > :last-child, .framer-IAtNe .framer-17eom41 > :last-child, .framer-IAtNe .framer-19x8x7u > :last-child { margin-bottom: 0px; } .framer-IAtNe .framer-19rwpht > * { margin: 0px; margin-left: calc(123px / 2); margin-right: calc(123px / 2); } .framer-IAtNe .framer-1ghhla2 > *, .framer-IAtNe .framer-zfyya7 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-IAtNe .framer-164wapn > * { margin: 0px; margin-left: calc(115px / 2); margin-right: calc(115px / 2); } .framer-IAtNe .framer-18268rz > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-IAtNe .framer-b2w1xn > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-IAtNe .framer-n2wth8 > *, .framer-IAtNe .framer-1nhfk37 > *, .framer-IAtNe .framer-8p2vzn > *, .framer-IAtNe .framer-mxtfdk > *, .framer-IAtNe .framer-mgphfi > *, .framer-IAtNe .framer-ut629q > *, .framer-IAtNe .framer-17eom41 > *, .framer-IAtNe .framer-19x8x7u > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-IAtNe .framer-ir9zkt > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } }\",\".framer-IAtNe.framer-v-1m0tuv.framer-1fo9qcw { gap: 107px; padding: 100px 32px 50px 32px; width: 1194px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-IAtNe.framer-v-1m0tuv.framer-1fo9qcw { gap: 0px; } .framer-IAtNe.framer-v-1m0tuv.framer-1fo9qcw > * { margin: 0px; margin-left: calc(107px / 2); margin-right: calc(107px / 2); } .framer-IAtNe.framer-v-1m0tuv.framer-1fo9qcw > :first-child { margin-left: 0px; } .framer-IAtNe.framer-v-1m0tuv.framer-1fo9qcw > :last-child { margin-right: 0px; } }\",\".framer-IAtNe.framer-v-qecmdk.framer-1fo9qcw { cursor: pointer; gap: 107px; padding: 100px 32px 50px 32px; width: 1194px; }\",\".framer-IAtNe.framer-v-qecmdk .framer-164wapn { gap: 105px; }\",\".framer-IAtNe.framer-v-qecmdk .framer-1ax41ad, .framer-IAtNe.framer-v-1jxp88a .framer-1ax41ad { width: 275px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-IAtNe.framer-v-qecmdk.framer-1fo9qcw, .framer-IAtNe.framer-v-qecmdk .framer-164wapn { gap: 0px; } .framer-IAtNe.framer-v-qecmdk.framer-1fo9qcw > * { margin: 0px; margin-left: calc(107px / 2); margin-right: calc(107px / 2); } .framer-IAtNe.framer-v-qecmdk.framer-1fo9qcw > :first-child, .framer-IAtNe.framer-v-qecmdk .framer-164wapn > :first-child { margin-left: 0px; } .framer-IAtNe.framer-v-qecmdk.framer-1fo9qcw > :last-child, .framer-IAtNe.framer-v-qecmdk .framer-164wapn > :last-child { margin-right: 0px; } .framer-IAtNe.framer-v-qecmdk .framer-164wapn > * { margin: 0px; margin-left: calc(105px / 2); margin-right: calc(105px / 2); } }\",\".framer-IAtNe.framer-v-mtu21x.framer-1fo9qcw, .framer-IAtNe.framer-v-1jxp88a.framer-1fo9qcw { flex-direction: column; gap: 24px; padding: 50px 32px 50px 32px; width: 810px; }\",\".framer-IAtNe.framer-v-mtu21x .framer-fg6gq0, .framer-IAtNe.framer-v-1jxp88a .framer-fg6gq0, .framer-IAtNe.framer-v-l2ix8q .framer-fg6gq0, .framer-IAtNe.framer-v-1683xrb .framer-fg6gq0 { flex: none; gap: 40px; width: 100%; }\",\".framer-IAtNe.framer-v-mtu21x .framer-19rwpht, .framer-IAtNe.framer-v-1jxp88a .framer-19rwpht { gap: 47px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-IAtNe.framer-v-mtu21x.framer-1fo9qcw, .framer-IAtNe.framer-v-mtu21x .framer-fg6gq0, .framer-IAtNe.framer-v-mtu21x .framer-19rwpht { gap: 0px; } .framer-IAtNe.framer-v-mtu21x.framer-1fo9qcw > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-IAtNe.framer-v-mtu21x.framer-1fo9qcw > :first-child, .framer-IAtNe.framer-v-mtu21x .framer-fg6gq0 > :first-child { margin-top: 0px; } .framer-IAtNe.framer-v-mtu21x.framer-1fo9qcw > :last-child, .framer-IAtNe.framer-v-mtu21x .framer-fg6gq0 > :last-child { margin-bottom: 0px; } .framer-IAtNe.framer-v-mtu21x .framer-fg6gq0 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-IAtNe.framer-v-mtu21x .framer-19rwpht > * { margin: 0px; margin-left: calc(47px / 2); margin-right: calc(47px / 2); } .framer-IAtNe.framer-v-mtu21x .framer-19rwpht > :first-child { margin-left: 0px; } .framer-IAtNe.framer-v-mtu21x .framer-19rwpht > :last-child { margin-right: 0px; } }\",\".framer-IAtNe.framer-v-1jxp88a .framer-164wapn { gap: 56px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-IAtNe.framer-v-1jxp88a.framer-1fo9qcw, .framer-IAtNe.framer-v-1jxp88a .framer-fg6gq0, .framer-IAtNe.framer-v-1jxp88a .framer-19rwpht, .framer-IAtNe.framer-v-1jxp88a .framer-164wapn { gap: 0px; } .framer-IAtNe.framer-v-1jxp88a.framer-1fo9qcw > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-IAtNe.framer-v-1jxp88a.framer-1fo9qcw > :first-child, .framer-IAtNe.framer-v-1jxp88a .framer-fg6gq0 > :first-child { margin-top: 0px; } .framer-IAtNe.framer-v-1jxp88a.framer-1fo9qcw > :last-child, .framer-IAtNe.framer-v-1jxp88a .framer-fg6gq0 > :last-child { margin-bottom: 0px; } .framer-IAtNe.framer-v-1jxp88a .framer-fg6gq0 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-IAtNe.framer-v-1jxp88a .framer-19rwpht > * { margin: 0px; margin-left: calc(47px / 2); margin-right: calc(47px / 2); } .framer-IAtNe.framer-v-1jxp88a .framer-19rwpht > :first-child, .framer-IAtNe.framer-v-1jxp88a .framer-164wapn > :first-child { margin-left: 0px; } .framer-IAtNe.framer-v-1jxp88a .framer-19rwpht > :last-child, .framer-IAtNe.framer-v-1jxp88a .framer-164wapn > :last-child { margin-right: 0px; } .framer-IAtNe.framer-v-1jxp88a .framer-164wapn > * { margin: 0px; margin-left: calc(56px / 2); margin-right: calc(56px / 2); } }\",\".framer-IAtNe.framer-v-l2ix8q.framer-1fo9qcw, .framer-IAtNe.framer-v-1683xrb.framer-1fo9qcw { flex-direction: column; gap: 24px; padding: 50px 16px 20px 16px; width: 428px; }\",\".framer-IAtNe.framer-v-l2ix8q .framer-19rwpht, .framer-IAtNe.framer-v-1683xrb .framer-19rwpht { flex-direction: column; gap: 32px; }\",\".framer-IAtNe.framer-v-l2ix8q .framer-1ghhla2, .framer-IAtNe.framer-v-l2ix8q .framer-zfyya7, .framer-IAtNe.framer-v-1683xrb .framer-1ghhla2, .framer-IAtNe.framer-v-1683xrb .framer-zfyya7, .framer-IAtNe.framer-v-1683xrb .framer-ir9zkt { flex: none; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-IAtNe.framer-v-l2ix8q.framer-1fo9qcw, .framer-IAtNe.framer-v-l2ix8q .framer-fg6gq0, .framer-IAtNe.framer-v-l2ix8q .framer-19rwpht { gap: 0px; } .framer-IAtNe.framer-v-l2ix8q.framer-1fo9qcw > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-IAtNe.framer-v-l2ix8q.framer-1fo9qcw > :first-child, .framer-IAtNe.framer-v-l2ix8q .framer-fg6gq0 > :first-child, .framer-IAtNe.framer-v-l2ix8q .framer-19rwpht > :first-child { margin-top: 0px; } .framer-IAtNe.framer-v-l2ix8q.framer-1fo9qcw > :last-child, .framer-IAtNe.framer-v-l2ix8q .framer-fg6gq0 > :last-child, .framer-IAtNe.framer-v-l2ix8q .framer-19rwpht > :last-child { margin-bottom: 0px; } .framer-IAtNe.framer-v-l2ix8q .framer-fg6gq0 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-IAtNe.framer-v-l2ix8q .framer-19rwpht > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }\",\".framer-IAtNe.framer-v-1683xrb .framer-164wapn { flex-direction: column; gap: 56px; }\",\".framer-IAtNe.framer-v-1683xrb .framer-18268rz, .framer-IAtNe.framer-v-1683xrb .framer-b2w1xn, .framer-IAtNe.framer-v-1683xrb .framer-n2wth8, .framer-IAtNe.framer-v-1683xrb .framer-1ax41ad { width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-IAtNe.framer-v-1683xrb.framer-1fo9qcw, .framer-IAtNe.framer-v-1683xrb .framer-fg6gq0, .framer-IAtNe.framer-v-1683xrb .framer-19rwpht, .framer-IAtNe.framer-v-1683xrb .framer-164wapn { gap: 0px; } .framer-IAtNe.framer-v-1683xrb.framer-1fo9qcw > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-IAtNe.framer-v-1683xrb.framer-1fo9qcw > :first-child, .framer-IAtNe.framer-v-1683xrb .framer-fg6gq0 > :first-child, .framer-IAtNe.framer-v-1683xrb .framer-19rwpht > :first-child, .framer-IAtNe.framer-v-1683xrb .framer-164wapn > :first-child { margin-top: 0px; } .framer-IAtNe.framer-v-1683xrb.framer-1fo9qcw > :last-child, .framer-IAtNe.framer-v-1683xrb .framer-fg6gq0 > :last-child, .framer-IAtNe.framer-v-1683xrb .framer-19rwpht > :last-child, .framer-IAtNe.framer-v-1683xrb .framer-164wapn > :last-child { margin-bottom: 0px; } .framer-IAtNe.framer-v-1683xrb .framer-fg6gq0 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-IAtNe.framer-v-1683xrb .framer-19rwpht > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-IAtNe.framer-v-1683xrb .framer-164wapn > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 289\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"QQsU3WzTH\":{\"layout\":[\"fixed\",\"auto\"]},\"lnY4I8ahe\":{\"layout\":[\"fixed\",\"auto\"]},\"JVcyFCip2\":{\"layout\":[\"fixed\",\"auto\"]},\"rj72LJ4Cs\":{\"layout\":[\"fixed\",\"auto\"]},\"bJINV4R1L\":{\"layout\":[\"fixed\",\"auto\"]},\"ewTrXe46M\":{\"layout\":[\"fixed\",\"auto\"]},\"F6uCtNI9g\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"UiaCyzgj6\":\"client\",\"CnJRBFEm4\":\"websiteLink\",\"HsOvLF4My\":\"industry\",\"nn1DCxtdF\":\"funding\",\"VWHnqHwqo\":\"theClient\",\"biM4QA9NX\":\"clientAbout\",\"lFnuUL8mK\":\"theChallenge\",\"Dwr2xaD6v\":\"theSolution\",\"zGu51MuMK\":\"subline\",\"op4ZuuG0H\":\"brief\",\"lOOu1HBjn\":\"servicesWeProvided\",\"VgcF2RdnW\":\"team\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameroqpfSNg4r=withCSS(Component,css,\"framer-IAtNe\");export default FrameroqpfSNg4r;FrameroqpfSNg4r.displayName=\"Project info\";FrameroqpfSNg4r.defaultProps={height:289,width:1440};addPropertyControls(FrameroqpfSNg4r,{variant:{options:[\"CmnEcxYsI\",\"QQsU3WzTH\",\"lnY4I8ahe\",\"JVcyFCip2\",\"rj72LJ4Cs\",\"bJINV4R1L\",\"ewTrXe46M\",\"F6uCtNI9g\"],optionTitles:[\"Desktop\",\"Desktop info\",\"Tablet \",\"Tablet info\",\"Tablet small\",\"Tablet small info\",\"Phone\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},UiaCyzgj6:{defaultValue:\"Yemaachi Biotech\",displayTextArea:false,title:\"Client\",type:ControlType.String},CnJRBFEm4:{title:\"Website Link\",type:ControlType.Link},HsOvLF4My:{defaultValue:\"Industry\",displayTextArea:false,title:\"Industry\",type:ControlType.String},nn1DCxtdF:{defaultValue:\"Funding\",displayTextArea:false,title:\"Funding\",type:ControlType.String},VWHnqHwqo:{defaultValue:\"<p>ViuHealth makes managing your day-to-day autoimmune disease simple. Access a personalized care team that will build an autoimmune-specific program tailored to help reduce the chance of flares. This service is primarily driven by a mobile app the allows their users to access their suite of solutions.</p>\",title:\"The client\",type:ControlType.RichText},biM4QA9NX:{defaultValue:\"<p>Yemaachi is biotech company accelrating cancer research in Africa</p>\",title:\"Client about\",type:ControlType.RichText},lFnuUL8mK:{defaultValue:\"<p>Viuhealth was evolving from a medical data management platform to a more holistic care management service. This new service has a number of different moving parts. Although technical in nature, these moving parts must be presented in a way that is easy to understand and use by their users. The fact that some of the autoimmune diseases covered also affected vision meant the user experience design of the product needed to cater to these exceptions.</p>\",title:\"The challenge\",type:ControlType.RichText},Dwr2xaD6v:{defaultValue:\"<p>In addition to a few other solutions, we designed a web application for their users. Since their previous platform was primarily on the web, our goal was to find a way to make the same functionalities available to existing users. We also had to design an experience that allowed them to move into the more holistic tool that was driven by the the mobile experience.</p>\",title:\"The solution\",type:ControlType.RichText},zGu51MuMK:{defaultValue:\"<p>$2.5 Million raised during the execution of this project</p>\",title:\"Subline\",type:ControlType.RichText},op4ZuuG0H:{defaultValue:\"<p>Some summary text goes here could be two lines max maybe three of what we did.</p>\",title:\"Brief\",type:ControlType.RichText},lOOu1HBjn:{defaultValue:\"<p>Visual Identity Design</p>\",title:\"Services We Provided\",type:ControlType.RichText},VgcF2RdnW:{defaultValue:\"<p>Emmanuel Baah</p>\",title:\"Team\",type:ControlType.RichText}});addFonts(FrameroqpfSNg4r,[{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://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...ProjectInformationLinkFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameroqpfSNg4r\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QQsU3WzTH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"lnY4I8ahe\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"JVcyFCip2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rj72LJ4Cs\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"bJINV4R1L\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ewTrXe46M\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"F6uCtNI9g\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"289\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerVariables\":\"{\\\"UiaCyzgj6\\\":\\\"client\\\",\\\"CnJRBFEm4\\\":\\\"websiteLink\\\",\\\"HsOvLF4My\\\":\\\"industry\\\",\\\"nn1DCxtdF\\\":\\\"funding\\\",\\\"VWHnqHwqo\\\":\\\"theClient\\\",\\\"biM4QA9NX\\\":\\\"clientAbout\\\",\\\"lFnuUL8mK\\\":\\\"theChallenge\\\",\\\"Dwr2xaD6v\\\":\\\"theSolution\\\",\\\"zGu51MuMK\\\":\\\"subline\\\",\\\"op4ZuuG0H\\\":\\\"brief\\\",\\\"lOOu1HBjn\\\":\\\"servicesWeProvided\\\",\\\"VgcF2RdnW\\\":\\\"team\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (d2aa011)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js\";import Footer from\"#framer/local/canvasComponent/EM79_UpOU/EM79_UpOU.js\";import ProjectInfo from\"#framer/local/canvasComponent/oqpfSNg4r/oqpfSNg4r.js\";import Label from\"#framer/local/canvasComponent/pnrJZorKB/pnrJZorKB.js\";import Topbar2 from\"#framer/local/canvasComponent/sekbPskV4/sekbPskV4.js\";import ArticlesButton from\"#framer/local/canvasComponent/sn8SuvM8M/sn8SuvM8M.js\";import NewButton from\"#framer/local/canvasComponent/VXBVg53hd/VXBVg53hd.js\";import ProjectDetailLive from\"#framer/local/collection/l9x4yc_Kp/l9x4yc_Kp.js\";import*as sharedStyle1 from\"#framer/local/css/MOUOTJIAz/MOUOTJIAz.js\";import*as sharedStyle3 from\"#framer/local/css/NnUBxt9Mg/NnUBxt9Mg.js\";import*as sharedStyle2 from\"#framer/local/css/VWjgmNV4V/VWjgmNV4V.js\";import*as sharedStyle from\"#framer/local/css/ztTLPqftH/ztTLPqftH.js\";import metadataProvider from\"#framer/local/webPageMetadata/njSXsfF_F/njSXsfF_F.js\";const Topbar2Fonts=getFonts(Topbar2);const ArticlesButtonFonts=getFonts(ArticlesButton);const MotionAWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.a);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const VideoFonts=getFonts(Video);const ProjectInfoFonts=getFonts(ProjectInfo);const MotionDivWithFX=withFX(motion.div);const RichTextWithFX=withFX(RichText);const ContainerWithFX=withFX(Container);const ImageWithFX=withFX(Image);const NewButtonFonts=getFonts(NewButton);const FooterFonts=getFonts(Footer);const LabelFonts=getFonts(Label);const breakpoints={IEeflO199:\"(min-width: 1194px) and (max-width: 1439px)\",Lgk4TTiLE:\"(min-width: 1440px)\",scasXMvdx:\"(max-width: 809px)\",W5gGEQvDT:\"(min-width: 810px) and (max-width: 1193px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-ovsJS\";const variantClassNames={IEeflO199:\"framer-v-cpqx2w\",Lgk4TTiLE:\"framer-v-th5s7v\",scasXMvdx:\"framer-v-ojau1r\",W5gGEQvDT:\"framer-v-18pohr1\"};const transition1={delay:0,duration:.5,ease:[.12,.23,.5,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:100};const transition2={delay:.1,duration:.5,ease:[.12,.23,.5,1],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const transition3={delay:.2,duration:.5,ease:[.12,.23,.5,1],type:\"tween\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const equals=(a,b)=>{return typeof a===\"string\"&&typeof b===\"string\"?a.toLowerCase()===b.toLowerCase():a===b;};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:150};const negate=value=>{return!value;};const transition4={delay:.3,duration:.5,ease:[.12,.23,.5,1],type:\"tween\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Tablet large\":\"IEeflO199\",Desktop:\"Lgk4TTiLE\",Phone:\"scasXMvdx\",Tablet:\"W5gGEQvDT\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"Lgk4TTiLE\"};};const cursor={component:Label,variant:\"nvRA7_k9L\"};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 currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"njSXsfF_F\",data:ProjectDetailLive,type:\"Collection\"},select:[{collection:\"njSXsfF_F\",name:\"uE9ZQ8GNR\",type:\"Identifier\"},{collection:\"njSXsfF_F\",name:\"X_FMg380T\",type:\"Identifier\"},{collection:\"njSXsfF_F\",name:\"APQyr_EY2\",type:\"Identifier\"},{collection:\"njSXsfF_F\",name:\"QVf8RTNKT\",type:\"Identifier\"},{collection:\"njSXsfF_F\",name:\"H0fVhiPYj\",type:\"Identifier\"},{collection:\"njSXsfF_F\",name:\"th_FKHRQD\",type:\"Identifier\"},{collection:\"njSXsfF_F\",name:\"ZJmELtkGe\",type:\"Identifier\"},{collection:\"njSXsfF_F\",name:\"mIgFaorbT\",type:\"Identifier\"},{collection:\"njSXsfF_F\",name:\"G6yeC0P4M\",type:\"Identifier\"},{collection:\"njSXsfF_F\",name:\"l4Ghnvjd8\",type:\"Identifier\"},{collection:\"njSXsfF_F\",name:\"WhlsZcqb2\",type:\"Identifier\"},{collection:\"njSXsfF_F\",name:\"EkLzeuBrL\",type:\"Identifier\"},{collection:\"njSXsfF_F\",name:\"JgceV7dVI\",type:\"Identifier\"},{collection:\"njSXsfF_F\",name:\"onkqx6GSs\",type:\"Identifier\"},{collection:\"njSXsfF_F\",name:\"HhcezxxMl\",type:\"Identifier\"},{collection:\"njSXsfF_F\",name:\"IpiVpkrQA\",type:\"Identifier\"},{collection:\"njSXsfF_F\",name:\"cezyOrdoA\",type:\"Identifier\"},{collection:\"njSXsfF_F\",name:\"NCAjU36EN\",type:\"Identifier\"},{collection:\"njSXsfF_F\",name:\"WMVLWkby_\",type:\"Identifier\"},{collection:\"njSXsfF_F\",name:\"Eivr2ORVP\",type:\"Identifier\"},{collection:\"njSXsfF_F\",name:\"iLxrCox9R\",type:\"Identifier\"},{collection:\"njSXsfF_F\",name:\"WOMJ2AEIN\",type:\"Identifier\"},{collection:\"njSXsfF_F\",name:\"xQqKwICD0\",type:\"Identifier\"},{collection:\"njSXsfF_F\",name:\"sFWid8YOR\",type:\"Identifier\"},{collection:\"njSXsfF_F\",name:\"dGg4MO4XT\",type:\"Identifier\"},{collection:\"njSXsfF_F\",name:\"Q9tZdP3WV\",type:\"Identifier\"},{collection:\"njSXsfF_F\",name:\"aueStCWAR\",type:\"Identifier\"},{collection:\"njSXsfF_F\",name:\"V5AX_r0dC\",type:\"Identifier\"},{collection:\"njSXsfF_F\",name:\"vL7xzhB7W\",type:\"Identifier\"},{collection:\"njSXsfF_F\",name:\"aKqC0UYzQ\",type:\"Identifier\"},{collection:\"njSXsfF_F\",name:\"Lti0sORqT\",type:\"Identifier\"},{collection:\"njSXsfF_F\",name:\"jzA8u7mNy\",type:\"Identifier\"},{collection:\"njSXsfF_F\",name:\"oPMT9Ua0C\",type:\"Identifier\"},{collection:\"njSXsfF_F\",name:\"FTv6oF3yR\",type:\"Identifier\"},{collection:\"njSXsfF_F\",name:\"dsAi9CUMD\",type:\"Identifier\"},{collection:\"njSXsfF_F\",name:\"AAZVUZU2D\",type:\"Identifier\"},{collection:\"njSXsfF_F\",name:\"eaa8D0PRM\",type:\"Identifier\"},{collection:\"njSXsfF_F\",name:\"EHMUMCj9h\",type:\"Identifier\"},{collection:\"njSXsfF_F\",name:\"napVjWelr\",type:\"Identifier\"},{collection:\"njSXsfF_F\",name:\"TXCJym12C\",type:\"Identifier\"},{collection:\"njSXsfF_F\",name:\"ATV98FLeP\",type:\"Identifier\"},{collection:\"njSXsfF_F\",name:\"Xb8xHKlJU\",type:\"Identifier\"},{collection:\"njSXsfF_F\",name:\"PaycHaPIM\",type:\"Identifier\"},{collection:\"njSXsfF_F\",name:\"Tdf8AH4GJ\",type:\"Identifier\"},{collection:\"njSXsfF_F\",name:\"mStR5aq2G\",type:\"Identifier\"},{collection:\"njSXsfF_F\",name:\"dlrABkDCn\",type:\"Identifier\"},{collection:\"njSXsfF_F\",name:\"ukj_UN73A\",type:\"Identifier\"},{collection:\"njSXsfF_F\",name:\"FZ3RgaLcD\",type:\"Identifier\"},{collection:\"njSXsfF_F\",name:\"oq5LAHkFZ\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"njSXsfF_F\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,AQIWod3KV,eaa8D0PRM=getFromCurrentRouteData(\"eaa8D0PRM\")??\"\",uE9ZQ8GNR=getFromCurrentRouteData(\"uE9ZQ8GNR\")??\"\",QVf8RTNKT=getFromCurrentRouteData(\"QVf8RTNKT\")??true,APQyr_EY2=getFromCurrentRouteData(\"APQyr_EY2\"),AAZVUZU2D=getFromCurrentRouteData(\"AAZVUZU2D\")??true,dsAi9CUMD=getFromCurrentRouteData(\"dsAi9CUMD\"),FZ3RgaLcD=getFromCurrentRouteData(\"FZ3RgaLcD\")??\"\",Tdf8AH4GJ=getFromCurrentRouteData(\"Tdf8AH4GJ\")??\"\",mStR5aq2G=getFromCurrentRouteData(\"mStR5aq2G\")??\"\",TXCJym12C=getFromCurrentRouteData(\"TXCJym12C\")??\"\",napVjWelr=getFromCurrentRouteData(\"napVjWelr\")??\"\",ATV98FLeP=getFromCurrentRouteData(\"ATV98FLeP\")??\"\",Xb8xHKlJU=getFromCurrentRouteData(\"Xb8xHKlJU\")??\"\",PaycHaPIM=getFromCurrentRouteData(\"PaycHaPIM\")??\"\",EHMUMCj9h=getFromCurrentRouteData(\"EHMUMCj9h\")??\"\",dlrABkDCn=getFromCurrentRouteData(\"dlrABkDCn\")??\"\",ukj_UN73A=getFromCurrentRouteData(\"ukj_UN73A\")??\"\",oPMT9Ua0C=getFromCurrentRouteData(\"oPMT9Ua0C\")??true,Q9tZdP3WV=getFromCurrentRouteData(\"Q9tZdP3WV\"),aueStCWAR=getFromCurrentRouteData(\"aueStCWAR\"),V5AX_r0dC=getFromCurrentRouteData(\"V5AX_r0dC\"),vL7xzhB7W=getFromCurrentRouteData(\"vL7xzhB7W\"),H0fVhiPYj=getFromCurrentRouteData(\"H0fVhiPYj\"),jzA8u7mNy=getFromCurrentRouteData(\"jzA8u7mNy\")??true,sFWid8YOR=getFromCurrentRouteData(\"sFWid8YOR\"),dGg4MO4XT=getFromCurrentRouteData(\"dGg4MO4XT\"),aKqC0UYzQ=getFromCurrentRouteData(\"aKqC0UYzQ\"),Lti0sORqT=getFromCurrentRouteData(\"Lti0sORqT\"),th_FKHRQD=getFromCurrentRouteData(\"th_FKHRQD\"),ZJmELtkGe=getFromCurrentRouteData(\"ZJmELtkGe\"),NCAjU36EN=getFromCurrentRouteData(\"NCAjU36EN\")??true,mIgFaorbT=getFromCurrentRouteData(\"mIgFaorbT\"),xQqKwICD0=getFromCurrentRouteData(\"xQqKwICD0\")??true,WOMJ2AEIN=getFromCurrentRouteData(\"WOMJ2AEIN\"),G6yeC0P4M=getFromCurrentRouteData(\"G6yeC0P4M\"),l4Ghnvjd8=getFromCurrentRouteData(\"l4Ghnvjd8\"),WhlsZcqb2=getFromCurrentRouteData(\"WhlsZcqb2\"),WMVLWkby_=getFromCurrentRouteData(\"WMVLWkby_\")??true,EkLzeuBrL=getFromCurrentRouteData(\"EkLzeuBrL\"),JgceV7dVI=getFromCurrentRouteData(\"JgceV7dVI\"),Eivr2ORVP=getFromCurrentRouteData(\"Eivr2ORVP\")??true,onkqx6GSs=getFromCurrentRouteData(\"onkqx6GSs\"),HhcezxxMl=getFromCurrentRouteData(\"HhcezxxMl\"),IpiVpkrQA=getFromCurrentRouteData(\"IpiVpkrQA\"),iLxrCox9R=getFromCurrentRouteData(\"iLxrCox9R\")??true,cezyOrdoA=getFromCurrentRouteData(\"cezyOrdoA\"),oq5LAHkFZ=getFromCurrentRouteData(\"oq5LAHkFZ\")??\"\",X_FMg380T=getFromCurrentRouteData(\"X_FMg380T\")??\"\",FTv6oF3yR=getFromCurrentRouteData(\"FTv6oF3yR\"),HCtMEjPnj,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(currentRouteData,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);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const visible=equals(AAZVUZU2D,true);const router=useRouter();const visible1=equals(oPMT9Ua0C,true);const visible2=equals(negate(jzA8u7mNy));const visible3=equals(NCAjU36EN,true);const visible4=equals(xQqKwICD0,true);const visible5=equals(WMVLWkby_,true);const visible6=equals(Eivr2ORVP,true);const visible7=equals(iLxrCox9R,true);useCustomCursors({\"5ldsd4\":cursor});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"Lgk4TTiLE\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-3946da19-c654-4f3d-8522-a334e1cd061a, rgb(0, 0, 0)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-th5s7v\",className),\"data-framer-cursor\":\"5ldsd4\",ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-w5iwjx\",\"data-framer-name\":\"Navigation\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:91,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-9uok4q-container\",nodeId:\"O7nXWRzuF\",scopeId:\"njSXsfF_F\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEeflO199:{variant:\"qk_KX1HY1\"},scasXMvdx:{variant:\"shJeCeZMv\"},W5gGEQvDT:{variant:\"shJeCeZMv\"}},children:/*#__PURE__*/_jsx(Topbar2,{aWCKfH82X:\"UFxWKFDoL\",BVAqAOoof:false,ciosPVlOF:\"UFxWKFDoL\",dxOh_QgzH:\"Consulting\",FNXZamDaG:\"var(--token-b825594c-388f-4167-825f-9835802c2a79, rgb(0, 160, 234))\",height:\"100%\",id:\"O7nXWRzuF\",layoutId:\"O7nXWRzuF\",MmRWGwT0h:\"UFxWKFDoL\",style:{width:\"100%\"},variant:\"FdiGwMGzg\",w3JXfKJiI:{borderBottomWidth:1,borderColor:'var(--token-b825594c-388f-4167-825f-9835802c2a79, rgb(0, 160, 234)) /* {\"name\":\"Blue\"} */',borderLeftWidth:0,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:0},width:\"100%\",XH2WjuGvX:\"JVSBaJ3ck\",Xz03KBBeG:\"UFxWKFDoL\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18gnyo\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ftQ_TPYUy\"},motionChild:true,nodeId:\"hFk2U4i4F\",scopeId:\"njSXsfF_F\",children:/*#__PURE__*/_jsxs(MotionAWithOptimizedAppearEffect,{animate:animation,className:\"framer-x18w5o framer-1qqp1uv\",\"data-framer-appear-id\":\"x18w5o\",initial:animation1,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEeflO199:{y:(componentViewport?.y||0)+0+0+150+0+2.799999999999997},scasXMvdx:{y:(componentViewport?.y||0)+0+0+150+0+2.799999999999997},W5gGEQvDT:{y:(componentViewport?.y||0)+0+0+150+0+2.799999999999997}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,y:(componentViewport?.y||0)+0+0+200+0+2.799999999999997,children:/*#__PURE__*/_jsx(Container,{className:\"framer-oeutmz-container\",nodeId:\"R6ZE6pjc5\",scopeId:\"njSXsfF_F\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEeflO199:{variant:\"wKpPIseHq\"},scasXMvdx:{variant:\"wKpPIseHq\"},W5gGEQvDT:{variant:\"wKpPIseHq\"}},children:/*#__PURE__*/_jsx(ArticlesButton,{height:\"100%\",id:\"R6ZE6pjc5\",layoutId:\"R6ZE6pjc5\",QPPqGh6zK:\"PROJECTS\",variant:\"CocMbNNyT\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1tlxu39\",\"data-styles-preset\":\"ztTLPqftH\",children:\"/\"})}),className:\"framer-yj38ml\",\"data-framer-name\":\"Future-proof your business\",fonts:[\"Inter\"],text:AQIWod3KV,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEeflO199:{y:(componentViewport?.y||0)+0+0+150+0+2.799999999999997},scasXMvdx:{y:(componentViewport?.y||0)+0+0+150+0+2.799999999999997},W5gGEQvDT:{y:(componentViewport?.y||0)+0+0+150+0+2.799999999999997}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,y:(componentViewport?.y||0)+0+0+200+0+2.799999999999997,children:/*#__PURE__*/_jsx(Container,{className:\"framer-uyb9zi-container\",nodeId:\"ztVXilpWp\",scopeId:\"njSXsfF_F\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEeflO199:{variant:\"EjSvqz3VR\"},scasXMvdx:{variant:\"EjSvqz3VR\"},W5gGEQvDT:{variant:\"EjSvqz3VR\"}},children:/*#__PURE__*/_jsx(ArticlesButton,{height:\"100%\",id:\"ztVXilpWp\",layoutId:\"ztVXilpWp\",QPPqGh6zK:eaa8D0PRM,variant:\"JjIHjOEhc\",width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation2,className:\"framer-14v933y\",\"data-framer-appear-id\":\"14v933y\",initial:animation1,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{W5gGEQvDT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1wg67cx\",\"data-styles-preset\":\"MOUOTJIAz\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4575e468-d744-4e13-ad00-dc25e66bbbef, rgb(244, 245, 245))\"},children:\"Building the next frontier for medical research in Africa\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1wg67cx\",\"data-styles-preset\":\"MOUOTJIAz\",style:{\"--framer-text-color\":\"var(--token-4575e468-d744-4e13-ad00-dc25e66bbbef, rgb(244, 245, 245))\"},children:\"Building the next frontier for medical research in Africa\"})}),className:\"framer-mcsny7\",\"data-framer-name\":\"Future-proof your business\",fonts:[\"Inter\"],text:uE9ZQ8GNR,verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation3,className:\"framer-f3w641\",\"data-framer-appear-id\":\"f3w641\",initial:animation1,optimized:true,style:{transformPerspective:1200},children:[QVf8RTNKT&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEeflO199:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2262,intrinsicWidth:4149,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+329.28+0+-100),pixelHeight:2262,pixelWidth:4149,sizes:`calc(${componentViewport?.width||\"100vw\"} - 64px)`,...toResponsiveImage(APQyr_EY2)}},scasXMvdx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2262,intrinsicWidth:4149,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+329.28+0+-108),pixelHeight:2262,pixelWidth:4149,sizes:`calc(${componentViewport?.width||\"100vw\"} - 32px)`,...toResponsiveImage(APQyr_EY2)}},W5gGEQvDT:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2262,intrinsicWidth:4149,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+329.28+0+-108),pixelHeight:2262,pixelWidth:4149,sizes:`calc(${componentViewport?.width||\"100vw\"} - 64px)`,...toResponsiveImage(APQyr_EY2)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2262,intrinsicWidth:4149,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+379.28+0+0),pixelHeight:2262,pixelWidth:4149,sizes:\"1312px\",...toResponsiveImage(APQyr_EY2)},className:\"framer-1yk1n1c\",\"data-framer-name\":\"Rectangle 284\"})}),visible&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1sdjnvr-container\",isModuleExternal:true,nodeId:\"xvt0FwFx4\",scopeId:\"njSXsfF_F\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{scasXMvdx:{borderRadius:16,bottomLeftRadius:16,bottomRightRadius:16,topLeftRadius:16,topRightRadius:16},W5gGEQvDT:{borderRadius:16,bottomLeftRadius:16,bottomRightRadius:16,topLeftRadius:16,topRightRadius:16}},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:24,bottomLeftRadius:24,bottomRightRadius:24,controls:false,height:\"100%\",id:\"xvt0FwFx4\",isMixedBorderRadius:false,layoutId:\"xvt0FwFx4\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:dsAi9CUMD,srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:24,topRightRadius:24,volume:25,width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-rrocmb\",\"data-framer-name\":\"Project info\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:FZ3RgaLcD,implicitPathVariables:undefined},{href:FZ3RgaLcD,implicitPathVariables:undefined},{href:FZ3RgaLcD,implicitPathVariables:undefined},{href:FZ3RgaLcD,implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEeflO199:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+969.28+0},scasXMvdx:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+548.28+0},W5gGEQvDT:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+761.28+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:289,width:\"1440px\",y:(componentViewport?.y||0)+0+1099.28+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-z18e9v-container\",nodeId:\"aW17_jCec\",scopeId:\"njSXsfF_F\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEeflO199:{CnJRBFEm4:resolvedLinks[1],variant:\"lnY4I8ahe\"},scasXMvdx:{CnJRBFEm4:resolvedLinks[3],variant:\"ewTrXe46M\"},W5gGEQvDT:{CnJRBFEm4:resolvedLinks[2],variant:\"rj72LJ4Cs\"}},children:/*#__PURE__*/_jsx(ProjectInfo,{biM4QA9NX:napVjWelr,CnJRBFEm4:resolvedLinks[0],Dwr2xaD6v:Xb8xHKlJU,height:\"100%\",HsOvLF4My:Tdf8AH4GJ,id:\"aW17_jCec\",layoutId:\"aW17_jCec\",lFnuUL8mK:ATV98FLeP,lOOu1HBjn:dlrABkDCn,nn1DCxtdF:mStR5aq2G,op4ZuuG0H:EHMUMCj9h,style:{width:\"100%\"},UiaCyzgj6:eaa8D0PRM,variant:\"CmnEcxYsI\",VgcF2RdnW:ukj_UN73A,VWHnqHwqo:TXCJym12C,width:\"100%\",zGu51MuMK:PaycHaPIM})})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1korje8\",children:[visible1&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-3pk1ar\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEeflO199:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2831,intrinsicWidth:2044,pixelHeight:2831,pixelWidth:2044,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 124px) / 4, 200px) * 2 + 20px)`,...toResponsiveImage(Q9tZdP3WV)}},scasXMvdx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2831,intrinsicWidth:2044,pixelHeight:2831,pixelWidth:2044,sizes:`max(${componentViewport?.width||\"100vw\"} - 32px, 200px)`,...toResponsiveImage(Q9tZdP3WV)}},W5gGEQvDT:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2831,intrinsicWidth:2044,pixelHeight:2831,pixelWidth:2044,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 112px) / 4, 200px) * 2 - 35px)`,...toResponsiveImage(Q9tZdP3WV)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2831,intrinsicWidth:2044,pixelHeight:2831,pixelWidth:2044,sizes:\"646px\",...toResponsiveImage(Q9tZdP3WV)},className:\"framer-p9mtt2\"})})}),visible1&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1947bwi\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEeflO199:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2831,intrinsicWidth:2044,pixelHeight:2831,pixelWidth:2044,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 124px) / 4, 200px) * 2 + 20px)`,...toResponsiveImage(aueStCWAR)}},scasXMvdx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2831,intrinsicWidth:2044,pixelHeight:2831,pixelWidth:2044,sizes:`max(${componentViewport?.width||\"100vw\"} - 32px, 200px)`,...toResponsiveImage(aueStCWAR)}},W5gGEQvDT:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2831,intrinsicWidth:2044,pixelHeight:2831,pixelWidth:2044,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 112px) / 4, 200px) * 2 - 35px)`,...toResponsiveImage(aueStCWAR)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2831,intrinsicWidth:2044,pixelHeight:2831,pixelWidth:2044,sizes:\"646px\",...toResponsiveImage(aueStCWAR)},className:\"framer-1hbf64a\"})})}),visible1&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-tin6gh\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEeflO199:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2831,intrinsicWidth:2045,pixelHeight:2831,pixelWidth:2045,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 124px) / 4, 200px) * 2 + 20px)`,...toResponsiveImage(V5AX_r0dC)}},scasXMvdx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2831,intrinsicWidth:2045,pixelHeight:2831,pixelWidth:2045,sizes:`max(${componentViewport?.width||\"100vw\"} - 32px, 200px)`,...toResponsiveImage(V5AX_r0dC)}},W5gGEQvDT:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2831,intrinsicWidth:2045,pixelHeight:2831,pixelWidth:2045,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 112px) / 4, 200px) * 2 - 35px)`,...toResponsiveImage(V5AX_r0dC)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2831,intrinsicWidth:2045,pixelHeight:2831,pixelWidth:2045,sizes:\"646px\",...toResponsiveImage(V5AX_r0dC)},className:\"framer-8sphpg\"})})}),visible1&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1mbhu7z\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEeflO199:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2831,intrinsicWidth:2045,pixelHeight:2831,pixelWidth:2045,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 124px) / 4, 200px) * 2 + 20px)`,...toResponsiveImage(vL7xzhB7W)}},scasXMvdx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2831,intrinsicWidth:2045,pixelHeight:2831,pixelWidth:2045,sizes:`max(${componentViewport?.width||\"100vw\"} - 32px, 200px)`,...toResponsiveImage(vL7xzhB7W)}},W5gGEQvDT:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2831,intrinsicWidth:2045,pixelHeight:2831,pixelWidth:2045,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 112px) / 4, 200px) * 2 - 35px)`,...toResponsiveImage(vL7xzhB7W)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2831,intrinsicWidth:2045,pixelHeight:2831,pixelWidth:2045,sizes:\"646px\",...toResponsiveImage(vL7xzhB7W)},className:\"framer-1abnf3h\"})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-172e4n6\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEeflO199:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2261,intrinsicWidth:4149,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1258.28+0+0+0+0),pixelHeight:2261,pixelWidth:4149,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 124px) / 4, 200px) * 4 + 60px)`,...toResponsiveImage(H0fVhiPYj),...{positionX:\"center\",positionY:\"top\"}}},scasXMvdx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2261,intrinsicWidth:4149,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+837.28+0+0+0+0),pixelHeight:2261,pixelWidth:4149,sizes:`max(${componentViewport?.width||\"100vw\"} - 32px, 200px)`,...toResponsiveImage(H0fVhiPYj),...{positionX:\"center\",positionY:\"top\"}}},W5gGEQvDT:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2261,intrinsicWidth:4149,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1050.28+0+0+0+0),pixelHeight:2261,pixelWidth:4149,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 112px) / 4, 200px) * 4 - 54px)`,...toResponsiveImage(H0fVhiPYj),...{positionX:\"center\",positionY:\"top\"}}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2261,intrinsicWidth:4149,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1388.28+0+0+0+0),pixelHeight:2261,pixelWidth:4149,sizes:\"1312px\",...toResponsiveImage(H0fVhiPYj),...{positionX:\"center\",positionY:\"top\"}},className:\"framer-5c6xuw\"})})}),visible2&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-cub0zu\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEeflO199:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2831,intrinsicWidth:2044,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1258.28+0+660+0+0),pixelHeight:2831,pixelWidth:2044,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 124px) / 4, 200px) * 2 + 20px)`,...toResponsiveImage(sFWid8YOR),...{positionX:\"left\",positionY:\"top\"}}},scasXMvdx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2831,intrinsicWidth:2044,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+837.28+0+236+0+0),pixelHeight:2831,pixelWidth:2044,sizes:`max(${componentViewport?.width||\"100vw\"} - 32px, 200px)`,...toResponsiveImage(sFWid8YOR),...{positionX:\"left\",positionY:\"top\"}}},W5gGEQvDT:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2831,intrinsicWidth:2044,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1050.28+0+448+0+0),pixelHeight:2831,pixelWidth:2044,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 112px) / 4, 200px) * 2 - 35px)`,...toResponsiveImage(sFWid8YOR),...{positionX:\"left\",positionY:\"top\"}}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2831,intrinsicWidth:2044,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1388.28+0+740+0+0),pixelHeight:2831,pixelWidth:2044,sizes:\"646px\",...toResponsiveImage(sFWid8YOR),...{positionX:\"left\",positionY:\"top\"}},className:\"framer-w7ebi0\"})})}),visible2&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ftjl2z\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEeflO199:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2831,intrinsicWidth:2044,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1258.28+0+660+0+0),pixelHeight:2831,pixelWidth:2044,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 124px) / 4, 200px) * 2 + 20px)`,...toResponsiveImage(dGg4MO4XT)}},scasXMvdx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2831,intrinsicWidth:2044,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+837.28+0+758+0+0),pixelHeight:2831,pixelWidth:2044,sizes:`max(${componentViewport?.width||\"100vw\"} - 32px, 200px)`,...toResponsiveImage(dGg4MO4XT)}},W5gGEQvDT:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2831,intrinsicWidth:2044,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1050.28+0+448+0+0),pixelHeight:2831,pixelWidth:2044,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 112px) / 4, 200px) * 2 - 35px)`,...toResponsiveImage(dGg4MO4XT)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2831,intrinsicWidth:2044,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1388.28+0+740+0+0),pixelHeight:2831,pixelWidth:2044,sizes:\"646px\",...toResponsiveImage(dGg4MO4XT)},className:\"framer-1l1iv7j\"})})}),visible1&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-q0g5tl\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEeflO199:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2831,intrinsicWidth:2045,pixelHeight:2831,pixelWidth:2045,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 124px) / 4, 200px) * 2 + 20px)`,...toResponsiveImage(aKqC0UYzQ)}},scasXMvdx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2831,intrinsicWidth:2045,pixelHeight:2831,pixelWidth:2045,sizes:`max(${componentViewport?.width||\"100vw\"} - 32px, 200px)`,...toResponsiveImage(aKqC0UYzQ)}},W5gGEQvDT:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2831,intrinsicWidth:2045,pixelHeight:2831,pixelWidth:2045,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 112px) / 4, 200px) * 2 - 35px)`,...toResponsiveImage(aKqC0UYzQ)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2831,intrinsicWidth:2045,pixelHeight:2831,pixelWidth:2045,sizes:\"646px\",...toResponsiveImage(aKqC0UYzQ)},className:\"framer-q6ngb3\"})})}),visible1&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1hw08kj\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEeflO199:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2831,intrinsicWidth:2045,pixelHeight:2831,pixelWidth:2045,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 124px) / 4, 200px) * 2 + 20px)`,...toResponsiveImage(Lti0sORqT)}},scasXMvdx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2831,intrinsicWidth:2045,pixelHeight:2831,pixelWidth:2045,sizes:`max(${componentViewport?.width||\"100vw\"} - 32px, 200px)`,...toResponsiveImage(Lti0sORqT)}},W5gGEQvDT:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2831,intrinsicWidth:2045,pixelHeight:2831,pixelWidth:2045,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 112px) / 4, 200px) * 2 - 35px)`,...toResponsiveImage(Lti0sORqT)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2831,intrinsicWidth:2045,pixelHeight:2831,pixelWidth:2045,sizes:\"646px\",...toResponsiveImage(Lti0sORqT)},className:\"framer-1qyq8ia\"})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-jwi8ne\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEeflO199:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2262,intrinsicWidth:4149,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1258.28+0+1400+0+0),pixelHeight:2262,pixelWidth:4149,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 124px) / 4, 200px) * 4 + 60px)`,...toResponsiveImage(th_FKHRQD)}},scasXMvdx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2262,intrinsicWidth:4149,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+837.28+0+1280+0+0),pixelHeight:2262,pixelWidth:4149,sizes:`max(${componentViewport?.width||\"100vw\"} - 32px, 200px)`,...toResponsiveImage(th_FKHRQD)}},W5gGEQvDT:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2262,intrinsicWidth:4149,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1050.28+0+1004+0+0),pixelHeight:2262,pixelWidth:4149,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 112px) / 4, 200px) * 4 - 54px)`,...toResponsiveImage(th_FKHRQD)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2262,intrinsicWidth:4149,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1388.28+0+1625+0+0),pixelHeight:2262,pixelWidth:4149,sizes:\"1312px\",...toResponsiveImage(th_FKHRQD)},className:\"framer-7hhp2i\"})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ou8dic\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEeflO199:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2262,intrinsicWidth:4149,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1258.28+0+2060+0+0),pixelHeight:2262,pixelWidth:4149,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 124px) / 4, 200px) * 4 + 60px)`,...toResponsiveImage(ZJmELtkGe)}},scasXMvdx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2262,intrinsicWidth:4149,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+837.28+0+1516+0+0),pixelHeight:2262,pixelWidth:4149,sizes:`max(${componentViewport?.width||\"100vw\"} - 32px, 200px)`,...toResponsiveImage(ZJmELtkGe)}},W5gGEQvDT:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2262,intrinsicWidth:4149,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1050.28+0+1452+0+0),pixelHeight:2262,pixelWidth:4149,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 112px) / 4, 200px) * 4 - 54px)`,...toResponsiveImage(ZJmELtkGe)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2262,intrinsicWidth:4149,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1388.28+0+2365+0+0),pixelHeight:2262,pixelWidth:4149,sizes:\"1312px\",...toResponsiveImage(ZJmELtkGe)},className:\"framer-1djc6uc\"})})}),visible3&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-130itco\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEeflO199:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2262,intrinsicWidth:4149,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1258.28+0+2720+0+0),pixelHeight:2262,pixelWidth:4149,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 124px) / 4, 200px) * 4 + 60px)`,...toResponsiveImage(mIgFaorbT)}},scasXMvdx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2262,intrinsicWidth:4149,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+837.28+0+1752+0+0),pixelHeight:2262,pixelWidth:4149,sizes:`max(${componentViewport?.width||\"100vw\"} - 32px, 200px)`,...toResponsiveImage(mIgFaorbT)}},W5gGEQvDT:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2262,intrinsicWidth:4149,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1050.28+0+1900+0+0),pixelHeight:2262,pixelWidth:4149,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 112px) / 4, 200px) * 4 - 54px)`,...toResponsiveImage(mIgFaorbT)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2262,intrinsicWidth:4149,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1388.28+0+3105+0+0),pixelHeight:2262,pixelWidth:4149,sizes:\"1312px\",...toResponsiveImage(mIgFaorbT)},className:\"framer-y9sze4\"})})}),visible4&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-lsn0bn\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEeflO199:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2262,intrinsicWidth:4149,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1258.28+0+3380+0+0),pixelHeight:2262,pixelWidth:4149,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 124px) / 4, 200px) * 4 + 60px)`,...toResponsiveImage(WOMJ2AEIN)}},scasXMvdx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2262,intrinsicWidth:4149,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+837.28+0+1988+0+-103.5),pixelHeight:2262,pixelWidth:4149,sizes:`max(${componentViewport?.width||\"100vw\"} - 32px, 200px)`,...toResponsiveImage(WOMJ2AEIN)}},W5gGEQvDT:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2262,intrinsicWidth:4149,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1050.28+0+2348+0+0),pixelHeight:2262,pixelWidth:4149,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 112px) / 4, 200px) * 4 - 54px)`,...toResponsiveImage(WOMJ2AEIN)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2262,intrinsicWidth:4149,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1388.28+0+3845+0+0),pixelHeight:2262,pixelWidth:4149,sizes:\"1312px\",...toResponsiveImage(WOMJ2AEIN)},className:\"framer-1rtg66q\"})})}),visible3&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-66n4wj\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEeflO199:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2262,intrinsicWidth:4149,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1258.28+0+4627+0+0),pixelHeight:2262,pixelWidth:4149,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 124px) / 4, 200px) * 4 + 60px)`,...toResponsiveImage(G6yeC0P4M)}},scasXMvdx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2262,intrinsicWidth:4149,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+837.28+0+2224+0+0),pixelHeight:2262,pixelWidth:4149,sizes:`max(${componentViewport?.width||\"100vw\"} - 32px, 200px)`,...toResponsiveImage(G6yeC0P4M)}},W5gGEQvDT:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2262,intrinsicWidth:4149,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1050.28+0+3169+0+0),pixelHeight:2262,pixelWidth:4149,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 112px) / 4, 200px) * 4 - 54px)`,...toResponsiveImage(G6yeC0P4M)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2262,intrinsicWidth:4149,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1388.28+0+5300+0+0),pixelHeight:2262,pixelWidth:4149,sizes:\"1312px\",...toResponsiveImage(G6yeC0P4M)},className:\"framer-1sgoxzi\"})})}),visible3&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1crjlj\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEeflO199:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2262,intrinsicWidth:4149,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1258.28+0+5287+0+0),pixelHeight:2262,pixelWidth:4149,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 124px) / 4, 200px) * 4 + 60px)`,...toResponsiveImage(l4Ghnvjd8)}},scasXMvdx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2262,intrinsicWidth:4149,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+837.28+0+2460+0+0),pixelHeight:2262,pixelWidth:4149,sizes:`max(${componentViewport?.width||\"100vw\"} - 32px, 200px)`,...toResponsiveImage(l4Ghnvjd8)}},W5gGEQvDT:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2262,intrinsicWidth:4149,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1050.28+0+3617+0+0),pixelHeight:2262,pixelWidth:4149,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 112px) / 4, 200px) * 4 - 54px)`,...toResponsiveImage(l4Ghnvjd8)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2262,intrinsicWidth:4149,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1388.28+0+6040+0+0),pixelHeight:2262,pixelWidth:4149,sizes:\"1312px\",...toResponsiveImage(l4Ghnvjd8)},className:\"framer-1empkc7\"})})}),visible3&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-gowx4z\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEeflO199:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2262,intrinsicWidth:4149,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1258.28+0+5947+0+0),pixelHeight:2262,pixelWidth:4149,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 124px) / 4, 200px) * 4 + 60px)`,...toResponsiveImage(WhlsZcqb2)}},scasXMvdx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2262,intrinsicWidth:4149,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+837.28+0+2696+0+0),pixelHeight:2262,pixelWidth:4149,sizes:`max(${componentViewport?.width||\"100vw\"} - 32px, 200px)`,...toResponsiveImage(WhlsZcqb2)}},W5gGEQvDT:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2262,intrinsicWidth:4149,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1050.28+0+4065+0+0),pixelHeight:2262,pixelWidth:4149,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 112px) / 4, 200px) * 4 - 54px)`,...toResponsiveImage(WhlsZcqb2)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2262,intrinsicWidth:4149,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1388.28+0+6780+0+0),pixelHeight:2262,pixelWidth:4149,sizes:\"1312px\",...toResponsiveImage(WhlsZcqb2)},className:\"framer-1fwbsn\"})})}),visible5&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1rcr8jn\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEeflO199:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2262,intrinsicWidth:4149,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1258.28+0+6607+0+0),pixelHeight:2262,pixelWidth:4149,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 124px) / 4, 200px) * 4 + 60px)`,...toResponsiveImage(EkLzeuBrL)}},scasXMvdx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2262,intrinsicWidth:4149,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+837.28+0+2932+0+0),pixelHeight:2262,pixelWidth:4149,sizes:`max(${componentViewport?.width||\"100vw\"} - 32px, 200px)`,...toResponsiveImage(EkLzeuBrL)}},W5gGEQvDT:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2262,intrinsicWidth:4149,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1050.28+0+4513+0+0),pixelHeight:2262,pixelWidth:4149,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 112px) / 4, 200px) * 4 - 54px)`,...toResponsiveImage(EkLzeuBrL)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2262,intrinsicWidth:4149,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1388.28+0+7520+0+0),pixelHeight:2262,pixelWidth:4149,sizes:\"1312px\",...toResponsiveImage(EkLzeuBrL)},className:\"framer-1g5djzb\"})})}),visible5&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-3xza6j\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEeflO199:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2262,intrinsicWidth:4149,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1258.28+0+7267+0+0),pixelHeight:2262,pixelWidth:4149,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 124px) / 4, 200px) * 4 + 60px)`,...toResponsiveImage(JgceV7dVI)}},scasXMvdx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2262,intrinsicWidth:4149,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+837.28+0+3168+0+0),pixelHeight:2262,pixelWidth:4149,sizes:`max(${componentViewport?.width||\"100vw\"} - 32px, 200px)`,...toResponsiveImage(JgceV7dVI)}},W5gGEQvDT:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2262,intrinsicWidth:4149,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1050.28+0+4961+0+0),pixelHeight:2262,pixelWidth:4149,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 112px) / 4, 200px) * 4 - 54px)`,...toResponsiveImage(JgceV7dVI)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2262,intrinsicWidth:4149,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1388.28+0+8260+0+0),pixelHeight:2262,pixelWidth:4149,sizes:\"1312px\",...toResponsiveImage(JgceV7dVI)},className:\"framer-yyldan\"})})}),visible6&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-exbc3h\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEeflO199:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2262,intrinsicWidth:4149,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1258.28+0+7927+0+0),pixelHeight:2262,pixelWidth:4149,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 124px) / 4, 200px) * 4 + 60px)`,...toResponsiveImage(onkqx6GSs)}},scasXMvdx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2262,intrinsicWidth:4149,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+837.28+0+3404+0+0),pixelHeight:2262,pixelWidth:4149,sizes:`max(${componentViewport?.width||\"100vw\"} - 32px, 200px)`,...toResponsiveImage(onkqx6GSs)}},W5gGEQvDT:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2262,intrinsicWidth:4149,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1050.28+0+5409+0+0),pixelHeight:2262,pixelWidth:4149,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 112px) / 4, 200px) * 4 - 54px)`,...toResponsiveImage(onkqx6GSs)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2262,intrinsicWidth:4149,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1388.28+0+9e3+0+0),pixelHeight:2262,pixelWidth:4149,sizes:\"1312px\",...toResponsiveImage(onkqx6GSs)},className:\"framer-hl8ktz\"})})}),visible6&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-192vavb\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEeflO199:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2262,intrinsicWidth:4149,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1258.28+0+8587+0+0),pixelHeight:2262,pixelWidth:4149,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 124px) / 4, 200px) * 4 + 60px)`,...toResponsiveImage(HhcezxxMl)}},scasXMvdx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2262,intrinsicWidth:4149,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+837.28+0+3640+0+0),pixelHeight:2262,pixelWidth:4149,sizes:`max(${componentViewport?.width||\"100vw\"} - 32px, 200px)`,...toResponsiveImage(HhcezxxMl)}},W5gGEQvDT:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2262,intrinsicWidth:4149,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1050.28+0+5857+0+0),pixelHeight:2262,pixelWidth:4149,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 112px) / 4, 200px) * 4 - 54px)`,...toResponsiveImage(HhcezxxMl)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2262,intrinsicWidth:4149,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1388.28+0+9740+0+0),pixelHeight:2262,pixelWidth:4149,sizes:\"1312px\",...toResponsiveImage(HhcezxxMl)},className:\"framer-mieul\"})})}),visible6&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1rk3ecn\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEeflO199:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2262,intrinsicWidth:4149,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1258.28+0+9247+0+0),pixelHeight:2262,pixelWidth:4149,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 124px) / 4, 200px) * 4 + 60px)`,...toResponsiveImage(IpiVpkrQA)}},scasXMvdx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2262,intrinsicWidth:4149,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+837.28+0+3876+0+0),pixelHeight:2262,pixelWidth:4149,sizes:`max(${componentViewport?.width||\"100vw\"} - 32px, 200px)`,...toResponsiveImage(IpiVpkrQA)}},W5gGEQvDT:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2262,intrinsicWidth:4149,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1050.28+0+6305+0+0),pixelHeight:2262,pixelWidth:4149,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 112px) / 4, 200px) * 4 - 54px)`,...toResponsiveImage(IpiVpkrQA)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2262,intrinsicWidth:4149,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1388.28+0+10480+0+0),pixelHeight:2262,pixelWidth:4149,sizes:\"1312px\",...toResponsiveImage(IpiVpkrQA)},className:\"framer-mq3a3h\"})})}),visible7&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1vjfhca\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEeflO199:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2262,intrinsicWidth:4149,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1258.28+0+9907+0+0),pixelHeight:2262,pixelWidth:4149,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 124px) / 4, 200px) * 4 + 60px)`,...toResponsiveImage(cezyOrdoA)}},scasXMvdx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2262,intrinsicWidth:4149,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+837.28+0+4112+0+0),pixelHeight:2262,pixelWidth:4149,sizes:`max(${componentViewport?.width||\"100vw\"} - 32px, 200px)`,...toResponsiveImage(cezyOrdoA)}},W5gGEQvDT:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2262,intrinsicWidth:4149,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1050.28+0+6753+0+0),pixelHeight:2262,pixelWidth:4149,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 112px) / 4, 200px) * 4 - 54px)`,...toResponsiveImage(cezyOrdoA)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2262,intrinsicWidth:4149,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1388.28+0+11220+0+0),pixelHeight:2262,pixelWidth:4149,sizes:\"1312px\",...toResponsiveImage(cezyOrdoA)},className:\"framer-4m7awv\"})})})]}),/*#__PURE__*/_jsx(Link,{href:oq5LAHkFZ,motionChild:true,nodeId:\"Bgw91cLj3\",openInNewTab:false,scopeId:\"njSXsfF_F\",smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-18n205i framer-1qqp1uv\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hu8zgo\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__spring:{damping:45,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:300,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-1400,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-n9sx8f\",style:{transformPerspective:1200}}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1j4gyim\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1tlxu39\",\"data-styles-preset\":\"ztTLPqftH\",children:\"Next Project\"})}),className:\"framer-i6zcj0\",\"data-framer-name\":\"You boostrapped your design, did it yourself, you\u2019re growing, but now it\u2019s time to level up the quaility of your brand\u2019s image or your product\u2019s experience.\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ntsg1c\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8hvxl6\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEeflO199:{y:(componentViewport?.y||0)+0+11905.28+0+0+0+50+0+113.6+0+0+0+95.68},scasXMvdx:{y:(componentViewport?.y||0)+0+5269.28+0+0+0+50+0+113.6+0+0+0+0},W5gGEQvDT:{y:(componentViewport?.y||0)+0+8285.28+0+0+0+50+0+113.6+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,y:(componentViewport?.y||0)+0+13428.28+0+0+0+50+0+113.6+0+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ovqedx-container\",nodeId:\"OHimKI283\",rendersWithMotion:true,scopeId:\"njSXsfF_F\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEeflO199:{variant:\"wKpPIseHq\"},scasXMvdx:{variant:\"wKpPIseHq\"},W5gGEQvDT:{variant:\"wKpPIseHq\"}},children:/*#__PURE__*/_jsx(ArticlesButton,{height:\"100%\",id:\"OHimKI283\",layoutId:\"OHimKI283\",QPPqGh6zK:X_FMg380T,variant:\"CocMbNNyT\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{W5gGEQvDT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1wg67cx\",\"data-styles-preset\":\"MOUOTJIAz\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4575e468-d744-4e13-ad00-dc25e66bbbef, rgb(244, 245, 245))\"},children:\"Building the next frontier for medical research in Africa\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1wg67cx\",\"data-styles-preset\":\"MOUOTJIAz\",style:{\"--framer-text-color\":\"var(--token-4575e468-d744-4e13-ad00-dc25e66bbbef, rgb(244, 245, 245))\"},children:\"Building the next frontier for medical research in Africa\"})}),className:\"framer-16y9lv\",\"data-framer-name\":\"Future-proof your business\",fonts:[\"Inter\"],style:{transformPerspective:1200},text:X_FMg380T,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEeflO199:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2385,intrinsicWidth:4143,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+11905.28+0+0+0+50+0+113.6+0+179.68),pixelHeight:2385,pixelWidth:4143,sizes:`calc(${componentViewport?.width||\"100vw\"} - 64px)`,...toResponsiveImage(FTv6oF3yR),...{positionX:\"center\",positionY:\"top\"}}},scasXMvdx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2385,intrinsicWidth:4143,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5269.28+0+0+0+50+0+113.6+0+179.68),pixelHeight:2385,pixelWidth:4143,sizes:`calc(${componentViewport?.width||\"100vw\"} - 38px)`,...toResponsiveImage(FTv6oF3yR),...{positionX:\"center\",positionY:\"top\"}}},W5gGEQvDT:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2385,intrinsicWidth:4143,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8285.28+0+0+0+50+0+113.6+0+179.68),pixelHeight:2385,pixelWidth:4143,sizes:`calc(${componentViewport?.width||\"100vw\"} - 64px)`,...toResponsiveImage(FTv6oF3yR),...{positionX:\"center\",positionY:\"top\"}}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:2385,intrinsicWidth:4143,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+13428.28+0+0+0+50+0+113.6+0+179.68),pixelHeight:2385,pixelWidth:4143,sizes:\"1312px\",...toResponsiveImage(FTv6oF3yR),...{positionX:\"center\",positionY:\"top\"}},className:\"framer-1v8hi8v\",\"data-framer-name\":\"Hero\",style:{transformPerspective:1200}})})]})]})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__spring:{damping:45,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:300,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-1400,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-dghd0s\",style:{transformPerspective:1200}})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ughul0\",\"data-framer-name\":\"Project info\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dkevew\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-gc7459\",\"data-styles-preset\":\"VWjgmNV4V\",style:{\"--framer-text-alignment\":\"center\"},children:\"Got a project in mind?\"})}),className:\"framer-1tgbx06\",\"data-framer-name\":\"Build a brand enables you reach your business goals\",fonts:[\"Inter\"],style:{transformPerspective:1200},text:HCtMEjPnj,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qulqp\",\"data-styles-preset\":\"NnUBxt9Mg\",style:{\"--framer-text-alignment\":\"center\"},children:\"We\u2019re currently open to taking on new brand identity design projects. Send  us a brief and we\u2019ll be happy to help you on your next project.\"})}),className:\"framer-vydq70\",\"data-framer-name\":\"You boostrapped your design, did it yourself, you\u2019re growing, but now it\u2019s time to level up the quaility of your brand\u2019s image or your product\u2019s experience.\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEeflO199:{y:(componentViewport?.y||0)+0+12679.560000000001+100+0+236.76},scasXMvdx:{y:(componentViewport?.y||0)+0+5849.5599999999995+50+0+0+236.76},W5gGEQvDT:{y:(componentViewport?.y||0)+0+8930.560000000001+100+0+0+236.76}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,y:(componentViewport?.y||0)+0+14202.560000000001+100+0+236.76,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-vzihv3-container\",nodeId:\"gvko0OZp2\",rendersWithMotion:true,scopeId:\"njSXsfF_F\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEeflO199:{variant:\"MNTvYfYaq\"},scasXMvdx:{variant:\"MNTvYfYaq\"},W5gGEQvDT:{variant:\"MNTvYfYaq\"}},children:/*#__PURE__*/_jsx(NewButton,{e4oIfhwJq:\"ArrowRight\",height:\"100%\",id:\"gvko0OZp2\",layoutId:\"gvko0OZp2\",qvj2oNS6h:\"Send us a brief\",variant:\"VpbOFI48Y\",width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEeflO199:{y:(componentViewport?.y||0)+0+13171.320000000002},scasXMvdx:{y:(componentViewport?.y||0)+0+6241.32},W5gGEQvDT:{y:(componentViewport?.y||0)+0+9372.320000000002}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1236,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+14694.320000000002,children:/*#__PURE__*/_jsx(Container,{className:\"framer-18mfgtg-container\",nodeId:\"FN6S3jOAc\",scopeId:\"njSXsfF_F\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEeflO199:{variant:\"m6F2uK9aZ\"},scasXMvdx:{variant:\"VhbhSkz4G\"},W5gGEQvDT:{variant:\"q6fPyuWM5\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"FN6S3jOAc\",layoutId:\"FN6S3jOAc\",style:{width:\"100%\"},variant:\"BmTa1hrz_\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ovsJS.framer-1qqp1uv, .framer-ovsJS .framer-1qqp1uv { display: block; }\",\".framer-ovsJS.framer-th5s7v { align-content: center; align-items: center; background-color: var(--token-3946da19-c654-4f3d-8522-a334e1cd061a, #000000); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-ovsJS .framer-w5iwjx { -webkit-backdrop-filter: blur(5px); align-content: center; align-items: center; backdrop-filter: blur(5px); background-color: rgba(18, 18, 18, 0.7); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 0px; max-width: 100%; min-height: 78px; overflow: visible; padding: 0px; position: fixed; right: 0px; top: 0px; z-index: 10; }\",\".framer-ovsJS .framer-9uok4q-container { flex: none; height: auto; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 10; }\",\".framer-ovsJS .framer-18gnyo { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 200px 64px 50px 64px; position: relative; width: 1440px; z-index: 2; }\",\".framer-ovsJS .framer-x18w5o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-ovsJS .framer-oeutmz-container, .framer-ovsJS .framer-uyb9zi-container, .framer-ovsJS .framer-1ovqedx-container, .framer-ovsJS .framer-vzihv3-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-ovsJS .framer-yj38ml, .framer-ovsJS .framer-i6zcj0 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-ovsJS .framer-14v933y { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-ovsJS .framer-mcsny7 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 817px; word-break: break-word; word-wrap: break-word; }\",\".framer-ovsJS .framer-f3w641 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 720px; justify-content: center; overflow: hidden; padding: 0px 64px 0px 64px; position: relative; width: 1440px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-ovsJS .framer-1yk1n1c { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: none; height: 720px; position: relative; width: 100%; }\",\".framer-ovsJS .framer-1sdjnvr-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-ovsJS .framer-rrocmb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1440px; }\",\".framer-ovsJS .framer-z18e9v-container { flex: none; height: auto; position: relative; width: 1440px; z-index: 2; }\",\".framer-ovsJS .framer-1korje8 { display: grid; flex: none; gap: 20px; grid-auto-rows: min-content; grid-template-columns: repeat(4, minmax(200px, 1fr)); grid-template-rows: repeat(3, min-content); height: min-content; justify-content: center; overflow: hidden; padding: 0px 64px 100px 64px; position: relative; width: 1440px; }\",\".framer-ovsJS .framer-3pk1ar, .framer-ovsJS .framer-1947bwi, .framer-ovsJS .framer-tin6gh, .framer-ovsJS .framer-1mbhu7z, .framer-ovsJS .framer-cub0zu, .framer-ovsJS .framer-ftjl2z, .framer-ovsJS .framer-q0g5tl, .framer-ovsJS .framer-1hw08kj { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; grid-column: auto / span 2; height: 865px; justify-content: center; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ovsJS .framer-p9mtt2, .framer-ovsJS .framer-1hbf64a, .framer-ovsJS .framer-8sphpg, .framer-ovsJS .framer-1abnf3h, .framer-ovsJS .framer-5c6xuw, .framer-ovsJS .framer-w7ebi0, .framer-ovsJS .framer-1l1iv7j, .framer-ovsJS .framer-q6ngb3, .framer-ovsJS .framer-1qyq8ia, .framer-ovsJS .framer-7hhp2i, .framer-ovsJS .framer-1djc6uc, .framer-ovsJS .framer-y9sze4, .framer-ovsJS .framer-1rtg66q, .framer-ovsJS .framer-1sgoxzi, .framer-ovsJS .framer-1empkc7, .framer-ovsJS .framer-1fwbsn, .framer-ovsJS .framer-1g5djzb, .framer-ovsJS .framer-yyldan, .framer-ovsJS .framer-hl8ktz, .framer-ovsJS .framer-mieul, .framer-ovsJS .framer-mq3a3h, .framer-ovsJS .framer-4m7awv { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-ovsJS .framer-172e4n6, .framer-ovsJS .framer-jwi8ne, .framer-ovsJS .framer-ou8dic, .framer-ovsJS .framer-130itco, .framer-ovsJS .framer-66n4wj, .framer-ovsJS .framer-1crjlj, .framer-ovsJS .framer-gowx4z, .framer-ovsJS .framer-1rcr8jn, .framer-ovsJS .framer-3xza6j, .framer-ovsJS .framer-exbc3h, .framer-ovsJS .framer-192vavb, .framer-ovsJS .framer-1rk3ecn, .framer-ovsJS .framer-1vjfhca { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; grid-column: auto / span 4; height: 720px; justify-content: center; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ovsJS .framer-lsn0bn { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; grid-column: auto / span 4; height: 1435px; justify-content: center; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ovsJS .framer-18n205i { 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: flex-start; overflow: visible; padding: 0px 64px 0px 64px; position: relative; text-decoration: none; width: 1440px; z-index: 2; }\",\".framer-ovsJS .framer-hu8zgo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ovsJS .framer-n9sx8f, .framer-ovsJS .framer-dghd0s { background-color: var(--token-2623085f-c091-4afa-9e63-f95b42a96b2e, rgba(57, 57, 58, 0.7)); flex: none; height: 2px; overflow: hidden; position: relative; width: 100%; }\",\".framer-ovsJS .framer-1j4gyim { 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; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ovsJS .framer-1ntsg1c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ovsJS .framer-8hvxl6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ovsJS .framer-16y9lv { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 850px; word-break: break-word; word-wrap: break-word; }\",\".framer-ovsJS .framer-1v8hi8v { border-top-left-radius: 24px; border-top-right-radius: 24px; flex: none; height: 349px; position: relative; width: 100%; }\",\".framer-ovsJS .framer-1ughul0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 121px; height: min-content; justify-content: center; overflow: visible; padding: 100px 64px 100px 64px; position: relative; width: 1440px; z-index: 2; }\",\".framer-ovsJS .framer-1dkevew { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-ovsJS .framer-1tgbx06 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 683px; word-break: break-word; word-wrap: break-word; }\",\".framer-ovsJS .framer-vydq70 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 635px; word-break: break-word; word-wrap: break-word; }\",\".framer-ovsJS .framer-18mfgtg-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-ovsJS.framer-th5s7v, .framer-ovsJS .framer-w5iwjx, .framer-ovsJS .framer-18gnyo, .framer-ovsJS .framer-x18w5o, .framer-ovsJS .framer-14v933y, .framer-ovsJS .framer-f3w641, .framer-ovsJS .framer-rrocmb, .framer-ovsJS .framer-3pk1ar, .framer-ovsJS .framer-1947bwi, .framer-ovsJS .framer-tin6gh, .framer-ovsJS .framer-1mbhu7z, .framer-ovsJS .framer-172e4n6, .framer-ovsJS .framer-cub0zu, .framer-ovsJS .framer-ftjl2z, .framer-ovsJS .framer-q0g5tl, .framer-ovsJS .framer-1hw08kj, .framer-ovsJS .framer-jwi8ne, .framer-ovsJS .framer-ou8dic, .framer-ovsJS .framer-130itco, .framer-ovsJS .framer-lsn0bn, .framer-ovsJS .framer-66n4wj, .framer-ovsJS .framer-1crjlj, .framer-ovsJS .framer-gowx4z, .framer-ovsJS .framer-1rcr8jn, .framer-ovsJS .framer-3xza6j, .framer-ovsJS .framer-exbc3h, .framer-ovsJS .framer-192vavb, .framer-ovsJS .framer-1rk3ecn, .framer-ovsJS .framer-1vjfhca, .framer-ovsJS .framer-18n205i, .framer-ovsJS .framer-hu8zgo, .framer-ovsJS .framer-1j4gyim, .framer-ovsJS .framer-1ntsg1c, .framer-ovsJS .framer-8hvxl6, .framer-ovsJS .framer-1ughul0, .framer-ovsJS .framer-1dkevew { gap: 0px; } .framer-ovsJS.framer-th5s7v > *, .framer-ovsJS .framer-f3w641 > *, .framer-ovsJS .framer-3pk1ar > *, .framer-ovsJS .framer-1947bwi > *, .framer-ovsJS .framer-tin6gh > *, .framer-ovsJS .framer-1mbhu7z > *, .framer-ovsJS .framer-172e4n6 > *, .framer-ovsJS .framer-cub0zu > *, .framer-ovsJS .framer-ftjl2z > *, .framer-ovsJS .framer-q0g5tl > *, .framer-ovsJS .framer-1hw08kj > *, .framer-ovsJS .framer-jwi8ne > *, .framer-ovsJS .framer-ou8dic > *, .framer-ovsJS .framer-130itco > *, .framer-ovsJS .framer-lsn0bn > *, .framer-ovsJS .framer-66n4wj > *, .framer-ovsJS .framer-1crjlj > *, .framer-ovsJS .framer-gowx4z > *, .framer-ovsJS .framer-1rcr8jn > *, .framer-ovsJS .framer-3xza6j > *, .framer-ovsJS .framer-exbc3h > *, .framer-ovsJS .framer-192vavb > *, .framer-ovsJS .framer-1rk3ecn > *, .framer-ovsJS .framer-1vjfhca > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-ovsJS.framer-th5s7v > :first-child, .framer-ovsJS .framer-18gnyo > :first-child, .framer-ovsJS .framer-14v933y > :first-child, .framer-ovsJS .framer-f3w641 > :first-child, .framer-ovsJS .framer-3pk1ar > :first-child, .framer-ovsJS .framer-1947bwi > :first-child, .framer-ovsJS .framer-tin6gh > :first-child, .framer-ovsJS .framer-1mbhu7z > :first-child, .framer-ovsJS .framer-172e4n6 > :first-child, .framer-ovsJS .framer-cub0zu > :first-child, .framer-ovsJS .framer-ftjl2z > :first-child, .framer-ovsJS .framer-q0g5tl > :first-child, .framer-ovsJS .framer-1hw08kj > :first-child, .framer-ovsJS .framer-jwi8ne > :first-child, .framer-ovsJS .framer-ou8dic > :first-child, .framer-ovsJS .framer-130itco > :first-child, .framer-ovsJS .framer-lsn0bn > :first-child, .framer-ovsJS .framer-66n4wj > :first-child, .framer-ovsJS .framer-1crjlj > :first-child, .framer-ovsJS .framer-gowx4z > :first-child, .framer-ovsJS .framer-1rcr8jn > :first-child, .framer-ovsJS .framer-3xza6j > :first-child, .framer-ovsJS .framer-exbc3h > :first-child, .framer-ovsJS .framer-192vavb > :first-child, .framer-ovsJS .framer-1rk3ecn > :first-child, .framer-ovsJS .framer-1vjfhca > :first-child, .framer-ovsJS .framer-18n205i > :first-child, .framer-ovsJS .framer-hu8zgo > :first-child, .framer-ovsJS .framer-1j4gyim > :first-child, .framer-ovsJS .framer-1ntsg1c > :first-child, .framer-ovsJS .framer-8hvxl6 > :first-child, .framer-ovsJS .framer-1dkevew > :first-child { margin-top: 0px; } .framer-ovsJS.framer-th5s7v > :last-child, .framer-ovsJS .framer-18gnyo > :last-child, .framer-ovsJS .framer-14v933y > :last-child, .framer-ovsJS .framer-f3w641 > :last-child, .framer-ovsJS .framer-3pk1ar > :last-child, .framer-ovsJS .framer-1947bwi > :last-child, .framer-ovsJS .framer-tin6gh > :last-child, .framer-ovsJS .framer-1mbhu7z > :last-child, .framer-ovsJS .framer-172e4n6 > :last-child, .framer-ovsJS .framer-cub0zu > :last-child, .framer-ovsJS .framer-ftjl2z > :last-child, .framer-ovsJS .framer-q0g5tl > :last-child, .framer-ovsJS .framer-1hw08kj > :last-child, .framer-ovsJS .framer-jwi8ne > :last-child, .framer-ovsJS .framer-ou8dic > :last-child, .framer-ovsJS .framer-130itco > :last-child, .framer-ovsJS .framer-lsn0bn > :last-child, .framer-ovsJS .framer-66n4wj > :last-child, .framer-ovsJS .framer-1crjlj > :last-child, .framer-ovsJS .framer-gowx4z > :last-child, .framer-ovsJS .framer-1rcr8jn > :last-child, .framer-ovsJS .framer-3xza6j > :last-child, .framer-ovsJS .framer-exbc3h > :last-child, .framer-ovsJS .framer-192vavb > :last-child, .framer-ovsJS .framer-1rk3ecn > :last-child, .framer-ovsJS .framer-1vjfhca > :last-child, .framer-ovsJS .framer-18n205i > :last-child, .framer-ovsJS .framer-hu8zgo > :last-child, .framer-ovsJS .framer-1j4gyim > :last-child, .framer-ovsJS .framer-1ntsg1c > :last-child, .framer-ovsJS .framer-8hvxl6 > :last-child, .framer-ovsJS .framer-1dkevew > :last-child { margin-bottom: 0px; } .framer-ovsJS .framer-w5iwjx > *, .framer-ovsJS .framer-x18w5o > *, .framer-ovsJS .framer-rrocmb > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-ovsJS .framer-w5iwjx > :first-child, .framer-ovsJS .framer-x18w5o > :first-child, .framer-ovsJS .framer-rrocmb > :first-child, .framer-ovsJS .framer-1ughul0 > :first-child { margin-left: 0px; } .framer-ovsJS .framer-w5iwjx > :last-child, .framer-ovsJS .framer-x18w5o > :last-child, .framer-ovsJS .framer-rrocmb > :last-child, .framer-ovsJS .framer-1ughul0 > :last-child { margin-right: 0px; } .framer-ovsJS .framer-18gnyo > *, .framer-ovsJS .framer-8hvxl6 > *, .framer-ovsJS .framer-1dkevew > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-ovsJS .framer-14v933y > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-ovsJS .framer-18n205i > *, .framer-ovsJS .framer-1j4gyim > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-ovsJS .framer-hu8zgo > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-ovsJS .framer-1ntsg1c > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-ovsJS .framer-1ughul0 > * { margin: 0px; margin-left: calc(121px / 2); margin-right: calc(121px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,\"@media (min-width: 1194px) and (max-width: 1439px) { .framer-ovsJS.framer-th5s7v { width: 1194px; } .framer-ovsJS .framer-18gnyo { padding: 150px 32px 50px 32px; width: 100%; } .framer-ovsJS .framer-mcsny7, .framer-ovsJS .framer-16y9lv { order: 0; width: 678px; } .framer-ovsJS .framer-f3w641 { height: min-content; padding: 0px 32px 0px 32px; width: 100%; } .framer-ovsJS .framer-1yk1n1c, .framer-ovsJS .framer-172e4n6, .framer-ovsJS .framer-jwi8ne, .framer-ovsJS .framer-ou8dic, .framer-ovsJS .framer-130itco, .framer-ovsJS .framer-66n4wj, .framer-ovsJS .framer-1crjlj, .framer-ovsJS .framer-gowx4z, .framer-ovsJS .framer-1rcr8jn, .framer-ovsJS .framer-3xza6j, .framer-ovsJS .framer-exbc3h, .framer-ovsJS .framer-192vavb, .framer-ovsJS .framer-1rk3ecn, .framer-ovsJS .framer-1vjfhca { height: 640px; } .framer-ovsJS .framer-1sdjnvr-container { flex: none; height: 200px; } .framer-ovsJS .framer-rrocmb { width: 100%; } .framer-ovsJS .framer-z18e9v-container { flex: 1 0 0px; width: 1px; } .framer-ovsJS .framer-1korje8 { padding: 0px 32px 100px 32px; width: 100%; } .framer-ovsJS .framer-3pk1ar, .framer-ovsJS .framer-1947bwi, .framer-ovsJS .framer-tin6gh, .framer-ovsJS .framer-1mbhu7z, .framer-ovsJS .framer-cub0zu, .framer-ovsJS .framer-ftjl2z, .framer-ovsJS .framer-q0g5tl, .framer-ovsJS .framer-1hw08kj { height: 720px; } .framer-ovsJS .framer-lsn0bn { height: min-content; } .framer-ovsJS .framer-1rtg66q { flex: none; height: 1227px; } .framer-ovsJS .framer-18n205i { padding: 0px 32px 0px 32px; width: 100%; } .framer-ovsJS .framer-1ovqedx-container { order: 1; } .framer-ovsJS .framer-1ughul0 { gap: 107px; padding: 100px 32px 100px 32px; width: 100%; } .framer-ovsJS .framer-1tgbx06 { width: 559px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-ovsJS .framer-1ughul0 { gap: 0px; } .framer-ovsJS .framer-1ughul0 > * { margin: 0px; margin-left: calc(107px / 2); margin-right: calc(107px / 2); } .framer-ovsJS .framer-1ughul0 > :first-child { margin-left: 0px; } .framer-ovsJS .framer-1ughul0 > :last-child { margin-right: 0px; } }}\",\"@media (min-width: 810px) and (max-width: 1193px) { .framer-ovsJS.framer-th5s7v { width: 810px; } .framer-ovsJS .framer-18gnyo { padding: 150px 32px 50px 32px; width: 100%; } .framer-ovsJS .framer-x18w5o, .framer-ovsJS .framer-hu8zgo, .framer-ovsJS .framer-1dkevew { order: 0; } .framer-ovsJS .framer-14v933y, .framer-ovsJS .framer-dghd0s { order: 1; } .framer-ovsJS .framer-mcsny7, .framer-ovsJS .framer-16y9lv { width: 471px; } .framer-ovsJS .framer-f3w641 { gap: 16px; height: min-content; padding: 0px 32px 0px 32px; width: 100%; } .framer-ovsJS .framer-1yk1n1c { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; height: 432px; } .framer-ovsJS .framer-1sdjnvr-container { flex: none; height: 200px; } .framer-ovsJS .framer-rrocmb { width: 100%; } .framer-ovsJS .framer-z18e9v-container { flex: 1 0 0px; width: 1px; } .framer-ovsJS .framer-1korje8 { gap: 16px; padding: 0px 32px 50px 32px; width: 100%; } .framer-ovsJS .framer-3pk1ar, .framer-ovsJS .framer-tin6gh, .framer-ovsJS .framer-cub0zu, .framer-ovsJS .framer-q0g5tl { gap: 16px; height: 540px; padding: 0px 0px 0px 51px; } .framer-ovsJS .framer-p9mtt2, .framer-ovsJS .framer-1hbf64a, .framer-ovsJS .framer-8sphpg, .framer-ovsJS .framer-1abnf3h, .framer-ovsJS .framer-5c6xuw, .framer-ovsJS .framer-w7ebi0, .framer-ovsJS .framer-1l1iv7j, .framer-ovsJS .framer-q6ngb3, .framer-ovsJS .framer-1qyq8ia, .framer-ovsJS .framer-7hhp2i, .framer-ovsJS .framer-1djc6uc, .framer-ovsJS .framer-y9sze4, .framer-ovsJS .framer-1sgoxzi, .framer-ovsJS .framer-1empkc7, .framer-ovsJS .framer-1fwbsn, .framer-ovsJS .framer-1g5djzb, .framer-ovsJS .framer-yyldan, .framer-ovsJS .framer-hl8ktz, .framer-ovsJS .framer-mieul, .framer-ovsJS .framer-mq3a3h, .framer-ovsJS .framer-4m7awv { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; } .framer-ovsJS .framer-1947bwi { align-content: flex-start; align-items: flex-start; gap: 16px; height: 540px; justify-content: flex-start; padding: 0px 51px 0px 0px; } .framer-ovsJS .framer-1mbhu7z, .framer-ovsJS .framer-ftjl2z, .framer-ovsJS .framer-1hw08kj { gap: 16px; height: 540px; padding: 0px 51px 0px 0px; } .framer-ovsJS .framer-172e4n6 { gap: 16px; height: 432px; padding: 0px 51px 0px 51px; } .framer-ovsJS .framer-jwi8ne, .framer-ovsJS .framer-ou8dic, .framer-ovsJS .framer-130itco, .framer-ovsJS .framer-66n4wj, .framer-ovsJS .framer-1crjlj, .framer-ovsJS .framer-gowx4z, .framer-ovsJS .framer-1rcr8jn, .framer-ovsJS .framer-3xza6j, .framer-ovsJS .framer-exbc3h, .framer-ovsJS .framer-192vavb, .framer-ovsJS .framer-1rk3ecn, .framer-ovsJS .framer-1vjfhca { border-bottom-left-radius: 51px; border-top-right-radius: 51px; gap: 16px; height: 432px; padding: 0px 51px 0px 51px; will-change: var(--framer-will-change-override, transform); } .framer-ovsJS .framer-lsn0bn { border-bottom-left-radius: 51px; border-top-right-radius: 51px; gap: 16px; height: min-content; padding: 0px 51px 0px 51px; will-change: var(--framer-will-change-override, transform); } .framer-ovsJS .framer-1rtg66q { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: 805px; } .framer-ovsJS .framer-18n205i { gap: 24px; padding: 0px 32px 50px 32px; width: 100%; } .framer-ovsJS .framer-i6zcj0 { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-ovsJS .framer-1v8hi8v { border-top-left-radius: 16px; border-top-right-radius: 16px; height: 226px; } .framer-ovsJS .framer-1ughul0 { flex-direction: column; gap: 24px; padding: 100px 32px 50px 32px; width: 100%; } .framer-ovsJS .framer-1tgbx06 { width: 551px; } .framer-ovsJS .framer-vydq70 { width: 559px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-ovsJS .framer-f3w641, .framer-ovsJS .framer-1korje8, .framer-ovsJS .framer-3pk1ar, .framer-ovsJS .framer-1947bwi, .framer-ovsJS .framer-tin6gh, .framer-ovsJS .framer-1mbhu7z, .framer-ovsJS .framer-172e4n6, .framer-ovsJS .framer-cub0zu, .framer-ovsJS .framer-ftjl2z, .framer-ovsJS .framer-q0g5tl, .framer-ovsJS .framer-1hw08kj, .framer-ovsJS .framer-jwi8ne, .framer-ovsJS .framer-ou8dic, .framer-ovsJS .framer-130itco, .framer-ovsJS .framer-lsn0bn, .framer-ovsJS .framer-66n4wj, .framer-ovsJS .framer-1crjlj, .framer-ovsJS .framer-gowx4z, .framer-ovsJS .framer-1rcr8jn, .framer-ovsJS .framer-3xza6j, .framer-ovsJS .framer-exbc3h, .framer-ovsJS .framer-192vavb, .framer-ovsJS .framer-1rk3ecn, .framer-ovsJS .framer-1vjfhca, .framer-ovsJS .framer-18n205i, .framer-ovsJS .framer-1ughul0 { gap: 0px; } .framer-ovsJS .framer-f3w641 > *, .framer-ovsJS .framer-3pk1ar > *, .framer-ovsJS .framer-1947bwi > *, .framer-ovsJS .framer-tin6gh > *, .framer-ovsJS .framer-1mbhu7z > *, .framer-ovsJS .framer-172e4n6 > *, .framer-ovsJS .framer-cub0zu > *, .framer-ovsJS .framer-ftjl2z > *, .framer-ovsJS .framer-q0g5tl > *, .framer-ovsJS .framer-1hw08kj > *, .framer-ovsJS .framer-jwi8ne > *, .framer-ovsJS .framer-ou8dic > *, .framer-ovsJS .framer-130itco > *, .framer-ovsJS .framer-lsn0bn > *, .framer-ovsJS .framer-66n4wj > *, .framer-ovsJS .framer-1crjlj > *, .framer-ovsJS .framer-gowx4z > *, .framer-ovsJS .framer-1rcr8jn > *, .framer-ovsJS .framer-3xza6j > *, .framer-ovsJS .framer-exbc3h > *, .framer-ovsJS .framer-192vavb > *, .framer-ovsJS .framer-1rk3ecn > *, .framer-ovsJS .framer-1vjfhca > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-ovsJS .framer-f3w641 > :first-child, .framer-ovsJS .framer-3pk1ar > :first-child, .framer-ovsJS .framer-1947bwi > :first-child, .framer-ovsJS .framer-tin6gh > :first-child, .framer-ovsJS .framer-1mbhu7z > :first-child, .framer-ovsJS .framer-172e4n6 > :first-child, .framer-ovsJS .framer-cub0zu > :first-child, .framer-ovsJS .framer-ftjl2z > :first-child, .framer-ovsJS .framer-q0g5tl > :first-child, .framer-ovsJS .framer-1hw08kj > :first-child, .framer-ovsJS .framer-jwi8ne > :first-child, .framer-ovsJS .framer-ou8dic > :first-child, .framer-ovsJS .framer-130itco > :first-child, .framer-ovsJS .framer-lsn0bn > :first-child, .framer-ovsJS .framer-66n4wj > :first-child, .framer-ovsJS .framer-1crjlj > :first-child, .framer-ovsJS .framer-gowx4z > :first-child, .framer-ovsJS .framer-1rcr8jn > :first-child, .framer-ovsJS .framer-3xza6j > :first-child, .framer-ovsJS .framer-exbc3h > :first-child, .framer-ovsJS .framer-192vavb > :first-child, .framer-ovsJS .framer-1rk3ecn > :first-child, .framer-ovsJS .framer-1vjfhca > :first-child, .framer-ovsJS .framer-18n205i > :first-child, .framer-ovsJS .framer-1ughul0 > :first-child { margin-top: 0px; } .framer-ovsJS .framer-f3w641 > :last-child, .framer-ovsJS .framer-3pk1ar > :last-child, .framer-ovsJS .framer-1947bwi > :last-child, .framer-ovsJS .framer-tin6gh > :last-child, .framer-ovsJS .framer-1mbhu7z > :last-child, .framer-ovsJS .framer-172e4n6 > :last-child, .framer-ovsJS .framer-cub0zu > :last-child, .framer-ovsJS .framer-ftjl2z > :last-child, .framer-ovsJS .framer-q0g5tl > :last-child, .framer-ovsJS .framer-1hw08kj > :last-child, .framer-ovsJS .framer-jwi8ne > :last-child, .framer-ovsJS .framer-ou8dic > :last-child, .framer-ovsJS .framer-130itco > :last-child, .framer-ovsJS .framer-lsn0bn > :last-child, .framer-ovsJS .framer-66n4wj > :last-child, .framer-ovsJS .framer-1crjlj > :last-child, .framer-ovsJS .framer-gowx4z > :last-child, .framer-ovsJS .framer-1rcr8jn > :last-child, .framer-ovsJS .framer-3xza6j > :last-child, .framer-ovsJS .framer-exbc3h > :last-child, .framer-ovsJS .framer-192vavb > :last-child, .framer-ovsJS .framer-1rk3ecn > :last-child, .framer-ovsJS .framer-1vjfhca > :last-child, .framer-ovsJS .framer-18n205i > :last-child, .framer-ovsJS .framer-1ughul0 > :last-child { margin-bottom: 0px; } .framer-ovsJS .framer-1korje8 > *, .framer-ovsJS .framer-1korje8 > :first-child, .framer-ovsJS .framer-1korje8 > :last-child { margin: 0px; } .framer-ovsJS .framer-18n205i > *, .framer-ovsJS .framer-1ughul0 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }}\",\"@media (max-width: 809px) { .framer-ovsJS.framer-th5s7v { width: 428px; } .framer-ovsJS .framer-18gnyo { padding: 150px 19px 50px 19px; width: 100%; } .framer-ovsJS .framer-x18w5o, .framer-ovsJS .framer-hu8zgo { order: 0; } .framer-ovsJS .framer-14v933y, .framer-ovsJS .framer-dghd0s { order: 1; } .framer-ovsJS .framer-mcsny7, .framer-ovsJS .framer-rrocmb, .framer-ovsJS .framer-16y9lv, .framer-ovsJS .framer-1tgbx06, .framer-ovsJS .framer-vydq70 { width: 100%; } .framer-ovsJS .framer-f3w641 { gap: 16px; height: min-content; padding: 0px 16px 0px 16px; width: 100%; } .framer-ovsJS .framer-1yk1n1c { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; height: 219px; } .framer-ovsJS .framer-1sdjnvr-container { flex: none; height: 200px; } .framer-ovsJS .framer-z18e9v-container { flex: 1 0 0px; width: 1px; } .framer-ovsJS .framer-1korje8 { gap: 16px; grid-template-columns: repeat(1, minmax(200px, 1fr)); padding: 0px 16px 100px 16px; width: 100%; } .framer-ovsJS .framer-3pk1ar, .framer-ovsJS .framer-1947bwi, .framer-ovsJS .framer-tin6gh, .framer-ovsJS .framer-1mbhu7z, .framer-ovsJS .framer-cub0zu, .framer-ovsJS .framer-ftjl2z, .framer-ovsJS .framer-q0g5tl, .framer-ovsJS .framer-1hw08kj { gap: 25px; grid-column: auto / span 1; height: 506px; } .framer-ovsJS .framer-p9mtt2, .framer-ovsJS .framer-1hbf64a, .framer-ovsJS .framer-8sphpg, .framer-ovsJS .framer-1abnf3h, .framer-ovsJS .framer-5c6xuw, .framer-ovsJS .framer-w7ebi0, .framer-ovsJS .framer-1l1iv7j, .framer-ovsJS .framer-q6ngb3, .framer-ovsJS .framer-1qyq8ia, .framer-ovsJS .framer-7hhp2i, .framer-ovsJS .framer-1djc6uc, .framer-ovsJS .framer-y9sze4, .framer-ovsJS .framer-1sgoxzi, .framer-ovsJS .framer-1empkc7, .framer-ovsJS .framer-1fwbsn, .framer-ovsJS .framer-1g5djzb, .framer-ovsJS .framer-yyldan, .framer-ovsJS .framer-hl8ktz, .framer-ovsJS .framer-mieul, .framer-ovsJS .framer-mq3a3h, .framer-ovsJS .framer-4m7awv { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; } .framer-ovsJS .framer-172e4n6 { gap: 25px; grid-column: unset; height: 220px; } .framer-ovsJS .framer-jwi8ne, .framer-ovsJS .framer-ou8dic, .framer-ovsJS .framer-130itco, .framer-ovsJS .framer-lsn0bn, .framer-ovsJS .framer-66n4wj, .framer-ovsJS .framer-1crjlj, .framer-ovsJS .framer-gowx4z, .framer-ovsJS .framer-1rcr8jn, .framer-ovsJS .framer-3xza6j, .framer-ovsJS .framer-exbc3h, .framer-ovsJS .framer-192vavb, .framer-ovsJS .framer-1rk3ecn, .framer-ovsJS .framer-1vjfhca { gap: 25px; grid-column: auto / span 1; height: 220px; } .framer-ovsJS .framer-1rtg66q { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: 427px; } .framer-ovsJS .framer-18n205i { gap: 24px; padding: 0px 19px 50px 19px; width: 100%; } .framer-ovsJS .framer-i6zcj0 { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-ovsJS .framer-1v8hi8v { border-top-left-radius: 16px; border-top-right-radius: 16px; height: 161px; } .framer-ovsJS .framer-1ughul0 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 24px; padding: 50px 19px 50px 19px; width: 100%; } .framer-ovsJS .framer-1dkevew { order: 0; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-ovsJS .framer-f3w641, .framer-ovsJS .framer-1korje8, .framer-ovsJS .framer-3pk1ar, .framer-ovsJS .framer-1947bwi, .framer-ovsJS .framer-tin6gh, .framer-ovsJS .framer-1mbhu7z, .framer-ovsJS .framer-172e4n6, .framer-ovsJS .framer-cub0zu, .framer-ovsJS .framer-ftjl2z, .framer-ovsJS .framer-q0g5tl, .framer-ovsJS .framer-1hw08kj, .framer-ovsJS .framer-jwi8ne, .framer-ovsJS .framer-ou8dic, .framer-ovsJS .framer-130itco, .framer-ovsJS .framer-lsn0bn, .framer-ovsJS .framer-66n4wj, .framer-ovsJS .framer-1crjlj, .framer-ovsJS .framer-gowx4z, .framer-ovsJS .framer-1rcr8jn, .framer-ovsJS .framer-3xza6j, .framer-ovsJS .framer-exbc3h, .framer-ovsJS .framer-192vavb, .framer-ovsJS .framer-1rk3ecn, .framer-ovsJS .framer-1vjfhca, .framer-ovsJS .framer-18n205i, .framer-ovsJS .framer-1ughul0 { gap: 0px; } .framer-ovsJS .framer-f3w641 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-ovsJS .framer-f3w641 > :first-child, .framer-ovsJS .framer-3pk1ar > :first-child, .framer-ovsJS .framer-1947bwi > :first-child, .framer-ovsJS .framer-tin6gh > :first-child, .framer-ovsJS .framer-1mbhu7z > :first-child, .framer-ovsJS .framer-172e4n6 > :first-child, .framer-ovsJS .framer-cub0zu > :first-child, .framer-ovsJS .framer-ftjl2z > :first-child, .framer-ovsJS .framer-q0g5tl > :first-child, .framer-ovsJS .framer-1hw08kj > :first-child, .framer-ovsJS .framer-jwi8ne > :first-child, .framer-ovsJS .framer-ou8dic > :first-child, .framer-ovsJS .framer-130itco > :first-child, .framer-ovsJS .framer-lsn0bn > :first-child, .framer-ovsJS .framer-66n4wj > :first-child, .framer-ovsJS .framer-1crjlj > :first-child, .framer-ovsJS .framer-gowx4z > :first-child, .framer-ovsJS .framer-1rcr8jn > :first-child, .framer-ovsJS .framer-3xza6j > :first-child, .framer-ovsJS .framer-exbc3h > :first-child, .framer-ovsJS .framer-192vavb > :first-child, .framer-ovsJS .framer-1rk3ecn > :first-child, .framer-ovsJS .framer-1vjfhca > :first-child, .framer-ovsJS .framer-18n205i > :first-child, .framer-ovsJS .framer-1ughul0 > :first-child { margin-top: 0px; } .framer-ovsJS .framer-f3w641 > :last-child, .framer-ovsJS .framer-3pk1ar > :last-child, .framer-ovsJS .framer-1947bwi > :last-child, .framer-ovsJS .framer-tin6gh > :last-child, .framer-ovsJS .framer-1mbhu7z > :last-child, .framer-ovsJS .framer-172e4n6 > :last-child, .framer-ovsJS .framer-cub0zu > :last-child, .framer-ovsJS .framer-ftjl2z > :last-child, .framer-ovsJS .framer-q0g5tl > :last-child, .framer-ovsJS .framer-1hw08kj > :last-child, .framer-ovsJS .framer-jwi8ne > :last-child, .framer-ovsJS .framer-ou8dic > :last-child, .framer-ovsJS .framer-130itco > :last-child, .framer-ovsJS .framer-lsn0bn > :last-child, .framer-ovsJS .framer-66n4wj > :last-child, .framer-ovsJS .framer-1crjlj > :last-child, .framer-ovsJS .framer-gowx4z > :last-child, .framer-ovsJS .framer-1rcr8jn > :last-child, .framer-ovsJS .framer-3xza6j > :last-child, .framer-ovsJS .framer-exbc3h > :last-child, .framer-ovsJS .framer-192vavb > :last-child, .framer-ovsJS .framer-1rk3ecn > :last-child, .framer-ovsJS .framer-1vjfhca > :last-child, .framer-ovsJS .framer-18n205i > :last-child, .framer-ovsJS .framer-1ughul0 > :last-child { margin-bottom: 0px; } .framer-ovsJS .framer-1korje8 > *, .framer-ovsJS .framer-1korje8 > :first-child, .framer-ovsJS .framer-1korje8 > :last-child { margin: 0px; } .framer-ovsJS .framer-3pk1ar > *, .framer-ovsJS .framer-1947bwi > *, .framer-ovsJS .framer-tin6gh > *, .framer-ovsJS .framer-1mbhu7z > *, .framer-ovsJS .framer-172e4n6 > *, .framer-ovsJS .framer-cub0zu > *, .framer-ovsJS .framer-ftjl2z > *, .framer-ovsJS .framer-q0g5tl > *, .framer-ovsJS .framer-1hw08kj > *, .framer-ovsJS .framer-jwi8ne > *, .framer-ovsJS .framer-ou8dic > *, .framer-ovsJS .framer-130itco > *, .framer-ovsJS .framer-lsn0bn > *, .framer-ovsJS .framer-66n4wj > *, .framer-ovsJS .framer-1crjlj > *, .framer-ovsJS .framer-gowx4z > *, .framer-ovsJS .framer-1rcr8jn > *, .framer-ovsJS .framer-3xza6j > *, .framer-ovsJS .framer-exbc3h > *, .framer-ovsJS .framer-192vavb > *, .framer-ovsJS .framer-1rk3ecn > *, .framer-ovsJS .framer-1vjfhca > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-ovsJS .framer-18n205i > *, .framer-ovsJS .framer-1ughul0 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 15850\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"IEeflO199\":{\"layout\":[\"fixed\",\"auto\"]},\"W5gGEQvDT\":{\"layout\":[\"fixed\",\"auto\"]},\"scasXMvdx\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramernjSXsfF_F=withCSS(Component,css,\"framer-ovsJS\");export default FramernjSXsfF_F;FramernjSXsfF_F.displayName=\"Branding\";FramernjSXsfF_F.defaultProps={height:15850,width:1440};addFonts(FramernjSXsfF_F,[{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\"}]},...Topbar2Fonts,...ArticlesButtonFonts,...VideoFonts,...ProjectInfoFonts,...NewButtonFonts,...FooterFonts,...LabelFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramernjSXsfF_F\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1440\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IEeflO199\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"W5gGEQvDT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"scasXMvdx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"15850\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerAcceptsLayoutTemplate\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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M,YAAY,KAAKC,GAAkB,KAAK,YAAY,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,E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",
  "names": ["ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "progress", "objectFit", "backgroundColor", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "posterEnabled", "startTimeProp", "volume", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "startTime", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "groupsRegex", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "PhosphorFonts", "getFonts", "Icon", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "humanReadableVariantMap", "getProps", "height", "id", "link", "tap", "title", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "egqwgdXBa", "TiYkMwRcJ", "zWjPVTBPn", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1wcmenc", "args", "onMouseEnter1qng7bp", "onMouseLeaveskpy1j", "onMouseEnter11vvgo8", "onMouseLeave1fjssaz", "onMouseEnter1xsevrp", "onMouseLeaveacu0ks", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "ComponentViewportProvider", "RichText2", "css", "FramerH_FfGTPBg", "withCSS", "H_FfGTPBg_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "MotionDivWithFX", "withFX", "motion", "ProjectInformationLinkFonts", "getFonts", "H_FfGTPBg_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "transition3", "transition4", "transition5", "transition6", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "humanReadableVariantMap", "getProps", "brief", "client", "clientAbout", "funding", "height", "id", "industry", "servicesWeProvided", "subline", "team", "theChallenge", "theClient", "theSolution", "websiteLink", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "UiaCyzgj6", "CnJRBFEm4", "HsOvLF4My", "nn1DCxtdF", "VWHnqHwqo", "biM4QA9NX", "lFnuUL8mK", "Dwr2xaD6v", "zGu51MuMK", "op4ZuuG0H", "lOOu1HBjn", "VgcF2RdnW", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapyqmbbu", "args", "TiYkMwRcJ1oaetsw", "TiYkMwRcJzmusfr", "TiYkMwRcJ4pcbq0", "TiYkMwRcJ1420w2h", "TiYkMwRcJ14jedmm", "TiYkMwRcJjes7jp", "TiYkMwRcJ1os3das", "TiYkMwRcJ2kxv17", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "RichText2", "ComponentViewportProvider", "css", "FrameroqpfSNg4r", "withCSS", "oqpfSNg4r_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "Topbar2Fonts", "getFonts", "sekbPskV4_default", "ArticlesButtonFonts", "sn8SuvM8M_default", "MotionAWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "MotionDivWithOptimizedAppearEffect", "VideoFonts", "Video", "ProjectInfoFonts", "oqpfSNg4r_default", "MotionDivWithFX", "withFX", "RichTextWithFX", "RichText2", "ContainerWithFX", "Container", "ImageWithFX", "Image2", "NewButtonFonts", "VXBVg53hd_default", "FooterFonts", "EM79_UpOU_default", "LabelFonts", "pnrJZorKB_default", "breakpoints", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "transition3", "animation3", "toResponsiveImage", "value", "equals", "a", "b", "animation4", "negate", "transition4", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "cursor", "pnrJZorKB_default", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "useQueryData", "l9x4yc_Kp_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "AQIWod3KV", "eaa8D0PRM", "uE9ZQ8GNR", "QVf8RTNKT", "APQyr_EY2", "AAZVUZU2D", "dsAi9CUMD", "FZ3RgaLcD", "Tdf8AH4GJ", "mStR5aq2G", "TXCJym12C", "napVjWelr", "ATV98FLeP", "Xb8xHKlJU", "PaycHaPIM", "EHMUMCj9h", "dlrABkDCn", "ukj_UN73A", "oPMT9Ua0C", "Q9tZdP3WV", "aueStCWAR", "V5AX_r0dC", "vL7xzhB7W", "H0fVhiPYj", "jzA8u7mNy", "sFWid8YOR", "dGg4MO4XT", "aKqC0UYzQ", "Lti0sORqT", "th_FKHRQD", "ZJmELtkGe", "NCAjU36EN", "mIgFaorbT", "xQqKwICD0", "WOMJ2AEIN", "G6yeC0P4M", "l4Ghnvjd8", "WhlsZcqb2", "WMVLWkby_", "EkLzeuBrL", "JgceV7dVI", "Eivr2ORVP", "onkqx6GSs", "HhcezxxMl", "IpiVpkrQA", "iLxrCox9R", "cezyOrdoA", "oq5LAHkFZ", "X_FMg380T", "FTv6oF3yR", "HCtMEjPnj", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "visible", "router", "useRouter", "visible1", "visible2", "visible3", "visible4", "visible5", "visible6", "visible7", "useCustomCursors", "GeneratedComponentContext", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "PropertyOverrides2", "sekbPskV4_default", "Link", "MotionAWithOptimizedAppearEffect", "sn8SuvM8M_default", "RichText2", "MotionDivWithOptimizedAppearEffect", "getLoadingLazyAtYPosition", "Image2", "Video", "MotionDivWithFX", "ResolveLinks", "resolvedLinks", "oqpfSNg4r_default", "RichTextWithFX", "ContainerWithFX", "ImageWithFX", "VXBVg53hd_default", "EM79_UpOU_default", "css", "FramernjSXsfF_F", "withCSS", "njSXsfF_F_default", "addFonts", "Topbar2Fonts", "ArticlesButtonFonts", "VideoFonts", "ProjectInfoFonts", "NewButtonFonts", "FooterFonts", "LabelFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
