{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/K0mI40rrezffFjPjHAZX/Video.js", "ssg:https://framerusercontent.com/modules/IRsyQfvrOLs6UK8g15T4/TjuDG1oBLPLf0eg8r3Yy/DYRGENCHx.js", "ssg:https://framerusercontent.com/modules/UN1njnACfb4jgmu9TNXS/snpu1NZxkqpDSaz69fTb/A6xtsIllB.js", "ssg:https://framerusercontent.com/modules/g1fWbAT8eJ18tQjuglbp/vRDWsoOxufyREV5062Od/X1PuSMi_O.js", "ssg:https://framerusercontent.com/modules/Ml7kDJx1L9ytQ6Ryy0gx/DnT1dowDfqA8wjIPGO1g/uqWR3m2Gf.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 video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();},[]);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);const isCloseToViewport=isOnCanvas?false:useInView(videoRef,{margin:\"100px\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges){isMountedAndReadyForProgressChanges=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:autoplayBehavior===\"on-mount\",preload:autoplayBehavior!==\"on-mount\"&&posterEnabled&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";Video.defaultProps={srcType:\"URL\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",srcFile:\"\",posterEnabled:false,controls:false,playing:true,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:\"cover\",backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime:0};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\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"200\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"112\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (38f2e7f)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";const TickerFonts=getFonts(Ticker);const serializationHash=\"framer-bSpQn\";const variantClassNames={rKOM00C4T:\"framer-v-clbae3\"};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 getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"rKOM00C4T\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-clbae3\",className,classNames),\"data-framer-name\":\"Horizontal\",layoutDependency:layoutDependency,layoutId:\"rKOM00C4T\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1n1anxv-container\",layoutDependency:layoutDependency,layoutId:\"gmFBwb3A4-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:60,height:\"100%\",hoverFactor:1,id:\"gmFBwb3A4\",layoutId:\"gmFBwb3A4\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:40,intrinsicWidth:123,pixelHeight:283,pixelWidth:768,positionX:\"center\",positionY:\"center\",sizes:\"154px\",src:\"https://framerusercontent.com/images/v7YoW2fUJEV6VKSu0AD0t393NU.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/v7YoW2fUJEV6VKSu0AD0t393NU.png?scale-down-to=512 512w,https://framerusercontent.com/images/v7YoW2fUJEV6VKSu0AD0t393NU.png 768w\"},className:\"framer-14msftn\",\"data-framer-name\":\"Logo 1\",layoutDependency:layoutDependency,layoutId:\"Y2xSaZybP\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:40,intrinsicWidth:121,pixelHeight:210,pixelWidth:768,positionX:\"center\",positionY:\"center\",sizes:\"141px\",src:\"https://framerusercontent.com/images/4497u76sx8KADbsEoeVZiWatOLs.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/4497u76sx8KADbsEoeVZiWatOLs.png?scale-down-to=512 512w,https://framerusercontent.com/images/4497u76sx8KADbsEoeVZiWatOLs.png 768w\"},className:\"framer-70xpbr\",\"data-framer-name\":\"Logo 2\",layoutDependency:layoutDependency,layoutId:\"rXIwJXlSc\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:40,intrinsicWidth:103,pixelHeight:106,pixelWidth:305,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/rGHWnFcDCnmyWdMMigHTgYU81co.png\"},className:\"framer-3df923\",\"data-framer-name\":\"Logo 3\",layoutDependency:layoutDependency,layoutId:\"RW6DTZ0tV\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:44,intrinsicWidth:131,pixelHeight:501,pixelWidth:1438,positionX:\"center\",positionY:\"center\",sizes:\"154px\",src:\"https://framerusercontent.com/images/mz8AesNHCh3KldQarTCu8mmsp00.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/mz8AesNHCh3KldQarTCu8mmsp00.png?scale-down-to=512 512w,https://framerusercontent.com/images/mz8AesNHCh3KldQarTCu8mmsp00.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mz8AesNHCh3KldQarTCu8mmsp00.png 1438w\"},className:\"framer-2yd07m\",\"data-framer-name\":\"Logo 4\",layoutDependency:layoutDependency,layoutId:\"SM8orDJtS\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:44,intrinsicWidth:131,pixelHeight:192,pixelWidth:768,positionX:\"center\",positionY:\"center\",sizes:\"154px\",src:\"https://framerusercontent.com/images/GElBfZUYWHpxOgakfWy9LIRgvc.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/GElBfZUYWHpxOgakfWy9LIRgvc.png?scale-down-to=512 512w,https://framerusercontent.com/images/GElBfZUYWHpxOgakfWy9LIRgvc.png 768w\"},className:\"framer-1ereqhi\",\"data-framer-name\":\"Logo 5\",layoutDependency:layoutDependency,layoutId:\"dNmu5GmPo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:44,intrinsicWidth:131,pixelHeight:225,pixelWidth:225,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/KzZY7zYfEEMtRSqToL02HOcepg.png\"},className:\"framer-128p27r\",\"data-framer-name\":\"Logo 6\",layoutDependency:layoutDependency,layoutId:\"fG7FXRWG8\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:44,intrinsicWidth:131,pixelHeight:65,pixelWidth:300,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/T562gGTHW266WRwb6JZ1KmEYBk.svg\"},className:\"framer-1xwjn5f\",\"data-framer-name\":\"Logo 7\",layoutDependency:layoutDependency,layoutId:\"pdn2Df2cO\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:44,intrinsicWidth:131,pixelHeight:1384,pixelWidth:2728,positionX:\"center\",positionY:\"center\",sizes:\"154px\",src:\"https://framerusercontent.com/images/AMJgxowYwFbS0Gw2T1fNxNXqCQ.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/AMJgxowYwFbS0Gw2T1fNxNXqCQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/AMJgxowYwFbS0Gw2T1fNxNXqCQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/AMJgxowYwFbS0Gw2T1fNxNXqCQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/AMJgxowYwFbS0Gw2T1fNxNXqCQ.png 2728w\"},className:\"framer-10rxm9o\",\"data-framer-name\":\"Logo 8\",layoutDependency:layoutDependency,layoutId:\"h7rKGOQnY\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:44,intrinsicWidth:131,pixelHeight:308,pixelWidth:324,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/9nJIlbLGSs4G8owi8AJCgFTfAiU.svg\"},className:\"framer-1vmlyul\",\"data-framer-name\":\"Logo 8\",layoutDependency:layoutDependency,layoutId:\"cOkyJtPME\"})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-bSpQn.framer-1x0c1gd, .framer-bSpQn .framer-1x0c1gd { display: block; }\",\".framer-bSpQn.framer-clbae3 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 659px; }\",\".framer-bSpQn .framer-1n1anxv-container { flex: 1 0 0px; height: 50px; position: relative; width: 1px; }\",\".framer-bSpQn .framer-14msftn, .framer-bSpQn .framer-2yd07m, .framer-bSpQn .framer-1ereqhi, .framer-bSpQn .framer-128p27r, .framer-bSpQn .framer-1xwjn5f, .framer-bSpQn .framer-10rxm9o, .framer-bSpQn .framer-1vmlyul { aspect-ratio: 3.075 / 1; height: var(--framer-aspect-ratio-supported, 50px); overflow: hidden; position: relative; width: 154px; }\",\".framer-bSpQn .framer-70xpbr { aspect-ratio: 2.825 / 1; height: var(--framer-aspect-ratio-supported, 50px); overflow: hidden; position: relative; width: 141px; }\",\".framer-bSpQn .framer-3df923 { aspect-ratio: 2.575 / 1; height: var(--framer-aspect-ratio-supported, 50px); overflow: hidden; position: relative; width: 129px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-bSpQn.framer-clbae3 { gap: 0px; } .framer-bSpQn.framer-clbae3 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-bSpQn.framer-clbae3 > :first-child { margin-left: 0px; } .framer-bSpQn.framer-clbae3 > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 50\n * @framerIntrinsicWidth 659\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerDYRGENCHx=withCSS(Component,css,\"framer-bSpQn\");export default FramerDYRGENCHx;FramerDYRGENCHx.displayName=\"Logo ticker 4\";FramerDYRGENCHx.defaultProps={height:50,width:659};addFonts(FramerDYRGENCHx,[{explicitInter:true,fonts:[]},...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerDYRGENCHx\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"50\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"659\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./DYRGENCHx.map", "// Generated by Framer (acd6bc0)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,ResolveLinks,RichText,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/8O0DGy7BDA0KK5GMs9rm/37T9i6UW9coBgqjzWNQE/myKLULMWY.js\";import Button from\"https://framerusercontent.com/modules/ogfhMNb2g1l8JndOi8e5/682TSvtnki5IYndS8yGD/n2KScAQCD.js\";const ButtonFonts=getFonts(Button);const MotionDivWithFX=withFX(motion.div);const ImageWithFX=withFX(Image);const cycleOrder=[\"OixTIQ1VJ\",\"ldxMAReNG\",\"VB4PqolNT\",\"mP_GfjNoR\",\"LH9NTXBKj\",\"UFa0wD1xF\",\"C2MGkx3op\",\"TcvcyWSxm\",\"jaZDkwnbM\",\"BI1UJl922\",\"r9hbP7Sqe\",\"IgsyVj8oT\",\"Um97Kz3If\",\"f5KuLIuVh\",\"pyG4lahQk\",\"aoo2AyFZu\",\"gima2Vzw0\",\"kIJiVAT8a\",\"ieXbPm32O\",\"kQKN824nc\",\"JnEhxY6Yx\",\"fUoCHI4kW\",\"xSuo36qFM\",\"x4P2vcU5B\"];const serializationHash=\"framer-l7X3n\";const variantClassNames={aoo2AyFZu:\"framer-v-gifq7v\",BI1UJl922:\"framer-v-y8xaln\",C2MGkx3op:\"framer-v-cwh6xu\",f5KuLIuVh:\"framer-v-1ho2bti\",fUoCHI4kW:\"framer-v-vhdujn\",gima2Vzw0:\"framer-v-udw9pg\",ieXbPm32O:\"framer-v-uqh5ac\",IgsyVj8oT:\"framer-v-oc9rgx\",jaZDkwnbM:\"framer-v-j5ecp5\",JnEhxY6Yx:\"framer-v-mvtmqz\",kIJiVAT8a:\"framer-v-vt9uax\",kQKN824nc:\"framer-v-1mia5if\",ldxMAReNG:\"framer-v-1k3lbph\",LH9NTXBKj:\"framer-v-1qem01o\",mP_GfjNoR:\"framer-v-11icq20\",OixTIQ1VJ:\"framer-v-n75gqi\",pyG4lahQk:\"framer-v-1cfgoua\",r9hbP7Sqe:\"framer-v-9xrp8l\",TcvcyWSxm:\"framer-v-mkex1m\",UFa0wD1xF:\"framer-v-fcjx9b\",Um97Kz3If:\"framer-v-78fem9\",VB4PqolNT:\"framer-v-b9789w\",x4P2vcU5B:\"framer-v-1aq5clj\",xSuo36qFM:\"framer-v-1to7njv\"};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 animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:50,y:0};const transition2={damping:60,delay:.6,mass:1.2,stiffness:300,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition3={damping:30,delay:0,mass:1,stiffness:400,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={\"Academia - Desktop\":\"gima2Vzw0\",\"Academia - Laptop\":\"kIJiVAT8a\",\"Academia - Mobile\":\"kQKN824nc\",\"Academia - Tablet\":\"ieXbPm32O\",\"Accelerators - Desktop\":\"jaZDkwnbM\",\"Accelerators - Laptop\":\"BI1UJl922\",\"Accelerators - Mobile\":\"IgsyVj8oT\",\"Accelerators - Tablet\":\"r9hbP7Sqe\",\"Advisors - Desktop\":\"Um97Kz3If\",\"Advisors - Laptop\":\"f5KuLIuVh\",\"Advisors - Mobile\":\"aoo2AyFZu\",\"Advisors - Tablet\":\"pyG4lahQk\",\"Gov - Desktop\":\"JnEhxY6Yx\",\"Gov - Laptop\":\"fUoCHI4kW\",\"Gov - Mobile\":\"x4P2vcU5B\",\"Gov - Tablet\":\"xSuo36qFM\",\"Investors - Desktop\":\"LH9NTXBKj\",\"Investors - Laptop\":\"UFa0wD1xF\",\"Investors - Mobile\":\"TcvcyWSxm\",\"Investors - Tablet\":\"C2MGkx3op\",\"Lenders - Desktop\":\"OixTIQ1VJ\",\"Lenders - Laptop\":\"ldxMAReNG\",\"Lenders - Mobile\":\"mP_GfjNoR\",\"Lenders - Tablet\":\"VB4PqolNT\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"OixTIQ1VJ\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"OixTIQ1VJ\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"LH9NTXBKj\",\"UFa0wD1xF\",\"C2MGkx3op\",\"TcvcyWSxm\",\"jaZDkwnbM\",\"BI1UJl922\",\"r9hbP7Sqe\",\"IgsyVj8oT\",\"Um97Kz3If\",\"f5KuLIuVh\",\"pyG4lahQk\",\"aoo2AyFZu\",\"gima2Vzw0\",\"kIJiVAT8a\",\"ieXbPm32O\",\"kQKN824nc\",\"JnEhxY6Yx\",\"fUoCHI4kW\",\"xSuo36qFM\",\"x4P2vcU5B\"].includes(baseVariant))return false;return true;};const router=useRouter();const isDisplayed1=()=>{if([\"LH9NTXBKj\",\"UFa0wD1xF\",\"C2MGkx3op\",\"TcvcyWSxm\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if([\"jaZDkwnbM\",\"BI1UJl922\",\"r9hbP7Sqe\",\"IgsyVj8oT\"].includes(baseVariant))return true;return false;};const isDisplayed3=()=>{if([\"Um97Kz3If\",\"f5KuLIuVh\",\"pyG4lahQk\",\"aoo2AyFZu\"].includes(baseVariant))return true;return false;};const isDisplayed4=()=>{if([\"gima2Vzw0\",\"kIJiVAT8a\",\"ieXbPm32O\",\"kQKN824nc\"].includes(baseVariant))return true;return false;};const isDisplayed5=()=>{if([\"JnEhxY6Yx\",\"fUoCHI4kW\",\"xSuo36qFM\",\"x4P2vcU5B\"].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(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-n75gqi\",className,classNames),\"data-framer-name\":\"Lenders - Desktop\",layoutDependency:layoutDependency,layoutId:\"OixTIQ1VJ\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-a7f7ae5f-a181-442b-8823-be0ca1b170fe, rgb(255, 255, 255))\",...style},...addPropertyOverrides({aoo2AyFZu:{\"data-framer-name\":\"Advisors - Mobile\"},BI1UJl922:{\"data-framer-name\":\"Accelerators - Laptop\"},C2MGkx3op:{\"data-framer-name\":\"Investors - Tablet\"},f5KuLIuVh:{\"data-framer-name\":\"Advisors - Laptop\"},fUoCHI4kW:{\"data-framer-name\":\"Gov - Laptop\"},gima2Vzw0:{\"data-framer-name\":\"Academia - Desktop\"},ieXbPm32O:{\"data-framer-name\":\"Academia - Tablet\"},IgsyVj8oT:{\"data-framer-name\":\"Accelerators - Mobile\"},jaZDkwnbM:{\"data-framer-name\":\"Accelerators - Desktop\"},JnEhxY6Yx:{\"data-framer-name\":\"Gov - Desktop\"},kIJiVAT8a:{\"data-framer-name\":\"Academia - Laptop\"},kQKN824nc:{\"data-framer-name\":\"Academia - Mobile\"},ldxMAReNG:{\"data-framer-name\":\"Lenders - Laptop\"},LH9NTXBKj:{\"data-framer-name\":\"Investors - Desktop\"},mP_GfjNoR:{\"data-framer-name\":\"Lenders - Mobile\"},pyG4lahQk:{\"data-framer-name\":\"Advisors - Tablet\"},r9hbP7Sqe:{\"data-framer-name\":\"Accelerators - Tablet\"},TcvcyWSxm:{\"data-framer-name\":\"Investors - Mobile\"},UFa0wD1xF:{\"data-framer-name\":\"Investors - Laptop\"},Um97Kz3If:{\"data-framer-name\":\"Advisors - Desktop\"},VB4PqolNT:{\"data-framer-name\":\"Lenders - Tablet\"},x4P2vcU5B:{\"data-framer-name\":\"Gov - Mobile\"},xSuo36qFM:{\"data-framer-name\":\"Gov - Tablet\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-roani7\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"Go6xXb20v\",children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14gu08i\",\"data-framer-name\":\"Content Row\",layoutDependency:layoutDependency,layoutId:\"Gt2lB6GWD\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-11hwmsd\",\"data-framer-name\":\"Content text Block Wrapper\",layoutDependency:layoutDependency,layoutId:\"PIF9XnZ85\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-127y4xd\",\"data-framer-name\":\"Content Text Block\",layoutDependency:layoutDependency,layoutId:\"Xidbg_bC_\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-135qrtm\",\"data-styles-preset\":\"myKLULMWY\",children:\"Lenders\"})}),className:\"framer-gt4k74\",\"data-framer-name\":\"Content  TItle\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"b_8MvkAjj\",verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({mP_GfjNoR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-135qrtm\",\"data-styles-preset\":\"myKLULMWY\",style:{\"--framer-text-alignment\":\"center\"},children:\"Lenders\"})})},VB4PqolNT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-135qrtm\",\"data-styles-preset\":\"myKLULMWY\",style:{\"--framer-text-alignment\":\"center\"},children:\"Lenders\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.0208333em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-f512b2c0-ccff-4c1c-81ef-5b1a68ff0d48, rgb(34, 79, 138)))\"},children:\"Good IP makes the best security in the Information Age\"})}),className:\"framer-8dv4bk\",\"data-framer-name\":\"Content  TItle\",fonts:[\"GF;Outfit-600\"],layoutDependency:layoutDependency,layoutId:\"Mo8lZ9BIg\",style:{\"--extracted-a0htzi\":\"var(--token-f512b2c0-ccff-4c1c-81ef-5b1a68ff0d48, rgb(34, 79, 138))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({mP_GfjNoR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.0208333em\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-f512b2c0-ccff-4c1c-81ef-5b1a68ff0d48, rgb(34, 79, 138)))\"},children:\"Good IP makes the best security in the Information Age\"})})},VB4PqolNT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.0208333em\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-f512b2c0-ccff-4c1c-81ef-5b1a68ff0d48, rgb(34, 79, 138)))\"},children:\"Good IP makes the best security in the Information Age\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:\"The SME lending world is changing - fast. As the global economy is driven more and more by technology and innovation, smart banks are realising they need to change the way they lend in order to recognise the winners of tomorrow.\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-color\":\"var(--extracted-1iakedh, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:\"Tangible assets have been eclipsed by intangibles which can\u2019t be seen or touched. They have a limited balance sheet footprint, if any. Lenders need assistance to understand what assets exist, who owns them, whether they contribute to business value, and how much they are worth.\"})]}),className:\"framer-1ajputx\",\"data-framer-name\":\"Paragraph\",fonts:[\"GF;Archivo-regular\"],layoutDependency:layoutDependency,layoutId:\"ansYMxgEl\",style:{\"--extracted-1iakedh\":\"var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61))\",\"--extracted-2gxw0f\":\"var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61))\",\"--extracted-r6o4lv\":\"var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({mP_GfjNoR:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:\"The SME lending world is changing - fast. As the global economy is driven more and more by technology and innovation, smart banks are realising they need to change the way they lend in order to recognise the winners of tomorrow.\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1iakedh, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:\"Tangible assets have been eclipsed by intangibles which can\u2019t be seen or touched. They have a limited balance sheet footprint, if any. Lenders need assistance to understand what assets exist, who owns them, whether they contribute to business value, and how much they are worth.\"})]})},VB4PqolNT:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:\"The SME lending world is changing - fast. As the global economy is driven more and more by technology and innovation, smart banks are realising they need to change the way they lend in order to recognise the winners of tomorrow.\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1iakedh, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:\"Tangible assets have been eclipsed by intangibles which can\u2019t be seen or touched. They have a limited balance sheet footprint, if any. Lenders need assistance to understand what assets exist, who owns them, whether they contribute to business value, and how much they are worth.\"})]})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"XBhWXEv3s\"},implicitPathVariables:undefined},{href:{webPageId:\"XBhWXEv3s\"},implicitPathVariables:undefined},{href:{webPageId:\"XBhWXEv3s\"},implicitPathVariables:undefined},{href:{webPageId:\"XBhWXEv3s\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:67,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+50+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1230)-100-1510.2)/2+0+0)+0+0+0+0+0+0+598.2,...addPropertyOverrides({mP_GfjNoR:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+50+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-100-2576.2)/2+0+0)+0+0+0+533+0+0+0+598.2},VB4PqolNT:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+50+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-100-2576.2)/2+0+0)+0+0+0+533+0+0+0+598.2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xfv3sr-container\",layoutDependency:layoutDependency,layoutId:\"gxFGflByi-container\",children:/*#__PURE__*/_jsx(Button,{A2dWUqqQh:\"Get started\",DnytOe0Z8:resolvedLinks[0],height:\"100%\",id:\"gxFGflByi\",layoutId:\"gxFGflByi\",N5FKWNwKs:false,oSfNN4wFr:false,v8ArQOg02:false,variant:\"GVBL6yAQc\",width:\"100%\",...addPropertyOverrides({ldxMAReNG:{DnytOe0Z8:resolvedLinks[1]},mP_GfjNoR:{DnytOe0Z8:resolvedLinks[3]},VB4PqolNT:{DnytOe0Z8:resolvedLinks[2]}},baseVariant,gestureVariant)})})})})]})}),/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"Good IP makes the best security in the Information Age\",fit:\"fit\",intrinsicHeight:1e3,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+50+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1230)-100-1510.2)/2+0+0)+0+0+82.60000000000002),pixelHeight:1333,pixelWidth:1334,positionX:\"center\",positionY:\"center\",sizes:`calc((min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1356px) - 60px) / 2.16)`,src:\"https://framerusercontent.com/images/sleG7ugszzx3vPGfVXS7aNH5Xc.png\",srcSet:\"https://framerusercontent.com/images/sleG7ugszzx3vPGfVXS7aNH5Xc.png?scale-down-to=512 512w,https://framerusercontent.com/images/sleG7ugszzx3vPGfVXS7aNH5Xc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/sleG7ugszzx3vPGfVXS7aNH5Xc.png 1334w\"},className:\"framer-61omkk\",\"data-framer-name\":\"Content Image\",layoutDependency:layoutDependency,layoutId:\"dyxToyhe3\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,transformPerspective:1200},...addPropertyOverrides({ldxMAReNG:{background:{alt:\"Good IP makes the best security in the Information Age\",fit:\"fit\",intrinsicHeight:1e3,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+50+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1230)-100-1510.2)/2+0+0)+0+0+82.60000000000002),pixelHeight:1333,pixelWidth:1334,positionX:\"center\",positionY:\"center\",sizes:\"527.7778px\",src:\"https://framerusercontent.com/images/sleG7ugszzx3vPGfVXS7aNH5Xc.png\",srcSet:\"https://framerusercontent.com/images/sleG7ugszzx3vPGfVXS7aNH5Xc.png?scale-down-to=512 512w,https://framerusercontent.com/images/sleG7ugszzx3vPGfVXS7aNH5Xc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/sleG7ugszzx3vPGfVXS7aNH5Xc.png 1334w\"}},mP_GfjNoR:{background:{alt:\"Good IP makes the best security in the Information Age\",fit:\"fit\",intrinsicHeight:1e3,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+50+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-100-2576.2)/2+0+0)+0+0+0+0),pixelHeight:1333,pixelWidth:1334,positionX:\"center\",positionY:\"center\",sizes:`calc(min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1356px) - 60px)`,src:\"https://framerusercontent.com/images/sleG7ugszzx3vPGfVXS7aNH5Xc.png\",srcSet:\"https://framerusercontent.com/images/sleG7ugszzx3vPGfVXS7aNH5Xc.png?scale-down-to=512 512w,https://framerusercontent.com/images/sleG7ugszzx3vPGfVXS7aNH5Xc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/sleG7ugszzx3vPGfVXS7aNH5Xc.png 1334w\"}},VB4PqolNT:{background:{alt:\"Good IP makes the best security in the Information Age\",fit:\"fit\",intrinsicHeight:1e3,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+50+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-100-2576.2)/2+0+0)+0+0+0+0),pixelHeight:1333,pixelWidth:1334,positionX:\"center\",positionY:\"center\",sizes:`calc((min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1356px) - 60px) / 2.16)`,src:\"https://framerusercontent.com/images/sleG7ugszzx3vPGfVXS7aNH5Xc.png\",srcSet:\"https://framerusercontent.com/images/sleG7ugszzx3vPGfVXS7aNH5Xc.png?scale-down-to=512 512w,https://framerusercontent.com/images/sleG7ugszzx3vPGfVXS7aNH5Xc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/sleG7ugszzx3vPGfVXS7aNH5Xc.png 1334w\"}}},baseVariant,gestureVariant)})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1301zgb\",\"data-framer-name\":\"Content Row\",layoutDependency:layoutDependency,layoutId:\"lerAxtYiy\",children:[/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"Lenders offering IP finance\",fit:\"fit\",intrinsicHeight:1e3,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+50+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1230)-100-1510.2)/2+0+0)+0+745.2+132.5),pixelHeight:2e3,pixelWidth:2e3,positionX:\"center\",positionY:\"center\",sizes:`calc((min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1356px) - 60px) / 2.16)`,src:\"https://framerusercontent.com/images/e97Q2LhXXbJGdIgLZ8vXo2v73vQ.png\",srcSet:\"https://framerusercontent.com/images/e97Q2LhXXbJGdIgLZ8vXo2v73vQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/e97Q2LhXXbJGdIgLZ8vXo2v73vQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/e97Q2LhXXbJGdIgLZ8vXo2v73vQ.png 2000w\"},className:\"framer-fgxiwb\",\"data-framer-name\":\"Content Image\",layoutDependency:layoutDependency,layoutId:\"UMMRyFRcE\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,transformPerspective:1200},...addPropertyOverrides({ldxMAReNG:{background:{alt:\"Lenders offering IP finance\",fit:\"fit\",intrinsicHeight:1e3,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+50+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1230)-100-1510.2)/2+0+0)+0+745.2+132.5),pixelHeight:2e3,pixelWidth:2e3,positionX:\"center\",positionY:\"center\",sizes:\"527.7778px\",src:\"https://framerusercontent.com/images/e97Q2LhXXbJGdIgLZ8vXo2v73vQ.png\",srcSet:\"https://framerusercontent.com/images/e97Q2LhXXbJGdIgLZ8vXo2v73vQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/e97Q2LhXXbJGdIgLZ8vXo2v73vQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/e97Q2LhXXbJGdIgLZ8vXo2v73vQ.png 2000w\"}},mP_GfjNoR:{background:{alt:\"Lenders offering IP finance\",fit:\"fit\",intrinsicHeight:1e3,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+50+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-100-2576.2)/2+0+0)+0+1278.2+0+0),pixelHeight:2e3,pixelWidth:2e3,positionX:\"center\",positionY:\"center\",sizes:`calc(min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1356px) - 60px)`,src:\"https://framerusercontent.com/images/e97Q2LhXXbJGdIgLZ8vXo2v73vQ.png\",srcSet:\"https://framerusercontent.com/images/e97Q2LhXXbJGdIgLZ8vXo2v73vQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/e97Q2LhXXbJGdIgLZ8vXo2v73vQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/e97Q2LhXXbJGdIgLZ8vXo2v73vQ.png 2000w\"}},VB4PqolNT:{background:{alt:\"Lenders offering IP finance\",fit:\"fit\",intrinsicHeight:1e3,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+50+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-100-2576.2)/2+0+0)+0+1278.2+0+0),pixelHeight:2e3,pixelWidth:2e3,positionX:\"center\",positionY:\"center\",sizes:`calc((min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1356px) - 60px) / 2.16)`,src:\"https://framerusercontent.com/images/e97Q2LhXXbJGdIgLZ8vXo2v73vQ.png\",srcSet:\"https://framerusercontent.com/images/e97Q2LhXXbJGdIgLZ8vXo2v73vQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/e97Q2LhXXbJGdIgLZ8vXo2v73vQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/e97Q2LhXXbJGdIgLZ8vXo2v73vQ.png 2000w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-19eziwk\",\"data-framer-name\":\"Content text Block Wrapper\",layoutDependency:layoutDependency,layoutId:\"tKfu63D62\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cutmek\",\"data-framer-name\":\"Content Text Block\",layoutDependency:layoutDependency,layoutId:\"kQLwAySSy\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:\"Increasingly, the key question is whether a company\u2019s IP and intangibles make good security to support a loan. If so, then more debt can be made available at an earlier stage in a company\u2019s development.\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-color\":\"var(--extracted-1iakedh, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:\"Inngot has developed a unique, ground-breaking new platform to assess intangible assets as collateral; not just considering business value, but whether that collateral is truly separable, and if it will prove to be saleable in the event that it needs to be called in. We also monitor the IP for threats and opportunities throughout the lifespan of the loan.\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-color\":\"var(--extracted-14qxiz, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-color\":\"var(--extracted-ydz9fi, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:\"We already have 10 years\u2019 experience in helping lenders explore the potential of IP-based finance. If you want to galvanise your SME lending and develop an innovative segment supporting the companies with the best prospects for growth, we have the tools to make that a reality.\"})]}),className:\"framer-dl7hyt\",\"data-framer-name\":\"Paragraph\",fonts:[\"GF;Archivo-regular\"],layoutDependency:layoutDependency,layoutId:\"CHRDw1tRA\",style:{\"--extracted-14qxiz\":\"var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61))\",\"--extracted-1iakedh\":\"var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61))\",\"--extracted-2gxw0f\":\"var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61))\",\"--extracted-r6o4lv\":\"var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61))\",\"--extracted-ydz9fi\":\"var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({mP_GfjNoR:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:\"Increasingly, the key question is whether a company\u2019s IP and intangibles make good security to support a loan. If so, then more debt can be made available at an earlier stage in a company\u2019s development.\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1iakedh, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:\"Inngot has developed a unique, ground-breaking new platform to assess intangible assets as collateral; not just considering business value, but whether that collateral is truly separable, and if it will prove to be saleable in the event that it needs to be called in. We also monitor the IP for threats and opportunities throughout the lifespan of the loan.\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-14qxiz, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-ydz9fi, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:\"We already have 10 years\u2019 experience in helping lenders explore the potential of IP-based finance. If you want to galvanise your SME lending and develop an innovative segment supporting the companies with the best prospects for growth, we have the tools to make that a reality.\"})]})},VB4PqolNT:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:\"Increasingly, the key question is whether a company\u2019s IP and intangibles make good security to support a loan. If so, then more debt can be made available at an earlier stage in a company\u2019s development.\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1iakedh, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:\"Inngot has developed a unique, ground-breaking new platform to assess intangible assets as collateral; not just considering business value, but whether that collateral is truly separable, and if it will prove to be saleable in the event that it needs to be called in. We also monitor the IP for threats and opportunities throughout the lifespan of the loan.\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-14qxiz, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-ydz9fi, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:\"We already have 10 years\u2019 experience in helping lenders explore the potential of IP-based finance. If you want to galvanise your SME lending and develop an innovative segment supporting the companies with the best prospects for growth, we have the tools to make that a reality.\"})]})}},baseVariant,gestureVariant)})})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1y7035j\",\"data-framer-name\":\"Content Row\",layoutDependency:layoutDependency,layoutId:\"Cn9MrR_UV\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-u62bfw\",\"data-framer-name\":\"Content text Block Wrapper\",layoutDependency:layoutDependency,layoutId:\"czSfa06i7\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3l5zsx\",\"data-framer-name\":\"Content Text Block\",layoutDependency:layoutDependency,layoutId:\"AX62g5gWl\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-135qrtm\",\"data-styles-preset\":\"myKLULMWY\",children:\"Investors\"})}),className:\"framer-s9bg5g\",\"data-framer-name\":\"Content  TItle\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"uAhE1OdQ_\",verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({C2MGkx3op:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-135qrtm\",\"data-styles-preset\":\"myKLULMWY\",style:{\"--framer-text-alignment\":\"center\"},children:\"Investors\"})})},TcvcyWSxm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-135qrtm\",\"data-styles-preset\":\"myKLULMWY\",style:{\"--framer-text-alignment\":\"center\"},children:\"Investors\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.0208333em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-f512b2c0-ccff-4c1c-81ef-5b1a68ff0d48, rgb(34, 79, 138)))\"},children:\"IP and intangibles are indicators of future value and strength\"})}),className:\"framer-1cdef2y\",\"data-framer-name\":\"Content  TItle\",fonts:[\"GF;Outfit-600\"],layoutDependency:layoutDependency,layoutId:\"uSj_B4jwe\",style:{\"--extracted-a0htzi\":\"var(--token-f512b2c0-ccff-4c1c-81ef-5b1a68ff0d48, rgb(34, 79, 138))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({C2MGkx3op:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.0208333em\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-f512b2c0-ccff-4c1c-81ef-5b1a68ff0d48, rgb(34, 79, 138)))\"},children:\"IP and intangibles are indicators of future value and strength\"})})},TcvcyWSxm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.0208333em\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-f512b2c0-ccff-4c1c-81ef-5b1a68ff0d48, rgb(34, 79, 138)))\"},children:\"IP and intangibles are indicators of future value and strength\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:\"Sophisticated investors understand that companies with strong IP and intangible assets are good candidates for equity funding. Since 2010, Inngot has been working with individual and corporate investors to help them investigate potential investment and acquisition targets using our tools and services.\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-color\":\"var(--extracted-1iakedh, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:\"The only substance found in many early-stage companies is their IP and intangibles. So investors have to find ways to understand what these are, how well they are being managed and protected, and whether the business has a suitable and credible long-term IP strategy. That\u2019s where Inngot, backed by years of experience of valuing IP and advising IP owners on monetisation strategies, comes in.\"})]}),className:\"framer-v90lb2\",\"data-framer-name\":\"Paragraph\",fonts:[\"GF;Archivo-regular\"],layoutDependency:layoutDependency,layoutId:\"yR858PPjQ\",style:{\"--extracted-1iakedh\":\"var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61))\",\"--extracted-2gxw0f\":\"var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61))\",\"--extracted-r6o4lv\":\"var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({C2MGkx3op:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:\"Sophisticated investors understand that companies with strong IP and intangible assets are good candidates for equity funding. Since 2010, Inngot has been working with individual and corporate investors to help them investigate potential investment and acquisition targets using our tools and services.\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1iakedh, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:\"The only substance found in many early-stage companies is their IP and intangibles. So investors have to find ways to understand what these are, how well they are being managed and protected, and whether the business has a suitable and credible long-term IP strategy. That\u2019s where Inngot, backed by years of experience of valuing IP and advising IP owners on monetisation strategies, comes in.\"})]})},TcvcyWSxm:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:\"Sophisticated investors understand that companies with strong IP and intangible assets are good candidates for equity funding. Since 2010, Inngot has been working with individual and corporate investors to help them investigate potential investment and acquisition targets using our tools and services.\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1iakedh, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:\"The only substance found in many early-stage companies is their IP and intangibles. So investors have to find ways to understand what these are, how well they are being managed and protected, and whether the business has a suitable and credible long-term IP strategy. That\u2019s where Inngot, backed by years of experience of valuing IP and advising IP owners on monetisation strategies, comes in.\"})]})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"XBhWXEv3s\"},implicitPathVariables:undefined},{href:{webPageId:\"XBhWXEv3s\"},implicitPathVariables:undefined},{href:{webPageId:\"XBhWXEv3s\"},implicitPathVariables:undefined},{href:{webPageId:\"XBhWXEv3s\"},implicitPathVariables:undefined},{href:{webPageId:\"XBhWXEv3s\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:67,...addPropertyOverrides({C2MGkx3op:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+50+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-100-1198.2)/2+0+0)+0+0+0+533+0+0+0+598.2},LH9NTXBKj:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+50+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||752)-100-665.2)/2+0+0)+0+0+0+0+0+0+598.2},TcvcyWSxm:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+50+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-100-1198.2)/2+0+0)+0+0+0+533+0+0+0+598.2},UFa0wD1xF:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+50+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||752)-100-665.2)/2+0+0)+0+0+0+0+0+0+598.2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-62imbl-container\",layoutDependency:layoutDependency,layoutId:\"tUuHRVQTf-container\",children:/*#__PURE__*/_jsx(Button,{A2dWUqqQh:\"Get started\",DnytOe0Z8:resolvedLinks1[0],height:\"100%\",id:\"tUuHRVQTf\",layoutId:\"tUuHRVQTf\",N5FKWNwKs:false,oSfNN4wFr:false,v8ArQOg02:false,variant:\"GVBL6yAQc\",width:\"100%\",...addPropertyOverrides({C2MGkx3op:{DnytOe0Z8:resolvedLinks1[3]},LH9NTXBKj:{DnytOe0Z8:resolvedLinks1[1]},TcvcyWSxm:{DnytOe0Z8:resolvedLinks1[4]},UFa0wD1xF:{DnytOe0Z8:resolvedLinks1[2]}},baseVariant,gestureVariant)})})})})]})}),/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1200,pixelHeight:1e3,pixelWidth:1200,src:\"https://framerusercontent.com/images/siydSlFyZ39Mo0nMUXx2Gj6ypZE.png\",srcSet:\"https://framerusercontent.com/images/siydSlFyZ39Mo0nMUXx2Gj6ypZE.png?scale-down-to=512 512w,https://framerusercontent.com/images/siydSlFyZ39Mo0nMUXx2Gj6ypZE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/siydSlFyZ39Mo0nMUXx2Gj6ypZE.png 1200w\"},className:\"framer-evte50\",\"data-framer-name\":\"Content Image\",layoutDependency:layoutDependency,layoutId:\"oTayPOjZv\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,transformPerspective:1200},...addPropertyOverrides({C2MGkx3op:{background:{alt:\"IP and intangibles are indicators of future value and strength for investors\",fit:\"fit\",intrinsicHeight:1e3,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+50+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-100-1198.2)/2+0+0)+0+0+0+0),pixelHeight:1331,pixelWidth:2e3,positionX:\"center\",positionY:\"center\",sizes:`calc((min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1356px) - 60px) / 2.16)`,src:\"https://framerusercontent.com/images/6onWRWNikmoAvqNh6Vkzc6MPFoM.png\",srcSet:\"https://framerusercontent.com/images/6onWRWNikmoAvqNh6Vkzc6MPFoM.png?scale-down-to=512 512w,https://framerusercontent.com/images/6onWRWNikmoAvqNh6Vkzc6MPFoM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/6onWRWNikmoAvqNh6Vkzc6MPFoM.png 2000w\"}},LH9NTXBKj:{background:{alt:\"IP and intangibles are indicators of future value and strength for investors\",fit:\"fit\",intrinsicHeight:1e3,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+50+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||752)-100-665.2)/2+0+0)+0+0+82.60000000000002),pixelHeight:1331,pixelWidth:2e3,positionX:\"center\",positionY:\"center\",sizes:`calc((min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1356px) - 60px) / 2.16)`,src:\"https://framerusercontent.com/images/6onWRWNikmoAvqNh6Vkzc6MPFoM.png\",srcSet:\"https://framerusercontent.com/images/6onWRWNikmoAvqNh6Vkzc6MPFoM.png?scale-down-to=512 512w,https://framerusercontent.com/images/6onWRWNikmoAvqNh6Vkzc6MPFoM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/6onWRWNikmoAvqNh6Vkzc6MPFoM.png 2000w\"}},TcvcyWSxm:{background:{alt:\"IP and intangibles are indicators of future value and strength for investors\",fit:\"fit\",intrinsicHeight:1e3,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+50+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-100-1198.2)/2+0+0)+0+0+0+0),pixelHeight:1331,pixelWidth:2e3,positionX:\"center\",positionY:\"center\",sizes:`calc(min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1356px) - 60px)`,src:\"https://framerusercontent.com/images/6onWRWNikmoAvqNh6Vkzc6MPFoM.png\",srcSet:\"https://framerusercontent.com/images/6onWRWNikmoAvqNh6Vkzc6MPFoM.png?scale-down-to=512 512w,https://framerusercontent.com/images/6onWRWNikmoAvqNh6Vkzc6MPFoM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/6onWRWNikmoAvqNh6Vkzc6MPFoM.png 2000w\"}},UFa0wD1xF:{background:{alt:\"IP and intangibles are indicators of future value and strength for investors\",fit:\"fit\",intrinsicHeight:1e3,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+50+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||752)-100-665.2)/2+0+0)+0+0+82.60000000000002),pixelHeight:1331,pixelWidth:2e3,positionX:\"center\",positionY:\"center\",sizes:\"527.7778px\",src:\"https://framerusercontent.com/images/6onWRWNikmoAvqNh6Vkzc6MPFoM.png\",srcSet:\"https://framerusercontent.com/images/6onWRWNikmoAvqNh6Vkzc6MPFoM.png?scale-down-to=512 512w,https://framerusercontent.com/images/6onWRWNikmoAvqNh6Vkzc6MPFoM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/6onWRWNikmoAvqNh6Vkzc6MPFoM.png 2000w\"}}},baseVariant,gestureVariant)})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1f2jxlt\",\"data-framer-name\":\"Content Row\",layoutDependency:layoutDependency,layoutId:\"VL41Nrzgv\",children:[/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1200,pixelHeight:1e3,pixelWidth:1200,src:\"https://framerusercontent.com/images/siydSlFyZ39Mo0nMUXx2Gj6ypZE.png\",srcSet:\"https://framerusercontent.com/images/siydSlFyZ39Mo0nMUXx2Gj6ypZE.png?scale-down-to=512 512w,https://framerusercontent.com/images/siydSlFyZ39Mo0nMUXx2Gj6ypZE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/siydSlFyZ39Mo0nMUXx2Gj6ypZE.png 1200w\"},className:\"framer-mmeuq3\",\"data-framer-name\":\"Content Image\",layoutDependency:layoutDependency,layoutId:\"JxnvDZDWs\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,transformPerspective:1200},...addPropertyOverrides({BI1UJl922:{background:{alt:\"Innovation lightbulb for IP partners Inngot works with\",fit:\"fit\",intrinsicHeight:1e3,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+50+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-100-665.2)/2+0+0)+0+0+82.60000000000002),pixelHeight:2e3,pixelWidth:1333,positionX:\"center\",positionY:\"center\",sizes:\"527.7778px\",src:\"https://framerusercontent.com/images/af3APkLlz4AetjYXeh08AOkf7co.png\",srcSet:\"https://framerusercontent.com/images/af3APkLlz4AetjYXeh08AOkf7co.png?scale-down-to=1024 682w,https://framerusercontent.com/images/af3APkLlz4AetjYXeh08AOkf7co.png 1333w\"}},IgsyVj8oT:{background:{alt:\"Innovation lightbulb for IP partners Inngot works with\",fit:\"fit\",intrinsicHeight:1e3,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+50+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-100-1198.2)/2+0+0)+0+0+0+0),pixelHeight:2e3,pixelWidth:1333,positionX:\"center\",positionY:\"center\",sizes:`calc(min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1356px) - 60px)`,src:\"https://framerusercontent.com/images/af3APkLlz4AetjYXeh08AOkf7co.png\",srcSet:\"https://framerusercontent.com/images/af3APkLlz4AetjYXeh08AOkf7co.png?scale-down-to=1024 682w,https://framerusercontent.com/images/af3APkLlz4AetjYXeh08AOkf7co.png 1333w\"}},jaZDkwnbM:{background:{alt:\"Innovation lightbulb for IP partners Inngot works with\",fit:\"fit\",intrinsicHeight:1e3,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+50+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-100-665.2)/2+0+0)+0+0+82.60000000000002),pixelHeight:2e3,pixelWidth:1333,positionX:\"center\",positionY:\"center\",sizes:`calc((min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1356px) - 60px) / 2.16)`,src:\"https://framerusercontent.com/images/af3APkLlz4AetjYXeh08AOkf7co.png\",srcSet:\"https://framerusercontent.com/images/af3APkLlz4AetjYXeh08AOkf7co.png?scale-down-to=1024 682w,https://framerusercontent.com/images/af3APkLlz4AetjYXeh08AOkf7co.png 1333w\"}},r9hbP7Sqe:{background:{alt:\"Innovation lightbulb for IP partners Inngot works with\",fit:\"fit\",intrinsicHeight:1e3,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+50+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-100-1198.2)/2+0+0)+0+0+0+0),pixelHeight:2e3,pixelWidth:1333,positionX:\"center\",positionY:\"center\",sizes:`calc((min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1356px) - 60px) / 2.16)`,src:\"https://framerusercontent.com/images/af3APkLlz4AetjYXeh08AOkf7co.png\",srcSet:\"https://framerusercontent.com/images/af3APkLlz4AetjYXeh08AOkf7co.png?scale-down-to=1024 682w,https://framerusercontent.com/images/af3APkLlz4AetjYXeh08AOkf7co.png 1333w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1c49s5o\",\"data-framer-name\":\"Content text Block Wrapper\",layoutDependency:layoutDependency,layoutId:\"yK0C0HBF4\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nthm37\",\"data-framer-name\":\"Content Text Block\",layoutDependency:layoutDependency,layoutId:\"ji_aY9dvV\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-135qrtm\",\"data-styles-preset\":\"myKLULMWY\",children:\"Accelerators and innovation programmes\"})}),className:\"framer-ppt2qo\",\"data-framer-name\":\"Content  TItle\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"aKKKIt5sN\",verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({IgsyVj8oT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-135qrtm\",\"data-styles-preset\":\"myKLULMWY\",style:{\"--framer-text-alignment\":\"center\"},children:\"Accelerators and innovation programmes\"})})},r9hbP7Sqe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-135qrtm\",\"data-styles-preset\":\"myKLULMWY\",style:{\"--framer-text-alignment\":\"center\"},children:\"Accelerators and innovation programmes\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.0208333em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-f512b2c0-ccff-4c1c-81ef-5b1a68ff0d48, rgb(34, 79, 138)))\"},children:\"IP and intangibles are indicators of future value and strength\"})}),className:\"framer-g5d2pw\",\"data-framer-name\":\"Content  TItle\",fonts:[\"GF;Outfit-600\"],layoutDependency:layoutDependency,layoutId:\"ji7JNhks9\",style:{\"--extracted-a0htzi\":\"var(--token-f512b2c0-ccff-4c1c-81ef-5b1a68ff0d48, rgb(34, 79, 138))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({IgsyVj8oT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.0208333em\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-f512b2c0-ccff-4c1c-81ef-5b1a68ff0d48, rgb(34, 79, 138)))\"},children:\"IP and intangibles are indicators of future value and strength\"})})},r9hbP7Sqe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.0208333em\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-f512b2c0-ccff-4c1c-81ef-5b1a68ff0d48, rgb(34, 79, 138)))\"},children:\"IP and intangibles are indicators of future value and strength\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:\"The UK has a vibrant IP-focused business and financial support network for start-ups, scaleups, SMEs and innovative companies of all sizes. Inngot works with advisory bodies at all levels, including Innovate UK, Innovate UK EDGE and its local delivery partners, industry-specific bodies such as the APC, Government agencies like the IPO, Local Enterprise Partnerships and Business IP Centres.\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-color\":\"var(--extracted-1iakedh, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:\"Catapult, Accelerator, LEP, Innovation Hub \u2013 if you are an organisation supporting innovative companies, our tools and our services can help you give your clients the information and knowledge they need to understand, identify, value, better manage and monetise the IP and intangibles they have, and to create effective strategies for building new IP and intangibles!\"})]}),className:\"framer-1p4bywo\",\"data-framer-name\":\"Paragraph\",fonts:[\"GF;Archivo-regular\"],layoutDependency:layoutDependency,layoutId:\"m6qn_jQQK\",style:{\"--extracted-1iakedh\":\"var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61))\",\"--extracted-2gxw0f\":\"var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61))\",\"--extracted-r6o4lv\":\"var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({IgsyVj8oT:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:\"The UK has a vibrant IP-focused business and financial support network for start-ups, scaleups, SMEs and innovative companies of all sizes. Inngot works with advisory bodies at all levels, including Innovate UK, Innovate UK EDGE and its local delivery partners, industry-specific bodies such as the APC, Government agencies like the IPO, Local Enterprise Partnerships and Business IP Centres.\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1iakedh, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:\"Catapult, Accelerator, LEP, Innovation Hub \u2013 if you are an organisation supporting innovative companies, our tools and our services can help you give your clients the information and knowledge they need to understand, identify, value, better manage and monetise the IP and intangibles they have, and to create effective strategies for building new IP and intangibles!\"})]})},r9hbP7Sqe:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:\"The UK has a vibrant IP-focused business and financial support network for start-ups, scaleups, SMEs and innovative companies of all sizes. Inngot works with advisory bodies at all levels, including Innovate UK, Innovate UK EDGE and its local delivery partners, industry-specific bodies such as the APC, Government agencies like the IPO, Local Enterprise Partnerships and Business IP Centres.\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1iakedh, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:\"Catapult, Accelerator, LEP, Innovation Hub \u2013 if you are an organisation supporting innovative companies, our tools and our services can help you give your clients the information and knowledge they need to understand, identify, value, better manage and monetise the IP and intangibles they have, and to create effective strategies for building new IP and intangibles!\"})]})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"XBhWXEv3s\"},implicitPathVariables:undefined},{href:{webPageId:\"XBhWXEv3s\"},implicitPathVariables:undefined},{href:{webPageId:\"XBhWXEv3s\"},implicitPathVariables:undefined},{href:{webPageId:\"XBhWXEv3s\"},implicitPathVariables:undefined},{href:{webPageId:\"XBhWXEv3s\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:67,...addPropertyOverrides({BI1UJl922:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+50+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-100-665.2)/2+0+0)+0+0+0+0+0+0+598.2},IgsyVj8oT:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+50+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-100-1198.2)/2+0+0)+0+0+0+533+0+0+0+598.2},jaZDkwnbM:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+50+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-100-665.2)/2+0+0)+0+0+0+0+0+0+598.2},r9hbP7Sqe:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+50+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-100-1198.2)/2+0+0)+0+0+0+533+0+0+0+598.2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-96sovw-container\",layoutDependency:layoutDependency,layoutId:\"eGXY0ybbg-container\",children:/*#__PURE__*/_jsx(Button,{A2dWUqqQh:\"Get started\",DnytOe0Z8:resolvedLinks2[0],height:\"100%\",id:\"eGXY0ybbg\",layoutId:\"eGXY0ybbg\",N5FKWNwKs:false,oSfNN4wFr:false,v8ArQOg02:false,variant:\"GVBL6yAQc\",width:\"100%\",...addPropertyOverrides({BI1UJl922:{DnytOe0Z8:resolvedLinks2[2]},IgsyVj8oT:{DnytOe0Z8:resolvedLinks2[4]},jaZDkwnbM:{DnytOe0Z8:resolvedLinks2[1]},r9hbP7Sqe:{DnytOe0Z8:resolvedLinks2[3]}},baseVariant,gestureVariant)})})})})]})})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14l2c54\",\"data-framer-name\":\"Content Row\",layoutDependency:layoutDependency,layoutId:\"KINzUx7yD\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zlmx64\",\"data-framer-name\":\"Content Text Block\",layoutDependency:layoutDependency,layoutId:\"bufV33Sak\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-135qrtm\",\"data-styles-preset\":\"myKLULMWY\",children:\"Business advisors\"})}),className:\"framer-yeqpse\",\"data-framer-name\":\"Content  TItle\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Cpk_eB6Qq\",verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({aoo2AyFZu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-135qrtm\",\"data-styles-preset\":\"myKLULMWY\",style:{\"--framer-text-alignment\":\"center\"},children:\"Business advisors\"})})},pyG4lahQk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-135qrtm\",\"data-styles-preset\":\"myKLULMWY\",style:{\"--framer-text-alignment\":\"center\"},children:\"Business advisors\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.0208333em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-f512b2c0-ccff-4c1c-81ef-5b1a68ff0d48, rgb(34, 79, 138)))\"},children:\"Unlocking the door to growth through better IP support\"})}),className:\"framer-hi7x8x\",\"data-framer-name\":\"Content  TItle\",fonts:[\"GF;Outfit-600\"],layoutDependency:layoutDependency,layoutId:\"Yb4hrIBmh\",style:{\"--extracted-a0htzi\":\"var(--token-f512b2c0-ccff-4c1c-81ef-5b1a68ff0d48, rgb(34, 79, 138))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({aoo2AyFZu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.0208333em\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-f512b2c0-ccff-4c1c-81ef-5b1a68ff0d48, rgb(34, 79, 138)))\"},children:\"Unlocking the door to growth through better IP support\"})})},pyG4lahQk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.0208333em\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-f512b2c0-ccff-4c1c-81ef-5b1a68ff0d48, rgb(34, 79, 138)))\"},children:\"Unlocking the door to growth through better IP support\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:\"Inngot has a long and successful track record of working with a range of business advisors, including accountants, law firms, IP experts, and tax experts.\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-color\":\"var(--extracted-1iakedh, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:\"If you advise innovative companies, then our tools and our services can help. We can dig up the information and knowledge your clients need to understand, identify, value, better manage and monetise the IP and intangibles they have, and to create effective strategies for creating and exploiting new IP and intangibles!\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-color\":\"var(--extracted-14qxiz, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-color\":\"var(--extracted-ydz9fi, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:\"We have supported advisors working with clients on a range of issues, including tax and transfer pricing, R&D costs, estate planning and probate, IP strategy, selling, buying and licensing IP, and collaborations and spin-outs.\\xa0\"})]}),className:\"framer-sssyzi\",\"data-framer-name\":\"Paragraph\",fonts:[\"GF;Archivo-regular\"],layoutDependency:layoutDependency,layoutId:\"cq4Snd02W\",style:{\"--extracted-14qxiz\":\"var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61))\",\"--extracted-1iakedh\":\"var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61))\",\"--extracted-2gxw0f\":\"var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61))\",\"--extracted-r6o4lv\":\"var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61))\",\"--extracted-ydz9fi\":\"var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({aoo2AyFZu:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:\"Inngot has a long and successful track record of working with a range of business advisors, including accountants, law firms, IP experts, and tax experts.\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1iakedh, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:\"If you advise innovative companies, then our tools and our services can help. We can dig up the information and knowledge your clients need to understand, identify, value, better manage and monetise the IP and intangibles they have, and to create effective strategies for creating and exploiting new IP and intangibles!\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-14qxiz, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-ydz9fi, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:\"We have supported advisors working with clients on a range of issues, including tax and transfer pricing, R&D costs, estate planning and probate, IP strategy, selling, buying and licensing IP, and collaborations and spin-outs.\\xa0\"})]})},pyG4lahQk:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:\"Inngot has a long and successful track record of working with a range of business advisors, including accountants, law firms, IP experts, and tax experts.\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1iakedh, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:\"If you advise innovative companies, then our tools and our services can help. We can dig up the information and knowledge your clients need to understand, identify, value, better manage and monetise the IP and intangibles they have, and to create effective strategies for creating and exploiting new IP and intangibles!\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-14qxiz, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-ydz9fi, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:\"We have supported advisors working with clients on a range of issues, including tax and transfer pricing, R&D costs, estate planning and probate, IP strategy, selling, buying and licensing IP, and collaborations and spin-outs.\\xa0\"})]})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"XBhWXEv3s\"},implicitPathVariables:undefined},{href:{webPageId:\"XBhWXEv3s\"},implicitPathVariables:undefined},{href:{webPageId:\"XBhWXEv3s\"},implicitPathVariables:undefined},{href:{webPageId:\"XBhWXEv3s\"},implicitPathVariables:undefined},{href:{webPageId:\"XBhWXEv3s\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:67,...addPropertyOverrides({aoo2AyFZu:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+50+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-100-1504.2)/2+0+0)+0+0+0+533+0+904.2},f5KuLIuVh:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+50+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-100-971.2)/2+0+0)+0+0+0+0+904.2},pyG4lahQk:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+50+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-100-1504.2)/2+0+0)+0+0+0+533+0+904.2},Um97Kz3If:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+50+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-100-971.2)/2+0+0)+0+0+0+0+904.2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-16xdi1j-container\",layoutDependency:layoutDependency,layoutId:\"QG5watXb4-container\",children:/*#__PURE__*/_jsx(Button,{A2dWUqqQh:\"Get started\",DnytOe0Z8:resolvedLinks3[0],height:\"100%\",id:\"QG5watXb4\",layoutId:\"QG5watXb4\",N5FKWNwKs:false,oSfNN4wFr:false,v8ArQOg02:false,variant:\"GVBL6yAQc\",width:\"100%\",...addPropertyOverrides({aoo2AyFZu:{DnytOe0Z8:resolvedLinks3[4]},f5KuLIuVh:{DnytOe0Z8:resolvedLinks3[2]},pyG4lahQk:{DnytOe0Z8:resolvedLinks3[3]},Um97Kz3If:{DnytOe0Z8:resolvedLinks3[1]}},baseVariant,gestureVariant)})})})})]}),/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1200,pixelHeight:1e3,pixelWidth:1200,src:\"https://framerusercontent.com/images/siydSlFyZ39Mo0nMUXx2Gj6ypZE.png\",srcSet:\"https://framerusercontent.com/images/siydSlFyZ39Mo0nMUXx2Gj6ypZE.png?scale-down-to=512 512w,https://framerusercontent.com/images/siydSlFyZ39Mo0nMUXx2Gj6ypZE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/siydSlFyZ39Mo0nMUXx2Gj6ypZE.png 1200w\"},className:\"framer-39umc9\",\"data-framer-name\":\"Content Image\",layoutDependency:layoutDependency,layoutId:\"iC_XJIZdI\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,transformPerspective:1200},...addPropertyOverrides({aoo2AyFZu:{background:{alt:\"Business advisors IP growth partners\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+50+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-100-1504.2)/2+0+0)+0+0+0+0),pixelHeight:1e3,pixelWidth:1272,sizes:`calc(min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1356px) - 60px)`,src:\"https://framerusercontent.com/images/hYF6YTzGXeWgR8T0Fqf26HfeFI.png\",srcSet:\"https://framerusercontent.com/images/hYF6YTzGXeWgR8T0Fqf26HfeFI.png?scale-down-to=512 512w,https://framerusercontent.com/images/hYF6YTzGXeWgR8T0Fqf26HfeFI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hYF6YTzGXeWgR8T0Fqf26HfeFI.png 1272w\"}},f5KuLIuVh:{background:{alt:\"Business advisors IP growth partners\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+50+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-100-971.2)/2+0+0)+0+0+235.60000000000002),pixelHeight:1e3,pixelWidth:1272,sizes:\"527.7778px\",src:\"https://framerusercontent.com/images/hYF6YTzGXeWgR8T0Fqf26HfeFI.png\",srcSet:\"https://framerusercontent.com/images/hYF6YTzGXeWgR8T0Fqf26HfeFI.png?scale-down-to=512 512w,https://framerusercontent.com/images/hYF6YTzGXeWgR8T0Fqf26HfeFI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hYF6YTzGXeWgR8T0Fqf26HfeFI.png 1272w\"}},pyG4lahQk:{background:{alt:\"Business advisors IP growth partners\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+50+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-100-1504.2)/2+0+0)+0+0+0+0),pixelHeight:1e3,pixelWidth:1272,sizes:`calc((min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1356px) - 60px) / 2.16)`,src:\"https://framerusercontent.com/images/hYF6YTzGXeWgR8T0Fqf26HfeFI.png\",srcSet:\"https://framerusercontent.com/images/hYF6YTzGXeWgR8T0Fqf26HfeFI.png?scale-down-to=512 512w,https://framerusercontent.com/images/hYF6YTzGXeWgR8T0Fqf26HfeFI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hYF6YTzGXeWgR8T0Fqf26HfeFI.png 1272w\"}},Um97Kz3If:{background:{alt:\"Business advisors IP growth partners\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+50+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-100-971.2)/2+0+0)+0+0+235.60000000000002),pixelHeight:1e3,pixelWidth:1272,sizes:`calc((min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1356px) - 60px) / 2.16)`,src:\"https://framerusercontent.com/images/hYF6YTzGXeWgR8T0Fqf26HfeFI.png\",srcSet:\"https://framerusercontent.com/images/hYF6YTzGXeWgR8T0Fqf26HfeFI.png?scale-down-to=512 512w,https://framerusercontent.com/images/hYF6YTzGXeWgR8T0Fqf26HfeFI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hYF6YTzGXeWgR8T0Fqf26HfeFI.png 1272w\"}}},baseVariant,gestureVariant)})]}),isDisplayed4()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-woz7dz\",\"data-framer-name\":\"Content Row\",layoutDependency:layoutDependency,layoutId:\"TtSAYbv2u\",children:[/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1200,pixelHeight:1e3,pixelWidth:1200,src:\"https://framerusercontent.com/images/siydSlFyZ39Mo0nMUXx2Gj6ypZE.png\",srcSet:\"https://framerusercontent.com/images/siydSlFyZ39Mo0nMUXx2Gj6ypZE.png?scale-down-to=512 512w,https://framerusercontent.com/images/siydSlFyZ39Mo0nMUXx2Gj6ypZE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/siydSlFyZ39Mo0nMUXx2Gj6ypZE.png 1200w\"},className:\"framer-ip1qkl\",\"data-framer-name\":\"Content Image\",layoutDependency:layoutDependency,layoutId:\"wAoh6kuIm\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,transformPerspective:1200},...addPropertyOverrides({gima2Vzw0:{background:{alt:\"IP in Academia with Inngot partners\",fit:\"fit\",intrinsicHeight:1e3,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+50+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-100-665.2)/2+0+0)+0+0+82.60000000000002),pixelHeight:948,pixelWidth:1009,positionX:\"center\",positionY:\"center\",sizes:`calc((min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1356px) - 60px) / 2.16)`,src:\"https://framerusercontent.com/images/dOs8IO24VWYuEktZq1doSrn5P2I.png\",srcSet:\"https://framerusercontent.com/images/dOs8IO24VWYuEktZq1doSrn5P2I.png?scale-down-to=512 512w,https://framerusercontent.com/images/dOs8IO24VWYuEktZq1doSrn5P2I.png 1009w\"}},ieXbPm32O:{background:{alt:\"IP in Academia with Inngot partners\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+50+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-100-1198.2)/2+0+0)+0+0+0+0),pixelHeight:948,pixelWidth:1009,sizes:`calc((min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1356px) - 60px) / 2.16)`,src:\"https://framerusercontent.com/images/dOs8IO24VWYuEktZq1doSrn5P2I.png\",srcSet:\"https://framerusercontent.com/images/dOs8IO24VWYuEktZq1doSrn5P2I.png?scale-down-to=512 512w,https://framerusercontent.com/images/dOs8IO24VWYuEktZq1doSrn5P2I.png 1009w\"}},kIJiVAT8a:{background:{alt:\"IP in Academia with Inngot partners\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+50+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-100-665.2)/2+0+0)+0+0+82.60000000000002),pixelHeight:948,pixelWidth:1009,sizes:\"527.7778px\",src:\"https://framerusercontent.com/images/dOs8IO24VWYuEktZq1doSrn5P2I.png\",srcSet:\"https://framerusercontent.com/images/dOs8IO24VWYuEktZq1doSrn5P2I.png?scale-down-to=512 512w,https://framerusercontent.com/images/dOs8IO24VWYuEktZq1doSrn5P2I.png 1009w\"}},kQKN824nc:{background:{alt:\"IP in Academia with Inngot partners\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+50+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-100-1198.2)/2+0+0)+0+0+0+0),pixelHeight:948,pixelWidth:1009,sizes:`calc(min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1356px) - 60px)`,src:\"https://framerusercontent.com/images/dOs8IO24VWYuEktZq1doSrn5P2I.png\",srcSet:\"https://framerusercontent.com/images/dOs8IO24VWYuEktZq1doSrn5P2I.png?scale-down-to=512 512w,https://framerusercontent.com/images/dOs8IO24VWYuEktZq1doSrn5P2I.png 1009w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1qidvlr\",\"data-framer-name\":\"Content text Block Wrapper\",layoutDependency:layoutDependency,layoutId:\"QhZmy3VY4\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mpcnrk\",\"data-framer-name\":\"Content Text Block\",layoutDependency:layoutDependency,layoutId:\"vtKs0hYLi\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-135qrtm\",\"data-styles-preset\":\"myKLULMWY\",children:\"Academia\"})}),className:\"framer-27i0a0\",\"data-framer-name\":\"Content  TItle\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"BvclPjQ1Q\",verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ieXbPm32O:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-135qrtm\",\"data-styles-preset\":\"myKLULMWY\",style:{\"--framer-text-alignment\":\"center\"},children:\"Academia\"})})},kQKN824nc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-135qrtm\",\"data-styles-preset\":\"myKLULMWY\",style:{\"--framer-text-alignment\":\"center\"},children:\"Academia\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.0208333em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-f512b2c0-ccff-4c1c-81ef-5b1a68ff0d48, rgb(34, 79, 138)))\"},children:\"IP commercialisation support for universities and research institutes\"})}),className:\"framer-fuaynb\",\"data-framer-name\":\"Content  TItle\",fonts:[\"GF;Outfit-600\"],layoutDependency:layoutDependency,layoutId:\"gqTjIjQWl\",style:{\"--extracted-a0htzi\":\"var(--token-f512b2c0-ccff-4c1c-81ef-5b1a68ff0d48, rgb(34, 79, 138))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ieXbPm32O:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.0208333em\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-f512b2c0-ccff-4c1c-81ef-5b1a68ff0d48, rgb(34, 79, 138)))\"},children:\"IP commercialisation support for universities and research institutes\"})})},kQKN824nc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.0208333em\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-f512b2c0-ccff-4c1c-81ef-5b1a68ff0d48, rgb(34, 79, 138)))\"},children:\"IP commercialisation support for universities and research institutes\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:\"The Inngot team has extensive experience in advising the knowledge base on how to identify, protect and commercialise the IP that has been created through R&D. This includes IP generated by staff, students and collaborative partnerships \u2013 where the ownership position can become complex.\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-color\":\"var(--extracted-1iakedh, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:\"As well as advice on licensing strategies, Inngot has conducted many successful assignments for university spin-offs and spin-outs, supporting launch strategies, identifying technology and IP value, and helping to identify funding partners. We have also helped R&D-intensive departments create effective IP management policies.\"})]}),className:\"framer-123qlng\",\"data-framer-name\":\"Paragraph\",fonts:[\"GF;Archivo-regular\"],layoutDependency:layoutDependency,layoutId:\"NucygaHsm\",style:{\"--extracted-1iakedh\":\"var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61))\",\"--extracted-2gxw0f\":\"var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61))\",\"--extracted-r6o4lv\":\"var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ieXbPm32O:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:\"The Inngot team has extensive experience in advising the knowledge base on how to identify, protect and commercialise the IP that has been created through R&D. This includes IP generated by staff, students and collaborative partnerships \u2013 where the ownership position can become complex.\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1iakedh, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:\"As well as advice on licensing strategies, Inngot has conducted many successful assignments for university spin-offs and spin-outs, supporting launch strategies, identifying technology and IP value, and helping to identify funding partners. We have also helped R&D-intensive departments create effective IP management policies.\"})]})},kQKN824nc:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:\"The Inngot team has extensive experience in advising the knowledge base on how to identify, protect and commercialise the IP that has been created through R&D. This includes IP generated by staff, students and collaborative partnerships \u2013 where the ownership position can become complex.\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1iakedh, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:\"As well as advice on licensing strategies, Inngot has conducted many successful assignments for university spin-offs and spin-outs, supporting launch strategies, identifying technology and IP value, and helping to identify funding partners. We have also helped R&D-intensive departments create effective IP management policies.\"})]})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"XBhWXEv3s\"},implicitPathVariables:undefined},{href:{webPageId:\"XBhWXEv3s\"},implicitPathVariables:undefined},{href:{webPageId:\"XBhWXEv3s\"},implicitPathVariables:undefined},{href:{webPageId:\"XBhWXEv3s\"},implicitPathVariables:undefined},{href:{webPageId:\"XBhWXEv3s\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:67,...addPropertyOverrides({gima2Vzw0:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+50+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-100-665.2)/2+0+0)+0+0+0+0+0+0+598.2},ieXbPm32O:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+50+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-100-1198.2)/2+0+0)+0+0+0+533+0+0+0+598.2},kIJiVAT8a:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+50+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-100-665.2)/2+0+0)+0+0+0+0+0+0+598.2},kQKN824nc:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+50+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-100-1198.2)/2+0+0)+0+0+0+533+0+0+0+598.2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-f51xbc-container\",layoutDependency:layoutDependency,layoutId:\"XhqRT9o40-container\",children:/*#__PURE__*/_jsx(Button,{A2dWUqqQh:\"Get started\",DnytOe0Z8:resolvedLinks4[0],height:\"100%\",id:\"XhqRT9o40\",layoutId:\"XhqRT9o40\",N5FKWNwKs:false,oSfNN4wFr:false,v8ArQOg02:false,variant:\"GVBL6yAQc\",width:\"100%\",...addPropertyOverrides({gima2Vzw0:{DnytOe0Z8:resolvedLinks4[1]},ieXbPm32O:{DnytOe0Z8:resolvedLinks4[3]},kIJiVAT8a:{DnytOe0Z8:resolvedLinks4[2]},kQKN824nc:{DnytOe0Z8:resolvedLinks4[4]}},baseVariant,gestureVariant)})})})})]})})]}),isDisplayed5()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-r4vucr\",\"data-framer-name\":\"Content Row\",layoutDependency:layoutDependency,layoutId:\"YlwaG9Fp1\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-143v422\",\"data-framer-name\":\"Content text Block Wrapper\",layoutDependency:layoutDependency,layoutId:\"Y3rCwwv45\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xutefz\",\"data-framer-name\":\"Content Text Block\",layoutDependency:layoutDependency,layoutId:\"aWQnW8Sav\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-135qrtm\",\"data-styles-preset\":\"myKLULMWY\",children:\"Government and NGOs\"})}),className:\"framer-1n50gbs\",\"data-framer-name\":\"Content  TItle\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"leVJ2WLWo\",verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({x4P2vcU5B:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-135qrtm\",\"data-styles-preset\":\"myKLULMWY\",style:{\"--framer-text-alignment\":\"center\"},children:\"Government and NGOs\"})})},xSuo36qFM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-135qrtm\",\"data-styles-preset\":\"myKLULMWY\",style:{\"--framer-text-alignment\":\"center\"},children:\"Government and NGOs\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.0208333em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-f512b2c0-ccff-4c1c-81ef-5b1a68ff0d48, rgb(34, 79, 138)))\"},children:\"Making better informed policy choices\"})}),className:\"framer-16vkem9\",\"data-framer-name\":\"Content  TItle\",fonts:[\"GF;Outfit-600\"],layoutDependency:layoutDependency,layoutId:\"fhcrKU5UK\",style:{\"--extracted-a0htzi\":\"var(--token-f512b2c0-ccff-4c1c-81ef-5b1a68ff0d48, rgb(34, 79, 138))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({x4P2vcU5B:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.0208333em\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-f512b2c0-ccff-4c1c-81ef-5b1a68ff0d48, rgb(34, 79, 138)))\"},children:\"Making better informed policy choices\"})})},xSuo36qFM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.0208333em\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-f512b2c0-ccff-4c1c-81ef-5b1a68ff0d48, rgb(34, 79, 138)))\"},children:\"Making better informed policy choices\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:\"Since its inception, Inngot has been engaged in IP policy research, using quantitative and qualitative techniques to investigate critical economic issues. We have specialised in helping national and international agencies determine how IP is (and is not) identified and accounted for, how it can be leveraged for finance, and whether law and regulation are keeping pace with digital technology.\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-color\":\"var(--extracted-1iakedh, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:\"We live in a world where businesses invest one-third more in \u2018soft\u2019 intangibles than they do in \u2018hard\u2019 tangibles; where up to 90% of listed US company value is no longer attributable to physical assets on the balance sheet; where between 30-40% of business sale values are routinely attributed to identifiable intangibles (before considering goodwill); and where IP licensing incomes in growth economies are rising by billions of dollars per annum (sources: Imperial College/IPO, Ocean Tomo, Deloitte/KPMG, World Bank).\"})]}),className:\"framer-1ako6qi\",\"data-framer-name\":\"Paragraph\",fonts:[\"GF;Archivo-regular\"],layoutDependency:layoutDependency,layoutId:\"ZUU1UPzlE\",style:{\"--extracted-1iakedh\":\"var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61))\",\"--extracted-2gxw0f\":\"var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61))\",\"--extracted-r6o4lv\":\"var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({x4P2vcU5B:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:\"Since its inception, Inngot has been engaged in IP policy research, using quantitative and qualitative techniques to investigate critical economic issues. We have specialised in helping national and international agencies determine how IP is (and is not) identified and accounted for, how it can be leveraged for finance, and whether law and regulation are keeping pace with digital technology.\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1iakedh, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:\"We live in a world where businesses invest one-third more in \u2018soft\u2019 intangibles than they do in \u2018hard\u2019 tangibles; where up to 90% of listed US company value is no longer attributable to physical assets on the balance sheet; where between 30-40% of business sale values are routinely attributed to identifiable intangibles (before considering goodwill); and where IP licensing incomes in growth economies are rising by billions of dollars per annum (sources: Imperial College/IPO, Ocean Tomo, Deloitte/KPMG, World Bank).\"})]})},xSuo36qFM:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:\"Since its inception, Inngot has been engaged in IP policy research, using quantitative and qualitative techniques to investigate critical economic issues. We have specialised in helping national and international agencies determine how IP is (and is not) identified and accounted for, how it can be leveraged for finance, and whether law and regulation are keeping pace with digital technology.\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1iakedh, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)))\"},children:\"We live in a world where businesses invest one-third more in \u2018soft\u2019 intangibles than they do in \u2018hard\u2019 tangibles; where up to 90% of listed US company value is no longer attributable to physical assets on the balance sheet; where between 30-40% of business sale values are routinely attributed to identifiable intangibles (before considering goodwill); and where IP licensing incomes in growth economies are rising by billions of dollars per annum (sources: Imperial College/IPO, Ocean Tomo, Deloitte/KPMG, World Bank).\"})]})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"XBhWXEv3s\"},implicitPathVariables:undefined},{href:{webPageId:\"XBhWXEv3s\"},implicitPathVariables:undefined},{href:{webPageId:\"XBhWXEv3s\"},implicitPathVariables:undefined},{href:{webPageId:\"XBhWXEv3s\"},implicitPathVariables:undefined},{href:{webPageId:\"XBhWXEv3s\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:67,...addPropertyOverrides({fUoCHI4kW:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+50+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-100-665.2)/2+0+0)+0+0+0+0+0+0+598.2},JnEhxY6Yx:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+50+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-100-665.2)/2+0+0)+0+0+0+0+0+0+598.2},x4P2vcU5B:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+50+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-100-1198.2)/2+0+0)+0+0+0+533+0+0+0+598.2},xSuo36qFM:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+50+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-100-1198.2)/2+0+0)+0+0+0+533+0+0+0+598.2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-869vi3-container\",layoutDependency:layoutDependency,layoutId:\"inCdIQg1A-container\",children:/*#__PURE__*/_jsx(Button,{A2dWUqqQh:\"Get started\",DnytOe0Z8:resolvedLinks5[0],height:\"100%\",id:\"inCdIQg1A\",layoutId:\"inCdIQg1A\",N5FKWNwKs:false,oSfNN4wFr:false,v8ArQOg02:false,variant:\"GVBL6yAQc\",width:\"100%\",...addPropertyOverrides({fUoCHI4kW:{DnytOe0Z8:resolvedLinks5[2]},JnEhxY6Yx:{DnytOe0Z8:resolvedLinks5[1]},x4P2vcU5B:{DnytOe0Z8:resolvedLinks5[4]},xSuo36qFM:{DnytOe0Z8:resolvedLinks5[3]}},baseVariant,gestureVariant)})})})})]})}),/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1200,pixelHeight:1e3,pixelWidth:1200,src:\"https://framerusercontent.com/images/siydSlFyZ39Mo0nMUXx2Gj6ypZE.png\",srcSet:\"https://framerusercontent.com/images/siydSlFyZ39Mo0nMUXx2Gj6ypZE.png?scale-down-to=512 512w,https://framerusercontent.com/images/siydSlFyZ39Mo0nMUXx2Gj6ypZE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/siydSlFyZ39Mo0nMUXx2Gj6ypZE.png 1200w\"},className:\"framer-1scw5wv\",\"data-framer-name\":\"Content Image\",layoutDependency:layoutDependency,layoutId:\"sAheRCm7e\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,transformPerspective:1200},...addPropertyOverrides({fUoCHI4kW:{background:{alt:\"Government and NGOs working with Inngot\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+50+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-100-665.2)/2+0+0)+0+0+82.60000000000002),pixelHeight:1121,pixelWidth:2e3,sizes:\"527.7778px\",src:\"https://framerusercontent.com/images/RBVg6zXKvnsJ6UoVw9ottSCPnM.png\",srcSet:\"https://framerusercontent.com/images/RBVg6zXKvnsJ6UoVw9ottSCPnM.png?scale-down-to=512 512w,https://framerusercontent.com/images/RBVg6zXKvnsJ6UoVw9ottSCPnM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RBVg6zXKvnsJ6UoVw9ottSCPnM.png 2000w\"}},JnEhxY6Yx:{background:{alt:\"Government and NGOs working with Inngot\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+50+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-100-665.2)/2+0+0)+0+0+82.60000000000002),pixelHeight:1121,pixelWidth:2e3,sizes:`calc((min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1356px) - 60px) / 2.16)`,src:\"https://framerusercontent.com/images/RBVg6zXKvnsJ6UoVw9ottSCPnM.png\",srcSet:\"https://framerusercontent.com/images/RBVg6zXKvnsJ6UoVw9ottSCPnM.png?scale-down-to=512 512w,https://framerusercontent.com/images/RBVg6zXKvnsJ6UoVw9ottSCPnM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RBVg6zXKvnsJ6UoVw9ottSCPnM.png 2000w\"}},x4P2vcU5B:{background:{alt:\"Government and NGOs working with Inngot\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+50+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-100-1198.2)/2+0+0)+0+0+0+0),pixelHeight:1121,pixelWidth:2e3,sizes:`calc(min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1356px) - 60px)`,src:\"https://framerusercontent.com/images/RBVg6zXKvnsJ6UoVw9ottSCPnM.png\",srcSet:\"https://framerusercontent.com/images/RBVg6zXKvnsJ6UoVw9ottSCPnM.png?scale-down-to=512 512w,https://framerusercontent.com/images/RBVg6zXKvnsJ6UoVw9ottSCPnM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RBVg6zXKvnsJ6UoVw9ottSCPnM.png 2000w\"}},xSuo36qFM:{background:{alt:\"Government and NGOs working with Inngot\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+50+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-100-1198.2)/2+0+0)+0+0+0+0),pixelHeight:1121,pixelWidth:2e3,sizes:`calc((min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1356px) - 60px) / 2.16)`,src:\"https://framerusercontent.com/images/RBVg6zXKvnsJ6UoVw9ottSCPnM.png\",srcSet:\"https://framerusercontent.com/images/RBVg6zXKvnsJ6UoVw9ottSCPnM.png?scale-down-to=512 512w,https://framerusercontent.com/images/RBVg6zXKvnsJ6UoVw9ottSCPnM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RBVg6zXKvnsJ6UoVw9ottSCPnM.png 2000w\"}}},baseVariant,gestureVariant)})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-l7X3n.framer-8d41yf, .framer-l7X3n .framer-8d41yf { display: block; }\",\".framer-l7X3n.framer-n75gqi { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 50px 0px 50px 0px; position: relative; width: 1440px; }\",\".framer-l7X3n .framer-roani7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; max-width: 1356px; overflow: visible; padding: 0px 30px 0px 30px; position: relative; width: 100%; }\",\".framer-l7X3n .framer-14gu08i, .framer-l7X3n .framer-1301zgb, .framer-l7X3n .framer-1y7035j, .framer-l7X3n .framer-1f2jxlt, .framer-l7X3n .framer-14l2c54, .framer-l7X3n .framer-woz7dz, .framer-l7X3n .framer-r4vucr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-l7X3n .framer-11hwmsd, .framer-l7X3n .framer-19eziwk, .framer-l7X3n .framer-u62bfw, .framer-l7X3n .framer-1c49s5o, .framer-l7X3n .framer-1qidvlr, .framer-l7X3n .framer-143v422 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-l7X3n .framer-127y4xd, .framer-l7X3n .framer-1cutmek, .framer-l7X3n .framer-3l5zsx, .framer-l7X3n .framer-nthm37, .framer-l7X3n .framer-1mpcnrk, .framer-l7X3n .framer-1xutefz { 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: flex-start; max-width: 544px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-l7X3n .framer-gt4k74, .framer-l7X3n .framer-s9bg5g, .framer-l7X3n .framer-ppt2qo, .framer-l7X3n .framer-yeqpse, .framer-l7X3n .framer-27i0a0, .framer-l7X3n .framer-1n50gbs { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-l7X3n .framer-8dv4bk, .framer-l7X3n .framer-1ajputx, .framer-l7X3n .framer-dl7hyt, .framer-l7X3n .framer-1cdef2y, .framer-l7X3n .framer-v90lb2, .framer-l7X3n .framer-g5d2pw, .framer-l7X3n .framer-1p4bywo, .framer-l7X3n .framer-hi7x8x, .framer-l7X3n .framer-sssyzi, .framer-l7X3n .framer-fuaynb, .framer-l7X3n .framer-123qlng, .framer-l7X3n .framer-16vkem9, .framer-l7X3n .framer-1ako6qi { flex: none; height: auto; max-width: 483px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-l7X3n .framer-1xfv3sr-container, .framer-l7X3n .framer-62imbl-container, .framer-l7X3n .framer-96sovw-container, .framer-l7X3n .framer-16xdi1j-container, .framer-l7X3n .framer-f51xbc-container, .framer-l7X3n .framer-869vi3-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-l7X3n .framer-61omkk, .framer-l7X3n .framer-fgxiwb { align-content: center; align-items: center; aspect-ratio: 1.2 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 500px); justify-content: center; padding: 0px; position: relative; width: 46%; }\",\".framer-l7X3n .framer-evte50, .framer-l7X3n .framer-mmeuq3, .framer-l7X3n .framer-39umc9, .framer-l7X3n .framer-ip1qkl, .framer-l7X3n .framer-1scw5wv { align-content: center; align-items: center; aspect-ratio: 1.2 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 167px); justify-content: center; padding: 0px; position: relative; width: 46%; }\",\".framer-l7X3n .framer-zlmx64 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; max-width: 544px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-l7X3n.framer-n75gqi, .framer-l7X3n .framer-roani7, .framer-l7X3n .framer-14gu08i, .framer-l7X3n .framer-11hwmsd, .framer-l7X3n .framer-127y4xd, .framer-l7X3n .framer-61omkk, .framer-l7X3n .framer-1301zgb, .framer-l7X3n .framer-fgxiwb, .framer-l7X3n .framer-19eziwk, .framer-l7X3n .framer-1cutmek, .framer-l7X3n .framer-1y7035j, .framer-l7X3n .framer-u62bfw, .framer-l7X3n .framer-3l5zsx, .framer-l7X3n .framer-evte50, .framer-l7X3n .framer-1f2jxlt, .framer-l7X3n .framer-mmeuq3, .framer-l7X3n .framer-1c49s5o, .framer-l7X3n .framer-nthm37, .framer-l7X3n .framer-14l2c54, .framer-l7X3n .framer-zlmx64, .framer-l7X3n .framer-39umc9, .framer-l7X3n .framer-woz7dz, .framer-l7X3n .framer-ip1qkl, .framer-l7X3n .framer-1qidvlr, .framer-l7X3n .framer-1mpcnrk, .framer-l7X3n .framer-r4vucr, .framer-l7X3n .framer-143v422, .framer-l7X3n .framer-1xutefz, .framer-l7X3n .framer-1scw5wv { gap: 0px; } .framer-l7X3n.framer-n75gqi > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-l7X3n.framer-n75gqi > :first-child, .framer-l7X3n .framer-roani7 > :first-child, .framer-l7X3n .framer-11hwmsd > :first-child, .framer-l7X3n .framer-127y4xd > :first-child, .framer-l7X3n .framer-61omkk > :first-child, .framer-l7X3n .framer-fgxiwb > :first-child, .framer-l7X3n .framer-19eziwk > :first-child, .framer-l7X3n .framer-1cutmek > :first-child, .framer-l7X3n .framer-u62bfw > :first-child, .framer-l7X3n .framer-3l5zsx > :first-child, .framer-l7X3n .framer-evte50 > :first-child, .framer-l7X3n .framer-mmeuq3 > :first-child, .framer-l7X3n .framer-1c49s5o > :first-child, .framer-l7X3n .framer-nthm37 > :first-child, .framer-l7X3n .framer-zlmx64 > :first-child, .framer-l7X3n .framer-39umc9 > :first-child, .framer-l7X3n .framer-ip1qkl > :first-child, .framer-l7X3n .framer-1qidvlr > :first-child, .framer-l7X3n .framer-1mpcnrk > :first-child, .framer-l7X3n .framer-143v422 > :first-child, .framer-l7X3n .framer-1xutefz > :first-child, .framer-l7X3n .framer-1scw5wv > :first-child { margin-top: 0px; } .framer-l7X3n.framer-n75gqi > :last-child, .framer-l7X3n .framer-roani7 > :last-child, .framer-l7X3n .framer-11hwmsd > :last-child, .framer-l7X3n .framer-127y4xd > :last-child, .framer-l7X3n .framer-61omkk > :last-child, .framer-l7X3n .framer-fgxiwb > :last-child, .framer-l7X3n .framer-19eziwk > :last-child, .framer-l7X3n .framer-1cutmek > :last-child, .framer-l7X3n .framer-u62bfw > :last-child, .framer-l7X3n .framer-3l5zsx > :last-child, .framer-l7X3n .framer-evte50 > :last-child, .framer-l7X3n .framer-mmeuq3 > :last-child, .framer-l7X3n .framer-1c49s5o > :last-child, .framer-l7X3n .framer-nthm37 > :last-child, .framer-l7X3n .framer-zlmx64 > :last-child, .framer-l7X3n .framer-39umc9 > :last-child, .framer-l7X3n .framer-ip1qkl > :last-child, .framer-l7X3n .framer-1qidvlr > :last-child, .framer-l7X3n .framer-1mpcnrk > :last-child, .framer-l7X3n .framer-143v422 > :last-child, .framer-l7X3n .framer-1xutefz > :last-child, .framer-l7X3n .framer-1scw5wv > :last-child { margin-bottom: 0px; } .framer-l7X3n .framer-roani7 > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-l7X3n .framer-14gu08i > *, .framer-l7X3n .framer-1301zgb > *, .framer-l7X3n .framer-1y7035j > *, .framer-l7X3n .framer-1f2jxlt > *, .framer-l7X3n .framer-14l2c54 > *, .framer-l7X3n .framer-woz7dz > *, .framer-l7X3n .framer-r4vucr > * { margin: 0px; margin-left: calc(100px / 2); margin-right: calc(100px / 2); } .framer-l7X3n .framer-14gu08i > :first-child, .framer-l7X3n .framer-1301zgb > :first-child, .framer-l7X3n .framer-1y7035j > :first-child, .framer-l7X3n .framer-1f2jxlt > :first-child, .framer-l7X3n .framer-14l2c54 > :first-child, .framer-l7X3n .framer-woz7dz > :first-child, .framer-l7X3n .framer-r4vucr > :first-child { margin-left: 0px; } .framer-l7X3n .framer-14gu08i > :last-child, .framer-l7X3n .framer-1301zgb > :last-child, .framer-l7X3n .framer-1y7035j > :last-child, .framer-l7X3n .framer-1f2jxlt > :last-child, .framer-l7X3n .framer-14l2c54 > :last-child, .framer-l7X3n .framer-woz7dz > :last-child, .framer-l7X3n .framer-r4vucr > :last-child { margin-right: 0px; } .framer-l7X3n .framer-11hwmsd > *, .framer-l7X3n .framer-19eziwk > *, .framer-l7X3n .framer-u62bfw > *, .framer-l7X3n .framer-1c49s5o > *, .framer-l7X3n .framer-1qidvlr > *, .framer-l7X3n .framer-143v422 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-l7X3n .framer-127y4xd > *, .framer-l7X3n .framer-1cutmek > *, .framer-l7X3n .framer-3l5zsx > *, .framer-l7X3n .framer-nthm37 > *, .framer-l7X3n .framer-zlmx64 > *, .framer-l7X3n .framer-1mpcnrk > *, .framer-l7X3n .framer-1xutefz > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-l7X3n .framer-61omkk > *, .framer-l7X3n .framer-fgxiwb > *, .framer-l7X3n .framer-evte50 > *, .framer-l7X3n .framer-mmeuq3 > *, .framer-l7X3n .framer-39umc9 > *, .framer-l7X3n .framer-ip1qkl > *, .framer-l7X3n .framer-1scw5wv > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-l7X3n.framer-v-1k3lbph.framer-n75gqi, .framer-l7X3n.framer-v-1k3lbph .framer-roani7, .framer-l7X3n.framer-v-fcjx9b.framer-n75gqi, .framer-l7X3n.framer-v-fcjx9b .framer-roani7, .framer-l7X3n.framer-v-y8xaln.framer-n75gqi, .framer-l7X3n.framer-v-y8xaln .framer-roani7, .framer-l7X3n.framer-v-1ho2bti.framer-n75gqi, .framer-l7X3n.framer-v-1ho2bti .framer-roani7, .framer-l7X3n.framer-v-vt9uax.framer-n75gqi, .framer-l7X3n.framer-v-vt9uax .framer-roani7, .framer-l7X3n.framer-v-vhdujn.framer-n75gqi, .framer-l7X3n.framer-v-vhdujn .framer-roani7 { width: 1200px; }\",\".framer-l7X3n.framer-v-1k3lbph .framer-61omkk, .framer-l7X3n.framer-v-1k3lbph .framer-fgxiwb, .framer-l7X3n.framer-v-fcjx9b .framer-evte50 { height: var(--framer-aspect-ratio-supported, 440px); }\",\".framer-l7X3n.framer-v-b9789w.framer-n75gqi, .framer-l7X3n.framer-v-cwh6xu.framer-n75gqi, .framer-l7X3n.framer-v-9xrp8l.framer-n75gqi, .framer-l7X3n.framer-v-1cfgoua.framer-n75gqi, .framer-l7X3n.framer-v-uqh5ac.framer-n75gqi, .framer-l7X3n.framer-v-1to7njv.framer-n75gqi { width: 768px; }\",\".framer-l7X3n.framer-v-b9789w .framer-14gu08i, .framer-l7X3n.framer-v-b9789w .framer-1301zgb, .framer-l7X3n.framer-v-11icq20 .framer-14gu08i, .framer-l7X3n.framer-v-11icq20 .framer-1301zgb, .framer-l7X3n.framer-v-cwh6xu .framer-1y7035j, .framer-l7X3n.framer-v-mkex1m .framer-1y7035j, .framer-l7X3n.framer-v-9xrp8l .framer-1f2jxlt, .framer-l7X3n.framer-v-oc9rgx .framer-1f2jxlt, .framer-l7X3n.framer-v-1cfgoua .framer-14l2c54, .framer-l7X3n.framer-v-gifq7v .framer-14l2c54, .framer-l7X3n.framer-v-uqh5ac .framer-woz7dz, .framer-l7X3n.framer-v-1mia5if .framer-woz7dz, .framer-l7X3n.framer-v-1to7njv .framer-r4vucr, .framer-l7X3n.framer-v-1aq5clj .framer-r4vucr { flex-direction: column; gap: 33px; }\",\".framer-l7X3n.framer-v-b9789w .framer-11hwmsd, .framer-l7X3n.framer-v-11icq20 .framer-11hwmsd, .framer-l7X3n.framer-v-cwh6xu .framer-u62bfw, .framer-l7X3n.framer-v-mkex1m .framer-u62bfw, .framer-l7X3n.framer-v-1to7njv .framer-143v422, .framer-l7X3n.framer-v-1aq5clj .framer-143v422 { flex: none; order: 1; width: 100%; }\",\".framer-l7X3n.framer-v-b9789w .framer-127y4xd, .framer-l7X3n.framer-v-11icq20 .framer-127y4xd, .framer-l7X3n.framer-v-9xrp8l .framer-nthm37, .framer-l7X3n.framer-v-oc9rgx .framer-nthm37, .framer-l7X3n.framer-v-uqh5ac .framer-1mpcnrk, .framer-l7X3n.framer-v-1mia5if .framer-1mpcnrk, .framer-l7X3n.framer-v-1to7njv .framer-1xutefz, .framer-l7X3n.framer-v-1aq5clj .framer-1xutefz { align-content: center; align-items: center; max-width: 100%; }\",\".framer-l7X3n.framer-v-b9789w .framer-8dv4bk, .framer-l7X3n.framer-v-b9789w .framer-1ajputx, .framer-l7X3n.framer-v-b9789w .framer-1cutmek, .framer-l7X3n.framer-v-b9789w .framer-dl7hyt, .framer-l7X3n.framer-v-11icq20 .framer-8dv4bk, .framer-l7X3n.framer-v-11icq20 .framer-1ajputx, .framer-l7X3n.framer-v-11icq20 .framer-1cutmek, .framer-l7X3n.framer-v-11icq20 .framer-dl7hyt, .framer-l7X3n.framer-v-cwh6xu .framer-3l5zsx, .framer-l7X3n.framer-v-cwh6xu .framer-1cdef2y, .framer-l7X3n.framer-v-cwh6xu .framer-v90lb2, .framer-l7X3n.framer-v-mkex1m .framer-3l5zsx, .framer-l7X3n.framer-v-mkex1m .framer-1cdef2y, .framer-l7X3n.framer-v-mkex1m .framer-v90lb2, .framer-l7X3n.framer-v-9xrp8l .framer-g5d2pw, .framer-l7X3n.framer-v-9xrp8l .framer-1p4bywo, .framer-l7X3n.framer-v-oc9rgx .framer-g5d2pw, .framer-l7X3n.framer-v-oc9rgx .framer-1p4bywo, .framer-l7X3n.framer-v-1cfgoua .framer-hi7x8x, .framer-l7X3n.framer-v-1cfgoua .framer-sssyzi, .framer-l7X3n.framer-v-gifq7v .framer-hi7x8x, .framer-l7X3n.framer-v-gifq7v .framer-sssyzi, .framer-l7X3n.framer-v-uqh5ac .framer-fuaynb, .framer-l7X3n.framer-v-uqh5ac .framer-123qlng, .framer-l7X3n.framer-v-1mia5if .framer-fuaynb, .framer-l7X3n.framer-v-1mia5if .framer-123qlng, .framer-l7X3n.framer-v-1to7njv .framer-16vkem9, .framer-l7X3n.framer-v-1to7njv .framer-1ako6qi, .framer-l7X3n.framer-v-1aq5clj .framer-16vkem9, .framer-l7X3n.framer-v-1aq5clj .framer-1ako6qi { max-width: 100%; }\",\".framer-l7X3n.framer-v-b9789w .framer-61omkk { height: var(--framer-aspect-ratio-supported, 167px); order: 0; }\",\".framer-l7X3n.framer-v-b9789w .framer-fgxiwb { height: var(--framer-aspect-ratio-supported, 167px); }\",\".framer-l7X3n.framer-v-b9789w .framer-19eziwk, .framer-l7X3n.framer-v-11icq20 .framer-19eziwk, .framer-l7X3n.framer-v-9xrp8l .framer-1c49s5o, .framer-l7X3n.framer-v-oc9rgx .framer-1c49s5o, .framer-l7X3n.framer-v-uqh5ac .framer-1qidvlr, .framer-l7X3n.framer-v-1mia5if .framer-1qidvlr { flex: none; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-l7X3n.framer-v-b9789w .framer-14gu08i, .framer-l7X3n.framer-v-b9789w .framer-1301zgb { gap: 0px; } .framer-l7X3n.framer-v-b9789w .framer-14gu08i > *, .framer-l7X3n.framer-v-b9789w .framer-1301zgb > * { margin: 0px; margin-bottom: calc(33px / 2); margin-top: calc(33px / 2); } .framer-l7X3n.framer-v-b9789w .framer-14gu08i > :first-child, .framer-l7X3n.framer-v-b9789w .framer-1301zgb > :first-child { margin-top: 0px; } .framer-l7X3n.framer-v-b9789w .framer-14gu08i > :last-child, .framer-l7X3n.framer-v-b9789w .framer-1301zgb > :last-child { margin-bottom: 0px; } }\",\".framer-l7X3n.framer-v-11icq20.framer-n75gqi, .framer-l7X3n.framer-v-mkex1m.framer-n75gqi, .framer-l7X3n.framer-v-oc9rgx.framer-n75gqi, .framer-l7X3n.framer-v-gifq7v.framer-n75gqi, .framer-l7X3n.framer-v-1mia5if.framer-n75gqi, .framer-l7X3n.framer-v-1aq5clj.framer-n75gqi { width: 390px; }\",\".framer-l7X3n.framer-v-11icq20 .framer-61omkk { height: var(--framer-aspect-ratio-supported, 167px); order: 0; width: 100%; }\",\".framer-l7X3n.framer-v-11icq20 .framer-fgxiwb { height: var(--framer-aspect-ratio-supported, 167px); width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-l7X3n.framer-v-11icq20 .framer-14gu08i, .framer-l7X3n.framer-v-11icq20 .framer-1301zgb { gap: 0px; } .framer-l7X3n.framer-v-11icq20 .framer-14gu08i > *, .framer-l7X3n.framer-v-11icq20 .framer-1301zgb > * { margin: 0px; margin-bottom: calc(33px / 2); margin-top: calc(33px / 2); } .framer-l7X3n.framer-v-11icq20 .framer-14gu08i > :first-child, .framer-l7X3n.framer-v-11icq20 .framer-1301zgb > :first-child { margin-top: 0px; } .framer-l7X3n.framer-v-11icq20 .framer-14gu08i > :last-child, .framer-l7X3n.framer-v-11icq20 .framer-1301zgb > :last-child { margin-bottom: 0px; } }\",\".framer-l7X3n.framer-v-1qem01o .framer-evte50 { height: var(--framer-aspect-ratio-supported, 500px); }\",\".framer-l7X3n.framer-v-cwh6xu .framer-evte50, .framer-l7X3n.framer-v-1cfgoua .framer-39umc9, .framer-l7X3n.framer-v-1to7njv .framer-1scw5wv { order: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-l7X3n.framer-v-cwh6xu .framer-1y7035j { gap: 0px; } .framer-l7X3n.framer-v-cwh6xu .framer-1y7035j > * { margin: 0px; margin-bottom: calc(33px / 2); margin-top: calc(33px / 2); } .framer-l7X3n.framer-v-cwh6xu .framer-1y7035j > :first-child { margin-top: 0px; } .framer-l7X3n.framer-v-cwh6xu .framer-1y7035j > :last-child { margin-bottom: 0px; } }\",\".framer-l7X3n.framer-v-mkex1m .framer-evte50, .framer-l7X3n.framer-v-gifq7v .framer-39umc9, .framer-l7X3n.framer-v-1aq5clj .framer-1scw5wv { order: 0; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-l7X3n.framer-v-mkex1m .framer-1y7035j { gap: 0px; } .framer-l7X3n.framer-v-mkex1m .framer-1y7035j > * { margin: 0px; margin-bottom: calc(33px / 2); margin-top: calc(33px / 2); } .framer-l7X3n.framer-v-mkex1m .framer-1y7035j > :first-child { margin-top: 0px; } .framer-l7X3n.framer-v-mkex1m .framer-1y7035j > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-l7X3n.framer-v-9xrp8l .framer-1f2jxlt { gap: 0px; } .framer-l7X3n.framer-v-9xrp8l .framer-1f2jxlt > * { margin: 0px; margin-bottom: calc(33px / 2); margin-top: calc(33px / 2); } .framer-l7X3n.framer-v-9xrp8l .framer-1f2jxlt > :first-child { margin-top: 0px; } .framer-l7X3n.framer-v-9xrp8l .framer-1f2jxlt > :last-child { margin-bottom: 0px; } }\",\".framer-l7X3n.framer-v-oc9rgx .framer-mmeuq3, .framer-l7X3n.framer-v-1mia5if .framer-ip1qkl { width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-l7X3n.framer-v-oc9rgx .framer-1f2jxlt { gap: 0px; } .framer-l7X3n.framer-v-oc9rgx .framer-1f2jxlt > * { margin: 0px; margin-bottom: calc(33px / 2); margin-top: calc(33px / 2); } .framer-l7X3n.framer-v-oc9rgx .framer-1f2jxlt > :first-child { margin-top: 0px; } .framer-l7X3n.framer-v-oc9rgx .framer-1f2jxlt > :last-child { margin-bottom: 0px; } }\",\".framer-l7X3n.framer-v-1cfgoua .framer-zlmx64, .framer-l7X3n.framer-v-gifq7v .framer-zlmx64 { align-content: center; align-items: center; flex: none; max-width: 100%; order: 1; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-l7X3n.framer-v-1cfgoua .framer-14l2c54 { gap: 0px; } .framer-l7X3n.framer-v-1cfgoua .framer-14l2c54 > * { margin: 0px; margin-bottom: calc(33px / 2); margin-top: calc(33px / 2); } .framer-l7X3n.framer-v-1cfgoua .framer-14l2c54 > :first-child { margin-top: 0px; } .framer-l7X3n.framer-v-1cfgoua .framer-14l2c54 > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-l7X3n.framer-v-gifq7v .framer-14l2c54 { gap: 0px; } .framer-l7X3n.framer-v-gifq7v .framer-14l2c54 > * { margin: 0px; margin-bottom: calc(33px / 2); margin-top: calc(33px / 2); } .framer-l7X3n.framer-v-gifq7v .framer-14l2c54 > :first-child { margin-top: 0px; } .framer-l7X3n.framer-v-gifq7v .framer-14l2c54 > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-l7X3n.framer-v-uqh5ac .framer-woz7dz { gap: 0px; } .framer-l7X3n.framer-v-uqh5ac .framer-woz7dz > * { margin: 0px; margin-bottom: calc(33px / 2); margin-top: calc(33px / 2); } .framer-l7X3n.framer-v-uqh5ac .framer-woz7dz > :first-child { margin-top: 0px; } .framer-l7X3n.framer-v-uqh5ac .framer-woz7dz > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-l7X3n.framer-v-1mia5if .framer-woz7dz { gap: 0px; } .framer-l7X3n.framer-v-1mia5if .framer-woz7dz > * { margin: 0px; margin-bottom: calc(33px / 2); margin-top: calc(33px / 2); } .framer-l7X3n.framer-v-1mia5if .framer-woz7dz > :first-child { margin-top: 0px; } .framer-l7X3n.framer-v-1mia5if .framer-woz7dz > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-l7X3n.framer-v-1to7njv .framer-r4vucr { gap: 0px; } .framer-l7X3n.framer-v-1to7njv .framer-r4vucr > * { margin: 0px; margin-bottom: calc(33px / 2); margin-top: calc(33px / 2); } .framer-l7X3n.framer-v-1to7njv .framer-r4vucr > :first-child { margin-top: 0px; } .framer-l7X3n.framer-v-1to7njv .framer-r4vucr > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-l7X3n.framer-v-1aq5clj .framer-r4vucr { gap: 0px; } .framer-l7X3n.framer-v-1aq5clj .framer-r4vucr > * { margin: 0px; margin-bottom: calc(33px / 2); margin-top: calc(33px / 2); } .framer-l7X3n.framer-v-1aq5clj .framer-r4vucr > :first-child { margin-top: 0px; } .framer-l7X3n.framer-v-1aq5clj .framer-r4vucr > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1230\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ldxMAReNG\":{\"layout\":[\"fixed\",\"auto\"]},\"VB4PqolNT\":{\"layout\":[\"fixed\",\"auto\"]},\"mP_GfjNoR\":{\"layout\":[\"fixed\",\"auto\"]},\"LH9NTXBKj\":{\"layout\":[\"fixed\",\"auto\"]},\"UFa0wD1xF\":{\"layout\":[\"fixed\",\"auto\"]},\"C2MGkx3op\":{\"layout\":[\"fixed\",\"auto\"]},\"TcvcyWSxm\":{\"layout\":[\"fixed\",\"auto\"]},\"jaZDkwnbM\":{\"layout\":[\"fixed\",\"auto\"]},\"BI1UJl922\":{\"layout\":[\"fixed\",\"auto\"]},\"r9hbP7Sqe\":{\"layout\":[\"fixed\",\"auto\"]},\"IgsyVj8oT\":{\"layout\":[\"fixed\",\"auto\"]},\"Um97Kz3If\":{\"layout\":[\"fixed\",\"auto\"]},\"f5KuLIuVh\":{\"layout\":[\"fixed\",\"auto\"]},\"pyG4lahQk\":{\"layout\":[\"fixed\",\"auto\"]},\"aoo2AyFZu\":{\"layout\":[\"fixed\",\"auto\"]},\"gima2Vzw0\":{\"layout\":[\"fixed\",\"auto\"]},\"kIJiVAT8a\":{\"layout\":[\"fixed\",\"auto\"]},\"ieXbPm32O\":{\"layout\":[\"fixed\",\"auto\"]},\"kQKN824nc\":{\"layout\":[\"fixed\",\"auto\"]},\"JnEhxY6Yx\":{\"layout\":[\"fixed\",\"auto\"]},\"fUoCHI4kW\":{\"layout\":[\"fixed\",\"auto\"]},\"xSuo36qFM\":{\"layout\":[\"fixed\",\"auto\"]},\"x4P2vcU5B\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerA6xtsIllB=withCSS(Component,css,\"framer-l7X3n\");export default FramerA6xtsIllB;FramerA6xtsIllB.displayName=\"Work with us content section\";FramerA6xtsIllB.defaultProps={height:1230,width:1440};addPropertyControls(FramerA6xtsIllB,{variant:{options:[\"OixTIQ1VJ\",\"ldxMAReNG\",\"VB4PqolNT\",\"mP_GfjNoR\",\"LH9NTXBKj\",\"UFa0wD1xF\",\"C2MGkx3op\",\"TcvcyWSxm\",\"jaZDkwnbM\",\"BI1UJl922\",\"r9hbP7Sqe\",\"IgsyVj8oT\",\"Um97Kz3If\",\"f5KuLIuVh\",\"pyG4lahQk\",\"aoo2AyFZu\",\"gima2Vzw0\",\"kIJiVAT8a\",\"ieXbPm32O\",\"kQKN824nc\",\"JnEhxY6Yx\",\"fUoCHI4kW\",\"xSuo36qFM\",\"x4P2vcU5B\"],optionTitles:[\"Lenders - Desktop\",\"Lenders - Laptop\",\"Lenders - Tablet\",\"Lenders - Mobile\",\"Investors - Desktop\",\"Investors - Laptop\",\"Investors - Tablet\",\"Investors - Mobile\",\"Accelerators - Desktop\",\"Accelerators - Laptop\",\"Accelerators - Tablet\",\"Accelerators - Mobile\",\"Advisors - Desktop\",\"Advisors - Laptop\",\"Advisors - Tablet\",\"Advisors - Mobile\",\"Academia - Desktop\",\"Academia - Laptop\",\"Academia - Tablet\",\"Academia - Mobile\",\"Gov - Desktop\",\"Gov - Laptop\",\"Gov - Tablet\",\"Gov - Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerA6xtsIllB,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4e6yC4S-EiAou6Y.woff2\",weight:\"600\"},{family:\"Archivo\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/archivo/v19/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTNDNp9R1oJ0vyVQ.woff2\",weight:\"400\"}]},...ButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerA6xtsIllB\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"1230\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ldxMAReNG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"VB4PqolNT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mP_GfjNoR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LH9NTXBKj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UFa0wD1xF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"C2MGkx3op\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TcvcyWSxm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jaZDkwnbM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"BI1UJl922\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"r9hbP7Sqe\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IgsyVj8oT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Um97Kz3If\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"f5KuLIuVh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pyG4lahQk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"aoo2AyFZu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gima2Vzw0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kIJiVAT8a\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ieXbPm32O\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kQKN824nc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"JnEhxY6Yx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fUoCHI4kW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xSuo36qFM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"x4P2vcU5B\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (38f2e7f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import WorkWithUsContentSection from\"https://framerusercontent.com/modules/UN1njnACfb4jgmu9TNXS/snpu1NZxkqpDSaz69fTb/A6xtsIllB.js\";import Tab from\"https://framerusercontent.com/modules/GcP5wXsMUh3mVfYEjwYh/dlowu4hjHgTcNLaMEQNZ/UBt3Wxz_s.js\";const TabFonts=getFonts(Tab);const WorkWithUsContentSectionFonts=getFonts(WorkWithUsContentSection);const cycleOrder=[\"Wq9QSjIEL\",\"pMcICkgBb\",\"ICatetfdu\",\"QWH_4ik2D\",\"PK8mQrmJx\",\"yOlL54OJ1\",\"kKtnxtZGq\",\"C8Pbz1eqy\",\"kT1DnrP6l\",\"YnZHf5LtE\",\"XKrN3jTSe\",\"YP7lNCLMM\",\"NdTSjZ8rk\",\"wjDhUdDoB\",\"egUsB7IKa\",\"XVZ_wN7dQ\",\"crVgxBYJy\",\"dM_wLp6f7\",\"StH2ie9a5\",\"Nr9Bor7BU\",\"I0QiH1ebI\",\"rX1hgkGgg\",\"gg5Anq1SA\",\"fCkqoa_6Y\"];const serializationHash=\"framer-wVnWp\";const variantClassNames={C8Pbz1eqy:\"framer-v-1n7j61h\",crVgxBYJy:\"framer-v-1blawj7\",dM_wLp6f7:\"framer-v-ffzd6j\",egUsB7IKa:\"framer-v-1ug4ufy\",fCkqoa_6Y:\"framer-v-18st3fa\",gg5Anq1SA:\"framer-v-90b4on\",I0QiH1ebI:\"framer-v-13usu3c\",ICatetfdu:\"framer-v-2wfqis\",kKtnxtZGq:\"framer-v-1ei6y8r\",kT1DnrP6l:\"framer-v-1vhmjfc\",NdTSjZ8rk:\"framer-v-1la4evj\",Nr9Bor7BU:\"framer-v-agskzz\",PK8mQrmJx:\"framer-v-1965vqs\",pMcICkgBb:\"framer-v-1t84h2h\",QWH_4ik2D:\"framer-v-nu2ksl\",rX1hgkGgg:\"framer-v-1objdyf\",StH2ie9a5:\"framer-v-c3pjg\",wjDhUdDoB:\"framer-v-fd914a\",Wq9QSjIEL:\"framer-v-1hn4j5y\",XKrN3jTSe:\"framer-v-1wkdhvp\",XVZ_wN7dQ:\"framer-v-1ixbj1q\",YnZHf5LtE:\"framer-v-1dvgsnc\",yOlL54OJ1:\"framer-v-1j5wa8w\",YP7lNCLMM:\"framer-v-18nyfr0\"};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={\"Academia - Desktop\":\"crVgxBYJy\",\"Academia - Laptop\":\"dM_wLp6f7\",\"Academia - mobile\":\"Nr9Bor7BU\",\"Academia - Tablet\":\"StH2ie9a5\",\"Accelerators - Desktop\":\"kT1DnrP6l\",\"Accelerators - Laptop\":\"YnZHf5LtE\",\"Accelerators - mobile\":\"YP7lNCLMM\",\"Accelerators - Tablet\":\"XKrN3jTSe\",\"Advisors - Desktop\":\"NdTSjZ8rk\",\"Advisors - Laptop\":\"wjDhUdDoB\",\"Advisors - mobile\":\"XVZ_wN7dQ\",\"Advisors - Tablet\":\"egUsB7IKa\",\"Gov - Desktop\":\"I0QiH1ebI\",\"Gov - Laptop\":\"rX1hgkGgg\",\"Gov - mobile\":\"fCkqoa_6Y\",\"Gov - Tablet\":\"gg5Anq1SA\",\"Investors - Desktop\":\"PK8mQrmJx\",\"Investors - Laptop\":\"yOlL54OJ1\",\"Investors - Mobile\":\"C8Pbz1eqy\",\"Investors - Tablet\":\"kKtnxtZGq\",\"Lenders - Desktop\":\"Wq9QSjIEL\",\"Lenders - Laptop\":\"pMcICkgBb\",\"Lenders - Mobile\":\"QWH_4ik2D\",\"Lenders - Tablet\":\"ICatetfdu\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"Wq9QSjIEL\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Wq9QSjIEL\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const xLLc2fhGkcl5ijs=activeVariantCallback(async(...args)=>{setVariant(\"Wq9QSjIEL\");});const xLLc2fhGk1i947w6=activeVariantCallback(async(...args)=>{setVariant(\"pMcICkgBb\");});const xLLc2fhGkph5h1c=activeVariantCallback(async(...args)=>{setVariant(\"ICatetfdu\");});const xLLc2fhGkishnkd=activeVariantCallback(async(...args)=>{setVariant(\"QWH_4ik2D\");});const xLLc2fhGkjq9thk=activeVariantCallback(async(...args)=>{setVariant(\"PK8mQrmJx\");});const xLLc2fhGks572dw=activeVariantCallback(async(...args)=>{setVariant(\"yOlL54OJ1\");});const xLLc2fhGkf8q31f=activeVariantCallback(async(...args)=>{setVariant(\"kKtnxtZGq\");});const xLLc2fhGk19m82o7=activeVariantCallback(async(...args)=>{setVariant(\"C8Pbz1eqy\");});const xLLc2fhGkx3m60j=activeVariantCallback(async(...args)=>{setVariant(\"kT1DnrP6l\");});const xLLc2fhGkjedqsr=activeVariantCallback(async(...args)=>{setVariant(\"YnZHf5LtE\");});const xLLc2fhGk1ha59wr=activeVariantCallback(async(...args)=>{setVariant(\"XKrN3jTSe\");});const xLLc2fhGk1z0mmtl=activeVariantCallback(async(...args)=>{setVariant(\"YP7lNCLMM\");});const xLLc2fhGkkxmj4v=activeVariantCallback(async(...args)=>{setVariant(\"NdTSjZ8rk\");});const xLLc2fhGk1bg6axv=activeVariantCallback(async(...args)=>{setVariant(\"wjDhUdDoB\");});const xLLc2fhGk1sxbhb7=activeVariantCallback(async(...args)=>{setVariant(\"egUsB7IKa\");});const xLLc2fhGk1rxgqpv=activeVariantCallback(async(...args)=>{setVariant(\"XVZ_wN7dQ\");});const xLLc2fhGk1qcr96m=activeVariantCallback(async(...args)=>{setVariant(\"crVgxBYJy\");});const xLLc2fhGkitk2vh=activeVariantCallback(async(...args)=>{setVariant(\"dM_wLp6f7\");});const xLLc2fhGk6bnthw=activeVariantCallback(async(...args)=>{setVariant(\"StH2ie9a5\");});const xLLc2fhGk105zo36=activeVariantCallback(async(...args)=>{setVariant(\"Nr9Bor7BU\");});const xLLc2fhGk6o8lyb=activeVariantCallback(async(...args)=>{setVariant(\"I0QiH1ebI\");});const xLLc2fhGkdip17x=activeVariantCallback(async(...args)=>{setVariant(\"rX1hgkGgg\");});const xLLc2fhGk1lctmjf=activeVariantCallback(async(...args)=>{setVariant(\"gg5Anq1SA\");});const xLLc2fhGkljrex0=activeVariantCallback(async(...args)=>{setVariant(\"fCkqoa_6Y\");});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1hn4j5y\",className,classNames),\"data-framer-name\":\"Lenders - Desktop\",layoutDependency:layoutDependency,layoutId:\"Wq9QSjIEL\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({C8Pbz1eqy:{\"data-framer-name\":\"Investors - Mobile\"},crVgxBYJy:{\"data-framer-name\":\"Academia - Desktop\"},dM_wLp6f7:{\"data-framer-name\":\"Academia - Laptop\"},egUsB7IKa:{\"data-framer-name\":\"Advisors - Tablet\"},fCkqoa_6Y:{\"data-framer-name\":\"Gov - mobile\"},gg5Anq1SA:{\"data-framer-name\":\"Gov - Tablet\"},I0QiH1ebI:{\"data-framer-name\":\"Gov - Desktop\"},ICatetfdu:{\"data-framer-name\":\"Lenders - Tablet\"},kKtnxtZGq:{\"data-framer-name\":\"Investors - Tablet\"},kT1DnrP6l:{\"data-framer-name\":\"Accelerators - Desktop\"},NdTSjZ8rk:{\"data-framer-name\":\"Advisors - Desktop\"},Nr9Bor7BU:{\"data-framer-name\":\"Academia - mobile\"},PK8mQrmJx:{\"data-framer-name\":\"Investors - Desktop\"},pMcICkgBb:{\"data-framer-name\":\"Lenders - Laptop\"},QWH_4ik2D:{\"data-framer-name\":\"Lenders - Mobile\"},rX1hgkGgg:{\"data-framer-name\":\"Gov - Laptop\"},StH2ie9a5:{\"data-framer-name\":\"Academia - Tablet\"},wjDhUdDoB:{\"data-framer-name\":\"Advisors - Laptop\"},XKrN3jTSe:{\"data-framer-name\":\"Accelerators - Tablet\"},XVZ_wN7dQ:{\"data-framer-name\":\"Advisors - mobile\"},YnZHf5LtE:{\"data-framer-name\":\"Accelerators - Laptop\"},yOlL54OJ1:{\"data-framer-name\":\"Investors - Laptop\"},YP7lNCLMM:{\"data-framer-name\":\"Accelerators - mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mp65rq\",\"data-framer-name\":\"Service Tabs\",layoutDependency:layoutDependency,layoutId:\"Y5y9RrbM9\",style:{backgroundColor:\"var(--token-636a3fe4-9f0f-4ae1-a43c-60a743a1245b, rgb(227, 238, 255))\",borderBottomLeftRadius:125,borderBottomRightRadius:125,borderTopLeftRadius:125,borderTopRightRadius:125,boxShadow:\"0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.17997), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.15889), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.0625)\"},variants:{C8Pbz1eqy:{borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},egUsB7IKa:{borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},fCkqoa_6Y:{borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},gg5Anq1SA:{borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},ICatetfdu:{borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},kKtnxtZGq:{borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},Nr9Bor7BU:{borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},QWH_4ik2D:{borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},StH2ie9a5:{borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},XKrN3jTSe:{borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},XVZ_wN7dQ:{borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},YP7lNCLMM:{borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32}},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1418)-64-1354)/2+0+0)+8,...addPropertyOverrides({C8Pbz1eqy:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+24+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1692)-24-1654)/2+0+0)+16+0},crVgxBYJy:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+0+0)+8},dM_wLp6f7:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+0+0)+8},egUsB7IKa:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1654)/2+0+0)+16+0},fCkqoa_6Y:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+24+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-24-1654)/2+0+0)+16+0},gg5Anq1SA:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1654)/2+0+0)+16+0},I0QiH1ebI:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+0+0)+8},ICatetfdu:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1654)/2+0+0)+16+0},kKtnxtZGq:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1654)/2+0+0)+16+0},kT1DnrP6l:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+0+0)+8},NdTSjZ8rk:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+0+0)+8},Nr9Bor7BU:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+24+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-24-1654)/2+0+0)+16+0},PK8mQrmJx:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+0+0)+8},pMcICkgBb:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+0+0)+8},QWH_4ik2D:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+24+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||2692)-24-1654)/2+0+0)+16+0},rX1hgkGgg:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+0+0)+8},StH2ie9a5:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1654)/2+0+0)+16+0},wjDhUdDoB:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+0+0)+8},XKrN3jTSe:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1654)/2+0+0)+16+0},XVZ_wN7dQ:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+24+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-24-1654)/2+0+0)+16+0},YnZHf5LtE:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+0+0)+8},yOlL54OJ1:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+0+0)+8},YP7lNCLMM:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+24+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-24-1654)/2+0+0)+16+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-y2nu6b-container\",layoutDependency:layoutDependency,layoutId:\"ukDJQ82eL-container\",style:{opacity:1},variants:{C8Pbz1eqy:{opacity:.5},crVgxBYJy:{opacity:.5},dM_wLp6f7:{opacity:.5},egUsB7IKa:{opacity:.5},fCkqoa_6Y:{opacity:.5},gg5Anq1SA:{opacity:.5},I0QiH1ebI:{opacity:.5},kKtnxtZGq:{opacity:.5},kT1DnrP6l:{opacity:.5},NdTSjZ8rk:{opacity:.5},Nr9Bor7BU:{opacity:.5},PK8mQrmJx:{opacity:.5},rX1hgkGgg:{opacity:.5},StH2ie9a5:{opacity:.5},wjDhUdDoB:{opacity:.5},XKrN3jTSe:{opacity:.5},XVZ_wN7dQ:{opacity:.5},YnZHf5LtE:{opacity:.5},yOlL54OJ1:{opacity:.5},YP7lNCLMM:{opacity:.5}},children:/*#__PURE__*/_jsx(Tab,{height:\"100%\",id:\"ukDJQ82eL\",layoutId:\"ukDJQ82eL\",Nrj7W5GbO:\"Lenders\",variant:\"dAya9VuvA\",width:\"100%\",xLLc2fhGk:xLLc2fhGkcl5ijs,...addPropertyOverrides({C8Pbz1eqy:{variant:\"Mz9alCNza\",xLLc2fhGk:xLLc2fhGkishnkd},crVgxBYJy:{variant:\"Mz9alCNza\"},dM_wLp6f7:{variant:\"Mz9alCNza\",xLLc2fhGk:xLLc2fhGk1i947w6},egUsB7IKa:{variant:\"Mz9alCNza\",xLLc2fhGk:xLLc2fhGkph5h1c},fCkqoa_6Y:{variant:\"Mz9alCNza\",xLLc2fhGk:xLLc2fhGkishnkd},gg5Anq1SA:{variant:\"Mz9alCNza\",xLLc2fhGk:xLLc2fhGkph5h1c},I0QiH1ebI:{variant:\"Mz9alCNza\"},ICatetfdu:{xLLc2fhGk:xLLc2fhGkph5h1c},kKtnxtZGq:{variant:\"Mz9alCNza\",xLLc2fhGk:xLLc2fhGkph5h1c},kT1DnrP6l:{variant:\"Mz9alCNza\"},NdTSjZ8rk:{variant:\"Mz9alCNza\"},Nr9Bor7BU:{variant:\"Mz9alCNza\",xLLc2fhGk:xLLc2fhGkishnkd},PK8mQrmJx:{variant:\"Mz9alCNza\"},pMcICkgBb:{xLLc2fhGk:xLLc2fhGk1i947w6},QWH_4ik2D:{xLLc2fhGk:xLLc2fhGkishnkd},rX1hgkGgg:{variant:\"Mz9alCNza\",xLLc2fhGk:xLLc2fhGk1i947w6},StH2ie9a5:{variant:\"Mz9alCNza\",xLLc2fhGk:xLLc2fhGkph5h1c},wjDhUdDoB:{variant:\"Mz9alCNza\",xLLc2fhGk:xLLc2fhGk1i947w6},XKrN3jTSe:{variant:\"Mz9alCNza\",xLLc2fhGk:xLLc2fhGkph5h1c},XVZ_wN7dQ:{variant:\"Mz9alCNza\",xLLc2fhGk:xLLc2fhGkishnkd},YnZHf5LtE:{variant:\"Mz9alCNza\",xLLc2fhGk:xLLc2fhGk1i947w6},yOlL54OJ1:{variant:\"Mz9alCNza\"},YP7lNCLMM:{variant:\"Mz9alCNza\",xLLc2fhGk:xLLc2fhGkishnkd}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1418)-64-1354)/2+0+0)+8,...addPropertyOverrides({C8Pbz1eqy:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+24+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1692)-24-1654)/2+0+0)+16+68},crVgxBYJy:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+0+0)+8},dM_wLp6f7:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+0+0)+8},egUsB7IKa:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1654)/2+0+0)+16+68},fCkqoa_6Y:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+24+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-24-1654)/2+0+0)+16+68},gg5Anq1SA:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1654)/2+0+0)+16+68},I0QiH1ebI:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+0+0)+8},ICatetfdu:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1654)/2+0+0)+16+68},kKtnxtZGq:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1654)/2+0+0)+16+68},kT1DnrP6l:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+0+0)+8},NdTSjZ8rk:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+0+0)+8},Nr9Bor7BU:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+24+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-24-1654)/2+0+0)+16+68},PK8mQrmJx:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+0+0)+8},pMcICkgBb:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+0+0)+8},QWH_4ik2D:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+24+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||2692)-24-1654)/2+0+0)+16+68},rX1hgkGgg:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+0+0)+8},StH2ie9a5:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1654)/2+0+0)+16+68},wjDhUdDoB:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+0+0)+8},XKrN3jTSe:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1654)/2+0+0)+16+68},XVZ_wN7dQ:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+24+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-24-1654)/2+0+0)+16+68},YnZHf5LtE:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+0+0)+8},yOlL54OJ1:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+0+0)+8},YP7lNCLMM:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+24+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-24-1654)/2+0+0)+16+68}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1d0fadv-container\",layoutDependency:layoutDependency,layoutId:\"yyy8qnP1_-container\",style:{opacity:.5},variants:{C8Pbz1eqy:{opacity:1},kKtnxtZGq:{opacity:1},PK8mQrmJx:{opacity:1},yOlL54OJ1:{opacity:1}},children:/*#__PURE__*/_jsx(Tab,{height:\"100%\",id:\"yyy8qnP1_\",layoutId:\"yyy8qnP1_\",Nrj7W5GbO:\"Investors\",variant:\"Mz9alCNza\",width:\"100%\",xLLc2fhGk:xLLc2fhGkjq9thk,...addPropertyOverrides({C8Pbz1eqy:{variant:\"dAya9VuvA\",xLLc2fhGk:xLLc2fhGk19m82o7},dM_wLp6f7:{xLLc2fhGk:xLLc2fhGks572dw},egUsB7IKa:{xLLc2fhGk:xLLc2fhGkf8q31f},fCkqoa_6Y:{xLLc2fhGk:xLLc2fhGk19m82o7},gg5Anq1SA:{xLLc2fhGk:xLLc2fhGkf8q31f},ICatetfdu:{xLLc2fhGk:xLLc2fhGkf8q31f},kKtnxtZGq:{variant:\"dAya9VuvA\",xLLc2fhGk:xLLc2fhGkf8q31f},Nr9Bor7BU:{xLLc2fhGk:xLLc2fhGk19m82o7},PK8mQrmJx:{variant:\"dAya9VuvA\"},pMcICkgBb:{xLLc2fhGk:xLLc2fhGks572dw},QWH_4ik2D:{xLLc2fhGk:xLLc2fhGk19m82o7},rX1hgkGgg:{xLLc2fhGk:xLLc2fhGks572dw},StH2ie9a5:{xLLc2fhGk:xLLc2fhGkf8q31f},wjDhUdDoB:{xLLc2fhGk:xLLc2fhGks572dw},XKrN3jTSe:{xLLc2fhGk:xLLc2fhGkf8q31f},XVZ_wN7dQ:{xLLc2fhGk:xLLc2fhGk19m82o7},YnZHf5LtE:{xLLc2fhGk:xLLc2fhGks572dw},yOlL54OJ1:{variant:\"dAya9VuvA\",xLLc2fhGk:xLLc2fhGks572dw},YP7lNCLMM:{xLLc2fhGk:xLLc2fhGk19m82o7}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1418)-64-1354)/2+0+0)+8,...addPropertyOverrides({C8Pbz1eqy:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+24+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1692)-24-1654)/2+0+0)+16+136},crVgxBYJy:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+0+0)+8},dM_wLp6f7:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+0+0)+8},egUsB7IKa:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1654)/2+0+0)+16+136},fCkqoa_6Y:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+24+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-24-1654)/2+0+0)+16+136},gg5Anq1SA:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1654)/2+0+0)+16+136},I0QiH1ebI:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+0+0)+8},ICatetfdu:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1654)/2+0+0)+16+136},kKtnxtZGq:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1654)/2+0+0)+16+136},kT1DnrP6l:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+0+0)+8},NdTSjZ8rk:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+0+0)+8},Nr9Bor7BU:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+24+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-24-1654)/2+0+0)+16+136},PK8mQrmJx:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+0+0)+8},pMcICkgBb:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+0+0)+8},QWH_4ik2D:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+24+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||2692)-24-1654)/2+0+0)+16+136},rX1hgkGgg:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+0+0)+8},StH2ie9a5:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1654)/2+0+0)+16+136},wjDhUdDoB:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+0+0)+8},XKrN3jTSe:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1654)/2+0+0)+16+136},XVZ_wN7dQ:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+24+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-24-1654)/2+0+0)+16+136},YnZHf5LtE:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+0+0)+8},yOlL54OJ1:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+0+0)+8},YP7lNCLMM:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+24+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-24-1654)/2+0+0)+16+136}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-9xgp4o-container\",layoutDependency:layoutDependency,layoutId:\"V7zcdNJ48-container\",style:{opacity:.5},variants:{kT1DnrP6l:{opacity:1},XKrN3jTSe:{opacity:1},YnZHf5LtE:{opacity:1},YP7lNCLMM:{opacity:1}},children:/*#__PURE__*/_jsx(Tab,{height:\"100%\",id:\"V7zcdNJ48\",layoutId:\"V7zcdNJ48\",Nrj7W5GbO:\"Accelerators\",variant:\"Mz9alCNza\",width:\"100%\",xLLc2fhGk:xLLc2fhGkx3m60j,...addPropertyOverrides({C8Pbz1eqy:{xLLc2fhGk:xLLc2fhGk1z0mmtl},dM_wLp6f7:{xLLc2fhGk:xLLc2fhGkjedqsr},egUsB7IKa:{xLLc2fhGk:xLLc2fhGk1ha59wr},fCkqoa_6Y:{xLLc2fhGk:xLLc2fhGk1z0mmtl},gg5Anq1SA:{xLLc2fhGk:xLLc2fhGk1ha59wr},ICatetfdu:{xLLc2fhGk:xLLc2fhGk1ha59wr},kKtnxtZGq:{xLLc2fhGk:xLLc2fhGk1ha59wr},kT1DnrP6l:{variant:\"dAya9VuvA\"},Nr9Bor7BU:{xLLc2fhGk:xLLc2fhGk1z0mmtl},pMcICkgBb:{xLLc2fhGk:xLLc2fhGkjedqsr},QWH_4ik2D:{xLLc2fhGk:xLLc2fhGk1z0mmtl},rX1hgkGgg:{xLLc2fhGk:xLLc2fhGkjedqsr},StH2ie9a5:{xLLc2fhGk:xLLc2fhGk1ha59wr},wjDhUdDoB:{xLLc2fhGk:xLLc2fhGkjedqsr},XKrN3jTSe:{variant:\"dAya9VuvA\",xLLc2fhGk:xLLc2fhGk1ha59wr},XVZ_wN7dQ:{xLLc2fhGk:xLLc2fhGk1z0mmtl},YnZHf5LtE:{variant:\"dAya9VuvA\",xLLc2fhGk:xLLc2fhGkjedqsr},yOlL54OJ1:{xLLc2fhGk:xLLc2fhGkjedqsr},YP7lNCLMM:{variant:\"dAya9VuvA\",xLLc2fhGk:xLLc2fhGk1z0mmtl}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1418)-64-1354)/2+0+0)+8,...addPropertyOverrides({C8Pbz1eqy:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+24+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1692)-24-1654)/2+0+0)+16+204},crVgxBYJy:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+0+0)+8},dM_wLp6f7:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+0+0)+8},egUsB7IKa:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1654)/2+0+0)+16+204},fCkqoa_6Y:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+24+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-24-1654)/2+0+0)+16+204},gg5Anq1SA:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1654)/2+0+0)+16+204},I0QiH1ebI:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+0+0)+8},ICatetfdu:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1654)/2+0+0)+16+204},kKtnxtZGq:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1654)/2+0+0)+16+204},kT1DnrP6l:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+0+0)+8},NdTSjZ8rk:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+0+0)+8},Nr9Bor7BU:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+24+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-24-1654)/2+0+0)+16+204},PK8mQrmJx:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+0+0)+8},pMcICkgBb:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+0+0)+8},QWH_4ik2D:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+24+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||2692)-24-1654)/2+0+0)+16+204},rX1hgkGgg:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+0+0)+8},StH2ie9a5:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1654)/2+0+0)+16+204},wjDhUdDoB:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+0+0)+8},XKrN3jTSe:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1654)/2+0+0)+16+204},XVZ_wN7dQ:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+24+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-24-1654)/2+0+0)+16+204},YnZHf5LtE:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+0+0)+8},yOlL54OJ1:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+0+0)+8},YP7lNCLMM:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+24+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-24-1654)/2+0+0)+16+204}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-15egiuk-container\",layoutDependency:layoutDependency,layoutId:\"epH7O8dsM-container\",style:{opacity:.5},variants:{egUsB7IKa:{opacity:1},NdTSjZ8rk:{opacity:1},wjDhUdDoB:{opacity:1},XVZ_wN7dQ:{opacity:1}},children:/*#__PURE__*/_jsx(Tab,{height:\"100%\",id:\"epH7O8dsM\",layoutId:\"epH7O8dsM\",Nrj7W5GbO:\"Advisors\",variant:\"Mz9alCNza\",width:\"100%\",xLLc2fhGk:xLLc2fhGkkxmj4v,...addPropertyOverrides({C8Pbz1eqy:{xLLc2fhGk:xLLc2fhGk1rxgqpv},dM_wLp6f7:{xLLc2fhGk:xLLc2fhGk1bg6axv},egUsB7IKa:{variant:\"dAya9VuvA\",xLLc2fhGk:xLLc2fhGk1sxbhb7},fCkqoa_6Y:{xLLc2fhGk:xLLc2fhGk1rxgqpv},gg5Anq1SA:{xLLc2fhGk:xLLc2fhGk1sxbhb7},ICatetfdu:{xLLc2fhGk:xLLc2fhGk1sxbhb7},kKtnxtZGq:{xLLc2fhGk:xLLc2fhGk1sxbhb7},NdTSjZ8rk:{variant:\"dAya9VuvA\"},Nr9Bor7BU:{xLLc2fhGk:xLLc2fhGk1rxgqpv},pMcICkgBb:{xLLc2fhGk:xLLc2fhGk1bg6axv},QWH_4ik2D:{xLLc2fhGk:xLLc2fhGk1rxgqpv},rX1hgkGgg:{xLLc2fhGk:xLLc2fhGk1bg6axv},StH2ie9a5:{xLLc2fhGk:xLLc2fhGk1sxbhb7},wjDhUdDoB:{variant:\"dAya9VuvA\",xLLc2fhGk:xLLc2fhGk1bg6axv},XKrN3jTSe:{xLLc2fhGk:xLLc2fhGk1sxbhb7},XVZ_wN7dQ:{variant:\"dAya9VuvA\",xLLc2fhGk:xLLc2fhGk1rxgqpv},YnZHf5LtE:{xLLc2fhGk:xLLc2fhGk1bg6axv},yOlL54OJ1:{xLLc2fhGk:xLLc2fhGk1bg6axv},YP7lNCLMM:{xLLc2fhGk:xLLc2fhGk1rxgqpv}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1418)-64-1354)/2+0+0)+8,...addPropertyOverrides({C8Pbz1eqy:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+24+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1692)-24-1654)/2+0+0)+16+272},crVgxBYJy:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+0+0)+8},dM_wLp6f7:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+0+0)+8},egUsB7IKa:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1654)/2+0+0)+16+272},fCkqoa_6Y:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+24+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-24-1654)/2+0+0)+16+272},gg5Anq1SA:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1654)/2+0+0)+16+272},I0QiH1ebI:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+0+0)+8},ICatetfdu:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1654)/2+0+0)+16+272},kKtnxtZGq:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1654)/2+0+0)+16+272},kT1DnrP6l:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+0+0)+8},NdTSjZ8rk:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+0+0)+8},Nr9Bor7BU:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+24+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-24-1654)/2+0+0)+16+272},PK8mQrmJx:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+0+0)+8},pMcICkgBb:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+0+0)+8},QWH_4ik2D:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+24+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||2692)-24-1654)/2+0+0)+16+272},rX1hgkGgg:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+0+0)+8},StH2ie9a5:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1654)/2+0+0)+16+272},wjDhUdDoB:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+0+0)+8},XKrN3jTSe:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1654)/2+0+0)+16+272},XVZ_wN7dQ:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+24+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-24-1654)/2+0+0)+16+272},YnZHf5LtE:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+0+0)+8},yOlL54OJ1:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+0+0)+8},YP7lNCLMM:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+24+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-24-1654)/2+0+0)+16+272}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ts4ftw-container\",layoutDependency:layoutDependency,layoutId:\"sQVLQaNs8-container\",style:{opacity:.5},variants:{crVgxBYJy:{opacity:1},dM_wLp6f7:{opacity:1},Nr9Bor7BU:{opacity:1},StH2ie9a5:{opacity:1}},children:/*#__PURE__*/_jsx(Tab,{height:\"100%\",id:\"sQVLQaNs8\",layoutId:\"sQVLQaNs8\",Nrj7W5GbO:\"Academia\",variant:\"Mz9alCNza\",width:\"100%\",xLLc2fhGk:xLLc2fhGk1qcr96m,...addPropertyOverrides({C8Pbz1eqy:{xLLc2fhGk:xLLc2fhGk105zo36},crVgxBYJy:{variant:\"dAya9VuvA\"},dM_wLp6f7:{variant:\"dAya9VuvA\",xLLc2fhGk:xLLc2fhGkitk2vh},egUsB7IKa:{xLLc2fhGk:xLLc2fhGk6bnthw},fCkqoa_6Y:{xLLc2fhGk:xLLc2fhGk105zo36},gg5Anq1SA:{xLLc2fhGk:xLLc2fhGk6bnthw},ICatetfdu:{xLLc2fhGk:xLLc2fhGk6bnthw},kKtnxtZGq:{xLLc2fhGk:xLLc2fhGk6bnthw},Nr9Bor7BU:{variant:\"dAya9VuvA\",xLLc2fhGk:xLLc2fhGk105zo36},pMcICkgBb:{xLLc2fhGk:xLLc2fhGkitk2vh},QWH_4ik2D:{xLLc2fhGk:xLLc2fhGk105zo36},rX1hgkGgg:{xLLc2fhGk:xLLc2fhGkitk2vh},StH2ie9a5:{variant:\"dAya9VuvA\",xLLc2fhGk:xLLc2fhGk6bnthw},wjDhUdDoB:{xLLc2fhGk:xLLc2fhGkitk2vh},XKrN3jTSe:{xLLc2fhGk:xLLc2fhGk6bnthw},XVZ_wN7dQ:{xLLc2fhGk:xLLc2fhGk105zo36},YnZHf5LtE:{xLLc2fhGk:xLLc2fhGkitk2vh},yOlL54OJ1:{xLLc2fhGk:xLLc2fhGkitk2vh},YP7lNCLMM:{xLLc2fhGk:xLLc2fhGk105zo36}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1418)-64-1354)/2+0+0)+8,...addPropertyOverrides({C8Pbz1eqy:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+24+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1692)-24-1654)/2+0+0)+16+340},crVgxBYJy:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+0+0)+8},dM_wLp6f7:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+0+0)+8},egUsB7IKa:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1654)/2+0+0)+16+340},fCkqoa_6Y:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+24+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-24-1654)/2+0+0)+16+340},gg5Anq1SA:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1654)/2+0+0)+16+340},I0QiH1ebI:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+0+0)+8},ICatetfdu:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1654)/2+0+0)+16+340},kKtnxtZGq:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1654)/2+0+0)+16+340},kT1DnrP6l:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+0+0)+8},NdTSjZ8rk:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+0+0)+8},Nr9Bor7BU:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+24+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-24-1654)/2+0+0)+16+340},PK8mQrmJx:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+0+0)+8},pMcICkgBb:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+0+0)+8},QWH_4ik2D:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+24+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||2692)-24-1654)/2+0+0)+16+340},rX1hgkGgg:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+0+0)+8},StH2ie9a5:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1654)/2+0+0)+16+340},wjDhUdDoB:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+0+0)+8},XKrN3jTSe:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1654)/2+0+0)+16+340},XVZ_wN7dQ:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+24+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-24-1654)/2+0+0)+16+340},YnZHf5LtE:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+0+0)+8},yOlL54OJ1:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+0+0)+8},YP7lNCLMM:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+24+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-24-1654)/2+0+0)+16+340}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tnrpvw-container\",layoutDependency:layoutDependency,layoutId:\"QcR2OwSEI-container\",style:{opacity:.5},variants:{I0QiH1ebI:{opacity:1}},children:/*#__PURE__*/_jsx(Tab,{height:\"100%\",id:\"QcR2OwSEI\",layoutId:\"QcR2OwSEI\",Nrj7W5GbO:\"Government and NGOs\",variant:\"Mz9alCNza\",width:\"100%\",xLLc2fhGk:xLLc2fhGk6o8lyb,...addPropertyOverrides({C8Pbz1eqy:{xLLc2fhGk:xLLc2fhGkljrex0},dM_wLp6f7:{xLLc2fhGk:xLLc2fhGkdip17x},egUsB7IKa:{xLLc2fhGk:xLLc2fhGk1lctmjf},fCkqoa_6Y:{xLLc2fhGk:xLLc2fhGkljrex0},gg5Anq1SA:{xLLc2fhGk:xLLc2fhGk1lctmjf},I0QiH1ebI:{variant:\"dAya9VuvA\"},ICatetfdu:{xLLc2fhGk:xLLc2fhGk1lctmjf},kKtnxtZGq:{xLLc2fhGk:xLLc2fhGk1lctmjf},pMcICkgBb:{xLLc2fhGk:xLLc2fhGkdip17x},QWH_4ik2D:{xLLc2fhGk:xLLc2fhGkljrex0},rX1hgkGgg:{xLLc2fhGk:xLLc2fhGkdip17x},StH2ie9a5:{xLLc2fhGk:xLLc2fhGk1lctmjf},wjDhUdDoB:{xLLc2fhGk:xLLc2fhGkdip17x},XKrN3jTSe:{xLLc2fhGk:xLLc2fhGk1lctmjf},XVZ_wN7dQ:{xLLc2fhGk:xLLc2fhGkljrex0},YnZHf5LtE:{xLLc2fhGk:xLLc2fhGkdip17x},yOlL54OJ1:{xLLc2fhGk:xLLc2fhGkdip17x},YP7lNCLMM:{xLLc2fhGk:xLLc2fhGkljrex0}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1230,width:\"1440px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1418)-64-1354)/2+68+56),...addPropertyOverrides({C8Pbz1eqy:{width:undefined,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+24+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1692)-24-1654)/2+424+0)},crVgxBYJy:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+68+56)},dM_wLp6f7:{width:undefined,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+68+56)},egUsB7IKa:{width:undefined,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1654)/2+424+0)},fCkqoa_6Y:{width:undefined,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+24+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-24-1654)/2+424+0)},gg5Anq1SA:{width:undefined,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1654)/2+424+0)},I0QiH1ebI:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+68+56)},ICatetfdu:{width:undefined,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1654)/2+424+0)},kKtnxtZGq:{width:undefined,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1654)/2+424+0)},kT1DnrP6l:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+68+56)},NdTSjZ8rk:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+68+56)},Nr9Bor7BU:{width:undefined,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+24+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-24-1654)/2+424+0)},PK8mQrmJx:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+68+56)},pMcICkgBb:{width:undefined,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+68+56)},QWH_4ik2D:{width:undefined,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+24+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||2692)-24-1654)/2+424+0)},rX1hgkGgg:{width:undefined,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+68+56)},StH2ie9a5:{width:undefined,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1654)/2+424+0)},wjDhUdDoB:{width:undefined,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+68+56)},XKrN3jTSe:{width:undefined,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1654)/2+424+0)},XVZ_wN7dQ:{width:undefined,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+24+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-24-1654)/2+424+0)},YnZHf5LtE:{width:undefined,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+68+56)},yOlL54OJ1:{width:undefined,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+64+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1354)/2+68+56)},YP7lNCLMM:{width:undefined,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+24+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-24-1654)/2+424+0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-976odq-container\",layoutDependency:layoutDependency,layoutId:\"R6P7md0pl-container\",children:/*#__PURE__*/_jsx(WorkWithUsContentSection,{height:\"100%\",id:\"R6P7md0pl\",layoutId:\"R6P7md0pl\",style:{width:\"100%\"},variant:\"OixTIQ1VJ\",width:\"100%\",...addPropertyOverrides({C8Pbz1eqy:{variant:\"TcvcyWSxm\"},crVgxBYJy:{variant:\"gima2Vzw0\"},dM_wLp6f7:{variant:\"kIJiVAT8a\"},egUsB7IKa:{variant:\"pyG4lahQk\"},fCkqoa_6Y:{variant:\"x4P2vcU5B\"},gg5Anq1SA:{variant:\"xSuo36qFM\"},I0QiH1ebI:{variant:\"JnEhxY6Yx\"},ICatetfdu:{variant:\"VB4PqolNT\"},kKtnxtZGq:{variant:\"C2MGkx3op\"},kT1DnrP6l:{variant:\"jaZDkwnbM\"},NdTSjZ8rk:{variant:\"Um97Kz3If\"},Nr9Bor7BU:{variant:\"kQKN824nc\"},PK8mQrmJx:{variant:\"LH9NTXBKj\"},pMcICkgBb:{variant:\"ldxMAReNG\"},QWH_4ik2D:{variant:\"mP_GfjNoR\"},rX1hgkGgg:{variant:\"fUoCHI4kW\"},StH2ie9a5:{variant:\"ieXbPm32O\"},wjDhUdDoB:{variant:\"f5KuLIuVh\"},XKrN3jTSe:{variant:\"r9hbP7Sqe\"},XVZ_wN7dQ:{variant:\"aoo2AyFZu\"},YnZHf5LtE:{variant:\"BI1UJl922\"},yOlL54OJ1:{variant:\"UFa0wD1xF\"},YP7lNCLMM:{variant:\"IgsyVj8oT\"}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-wVnWp.framer-tpwa4m, .framer-wVnWp .framer-tpwa4m { display: block; }\",\".framer-wVnWp.framer-1hn4j5y { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: center; overflow: hidden; padding: 64px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-wVnWp .framer-1mp65rq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 8px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-wVnWp .framer-y2nu6b-container, .framer-wVnWp .framer-1d0fadv-container, .framer-wVnWp .framer-9xgp4o-container, .framer-wVnWp .framer-15egiuk-container, .framer-wVnWp .framer-1ts4ftw-container, .framer-wVnWp .framer-1tnrpvw-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-wVnWp .framer-976odq-container { flex: none; height: auto; position: relative; width: 1440px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-wVnWp.framer-1hn4j5y, .framer-wVnWp .framer-1mp65rq { gap: 0px; } .framer-wVnWp.framer-1hn4j5y > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-wVnWp.framer-1hn4j5y > :first-child { margin-top: 0px; } .framer-wVnWp.framer-1hn4j5y > :last-child { margin-bottom: 0px; } .framer-wVnWp .framer-1mp65rq > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-wVnWp .framer-1mp65rq > :first-child { margin-left: 0px; } .framer-wVnWp .framer-1mp65rq > :last-child { margin-right: 0px; } }\",\".framer-wVnWp.framer-v-1t84h2h.framer-1hn4j5y, .framer-wVnWp.framer-v-1j5wa8w.framer-1hn4j5y, .framer-wVnWp.framer-v-1dvgsnc.framer-1hn4j5y, .framer-wVnWp.framer-v-fd914a.framer-1hn4j5y, .framer-wVnWp.framer-v-ffzd6j.framer-1hn4j5y, .framer-wVnWp.framer-v-1objdyf.framer-1hn4j5y { width: 1200px; }\",\".framer-wVnWp.framer-v-1t84h2h .framer-y2nu6b-container { order: 0; }\",\".framer-wVnWp.framer-v-1t84h2h .framer-1d0fadv-container { order: 1; }\",\".framer-wVnWp.framer-v-1t84h2h .framer-9xgp4o-container { order: 2; }\",\".framer-wVnWp.framer-v-1t84h2h .framer-15egiuk-container { order: 3; }\",\".framer-wVnWp.framer-v-1t84h2h .framer-1ts4ftw-container { order: 4; }\",\".framer-wVnWp.framer-v-1t84h2h .framer-1tnrpvw-container { order: 5; }\",\".framer-wVnWp.framer-v-1t84h2h .framer-976odq-container, .framer-wVnWp.framer-v-2wfqis .framer-976odq-container, .framer-wVnWp.framer-v-nu2ksl .framer-976odq-container, .framer-wVnWp.framer-v-1j5wa8w .framer-976odq-container, .framer-wVnWp.framer-v-1ei6y8r .framer-976odq-container, .framer-wVnWp.framer-v-1n7j61h .framer-976odq-container, .framer-wVnWp.framer-v-1dvgsnc .framer-976odq-container, .framer-wVnWp.framer-v-1wkdhvp .framer-976odq-container, .framer-wVnWp.framer-v-18nyfr0 .framer-976odq-container, .framer-wVnWp.framer-v-fd914a .framer-976odq-container, .framer-wVnWp.framer-v-1ug4ufy .framer-976odq-container, .framer-wVnWp.framer-v-1ixbj1q .framer-976odq-container, .framer-wVnWp.framer-v-ffzd6j .framer-976odq-container, .framer-wVnWp.framer-v-c3pjg .framer-976odq-container, .framer-wVnWp.framer-v-agskzz .framer-976odq-container, .framer-wVnWp.framer-v-1objdyf .framer-976odq-container, .framer-wVnWp.framer-v-90b4on .framer-976odq-container, .framer-wVnWp.framer-v-18st3fa .framer-976odq-container { width: auto; }\",\".framer-wVnWp.framer-v-2wfqis.framer-1hn4j5y, .framer-wVnWp.framer-v-1ei6y8r.framer-1hn4j5y, .framer-wVnWp.framer-v-1wkdhvp.framer-1hn4j5y, .framer-wVnWp.framer-v-1ug4ufy.framer-1hn4j5y, .framer-wVnWp.framer-v-c3pjg.framer-1hn4j5y, .framer-wVnWp.framer-v-90b4on.framer-1hn4j5y { gap: 0px; width: 768px; }\",\".framer-wVnWp.framer-v-2wfqis .framer-1mp65rq, .framer-wVnWp.framer-v-nu2ksl .framer-1mp65rq, .framer-wVnWp.framer-v-1ei6y8r .framer-1mp65rq, .framer-wVnWp.framer-v-1n7j61h .framer-1mp65rq, .framer-wVnWp.framer-v-1wkdhvp .framer-1mp65rq, .framer-wVnWp.framer-v-18nyfr0 .framer-1mp65rq, .framer-wVnWp.framer-v-1ug4ufy .framer-1mp65rq, .framer-wVnWp.framer-v-1ixbj1q .framer-1mp65rq, .framer-wVnWp.framer-v-c3pjg .framer-1mp65rq, .framer-wVnWp.framer-v-agskzz .framer-1mp65rq, .framer-wVnWp.framer-v-90b4on .framer-1mp65rq, .framer-wVnWp.framer-v-18st3fa .framer-1mp65rq { flex-direction: column; overflow: visible; padding: 16px 4px 16px 4px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-wVnWp.framer-v-2wfqis.framer-1hn4j5y, .framer-wVnWp.framer-v-2wfqis .framer-1mp65rq { gap: 0px; } .framer-wVnWp.framer-v-2wfqis.framer-1hn4j5y > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-wVnWp.framer-v-2wfqis.framer-1hn4j5y > :first-child, .framer-wVnWp.framer-v-2wfqis .framer-1mp65rq > :first-child { margin-top: 0px; } .framer-wVnWp.framer-v-2wfqis.framer-1hn4j5y > :last-child, .framer-wVnWp.framer-v-2wfqis .framer-1mp65rq > :last-child { margin-bottom: 0px; } .framer-wVnWp.framer-v-2wfqis .framer-1mp65rq > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",\".framer-wVnWp.framer-v-nu2ksl.framer-1hn4j5y, .framer-wVnWp.framer-v-1n7j61h.framer-1hn4j5y, .framer-wVnWp.framer-v-18nyfr0.framer-1hn4j5y, .framer-wVnWp.framer-v-1ixbj1q.framer-1hn4j5y, .framer-wVnWp.framer-v-agskzz.framer-1hn4j5y, .framer-wVnWp.framer-v-18st3fa.framer-1hn4j5y { gap: 0px; padding: 24px 0px 0px 0px; width: 390px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-wVnWp.framer-v-nu2ksl.framer-1hn4j5y, .framer-wVnWp.framer-v-nu2ksl .framer-1mp65rq { gap: 0px; } .framer-wVnWp.framer-v-nu2ksl.framer-1hn4j5y > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-wVnWp.framer-v-nu2ksl.framer-1hn4j5y > :first-child, .framer-wVnWp.framer-v-nu2ksl .framer-1mp65rq > :first-child { margin-top: 0px; } .framer-wVnWp.framer-v-nu2ksl.framer-1hn4j5y > :last-child, .framer-wVnWp.framer-v-nu2ksl .framer-1mp65rq > :last-child { margin-bottom: 0px; } .framer-wVnWp.framer-v-nu2ksl .framer-1mp65rq > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-wVnWp.framer-v-1ei6y8r.framer-1hn4j5y, .framer-wVnWp.framer-v-1ei6y8r .framer-1mp65rq { gap: 0px; } .framer-wVnWp.framer-v-1ei6y8r.framer-1hn4j5y > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-wVnWp.framer-v-1ei6y8r.framer-1hn4j5y > :first-child, .framer-wVnWp.framer-v-1ei6y8r .framer-1mp65rq > :first-child { margin-top: 0px; } .framer-wVnWp.framer-v-1ei6y8r.framer-1hn4j5y > :last-child, .framer-wVnWp.framer-v-1ei6y8r .framer-1mp65rq > :last-child { margin-bottom: 0px; } .framer-wVnWp.framer-v-1ei6y8r .framer-1mp65rq > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-wVnWp.framer-v-1n7j61h.framer-1hn4j5y, .framer-wVnWp.framer-v-1n7j61h .framer-1mp65rq { gap: 0px; } .framer-wVnWp.framer-v-1n7j61h.framer-1hn4j5y > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-wVnWp.framer-v-1n7j61h.framer-1hn4j5y > :first-child, .framer-wVnWp.framer-v-1n7j61h .framer-1mp65rq > :first-child { margin-top: 0px; } .framer-wVnWp.framer-v-1n7j61h.framer-1hn4j5y > :last-child, .framer-wVnWp.framer-v-1n7j61h .framer-1mp65rq > :last-child { margin-bottom: 0px; } .framer-wVnWp.framer-v-1n7j61h .framer-1mp65rq > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-wVnWp.framer-v-1wkdhvp.framer-1hn4j5y, .framer-wVnWp.framer-v-1wkdhvp .framer-1mp65rq { gap: 0px; } .framer-wVnWp.framer-v-1wkdhvp.framer-1hn4j5y > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-wVnWp.framer-v-1wkdhvp.framer-1hn4j5y > :first-child, .framer-wVnWp.framer-v-1wkdhvp .framer-1mp65rq > :first-child { margin-top: 0px; } .framer-wVnWp.framer-v-1wkdhvp.framer-1hn4j5y > :last-child, .framer-wVnWp.framer-v-1wkdhvp .framer-1mp65rq > :last-child { margin-bottom: 0px; } .framer-wVnWp.framer-v-1wkdhvp .framer-1mp65rq > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-wVnWp.framer-v-18nyfr0.framer-1hn4j5y, .framer-wVnWp.framer-v-18nyfr0 .framer-1mp65rq { gap: 0px; } .framer-wVnWp.framer-v-18nyfr0.framer-1hn4j5y > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-wVnWp.framer-v-18nyfr0.framer-1hn4j5y > :first-child, .framer-wVnWp.framer-v-18nyfr0 .framer-1mp65rq > :first-child { margin-top: 0px; } .framer-wVnWp.framer-v-18nyfr0.framer-1hn4j5y > :last-child, .framer-wVnWp.framer-v-18nyfr0 .framer-1mp65rq > :last-child { margin-bottom: 0px; } .framer-wVnWp.framer-v-18nyfr0 .framer-1mp65rq > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-wVnWp.framer-v-1ug4ufy.framer-1hn4j5y, .framer-wVnWp.framer-v-1ug4ufy .framer-1mp65rq { gap: 0px; } .framer-wVnWp.framer-v-1ug4ufy.framer-1hn4j5y > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-wVnWp.framer-v-1ug4ufy.framer-1hn4j5y > :first-child, .framer-wVnWp.framer-v-1ug4ufy .framer-1mp65rq > :first-child { margin-top: 0px; } .framer-wVnWp.framer-v-1ug4ufy.framer-1hn4j5y > :last-child, .framer-wVnWp.framer-v-1ug4ufy .framer-1mp65rq > :last-child { margin-bottom: 0px; } .framer-wVnWp.framer-v-1ug4ufy .framer-1mp65rq > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-wVnWp.framer-v-1ixbj1q.framer-1hn4j5y, .framer-wVnWp.framer-v-1ixbj1q .framer-1mp65rq { gap: 0px; } .framer-wVnWp.framer-v-1ixbj1q.framer-1hn4j5y > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-wVnWp.framer-v-1ixbj1q.framer-1hn4j5y > :first-child, .framer-wVnWp.framer-v-1ixbj1q .framer-1mp65rq > :first-child { margin-top: 0px; } .framer-wVnWp.framer-v-1ixbj1q.framer-1hn4j5y > :last-child, .framer-wVnWp.framer-v-1ixbj1q .framer-1mp65rq > :last-child { margin-bottom: 0px; } .framer-wVnWp.framer-v-1ixbj1q .framer-1mp65rq > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-wVnWp.framer-v-c3pjg.framer-1hn4j5y, .framer-wVnWp.framer-v-c3pjg .framer-1mp65rq { gap: 0px; } .framer-wVnWp.framer-v-c3pjg.framer-1hn4j5y > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-wVnWp.framer-v-c3pjg.framer-1hn4j5y > :first-child, .framer-wVnWp.framer-v-c3pjg .framer-1mp65rq > :first-child { margin-top: 0px; } .framer-wVnWp.framer-v-c3pjg.framer-1hn4j5y > :last-child, .framer-wVnWp.framer-v-c3pjg .framer-1mp65rq > :last-child { margin-bottom: 0px; } .framer-wVnWp.framer-v-c3pjg .framer-1mp65rq > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-wVnWp.framer-v-agskzz.framer-1hn4j5y, .framer-wVnWp.framer-v-agskzz .framer-1mp65rq { gap: 0px; } .framer-wVnWp.framer-v-agskzz.framer-1hn4j5y > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-wVnWp.framer-v-agskzz.framer-1hn4j5y > :first-child, .framer-wVnWp.framer-v-agskzz .framer-1mp65rq > :first-child { margin-top: 0px; } .framer-wVnWp.framer-v-agskzz.framer-1hn4j5y > :last-child, .framer-wVnWp.framer-v-agskzz .framer-1mp65rq > :last-child { margin-bottom: 0px; } .framer-wVnWp.framer-v-agskzz .framer-1mp65rq > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-wVnWp.framer-v-90b4on.framer-1hn4j5y, .framer-wVnWp.framer-v-90b4on .framer-1mp65rq { gap: 0px; } .framer-wVnWp.framer-v-90b4on.framer-1hn4j5y > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-wVnWp.framer-v-90b4on.framer-1hn4j5y > :first-child, .framer-wVnWp.framer-v-90b4on .framer-1mp65rq > :first-child { margin-top: 0px; } .framer-wVnWp.framer-v-90b4on.framer-1hn4j5y > :last-child, .framer-wVnWp.framer-v-90b4on .framer-1mp65rq > :last-child { margin-bottom: 0px; } .framer-wVnWp.framer-v-90b4on .framer-1mp65rq > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-wVnWp.framer-v-18st3fa.framer-1hn4j5y, .framer-wVnWp.framer-v-18st3fa .framer-1mp65rq { gap: 0px; } .framer-wVnWp.framer-v-18st3fa.framer-1hn4j5y > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-wVnWp.framer-v-18st3fa.framer-1hn4j5y > :first-child, .framer-wVnWp.framer-v-18st3fa .framer-1mp65rq > :first-child { margin-top: 0px; } .framer-wVnWp.framer-v-18st3fa.framer-1hn4j5y > :last-child, .framer-wVnWp.framer-v-18st3fa .framer-1mp65rq > :last-child { margin-bottom: 0px; } .framer-wVnWp.framer-v-18st3fa .framer-1mp65rq > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1418\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"pMcICkgBb\":{\"layout\":[\"fixed\",\"auto\"]},\"ICatetfdu\":{\"layout\":[\"fixed\",\"auto\"]},\"QWH_4ik2D\":{\"layout\":[\"fixed\",\"auto\"]},\"PK8mQrmJx\":{\"layout\":[\"auto\",\"auto\"]},\"yOlL54OJ1\":{\"layout\":[\"fixed\",\"auto\"]},\"kKtnxtZGq\":{\"layout\":[\"fixed\",\"auto\"]},\"C8Pbz1eqy\":{\"layout\":[\"fixed\",\"auto\"]},\"kT1DnrP6l\":{\"layout\":[\"auto\",\"auto\"]},\"YnZHf5LtE\":{\"layout\":[\"fixed\",\"auto\"]},\"XKrN3jTSe\":{\"layout\":[\"fixed\",\"auto\"]},\"YP7lNCLMM\":{\"layout\":[\"fixed\",\"auto\"]},\"NdTSjZ8rk\":{\"layout\":[\"auto\",\"auto\"]},\"wjDhUdDoB\":{\"layout\":[\"fixed\",\"auto\"]},\"egUsB7IKa\":{\"layout\":[\"fixed\",\"auto\"]},\"XVZ_wN7dQ\":{\"layout\":[\"fixed\",\"auto\"]},\"crVgxBYJy\":{\"layout\":[\"auto\",\"auto\"]},\"dM_wLp6f7\":{\"layout\":[\"fixed\",\"auto\"]},\"StH2ie9a5\":{\"layout\":[\"fixed\",\"auto\"]},\"Nr9Bor7BU\":{\"layout\":[\"fixed\",\"auto\"]},\"I0QiH1ebI\":{\"layout\":[\"auto\",\"auto\"]},\"rX1hgkGgg\":{\"layout\":[\"fixed\",\"auto\"]},\"gg5Anq1SA\":{\"layout\":[\"fixed\",\"auto\"]},\"fCkqoa_6Y\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerX1PuSMi_O=withCSS(Component,css,\"framer-wVnWp\");export default FramerX1PuSMi_O;FramerX1PuSMi_O.displayName=\"Work with us nested component\";FramerX1PuSMi_O.defaultProps={height:1418,width:1440};addPropertyControls(FramerX1PuSMi_O,{variant:{options:[\"Wq9QSjIEL\",\"pMcICkgBb\",\"ICatetfdu\",\"QWH_4ik2D\",\"PK8mQrmJx\",\"yOlL54OJ1\",\"kKtnxtZGq\",\"C8Pbz1eqy\",\"kT1DnrP6l\",\"YnZHf5LtE\",\"XKrN3jTSe\",\"YP7lNCLMM\",\"NdTSjZ8rk\",\"wjDhUdDoB\",\"egUsB7IKa\",\"XVZ_wN7dQ\",\"crVgxBYJy\",\"dM_wLp6f7\",\"StH2ie9a5\",\"Nr9Bor7BU\",\"I0QiH1ebI\",\"rX1hgkGgg\",\"gg5Anq1SA\",\"fCkqoa_6Y\"],optionTitles:[\"Lenders - Desktop\",\"Lenders - Laptop\",\"Lenders - Tablet\",\"Lenders - Mobile\",\"Investors - Desktop\",\"Investors - Laptop\",\"Investors - Tablet\",\"Investors - Mobile\",\"Accelerators - Desktop\",\"Accelerators - Laptop\",\"Accelerators - Tablet\",\"Accelerators - mobile\",\"Advisors - Desktop\",\"Advisors - Laptop\",\"Advisors - Tablet\",\"Advisors - mobile\",\"Academia - Desktop\",\"Academia - Laptop\",\"Academia - Tablet\",\"Academia - mobile\",\"Gov - Desktop\",\"Gov - Laptop\",\"Gov - Tablet\",\"Gov - mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerX1PuSMi_O,[{explicitInter:true,fonts:[]},...TabFonts,...WorkWithUsContentSectionFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerX1PuSMi_O\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"pMcICkgBb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ICatetfdu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QWH_4ik2D\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"PK8mQrmJx\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"yOlL54OJ1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kKtnxtZGq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"C8Pbz1eqy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kT1DnrP6l\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"YnZHf5LtE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XKrN3jTSe\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"YP7lNCLMM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NdTSjZ8rk\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"wjDhUdDoB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"egUsB7IKa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XVZ_wN7dQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"crVgxBYJy\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"dM_wLp6f7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"StH2ie9a5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Nr9Bor7BU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"I0QiH1ebI\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"rX1hgkGgg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gg5Anq1SA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fCkqoa_6Y\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"1418\",\"framerIntrinsicWidth\":\"1440\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (2a6858f)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useActiveVariantCallback,useCustomCursors,useHydratedBreakpointVariants,useLocaleCode,useLocaleInfo,useOverlayState,useQueryData,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import*as ReactDOM from\"react-dom\";import{Icon as Material}from\"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/K0mI40rrezffFjPjHAZX/Video.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js\";import LogoTicker4 from\"#framer/local/canvasComponent/DYRGENCHx/DYRGENCHx.js\";import Header from\"#framer/local/canvasComponent/EH90VW7t9/EH90VW7t9.js\";import Button from\"#framer/local/canvasComponent/n2KScAQCD/n2KScAQCD.js\";import ListItem from\"#framer/local/canvasComponent/NeecfOwmp/NeecfOwmp.js\";import BlogCard from\"#framer/local/canvasComponent/RSBmZjsRP/RSBmZjsRP.js\";import WorkWithUsNestedComponent from\"#framer/local/canvasComponent/X1PuSMi_O/X1PuSMi_O.js\";import ServiceWidget from\"#framer/local/canvasComponent/X7oGJ5w46/X7oGJ5w46.js\";import FooterVersion2Copyright from\"#framer/local/canvasComponent/XZeB9nS9X/XZeB9nS9X.js\";import News from\"#framer/local/collection/sevKWP9SD/sevKWP9SD.js\";import*as sharedStyle2 from\"#framer/local/css/ASc6PGhfW/ASc6PGhfW.js\";import*as sharedStyle1 from\"#framer/local/css/myKLULMWY/myKLULMWY.js\";import*as sharedStyle from\"#framer/local/css/WSj2wpBRo/WSj2wpBRo.js\";import metadataProvider from\"#framer/local/webPageMetadata/uqWR3m2Gf/uqWR3m2Gf.js\";const HeaderFonts=getFonts(Header);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const ButtonFonts=getFonts(Button);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const ListItemFonts=getFonts(ListItem);const LogoTicker4Fonts=getFonts(LogoTicker4);const YouTubeFonts=getFonts(YouTube);const FeatherFonts=getFonts(Feather);const MaterialFonts=getFonts(Material);const VideoFonts=getFonts(Video);const ContainerWithFX=withFX(Container);const RichTextWithFX=withFX(RichText);const ServiceWidgetFonts=getFonts(ServiceWidget);const WorkWithUsNestedComponentFonts=getFonts(WorkWithUsNestedComponent);const BlogCardFonts=getFonts(BlogCard);const MotionDivWithFX=withFX(motion.div);const FooterVersion2CopyrightFonts=getFonts(FooterVersion2Copyright);const breakpoints={dy0fYB0Cl:\"(max-width: 767px)\",FK0Zy0iqh:\"(min-width: 1440px)\",jFbjbc2OP:\"(min-width: 1200px) and (max-width: 1439px)\",zNNVKQiLJ:\"(min-width: 768px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-0SuWP\";const variantClassNames={dy0fYB0Cl:\"framer-v-1f9pa9p\",FK0Zy0iqh:\"framer-v-1wbfdrc\",jFbjbc2OP:\"framer-v-1oju8pk\",zNNVKQiLJ:\"framer-v-1u37nls\"};const transition1={damping:60,delay:0,mass:1.2,stiffness:300,type:\"spring\"};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:50};const transition2={damping:60,delay:.2,mass:1.2,stiffness:300,type:\"spring\"};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={damping:60,delay:.4,mass:1.2,stiffness:300,type:\"spring\"};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 transition4={damping:60,delay:.6,mass:1.2,stiffness:200,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const transition5={damping:60,delay:.8,mass:1.2,stiffness:300,type:\"spring\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:0};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-150};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition6={damping:60,delay:.6,mass:1.2,stiffness:300,type:\"spring\"};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:50,y:0};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:50,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 toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const display=options.display?options.display:\"date\";const dateOptions={dateStyle:display!==\"time\"?options.dateStyle:undefined,timeStyle:display===\"date\"?undefined:\"short\",timeZone:\"UTC\"};const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;// We add a try block because an invalid language code results in a crash\ntry{return date.toLocaleString(locale,dateOptions);}catch{return date.toLocaleString(fallbackLocale,dateOptions);}};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:150};const transition7={damping:30,delay:.3,mass:1,stiffness:400,type:\"spring\"};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:150};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"FK0Zy0iqh\",Laptop:\"jFbjbc2OP\",Phone:\"dy0fYB0Cl\",Tablet:\"zNNVKQiLJ\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"FK0Zy0iqh\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,gfKaOWmJfzfLQ22ndK,MU320d_BizfLQ22ndK,NRLFSyICNzfLQ22ndK,idzfLQ22ndK,B3oo9n5fNzfLQ22ndK,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-0SuWP`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-0SuWP`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const onTapwelu7j=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const onClick1wvko5h=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{overlay.hide();});const ref1=React.useRef(null);const router=useRouter();const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"dy0fYB0Cl\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"dy0fYB0Cl\")return true;return false;};const activeLocaleCode=useLocaleCode();const isDisplayed2=()=>{if(!isBrowser())return true;if([\"zNNVKQiLJ\",\"dy0fYB0Cl\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"zNNVKQiLJ\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"FK0Zy0iqh\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1wbfdrc\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1c50m5j-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dy0fYB0Cl:{variant:\"o0QUljMO0\"},zNNVKQiLJ:{variant:\"GT1g0q21D\"}},children:/*#__PURE__*/_jsx(Header,{height:\"100%\",id:\"nLtrydoTs\",layoutId:\"nLtrydoTs\",Nfz4BLJ_u:\"rgba(0, 0, 0, 0)\",style:{width:\"100%\"},variant:\"BSjOuZVmQ\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1da1ghp\",\"data-framer-name\":\"Hero Section\",name:\"Hero Section\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mxqioy\",\"data-framer-name\":\"Container\",name:\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nv1qcq\",\"data-framer-name\":\"Hero Content Wrapper\",name:\"Hero Content Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13bh4w\",\"data-framer-name\":\"Hero Content\",name:\"Hero Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5wbia9\",\"data-framer-name\":\"Hero Text Block\",name:\"Hero Text Block\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dy0fYB0Cl:{animate:undefined,initial:undefined,optimized:undefined,style:{}}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1ca7lge\",\"data-styles-preset\":\"WSj2wpBRo\",children:\"Let's work together\"})}),className:\"framer-gfvx4n\",\"data-framer-appear-id\":\"gfvx4n\",\"data-framer-name\":\"Hero Title\",fonts:[\"Inter\"],initial:animation1,name:\"Hero Title\",optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dy0fYB0Cl:{animate:undefined,initial:undefined,optimized:undefined,style:{}}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(48, 65, 62)\"},children:\"Inngot partners with start-up programmes and high growth and scale up accelerators, lenders, research institutions, NGOs and government departments\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(48, 65, 62)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(48, 65, 62)\"},children:\"Are you interested in working with Inngot?\"})]}),className:\"framer-1hf9ztk\",\"data-framer-appear-id\":\"1hf9ztk\",\"data-framer-name\":\"Text\",fonts:[\"GF;Archivo-regular\"],initial:animation1,name:\"Text\",optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dy0fYB0Cl:{animate:undefined,initial:undefined,optimized:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation3,className:\"framer-1rs4f36\",\"data-framer-appear-id\":\"1rs4f36\",\"data-framer-name\":\"Button Block\",initial:animation1,name:\"Button Block\",optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-18mvmhc\",\"data-framer-name\":\"Hero  Button Wrapper\",name:\"Hero  Button Wrapper\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"iEcRn1vfP\"},implicitPathVariables:undefined},{href:{webPageId:\"iEcRn1vfP\"},implicitPathVariables:undefined},{href:{webPageId:\"iEcRn1vfP\"},implicitPathVariables:undefined},{href:{webPageId:\"iEcRn1vfP\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dy0fYB0Cl:{width:\"max(min(min(min(max(100vw, 1px), 520px) - 48px, 400px), 423px), 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:67,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1i5q4l2-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dy0fYB0Cl:{DnytOe0Z8:resolvedLinks[3],style:{width:\"100%\"},variant:\"pd8TQn7H5\"},jFbjbc2OP:{DnytOe0Z8:resolvedLinks[1]},zNNVKQiLJ:{DnytOe0Z8:resolvedLinks[2],variant:\"pd8TQn7H5\"}},children:/*#__PURE__*/_jsx(Button,{A2dWUqqQh:\"Get in touch\",DnytOe0Z8:resolvedLinks[0],height:\"100%\",id:\"g_ochMr9d\",layoutId:\"g_ochMr9d\",N5FKWNwKs:false,oSfNN4wFr:false,v8ArQOg02:false,variant:\"K0WT_eyW0\",width:\"100%\"})})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1omeu7t\",\"data-framer-name\":\"Hero Button Wrapper\",name:\"Hero Button Wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dy0fYB0Cl:{width:\"min(min(min(max(100vw, 1px), 520px) - 48px, 400px), 423px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:67,children:/*#__PURE__*/_jsx(Container,{className:\"framer-mhr40j-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dy0fYB0Cl:{style:{width:\"100%\"},variant:\"GVBL6yAQc\"},zNNVKQiLJ:{variant:\"W7NUvLW43\"}},children:/*#__PURE__*/_jsx(Button,{A2dWUqqQh:\"Book a call\",DnytOe0Z8:\"https://calendly.com/support-inngot/speak-to-an-expert\",height:\"100%\",id:\"W_PlHozLY\",layoutId:\"W_PlHozLY\",N5FKWNwKs:false,oSfNN4wFr:false,v8ArQOg02:false,variant:\"IDNfu3pDs\",width:\"100%\"})})})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tr2b6u\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-td19dw\",\"data-framer-name\":\"Hero List Wrapper\",name:\"Hero List Wrapper\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,children:/*#__PURE__*/_jsx(Container,{className:\"framer-130znqw-container\",children:/*#__PURE__*/_jsx(ListItem,{cd4TFbsWM:\"CheckCircle\",g7S5w9a5j:\"Lenders\",gZ7z2s7ck:\"var(--token-f512b2c0-ccff-4c1c-81ef-5b1a68ff0d48, rgb(1, 89, 65))\",height:\"100%\",id:\"xjVBPyeld\",layoutId:\"xjVBPyeld\",variant:\"H0in1O_yg\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1a7ai15-container\",children:/*#__PURE__*/_jsx(ListItem,{cd4TFbsWM:\"CheckCircle\",g7S5w9a5j:\"Investors\",gZ7z2s7ck:\"var(--token-f512b2c0-ccff-4c1c-81ef-5b1a68ff0d48, rgb(1, 89, 65))\",height:\"100%\",id:\"beiQ9532e\",layoutId:\"beiQ9532e\",variant:\"H0in1O_yg\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,children:/*#__PURE__*/_jsx(Container,{className:\"framer-dp9z7j-container\",children:/*#__PURE__*/_jsx(ListItem,{cd4TFbsWM:\"CheckCircle\",g7S5w9a5j:\"Accelerators\",gZ7z2s7ck:\"var(--token-f512b2c0-ccff-4c1c-81ef-5b1a68ff0d48, rgb(1, 89, 65))\",height:\"100%\",id:\"ggKGIgW2t\",layoutId:\"ggKGIgW2t\",variant:\"H0in1O_yg\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hkl5a2-container\",children:/*#__PURE__*/_jsx(ListItem,{cd4TFbsWM:\"CheckCircle\",g7S5w9a5j:\"Advisors\",gZ7z2s7ck:\"var(--token-f512b2c0-ccff-4c1c-81ef-5b1a68ff0d48, rgb(1, 89, 65))\",height:\"100%\",id:\"D2s_SP6Nl\",layoutId:\"D2s_SP6Nl\",variant:\"H0in1O_yg\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1o71apw-container\",children:/*#__PURE__*/_jsx(ListItem,{cd4TFbsWM:\"CheckCircle\",g7S5w9a5j:\"Innovation Programmes\",gZ7z2s7ck:\"var(--token-f512b2c0-ccff-4c1c-81ef-5b1a68ff0d48, rgb(1, 89, 65))\",height:\"100%\",id:\"Oy6C4u4O8\",layoutId:\"Oy6C4u4O8\",variant:\"H0in1O_yg\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t4k0jr\",\"data-framer-name\":\"Hero List Wrapper\",name:\"Hero List Wrapper\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,children:/*#__PURE__*/_jsx(Container,{className:\"framer-nubb4b-container\",children:/*#__PURE__*/_jsx(ListItem,{cd4TFbsWM:\"CheckCircle\",g7S5w9a5j:\"Academia\",gZ7z2s7ck:\"var(--token-f512b2c0-ccff-4c1c-81ef-5b1a68ff0d48, rgb(1, 89, 65))\",height:\"100%\",id:\"nBuActWTL\",layoutId:\"nBuActWTL\",variant:\"H0in1O_yg\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13gr1ks-container\",children:/*#__PURE__*/_jsx(ListItem,{cd4TFbsWM:\"CheckCircle\",g7S5w9a5j:\"Government and NGOs\",gZ7z2s7ck:\"var(--token-f512b2c0-ccff-4c1c-81ef-5b1a68ff0d48, rgb(1, 89, 65))\",height:\"100%\",id:\"mt21yvV4U\",layoutId:\"mt21yvV4U\",variant:\"H0in1O_yg\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dy0fYB0Cl:{width:\"min(min(max(100vw, 1px), 520px) - 48px, 400px)\"},jFbjbc2OP:{width:\"calc(min(max(100vw, 1px), 1000px) - 60px)\"},zNNVKQiLJ:{width:\"calc(min(max(100vw, 1px), 720px) - 48px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"calc(min(max(100vw, 1px), 1356px) - 60px)\",children:/*#__PURE__*/_jsx(Container,{animate:animation4,className:\"framer-dvemoj-container\",\"data-framer-appear-id\":\"dvemoj\",initial:animation1,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(LogoTicker4,{height:\"100%\",id:\"DEPkBtdrm\",layoutId:\"DEPkBtdrm\",style:{width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dy0fYB0Cl:{animate:undefined,initial:undefined,optimized:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation5,className:\"framer-1ltkpgr\",\"data-framer-appear-id\":\"1ltkpgr\",\"data-framer-name\":\"Hero Image Block\",initial:animation1,name:\"Hero Image Block\",optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dy0fYB0Cl:{animate:undefined,initial:undefined,optimized:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation5,className:\"framer-io5lpe\",\"data-framer-appear-id\":\"io5lpe\",\"data-framer-name\":\"Hero Image Block\",initial:animation1,name:\"Hero Image Block\",optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dy0fYB0Cl:{background:{alt:\"\",fit:\"stretch\",intrinsicHeight:1404,intrinsicWidth:2592,pixelHeight:720,pixelWidth:1280,positionX:\"center\",positionY:\"center\",sizes:\"342px\",src:\"https://framerusercontent.com/images/1996rcoI0EprHnsEFAbFb1jJ88o.png\",srcSet:\"https://framerusercontent.com/images/1996rcoI0EprHnsEFAbFb1jJ88o.png?scale-down-to=512 512w,https://framerusercontent.com/images/1996rcoI0EprHnsEFAbFb1jJ88o.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/1996rcoI0EprHnsEFAbFb1jJ88o.png 1280w\"}},jFbjbc2OP:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1404,intrinsicWidth:2592,pixelHeight:720,pixelWidth:1280,sizes:\"732px\",src:\"https://framerusercontent.com/images/1996rcoI0EprHnsEFAbFb1jJ88o.png\",srcSet:\"https://framerusercontent.com/images/1996rcoI0EprHnsEFAbFb1jJ88o.png?scale-down-to=512 512w,https://framerusercontent.com/images/1996rcoI0EprHnsEFAbFb1jJ88o.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/1996rcoI0EprHnsEFAbFb1jJ88o.png 1280w\"},transformTemplate:transformTemplate1},zNNVKQiLJ:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1404,intrinsicWidth:2592,pixelHeight:720,pixelWidth:1280,positionX:\"center\",positionY:\"center\",sizes:\"660px\",src:\"https://framerusercontent.com/images/1996rcoI0EprHnsEFAbFb1jJ88o.png\",srcSet:\"https://framerusercontent.com/images/1996rcoI0EprHnsEFAbFb1jJ88o.png?scale-down-to=512 512w,https://framerusercontent.com/images/1996rcoI0EprHnsEFAbFb1jJ88o.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/1996rcoI0EprHnsEFAbFb1jJ88o.png 1280w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1404,intrinsicWidth:2592,pixelHeight:720,pixelWidth:1280,sizes:\"1296px\",src:\"https://framerusercontent.com/images/1996rcoI0EprHnsEFAbFb1jJ88o.png\",srcSet:\"https://framerusercontent.com/images/1996rcoI0EprHnsEFAbFb1jJ88o.png?scale-down-to=512 512w,https://framerusercontent.com/images/1996rcoI0EprHnsEFAbFb1jJ88o.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/1996rcoI0EprHnsEFAbFb1jJ88o.png 1280w\"},className:\"framer-1rolapd\",\"data-framer-name\":\"Background\",name:\"Background\"})}),/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6b3841\",\"data-framer-name\":\"Play\",id:\"6b3841\",name:\"Play\",onTap:onTapwelu7j({overlay}),transformTemplate:transformTemplate2,children:[/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-1y8uad0\",\"data-framer-portal-id\":\"6b3841\",exit:{opacity:0,transition:{delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"tJ6iA88N0\"),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-nymrqu-container hidden-1f9pa9p\",\"data-framer-portal-id\":\"6b3841\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:16,bottomLeftRadius:16,bottomRightRadius:16,height:\"100%\",id:\"cfVLCTGuc\",isMixedBorderRadius:false,isRed:false,layoutId:\"cfVLCTGuc\",play:\"On\",shouldMute:false,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:16,topRightRadius:16,url:\"https://www.youtube.com/watch?v=UsVfTKcUOz0\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-o4uvtl-container\",\"data-framer-portal-id\":\"6b3841\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-699c93d3-017a-4de6-9a72-000b574d587f, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"x\",id:\"uVxCdtPH7\",layoutId:\"uVxCdtPH7\",mirrored:false,onClick:onClick1wvko5h({overlay}),selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-pd3a2z-container hidden-1wbfdrc hidden-1oju8pk hidden-1u37nls\",\"data-framer-portal-id\":\"6b3841\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:16,bottomLeftRadius:16,bottomRightRadius:16,height:\"100%\",id:\"OWEXl0TgO\",isMixedBorderRadius:false,isRed:false,layoutId:\"OWEXl0TgO\",play:\"On\",shouldMute:false,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:16,topRightRadius:16,url:\"https://www.youtube.com/watch?v=UsVfTKcUOz0\",width:\"100%\"})})})]}),document.querySelector(\"#overlay\"))})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-s0roe1-container\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(12, 30, 27))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"PlayArrow\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"X9XtSHIHr\",layoutId:\"X9XtSHIHr\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})]})}),/*#__PURE__*/_jsx(Overlay,{children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ey30ha\",\"data-framer-name\":\"Play\",id:\"1ey30ha\",name:\"Play\",onTap:onTapwelu7j({overlay:overlay1}),transformTemplate:transformTemplate2,children:[/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-1vcytob\",\"data-framer-portal-id\":\"1ey30ha\",exit:{opacity:0,transition:{delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay1.hide()},\"NaMnQ3Sij\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-jn35iv-container\",\"data-framer-portal-id\":\"1ey30ha\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"R5bBRGtf_\",isMixedBorderRadius:false,layoutId:\"R5bBRGtf_\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcType:\"URL\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-work-team-planning-a-project-on-blueprints-21309-large.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-141uwkf-container\",\"data-framer-portal-id\":\"1ey30ha\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-699c93d3-017a-4de6-9a72-000b574d587f, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"x\",id:\"nqhUdK9i3\",layoutId:\"nqhUdK9i3\",mirrored:false,onClick:onClick1wvko5h({overlay:overlay1}),selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),document.querySelector(\"#overlay\"))})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-yefamm-container\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(12, 30, 27))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"PlayArrow\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"eteJvdo2V\",layoutId:\"eteJvdo2V\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})]})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-am8ps8\",\"data-framer-name\":\"Background\",name:\"Background\"})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"100vw\",y:-.5,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-alotfk-container\",\"data-framer-name\":\"Header Fixed\",layoutScroll:true,name:\"Header Fixed\",style:{transformPerspective:1200},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dy0fYB0Cl:{variant:\"o0QUljMO0\"},zNNVKQiLJ:{variant:\"GT1g0q21D\"}},children:/*#__PURE__*/_jsx(Header,{height:\"100%\",id:\"u8_so0VNK\",layoutId:\"u8_so0VNK\",name:\"Header Fixed\",Nfz4BLJ_u:\"var(--token-a7f7ae5f-a181-442b-8823-be0ca1b170fe, rgb(255, 255, 255))\",style:{width:\"100%\"},variant:\"TfY6RrfYR\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-231hos\",\"data-framer-name\":\"Service Section\",name:\"Service Section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-17rmclw\",\"data-framer-name\":\"Container\",name:\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yma6l5\",\"data-framer-name\":\"Service Content Wrapper\",name:\"Service Content Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dy0fYB0Cl:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-135qrtm\",\"data-styles-preset\":\"myKLULMWY\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-45ecf4b1-5f2a-4491-910a-fe4f9864bffe, rgb(224, 177, 96))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-a7f7ae5f-a181-442b-8823-be0ca1b170fe, rgb(255, 255, 255))\"},children:\"Inngot partner \"}),\"network benefits\"]})}),className:\"framer-1odx8wp\",\"data-framer-name\":\"Service Content Title\",fonts:[\"Inter\"],name:\"Service Content Title\",style:{transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-150nt2b\",\"data-framer-name\":\"Service Widget Wrapper\",name:\"Service Widget Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dy0fYB0Cl:{width:\"min(min(max(100vw, 1px), 520px) - 48px, 400px)\"},jFbjbc2OP:{width:\"max((min(max(100vw, 1px), 1000px) - 200px) / 3, 50px)\"},zNNVKQiLJ:{width:\"max((min(max(100vw, 1px), 720px) - 72px) / 2, 200px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:187,width:\"max((min(max(100vw, 1px), 1356px) - 200px) / 3, 50px)\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dy0fYB0Cl:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1s8fi1d-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ServiceWidget,{aUyEH4Jpr:\"var(--token-a7f7ae5f-a181-442b-8823-be0ca1b170fe, rgb(255, 255, 255))\",height:\"100%\",id:\"bp_7mi2r4\",jr5K6Acsz:\"Lenders, accelerators and advisors can benefit from exclusive discounts for clients on our online toolkit\",layoutId:\"bp_7mi2r4\",OsP5bQ6jc:\"SealPercent\",owvRdbrRH:\"Discounts on Inngot's IP toolkit\",PtetWezX7:\"duotone\",RYAu4J1tG:true,style:{width:\"100%\"},tIV946TW7:\"var(--token-a7f7ae5f-a181-442b-8823-be0ca1b170fe, rgb(255, 255, 255))\",ts_Jr8Xof:\"var(--token-a7f7ae5f-a181-442b-8823-be0ca1b170fe, rgb(255, 255, 255))\",variant:\"Edd_zDVha\",width:\"100%\",wwhYjs6nI:false,ZC9Kscsgb:\"var(--token-45ecf4b1-5f2a-4491-910a-fe4f9864bffe, rgb(224, 177, 96))\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dy0fYB0Cl:{width:\"min(min(max(100vw, 1px), 520px) - 48px, 400px)\"},jFbjbc2OP:{width:\"max((min(max(100vw, 1px), 1000px) - 200px) / 3, 50px)\"},zNNVKQiLJ:{width:\"max((min(max(100vw, 1px), 720px) - 72px) / 2, 200px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:187,width:\"max((min(max(100vw, 1px), 1356px) - 200px) / 3, 50px)\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dy0fYB0Cl:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1y1f7ft-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ServiceWidget,{aUyEH4Jpr:\"var(--token-a7f7ae5f-a181-442b-8823-be0ca1b170fe, rgb(255, 255, 255))\",height:\"100%\",id:\"tlJLKrmHy\",jr5K6Acsz:\"Offer your clients hybrid IP services and online solutions through Inngot, tailored to suit their needs\",layoutId:\"tlJLKrmHy\",OsP5bQ6jc:\"ColumnsPlusRight\",owvRdbrRH:\"Offer comprehensive IP packages\",PtetWezX7:\"duotone\",RYAu4J1tG:true,style:{width:\"100%\"},tIV946TW7:\"var(--token-a7f7ae5f-a181-442b-8823-be0ca1b170fe, rgb(255, 255, 255))\",ts_Jr8Xof:\"var(--token-a7f7ae5f-a181-442b-8823-be0ca1b170fe, rgb(255, 255, 255))\",variant:\"Edd_zDVha\",width:\"100%\",wwhYjs6nI:false,ZC9Kscsgb:\"var(--token-45ecf4b1-5f2a-4491-910a-fe4f9864bffe, rgb(224, 177, 96))\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dy0fYB0Cl:{width:\"min(min(max(100vw, 1px), 520px) - 48px, 400px)\"},jFbjbc2OP:{width:\"max((min(max(100vw, 1px), 1000px) - 200px) / 3, 50px)\"},zNNVKQiLJ:{width:\"max((min(max(100vw, 1px), 720px) - 72px) / 2, 200px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:187,width:\"max((min(max(100vw, 1px), 1356px) - 200px) / 3, 50px)\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dy0fYB0Cl:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-81d3xm-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ServiceWidget,{aUyEH4Jpr:\"var(--token-a7f7ae5f-a181-442b-8823-be0ca1b170fe, rgb(255, 255, 255))\",height:\"100%\",id:\"TkdRXeAAp\",jr5K6Acsz:\"Our partners benefit from Inngot experts to deliver masterclasses and training in IP commercialisation\",layoutId:\"TkdRXeAAp\",OsP5bQ6jc:\"UsersFour\",owvRdbrRH:\"Advice and training\",PtetWezX7:\"duotone\",RYAu4J1tG:true,style:{width:\"100%\"},tIV946TW7:\"var(--token-a7f7ae5f-a181-442b-8823-be0ca1b170fe, rgb(255, 255, 255))\",ts_Jr8Xof:\"var(--token-a7f7ae5f-a181-442b-8823-be0ca1b170fe, rgb(255, 255, 255))\",variant:\"Edd_zDVha\",width:\"100%\",wwhYjs6nI:false,ZC9Kscsgb:\"var(--token-45ecf4b1-5f2a-4491-910a-fe4f9864bffe, rgb(224, 177, 96))\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dy0fYB0Cl:{width:\"min(min(max(100vw, 1px), 520px) - 48px, 400px)\"},jFbjbc2OP:{width:\"max((min(max(100vw, 1px), 1000px) - 200px) / 3, 50px)\"},zNNVKQiLJ:{width:\"max((min(max(100vw, 1px), 720px) - 72px) / 2, 200px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:187,width:\"max((min(max(100vw, 1px), 1356px) - 200px) / 3, 50px)\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dy0fYB0Cl:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1nvnsrh-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ServiceWidget,{aUyEH4Jpr:\"var(--token-a7f7ae5f-a181-442b-8823-be0ca1b170fe, rgb(255, 255, 255))\",height:\"100%\",id:\"suhsYjAPb\",jr5K6Acsz:\"Our extensive network of relationships across the IP and business support landscape can be utilised by our partners\",layoutId:\"suhsYjAPb\",OsP5bQ6jc:\"AddressBookTabs\",owvRdbrRH:\"Network of contacts\",PtetWezX7:\"duotone\",RYAu4J1tG:true,style:{width:\"100%\"},tIV946TW7:\"var(--token-a7f7ae5f-a181-442b-8823-be0ca1b170fe, rgb(255, 255, 255))\",ts_Jr8Xof:\"var(--token-a7f7ae5f-a181-442b-8823-be0ca1b170fe, rgb(255, 255, 255))\",variant:\"Edd_zDVha\",width:\"100%\",wwhYjs6nI:false,ZC9Kscsgb:\"var(--token-45ecf4b1-5f2a-4491-910a-fe4f9864bffe, rgb(224, 177, 96))\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dy0fYB0Cl:{width:\"min(min(max(100vw, 1px), 520px) - 48px, 400px)\"},jFbjbc2OP:{width:\"max((min(max(100vw, 1px), 1000px) - 200px) / 3, 50px)\"},zNNVKQiLJ:{width:\"max((min(max(100vw, 1px), 720px) - 72px) / 2, 200px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:187,width:\"max((min(max(100vw, 1px), 1356px) - 200px) / 3, 50px)\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dy0fYB0Cl:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-2r3rn2-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ServiceWidget,{aUyEH4Jpr:\"var(--token-a7f7ae5f-a181-442b-8823-be0ca1b170fe, rgb(255, 255, 255))\",height:\"100%\",id:\"DMam7evao\",jr5K6Acsz:\"With hundreds of audits conducted and companies supported, Inngot is uniquely positioned to provide support on anything related to IP identification and valuation\",layoutId:\"DMam7evao\",OsP5bQ6jc:\"FolderStar\",owvRdbrRH:\"Breadth and depth of experience\",PtetWezX7:\"duotone\",RYAu4J1tG:true,style:{width:\"100%\"},tIV946TW7:\"var(--token-a7f7ae5f-a181-442b-8823-be0ca1b170fe, rgb(255, 255, 255))\",ts_Jr8Xof:\"var(--token-a7f7ae5f-a181-442b-8823-be0ca1b170fe, rgb(255, 255, 255))\",variant:\"Edd_zDVha\",width:\"100%\",wwhYjs6nI:false,ZC9Kscsgb:\"var(--token-45ecf4b1-5f2a-4491-910a-fe4f9864bffe, rgb(224, 177, 96))\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dy0fYB0Cl:{width:\"min(min(max(100vw, 1px), 520px) - 48px, 400px)\"},jFbjbc2OP:{width:\"max((min(max(100vw, 1px), 1000px) - 200px) / 3, 50px)\"},zNNVKQiLJ:{width:\"max((min(max(100vw, 1px), 720px) - 72px) / 2, 200px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:187,width:\"max((min(max(100vw, 1px), 1356px) - 200px) / 3, 50px)\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dy0fYB0Cl:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-zin8iu-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ServiceWidget,{aUyEH4Jpr:\"var(--token-a7f7ae5f-a181-442b-8823-be0ca1b170fe, rgb(255, 255, 255))\",height:\"100%\",id:\"JSMhENsZ8\",jr5K6Acsz:\"Support with events and conferences on growth and innovation, explaining the role of IP and intangibles\",layoutId:\"JSMhENsZ8\",OsP5bQ6jc:\"Microphone\",owvRdbrRH:\"Expert speakers\",PtetWezX7:\"duotone\",RYAu4J1tG:true,style:{width:\"100%\"},tIV946TW7:\"var(--token-a7f7ae5f-a181-442b-8823-be0ca1b170fe, rgb(255, 255, 255))\",ts_Jr8Xof:\"var(--token-a7f7ae5f-a181-442b-8823-be0ca1b170fe, rgb(255, 255, 255))\",variant:\"Edd_zDVha\",width:\"100%\",wwhYjs6nI:false,ZC9Kscsgb:\"var(--token-45ecf4b1-5f2a-4491-910a-fe4f9864bffe, rgb(224, 177, 96))\"})})})})})]})]})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1418,width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-mxdtga-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dy0fYB0Cl:{variant:\"QWH_4ik2D\"},jFbjbc2OP:{variant:\"pMcICkgBb\"},zNNVKQiLJ:{variant:\"ICatetfdu\"}},children:/*#__PURE__*/_jsx(WorkWithUsNestedComponent,{height:\"100%\",id:\"maPWricG6\",layoutId:\"maPWricG6\",style:{width:\"100%\"},variant:\"Wq9QSjIEL\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18pamk8\",\"data-framer-name\":\"Blog Section \",name:\"Blog Section \",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1s2koi0\",\"data-framer-name\":\"Container\",name:\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11b8qc7\",\"data-framer-name\":\"Content Wrapper\",name:\"Content Wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-19pixci\",\"data-framer-name\":\"Section Heading\",name:\"Section Heading\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dy0fYB0Cl:{__framer__styleAppearEffectEnabled:undefined,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-135qrtm\",\"data-styles-preset\":\"myKLULMWY\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Latest \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-45ecf4b1-5f2a-4491-910a-fe4f9864bffe, rgb(224, 177, 96))\"},children:\"news\"})]})}),style:{}}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-135qrtm\",\"data-styles-preset\":\"myKLULMWY\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Latest \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-45ecf4b1-5f2a-4491-910a-fe4f9864bffe, rgb(224, 177, 96))\"},children:\"news\"})]})}),className:\"framer-u17185\",\"data-framer-name\":\"Section Title\",fonts:[\"Inter\"],name:\"Section Title\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-112co4o\",\"data-framer-name\":\"Blog Card Deck\",name:\"Blog Card Deck\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dy0fYB0Cl:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-13zxqg4\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"zfLQ22ndK\",data:News,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"zfLQ22ndK\",name:\"gfKaOWmJf\",type:\"Identifier\"},{collection:\"zfLQ22ndK\",name:\"MU320d_Bi\",type:\"Identifier\"},{collection:\"zfLQ22ndK\",name:\"NRLFSyICN\",type:\"Identifier\"},{collection:\"zfLQ22ndK\",name:\"id\",type:\"Identifier\"},{collection:\"zfLQ22ndK\",name:\"B3oo9n5fN\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection.map(({\"gfKaOWmJf\":gfKaOWmJfzfLQ22ndK,\"MU320d_Bi\":MU320d_BizfLQ22ndK,\"NRLFSyICN\":NRLFSyICNzfLQ22ndK,\"id\":idzfLQ22ndK,\"B3oo9n5fN\":B3oo9n5fNzfLQ22ndK},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`zfLQ22ndK-${idzfLQ22ndK}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{B3oo9n5fN:B3oo9n5fNzfLQ22ndK},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-91jixi\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dy0fYB0Cl:{width:\"min(min(100vw, 520px) - 48px, 400px)\"},jFbjbc2OP:{width:\"max((max(min(100vw, 1000px) - 60px, 1px) - 3048px) / 128, 1px)\"},zNNVKQiLJ:{width:\"max((min(100vw, 720px) - 72px) / 2, 200px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:403,width:\"max((max(min(100vw, 1356px) - 60px, 1px) - 3048px) / 128, 1px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1igmfh5-container\",children:/*#__PURE__*/_jsx(BlogCard,{A0zR3wSdV:toResponsiveImage(gfKaOWmJfzfLQ22ndK),height:\"100%\",HPQIXVBJa:NRLFSyICNzfLQ22ndK,id:\"Aa1sR2PeM\",layoutId:\"Aa1sR2PeM\",p00usK63D:toDateString(MU320d_BizfLQ22ndK,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode),style:{width:\"100%\"},variant:\"pwSiwcCrr\",width:\"100%\"})})})})})})},idzfLQ22ndK);})})})})})})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-bu1fzc\",\"data-framer-name\":\"Cta Section \",name:\"Cta Section \",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-5bzyav\",\"data-framer-name\":\"Container\",name:\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-k3ht0u\",children:[isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11damr1 hidden-1u37nls hidden-1f9pa9p\",\"data-framer-name\":\"Section Shape\",name:\"Section Shape\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:false,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ymap68\",\"data-framer-name\":\"Primary Shape\",name:\"Primary Shape\",style:{rotate:-6,transformPerspective:1200}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-stdbau\",\"data-framer-name\":\"Secondary Shape\",name:\"Secondary Shape\",style:{rotate:-2}})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nh3wig\",\"data-framer-name\":\"CTA Content Row\",name:\"CTA Content Row\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-746x8q\",\"data-styles-preset\":\"ASc6PGhfW\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a7f7ae5f-a181-442b-8823-be0ca1b170fe, rgb(255, 255, 255))\"},children:\"Are you ready to start your IP journey?\"})}),className:\"framer-4fe8fv\",\"data-framer-name\":\"Cta Title\",fonts:[\"Inter\"],name:\"Cta Title\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1c5oc9b\",\"data-framer-name\":\"Cta Button Wrapper\",name:\"Cta Button Wrapper\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dy0fYB0Cl:{width:\"max(min(min(100vw, 520px) - 48px, 400px) - 40px, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:67,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1d9txgi-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dy0fYB0Cl:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Button,{A2dWUqqQh:\"Get started\",DnytOe0Z8:\"https://iptools.inngot.com/ui/login\",height:\"100%\",id:\"dEC13rXS3\",layoutId:\"dEC13rXS3\",N5FKWNwKs:false,oSfNN4wFr:false,v8ArQOg02:false,variant:\"J3o36duF5\",width:\"100%\"})})})})})})]})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1811txa\",\"data-framer-name\":\"Footer Section\",name:\"Footer Section\",children:[isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-u2l956 hidden-1u37nls\",\"data-framer-name\":\"Background\",name:\"Background\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:831,width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-12platg-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dy0fYB0Cl:{variant:\"kxoDYYiW1\"},jFbjbc2OP:{variant:\"ABjQAv1ys\"},zNNVKQiLJ:{variant:\"KW38YW7L6\"}},children:/*#__PURE__*/_jsx(FooterVersion2Copyright,{height:\"100%\",id:\"QazmcP6xJ\",layoutId:\"QazmcP6xJ\",style:{width:\"100%\"},variant:\"AiH3wYM6P\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-0SuWP { background: white; }`,\".framer-0SuWP.framer-1xgiol6, .framer-0SuWP .framer-1xgiol6 { display: block; }\",\".framer-0SuWP.framer-1wbfdrc { align-content: center; align-items: center; background-color: #ffffff; 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-0SuWP .framer-1c50m5j-container { flex: none; height: auto; left: 50%; position: absolute; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-0SuWP .framer-1da1ghp { 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: 140px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-0SuWP .framer-1mxqioy, .framer-0SuWP .framer-17rmclw { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1356px; overflow: visible; padding: 0px 30px 0px 30px; position: relative; width: 1px; }\",\".framer-0SuWP .framer-nv1qcq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-0SuWP .framer-13bh4w { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-0SuWP .framer-5wbia9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 918px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-0SuWP .framer-gfvx4n { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-0SuWP .framer-1hf9ztk { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 61%; word-break: break-word; word-wrap: break-word; }\",\".framer-0SuWP .framer-1rs4f36 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 423px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-0SuWP .framer-18mvmhc, .framer-0SuWP .framer-1c5oc9b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-0SuWP .framer-1i5q4l2-container, .framer-0SuWP .framer-mhr40j-container, .framer-0SuWP .framer-130znqw-container, .framer-0SuWP .framer-1a7ai15-container, .framer-0SuWP .framer-dp9z7j-container, .framer-0SuWP .framer-1hkl5a2-container, .framer-0SuWP .framer-1o71apw-container, .framer-0SuWP .framer-nubb4b-container, .framer-0SuWP .framer-13gr1ks-container, .framer-0SuWP .framer-1d9txgi-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-0SuWP .framer-1omeu7t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-0SuWP .framer-1tr2b6u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-0SuWP .framer-td19dw, .framer-0SuWP .framer-t4k0jr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 19px; height: min-content; justify-content: center; max-width: 1356px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-0SuWP .framer-dvemoj-container, .framer-0SuWP .framer-mxdtga-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-0SuWP .framer-1ltkpgr { aspect-ratio: 1.8227848101265822 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 711px); overflow: visible; position: relative; width: 100%; z-index: 3; }\",\".framer-0SuWP .framer-io5lpe { flex: none; height: 729px; left: 0px; overflow: visible; position: absolute; right: 0px; top: -20px; z-index: 3; }\",\".framer-0SuWP .framer-1rolapd { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; bottom: -9px; flex: none; height: 711px; left: calc(50.00000000000002% - 1296px / 2); overflow: hidden; position: absolute; width: 1296px; will-change: var(--framer-will-change-override, transform); }\",\".framer-0SuWP .framer-6b3841, .framer-0SuWP .framer-1ey30ha { align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: var(--token-45ecf4b1-5f2a-4491-910a-fe4f9864bffe, #ebeb41); border-bottom-left-radius: 500px; border-bottom-right-radius: 500px; border-top-left-radius: 500px; border-top-right-radius: 500px; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 146px); justify-content: center; left: 50%; overflow: hidden; padding: 0px; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 146px; will-change: var(--framer-will-change-override, transform); }\",\".framer-0SuWP .framer-1y8uad0, .framer-0SuWP .framer-1vcytob { background-color: rgba(12, 30, 27, 0.94); inset: 0px; position: fixed; user-select: none; z-index: 10; }\",\".framer-0SuWP .framer-nymrqu-container { flex: none; height: 551px; left: calc(50.00000000000002% - 980px / 2); position: fixed; top: 123px; width: 980px; z-index: 10; }\",\".framer-0SuWP .framer-o4uvtl-container, .framer-0SuWP .framer-141uwkf-container { aspect-ratio: 1 / 1; cursor: pointer; flex: none; height: var(--framer-aspect-ratio-supported, 32px); position: fixed; right: 40px; top: 40px; width: 32px; z-index: 10; }\",\".framer-0SuWP .framer-pd3a2z-container { aspect-ratio: 1.778584392014519 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 174px); left: 15px; position: fixed; top: 242px; width: 310px; z-index: 10; }\",\".framer-0SuWP .framer-s0roe1-container, .framer-0SuWP .framer-yefamm-container { aspect-ratio: 0.8571428571428571 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 63px); position: relative; width: 35%; }\",\".framer-0SuWP .framer-jn35iv-container { aspect-ratio: 1.7857142857142858 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 554px); left: 50%; position: fixed; top: 50%; transform: translate(-50%, -50%); width: 990px; z-index: 10; }\",\".framer-0SuWP .framer-am8ps8 { background-color: var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, #0c1e1b); bottom: -4px; flex: none; height: 360px; left: calc(50.00000000000002% - 100% / 2); position: absolute; width: 100%; z-index: 0; }\",\".framer-0SuWP .framer-alotfk-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-0SuWP .framer-231hos { align-content: center; align-items: center; background-color: var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, #0c1e1b); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 0px 130px 0px; position: relative; width: 100%; }\",\".framer-0SuWP .framer-yma6l5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 77px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-0SuWP .framer-1odx8wp { flex: none; height: auto; max-width: 725px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-0SuWP .framer-150nt2b { display: grid; flex: none; gap: 70px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-0SuWP .framer-1s8fi1d-container, .framer-0SuWP .framer-1y1f7ft-container, .framer-0SuWP .framer-81d3xm-container, .framer-0SuWP .framer-1nvnsrh-container, .framer-0SuWP .framer-2r3rn2-container, .framer-0SuWP .framer-zin8iu-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-0SuWP .framer-18pamk8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 96px 0px 144px 0px; position: relative; width: 100%; }\",\".framer-0SuWP .framer-1s2koi0, .framer-0SuWP .framer-5bzyav { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1356px; overflow: visible; padding: 0px 30px 0px 30px; position: relative; width: 100%; }\",\".framer-0SuWP .framer-11b8qc7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 66px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-0SuWP .framer-19pixci { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-0SuWP .framer-u17185 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-0SuWP .framer-112co4o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-0SuWP .framer-13zxqg4 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-0SuWP .framer-91jixi { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: wrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-0SuWP .framer-1igmfh5-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-0SuWP .framer-bu1fzc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-0SuWP .framer-k3ht0u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 147px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-0SuWP .framer-11damr1 { border-bottom-left-radius: 59px; border-bottom-right-radius: 59px; border-top-left-radius: 59px; border-top-right-radius: 59px; flex: none; height: 261px; left: calc(48.37962962962965% - 96.83641975308642% / 2); overflow: visible; position: absolute; top: 16px; width: 97%; z-index: 1; }\",\".framer-0SuWP .framer-ymap68 { background-color: var(--token-45ecf4b1-5f2a-4491-910a-fe4f9864bffe, #ebeb41); border-top-left-radius: 50px; border-top-right-radius: 50px; flex: none; height: 106px; overflow: hidden; position: absolute; right: 15px; top: 66px; width: 82%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-0SuWP .framer-stdbau { background-color: var(--token-f512b2c0-ccff-4c1c-81ef-5b1a68ff0d48, #015941); border-top-left-radius: 36px; border-top-right-radius: 36px; flex: none; height: 153px; left: calc(51.63346613545819% - 103.34661354581674% / 2); overflow: hidden; position: absolute; top: calc(54.78927203065136% - 153px / 2); width: 103%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",'.framer-0SuWP .framer-1nh3wig { align-content: center; align-items: center; background: linear-gradient(180deg, var(--token-f512b2c0-ccff-4c1c-81ef-5b1a68ff0d48, #224f8a) /* {\"name\":\"Primary\"} */ 0%, var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(9, 32, 61)) /* {\"name\":\"Neutral / 07\"} */ 100%); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 74px 0px 80px 0px; position: relative; width: 100%; z-index: 3; }',\".framer-0SuWP .framer-4fe8fv { flex: none; height: auto; max-width: 890px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-0SuWP .framer-1811txa { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 20px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-0SuWP .framer-u2l956 { background-color: var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, #09203d); border-top-left-radius: 24px; border-top-right-radius: 24px; bottom: 131px; flex: none; height: 844px; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-0SuWP .framer-12platg-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-0SuWP.framer-1wbfdrc, .framer-0SuWP .framer-1da1ghp, .framer-0SuWP .framer-1mxqioy, .framer-0SuWP .framer-nv1qcq, .framer-0SuWP .framer-13bh4w, .framer-0SuWP .framer-5wbia9, .framer-0SuWP .framer-1rs4f36, .framer-0SuWP .framer-18mvmhc, .framer-0SuWP .framer-1omeu7t, .framer-0SuWP .framer-1tr2b6u, .framer-0SuWP .framer-td19dw, .framer-0SuWP .framer-t4k0jr, .framer-0SuWP .framer-6b3841, .framer-0SuWP .framer-1ey30ha, .framer-0SuWP .framer-231hos, .framer-0SuWP .framer-17rmclw, .framer-0SuWP .framer-yma6l5, .framer-0SuWP .framer-18pamk8, .framer-0SuWP .framer-1s2koi0, .framer-0SuWP .framer-11b8qc7, .framer-0SuWP .framer-19pixci, .framer-0SuWP .framer-112co4o, .framer-0SuWP .framer-13zxqg4, .framer-0SuWP .framer-91jixi, .framer-0SuWP .framer-bu1fzc, .framer-0SuWP .framer-5bzyav, .framer-0SuWP .framer-k3ht0u, .framer-0SuWP .framer-1nh3wig, .framer-0SuWP .framer-1c5oc9b, .framer-0SuWP .framer-1811txa { gap: 0px; } .framer-0SuWP.framer-1wbfdrc > *, .framer-0SuWP .framer-1mxqioy > *, .framer-0SuWP .framer-17rmclw > *, .framer-0SuWP .framer-18pamk8 > *, .framer-0SuWP .framer-1s2koi0 > *, .framer-0SuWP .framer-bu1fzc > *, .framer-0SuWP .framer-5bzyav > *, .framer-0SuWP .framer-1811txa > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-0SuWP.framer-1wbfdrc > :first-child, .framer-0SuWP .framer-1mxqioy > :first-child, .framer-0SuWP .framer-nv1qcq > :first-child, .framer-0SuWP .framer-13bh4w > :first-child, .framer-0SuWP .framer-5wbia9 > :first-child, .framer-0SuWP .framer-1omeu7t > :first-child, .framer-0SuWP .framer-1tr2b6u > :first-child, .framer-0SuWP .framer-17rmclw > :first-child, .framer-0SuWP .framer-yma6l5 > :first-child, .framer-0SuWP .framer-18pamk8 > :first-child, .framer-0SuWP .framer-1s2koi0 > :first-child, .framer-0SuWP .framer-11b8qc7 > :first-child, .framer-0SuWP .framer-bu1fzc > :first-child, .framer-0SuWP .framer-5bzyav > :first-child, .framer-0SuWP .framer-k3ht0u > :first-child, .framer-0SuWP .framer-1nh3wig > :first-child, .framer-0SuWP .framer-1811txa > :first-child { margin-top: 0px; } .framer-0SuWP.framer-1wbfdrc > :last-child, .framer-0SuWP .framer-1mxqioy > :last-child, .framer-0SuWP .framer-nv1qcq > :last-child, .framer-0SuWP .framer-13bh4w > :last-child, .framer-0SuWP .framer-5wbia9 > :last-child, .framer-0SuWP .framer-1omeu7t > :last-child, .framer-0SuWP .framer-1tr2b6u > :last-child, .framer-0SuWP .framer-17rmclw > :last-child, .framer-0SuWP .framer-yma6l5 > :last-child, .framer-0SuWP .framer-18pamk8 > :last-child, .framer-0SuWP .framer-1s2koi0 > :last-child, .framer-0SuWP .framer-11b8qc7 > :last-child, .framer-0SuWP .framer-bu1fzc > :last-child, .framer-0SuWP .framer-5bzyav > :last-child, .framer-0SuWP .framer-k3ht0u > :last-child, .framer-0SuWP .framer-1nh3wig > :last-child, .framer-0SuWP .framer-1811txa > :last-child { margin-bottom: 0px; } .framer-0SuWP .framer-1da1ghp > *, .framer-0SuWP .framer-18mvmhc > *, .framer-0SuWP .framer-6b3841 > *, .framer-0SuWP .framer-1ey30ha > *, .framer-0SuWP .framer-231hos > *, .framer-0SuWP .framer-19pixci > *, .framer-0SuWP .framer-1c5oc9b > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-0SuWP .framer-1da1ghp > :first-child, .framer-0SuWP .framer-1rs4f36 > :first-child, .framer-0SuWP .framer-18mvmhc > :first-child, .framer-0SuWP .framer-td19dw > :first-child, .framer-0SuWP .framer-t4k0jr > :first-child, .framer-0SuWP .framer-6b3841 > :first-child, .framer-0SuWP .framer-1ey30ha > :first-child, .framer-0SuWP .framer-231hos > :first-child, .framer-0SuWP .framer-19pixci > :first-child, .framer-0SuWP .framer-112co4o > :first-child, .framer-0SuWP .framer-13zxqg4 > :first-child, .framer-0SuWP .framer-91jixi > :first-child, .framer-0SuWP .framer-1c5oc9b > :first-child { margin-left: 0px; } .framer-0SuWP .framer-1da1ghp > :last-child, .framer-0SuWP .framer-1rs4f36 > :last-child, .framer-0SuWP .framer-18mvmhc > :last-child, .framer-0SuWP .framer-td19dw > :last-child, .framer-0SuWP .framer-t4k0jr > :last-child, .framer-0SuWP .framer-6b3841 > :last-child, .framer-0SuWP .framer-1ey30ha > :last-child, .framer-0SuWP .framer-231hos > :last-child, .framer-0SuWP .framer-19pixci > :last-child, .framer-0SuWP .framer-112co4o > :last-child, .framer-0SuWP .framer-13zxqg4 > :last-child, .framer-0SuWP .framer-91jixi > :last-child, .framer-0SuWP .framer-1c5oc9b > :last-child { margin-right: 0px; } .framer-0SuWP .framer-nv1qcq > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-0SuWP .framer-13bh4w > *, .framer-0SuWP .framer-1nh3wig > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-0SuWP .framer-5wbia9 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-0SuWP .framer-1rs4f36 > *, .framer-0SuWP .framer-112co4o > *, .framer-0SuWP .framer-13zxqg4 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-0SuWP .framer-1omeu7t > *, .framer-0SuWP .framer-k3ht0u > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-0SuWP .framer-1tr2b6u > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-0SuWP .framer-td19dw > *, .framer-0SuWP .framer-t4k0jr > * { margin: 0px; margin-left: calc(19px / 2); margin-right: calc(19px / 2); } .framer-0SuWP .framer-yma6l5 > * { margin: 0px; margin-bottom: calc(77px / 2); margin-top: calc(77px / 2); } .framer-0SuWP .framer-11b8qc7 > * { margin: 0px; margin-bottom: calc(66px / 2); margin-top: calc(66px / 2); } .framer-0SuWP .framer-91jixi > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } }\",`@media (min-width: 1200px) and (max-width: 1439px) { .${metadata.bodyClassName}-framer-0SuWP { background: white; } .framer-0SuWP.framer-1wbfdrc { width: 1200px; } .framer-0SuWP .framer-1da1ghp { gap: 0px; } .framer-0SuWP .framer-1mxqioy, .framer-0SuWP .framer-17rmclw, .framer-0SuWP .framer-1s2koi0 { max-width: 1000px; } .framer-0SuWP .framer-nv1qcq { gap: 65px; } .framer-0SuWP .framer-5wbia9 { max-width: 768px; } .framer-0SuWP .framer-1ltkpgr { height: var(--framer-aspect-ratio-supported, 407px); width: 79%; } .framer-0SuWP .framer-io5lpe { height: 401px; } .framer-0SuWP .framer-1rolapd { aspect-ratio: 1.8213399503722085 / 1; bottom: -3px; height: 100%; left: 50%; transform: translateX(-50%); width: var(--framer-aspect-ratio-supported, 727px); } .framer-0SuWP .framer-6b3841, .framer-0SuWP .framer-1ey30ha { height: var(--framer-aspect-ratio-supported, 100px); width: 100px; } .framer-0SuWP .framer-s0roe1-container { height: var(--framer-aspect-ratio-supported, 43px); } .framer-0SuWP .framer-yefamm-container { height: var(--framer-aspect-ratio-supported, 44px); } .framer-0SuWP .framer-am8ps8 { aspect-ratio: 3.8192307692307694 / 1; height: var(--framer-aspect-ratio-supported, 314px); left: 50%; transform: translateX(-50%); width: 100%; } .framer-0SuWP .framer-231hos { gap: 0px; padding: 100px 0px 100px 0px; } .framer-0SuWP .framer-18pamk8 { padding: 90px 0px 100px 0px; } .framer-0SuWP .framer-11b8qc7 { gap: 60px; } .framer-0SuWP .framer-5bzyav { gap: 65px; max-width: 1000px; } .framer-0SuWP .framer-stdbau { top: calc(57.83132530120484% - 153px / 2); } .framer-0SuWP .framer-1nh3wig { padding: 80px 0px 80px 0px; z-index: 5; } .framer-0SuWP .framer-4fe8fv { max-width: 800px; } .framer-0SuWP .framer-1811txa { padding: 0px; } .framer-0SuWP .framer-u2l956 { border-top-left-radius: 36px; border-top-right-radius: 36px; bottom: 160px; height: 740px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-0SuWP .framer-1da1ghp, .framer-0SuWP .framer-nv1qcq, .framer-0SuWP .framer-231hos, .framer-0SuWP .framer-11b8qc7, .framer-0SuWP .framer-5bzyav { gap: 0px; } .framer-0SuWP .framer-1da1ghp > *, .framer-0SuWP .framer-231hos > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-0SuWP .framer-1da1ghp > :first-child, .framer-0SuWP .framer-231hos > :first-child { margin-left: 0px; } .framer-0SuWP .framer-1da1ghp > :last-child, .framer-0SuWP .framer-231hos > :last-child { margin-right: 0px; } .framer-0SuWP .framer-nv1qcq > *, .framer-0SuWP .framer-5bzyav > * { margin: 0px; margin-bottom: calc(65px / 2); margin-top: calc(65px / 2); } .framer-0SuWP .framer-nv1qcq > :first-child, .framer-0SuWP .framer-11b8qc7 > :first-child, .framer-0SuWP .framer-5bzyav > :first-child { margin-top: 0px; } .framer-0SuWP .framer-nv1qcq > :last-child, .framer-0SuWP .framer-11b8qc7 > :last-child, .framer-0SuWP .framer-5bzyav > :last-child { margin-bottom: 0px; } .framer-0SuWP .framer-11b8qc7 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } }}`,`@media (min-width: 768px) and (max-width: 1199px) { .${metadata.bodyClassName}-framer-0SuWP { background: white; } .framer-0SuWP.framer-1wbfdrc { width: 768px; } .framer-0SuWP .framer-1mxqioy, .framer-0SuWP .framer-17rmclw, .framer-0SuWP .framer-1s2koi0 { max-width: 720px; padding: 0px 24px 0px 24px; } .framer-0SuWP .framer-nv1qcq, .framer-0SuWP .framer-yma6l5, .framer-0SuWP .framer-11b8qc7 { gap: 40px; } .framer-0SuWP .framer-1hf9ztk { width: 70%; } .framer-0SuWP .framer-1rs4f36 { gap: 20px; } .framer-0SuWP .framer-1ltkpgr { height: var(--framer-aspect-ratio-supported, 110px); } .framer-0SuWP .framer-io5lpe { bottom: 0px; height: unset; } .framer-0SuWP .framer-1rolapd { bottom: 0px; height: 96%; left: calc(50.00000000000002% - 660px / 2); width: 660px; } .framer-0SuWP .framer-6b3841, .framer-0SuWP .framer-1ey30ha { height: var(--framer-aspect-ratio-supported, 70px); width: 70px; } .framer-0SuWP .framer-nymrqu-container { aspect-ratio: 1.778584392014519 / 1; height: var(--framer-aspect-ratio-supported, 377px); left: 50%; top: 50%; transform: translate(-50%, -50%); width: 671px; } .framer-0SuWP .framer-s0roe1-container, .framer-0SuWP .framer-yefamm-container { height: var(--framer-aspect-ratio-supported, 233px); } .framer-0SuWP .framer-am8ps8 { height: 180px; } .framer-0SuWP .framer-231hos, .framer-0SuWP .framer-1nh3wig { padding: 80px 0px 80px 0px; } .framer-0SuWP .framer-150nt2b { gap: 24px; grid-template-columns: repeat(2, minmax(200px, 1fr)); } .framer-0SuWP .framer-18pamk8 { padding: 40px 0px 80px 0px; } .framer-0SuWP .framer-112co4o { flex-wrap: wrap; } .framer-0SuWP .framer-13zxqg4 { align-content: unset; align-items: unset; display: grid; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(200px, 1fr)); justify-content: center; } .framer-0SuWP .framer-91jixi { align-self: start; flex: none; height: 100%; justify-self: start; width: 100%; } .framer-0SuWP .framer-bu1fzc { padding: 0px 0px 70px 0px; } .framer-0SuWP .framer-5bzyav { gap: 40px; max-width: 720px; padding: 0px 24px 0px 24px; } .framer-0SuWP .framer-k3ht0u, .framer-0SuWP .framer-1811txa { padding: 0px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-0SuWP .framer-nv1qcq, .framer-0SuWP .framer-1rs4f36, .framer-0SuWP .framer-yma6l5, .framer-0SuWP .framer-150nt2b, .framer-0SuWP .framer-11b8qc7, .framer-0SuWP .framer-13zxqg4, .framer-0SuWP .framer-5bzyav { gap: 0px; } .framer-0SuWP .framer-nv1qcq > *, .framer-0SuWP .framer-yma6l5 > *, .framer-0SuWP .framer-11b8qc7 > *, .framer-0SuWP .framer-5bzyav > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-0SuWP .framer-nv1qcq > :first-child, .framer-0SuWP .framer-yma6l5 > :first-child, .framer-0SuWP .framer-11b8qc7 > :first-child, .framer-0SuWP .framer-5bzyav > :first-child { margin-top: 0px; } .framer-0SuWP .framer-nv1qcq > :last-child, .framer-0SuWP .framer-yma6l5 > :last-child, .framer-0SuWP .framer-11b8qc7 > :last-child, .framer-0SuWP .framer-5bzyav > :last-child { margin-bottom: 0px; } .framer-0SuWP .framer-1rs4f36 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-0SuWP .framer-1rs4f36 > :first-child { margin-left: 0px; } .framer-0SuWP .framer-1rs4f36 > :last-child { margin-right: 0px; } .framer-0SuWP .framer-150nt2b > *, .framer-0SuWP .framer-150nt2b > :first-child, .framer-0SuWP .framer-150nt2b > :last-child, .framer-0SuWP .framer-13zxqg4 > *, .framer-0SuWP .framer-13zxqg4 > :first-child, .framer-0SuWP .framer-13zxqg4 > :last-child { margin: 0px; } }}`,`@media (max-width: 767px) { .${metadata.bodyClassName}-framer-0SuWP { background: white; } .framer-0SuWP.framer-1wbfdrc { width: 390px; } .framer-0SuWP .framer-1da1ghp { gap: 0px; padding: 120px 0px 0px 0px; } .framer-0SuWP .framer-1mxqioy, .framer-0SuWP .framer-17rmclw { justify-content: center; max-width: 520px; padding: 0px 24px 0px 24px; } .framer-0SuWP .framer-nv1qcq { gap: 40px; } .framer-0SuWP .framer-13bh4w { gap: 24px; max-width: 400px; } .framer-0SuWP .framer-5wbia9, .framer-0SuWP .framer-1odx8wp, .framer-0SuWP .framer-4fe8fv { max-width: unset; } .framer-0SuWP .framer-1hf9ztk, .framer-0SuWP .framer-18mvmhc, .framer-0SuWP .framer-1omeu7t, .framer-0SuWP .framer-mhr40j-container, .framer-0SuWP .framer-1c5oc9b { width: 100%; } .framer-0SuWP .framer-1rs4f36 { flex-direction: column; gap: 18px; width: 100%; } .framer-0SuWP .framer-1i5q4l2-container, .framer-0SuWP .framer-1d9txgi-container { flex: 1 0 0px; width: 1px; } .framer-0SuWP .framer-td19dw, .framer-0SuWP .framer-t4k0jr { flex-direction: column; gap: 12px; max-width: unset; } .framer-0SuWP .framer-1ltkpgr { height: var(--framer-aspect-ratio-supported, 188px); width: 342px; } .framer-0SuWP .framer-io5lpe { height: 100%; right: unset; top: 0px; width: 100%; } .framer-0SuWP .framer-1rolapd { bottom: 0px; height: 100%; left: calc(50.00000000000002% - 100% / 2); width: 100%; } .framer-0SuWP .framer-6b3841, .framer-0SuWP .framer-1ey30ha { height: var(--framer-aspect-ratio-supported, 40px); width: 40px; } .framer-0SuWP .framer-pd3a2z-container { height: var(--framer-aspect-ratio-supported, 200px); left: 50%; top: 50%; transform: translate(-50%, -50%); width: 356px; } .framer-0SuWP .framer-s0roe1-container, .framer-0SuWP .framer-yefamm-container { height: var(--framer-aspect-ratio-supported, 233px); } .framer-0SuWP .framer-am8ps8 { bottom: -5px; height: 100px; } .framer-0SuWP .framer-231hos { overflow: visible; padding: 60px 0px 60px 0px; } .framer-0SuWP .framer-yma6l5 { gap: 30px; max-width: 400px; } .framer-0SuWP .framer-150nt2b { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; max-width: 400px; } .framer-0SuWP .framer-1s8fi1d-container, .framer-0SuWP .framer-1y1f7ft-container, .framer-0SuWP .framer-81d3xm-container, .framer-0SuWP .framer-1nvnsrh-container, .framer-0SuWP .framer-2r3rn2-container, .framer-0SuWP .framer-zin8iu-container { align-self: unset; height: auto; } .framer-0SuWP .framer-18pamk8 { padding: 30px 0px 60px 0px; } .framer-0SuWP .framer-1s2koi0 { align-content: center; align-items: center; justify-content: center; max-width: 520px; padding: 0px 24px 0px 24px; } .framer-0SuWP .framer-11b8qc7 { gap: 30px; max-width: 400px; overflow: visible; } .framer-0SuWP .framer-112co4o { flex-direction: column; justify-content: center; } .framer-0SuWP .framer-13zxqg4 { flex: none; flex-direction: column; width: 100%; } .framer-0SuWP .framer-91jixi { flex: none; width: 100%; } .framer-0SuWP .framer-5bzyav { gap: 30px; max-width: 520px; padding: 0px 24px 0px 24px; } .framer-0SuWP .framer-k3ht0u { padding: 0px; } .framer-0SuWP .framer-1nh3wig { gap: 30px; max-width: 400px; padding: 60px 20px 60px 20px; z-index: 2; } .framer-0SuWP .framer-1811txa { padding: 40px 0px 0px 0px; } .framer-0SuWP .framer-u2l956 { bottom: 0px; height: 170px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-0SuWP .framer-1da1ghp, .framer-0SuWP .framer-nv1qcq, .framer-0SuWP .framer-13bh4w, .framer-0SuWP .framer-1rs4f36, .framer-0SuWP .framer-td19dw, .framer-0SuWP .framer-t4k0jr, .framer-0SuWP .framer-yma6l5, .framer-0SuWP .framer-150nt2b, .framer-0SuWP .framer-11b8qc7, .framer-0SuWP .framer-112co4o, .framer-0SuWP .framer-13zxqg4, .framer-0SuWP .framer-5bzyav, .framer-0SuWP .framer-1nh3wig { gap: 0px; } .framer-0SuWP .framer-1da1ghp > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-0SuWP .framer-1da1ghp > :first-child { margin-left: 0px; } .framer-0SuWP .framer-1da1ghp > :last-child { margin-right: 0px; } .framer-0SuWP .framer-nv1qcq > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-0SuWP .framer-nv1qcq > :first-child, .framer-0SuWP .framer-13bh4w > :first-child, .framer-0SuWP .framer-1rs4f36 > :first-child, .framer-0SuWP .framer-td19dw > :first-child, .framer-0SuWP .framer-t4k0jr > :first-child, .framer-0SuWP .framer-yma6l5 > :first-child, .framer-0SuWP .framer-150nt2b > :first-child, .framer-0SuWP .framer-11b8qc7 > :first-child, .framer-0SuWP .framer-112co4o > :first-child, .framer-0SuWP .framer-13zxqg4 > :first-child, .framer-0SuWP .framer-5bzyav > :first-child, .framer-0SuWP .framer-1nh3wig > :first-child { margin-top: 0px; } .framer-0SuWP .framer-nv1qcq > :last-child, .framer-0SuWP .framer-13bh4w > :last-child, .framer-0SuWP .framer-1rs4f36 > :last-child, .framer-0SuWP .framer-td19dw > :last-child, .framer-0SuWP .framer-t4k0jr > :last-child, .framer-0SuWP .framer-yma6l5 > :last-child, .framer-0SuWP .framer-150nt2b > :last-child, .framer-0SuWP .framer-11b8qc7 > :last-child, .framer-0SuWP .framer-112co4o > :last-child, .framer-0SuWP .framer-13zxqg4 > :last-child, .framer-0SuWP .framer-5bzyav > :last-child, .framer-0SuWP .framer-1nh3wig > :last-child { margin-bottom: 0px; } .framer-0SuWP .framer-13bh4w > *, .framer-0SuWP .framer-150nt2b > *, .framer-0SuWP .framer-112co4o > *, .framer-0SuWP .framer-13zxqg4 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-0SuWP .framer-1rs4f36 > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-0SuWP .framer-td19dw > *, .framer-0SuWP .framer-t4k0jr > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-0SuWP .framer-yma6l5 > *, .framer-0SuWP .framer-11b8qc7 > *, .framer-0SuWP .framer-5bzyav > *, .framer-0SuWP .framer-1nh3wig > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5883\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"jFbjbc2OP\":{\"layout\":[\"fixed\",\"auto\"]},\"zNNVKQiLJ\":{\"layout\":[\"fixed\",\"auto\"]},\"dy0fYB0Cl\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FrameruqWR3m2Gf=withCSS(Component,css,\"framer-0SuWP\");export default FrameruqWR3m2Gf;FrameruqWR3m2Gf.displayName=\"Home 5\";FrameruqWR3m2Gf.defaultProps={height:5883,width:1440};addFonts(FrameruqWR3m2Gf,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Archivo\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/archivo/v19/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTNDNp9R1oJ0vyVQ.woff2\",weight:\"400\"}]},...HeaderFonts,...ButtonFonts,...ListItemFonts,...LogoTicker4Fonts,...YouTubeFonts,...FeatherFonts,...MaterialFonts,...VideoFonts,...ServiceWidgetFonts,...WorkWithUsNestedComponentFonts,...BlogCardFonts,...FooterVersion2CopyrightFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameruqWR3m2Gf\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"5883\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jFbjbc2OP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zNNVKQiLJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dy0fYB0Cl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerResponsiveScreen\":\"\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "progress", "objectFit", "backgroundColor", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "posterEnabled", "startTimeProp", "volume", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "groupsRegex", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "TickerFonts", "getFonts", "Ticker", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "ComponentViewportProvider", "Ticker", "Image2", "css", "FramerDYRGENCHx", "withCSS", "DYRGENCHx_default", "addFonts", "TickerFonts", "ButtonFonts", "getFonts", "n2KScAQCD_default", "MotionDivWithFX", "withFX", "motion", "ImageWithFX", "Image2", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "animation1", "transition3", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "router", "useRouter", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "RichText2", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "getLoadingLazyAtYPosition", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "css", "FramerA6xtsIllB", "withCSS", "A6xtsIllB_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "TabFonts", "getFonts", "UBt3Wxz_s_default", "WorkWithUsContentSectionFonts", "A6xtsIllB_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "xLLc2fhGkcl5ijs", "args", "xLLc2fhGk1i947w6", "xLLc2fhGkph5h1c", "xLLc2fhGkishnkd", "xLLc2fhGkjq9thk", "xLLc2fhGks572dw", "xLLc2fhGkf8q31f", "xLLc2fhGk19m82o7", "xLLc2fhGkx3m60j", "xLLc2fhGkjedqsr", "xLLc2fhGk1ha59wr", "xLLc2fhGk1z0mmtl", "xLLc2fhGkkxmj4v", "xLLc2fhGk1bg6axv", "xLLc2fhGk1sxbhb7", "xLLc2fhGk1rxgqpv", "xLLc2fhGk1qcr96m", "xLLc2fhGkitk2vh", "xLLc2fhGk6bnthw", "xLLc2fhGk105zo36", "xLLc2fhGk6o8lyb", "xLLc2fhGkdip17x", "xLLc2fhGk1lctmjf", "xLLc2fhGkljrex0", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "css", "FramerX1PuSMi_O", "withCSS", "X1PuSMi_O_default", "addPropertyControls", "ControlType", "addFonts", "HeaderFonts", "getFonts", "EH90VW7t9_default", "RichTextWithOptimizedAppearEffect", "withOptimizedAppearEffect", "RichText2", "ButtonFonts", "n2KScAQCD_default", "MotionDivWithOptimizedAppearEffect", "motion", "ListItemFonts", "NeecfOwmp_default", "LogoTicker4Fonts", "DYRGENCHx_default", "YouTubeFonts", "Youtube", "FeatherFonts", "Icon", "MaterialFonts", "VideoFonts", "Video", "ContainerWithFX", "withFX", "Container", "RichTextWithFX", "ServiceWidgetFonts", "X7oGJ5w46_default", "WorkWithUsNestedComponentFonts", "X1PuSMi_O_default", "BlogCardFonts", "RSBmZjsRP_default", "MotionDivWithFX", "FooterVersion2CopyrightFonts", "XZeB9nS9X_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "transition3", "animation3", "transition4", "animation4", "transition5", "animation5", "transformTemplate1", "_", "t", "transformTemplate2", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "animation6", "animation7", "transition6", "animation8", "animation9", "toResponsiveImage", "value", "toDateString", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "locale", "QueryData", "query", "pageSize", "data", "useQueryData", "animation10", "transition7", "animation11", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "gfKaOWmJfzfLQ22ndK", "MU320d_BizfLQ22ndK", "NRLFSyICNzfLQ22ndK", "idzfLQ22ndK", "B3oo9n5fNzfLQ22ndK", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapwelu7j", "overlay", "paginationInfo", "args", "onClick1wvko5h", "ref1", "pe", "router", "useRouter", "isDisplayed", "isDisplayed1", "activeLocaleCode", "useLocaleCode", "isDisplayed2", "isDisplayed3", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "cx", "ComponentViewportProvider", "PropertyOverrides2", "x", "ResolveLinks", "resolvedLinks", "Image2", "l", "AnimatePresence", "Ga", "overlay1", "ChildrenCanSuspend", "sevKWP9SD_default", "collection", "loadMore", "i", "PathVariablesContext", "css", "FrameruqWR3m2Gf", "withCSS", "uqWR3m2Gf_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
