{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/Z4QJ2YpzpVnWRfR6Ccgg/Video.js", "ssg:https://framerusercontent.com/modules/woEyA7aGsHXoke5kFOIE/j5Rwipv3AxDcsXlPnDYW/Counter1.js", "ssg:https://framerusercontent.com/modules/QBD1IL3vFv9vwBpIfLJt/TEFuj9jjWSHpe6q0wEuI/AN6hir0YI.js", "ssg:https://framerusercontent.com/modules/8OSIV23VyJtsCYp1piJh/zdHDVTlUBHc2TCae0qdt/buMRhLPeB.js", "ssg:https://framerusercontent.com/modules/SWno10ksmwhvsegf138X/qhVrgPfgBm1raipX5p2L/CKgLAg4dO.js", "ssg:https://framerusercontent.com/modules/r4HxvuSEPbPeYkzlORrR/yS1zXuEZbCicogJIS6Ox/oLRWJU7BT.js", "ssg:https://framerusercontent.com/modules/PBiJdeW53r8yXSXyrrhx/CgRgjtTlBzudX8RqQHRv/S2T8LPwMP.js", "ssg:https://framerusercontent.com/modules/zM2v9ueLLfUj1wQBFGmX/4swVJq6m20xphgVzn6XM/Tp2B1b1oP.js", "ssg:https://framerusercontent.com/modules/d9k83pUDjxqa4v8eMLyf/sYWzJLiiIsEycSy064qw/PkGGDBbys.js", "ssg:https://framerusercontent.com/modules/NRreZ1hWgi18K6XVIUWV/sAlBCOfBto0RFK6WX5Sf/a_baB0xMT.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const isPlaying=videoRef.current.currentTime>0&&videoRef.current.onplaying&&!videoRef.current.paused&&!videoRef.current.ended&&videoRef.current.readyState>videoRef.current.HAVE_CURRENT_DATA;if(!isPlaying&&videoRef.current&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;videoRef.current.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();},[]);return{play,pause,setProgress};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}/**\n * The Video component has some effects that sync the video element with props\n * like `startTime`, `progress`, etc. React calls these effects whenever these\n * props change. However, it also calls them on the first mount, and this is\n * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n * the video was hydrated, the initial `useEffect` call will reset the video\n * state. To avoid this, we use this flag.\n */let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing:playingProp,muted,playsinline,controls,progress,objectFit,backgroundColor,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,posterEnabled,startTime:startTimeProp,volume,loop}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges){isMountedAndReadyForProgressChanges=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{if(!videoRef.current)return;if(videoRef.current.currentTime<.3)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:autoplayBehavior===\"on-mount\",preload:autoplayBehavior!==\"on-mount\"&&posterEnabled?\"metadata\":\"auto\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";Video.defaultProps={srcType:\"URL\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",srcFile:\"\",posterEnabled:false,controls:false,playing:true,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:\"cover\",backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime:0};const groupsRegex=/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu;function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(groupsRegex)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",placeholder:\"../example.mp4\",hidden(props){return props.srcType===\"Upload\";},description:\"Hosted video file URL. For YouTube, use the YouTube component.\"},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"112\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"200\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useState,useEffect,useRef}from\"react\";import{motion}from\"framer-motion\";import{addPropertyControls,ControlType}from\"framer\";const CounterStyles={container:{display:\"flex\",justifyContent:\"center\",alignItems:\"center\"}};export function Counter(props){const{start,end,speed,gapSize,prefixText,suffixText,prefixFont,suffixFont,prefixColor,suffixColor,loop,decimalSeparatorType,textSize,selectedFont,textColor,startOnViewport,restartOnViewport}=props;const[count,setCount]=useState(start);const[isVisible,setIsVisible]=useState(false);const containerRef=useRef(null);useEffect(()=>{const observer=new IntersectionObserver(entries=>{const entry=entries[0];setIsVisible(entry.isIntersecting);});if(containerRef.current){observer.observe(containerRef.current);}return()=>{if(containerRef.current){observer.unobserve(containerRef.current);}};},[]);useEffect(()=>{const updateCount=()=>{if(count<end){setCount(prevCount=>prevCount+1);}else if(loop){setCount(start);}};if(isVisible||!startOnViewport&&start!==end){const intervalId=setInterval(updateCount,speed);return()=>{clearInterval(intervalId);};}else if(startOnViewport&&isVisible){setCount(start);}},[count,start,end,loop,isVisible,speed,startOnViewport]);useEffect(()=>{if(restartOnViewport&&isVisible){setCount(start)// Restart the animation when re-entering the viewport\n;}},[isVisible,restartOnViewport,start]);const formatNumber=number=>{if(decimalSeparatorType===\"comma\"){return number.toLocaleString(\"en-US\");}else if(decimalSeparatorType===\"period\"){return number.toLocaleString(\"en-US\").replace(/,/g,\".\");}else{return number.toFixed(0);}};return /*#__PURE__*/_jsxs(motion.div,{ref:containerRef,style:{...CounterStyles.container,gap:`${gapSize}px`,flexDirection:\"row\",alignItems:\"center\",fontSize:`${textSize}px`,fontFamily:selectedFont.fontFamily,fontWeight:selectedFont.fontWeight,color:textColor},children:[/*#__PURE__*/_jsx(\"span\",{style:{fontFamily:prefixFont.fontFamily,fontWeight:prefixFont.fontWeight,color:prefixColor},children:prefixText}),/*#__PURE__*/_jsx(\"span\",{children:formatNumber(count)}),/*#__PURE__*/_jsx(\"span\",{style:{fontFamily:suffixFont.fontFamily,fontWeight:suffixFont.fontWeight,color:suffixColor},children:suffixText})]});}Counter.defaultProps={start:0,end:100,speed:100,prefixText:\"\",suffixText:\"\",loop:false,decimalSeparatorType:\"comma\",textSize:36,selectedFont:{fontFamily:\"Inter\",fontWeight:500,systemFont:true},textColor:\"#D3D3D3\",startOnViewport:false};addPropertyControls(Counter,{startOnViewport:{type:ControlType.Boolean,title:\"Viewport\",defaultValue:false,enabledTitle:\"On\",disabledTitle:\"Off\"},restartOnViewport:{type:ControlType.Boolean,title:\"Replay\",defaultValue:false,enabledTitle:\"Yes\",disabledTitle:\"No\"},selectedFont:{title:\"Font\",type:ControlType.Font,defaultValue:{fontFamily:\"Inter\",fontWeight:500,systemFont:true}},textSize:{title:\"Font Size\",type:ControlType.Number,min:8,max:240,step:1},textColor:{type:ControlType.Color,title:\"Font Color\"},start:{type:ControlType.Number,title:\"Start Number\",defaultValue:0,displayStepper:true},end:{type:ControlType.Number,title:\"End Number\",defaultValue:10,displayStepper:true},decimalSeparatorType:{type:ControlType.Enum,title:\"Separator\",defaultValue:\"comma\",options:[\"comma\",\"period\",\"none\"],optionTitles:[\"Comma (1,000)\",\"Decimal (1.000)\",\"None\"]},prefixText:{type:ControlType.String,title:\"Prefix\",defaultValue:\"\"},prefixFont:{title:\"Prefix Font\",type:ControlType.Font,defaultValue:{fontFamily:\"Inter\",fontWeight:500,systemFont:true}},prefixColor:{type:ControlType.Color,title:\"Prefix Color\"},suffixText:{type:ControlType.String,title:\"Suffix\",defaultValue:\"\"},suffixFont:{title:\"Suffix Font\",type:ControlType.Font,defaultValue:{fontFamily:\"Inter\",fontWeight:500,systemFont:true}},suffixColor:{type:ControlType.Color,title:\"Suffix Color\"},gapSize:{type:ControlType.Number,title:\"Gap Size\",defaultValue:4,min:0,max:100,step:4},speed:{type:ControlType.Number,title:\"Speed (ms)\",defaultValue:100,min:0,max:2e3,step:10},loop:{type:ControlType.Boolean,title:\"Loop Animation\",defaultValue:false,enabledTitle:\"On\",disabledTitle:\"Off\",description:\"[Built by Asif Kabir](https://www.youtube.com/channel/UCujbStV-Rp-QGfiHOKA9AvA)\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"Counter\":{\"type\":\"reactComponent\",\"name\":\"Counter\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Counter1.map", "// Generated by Framer (e4277c8)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/jdgMHzwHPdB84EA50wN3/VFFrp58foKwdaNsxWOoI/HvepnQWex.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/lCPyvt39YmoACpiR4CBD/gtJEqVYlr6xEbvQLT4Qw/IH58AJ6Kh.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/W6FULO94YuHXx7BygLlr/q20Nq1kPs0yOP9SJXiJo/iHzCYj3gp.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/iyqowOhK1wpSWPiS5J4N/mpU10skNnd7Y8tP15nIt/KdzRU2Km3.js\";const enabledGestures={FnZppxX3a:{hover:true},FsNvgifWI:{hover:true}};const cycleOrder=[\"FnZppxX3a\",\"FsNvgifWI\"];const serializationHash=\"framer-KQJaz\";const variantClassNames={FnZppxX3a:\"framer-v-11wbnbx\",FsNvgifWI:\"framer-v-1po1iiv\"};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={\"Variant 1\":\"FnZppxX3a\",phone:\"FsNvgifWI\"};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:\"FnZppxX3a\"};};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:\"FnZppxX3a\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"x0cExXjQn\"},openInNewTab:false,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-11wbnbx\",className,classNames)} framer-1ub2ulk`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"FnZppxX3a\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-500f3ef3-f926-4bb4-9708-99d9e4e66b56, rgb(23, 255, 177))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},...addPropertyOverrides({\"FnZppxX3a-hover\":{\"data-framer-name\":undefined},\"FsNvgifWI-hover\":{\"data-framer-name\":undefined},FsNvgifWI:{\"data-framer-name\":\"phone\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-1lax4uw\",\"data-styles-preset\":\"KdzRU2Km3\",children:[/*#__PURE__*/_jsx(motion.strong,{children:\"Explore our offer\"}),\"\\xa0\"]})}),className:\"framer-nwj7pn\",fonts:[\"Inter\",\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"UQ3mc8JoA\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"FnZppxX3a-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-66yd6k\",\"data-styles-preset\":\"iHzCYj3gp\",children:[/*#__PURE__*/_jsx(motion.strong,{children:\"Explore our offer\"}),\"\\xa0\"]})})},\"FsNvgifWI-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-1d1lh48\",\"data-styles-preset\":\"HvepnQWex\",children:[/*#__PURE__*/_jsx(motion.strong,{children:\"Explore our offer\"}),\"\\xa0\"]})})},FsNvgifWI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-3pl5l3\",\"data-styles-preset\":\"IH58AJ6Kh\",children:[/*#__PURE__*/_jsx(motion.strong,{children:\"Explore our offer\"}),\"\\xa0\"]})})}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-KQJaz.framer-1ub2ulk, .framer-KQJaz .framer-1ub2ulk { display: block; }\",\".framer-KQJaz.framer-11wbnbx { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: hidden; padding: 10px 18px 10px 18px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-KQJaz .framer-nwj7pn { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-KQJaz.framer-11wbnbx { gap: 0px; } .framer-KQJaz.framer-11wbnbx > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-KQJaz.framer-11wbnbx > :first-child { margin-top: 0px; } .framer-KQJaz.framer-11wbnbx > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 151\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"FsNvgifWI\":{\"layout\":[\"auto\",\"fixed\"]},\"sY7FkUu4f\":{\"layout\":[\"auto\",\"fixed\"]},\"m10HgaeGj\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerAN6hir0YI=withCSS(Component,css,\"framer-KQJaz\");export default FramerAN6hir0YI;FramerAN6hir0YI.displayName=\"Explore our Capabilities\\xa0button\";FramerAN6hir0YI.defaultProps={height:40,width:151};addPropertyControls(FramerAN6hir0YI,{variant:{options:[\"FnZppxX3a\",\"FsNvgifWI\"],optionTitles:[\"Variant 1\",\"phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerAN6hir0YI,[{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:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerAN6hir0YI\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"151\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"FsNvgifWI\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"sY7FkUu4f\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"m10HgaeGj\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"40\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (79d07c3)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/rnTOvaeqgxrY1TKRrs7L/T1TIENPiHDkCxKrvuD01/OizZu3NL5.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/fWChpDGg0NLBDcnZKoi2/gDKAKiwDcFmLK6an7aJf/TFVQINuNK.js\";const enabledGestures={dzL2fCSaZ:{hover:true}};const cycleOrder=[\"dzL2fCSaZ\",\"bHSSUhJRi\"];const serializationHash=\"framer-mu8Ts\";const variantClassNames={bHSSUhJRi:\"framer-v-1q7x2br\",dzL2fCSaZ:\"framer-v-2ertab\"};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 transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;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={\"Variant 1\":\"dzL2fCSaZ\",\"Variant 2\":\"bHSSUhJRi\"};const getProps=({height,hover,id,title,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,fwJqTKFK5:hover!==null&&hover!==void 0?hover:props.fwJqTKFK5,GcMGOEBiy:(_ref=title!==null&&title!==void 0?title:props.GcMGOEBiy)!==null&&_ref!==void 0?_ref:\"Research\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"dzL2fCSaZ\"};};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,GcMGOEBiy,fwJqTKFK5,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"dzL2fCSaZ\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter1yg9f13=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});if(fwJqTKFK5){const res=await fwJqTKFK5(...args);if(res===false)return false;}});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.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-2ertab\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"dzL2fCSaZ\",onMouseEnter:onMouseEnter1yg9f13,ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"dzL2fCSaZ-hover\":{\"data-framer-name\":undefined},bHSSUhJRi:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1t6uj3c\",\"data-styles-preset\":\"TFVQINuNK\",children:\"Research\"})}),className:\"framer-po7kih\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"qcr3JEhQe\",text:GcMGOEBiy,transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({bHSSUhJRi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1gehbwv\",\"data-styles-preset\":\"OizZu3NL5\",children:\"Leveraging both data science and qualitative methodologies, we help organisations understand user needs to inform the design of systems and services that are user-centric, efficient and accessible.\\xa0\"})}),transformTemplate:undefined}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-mu8Ts.framer-1v2ikkh, .framer-mu8Ts .framer-1v2ikkh { display: block; }\",\".framer-mu8Ts.framer-2ertab { cursor: pointer; height: 27px; overflow: hidden; position: relative; width: 259px; }\",\".framer-mu8Ts .framer-po7kih { flex: none; height: auto; left: 0px; position: absolute; right: 0px; top: 48%; white-space: pre-wrap; word-break: break-word; word-wrap: break-word; }\",\".framer-mu8Ts.framer-v-1q7x2br.framer-2ertab { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; }\",\".framer-mu8Ts.framer-v-1q7x2br .framer-po7kih { left: unset; position: relative; right: unset; top: unset; width: 259px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-mu8Ts.framer-v-1q7x2br.framer-2ertab { gap: 0px; } .framer-mu8Ts.framer-v-1q7x2br.framer-2ertab > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-mu8Ts.framer-v-1q7x2br.framer-2ertab > :first-child { margin-left: 0px; } .framer-mu8Ts.framer-v-1q7x2br.framer-2ertab > :last-child { margin-right: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 27\n * @framerIntrinsicWidth 259\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"bHSSUhJRi\":{\"layout\":[\"fixed\",\"auto\"]},\"klmjj_lGW\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"GcMGOEBiy\":\"title\",\"fwJqTKFK5\":\"hover\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerbuMRhLPeB=withCSS(Component,css,\"framer-mu8Ts\");export default FramerbuMRhLPeB;FramerbuMRhLPeB.displayName=\"List item v2 Copy\";FramerbuMRhLPeB.defaultProps={height:27,width:259};addPropertyControls(FramerbuMRhLPeB,{variant:{options:[\"dzL2fCSaZ\",\"bHSSUhJRi\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},GcMGOEBiy:{defaultValue:\"Research\",description:\"\",displayTextArea:false,placeholder:\"\",title:\"Title\",type:ControlType.String},fwJqTKFK5:{title:\"Hover\",type:ControlType.EventHandler}});addFonts(FramerbuMRhLPeB,[{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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerbuMRhLPeB\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"bHSSUhJRi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"klmjj_lGW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"27\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"GcMGOEBiy\\\":\\\"title\\\",\\\"fwJqTKFK5\\\":\\\"hover\\\"}\",\"framerIntrinsicWidth\":\"259\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (2a6858f)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/jdgMHzwHPdB84EA50wN3/VFFrp58foKwdaNsxWOoI/HvepnQWex.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/lCPyvt39YmoACpiR4CBD/gtJEqVYlr6xEbvQLT4Qw/IH58AJ6Kh.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/W6FULO94YuHXx7BygLlr/q20Nq1kPs0yOP9SJXiJo/iHzCYj3gp.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/iyqowOhK1wpSWPiS5J4N/mpU10skNnd7Y8tP15nIt/KdzRU2Km3.js\";const enabledGestures={ftnMSPMKz:{hover:true},sVjYR_DJ7:{hover:true}};const cycleOrder=[\"ftnMSPMKz\",\"sVjYR_DJ7\"];const serializationHash=\"framer-Y3uvV\";const variantClassNames={ftnMSPMKz:\"framer-v-hkmh1\",sVjYR_DJ7:\"framer-v-q8v7od\"};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={\"Variant 1\":\"ftnMSPMKz\",phone:\"sVjYR_DJ7\"};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:\"ftnMSPMKz\"};};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:\"ftnMSPMKz\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:{hash:\":WUuxY7uRB\",webPageId:\"x0cExXjQn\"},openInNewTab:false,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-hkmh1\",className,classNames)} framer-v6ws9n`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"ftnMSPMKz\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-500f3ef3-f926-4bb4-9708-99d9e4e66b56, rgb(23, 255, 177))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},...addPropertyOverrides({\"ftnMSPMKz-hover\":{\"data-framer-name\":undefined},\"sVjYR_DJ7-hover\":{\"data-framer-name\":undefined},sVjYR_DJ7:{\"data-framer-name\":\"phone\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1lax4uw\",\"data-styles-preset\":\"KdzRU2Km3\",children:/*#__PURE__*/_jsx(motion.strong,{children:\"Explore our offer\"})})}),className:\"framer-1vxuhyh\",fonts:[\"Inter\",\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"mw1xSIlH9\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"ftnMSPMKz-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-66yd6k\",\"data-styles-preset\":\"iHzCYj3gp\",children:/*#__PURE__*/_jsx(motion.strong,{children:\"Explore our offer\"})})})},\"sVjYR_DJ7-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1d1lh48\",\"data-styles-preset\":\"HvepnQWex\",children:/*#__PURE__*/_jsx(motion.strong,{children:\"Explore our offer\"})})})},sVjYR_DJ7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-3pl5l3\",\"data-styles-preset\":\"IH58AJ6Kh\",children:/*#__PURE__*/_jsx(motion.strong,{children:\"Explore our offer\"})})})}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Y3uvV.framer-v6ws9n, .framer-Y3uvV .framer-v6ws9n { display: block; }\",\".framer-Y3uvV.framer-hkmh1 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 40px; justify-content: center; overflow: hidden; padding: 10px 18px 10px 18px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-Y3uvV .framer-1vxuhyh { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Y3uvV.framer-hkmh1 { gap: 0px; } .framer-Y3uvV.framer-hkmh1 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Y3uvV.framer-hkmh1 > :first-child { margin-top: 0px; } .framer-Y3uvV.framer-hkmh1 > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 147\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"sVjYR_DJ7\":{\"layout\":[\"auto\",\"fixed\"]},\"eFhm6poIq\":{\"layout\":[\"auto\",\"fixed\"]},\"XRrWcbXo_\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerCKgLAg4dO=withCSS(Component,css,\"framer-Y3uvV\");export default FramerCKgLAg4dO;FramerCKgLAg4dO.displayName=\"Explore our Sectors button\";FramerCKgLAg4dO.defaultProps={height:40,width:147};addPropertyControls(FramerCKgLAg4dO,{variant:{options:[\"ftnMSPMKz\",\"sVjYR_DJ7\"],optionTitles:[\"Variant 1\",\"phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerCKgLAg4dO,[{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:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerCKgLAg4dO\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"147\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"sVjYR_DJ7\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"eFhm6poIq\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"XRrWcbXo_\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"40\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (0f540f8)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/RuyZ6OeIbdQoxqCugpdT/rgZnibHdDDBhuzF7PZ0h/tBDU2PZUt.js\";const cycleOrder=[\"oodd9OTHL\",\"fnDB6Ynxw\",\"h7Q4PLpHy\",\"KcS2ApyHh\",\"hsr1eCeo6\"];const serializationHash=\"framer-0BPPB\";const variantClassNames={fnDB6Ynxw:\"framer-v-e6a4vk\",h7Q4PLpHy:\"framer-v-xi84o2\",hsr1eCeo6:\"framer-v-1r5348l\",KcS2ApyHh:\"framer-v-18eqpku\",oodd9OTHL:\"framer-v-3o1i9u\"};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={duration:0,type:\"tween\"};const transition2={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;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={\"Variant 1\":\"oodd9OTHL\",\"Variant 2\":\"fnDB6Ynxw\",\"Variant 3\":\"h7Q4PLpHy\",\"Variant 4\":\"KcS2ApyHh\",\"Variant 5\":\"hsr1eCeo6\"};const getProps=({height,id,title,title2,title3,title4,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_humanReadableVariantMap_props_variant,_ref4;return{...props,fmx9355OL:(_ref=title4!==null&&title4!==void 0?title4:props.fmx9355OL)!==null&&_ref!==void 0?_ref:\"clients.\",PtgFWjAqJ:(_ref1=title!==null&&title!==void 0?title:props.PtgFWjAqJ)!==null&&_ref1!==void 0?_ref1:\"citizens.\",SUGrwDSKe:(_ref2=title3!==null&&title3!==void 0?title3:props.SUGrwDSKe)!==null&&_ref2!==void 0?_ref2:\"colleagues.\",UerD0YzFJ:(_ref3=title2!==null&&title2!==void 0?title2:props.UerD0YzFJ)!==null&&_ref3!==void 0?_ref3:\"customers.\",variant:(_ref4=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref4!==void 0?_ref4:\"oodd9OTHL\"};};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,UerD0YzFJ,SUGrwDSKe,fmx9355OL,PtgFWjAqJ,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"oodd9OTHL\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear1rnr5e4=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"fnDB6Ynxw\"),700);});const onAppear6ivtco=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"h7Q4PLpHy\"),1500);});const onAppear68440q=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"KcS2ApyHh\"),1500);});const onAppear1x903th=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"hsr1eCeo6\"),1500);});const onAppear1lfk41w=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"oodd9OTHL\"),700);});useOnVariantChange(baseVariant,{default:onAppear1rnr5e4,fnDB6Ynxw:onAppear6ivtco,h7Q4PLpHy:onAppear68440q,hsr1eCeo6:onAppear1lfk41w,KcS2ApyHh:onAppear1x903th});const ref1=React.useRef(null);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,...addPropertyOverrides({fnDB6Ynxw:{value:transition2},h7Q4PLpHy:{value:transition2},hsr1eCeo6:{value:transition2},KcS2ApyHh:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-3o1i9u\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"oodd9OTHL\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({fnDB6Ynxw:{\"data-framer-name\":\"Variant 2\"},h7Q4PLpHy:{\"data-framer-name\":\"Variant 3\"},hsr1eCeo6:{\"data-framer-name\":\"Variant 5\"},KcS2ApyHh:{\"data-framer-name\":\"Variant 4\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1rabpqg\",\"data-styles-preset\":\"tBDU2PZUt\",children:\"citizens.\"})}),className:\"framer-lu4mh8\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"fLJCyqnCM\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:1},variants:{fnDB6Ynxw:{opacity:0},h7Q4PLpHy:{opacity:0},hsr1eCeo6:{opacity:0},KcS2ApyHh:{opacity:0}},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1rabpqg\",\"data-styles-preset\":\"tBDU2PZUt\",children:\"customers.\"})}),className:\"framer-1mwhee0\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"v7j2llnVP\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:0},text:UerD0YzFJ,variants:{fnDB6Ynxw:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1rabpqg\",\"data-styles-preset\":\"tBDU2PZUt\",children:\"colleagues.\"})}),className:\"framer-18ynm20\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"MOiR6hzYU\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:0},text:SUGrwDSKe,variants:{h7Q4PLpHy:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({hsr1eCeo6:{transformTemplate:transformTemplate1},KcS2ApyHh:{transformTemplate:transformTemplate1}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1rabpqg\",\"data-styles-preset\":\"tBDU2PZUt\",children:\"clients.\"})}),className:\"framer-7j591w\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"zmTLae5N_\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:0},text:fmx9355OL,variants:{KcS2ApyHh:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({hsr1eCeo6:{transformTemplate:transformTemplate2}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1rabpqg\",\"data-styles-preset\":\"tBDU2PZUt\",children:\"citizens.\"})}),className:\"framer-1yaubsn\",\"data-framer-name\":\"citizens 2\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"oiIyriJrt\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:0},text:PtgFWjAqJ,variants:{hsr1eCeo6:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-0BPPB.framer-14269g1, .framer-0BPPB .framer-14269g1 { display: block; }\",\".framer-0BPPB.framer-3o1i9u { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-0BPPB .framer-lu4mh8 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-0BPPB .framer-1mwhee0 { bottom: -23px; flex: none; height: auto; left: 0px; position: absolute; white-space: pre; width: auto; z-index: 1; }\",\".framer-0BPPB .framer-18ynm20 { bottom: -46px; flex: none; height: auto; left: 0px; position: absolute; white-space: pre; width: auto; z-index: 1; }\",\".framer-0BPPB .framer-7j591w { bottom: -69px; flex: none; height: auto; left: 0px; position: absolute; white-space: pre; width: auto; z-index: 1; }\",\".framer-0BPPB .framer-1yaubsn { bottom: -92px; flex: none; height: auto; left: 0px; position: absolute; white-space: pre; width: auto; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0BPPB.framer-3o1i9u { gap: 0px; } .framer-0BPPB.framer-3o1i9u > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-0BPPB.framer-3o1i9u > :first-child { margin-left: 0px; } .framer-0BPPB.framer-3o1i9u > :last-child { margin-right: 0px; } }\",\".framer-0BPPB.framer-v-e6a4vk .framer-lu4mh8 { bottom: 40px; left: 0px; position: absolute; z-index: 1; }\",\".framer-0BPPB.framer-v-e6a4vk .framer-1mwhee0, .framer-0BPPB.framer-v-xi84o2 .framer-18ynm20, .framer-0BPPB.framer-v-18eqpku .framer-7j591w, .framer-0BPPB.framer-v-1r5348l .framer-1yaubsn { bottom: unset; left: unset; position: relative; }\",\".framer-0BPPB.framer-v-e6a4vk .framer-18ynm20, .framer-0BPPB.framer-v-xi84o2 .framer-7j591w, .framer-0BPPB.framer-v-18eqpku .framer-1yaubsn { bottom: -23px; }\",\".framer-0BPPB.framer-v-e6a4vk .framer-7j591w, .framer-0BPPB.framer-v-xi84o2 .framer-1yaubsn { bottom: -46px; }\",\".framer-0BPPB.framer-v-e6a4vk .framer-1yaubsn { bottom: -69px; }\",\".framer-0BPPB.framer-v-xi84o2 .framer-lu4mh8 { bottom: 81px; left: 0px; position: absolute; z-index: 1; }\",\".framer-0BPPB.framer-v-xi84o2 .framer-1mwhee0 { bottom: 42px; }\",\".framer-0BPPB.framer-v-18eqpku .framer-lu4mh8 { bottom: 124px; left: 0px; position: absolute; z-index: 1; }\",\".framer-0BPPB.framer-v-18eqpku .framer-1mwhee0 { bottom: 85px; }\",\".framer-0BPPB.framer-v-18eqpku .framer-18ynm20 { bottom: unset; top: -179%; }\",\".framer-0BPPB.framer-v-1r5348l .framer-lu4mh8 { bottom: 164px; left: 0px; position: absolute; z-index: 1; }\",\".framer-0BPPB.framer-v-1r5348l .framer-1mwhee0 { bottom: 125px; }\",\".framer-0BPPB.framer-v-1r5348l .framer-18ynm20 { bottom: unset; top: -389%; }\",\".framer-0BPPB.framer-v-1r5348l .framer-7j591w { bottom: unset; left: 49%; top: -163%; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 26\n * @framerIntrinsicWidth 85\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"fnDB6Ynxw\":{\"layout\":[\"auto\",\"auto\"]},\"h7Q4PLpHy\":{\"layout\":[\"auto\",\"auto\"]},\"KcS2ApyHh\":{\"layout\":[\"auto\",\"auto\"]},\"hsr1eCeo6\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"UerD0YzFJ\":\"title2\",\"SUGrwDSKe\":\"title3\",\"fmx9355OL\":\"title4\",\"PtgFWjAqJ\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameroLRWJU7BT=withCSS(Component,css,\"framer-0BPPB\");export default FrameroLRWJU7BT;FrameroLRWJU7BT.displayName=\"Words slider\";FrameroLRWJU7BT.defaultProps={height:26,width:85};addPropertyControls(FrameroLRWJU7BT,{variant:{options:[\"oodd9OTHL\",\"fnDB6Ynxw\",\"h7Q4PLpHy\",\"KcS2ApyHh\",\"hsr1eCeo6\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 4\",\"Variant 5\"],title:\"Variant\",type:ControlType.Enum},UerD0YzFJ:{defaultValue:\"customers.\",displayTextArea:false,title:\"Title 2\",type:ControlType.String},SUGrwDSKe:{defaultValue:\"colleagues.\",displayTextArea:false,title:\"Title 3\",type:ControlType.String},fmx9355OL:{defaultValue:\"clients.\",displayTextArea:false,title:\"Title 4\",type:ControlType.String},PtgFWjAqJ:{defaultValue:\"citizens.\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(FrameroLRWJU7BT,[{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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameroLRWJU7BT\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"85\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"fnDB6Ynxw\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"h7Q4PLpHy\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"KcS2ApyHh\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"hsr1eCeo6\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"UerD0YzFJ\\\":\\\"title2\\\",\\\"SUGrwDSKe\\\":\\\"title3\\\",\\\"fmx9355OL\\\":\\\"title4\\\",\\\"PtgFWjAqJ\\\":\\\"title\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"26\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (1f5f6d9)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,Image,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";const TickerFonts=getFonts(Ticker);const serializationHash=\"framer-EVDtg\";const variantClassNames={yUmoUXDr4:\"framer-v-1hrm8ci\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const 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 fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"yUmoUXDr4\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1hrm8ci\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"yUmoUXDr4\",ref:refBinding,style:{...style},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1172t8s-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"aYrIZat23-container\",nodeId:\"aYrIZat23\",rendersWithMotion:true,scopeId:\"S2T8LPwMP\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:.15,fadeContent:true,fadeInset:0,fadeWidth:3,overflow:false},gap:71,height:\"100%\",hoverFactor:.4,id:\"aYrIZat23\",layoutId:\"aYrIZat23\",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\",pixelHeight:1065,pixelWidth:2953,positionX:\"center\",positionY:\"center\",sizes:\"152px\",src:\"https://framerusercontent.com/images/EMfBPVwBTg97KRvqwAkcKPbJcg.png\",srcSet:\"https://framerusercontent.com/images/EMfBPVwBTg97KRvqwAkcKPbJcg.png?scale-down-to=512 512w,https://framerusercontent.com/images/EMfBPVwBTg97KRvqwAkcKPbJcg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/EMfBPVwBTg97KRvqwAkcKPbJcg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/EMfBPVwBTg97KRvqwAkcKPbJcg.png 2953w\"},className:\"framer-hd2b9z\",layoutDependency:layoutDependency,layoutId:\"ayiSDJZKa\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:511,pixelWidth:1200,positionX:\"center\",positionY:\"center\",sizes:\"152px\",src:\"https://framerusercontent.com/images/FXLr2nwzxZUm0kMckmEFciUNs.png\",srcSet:\"https://framerusercontent.com/images/FXLr2nwzxZUm0kMckmEFciUNs.png?scale-down-to=512 512w,https://framerusercontent.com/images/FXLr2nwzxZUm0kMckmEFciUNs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/FXLr2nwzxZUm0kMckmEFciUNs.png 1200w\"},className:\"framer-ytfej2\",layoutDependency:layoutDependency,layoutId:\"m0NJ8Sh9A\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:726,pixelWidth:682,positionX:\"center\",positionY:\"center\",sizes:\"121px\",src:\"https://framerusercontent.com/images/1nM6i8P9ZAutLOfUUW9gv7zLlg.png\",srcSet:\"https://framerusercontent.com/images/1nM6i8P9ZAutLOfUUW9gv7zLlg.png 682w\"},className:\"framer-mbq5wf\",layoutDependency:layoutDependency,layoutId:\"VPTZeCThy\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:2e3,pixelWidth:2e3,positionX:\"center\",positionY:\"center\",sizes:\"131px\",src:\"https://framerusercontent.com/images/S9wcm1ZdC0fzfrYXRRG1bjbbZD8.png\",srcSet:\"https://framerusercontent.com/images/S9wcm1ZdC0fzfrYXRRG1bjbbZD8.png?scale-down-to=512 512w,https://framerusercontent.com/images/S9wcm1ZdC0fzfrYXRRG1bjbbZD8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/S9wcm1ZdC0fzfrYXRRG1bjbbZD8.png 2000w\"},className:\"framer-17hvcf3\",layoutDependency:layoutDependency,layoutId:\"uIAH_u2Lg\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:753,pixelWidth:850,positionX:\"center\",positionY:\"center\",sizes:\"125px\",src:\"https://framerusercontent.com/images/dHnuNWEUFtMVgHaQ8YNVqSmyTjQ.png\",srcSet:\"https://framerusercontent.com/images/dHnuNWEUFtMVgHaQ8YNVqSmyTjQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/dHnuNWEUFtMVgHaQ8YNVqSmyTjQ.png 850w\"},className:\"framer-10ol7fs\",layoutDependency:layoutDependency,layoutId:\"EqrGSs5If\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:320,intrinsicWidth:480,pixelHeight:229,pixelWidth:803,positionX:\"center\",positionY:\"center\",sizes:\"152px\",src:\"https://framerusercontent.com/images/5dNKAknVV1pQpweVLGkXda141c.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/5dNKAknVV1pQpweVLGkXda141c.png?scale-down-to=512 512w,https://framerusercontent.com/images/5dNKAknVV1pQpweVLGkXda141c.png 803w\"},className:\"framer-199gemi\",\"data-framer-name\":\"UK devt\",layoutDependency:layoutDependency,layoutId:\"n5F0pkZOc\"})],speed:130,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-EVDtg.framer-121f7f6, .framer-EVDtg .framer-121f7f6 { display: block; }\",\".framer-EVDtg.framer-1hrm8ci { height: 200px; position: relative; width: 1200px; }\",\".framer-EVDtg .framer-1172t8s-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-EVDtg .framer-hd2b9z { aspect-ratio: 2.6923076923076925 / 1; height: var(--framer-aspect-ratio-supported, 56px); position: relative; width: 152px; }\",\".framer-EVDtg .framer-ytfej2 { aspect-ratio: 2.206896551724138 / 1; height: var(--framer-aspect-ratio-supported, 69px); position: relative; width: 152px; }\",\".framer-EVDtg .framer-mbq5wf { height: 80px; position: relative; width: 121px; }\",\".framer-EVDtg .framer-17hvcf3 { height: 80px; position: relative; width: 131px; }\",\".framer-EVDtg .framer-10ol7fs { height: 80px; position: relative; width: 125px; }\",\".framer-EVDtg .framer-199gemi { aspect-ratio: 1.5 / 1; height: var(--framer-aspect-ratio-supported, 101px); overflow: visible; position: relative; width: 152px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 200\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerS2T8LPwMP=withCSS(Component,css,\"framer-EVDtg\");export default FramerS2T8LPwMP;FramerS2T8LPwMP.displayName=\"Partner logos ticker\";FramerS2T8LPwMP.defaultProps={height:200,width:1200};addFonts(FramerS2T8LPwMP,[{explicitInter:true,fonts:[]},...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerS2T8LPwMP\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./S2T8LPwMP.map", "// Generated by Framer (2a6858f)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/jdgMHzwHPdB84EA50wN3/VFFrp58foKwdaNsxWOoI/HvepnQWex.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/lCPyvt39YmoACpiR4CBD/gtJEqVYlr6xEbvQLT4Qw/IH58AJ6Kh.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/W6FULO94YuHXx7BygLlr/q20Nq1kPs0yOP9SJXiJo/iHzCYj3gp.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/iyqowOhK1wpSWPiS5J4N/mpU10skNnd7Y8tP15nIt/KdzRU2Km3.js\";const enabledGestures={CyosCIYxu:{hover:true},sA4M_3dTa:{hover:true}};const cycleOrder=[\"CyosCIYxu\",\"sA4M_3dTa\"];const serializationHash=\"framer-LHGXU\";const variantClassNames={CyosCIYxu:\"framer-v-1uaarfq\",sA4M_3dTa:\"framer-v-1ad2cvu\"};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={\"Variant 1\":\"CyosCIYxu\",phone:\"sA4M_3dTa\"};const getProps=({click,height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,lqMlwAZy1:click!==null&&click!==void 0?click:props.lqMlwAZy1,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"CyosCIYxu\"};};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,lqMlwAZy1,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"CyosCIYxu\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1vae7l7=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(lqMlwAZy1){const res=await lqMlwAZy1(...args);if(res===false)return false;}});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.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.button,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1uaarfq\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"CyosCIYxu\",onTap:onTap1vae7l7,ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-500f3ef3-f926-4bb4-9708-99d9e4e66b56, rgb(23, 255, 177))\",borderBottomLeftRadius:21,borderBottomRightRadius:21,borderTopLeftRadius:21,borderTopRightRadius:21,...style},...addPropertyOverrides({\"CyosCIYxu-hover\":{\"data-framer-name\":undefined},\"sA4M_3dTa-hover\":{\"data-framer-name\":undefined},sA4M_3dTa:{\"data-framer-name\":\"phone\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1lax4uw\",\"data-styles-preset\":\"KdzRU2Km3\",children:/*#__PURE__*/_jsx(motion.strong,{children:\"Get in touch\"})})}),className:\"framer-1av5tl9\",fonts:[\"Inter\",\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"S6r5NvQYF\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"CyosCIYxu-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-66yd6k\",\"data-styles-preset\":\"iHzCYj3gp\",children:/*#__PURE__*/_jsx(motion.strong,{children:\"Get in touch\"})})})},\"sA4M_3dTa-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1d1lh48\",\"data-styles-preset\":\"HvepnQWex\",children:/*#__PURE__*/_jsx(motion.strong,{children:\"Get in touch\"})})})},sA4M_3dTa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-3pl5l3\",\"data-styles-preset\":\"IH58AJ6Kh\",children:/*#__PURE__*/_jsx(motion.strong,{children:\"Get in touch\"})})})}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-LHGXU.framer-1lyy9o4, .framer-LHGXU .framer-1lyy9o4 { display: block; }\",\".framer-LHGXU.framer-1uaarfq { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 42px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 117px; will-change: var(--framer-will-change-override, transform); }\",\".framer-LHGXU .framer-1av5tl9 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-LHGXU.framer-1uaarfq { gap: 0px; } .framer-LHGXU.framer-1uaarfq > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-LHGXU.framer-1uaarfq > :first-child { margin-top: 0px; } .framer-LHGXU.framer-1uaarfq > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 42\n * @framerIntrinsicWidth 117\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"sA4M_3dTa\":{\"layout\":[\"fixed\",\"fixed\"]},\"zdAVLAMhD\":{\"layout\":[\"fixed\",\"fixed\"]},\"rSK8LgG1E\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"lqMlwAZy1\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerTp2B1b1oP=withCSS(Component,css,\"framer-LHGXU\");export default FramerTp2B1b1oP;FramerTp2B1b1oP.displayName=\"Get in touch\";FramerTp2B1b1oP.defaultProps={height:42,width:117};addPropertyControls(FramerTp2B1b1oP,{variant:{options:[\"CyosCIYxu\",\"sA4M_3dTa\"],optionTitles:[\"Variant 1\",\"phone\"],title:\"Variant\",type:ControlType.Enum},lqMlwAZy1:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerTp2B1b1oP,[{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:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerTp2B1b1oP\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"sA4M_3dTa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"zdAVLAMhD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"rSK8LgG1E\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"lqMlwAZy1\\\":\\\"click\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"117\",\"framerIntrinsicHeight\":\"42\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (018ad06)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Alternox Bold\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Alternox Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/wjoe6R5hev7b5eSnWNzOPM5JN8.woff2\"}]}];export const css=['.framer-hDvsZ .framer-styles-preset-d1ml8d:not(.rich-text-wrapper), .framer-hDvsZ .framer-styles-preset-d1ml8d.rich-text-wrapper h1 { --framer-font-family: \"Alternox Bold\", \"Alternox Bold Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 44px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-hDvsZ\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (4d21961)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,Floating,FormContainer,FormPlainTextInput,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useQueryData,useRouteElementId,useRouter,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/Z4QJ2YpzpVnWRfR6Ccgg/Video.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/9rhBPUZttCbLCWqJEL42/YouTube.js\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/ZtFjxnixyznUo5AKQme5/Carousel.js\";import{Counter}from\"https://framerusercontent.com/modules/woEyA7aGsHXoke5kFOIE/j5Rwipv3AxDcsXlPnDYW/Counter1.js\";import{Icon as Iconoir}from\"https://framerusercontent.com/modules/zL9598C4KbEbqUGvSR14/rI8sPHpnG9XGcCPc0vU4/Iconoir.js\";import ExploreOurCapabilitiesButton from\"#framer/local/canvasComponent/AN6hir0YI/AN6hir0YI.js\";import ListItemV2Copy from\"#framer/local/canvasComponent/buMRhLPeB/buMRhLPeB.js\";import ExploreOurSectorsButton from\"#framer/local/canvasComponent/CKgLAg4dO/CKgLAg4dO.js\";import CMSCard2 from\"#framer/local/canvasComponent/h3PTKoNly/h3PTKoNly.js\";import NavBar from\"#framer/local/canvasComponent/K0zK2tqWi/K0zK2tqWi.js\";import WordsSlider from\"#framer/local/canvasComponent/oLRWJU7BT/oLRWJU7BT.js\";import Button3 from\"#framer/local/canvasComponent/pVVkPy8Ds/pVVkPy8Ds.js\";import PartnerLogosTicker from\"#framer/local/canvasComponent/S2T8LPwMP/S2T8LPwMP.js\";import GetInTouch from\"#framer/local/canvasComponent/Tp2B1b1oP/Tp2B1b1oP.js\";import Footer from\"#framer/local/canvasComponent/wgkVPX4Lj/wgkVPX4Lj.js\";import LearnMoreAboutUsButton from\"#framer/local/canvasComponent/zfhBthDya/zfhBthDya.js\";import Content from\"#framer/local/collection/R0RDYCDCJ/R0RDYCDCJ.js\";import*as sharedStyle10 from\"#framer/local/css/IH58AJ6Kh/IH58AJ6Kh.js\";import*as sharedStyle8 from\"#framer/local/css/kMBU5ZLo7/kMBU5ZLo7.js\";import*as sharedStyle6 from\"#framer/local/css/M2tPx4uPL/M2tPx4uPL.js\";import*as sharedStyle4 from\"#framer/local/css/OizZu3NL5/OizZu3NL5.js\";import*as sharedStyle1 from\"#framer/local/css/PGQLxtejw/PGQLxtejw.js\";import*as sharedStyle from\"#framer/local/css/PkGGDBbys/PkGGDBbys.js\";import*as sharedStyle5 from\"#framer/local/css/sNJXBOtXg/sNJXBOtXg.js\";import*as sharedStyle7 from\"#framer/local/css/taF_eb2g0/taF_eb2g0.js\";import*as sharedStyle2 from\"#framer/local/css/tBDU2PZUt/tBDU2PZUt.js\";import*as sharedStyle9 from\"#framer/local/css/uvRqfJGpa/uvRqfJGpa.js\";import*as sharedStyle3 from\"#framer/local/css/xiUhy3Eik/xiUhy3Eik.js\";import metadataProvider from\"#framer/local/webPageMetadata/a_baB0xMT/a_baB0xMT.js\";const VideoFonts=getFonts(Video);const WordsSliderFonts=getFonts(WordsSlider);const PartnerLogosTickerFonts=getFonts(PartnerLogosTicker);const LearnMoreAboutUsButtonFonts=getFonts(LearnMoreAboutUsButton);const YouTubeFonts=getFonts(YouTube);const CounterFonts=getFonts(Counter);const ExploreOurCapabilitiesButtonFonts=getFonts(ExploreOurCapabilitiesButton);const ListItemV2CopyFonts=getFonts(ListItemV2Copy);const IconoirFonts=getFonts(Iconoir);const MotionDivWithFX=withFX(motion.div);const ExploreOurSectorsButtonFonts=getFonts(ExploreOurSectorsButton);const CMSCard2Fonts=getFonts(CMSCard2);const CarouselFonts=getFonts(Carousel);const MotionAWithFX=withFX(motion.a);const GetInTouchFonts=getFonts(GetInTouch);const Button3Fonts=getFonts(Button3);const FooterFonts=getFonts(Footer);const NavBarFonts=getFonts(NavBar);const breakpoints={d_3BIS1XB:\"(min-width: 1200px)\",vyCMgQDxf:\"(min-width: 810px) and (max-width: 1199px)\",ZSL_I0K5p:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-ZxGUX\";const variantClassNames={d_3BIS1XB:\"framer-v-1y4mrjo\",vyCMgQDxf:\"framer-v-17u66c1\",ZSL_I0K5p:\"framer-v-18tjg6n\"};const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};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 transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transition2={bounce:.2,delay:.2,duration:1.7,type:\"spring\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const transformTemplate2=(_,t)=>`translateY(-50%) ${t}`;const transition3={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation4={backgroundColor:'var(--token-c0fccd5f-2cf7-4508-a86c-f66a665c7d54, rgb(1, 101, 165)) /* {\"name\":\"Blue\"} */',opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const formVariants=(form,variants,currentVariant)=>{switch(form.state){case\"success\":return variants.success??currentVariant;case\"pending\":return variants.pending??currentVariant;case\"error\":return variants.error??currentVariant;case\"incomplete\":return variants.incomplete??currentVariant;}};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"d_3BIS1XB\",Phone:\"ZSL_I0K5p\",Tablet:\"vyCMgQDxf\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"d_3BIS1XB\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,W4QrcfAKTrLNfLIt4L,WIWif6MVYrLNfLIt4L,KFF9hrGZurLNfLIt4L,idrLNfLIt4L,W4QrcfAKTYSAd73ynN,WIWif6MVYYSAd73ynN,KFF9hrGZuYSAd73ynN,idYSAd73ynN,W4QrcfAKTqHRNMdQUa,WIWif6MVYqHRNMdQUa,KFF9hrGZuqHRNMdQUa,idqHRNMdQUa,W4QrcfAKTPVfd04EJx,WIWif6MVYPVfd04EJx,KFF9hrGZuPVfd04EJx,idPVfd04EJx,W4QrcfAKTLqCvQAeHd,WIWif6MVYLqCvQAeHd,KFF9hrGZuLqCvQAeHd,idLqCvQAeHd,W4QrcfAKTahHXYtAbF,WIWif6MVYahHXYtAbF,KFF9hrGZuahHXYtAbF,idahHXYtAbF,W4QrcfAKTrqzb3GOr2,WIWif6MVYrqzb3GOr2,KFF9hrGZurqzb3GOr2,idrqzb3GOr2,W4QrcfAKTKx832efZV,KFF9hrGZuKx832efZV,WIWif6MVYKx832efZV,idKx832efZV,W4QrcfAKTcdoOSZtXr,KFF9hrGZucdoOSZtXr,WIWif6MVYcdoOSZtXr,idcdoOSZtXr,W4QrcfAKTjB9I5OYqB,KFF9hrGZujB9I5OYqB,WIWif6MVYjB9I5OYqB,idjB9I5OYqB,W4QrcfAKTUx2OAn3JO,KFF9hrGZuUx2OAn3JO,WIWif6MVYUx2OAn3JO,idUx2OAn3JO,W4QrcfAKToOkwlByGf,KFF9hrGZuoOkwlByGf,WIWif6MVYoOkwlByGf,idoOkwlByGf,W4QrcfAKTsnYP9jncw,KFF9hrGZusnYP9jncw,WIWif6MVYsnYP9jncw,idsnYP9jncw,W4QrcfAKTLjdd4IgRZ,KFF9hrGZuLjdd4IgRZ,WIWif6MVYLjdd4IgRZ,idLjdd4IgRZ,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const onMouseEntertxyyif=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.show();});const fwJqTKFK5txyyif=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.show();});const lqMlwAZy1txyyif=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.show();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"lbuh5jjkS\");const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if([\"vyCMgQDxf\",\"ZSL_I0K5p\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if([\"vyCMgQDxf\",\"ZSL_I0K5p\"].includes(baseVariant))return true;return false;};const router=useRouter();const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"ZSL_I0K5p\")return false;return true;};const ref2=React.useRef(null);const ref3=React.useRef(null);const ref4=React.useRef(null);const ref5=React.useRef(null);const ref6=React.useRef(null);const ref7=React.useRef(null);const ref8=React.useRef(null);const ref9=React.useRef(null);const ref10=React.useRef(null);const ref11=React.useRef(null);const ref12=React.useRef(null);const ref13=React.useRef(null);const ref14=React.useRef(null);const ref15=React.useRef(null);const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"ZSL_I0K5p\")return true;return false;};const ref16=React.useRef(null);const ref17=React.useRef(null);const ref18=React.useRef(null);const ref19=React.useRef(null);const ref20=React.useRef(null);const ref21=React.useRef(null);const ref22=React.useRef(null);const ref23=React.useRef(null);const elementId1=useRouteElementId(\"ZEFmdCyvx\");const ref24=React.useRef(null);const ref25=React.useRef(null);const ref26=React.useRef(null);const elementId2=useRouteElementId(\"uoavmGCQU\");const ref27=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"d_3BIS1XB\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-bd98839e-23a8-4d7f-b04b-08e758845e76, rgb(1, 31, 61)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1y4mrjo\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uenapd\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"main\",{className:\"framer-lm31y0\",\"data-framer-name\":\"Hero new\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-lbwe10\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-10o7ri9-container\",id:\"10o7ri9\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"BQXE8UKh3\",scopeId:\"a_baB0xMT\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vyCMgQDxf:{objectFit:\"cover\"},ZSL_I0K5p:{objectFit:\"cover\"}},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"BQXE8UKh3\",isMixedBorderRadius:false,layoutId:\"BQXE8UKh3\",loop:true,muted:true,objectFit:\"fill\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/JlEZ2b4r7FDe8drLXmqqAYrF8.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ck1uvb\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-mzqvu7\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZSL_I0K5p:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1q8dh6g\",\"data-styles-preset\":\"PGQLxtejw\",children:\"Transformation, wherever you stand.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-d1ml8d\",\"data-styles-preset\":\"PkGGDBbys\",style:{\"--framer-text-alignment\":\"center\"},children:\"Transformation, wherever you stand.\"})}),className:\"framer-1koklnm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16vgm7a\",\"data-framer-name\":\"Text slider\",children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1rabpqg\",\"data-styles-preset\":\"tBDU2PZUt\",children:\"We help organisations use digital and data to better serve\"})}),className:\"framer-857zsv hidden-17u66c1 hidden-18tjg6n\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vyCMgQDxf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1rabpqg\",\"data-styles-preset\":\"tBDU2PZUt\",children:\"We help organisations use digital and data to better serve\"})})},ZSL_I0K5p:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1rabpqg\",\"data-styles-preset\":\"tBDU2PZUt\",style:{\"--framer-text-alignment\":\"center\"},children:\"We help organisations use digital and data to better serve\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1rabpqg\",\"data-styles-preset\":\"tBDU2PZUt\",children:\"We help organisations use digital, data and tech to better serve\"})}),className:\"framer-gozr7q hidden-1y4mrjo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZSL_I0K5p:{width:`calc(max(${componentViewport?.width||\"100vw\"}, 1px) - 60px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:26,children:/*#__PURE__*/_jsx(Container,{className:\"framer-qnhu3h-container\",nodeId:\"RumxI11vA\",scopeId:\"a_baB0xMT\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZSL_I0K5p:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(WordsSlider,{fmx9355OL:\"clients.\",height:\"100%\",id:\"RumxI11vA\",layoutId:\"RumxI11vA\",PtgFWjAqJ:\"citizens.\",SUGrwDSKe:\"colleagues.\",UerD0YzFJ:\"customers.\",variant:\"oodd9OTHL\",width:\"100%\"})})})})})]})]})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-w1tufb\",\"data-framer-name\":\"Trusted by\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vyCMgQDxf:{width:`calc(${componentViewport?.width||\"100vw\"} - 120px)`},ZSL_I0K5p:{height:200,width:`calc(${componentViewport?.width||\"100vw\"} - 60px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:146,width:\"1200px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cwx671-container\",nodeId:\"A3y2QWClG\",scopeId:\"a_baB0xMT\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZSL_I0K5p:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(PartnerLogosTicker,{height:\"100%\",id:\"A3y2QWClG\",layoutId:\"A3y2QWClG\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-7sbnzm\",\"data-framer-name\":\"About us wrapper\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4ghz93\",\"data-framer-name\":\"About us\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4ie0za\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-18m9zps\",\"data-styles-preset\":\"xiUhy3Eik\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Siren supports organisations along their digital transformation journey. \"})}),className:\"framer-y49jws\",\"data-framer-name\":\"Blurb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1gehbwv\",\"data-styles-preset\":\"OizZu3NL5\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"We blend comprehensive change management support with context appropriate digital technologies that enable you to become more responsive, efficient and impactful.\"})}),className:\"framer-302pcd\",\"data-framer-name\":\"Blurb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-64x38l\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"OB8fAiKmV\"},implicitPathVariables:undefined},{href:{webPageId:\"OB8fAiKmV\"},implicitPathVariables:undefined},{href:{webPageId:\"OB8fAiKmV\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:37,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ky7s3z-container\",nodeId:\"HJ9egckSU\",scopeId:\"a_baB0xMT\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vyCMgQDxf:{WP5b2c3do:resolvedLinks[1]},ZSL_I0K5p:{variant:\"BcmJHFRP5\",WP5b2c3do:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(LearnMoreAboutUsButton,{height:\"100%\",ibis060v3:\"Learn more about us\",id:\"HJ9egckSU\",layoutId:\"HJ9egckSU\",variant:\"CrpzUPMS8\",width:\"100%\",WP5b2c3do:resolvedLinks[0]})})})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ddk3px-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"DiE8zLE24\",scopeId:\"a_baB0xMT\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"DiE8zLE24\",isMixedBorderRadius:false,isRed:true,layoutId:\"DiE8zLE24\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/l4N4pG-3_Ig\",width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-142qd1z\",\"data-framer-name\":\"Siren in numbers\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ch8izt\",\"data-framer-name\":\"Siren in numbers\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6iwc1p\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-mfxdin\",\"data-framer-name\":\"AI and soft eng\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rv0ob7\",\"data-framer-name\":\"_Metric item\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-xpzxhm-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"kf_26j0jm\",scopeId:\"a_baB0xMT\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZSL_I0K5p:{textSize:50}},children:/*#__PURE__*/_jsx(Counter,{decimalSeparatorType:\"none\",end:90,gapSize:4,height:\"100%\",id:\"kf_26j0jm\",layoutId:\"kf_26j0jm\",loop:false,prefixColor:\"var(--token-bd98839e-23a8-4d7f-b04b-08e758845e76, rgb(1, 31, 61))\",prefixFont:{fontFamily:'\"Alternox Bold\", \"Alternox Bold Placeholder\", sans-serif'},prefixText:\"\",restartOnViewport:true,selectedFont:{fontFamily:'\"Alternox Bold\", \"Alternox Bold Placeholder\", sans-serif'},speed:6,start:0,startOnViewport:true,style:{width:\"100%\"},suffixColor:\"var(--token-500f3ef3-f926-4bb4-9708-99d9e4e66b56, rgb(23, 255, 177))\",suffixFont:{fontFamily:'\"Alternox Bold\", \"Alternox Bold Placeholder\", sans-serif'},suffixText:\"+\",textColor:\"var(--token-bd98839e-23a8-4d7f-b04b-08e758845e76, rgb(1, 31, 61))\",textSize:64,width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14dnjq6\",\"data-framer-name\":\"Number and text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZSL_I0K5p:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UmFsZXdheS01MDA=\",\"--framer-font-family\":'\"Raleway\", \"Raleway Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bd98839e-23a8-4d7f-b04b-08e758845e76, rgb(1, 31, 61))\"},children:\"AI, data, and software engineers\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UmFsZXdheS01MDA=\",\"--framer-font-family\":'\"Raleway\", \"Raleway Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bd98839e-23a8-4d7f-b04b-08e758845e76, rgb(1, 31, 61))\"},children:\"AI, data, and software engineers\"})}),className:\"framer-xtrl10\",\"data-framer-name\":\"Text\",fonts:[\"GF;Raleway-500\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZSL_I0K5p:{style:{rotate:90}}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-n3uto7\",\"data-framer-name\":\"line\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-a44uxq\",\"data-framer-name\":\"advisory\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12a0zz5\",\"data-framer-name\":\"_Metric item\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-rnq1xt-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"SCstb8RtQ\",scopeId:\"a_baB0xMT\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZSL_I0K5p:{textSize:50}},children:/*#__PURE__*/_jsx(Counter,{decimalSeparatorType:\"none\",end:70,gapSize:4,height:\"100%\",id:\"SCstb8RtQ\",layoutId:\"SCstb8RtQ\",loop:false,prefixColor:\"var(--token-bd98839e-23a8-4d7f-b04b-08e758845e76, rgb(1, 31, 61))\",prefixFont:{fontFamily:'\"Alternox Regular\", \"Alternox Regular Placeholder\", sans-serif'},prefixText:\"\",restartOnViewport:true,selectedFont:{fontFamily:'\"Alternox Bold\", \"Alternox Bold Placeholder\", sans-serif'},speed:6,start:0,startOnViewport:true,style:{width:\"100%\"},suffixColor:\"var(--token-500f3ef3-f926-4bb4-9708-99d9e4e66b56, rgb(23, 255, 177))\",suffixFont:{fontFamily:'\"Alternox Bold\", \"Alternox Bold Placeholder\", sans-serif'},suffixText:\"+\",textColor:\"var(--token-bd98839e-23a8-4d7f-b04b-08e758845e76, rgb(1, 31, 61))\",textSize:64,width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1np0pnj\",\"data-framer-name\":\"Number and text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZSL_I0K5p:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UmFsZXdheS01MDA=\",\"--framer-font-family\":'\"Raleway\", \"Raleway Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bd98839e-23a8-4d7f-b04b-08e758845e76, rgb(1, 31, 61))\"},children:[\"advisory\",/*#__PURE__*/_jsx(\"br\",{}),\"consultants\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UmFsZXdheS01MDA=\",\"--framer-font-family\":'\"Raleway\", \"Raleway Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bd98839e-23a8-4d7f-b04b-08e758845e76, rgb(1, 31, 61))\"},children:[\"advisory\",/*#__PURE__*/_jsx(\"br\",{}),\"consultants\"]})}),className:\"framer-9ja51m\",\"data-framer-name\":\"Text\",fonts:[\"GF;Raleway-500\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZSL_I0K5p:{style:{rotate:90}}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-u6pb3y\",\"data-framer-name\":\"line\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1b7nn2p\",\"data-framer-name\":\"office locations\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11zlr6v\",\"data-framer-name\":\"_Metric item\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-4kpzu-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"x4nWpKvjP\",scopeId:\"a_baB0xMT\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZSL_I0K5p:{textSize:50}},children:/*#__PURE__*/_jsx(Counter,{decimalSeparatorType:\"none\",end:4,gapSize:12,height:\"100%\",id:\"x4nWpKvjP\",layoutId:\"x4nWpKvjP\",loop:false,prefixColor:\"var(--token-bd98839e-23a8-4d7f-b04b-08e758845e76, rgb(1, 31, 61))\",prefixFont:{fontFamily:'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:700},prefixText:\"\",restartOnViewport:true,selectedFont:{fontFamily:'\"Alternox Bold\", \"Alternox Bold Placeholder\", sans-serif'},speed:50,start:0,startOnViewport:true,style:{width:\"100%\"},suffixColor:\"rgb(0, 153, 255)\",suffixFont:{},suffixText:\"\",textColor:\"var(--token-bd98839e-23a8-4d7f-b04b-08e758845e76, rgb(1, 31, 61))\",textSize:64,width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-uckqti\",\"data-framer-name\":\"Number and text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZSL_I0K5p:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UmFsZXdheS01MDA=\",\"--framer-font-family\":'\"Raleway\", \"Raleway Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bd98839e-23a8-4d7f-b04b-08e758845e76, rgb(1, 31, 61))\"},children:[\"office\",/*#__PURE__*/_jsx(\"br\",{}),\"locations\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UmFsZXdheS01MDA=\",\"--framer-font-family\":'\"Raleway\", \"Raleway Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bd98839e-23a8-4d7f-b04b-08e758845e76, rgb(1, 31, 61))\"},children:[\"office\",/*#__PURE__*/_jsx(\"br\",{}),\"locations\"]})}),className:\"framer-7qul5z\",\"data-framer-name\":\"Text\",fonts:[\"GF;Raleway-500\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})})]})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-if38sq\",\"data-framer-name\":\"Transformation toolkit wrapper\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ny6wjw\",\"data-framer-name\":\"Transformation toolkit\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cccqgi\",\"data-framer-name\":\"Title and button\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1k78f0q\",\"data-styles-preset\":\"sNJXBOtXg\",children:\"Our transformation toolkit\"})}),className:\"framer-119mzxa\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tuemeu-container hidden-18tjg6n\",nodeId:\"REnEHynWw\",scopeId:\"a_baB0xMT\",children:/*#__PURE__*/_jsx(ExploreOurCapabilitiesButton,{height:\"100%\",id:\"REnEHynWw\",layoutId:\"REnEHynWw\",style:{height:\"100%\"},variant:\"FnZppxX3a\",width:\"100%\"})})})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q38mx0 hidden-18tjg6n\",\"data-framer-name\":\"List\",children:[/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ap0shw\",\"data-framer-name\":\"Research\",id:\"1ap0shw\",onMouseEnter:onMouseEntertxyyif({overlay}),ref:ref2,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,width:\"81px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-6eam53-container\",nodeId:\"KOs439gHX\",scopeId:\"a_baB0xMT\",children:/*#__PURE__*/_jsx(ListItemV2Copy,{GcMGOEBiy:\"Research\",height:\"100%\",id:\"KOs439gHX\",layoutId:\"KOs439gHX\",style:{height:\"100%\",width:\"100%\"},variant:\"dzL2fCSaZ\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gkox3s-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"tCydBTWJG\",scopeId:\"a_baB0xMT\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-500f3ef3-f926-4bb4-9708-99d9e4e66b56, rgb(23, 255, 177))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"ArrowRight\",id:\"tCydBTWJG\",layoutId:\"tCydBTWJG\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"start\",anchorRef:ref2,className:cx(scopingClassNames),collisionDetection:false,\"data-framer-portal-id\":\"1ap0shw\",offsetX:-.4999923849100014,offsetY:-57.09369741761475,onDismiss:overlay.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(motion.div,{animate:animation1,className:\"framer-xoiqs\",exit:animation,initial:animation2,ref:ref3,role:\"dialog\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vyCMgQDxf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1p3mell\",\"data-styles-preset\":\"M2tPx4uPL\",children:\"Leveraging both data science and qualitative methodologies, we help organisations understand user needs to inform the design of systems and services that are user-centric, efficient and accessible.\\xa0\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1gehbwv\",\"data-styles-preset\":\"OizZu3NL5\",children:\"Leveraging both data science and qualitative methodologies, we help organisations understand user needs to inform the design of systems and services that are user-centric, efficient and accessible.\\xa0\"})}),className:\"framer-5o3mtn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1d2el0g\"}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fy01jk\",\"data-framer-name\":\"Strategy\",id:\"fy01jk\",onMouseEnter:onMouseEntertxyyif({overlay:overlay1}),ref:ref4,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,width:\"74px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-qsvv19-container\",nodeId:\"aWpZAreiJ\",scopeId:\"a_baB0xMT\",children:/*#__PURE__*/_jsx(ListItemV2Copy,{GcMGOEBiy:\"Strategy\",height:\"100%\",id:\"aWpZAreiJ\",layoutId:\"aWpZAreiJ\",style:{height:\"100%\",width:\"100%\"},variant:\"dzL2fCSaZ\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-10ofcsr-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"rEKKyJu3b\",scopeId:\"a_baB0xMT\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-500f3ef3-f926-4bb4-9708-99d9e4e66b56, rgb(23, 255, 177))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"ArrowRight\",id:\"rEKKyJu3b\",layoutId:\"rEKKyJu3b\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"start\",anchorRef:ref4,className:cx(scopingClassNames),collisionDetection:false,\"data-framer-portal-id\":\"fy01jk\",offsetX:-.4999923849100014,offsetY:-62.09369741761475,onDismiss:overlay1.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(motion.div,{animate:animation1,className:\"framer-1lvvlny\",exit:animation,initial:animation2,ref:ref5,role:\"dialog\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vyCMgQDxf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1p3mell\",\"data-styles-preset\":\"M2tPx4uPL\",children:\"Whether you need a data, digital or cybersecurity strategy, we help create a compelling vision where the latest technologies are used to improve operations and services.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1gehbwv\",\"data-styles-preset\":\"OizZu3NL5\",children:\"Whether you need a data, digital or cybersecurity strategy, we help create a compelling vision where the latest technologies are used to improve operations and services.\"})}),className:\"framer-1raankr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1je54ma\"}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay2=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hol080\",\"data-framer-name\":\"Software Development\",id:\"1hol080\",onMouseEnter:onMouseEntertxyyif({overlay:overlay2}),ref:ref6,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,width:\"199px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-6tq4i9-container\",nodeId:\"NTay3RGtu\",scopeId:\"a_baB0xMT\",children:/*#__PURE__*/_jsx(ListItemV2Copy,{GcMGOEBiy:\"Software development\",height:\"100%\",id:\"NTay3RGtu\",layoutId:\"NTay3RGtu\",style:{height:\"100%\",width:\"100%\"},variant:\"dzL2fCSaZ\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-12jsy42-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"G23tXm9fr\",scopeId:\"a_baB0xMT\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-500f3ef3-f926-4bb4-9708-99d9e4e66b56, rgb(23, 255, 177))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"ArrowRight\",id:\"G23tXm9fr\",layoutId:\"G23tXm9fr\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay2.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"start\",anchorRef:ref6,className:cx(scopingClassNames),collisionDetection:false,\"data-framer-portal-id\":\"1hol080\",offsetX:-.4999923849100014,offsetY:-57.09369741761475,onDismiss:overlay2.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(motion.div,{animate:animation1,className:\"framer-sf0a06\",exit:animation,initial:animation2,ref:ref7,role:\"dialog\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vyCMgQDxf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1p3mell\",\"data-styles-preset\":\"M2tPx4uPL\",children:\"Our custom digital solutions help organisations work smarter and maximise their impact. From delivering business intelligence platforms to building digital public infrastructure, we can do it all.\"})}),transformTemplate:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1gehbwv\",\"data-styles-preset\":\"OizZu3NL5\",children:\"Our custom digital solutions help organisations work smarter and maximise their impact. From delivering business intelligence platforms to building digital public infrastructure, we can do it all.\"})}),className:\"framer-1d9zgsm\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})})})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ycnxdm\"}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay3=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oispa1\",\"data-framer-name\":\"Data analytics\",id:\"oispa1\",onMouseEnter:onMouseEntertxyyif({overlay:overlay3}),ref:ref8,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,width:\"122px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-dp2nez-container\",nodeId:\"uzUtwVg0k\",scopeId:\"a_baB0xMT\",children:/*#__PURE__*/_jsx(ListItemV2Copy,{GcMGOEBiy:\"Data analytics\",height:\"100%\",id:\"uzUtwVg0k\",layoutId:\"uzUtwVg0k\",style:{height:\"100%\",width:\"100%\"},variant:\"dzL2fCSaZ\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-14hwtjs-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"NocX8H8Dr\",scopeId:\"a_baB0xMT\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-500f3ef3-f926-4bb4-9708-99d9e4e66b56, rgb(23, 255, 177))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"ArrowRight\",id:\"NocX8H8Dr\",layoutId:\"NocX8H8Dr\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay3.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"start\",anchorRef:ref8,className:cx(scopingClassNames),collisionDetection:false,\"data-framer-portal-id\":\"oispa1\",offsetX:-.4999923849100014,offsetY:-57.09369741761475,onDismiss:overlay3.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(motion.div,{animate:animation1,className:\"framer-1o8yezi\",exit:animation,initial:animation2,ref:ref9,role:\"dialog\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vyCMgQDxf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1p3mell\",\"data-styles-preset\":\"M2tPx4uPL\",children:\"From data strategy formulation to developing specialist data platforms, we help ensure the responsible handling of data throughout its lifecycle, while unlocking its value to support decision making.\"})}),transformTemplate:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1gehbwv\",\"data-styles-preset\":\"OizZu3NL5\",children:\"From data strategy formulation to developing specialist data platforms, we help ensure the responsible handling of data throughout its lifecycle, while unlocking its value to support decision making.\"})}),className:\"framer-wrn87d\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})})})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1q8dr5m\"}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay4=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-eols7l\",\"data-framer-name\":\"Ai Augmentation\",id:\"eols7l\",onMouseEnter:onMouseEntertxyyif({overlay:overlay4}),ref:ref10,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,width:\"184px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bv5goh-container\",id:\"1bv5goh\",nodeId:\"ZWZJRIh36\",scopeId:\"a_baB0xMT\",children:/*#__PURE__*/_jsx(ListItemV2Copy,{GcMGOEBiy:\"Artificial intelligence\",height:\"100%\",id:\"ZWZJRIh36\",layoutId:\"ZWZJRIh36\",style:{height:\"100%\",width:\"100%\"},variant:\"dzL2fCSaZ\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1u6x355-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"tG54ox6cV\",scopeId:\"a_baB0xMT\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-500f3ef3-f926-4bb4-9708-99d9e4e66b56, rgb(23, 255, 177))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"ArrowRight\",id:\"tG54ox6cV\",layoutId:\"tG54ox6cV\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay4.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"start\",anchorRef:ref10,className:cx(scopingClassNames),collisionDetection:false,\"data-framer-portal-id\":\"eols7l\",offsetX:-.4999923849100014,offsetY:-57.09369741761475,onDismiss:overlay4.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(motion.div,{animate:animation1,className:\"framer-1o5mnop\",exit:animation,initial:animation2,ref:ref11,role:\"dialog\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vyCMgQDxf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1p3mell\",\"data-styles-preset\":\"M2tPx4uPL\",children:\"From tuning large language models to developing advanced computer vision tools, we develop AI tools that streamline processes, enhance service delivery and help organisations anticipate future needs.\\xa0\"})}),transformTemplate:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1gehbwv\",\"data-styles-preset\":\"OizZu3NL5\",children:\"From tuning large language models to developing advanced computer vision tools, we develop AI tools that streamline processes, enhance service delivery and help organisations anticipate future needs.\\xa0\"})}),className:\"framer-fruefz\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})})})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1irimpu\"}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay5=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-chzzq6\",\"data-framer-name\":\"Change management\",id:\"chzzq6\",onMouseEnter:onMouseEntertxyyif({overlay:overlay5}),ref:ref12,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,width:\"187px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hzqhd5-container\",nodeId:\"yFiUDOOrp\",scopeId:\"a_baB0xMT\",children:/*#__PURE__*/_jsx(ListItemV2Copy,{GcMGOEBiy:\"Change management\",height:\"100%\",id:\"yFiUDOOrp\",layoutId:\"yFiUDOOrp\",style:{height:\"100%\",width:\"100%\"},variant:\"dzL2fCSaZ\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jjr9i1-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"HnT2eW1vJ\",scopeId:\"a_baB0xMT\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-500f3ef3-f926-4bb4-9708-99d9e4e66b56, rgb(23, 255, 177))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"ArrowRight\",id:\"HnT2eW1vJ\",layoutId:\"HnT2eW1vJ\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay5.visible&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vyCMgQDxf:{offsetX:-.5,offsetY:-52.671947405382525}},children:/*#__PURE__*/_jsx(Floating,{alignment:\"start\",anchorRef:ref12,className:cx(scopingClassNames),collisionDetection:false,\"data-framer-portal-id\":\"chzzq6\",offsetX:-.4999923849100014,offsetY:-53.09369741761475,onDismiss:overlay5.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(motion.div,{animate:animation1,className:\"framer-1xexqa9\",exit:animation,initial:animation2,ref:ref13,role:\"dialog\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vyCMgQDxf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1p3mell\",\"data-styles-preset\":\"M2tPx4uPL\",children:\"From engaging stakeholders to overcoming resistance, we help organisations embed new technologies and digital ways of working, providing ongoing training and support to ensure lasting success.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1gehbwv\",\"data-styles-preset\":\"OizZu3NL5\",children:\"From engaging stakeholders to overcoming resistance, we help organisations embed new technologies and digital ways of working, providing ongoing training and support to ensure lasting success.\"})}),className:\"framer-32vt1d\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})})})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14lryn4\"}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay6=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gitdle\",\"data-framer-name\":\"Process optimisation\",id:\"gitdle\",onMouseEnter:onMouseEntertxyyif({overlay:overlay6}),ref:ref14,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,width:\"180px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-gm2slt-container\",nodeId:\"w6q6W48cf\",scopeId:\"a_baB0xMT\",children:/*#__PURE__*/_jsx(ListItemV2Copy,{GcMGOEBiy:\"Process optimisation\",height:\"100%\",id:\"w6q6W48cf\",layoutId:\"w6q6W48cf\",style:{height:\"100%\",width:\"100%\"},variant:\"dzL2fCSaZ\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-yf9yky-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Pb3euQiW2\",scopeId:\"a_baB0xMT\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-500f3ef3-f926-4bb4-9708-99d9e4e66b56, rgb(23, 255, 177))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"ArrowRight\",id:\"Pb3euQiW2\",layoutId:\"Pb3euQiW2\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay6.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"start\",anchorRef:ref14,className:cx(scopingClassNames),collisionDetection:false,\"data-framer-portal-id\":\"gitdle\",offsetX:-.4999923849100014,offsetY:-57.09369741761475,onDismiss:overlay6.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(motion.div,{animate:animation1,className:\"framer-2phkai\",exit:animation,initial:animation2,ref:ref15,role:\"dialog\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vyCMgQDxf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1p3mell\",\"data-styles-preset\":\"M2tPx4uPL\",children:\"We help organisations enhance their processes to deliver services more efficiently and effectively. From cloud solutions that streamline workflows to tracking systems that enable real-time supply chain control, we can do it all.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1gehbwv\",\"data-styles-preset\":\"OizZu3NL5\",children:\"We help organisations enhance their processes to deliver services more efficiently and effectively. From cloud solutions that streamline workflows to tracking systems that enable real-time supply chain control, we can do it all.\"})}),className:\"framer-1rtgrli\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})})})]})})})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mmziah hidden-1y4mrjo hidden-17u66c1\",\"data-framer-name\":\"List\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1cisa53\",\"data-framer-name\":\"Research\",children:[/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay7=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,width:\"81px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-erxyki-container\",id:\"erxyki\",nodeId:\"dPx2xSdY9\",ref:ref16,scopeId:\"a_baB0xMT\",children:/*#__PURE__*/_jsx(ListItemV2Copy,{fwJqTKFK5:fwJqTKFK5txyyif({overlay:overlay7}),GcMGOEBiy:\"Research\",height:\"100%\",id:\"dPx2xSdY9\",layoutId:\"dPx2xSdY9\",style:{height:\"100%\",width:\"100%\"},variant:\"dzL2fCSaZ\",width:\"100%\"})})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1gehbwv\",\"data-styles-preset\":\"OizZu3NL5\",children:\"Leveraging both data science and qualitative methodologies, we help organisations understand user needs to inform the design of systems and services that are user-centric, efficient and accessible.\"})}),className:\"framer-4kjp4w hidden-18tjg6n\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-qftvsn\"}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-11jx1sw\",\"data-framer-name\":\"Strategy\",children:[/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay8=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,width:\"74px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-tf9cc8-container\",id:\"tf9cc8\",nodeId:\"YcoqAce0r\",ref:ref17,scopeId:\"a_baB0xMT\",children:/*#__PURE__*/_jsx(ListItemV2Copy,{fwJqTKFK5:fwJqTKFK5txyyif({overlay:overlay8}),GcMGOEBiy:\"Strategy\",height:\"100%\",id:\"YcoqAce0r\",layoutId:\"YcoqAce0r\",style:{height:\"100%\",width:\"100%\"},variant:\"dzL2fCSaZ\",width:\"100%\"})})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1gehbwv\",\"data-styles-preset\":\"OizZu3NL5\",children:\"Whether you need a data, digital or cybersecurity strategy, we help organisations create a compelling vision where the latest technologies are used to improve operations and services, and to implement that vision. \"})}),className:\"framer-8dz6x2 hidden-18tjg6n\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1qh8bhk\"}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1vvdqqp\",\"data-framer-name\":\"Software Development\",children:[/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay9=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,width:\"199px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-dmfaed-container\",id:\"dmfaed\",nodeId:\"eQfx4kGsn\",ref:ref18,scopeId:\"a_baB0xMT\",children:/*#__PURE__*/_jsx(ListItemV2Copy,{fwJqTKFK5:fwJqTKFK5txyyif({overlay:overlay9}),GcMGOEBiy:\"Software development\",height:\"100%\",id:\"eQfx4kGsn\",layoutId:\"eQfx4kGsn\",style:{height:\"100%\",width:\"100%\"},variant:\"dzL2fCSaZ\",width:\"100%\"})})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1gehbwv\",\"data-styles-preset\":\"OizZu3NL5\",children:\"Our custom digital solutions help organisations work smarter and maximise their impact. From delivering business intelligence platforms, to building digital public infrastructure, we can do it all.\"})}),className:\"framer-nffi24 hidden-18tjg6n\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1k9un1o\"}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-s7v07x\",\"data-framer-name\":\"Data analytics\",children:[/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,enabled:isDisplayed2(),children:overlay10=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,width:\"122px\",children:/*#__PURE__*/_jsxs(Container,{className:\"framer-1s425pr-container\",id:\"1s425pr\",nodeId:\"WK4mtmoPW\",ref:ref19,scopeId:\"a_baB0xMT\",children:[/*#__PURE__*/_jsx(ListItemV2Copy,{fwJqTKFK5:fwJqTKFK5txyyif({overlay:overlay10}),GcMGOEBiy:\"Data analytics\",height:\"100%\",id:\"WK4mtmoPW\",layoutId:\"WK4mtmoPW\",style:{height:\"100%\",width:\"100%\"},variant:\"dzL2fCSaZ\",width:\"100%\"}),isDisplayed2()&&/*#__PURE__*/_jsx(AnimatePresence,{children:overlay10.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref19,className:cx(scopingClassNames),collisionDetection:false,\"data-framer-portal-id\":\"1s425pr\",offsetX:326.0000044738408,offsetY:.26566077492316253,onDismiss:overlay10.hide,placement:\"left\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(motion.div,{animate:animation1,className:\"framer-175xd4g hidden-18tjg6n\",exit:animation,initial:animation2,ref:ref20,role:\"dialog\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1p3mell\",\"data-styles-preset\":\"M2tPx4uPL\",children:\"From data strategy formulation to developing specialist data platforms, we help ensure the responsible handling of data throughout its lifecycle, while unlocking its value to support decision making.\"})}),className:\"framer-1qd8pcq\",fonts:[\"Inter\"],transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true})})})})]})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1gehbwv\",\"data-styles-preset\":\"OizZu3NL5\",children:\"From data strategy formulation to developing specialist data platforms, we help ensure the responsible handling of data throughout its lifecycle, while unlocking its value to support decision making.\"})}),className:\"framer-xz8xg1 hidden-18tjg6n\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1oxifr\"}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-iog7vr\",\"data-framer-name\":\"Ai Augmentation\",children:[/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay11=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,width:\"184px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-toofq3-container\",id:\"toofq3\",nodeId:\"eHSEGjJVx\",ref:ref21,scopeId:\"a_baB0xMT\",children:/*#__PURE__*/_jsx(ListItemV2Copy,{fwJqTKFK5:fwJqTKFK5txyyif({overlay:overlay11}),GcMGOEBiy:\"Artificial intelligence\",height:\"100%\",id:\"eHSEGjJVx\",layoutId:\"eHSEGjJVx\",style:{height:\"100%\",width:\"100%\"},variant:\"dzL2fCSaZ\",width:\"100%\"})})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1gehbwv\",\"data-styles-preset\":\"OizZu3NL5\",children:\"From tuning large language models to developing advanced computer vision tools, we develop AI tools that streamline processes, enhance service delivery and help organisations anticipate future needs.\\xa0\"})}),className:\"framer-1czficv hidden-18tjg6n\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-17h7ixj\"}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-8g83ly\",\"data-framer-name\":\"Change management\",children:[/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay12=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,width:\"187px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-4cnqkz-container\",id:\"4cnqkz\",nodeId:\"OKHe0eu3b\",ref:ref22,scopeId:\"a_baB0xMT\",children:/*#__PURE__*/_jsx(ListItemV2Copy,{fwJqTKFK5:fwJqTKFK5txyyif({overlay:overlay12}),GcMGOEBiy:\"Change management\",height:\"100%\",id:\"OKHe0eu3b\",layoutId:\"OKHe0eu3b\",style:{height:\"100%\",width:\"100%\"},variant:\"dzL2fCSaZ\",width:\"100%\"})})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1gehbwv\",\"data-styles-preset\":\"OizZu3NL5\",children:\"From engaging stakeholders to overcoming resistance, we help organisations embed new technologies and digital ways of working, providing ongoing training and support to ensure lasting success.\"})}),className:\"framer-1y5ui1k hidden-18tjg6n\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-121nzih\"}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-k1wbx0\",\"data-framer-name\":\"Process optimisation\",children:[/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay13=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,width:\"180px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1f440xt-container\",id:\"1f440xt\",nodeId:\"kCZ5SFnYZ\",ref:ref23,scopeId:\"a_baB0xMT\",children:/*#__PURE__*/_jsx(ListItemV2Copy,{fwJqTKFK5:fwJqTKFK5txyyif({overlay:overlay13}),GcMGOEBiy:\"Process optimisation\",height:\"100%\",id:\"kCZ5SFnYZ\",layoutId:\"kCZ5SFnYZ\",style:{height:\"100%\",width:\"100%\"},variant:\"dzL2fCSaZ\",width:\"100%\"})})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1gehbwv\",\"data-styles-preset\":\"OizZu3NL5\",children:\"We help organisations enhance their processes to deliver services more efficiently and effectively. From cloud solutions that streamline workflows to tracking systems that enable real-time supply chain control, our teams can help.\"})}),className:\"framer-oyamlm hidden-18tjg6n\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ppvb30\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-12v8k6c-container\",nodeId:\"UpD7zfJtI\",scopeId:\"a_baB0xMT\",children:/*#__PURE__*/_jsx(ExploreOurCapabilitiesButton,{height:\"100%\",id:\"UpD7zfJtI\",layoutId:\"UpD7zfJtI\",style:{height:\"100%\"},variant:\"FnZppxX3a\",width:\"100%\"})})})})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-ze2ct7\",\"data-framer-name\":\"Sectors wrapper\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-106ivxb\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-12dclth\",\"data-framer-name\":\"Sectors\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u6b8ju\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1tgqiyw\",\"data-styles-preset\":\"taF_eb2g0\",children:\"Our sectors\"})}),className:\"framer-1v9a8f7\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12fxzwl\",\"data-styles-preset\":\"kMBU5ZLo7\",children:\"Our work spans multiple sectors, but we are known for catalysing change in:\\xa0\\xa0\"})}),className:\"framer-1q9nun7\",\"data-framer-name\":\"Blurb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-s1i5mm\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d8qx8c\",children:[/*#__PURE__*/_jsx(Link,{href:{hash:\":V9SaPhrv5\",webPageId:\"x0cExXjQn\"},motionChild:true,nodeId:\"IzGxH__8J\",openInNewTab:false,scopeId:\"a_baB0xMT\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-d3pglp framer-1yjdho1\",whileHover:animation4,children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Security icon\",fit:\"fit\",pixelHeight:192,pixelWidth:169,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/YdSrtJVzCsDpzOlkwokUsF8iyY.png\"},className:\"framer-zvzmq5\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1gehbwv\",\"data-styles-preset\":\"OizZu3NL5\",children:\"Security\"})}),className:\"framer-hrc9of\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":vMAbpOkvR\",webPageId:\"x0cExXjQn\"},motionChild:true,nodeId:\"E0VME2oXq\",openInNewTab:false,scopeId:\"a_baB0xMT\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1y30ctu framer-1yjdho1\",whileHover:animation4,children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Governance icon\",fit:\"fit\",pixelHeight:190,pixelWidth:190,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/v4aPv74Amgx4C8FEgX5Sb88VVuQ.png\"},className:\"framer-husdcb\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1gehbwv\",\"data-styles-preset\":\"OizZu3NL5\",children:\"Governance\"})}),className:\"framer-rdb4ka\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":rDtigPTYP\",webPageId:\"x0cExXjQn\"},motionChild:true,nodeId:\"MyUcn9kHJ\",openInNewTab:false,scopeId:\"a_baB0xMT\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-r81fbo framer-1yjdho1\",whileHover:animation4,children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:150,pixelWidth:161,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/6NhaT9xIdKoz9ksOdLRpVHpJQzo.svg\"},className:\"framer-rqban6\",transformTemplate:transformTemplate2}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1gehbwv\",\"data-styles-preset\":\"OizZu3NL5\",children:\"Information integrity\"})}),className:\"framer-1tn2aqx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":HEiZMkA94\",webPageId:\"x0cExXjQn\"},motionChild:true,nodeId:\"DYRILCj89\",openInNewTab:false,scopeId:\"a_baB0xMT\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-pz1ssw framer-1yjdho1\",whileHover:animation4,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1gehbwv\",\"data-styles-preset\":\"OizZu3NL5\",children:\"Education\"})}),className:\"framer-8xmdvc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:188,pixelWidth:190,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/tVnK3RuYjEkH0Wsqt1LrzXx0fA.png\"},className:\"framer-1aql1hi\",transformTemplate:transformTemplate2})]})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":dWsJy10CA\",webPageId:\"x0cExXjQn\"},motionChild:true,nodeId:\"ziCnDqshd\",openInNewTab:false,scopeId:\"a_baB0xMT\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-qo1uqr framer-1yjdho1\",whileHover:animation4,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1gehbwv\",\"data-styles-preset\":\"OizZu3NL5\",children:\"Social protection\"})}),className:\"framer-occlic\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:150,pixelWidth:166,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/1usiKSHOTjdFwSzC40X2M5ZVEQ.svg\"},className:\"framer-zfch18\",transformTemplate:transformTemplate2})]})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":iHhTb3bMw\",webPageId:\"x0cExXjQn\"},motionChild:true,nodeId:\"JoVYmDIzQ\",openInNewTab:false,scopeId:\"a_baB0xMT\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1rynquh framer-1yjdho1\",whileHover:animation4,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1gehbwv\",\"data-styles-preset\":\"OizZu3NL5\",children:\"Justice\"})}),className:\"framer-1qqgtff\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:150,pixelWidth:150,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/bk957tLCCyhLBcLnzN4V19sldwY.svg\"},className:\"framer-511tbt\",transformTemplate:transformTemplate2})]})})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qbfm2s-container\",nodeId:\"ejRNGvNJD\",scopeId:\"a_baB0xMT\",children:/*#__PURE__*/_jsx(ExploreOurSectorsButton,{height:\"100%\",id:\"ejRNGvNJD\",layoutId:\"ejRNGvNJD\",style:{height:\"100%\"},variant:\"ftnMSPMKz\",width:\"100%\"})})})]})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-18t2aa1\",\"data-framer-name\":\"Case studies wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-12ygkdi\",\"data-framer-name\":\"Case studies\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i66pug\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1tgqiyw\",\"data-styles-preset\":\"taF_eb2g0\",children:\"Featured case studies and products\"})}),className:\"framer-1ska99v\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12fxzwl\",\"data-styles-preset\":\"kMBU5ZLo7\",children:\"A selection of our work guiding our partners through digital transformation.\\xa0\"})}),className:\"framer-1rh9n7f\",\"data-framer-name\":\"Blurb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-10kp4sx-container hidden-18tjg6n\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"R3h37S3WD\",scopeId:\"a_baB0xMT\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vyCMgQDxf:{arrowObject:{arrowFill:\"rgba(237, 237, 237, 0.85)\",arrowPadding:0,arrowRadius:42,arrowSize:28,showMouseControls:true},gap:25,paddingPerSide:true,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:6,dotSize:5,dotsOpacity:.5,dotsPadding:8,dotsRadius:50,showProgressDots:true,showScrollbar:false},sizingObject:{heightInset:0,heightRows:1,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"columns\"},snapObject:{fluid:true,snap:true,snapEdge:\"center\"}}},children:/*#__PURE__*/_jsx(Carousel,{align:\"flex-start\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(237, 237, 237, 0.85)\",arrowPadding:0,arrowRadius:42,arrowSize:31,showMouseControls:false},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:30,height:\"100%\",id:\"R3h37S3WD\",layoutId:\"R3h37S3WD\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:0,dotSize:5,dotsOpacity:.5,dotsPadding:8,dotsRadius:50,showProgressDots:true,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:3,widthInset:0,widthType:\"columns\"},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-9jxq08\",\"data-framer-name\":\"Blog1\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"rLNfLIt4L\",data:Content,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:0},select:[{collection:\"rLNfLIt4L\",name:\"W4QrcfAKT\",type:\"Identifier\"},{collection:\"rLNfLIt4L\",name:\"WIWif6MVY\",type:\"Identifier\"},{collection:\"rLNfLIt4L\",name:\"KFF9hrGZu\",type:\"Identifier\"},{collection:\"rLNfLIt4L\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"rLNfLIt4L\",name:\"an9sxyjSr\",type:\"Identifier\"},operator:\"and\",right:{left:{collection:\"rLNfLIt4L\",name:\"teubvvXC7\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"ntfj64BQB\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({id:idrLNfLIt4L,KFF9hrGZu:KFF9hrGZurLNfLIt4L,W4QrcfAKT:W4QrcfAKTrLNfLIt4L,WIWif6MVY:WIWif6MVYrLNfLIt4L},index)=>{W4QrcfAKTrLNfLIt4L??=\"\";WIWif6MVYrLNfLIt4L??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`rLNfLIt4L-${idrLNfLIt4L}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{W4QrcfAKT:W4QrcfAKTrLNfLIt4L},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{W4QrcfAKT:W4QrcfAKTrLNfLIt4L},webPageId:\"RNUyqopaE\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:175,children:/*#__PURE__*/_jsx(Container,{className:\"framer-hzv8d8-container\",inComponentSlot:true,nodeId:\"ZjC1edRYm\",rendersWithMotion:true,scopeId:\"a_baB0xMT\",children:/*#__PURE__*/_jsx(CMSCard2,{dA3yp213P:toResponsiveImage(KFF9hrGZurLNfLIt4L),height:\"100%\",id:\"ZjC1edRYm\",layoutId:\"ZjC1edRYm\",variant:\"fmJF5xVmA\",width:\"100%\",wlLpm_7gw:WIWif6MVYrLNfLIt4L,xnZVHwVjg:\"rgb(1, 31, 61)\",yecEbYAR9:\"rgb(255, 255, 255)\",zgAcIP2Gz:resolvedLinks1[0]})})})})})},idrLNfLIt4L);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-10pxoql\",\"data-framer-name\":\"Blog2\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"YSAd73ynN\",data:Content,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"YSAd73ynN\",name:\"W4QrcfAKT\",type:\"Identifier\"},{collection:\"YSAd73ynN\",name:\"WIWif6MVY\",type:\"Identifier\"},{collection:\"YSAd73ynN\",name:\"KFF9hrGZu\",type:\"Identifier\"},{collection:\"YSAd73ynN\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"YSAd73ynN\",name:\"an9sxyjSr\",type:\"Identifier\"},operator:\"and\",right:{left:{collection:\"YSAd73ynN\",name:\"teubvvXC7\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"ntfj64BQB\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({id:idYSAd73ynN,KFF9hrGZu:KFF9hrGZuYSAd73ynN,W4QrcfAKT:W4QrcfAKTYSAd73ynN,WIWif6MVY:WIWif6MVYYSAd73ynN},index1)=>{W4QrcfAKTYSAd73ynN??=\"\";WIWif6MVYYSAd73ynN??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`YSAd73ynN-${idYSAd73ynN}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{W4QrcfAKT:W4QrcfAKTYSAd73ynN},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{W4QrcfAKT:W4QrcfAKTYSAd73ynN},webPageId:\"RNUyqopaE\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:175,children:/*#__PURE__*/_jsx(Container,{className:\"framer-48vbsx-container\",inComponentSlot:true,nodeId:\"pKT8Kfhk2\",rendersWithMotion:true,scopeId:\"a_baB0xMT\",children:/*#__PURE__*/_jsx(CMSCard2,{dA3yp213P:toResponsiveImage(KFF9hrGZuYSAd73ynN),height:\"100%\",id:\"pKT8Kfhk2\",layoutId:\"pKT8Kfhk2\",variant:\"fmJF5xVmA\",width:\"100%\",wlLpm_7gw:WIWif6MVYYSAd73ynN,xnZVHwVjg:\"var(--token-c0fccd5f-2cf7-4508-a86c-f66a665c7d54, rgb(1, 101, 165))\",yecEbYAR9:\"rgb(255, 255, 255)\",zgAcIP2Gz:resolvedLinks2[0]})})})})})},idYSAd73ynN);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-5b1exn\",\"data-framer-name\":\"Blog3\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"qHRNMdQUa\",data:Content,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},select:[{collection:\"qHRNMdQUa\",name:\"W4QrcfAKT\",type:\"Identifier\"},{collection:\"qHRNMdQUa\",name:\"WIWif6MVY\",type:\"Identifier\"},{collection:\"qHRNMdQUa\",name:\"KFF9hrGZu\",type:\"Identifier\"},{collection:\"qHRNMdQUa\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"qHRNMdQUa\",name:\"an9sxyjSr\",type:\"Identifier\"},operator:\"and\",right:{left:{collection:\"qHRNMdQUa\",name:\"teubvvXC7\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"ntfj64BQB\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2?.map(({id:idqHRNMdQUa,KFF9hrGZu:KFF9hrGZuqHRNMdQUa,W4QrcfAKT:W4QrcfAKTqHRNMdQUa,WIWif6MVY:WIWif6MVYqHRNMdQUa},index2)=>{W4QrcfAKTqHRNMdQUa??=\"\";WIWif6MVYqHRNMdQUa??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`qHRNMdQUa-${idqHRNMdQUa}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{W4QrcfAKT:W4QrcfAKTqHRNMdQUa},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{W4QrcfAKT:W4QrcfAKTqHRNMdQUa},webPageId:\"RNUyqopaE\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:175,children:/*#__PURE__*/_jsx(Container,{className:\"framer-u4ang9-container\",inComponentSlot:true,nodeId:\"qbXGLWGBD\",rendersWithMotion:true,scopeId:\"a_baB0xMT\",children:/*#__PURE__*/_jsx(CMSCard2,{dA3yp213P:toResponsiveImage(KFF9hrGZuqHRNMdQUa),height:\"100%\",id:\"qbXGLWGBD\",layoutId:\"qbXGLWGBD\",variant:\"fmJF5xVmA\",width:\"100%\",wlLpm_7gw:WIWif6MVYqHRNMdQUa,xnZVHwVjg:\"var(--token-bd98839e-23a8-4d7f-b04b-08e758845e76, rgb(1, 31, 61))\",yecEbYAR9:\"rgb(255, 255, 255)\",zgAcIP2Gz:resolvedLinks3[0]})})})})})},idqHRNMdQUa);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1erf0kb\",\"data-framer-name\":\"Blog4\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"PVfd04EJx\",data:Content,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:3},select:[{collection:\"PVfd04EJx\",name:\"W4QrcfAKT\",type:\"Identifier\"},{collection:\"PVfd04EJx\",name:\"WIWif6MVY\",type:\"Identifier\"},{collection:\"PVfd04EJx\",name:\"KFF9hrGZu\",type:\"Identifier\"},{collection:\"PVfd04EJx\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"PVfd04EJx\",name:\"an9sxyjSr\",type:\"Identifier\"},operator:\"and\",right:{left:{collection:\"PVfd04EJx\",name:\"teubvvXC7\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"ntfj64BQB\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},children:(collection3,paginationInfo3,loadMore3)=>/*#__PURE__*/_jsx(_Fragment,{children:collection3?.map(({id:idPVfd04EJx,KFF9hrGZu:KFF9hrGZuPVfd04EJx,W4QrcfAKT:W4QrcfAKTPVfd04EJx,WIWif6MVY:WIWif6MVYPVfd04EJx},index3)=>{W4QrcfAKTPVfd04EJx??=\"\";WIWif6MVYPVfd04EJx??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`PVfd04EJx-${idPVfd04EJx}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{W4QrcfAKT:W4QrcfAKTPVfd04EJx},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{W4QrcfAKT:W4QrcfAKTPVfd04EJx},webPageId:\"RNUyqopaE\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:175,children:/*#__PURE__*/_jsx(Container,{className:\"framer-2sxlos-container\",inComponentSlot:true,nodeId:\"i0qgYAOP2\",rendersWithMotion:true,scopeId:\"a_baB0xMT\",children:/*#__PURE__*/_jsx(CMSCard2,{dA3yp213P:toResponsiveImage(KFF9hrGZuPVfd04EJx),height:\"100%\",id:\"i0qgYAOP2\",layoutId:\"i0qgYAOP2\",variant:\"fmJF5xVmA\",width:\"100%\",wlLpm_7gw:WIWif6MVYPVfd04EJx,xnZVHwVjg:\"var(--token-c0fccd5f-2cf7-4508-a86c-f66a665c7d54, rgb(1, 101, 165))\",yecEbYAR9:\"rgb(255, 255, 255)\",zgAcIP2Gz:resolvedLinks4[0]})})})})})},idPVfd04EJx);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-14vlr20\",\"data-framer-name\":\"Product3\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"LqCvQAeHd\",data:Content,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},select:[{collection:\"LqCvQAeHd\",name:\"W4QrcfAKT\",type:\"Identifier\"},{collection:\"LqCvQAeHd\",name:\"WIWif6MVY\",type:\"Identifier\"},{collection:\"LqCvQAeHd\",name:\"KFF9hrGZu\",type:\"Identifier\"},{collection:\"LqCvQAeHd\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"LqCvQAeHd\",name:\"teubvvXC7\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"Jnza1gVO7\"},type:\"BinaryOperation\"}},children:(collection4,paginationInfo4,loadMore4)=>/*#__PURE__*/_jsx(_Fragment,{children:collection4?.map(({id:idLqCvQAeHd,KFF9hrGZu:KFF9hrGZuLqCvQAeHd,W4QrcfAKT:W4QrcfAKTLqCvQAeHd,WIWif6MVY:WIWif6MVYLqCvQAeHd},index4)=>{W4QrcfAKTLqCvQAeHd??=\"\";WIWif6MVYLqCvQAeHd??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`LqCvQAeHd-${idLqCvQAeHd}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{W4QrcfAKT:W4QrcfAKTLqCvQAeHd},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{W4QrcfAKT:W4QrcfAKTLqCvQAeHd},webPageId:\"RNUyqopaE\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:175,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1m9emmk-container\",inComponentSlot:true,nodeId:\"nE4UScPIx\",rendersWithMotion:true,scopeId:\"a_baB0xMT\",children:/*#__PURE__*/_jsx(CMSCard2,{dA3yp213P:toResponsiveImage(KFF9hrGZuLqCvQAeHd),height:\"100%\",id:\"nE4UScPIx\",layoutId:\"nE4UScPIx\",variant:\"fmJF5xVmA\",width:\"100%\",wlLpm_7gw:WIWif6MVYLqCvQAeHd,xnZVHwVjg:\"rgb(1, 31, 61)\",yecEbYAR9:\"rgb(255, 255, 255)\",zgAcIP2Gz:resolvedLinks5[0]})})})})})},idLqCvQAeHd);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-kefqco\",\"data-framer-name\":\"Product2\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"ahHXYtAbF\",data:Content,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"ahHXYtAbF\",name:\"W4QrcfAKT\",type:\"Identifier\"},{collection:\"ahHXYtAbF\",name:\"WIWif6MVY\",type:\"Identifier\"},{collection:\"ahHXYtAbF\",name:\"KFF9hrGZu\",type:\"Identifier\"},{collection:\"ahHXYtAbF\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"ahHXYtAbF\",name:\"teubvvXC7\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"Jnza1gVO7\"},type:\"BinaryOperation\"}},children:(collection5,paginationInfo5,loadMore5)=>/*#__PURE__*/_jsx(_Fragment,{children:collection5?.map(({id:idahHXYtAbF,KFF9hrGZu:KFF9hrGZuahHXYtAbF,W4QrcfAKT:W4QrcfAKTahHXYtAbF,WIWif6MVY:WIWif6MVYahHXYtAbF},index5)=>{W4QrcfAKTahHXYtAbF??=\"\";WIWif6MVYahHXYtAbF??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`ahHXYtAbF-${idahHXYtAbF}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{W4QrcfAKT:W4QrcfAKTahHXYtAbF},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{W4QrcfAKT:W4QrcfAKTahHXYtAbF},webPageId:\"RNUyqopaE\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:175,children:/*#__PURE__*/_jsx(Container,{className:\"framer-hh1cn1-container\",inComponentSlot:true,nodeId:\"e0zVyL_xZ\",rendersWithMotion:true,scopeId:\"a_baB0xMT\",children:/*#__PURE__*/_jsx(CMSCard2,{dA3yp213P:toResponsiveImage(KFF9hrGZuahHXYtAbF),height:\"100%\",id:\"e0zVyL_xZ\",layoutId:\"e0zVyL_xZ\",variant:\"fmJF5xVmA\",width:\"100%\",wlLpm_7gw:WIWif6MVYahHXYtAbF,xnZVHwVjg:\"var(--token-c0fccd5f-2cf7-4508-a86c-f66a665c7d54, rgb(1, 101, 165))\",yecEbYAR9:\"rgb(255, 255, 255)\",zgAcIP2Gz:resolvedLinks6[0]})})})})})},idahHXYtAbF);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-r0t05d\",\"data-framer-name\":\"Product1\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"rqzb3GOr2\",data:Content,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:0},select:[{collection:\"rqzb3GOr2\",name:\"W4QrcfAKT\",type:\"Identifier\"},{collection:\"rqzb3GOr2\",name:\"WIWif6MVY\",type:\"Identifier\"},{collection:\"rqzb3GOr2\",name:\"KFF9hrGZu\",type:\"Identifier\"},{collection:\"rqzb3GOr2\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"rqzb3GOr2\",name:\"teubvvXC7\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"Jnza1gVO7\"},type:\"BinaryOperation\"}},children:(collection6,paginationInfo6,loadMore6)=>/*#__PURE__*/_jsx(_Fragment,{children:collection6?.map(({id:idrqzb3GOr2,KFF9hrGZu:KFF9hrGZurqzb3GOr2,W4QrcfAKT:W4QrcfAKTrqzb3GOr2,WIWif6MVY:WIWif6MVYrqzb3GOr2},index6)=>{W4QrcfAKTrqzb3GOr2??=\"\";WIWif6MVYrqzb3GOr2??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`rqzb3GOr2-${idrqzb3GOr2}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{W4QrcfAKT:W4QrcfAKTrqzb3GOr2},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{W4QrcfAKT:W4QrcfAKTrqzb3GOr2},webPageId:\"RNUyqopaE\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:175,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1h6b9ty-container\",inComponentSlot:true,nodeId:\"rLgKJwJao\",rendersWithMotion:true,scopeId:\"a_baB0xMT\",children:/*#__PURE__*/_jsx(CMSCard2,{dA3yp213P:toResponsiveImage(KFF9hrGZurqzb3GOr2),height:\"100%\",id:\"rLgKJwJao\",layoutId:\"rLgKJwJao\",variant:\"fmJF5xVmA\",width:\"100%\",wlLpm_7gw:WIWif6MVYrqzb3GOr2,xnZVHwVjg:\"rgb(1, 31, 61)\",yecEbYAR9:\"rgb(255, 255, 255)\",zgAcIP2Gz:resolvedLinks7[0]})})})})})},idrqzb3GOr2);})})})})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})}),isDisplayed3()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-12t5mg4 hidden-1y4mrjo hidden-17u66c1\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"Kx832efZV\",data:Content,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"Kx832efZV\",name:\"W4QrcfAKT\",type:\"Identifier\"},{collection:\"Kx832efZV\",name:\"KFF9hrGZu\",type:\"Identifier\"},{collection:\"Kx832efZV\",name:\"WIWif6MVY\",type:\"Identifier\"},{collection:\"Kx832efZV\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"Kx832efZV\",name:\"an9sxyjSr\",type:\"Identifier\"},operator:\"and\",right:{left:{collection:\"Kx832efZV\",name:\"teubvvXC7\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"ntfj64BQB\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},children:(collection7,paginationInfo7,loadMore7)=>/*#__PURE__*/_jsx(_Fragment,{children:collection7?.map(({id:idKx832efZV,KFF9hrGZu:KFF9hrGZuKx832efZV,W4QrcfAKT:W4QrcfAKTKx832efZV,WIWif6MVY:WIWif6MVYKx832efZV},index7)=>{W4QrcfAKTKx832efZV??=\"\";WIWif6MVYKx832efZV??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`Kx832efZV-${idKx832efZV}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{W4QrcfAKT:W4QrcfAKTKx832efZV},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{W4QrcfAKT:W4QrcfAKTKx832efZV},webPageId:\"RNUyqopaE\"},motionChild:true,nodeId:\"wdYLT4sXg\",scopeId:\"a_baB0xMT\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-19bbtw2 framer-1yjdho1\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bwt39n\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"290px\",...toResponsiveImage(KFF9hrGZuKx832efZV)},className:\"framer-12g9s7p\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1rabpqg\",\"data-styles-preset\":\"tBDU2PZUt\",children:\"Title\"})}),className:\"framer-1f2rxi6\",fonts:[\"Inter\"],text:WIWif6MVYKx832efZV,verticalAlignment:\"top\",withExternalLayout:true})]})})})})},idKx832efZV);})})})})}),isDisplayed3()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-z508qv hidden-1y4mrjo hidden-17u66c1\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"cdoOSZtXr\",data:Content,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},select:[{collection:\"cdoOSZtXr\",name:\"W4QrcfAKT\",type:\"Identifier\"},{collection:\"cdoOSZtXr\",name:\"KFF9hrGZu\",type:\"Identifier\"},{collection:\"cdoOSZtXr\",name:\"WIWif6MVY\",type:\"Identifier\"},{collection:\"cdoOSZtXr\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"cdoOSZtXr\",name:\"an9sxyjSr\",type:\"Identifier\"},operator:\"and\",right:{left:{collection:\"cdoOSZtXr\",name:\"teubvvXC7\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"ntfj64BQB\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},children:(collection8,paginationInfo8,loadMore8)=>/*#__PURE__*/_jsx(_Fragment,{children:collection8?.map(({id:idcdoOSZtXr,KFF9hrGZu:KFF9hrGZucdoOSZtXr,W4QrcfAKT:W4QrcfAKTcdoOSZtXr,WIWif6MVY:WIWif6MVYcdoOSZtXr},index8)=>{W4QrcfAKTcdoOSZtXr??=\"\";WIWif6MVYcdoOSZtXr??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`cdoOSZtXr-${idcdoOSZtXr}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{W4QrcfAKT:W4QrcfAKTcdoOSZtXr},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{W4QrcfAKT:W4QrcfAKTcdoOSZtXr},webPageId:\"RNUyqopaE\"},motionChild:true,nodeId:\"T8Oby4wGK\",scopeId:\"a_baB0xMT\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-143qw9x framer-1yjdho1\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qeni0q\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"290px\",...toResponsiveImage(KFF9hrGZucdoOSZtXr)},className:\"framer-12t6hge\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1rabpqg\",\"data-styles-preset\":\"tBDU2PZUt\",children:\"Title\"})}),className:\"framer-1gnke8n\",fonts:[\"Inter\"],text:WIWif6MVYcdoOSZtXr,verticalAlignment:\"top\",withExternalLayout:true})]})})})})},idcdoOSZtXr);})})})})}),isDisplayed3()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-10jnuj hidden-1y4mrjo hidden-17u66c1\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"jB9I5OYqB\",data:Content,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:3},select:[{collection:\"jB9I5OYqB\",name:\"W4QrcfAKT\",type:\"Identifier\"},{collection:\"jB9I5OYqB\",name:\"KFF9hrGZu\",type:\"Identifier\"},{collection:\"jB9I5OYqB\",name:\"WIWif6MVY\",type:\"Identifier\"},{collection:\"jB9I5OYqB\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"jB9I5OYqB\",name:\"an9sxyjSr\",type:\"Identifier\"},operator:\"and\",right:{left:{collection:\"jB9I5OYqB\",name:\"teubvvXC7\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"ntfj64BQB\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},children:(collection9,paginationInfo9,loadMore9)=>/*#__PURE__*/_jsx(_Fragment,{children:collection9?.map(({id:idjB9I5OYqB,KFF9hrGZu:KFF9hrGZujB9I5OYqB,W4QrcfAKT:W4QrcfAKTjB9I5OYqB,WIWif6MVY:WIWif6MVYjB9I5OYqB},index9)=>{W4QrcfAKTjB9I5OYqB??=\"\";WIWif6MVYjB9I5OYqB??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`jB9I5OYqB-${idjB9I5OYqB}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{W4QrcfAKT:W4QrcfAKTjB9I5OYqB},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{W4QrcfAKT:W4QrcfAKTjB9I5OYqB},webPageId:\"RNUyqopaE\"},motionChild:true,nodeId:\"nP2rniaMH\",scopeId:\"a_baB0xMT\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-yf0l7l framer-1yjdho1\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kz7ydo\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"290px\",...toResponsiveImage(KFF9hrGZujB9I5OYqB)},className:\"framer-jnjfk4\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1rabpqg\",\"data-styles-preset\":\"tBDU2PZUt\",children:\"Title\"})}),className:\"framer-fksrcj\",fonts:[\"Inter\"],text:WIWif6MVYjB9I5OYqB,verticalAlignment:\"top\",withExternalLayout:true})]})})})})},idjB9I5OYqB);})})})})}),isDisplayed3()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1aijsmj hidden-1y4mrjo hidden-17u66c1\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"Ux2OAn3JO\",data:Content,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"Ux2OAn3JO\",name:\"W4QrcfAKT\",type:\"Identifier\"},{collection:\"Ux2OAn3JO\",name:\"KFF9hrGZu\",type:\"Identifier\"},{collection:\"Ux2OAn3JO\",name:\"WIWif6MVY\",type:\"Identifier\"},{collection:\"Ux2OAn3JO\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"Ux2OAn3JO\",name:\"an9sxyjSr\",type:\"Identifier\"},operator:\"and\",right:{left:{collection:\"Ux2OAn3JO\",name:\"teubvvXC7\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"ntfj64BQB\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},children:(collection10,paginationInfo10,loadMore10)=>/*#__PURE__*/_jsx(_Fragment,{children:collection10?.map(({id:idUx2OAn3JO,KFF9hrGZu:KFF9hrGZuUx2OAn3JO,W4QrcfAKT:W4QrcfAKTUx2OAn3JO,WIWif6MVY:WIWif6MVYUx2OAn3JO},index10)=>{W4QrcfAKTUx2OAn3JO??=\"\";WIWif6MVYUx2OAn3JO??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`Ux2OAn3JO-${idUx2OAn3JO}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{W4QrcfAKT:W4QrcfAKTUx2OAn3JO},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{W4QrcfAKT:W4QrcfAKTUx2OAn3JO},webPageId:\"RNUyqopaE\"},motionChild:true,nodeId:\"XL0kYiav7\",scopeId:\"a_baB0xMT\",children:/*#__PURE__*/_jsx(MotionAWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1lw80ib framer-1yjdho1\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1g30d0y\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"290px\",...toResponsiveImage(KFF9hrGZuUx2OAn3JO)},className:\"framer-kpb3w6\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1rabpqg\",\"data-styles-preset\":\"tBDU2PZUt\",children:\"Title\"})}),className:\"framer-1b90z3j\",fonts:[\"Inter\"],text:WIWif6MVYUx2OAn3JO,verticalAlignment:\"top\",withExternalLayout:true})]})})})})},idUx2OAn3JO);})})})})}),isDisplayed3()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1e2cofb hidden-1y4mrjo hidden-17u66c1\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"oOkwlByGf\",data:Content,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:0},select:[{collection:\"oOkwlByGf\",name:\"W4QrcfAKT\",type:\"Identifier\"},{collection:\"oOkwlByGf\",name:\"KFF9hrGZu\",type:\"Identifier\"},{collection:\"oOkwlByGf\",name:\"WIWif6MVY\",type:\"Identifier\"},{collection:\"oOkwlByGf\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"oOkwlByGf\",name:\"teubvvXC7\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"Jnza1gVO7\"},type:\"BinaryOperation\"}},children:(collection11,paginationInfo11,loadMore11)=>/*#__PURE__*/_jsx(_Fragment,{children:collection11?.map(({id:idoOkwlByGf,KFF9hrGZu:KFF9hrGZuoOkwlByGf,W4QrcfAKT:W4QrcfAKToOkwlByGf,WIWif6MVY:WIWif6MVYoOkwlByGf},index11)=>{W4QrcfAKToOkwlByGf??=\"\";WIWif6MVYoOkwlByGf??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`oOkwlByGf-${idoOkwlByGf}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{W4QrcfAKT:W4QrcfAKToOkwlByGf},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{W4QrcfAKT:W4QrcfAKToOkwlByGf},webPageId:\"RNUyqopaE\"},motionChild:true,nodeId:\"tXRfbcXli\",scopeId:\"a_baB0xMT\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1fzl4r9 framer-1yjdho1\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lh6myq\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"290px\",...toResponsiveImage(KFF9hrGZuoOkwlByGf)},className:\"framer-1be3wm4\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1rabpqg\",\"data-styles-preset\":\"tBDU2PZUt\",children:\"Title\"})}),className:\"framer-vmzf3u\",fonts:[\"Inter\"],text:WIWif6MVYoOkwlByGf,verticalAlignment:\"top\",withExternalLayout:true})]})})})})},idoOkwlByGf);})})})})}),isDisplayed3()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1g30e8k hidden-1y4mrjo hidden-17u66c1\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"snYP9jncw\",data:Content,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"snYP9jncw\",name:\"W4QrcfAKT\",type:\"Identifier\"},{collection:\"snYP9jncw\",name:\"KFF9hrGZu\",type:\"Identifier\"},{collection:\"snYP9jncw\",name:\"WIWif6MVY\",type:\"Identifier\"},{collection:\"snYP9jncw\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"snYP9jncw\",name:\"teubvvXC7\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"Jnza1gVO7\"},type:\"BinaryOperation\"}},children:(collection12,paginationInfo12,loadMore12)=>/*#__PURE__*/_jsx(_Fragment,{children:collection12?.map(({id:idsnYP9jncw,KFF9hrGZu:KFF9hrGZusnYP9jncw,W4QrcfAKT:W4QrcfAKTsnYP9jncw,WIWif6MVY:WIWif6MVYsnYP9jncw},index12)=>{W4QrcfAKTsnYP9jncw??=\"\";WIWif6MVYsnYP9jncw??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`snYP9jncw-${idsnYP9jncw}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{W4QrcfAKT:W4QrcfAKTsnYP9jncw},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{W4QrcfAKT:W4QrcfAKTsnYP9jncw},webPageId:\"RNUyqopaE\"},motionChild:true,nodeId:\"igJ4Vonrh\",scopeId:\"a_baB0xMT\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-19vgh97 framer-1yjdho1\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d1q22b\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"290px\",...toResponsiveImage(KFF9hrGZusnYP9jncw)},className:\"framer-qdu66s\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1rabpqg\",\"data-styles-preset\":\"tBDU2PZUt\",children:\"Title\"})}),className:\"framer-3gjouk\",fonts:[\"Inter\"],text:WIWif6MVYsnYP9jncw,verticalAlignment:\"top\",withExternalLayout:true})]})})})})},idsnYP9jncw);})})})})}),isDisplayed3()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1paw8q9 hidden-1y4mrjo hidden-17u66c1\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"Ljdd4IgRZ\",data:Content,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},select:[{collection:\"Ljdd4IgRZ\",name:\"W4QrcfAKT\",type:\"Identifier\"},{collection:\"Ljdd4IgRZ\",name:\"KFF9hrGZu\",type:\"Identifier\"},{collection:\"Ljdd4IgRZ\",name:\"WIWif6MVY\",type:\"Identifier\"},{collection:\"Ljdd4IgRZ\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"Ljdd4IgRZ\",name:\"teubvvXC7\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"Jnza1gVO7\"},type:\"BinaryOperation\"}},children:(collection13,paginationInfo13,loadMore13)=>/*#__PURE__*/_jsx(_Fragment,{children:collection13?.map(({id:idLjdd4IgRZ,KFF9hrGZu:KFF9hrGZuLjdd4IgRZ,W4QrcfAKT:W4QrcfAKTLjdd4IgRZ,WIWif6MVY:WIWif6MVYLjdd4IgRZ},index13)=>{W4QrcfAKTLjdd4IgRZ??=\"\";WIWif6MVYLjdd4IgRZ??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`Ljdd4IgRZ-${idLjdd4IgRZ}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{W4QrcfAKT:W4QrcfAKTLjdd4IgRZ},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{W4QrcfAKT:W4QrcfAKTLjdd4IgRZ},webPageId:\"RNUyqopaE\"},motionChild:true,nodeId:\"u2Q9QUakk\",scopeId:\"a_baB0xMT\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-o96ojd framer-1yjdho1\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9d3zb8\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"290px\",...toResponsiveImage(KFF9hrGZuLjdd4IgRZ)},className:\"framer-1axhgxs\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1rabpqg\",\"data-styles-preset\":\"tBDU2PZUt\",children:\"Title\"})}),className:\"framer-5vynb3\",fonts:[\"Inter\"],text:WIWif6MVYLjdd4IgRZ,verticalAlignment:\"top\",withExternalLayout:true})]})})})})},idLjdd4IgRZ);})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-isx2ye\",\"data-framer-name\":\"CTA wrapper\",id:elementId1,ref:ref24,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-anw3h\",\"data-framer-name\":\"CTA\",children:[/*#__PURE__*/_jsx(\"section\",{className:\"framer-kr89hb\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-1k78f0q\",\"data-styles-preset\":\"sNJXBOtXg\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Let's solve your toughest challenges.\"}),\" \"]})}),className:\"framer-1ve87g9\",\"data-framer-name\":\"Title\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay14=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-i4ubbq-container\",id:\"i4ubbq\",nodeId:\"oc5XarqFm\",ref:ref25,scopeId:\"a_baB0xMT\",children:[/*#__PURE__*/_jsx(GetInTouch,{height:\"100%\",id:\"oc5XarqFm\",layoutId:\"oc5XarqFm\",lqMlwAZy1:lqMlwAZy1txyyif({overlay:overlay14}),style:{height:\"100%\"},variant:\"CyosCIYxu\",width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay14.visible&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZSL_I0K5p:{offsetX:11668162187561393e-22,offsetY:-244.12505204588524}},children:/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref25,className:cx(scopingClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":\"i4ubbq\",offsetX:-12.156284682292608,offsetY:-243.81238081812626,onDismiss:overlay14.hide,placement:\"bottom\",safeArea:false,zIndex:11,children:/*#__PURE__*/_jsxs(motion.div,{animate:animation6,className:\"framer-1n3zgz1\",exit:animation5,initial:animation2,ref:ref26,role:\"dialog\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1y07ckb\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1vndnt7\",\"data-styles-preset\":\"uvRqfJGpa\",style:{\"--framer-text-alignment\":\"center\"},children:\"Here's where you start your journey!\"})}),className:\"framer-1t6tdw4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12fxzwl\",\"data-styles-preset\":\"kMBU5ZLo7\",style:{\"--framer-text-alignment\":\"center\"},children:\"Tell us a bit about the challenge you're facing, and a member of our programmes team will contact you to schedule a consultation.\"})}),className:\"framer-15rb3kk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(FormContainer,{action:\"https://api.framer.com/forms/v1/forms/333f7cd9-6893-4668-9d74-c391353cce33/submit\",className:\"framer-16rckh6\",nodeId:\"Qkx_P99zY\",children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsxs(motion.label,{className:\"framer-nughnu\",\"data-framer-name\":\"Name\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-3pl5l3\",\"data-styles-preset\":\"IH58AJ6Kh\",children:\"Name*\"})}),className:\"framer-uobjyc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1ob8fi8\",inputName:\"Name\",placeholder:\"\",required:true,type:\"text\"})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-a4af7e\",\"data-framer-name\":\"Email\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-3pl5l3\",\"data-styles-preset\":\"IH58AJ6Kh\",children:\"Email*\"})}),className:\"framer-10exnmv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-t46p5z\",inputName:\"Email\",placeholder:\"\",required:true,type:\"email\"})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-16qteqg\",\"data-framer-name\":\"Location\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-3pl5l3\",\"data-styles-preset\":\"IH58AJ6Kh\",children:\"Country*\"})}),className:\"framer-f0k47n\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1v9phzb\",inputName:\"Location\",placeholder:\"\",required:true,type:\"text\"})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-bp6i6y\",\"data-framer-name\":\"Challenge\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-3pl5l3\",\"data-styles-preset\":\"IH58AJ6Kh\",children:\"Your challenge*\"})}),className:\"framer-1jykih7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-lslrho\",inputName:\"Challenge\",placeholder:\"\",required:true,type:\"textarea\"})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZSL_I0K5p:{width:\"232px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"350px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-mkv70o-container\",inComponentSlot:true,nodeId:\"Kno9WTART\",rendersWithMotion:true,scopeId:\"a_baB0xMT\",children:/*#__PURE__*/_jsx(Button3,{height:\"100%\",id:\"Kno9WTART\",layoutId:\"Kno9WTART\",ssYvCKPRG:\"Submit\",style:{height:\"100%\",width:\"100%\"},type:\"submit\",variant:formVariants(formState,{pending:\"FuqV0oAnE\",success:\"SijG7o3eb\"},\"fteEFxJMC\"),width:\"100%\"})})})})]})})]})})})})]})})})})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-elugeg\",\"data-framer-name\":\"Helper section (footer height)\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vyCMgQDxf:{height:670,width:`min(100vw, ${componentViewport?.width||\"100vw\"})`,y:308}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1e3,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-6p1smo-container\",layoutScroll:true,nodeId:\"ZhQiuxnZ6\",scopeId:\"a_baB0xMT\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vyCMgQDxf:{style:{maxWidth:\"100%\",width:\"100%\"},variant:\"CgRD7QGEl\"},ZSL_I0K5p:{variant:\"UfnEQGtgu\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"ZhQiuxnZ6\",layoutId:\"ZhQiuxnZ6\",style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},variant:\"WhgGxSTE7\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:`min(100vw, ${componentViewport?.width||\"100vw\"})`,y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1il1cmm-container\",id:elementId2,layoutScroll:true,nodeId:\"uoavmGCQU\",ref:ref27,scopeId:\"a_baB0xMT\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vyCMgQDxf:{variant:\"sPPQ9oOLT\"},ZSL_I0K5p:{style:{maxHeight:\"100%\",maxWidth:\"100%\",width:\"100%\"},variant:\"FFa_o8vKT\"}},children:/*#__PURE__*/_jsx(NavBar,{height:\"100%\",id:\"uoavmGCQU\",layoutId:\"uoavmGCQU\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"CcS4Nk9Dt\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ZxGUX.framer-1yjdho1, .framer-ZxGUX .framer-1yjdho1 { display: block; }\",\".framer-ZxGUX.framer-1y4mrjo { align-content: center; align-items: center; background-color: var(--token-bd98839e-23a8-4d7f-b04b-08e758845e76, #011f3d); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-ZxGUX .framer-1uenapd { align-content: center; align-items: center; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; pointer-events: auto; position: relative; width: 100%; z-index: 1; }\",\".framer-ZxGUX .framer-lm31y0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 100vh; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 0; }\",\".framer-ZxGUX .framer-lbwe10 { background-color: var(--token-bd98839e-23a8-4d7f-b04b-08e758845e76, #011f3d); flex: none; height: 100.84033613445378vh; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: calc(49.57983193277313% - 100.84033613445378vh / 2); width: 100%; }\",\".framer-ZxGUX .framer-10o7ri9-container { flex: none; height: 100vh; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: calc(50.00000000000002% - 100vh / 2); width: 100%; z-index: 1; }\",\".framer-ZxGUX .framer-ck1uvb { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-ZxGUX .framer-mzqvu7 { 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: 19px 0px 19px 0px; position: relative; width: 100%; }\",\".framer-ZxGUX .framer-1koklnm, .framer-ZxGUX .framer-5o3mtn, .framer-ZxGUX .framer-1raankr, .framer-ZxGUX .framer-4kjp4w, .framer-ZxGUX .framer-8dz6x2, .framer-ZxGUX .framer-nffi24, .framer-ZxGUX .framer-xz8xg1, .framer-ZxGUX .framer-1czficv, .framer-ZxGUX .framer-1y5ui1k, .framer-ZxGUX .framer-oyamlm, .framer-ZxGUX .framer-1f2rxi6, .framer-ZxGUX .framer-1gnke8n, .framer-ZxGUX .framer-fksrcj, .framer-ZxGUX .framer-1b90z3j, .framer-ZxGUX .framer-vmzf3u, .framer-ZxGUX .framer-3gjouk, .framer-ZxGUX .framer-5vynb3 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-ZxGUX .framer-16vgm7a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 7px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 10px 0px 10px; position: relative; width: 807px; }\",\".framer-ZxGUX .framer-857zsv, .framer-ZxGUX .framer-gozr7q { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-ZxGUX .framer-qnhu3h-container, .framer-ZxGUX .framer-hzv8d8-container, .framer-ZxGUX .framer-48vbsx-container, .framer-ZxGUX .framer-u4ang9-container, .framer-ZxGUX .framer-2sxlos-container, .framer-ZxGUX .framer-1m9emmk-container, .framer-ZxGUX .framer-hh1cn1-container, .framer-ZxGUX .framer-1h6b9ty-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-ZxGUX .framer-w1tufb { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 55px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 60px 0px 60px; position: relative; width: 100%; }\",\".framer-ZxGUX .framer-1cwx671-container { flex: none; height: 146px; position: relative; width: 1200px; }\",\".framer-ZxGUX .framer-7sbnzm { align-content: center; align-items: center; background-color: var(--token-bd98839e-23a8-4d7f-b04b-08e758845e76, #011f3d); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 100px 60px 100px 60px; position: relative; width: 100%; z-index: 1; }\",\".framer-ZxGUX .framer-4ghz93 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 71px; height: min-content; justify-content: center; max-width: 1280px; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-ZxGUX .framer-4ie0za { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-ZxGUX .framer-y49jws, .framer-ZxGUX .framer-302pcd, .framer-ZxGUX .framer-119mzxa, .framer-ZxGUX .framer-1v9a8f7, .framer-ZxGUX .framer-1q9nun7, .framer-ZxGUX .framer-1ska99v, .framer-ZxGUX .framer-1rh9n7f, .framer-ZxGUX .framer-1ve87g9, .framer-ZxGUX .framer-1t6tdw4, .framer-ZxGUX .framer-15rb3kk { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-ZxGUX .framer-64x38l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 9px 0px 9px 0px; position: relative; width: 100%; }\",\".framer-ZxGUX .framer-ky7s3z-container { flex: none; height: auto; position: relative; width: auto; z-index: 1; }\",\".framer-ZxGUX .framer-ddk3px-container { aspect-ratio: 1.7767857142857142 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 306px); position: relative; width: 540px; z-index: 1; }\",\".framer-ZxGUX .framer-142qd1z { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 1px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 0; }\",\".framer-ZxGUX .framer-ch8izt { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: center; max-width: 100%; overflow: hidden; padding: 50px 60px 50px 60px; position: relative; width: 1px; }\",\".framer-ZxGUX .framer-6iwc1p { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: wrap; gap: 92px; height: min-content; justify-content: center; max-width: 1280px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-ZxGUX .framer-mfxdin, .framer-ZxGUX .framer-a44uxq, .framer-ZxGUX .framer-1b7nn2p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-ZxGUX .framer-1rv0ob7, .framer-ZxGUX .framer-12a0zz5, .framer-ZxGUX .framer-11zlr6v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-ZxGUX .framer-xpzxhm-container, .framer-ZxGUX .framer-rnq1xt-container { flex: none; height: auto; position: relative; width: 150px; }\",\".framer-ZxGUX .framer-14dnjq6 { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: auto; }\",\".framer-ZxGUX .framer-xtrl10 { --framer-paragraph-spacing: 18px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 191px; word-break: break-word; word-wrap: break-word; }\",\".framer-ZxGUX .framer-n3uto7, .framer-ZxGUX .framer-u6pb3y { background-color: var(--token-500f3ef3-f926-4bb4-9708-99d9e4e66b56, #17ffb1); flex: none; height: 79px; max-width: 100%; overflow: hidden; position: relative; width: 2px; }\",\".framer-ZxGUX .framer-1np0pnj, .framer-ZxGUX .framer-uckqti { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-ZxGUX .framer-9ja51m { --framer-paragraph-spacing: 18px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 110px; word-break: break-word; word-wrap: break-word; }\",\".framer-ZxGUX .framer-4kpzu-container { flex: none; height: auto; position: relative; width: 73px; }\",\".framer-ZxGUX .framer-7qul5z { --framer-paragraph-spacing: 18px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 89px; word-break: break-word; word-wrap: break-word; }\",\".framer-ZxGUX .framer-if38sq { align-content: center; align-items: center; background-color: var(--token-bd98839e-23a8-4d7f-b04b-08e758845e76, #011f3d); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 100px 60px 100px 60px; position: relative; width: 100%; z-index: 1; }\",\".framer-ZxGUX .framer-ny6wjw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 71px; height: min-content; justify-content: flex-start; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-ZxGUX .framer-cccqgi { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: sticky; top: 100px; width: 1px; z-index: 1; }\",\".framer-ZxGUX .framer-1tuemeu-container, .framer-ZxGUX .framer-12v8k6c-container, .framer-ZxGUX .framer-1qbfm2s-container { flex: none; height: 40px; position: relative; width: auto; z-index: 1; }\",\".framer-ZxGUX .framer-1q38mx0 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 45px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: hidden; padding: 8px 0px 0px 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-ZxGUX .framer-1ap0shw, .framer-ZxGUX .framer-fy01jk, .framer-ZxGUX .framer-1hol080, .framer-ZxGUX .framer-oispa1, .framer-ZxGUX .framer-eols7l, .framer-ZxGUX .framer-chzzq6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ZxGUX .framer-6eam53-container, .framer-ZxGUX .framer-erxyki-container { flex: none; height: 27px; position: relative; width: 81px; }\",\".framer-ZxGUX .framer-1gkox3s-container, .framer-ZxGUX .framer-10ofcsr-container, .framer-ZxGUX .framer-12jsy42-container, .framer-ZxGUX .framer-14hwtjs-container, .framer-ZxGUX .framer-1u6x355-container, .framer-ZxGUX .framer-1jjr9i1-container, .framer-ZxGUX .framer-yf9yky-container { align-self: stretch; flex: none; height: auto; position: relative; width: 24px; }\",\".framer-ZxGUX .framer-xoiqs { align-content: center; align-items: center; background-color: var(--token-bd98839e-23a8-4d7f-b04b-08e758845e76, #011f3d); box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 88px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 503px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-ZxGUX .framer-1d2el0g, .framer-ZxGUX .framer-1je54ma, .framer-ZxGUX .framer-ycnxdm, .framer-ZxGUX .framer-1q8dr5m, .framer-ZxGUX .framer-1irimpu, .framer-ZxGUX .framer-14lryn4, .framer-ZxGUX .framer-qftvsn, .framer-ZxGUX .framer-1qh8bhk, .framer-ZxGUX .framer-1k9un1o, .framer-ZxGUX .framer-1oxifr, .framer-ZxGUX .framer-17h7ixj, .framer-ZxGUX .framer-121nzih { background-color: var(--token-500f3ef3-f926-4bb4-9708-99d9e4e66b56, #17ffb1); flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-ZxGUX .framer-qsvv19-container, .framer-ZxGUX .framer-tf9cc8-container { flex: none; height: 27px; position: relative; width: 74px; }\",\".framer-ZxGUX .framer-1lvvlny { align-content: center; align-items: center; background-color: var(--token-bd98839e-23a8-4d7f-b04b-08e758845e76, #011f3d); box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 102px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 503px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-ZxGUX .framer-6tq4i9-container, .framer-ZxGUX .framer-dmfaed-container { flex: none; height: 27px; position: relative; width: 199px; }\",\".framer-ZxGUX .framer-sf0a06 { background-color: var(--token-bd98839e-23a8-4d7f-b04b-08e758845e76, #011f3d); box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05); height: 89px; overflow: visible; position: relative; width: 503px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-ZxGUX .framer-1d9zgsm, .framer-ZxGUX .framer-fruefz { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); white-space: pre-wrap; width: 501px; word-break: break-word; word-wrap: break-word; }\",\".framer-ZxGUX .framer-dp2nez-container, .framer-ZxGUX .framer-1s425pr-container { flex: none; height: 27px; position: relative; width: 122px; }\",\".framer-ZxGUX .framer-1o8yezi { background-color: var(--token-bd98839e-23a8-4d7f-b04b-08e758845e76, #011f3d); box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05); height: 81px; overflow: visible; position: relative; width: 504px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-ZxGUX .framer-wrn87d { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 50%; position: absolute; top: 49%; transform: translate(-50%, -50%); white-space: pre-wrap; width: 503px; word-break: break-word; word-wrap: break-word; }\",\".framer-ZxGUX .framer-1bv5goh-container, .framer-ZxGUX .framer-toofq3-container { flex: none; height: 27px; position: relative; width: 184px; }\",\".framer-ZxGUX .framer-1o5mnop { background-color: var(--token-bd98839e-23a8-4d7f-b04b-08e758845e76, #011f3d); box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05); height: 93px; overflow: visible; position: relative; width: 503px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-ZxGUX .framer-1hzqhd5-container, .framer-ZxGUX .framer-4cnqkz-container { flex: none; height: 27px; position: relative; width: 187px; }\",\".framer-ZxGUX .framer-1xexqa9 { align-content: center; align-items: center; background-color: var(--token-bd98839e-23a8-4d7f-b04b-08e758845e76, #011f3d); box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05); display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 80px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 503px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-ZxGUX .framer-32vt1d { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-ZxGUX .framer-gitdle { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ZxGUX .framer-gm2slt-container, .framer-ZxGUX .framer-1f440xt-container { flex: none; height: 27px; position: relative; width: 180px; }\",\".framer-ZxGUX .framer-2phkai { align-content: flex-start; align-items: flex-start; background-color: var(--token-bd98839e-23a8-4d7f-b04b-08e758845e76, #011f3d); box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 86px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 503px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-ZxGUX .framer-1rtgrli { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-ZxGUX .framer-mmziah { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-ZxGUX .framer-1cisa53, .framer-ZxGUX .framer-11jx1sw, .framer-ZxGUX .framer-1vvdqqp, .framer-ZxGUX .framer-s7v07x, .framer-ZxGUX .framer-iog7vr, .framer-ZxGUX .framer-8g83ly { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ZxGUX .framer-175xd4g { background-color: var(--token-bd98839e-23a8-4d7f-b04b-08e758845e76, #011f3d); box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05); height: 94px; overflow: hidden; position: relative; width: 326px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-ZxGUX .framer-1qd8pcq { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 0px; position: absolute; right: 0px; top: 50%; transform: translateY(-50%); white-space: pre-wrap; word-break: break-word; word-wrap: break-word; }\",\".framer-ZxGUX .framer-k1wbx0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ZxGUX .framer-ppvb30 { 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: 10px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-ZxGUX .framer-ze2ct7 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 78px 60px 78px 60px; position: relative; width: 100%; z-index: 1; }\",\".framer-ZxGUX .framer-106ivxb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 37px; height: min-content; justify-content: center; max-width: 1280px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ZxGUX .framer-12dclth { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-ZxGUX .framer-u6b8ju { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-ZxGUX .framer-s1i5mm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 23px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ZxGUX .framer-d8qx8c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ZxGUX .framer-d3pglp, .framer-ZxGUX .framer-1y30ctu, .framer-ZxGUX .framer-r81fbo, .framer-ZxGUX .framer-pz1ssw, .framer-ZxGUX .framer-qo1uqr, .framer-ZxGUX .framer-1rynquh { align-content: center; align-items: center; background-color: var(--token-bd98839e-23a8-4d7f-b04b-08e758845e76, #011f3d); box-shadow: 0px 0px 1px 0px #000000; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 108px; justify-content: flex-start; overflow: hidden; padding: 20px 20px 20px 117px; position: relative; text-decoration: none; width: 31%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-ZxGUX .framer-zvzmq5 { flex: none; height: 64px; left: 31px; position: absolute; top: calc(50.00000000000002% - 64px / 2); width: 57px; z-index: 1; }\",\".framer-ZxGUX .framer-hrc9of, .framer-ZxGUX .framer-rdb4ka, .framer-ZxGUX .framer-1tn2aqx, .framer-ZxGUX .framer-8xmdvc, .framer-ZxGUX .framer-occlic, .framer-ZxGUX .framer-1qqgtff, .framer-ZxGUX .framer-uobjyc, .framer-ZxGUX .framer-10exnmv, .framer-ZxGUX .framer-f0k47n, .framer-ZxGUX .framer-1jykih7 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-ZxGUX .framer-husdcb { flex: none; height: 64px; left: 35px; position: absolute; top: calc(50.00000000000002% - 64px / 2); width: 65px; z-index: 1; }\",\".framer-ZxGUX .framer-rqban6 { aspect-ratio: 1.0114942528735633 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 65px); left: 29px; position: absolute; top: 50%; transform: translateY(-50%); width: 65px; z-index: 1; }\",\".framer-ZxGUX .framer-1aql1hi, .framer-ZxGUX .framer-zfch18 { aspect-ratio: 1.0333333333333334 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 60px); left: 38px; position: absolute; top: 50%; transform: translateY(-50%); width: 62px; z-index: 1; }\",\".framer-ZxGUX .framer-511tbt { aspect-ratio: 1.21 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 55px); left: 26px; position: absolute; top: 49%; transform: translateY(-50%); width: 66px; z-index: 1; }\",\".framer-ZxGUX .framer-18t2aa1 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: visible; padding: 46px 60px 81px 60px; position: relative; width: 100%; z-index: 1; }\",\".framer-ZxGUX .framer-12ygkdi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 71px; height: min-content; justify-content: center; max-width: 1280px; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-ZxGUX .framer-i66pug { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: flex-start; max-width: 1280px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-ZxGUX .framer-10kp4sx-container { flex: none; height: 222px; max-width: 1280px; position: relative; width: 100%; }\",\".framer-ZxGUX .framer-9jxq08, .framer-ZxGUX .framer-10pxoql { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: min-content; }\",\".framer-ZxGUX .framer-5b1exn, .framer-ZxGUX .framer-1erf0kb { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: min-content; }\",\".framer-ZxGUX .framer-14vlr20, .framer-ZxGUX .framer-r0t05d { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: min-content; }\",\".framer-ZxGUX .framer-kefqco { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: 175px; justify-content: flex-start; padding: 0px; position: relative; width: 345px; }\",\".framer-ZxGUX .framer-12t5mg4, .framer-ZxGUX .framer-z508qv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: min-content; }\",\".framer-ZxGUX .framer-19bbtw2, .framer-ZxGUX .framer-143qw9x, .framer-ZxGUX .framer-yf0l7l, .framer-ZxGUX .framer-1lw80ib, .framer-ZxGUX .framer-1fzl4r9, .framer-ZxGUX .framer-19vgh97, .framer-ZxGUX .framer-o96ojd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-ZxGUX .framer-bwt39n, .framer-ZxGUX .framer-qeni0q, .framer-ZxGUX .framer-lh6myq, .framer-ZxGUX .framer-9d3zb8 { align-content: center; align-items: center; background-color: var(--token-bd98839e-23a8-4d7f-b04b-08e758845e76, #011f3d); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 20px; position: relative; width: 330px; }\",\".framer-ZxGUX .framer-12g9s7p, .framer-ZxGUX .framer-12t6hge, .framer-ZxGUX .framer-jnjfk4, .framer-ZxGUX .framer-kpb3w6, .framer-ZxGUX .framer-1be3wm4, .framer-ZxGUX .framer-qdu66s, .framer-ZxGUX .framer-1axhgxs { flex: none; height: 194px; position: relative; width: 100%; }\",\".framer-ZxGUX .framer-10jnuj, .framer-ZxGUX .framer-1e2cofb { align-content: center; align-items: center; background-color: var(--token-c0fccd5f-2cf7-4508-a86c-f66a665c7d54, #0165a5); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: min-content; }\",\".framer-ZxGUX .framer-1kz7ydo, .framer-ZxGUX .framer-1g30d0y, .framer-ZxGUX .framer-1d1q22b { align-content: center; align-items: center; background-color: var(--token-c0fccd5f-2cf7-4508-a86c-f66a665c7d54, #0165a5); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 20px; position: relative; width: 330px; }\",\".framer-ZxGUX .framer-1aijsmj, .framer-ZxGUX .framer-1g30e8k, .framer-ZxGUX .framer-1paw8q9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: min-content; }\",\".framer-ZxGUX .framer-isx2ye { align-content: center; align-items: center; background-color: var(--token-c0fccd5f-2cf7-4508-a86c-f66a665c7d54, #0165a5); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 90px 60px 90px 60px; position: relative; width: 100%; z-index: 1; }\",\".framer-ZxGUX .framer-anw3h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 71px; height: min-content; justify-content: center; max-width: 1280px; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-ZxGUX .framer-kr89hb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 49px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ZxGUX .framer-i4ubbq-container { flex: none; height: 42px; position: relative; width: auto; z-index: 1; }\",\".framer-ZxGUX .framer-1n3zgz1 { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.25); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; overflow: auto; padding: 40px; position: relative; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-ZxGUX .framer-1y07ckb { 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: 794px; }\",\".framer-ZxGUX .framer-16rckh6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 20px; position: relative; width: 390px; }\",\".framer-ZxGUX .framer-nughnu, .framer-ZxGUX .framer-a4af7e, .framer-ZxGUX .framer-16qteqg, .framer-ZxGUX .framer-bp6i6y { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",'.framer-ZxGUX .framer-1ob8fi8, .framer-ZxGUX .framer-t46p5z { --framer-input-background: rgba(187, 187, 187, 0.15); --framer-input-border-bottom-width: 1px; --framer-input-border-color: rgba(136, 136, 136, 0.1); --framer-input-border-left-width: 1px; --framer-input-border-radius-bottom-left: 10px; --framer-input-border-radius-bottom-right: 10px; --framer-input-border-radius-top-left: 10px; --framer-input-border-radius-top-right: 10px; --framer-input-border-right-width: 1px; --framer-input-border-style: solid; --framer-input-border-top-width: 1px; --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-color: #999999; --framer-input-font-family: \"Inter\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 14px; --framer-input-font-weight: 400; --framer-input-icon-color: #999999; --framer-input-padding: 12px; --framer-input-placeholder-color: #999999; flex: none; height: 40px; position: relative; width: 100%; }','.framer-ZxGUX .framer-1v9phzb { --framer-input-background: rgba(187, 187, 187, 0.15); --framer-input-border-bottom-width: 1px; --framer-input-border-color: rgba(136, 136, 136, 0.1); --framer-input-border-left-width: 1px; --framer-input-border-radius-bottom-left: 10px; --framer-input-border-radius-bottom-right: 10px; --framer-input-border-radius-top-left: 10px; --framer-input-border-radius-top-right: 10px; --framer-input-border-right-width: 1px; --framer-input-border-style: solid; --framer-input-border-top-width: 1px; --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-color: #999999; --framer-input-font-family: \"Raleway\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 14px; --framer-input-font-weight: 400; --framer-input-icon-color: #999999; --framer-input-padding: 12px; --framer-input-placeholder-color: #999999; flex: none; height: 40px; position: relative; width: 100%; }','.framer-ZxGUX .framer-lslrho { --framer-input-background: rgba(187, 187, 187, 0.15); --framer-input-border-bottom-width: 1px; --framer-input-border-color: rgba(136, 136, 136, 0.1); --framer-input-border-left-width: 1px; --framer-input-border-radius-bottom-left: 10px; --framer-input-border-radius-bottom-right: 10px; --framer-input-border-radius-top-left: 10px; --framer-input-border-radius-top-right: 10px; --framer-input-border-right-width: 1px; --framer-input-border-style: solid; --framer-input-border-top-width: 1px; --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-color: #999999; --framer-input-font-family: \"Raleway\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 14px; --framer-input-font-weight: 400; --framer-input-icon-color: #999999; --framer-input-padding: 12px; --framer-input-placeholder-color: #999999; --framer-input-wrapper-height: auto; --framer-textarea-resize: vertical; flex: none; height: auto; min-height: 100px; position: relative; width: 100%; }',\".framer-ZxGUX .framer-mkv70o-container { flex: none; height: 40px; position: relative; width: 100%; }\",\".framer-ZxGUX .framer-elugeg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 670px; justify-content: center; overflow: hidden; padding: 100px 60px 100px 60px; pointer-events: none; position: relative; width: 100%; z-index: 0; }\",\".framer-ZxGUX .framer-6p1smo-container { bottom: 0px; flex: none; left: 0px; max-width: 100%; pointer-events: auto; position: fixed; right: 0px; top: 0px; z-index: 0; }\",\".framer-ZxGUX .framer-1il1cmm-container { flex: none; height: auto; left: 0px; max-width: 100%; position: fixed; top: 0px; width: 100%; z-index: 5; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-ZxGUX.framer-1y4mrjo, .framer-ZxGUX .framer-1uenapd, .framer-ZxGUX .framer-lm31y0, .framer-ZxGUX .framer-ck1uvb, .framer-ZxGUX .framer-mzqvu7, .framer-ZxGUX .framer-16vgm7a, .framer-ZxGUX .framer-w1tufb, .framer-ZxGUX .framer-7sbnzm, .framer-ZxGUX .framer-4ghz93, .framer-ZxGUX .framer-4ie0za, .framer-ZxGUX .framer-64x38l, .framer-ZxGUX .framer-142qd1z, .framer-ZxGUX .framer-ch8izt, .framer-ZxGUX .framer-6iwc1p, .framer-ZxGUX .framer-mfxdin, .framer-ZxGUX .framer-1rv0ob7, .framer-ZxGUX .framer-14dnjq6, .framer-ZxGUX .framer-a44uxq, .framer-ZxGUX .framer-12a0zz5, .framer-ZxGUX .framer-1np0pnj, .framer-ZxGUX .framer-1b7nn2p, .framer-ZxGUX .framer-11zlr6v, .framer-ZxGUX .framer-uckqti, .framer-ZxGUX .framer-if38sq, .framer-ZxGUX .framer-ny6wjw, .framer-ZxGUX .framer-cccqgi, .framer-ZxGUX .framer-1q38mx0, .framer-ZxGUX .framer-1ap0shw, .framer-ZxGUX .framer-xoiqs, .framer-ZxGUX .framer-fy01jk, .framer-ZxGUX .framer-1lvvlny, .framer-ZxGUX .framer-1hol080, .framer-ZxGUX .framer-oispa1, .framer-ZxGUX .framer-eols7l, .framer-ZxGUX .framer-chzzq6, .framer-ZxGUX .framer-1xexqa9, .framer-ZxGUX .framer-gitdle, .framer-ZxGUX .framer-2phkai, .framer-ZxGUX .framer-mmziah, .framer-ZxGUX .framer-1cisa53, .framer-ZxGUX .framer-11jx1sw, .framer-ZxGUX .framer-1vvdqqp, .framer-ZxGUX .framer-s7v07x, .framer-ZxGUX .framer-iog7vr, .framer-ZxGUX .framer-8g83ly, .framer-ZxGUX .framer-k1wbx0, .framer-ZxGUX .framer-ppvb30, .framer-ZxGUX .framer-ze2ct7, .framer-ZxGUX .framer-106ivxb, .framer-ZxGUX .framer-12dclth, .framer-ZxGUX .framer-u6b8ju, .framer-ZxGUX .framer-s1i5mm, .framer-ZxGUX .framer-d8qx8c, .framer-ZxGUX .framer-d3pglp, .framer-ZxGUX .framer-1y30ctu, .framer-ZxGUX .framer-r81fbo, .framer-ZxGUX .framer-pz1ssw, .framer-ZxGUX .framer-qo1uqr, .framer-ZxGUX .framer-1rynquh, .framer-ZxGUX .framer-18t2aa1, .framer-ZxGUX .framer-12ygkdi, .framer-ZxGUX .framer-i66pug, .framer-ZxGUX .framer-9jxq08, .framer-ZxGUX .framer-10pxoql, .framer-ZxGUX .framer-5b1exn, .framer-ZxGUX .framer-1erf0kb, .framer-ZxGUX .framer-14vlr20, .framer-ZxGUX .framer-kefqco, .framer-ZxGUX .framer-r0t05d, .framer-ZxGUX .framer-12t5mg4, .framer-ZxGUX .framer-19bbtw2, .framer-ZxGUX .framer-bwt39n, .framer-ZxGUX .framer-z508qv, .framer-ZxGUX .framer-143qw9x, .framer-ZxGUX .framer-qeni0q, .framer-ZxGUX .framer-10jnuj, .framer-ZxGUX .framer-yf0l7l, .framer-ZxGUX .framer-1kz7ydo, .framer-ZxGUX .framer-1aijsmj, .framer-ZxGUX .framer-1lw80ib, .framer-ZxGUX .framer-1g30d0y, .framer-ZxGUX .framer-1e2cofb, .framer-ZxGUX .framer-1fzl4r9, .framer-ZxGUX .framer-lh6myq, .framer-ZxGUX .framer-1g30e8k, .framer-ZxGUX .framer-19vgh97, .framer-ZxGUX .framer-1d1q22b, .framer-ZxGUX .framer-1paw8q9, .framer-ZxGUX .framer-o96ojd, .framer-ZxGUX .framer-9d3zb8, .framer-ZxGUX .framer-isx2ye, .framer-ZxGUX .framer-anw3h, .framer-ZxGUX .framer-kr89hb, .framer-ZxGUX .framer-1n3zgz1, .framer-ZxGUX .framer-1y07ckb, .framer-ZxGUX .framer-16rckh6, .framer-ZxGUX .framer-nughnu, .framer-ZxGUX .framer-a4af7e, .framer-ZxGUX .framer-16qteqg, .framer-ZxGUX .framer-bp6i6y, .framer-ZxGUX .framer-elugeg { gap: 0px; } .framer-ZxGUX.framer-1y4mrjo > *, .framer-ZxGUX .framer-1uenapd > *, .framer-ZxGUX .framer-7sbnzm > *, .framer-ZxGUX .framer-if38sq > *, .framer-ZxGUX .framer-ze2ct7 > *, .framer-ZxGUX .framer-5b1exn > *, .framer-ZxGUX .framer-1erf0kb > *, .framer-ZxGUX .framer-isx2ye > *, .framer-ZxGUX .framer-elugeg > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-ZxGUX.framer-1y4mrjo > :first-child, .framer-ZxGUX .framer-1uenapd > :first-child, .framer-ZxGUX .framer-ck1uvb > :first-child, .framer-ZxGUX .framer-mzqvu7 > :first-child, .framer-ZxGUX .framer-w1tufb > :first-child, .framer-ZxGUX .framer-7sbnzm > :first-child, .framer-ZxGUX .framer-4ie0za > :first-child, .framer-ZxGUX .framer-mfxdin > :first-child, .framer-ZxGUX .framer-1rv0ob7 > :first-child, .framer-ZxGUX .framer-14dnjq6 > :first-child, .framer-ZxGUX .framer-a44uxq > :first-child, .framer-ZxGUX .framer-12a0zz5 > :first-child, .framer-ZxGUX .framer-1np0pnj > :first-child, .framer-ZxGUX .framer-1b7nn2p > :first-child, .framer-ZxGUX .framer-11zlr6v > :first-child, .framer-ZxGUX .framer-uckqti > :first-child, .framer-ZxGUX .framer-if38sq > :first-child, .framer-ZxGUX .framer-cccqgi > :first-child, .framer-ZxGUX .framer-1q38mx0 > :first-child, .framer-ZxGUX .framer-xoiqs > :first-child, .framer-ZxGUX .framer-1lvvlny > :first-child, .framer-ZxGUX .framer-2phkai > :first-child, .framer-ZxGUX .framer-mmziah > :first-child, .framer-ZxGUX .framer-1cisa53 > :first-child, .framer-ZxGUX .framer-11jx1sw > :first-child, .framer-ZxGUX .framer-1vvdqqp > :first-child, .framer-ZxGUX .framer-s7v07x > :first-child, .framer-ZxGUX .framer-iog7vr > :first-child, .framer-ZxGUX .framer-8g83ly > :first-child, .framer-ZxGUX .framer-k1wbx0 > :first-child, .framer-ZxGUX .framer-ze2ct7 > :first-child, .framer-ZxGUX .framer-106ivxb > :first-child, .framer-ZxGUX .framer-u6b8ju > :first-child, .framer-ZxGUX .framer-s1i5mm > :first-child, .framer-ZxGUX .framer-18t2aa1 > :first-child, .framer-ZxGUX .framer-i66pug > :first-child, .framer-ZxGUX .framer-9jxq08 > :first-child, .framer-ZxGUX .framer-10pxoql > :first-child, .framer-ZxGUX .framer-5b1exn > :first-child, .framer-ZxGUX .framer-1erf0kb > :first-child, .framer-ZxGUX .framer-12t5mg4 > :first-child, .framer-ZxGUX .framer-bwt39n > :first-child, .framer-ZxGUX .framer-z508qv > :first-child, .framer-ZxGUX .framer-qeni0q > :first-child, .framer-ZxGUX .framer-10jnuj > :first-child, .framer-ZxGUX .framer-1kz7ydo > :first-child, .framer-ZxGUX .framer-1aijsmj > :first-child, .framer-ZxGUX .framer-1g30d0y > :first-child, .framer-ZxGUX .framer-1e2cofb > :first-child, .framer-ZxGUX .framer-lh6myq > :first-child, .framer-ZxGUX .framer-1g30e8k > :first-child, .framer-ZxGUX .framer-1d1q22b > :first-child, .framer-ZxGUX .framer-1paw8q9 > :first-child, .framer-ZxGUX .framer-9d3zb8 > :first-child, .framer-ZxGUX .framer-isx2ye > :first-child, .framer-ZxGUX .framer-anw3h > :first-child, .framer-ZxGUX .framer-kr89hb > :first-child, .framer-ZxGUX .framer-1n3zgz1 > :first-child, .framer-ZxGUX .framer-1y07ckb > :first-child, .framer-ZxGUX .framer-16rckh6 > :first-child, .framer-ZxGUX .framer-nughnu > :first-child, .framer-ZxGUX .framer-a4af7e > :first-child, .framer-ZxGUX .framer-16qteqg > :first-child, .framer-ZxGUX .framer-bp6i6y > :first-child, .framer-ZxGUX .framer-elugeg > :first-child { margin-top: 0px; } .framer-ZxGUX.framer-1y4mrjo > :last-child, .framer-ZxGUX .framer-1uenapd > :last-child, .framer-ZxGUX .framer-ck1uvb > :last-child, .framer-ZxGUX .framer-mzqvu7 > :last-child, .framer-ZxGUX .framer-w1tufb > :last-child, .framer-ZxGUX .framer-7sbnzm > :last-child, .framer-ZxGUX .framer-4ie0za > :last-child, .framer-ZxGUX .framer-mfxdin > :last-child, .framer-ZxGUX .framer-1rv0ob7 > :last-child, .framer-ZxGUX .framer-14dnjq6 > :last-child, .framer-ZxGUX .framer-a44uxq > :last-child, .framer-ZxGUX .framer-12a0zz5 > :last-child, .framer-ZxGUX .framer-1np0pnj > :last-child, .framer-ZxGUX .framer-1b7nn2p > :last-child, .framer-ZxGUX .framer-11zlr6v > :last-child, .framer-ZxGUX .framer-uckqti > :last-child, .framer-ZxGUX .framer-if38sq > :last-child, .framer-ZxGUX .framer-cccqgi > :last-child, .framer-ZxGUX .framer-1q38mx0 > :last-child, .framer-ZxGUX .framer-xoiqs > :last-child, .framer-ZxGUX .framer-1lvvlny > :last-child, .framer-ZxGUX .framer-2phkai > :last-child, .framer-ZxGUX .framer-mmziah > :last-child, .framer-ZxGUX .framer-1cisa53 > :last-child, .framer-ZxGUX .framer-11jx1sw > :last-child, .framer-ZxGUX .framer-1vvdqqp > :last-child, .framer-ZxGUX .framer-s7v07x > :last-child, .framer-ZxGUX .framer-iog7vr > :last-child, .framer-ZxGUX .framer-8g83ly > :last-child, .framer-ZxGUX .framer-k1wbx0 > :last-child, .framer-ZxGUX .framer-ze2ct7 > :last-child, .framer-ZxGUX .framer-106ivxb > :last-child, .framer-ZxGUX .framer-u6b8ju > :last-child, .framer-ZxGUX .framer-s1i5mm > :last-child, .framer-ZxGUX .framer-18t2aa1 > :last-child, .framer-ZxGUX .framer-i66pug > :last-child, .framer-ZxGUX .framer-9jxq08 > :last-child, .framer-ZxGUX .framer-10pxoql > :last-child, .framer-ZxGUX .framer-5b1exn > :last-child, .framer-ZxGUX .framer-1erf0kb > :last-child, .framer-ZxGUX .framer-12t5mg4 > :last-child, .framer-ZxGUX .framer-bwt39n > :last-child, .framer-ZxGUX .framer-z508qv > :last-child, .framer-ZxGUX .framer-qeni0q > :last-child, .framer-ZxGUX .framer-10jnuj > :last-child, .framer-ZxGUX .framer-1kz7ydo > :last-child, .framer-ZxGUX .framer-1aijsmj > :last-child, .framer-ZxGUX .framer-1g30d0y > :last-child, .framer-ZxGUX .framer-1e2cofb > :last-child, .framer-ZxGUX .framer-lh6myq > :last-child, .framer-ZxGUX .framer-1g30e8k > :last-child, .framer-ZxGUX .framer-1d1q22b > :last-child, .framer-ZxGUX .framer-1paw8q9 > :last-child, .framer-ZxGUX .framer-9d3zb8 > :last-child, .framer-ZxGUX .framer-isx2ye > :last-child, .framer-ZxGUX .framer-anw3h > :last-child, .framer-ZxGUX .framer-kr89hb > :last-child, .framer-ZxGUX .framer-1n3zgz1 > :last-child, .framer-ZxGUX .framer-1y07ckb > :last-child, .framer-ZxGUX .framer-16rckh6 > :last-child, .framer-ZxGUX .framer-nughnu > :last-child, .framer-ZxGUX .framer-a4af7e > :last-child, .framer-ZxGUX .framer-16qteqg > :last-child, .framer-ZxGUX .framer-bp6i6y > :last-child, .framer-ZxGUX .framer-elugeg > :last-child { margin-bottom: 0px; } .framer-ZxGUX .framer-lm31y0 > *, .framer-ZxGUX .framer-12dclth > *, .framer-ZxGUX .framer-d3pglp > *, .framer-ZxGUX .framer-1y30ctu > *, .framer-ZxGUX .framer-r81fbo > *, .framer-ZxGUX .framer-pz1ssw > *, .framer-ZxGUX .framer-qo1uqr > *, .framer-ZxGUX .framer-1rynquh > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-ZxGUX .framer-lm31y0 > :first-child, .framer-ZxGUX .framer-16vgm7a > :first-child, .framer-ZxGUX .framer-4ghz93 > :first-child, .framer-ZxGUX .framer-64x38l > :first-child, .framer-ZxGUX .framer-142qd1z > :first-child, .framer-ZxGUX .framer-ch8izt > :first-child, .framer-ZxGUX .framer-6iwc1p > :first-child, .framer-ZxGUX .framer-ny6wjw > :first-child, .framer-ZxGUX .framer-1ap0shw > :first-child, .framer-ZxGUX .framer-fy01jk > :first-child, .framer-ZxGUX .framer-1hol080 > :first-child, .framer-ZxGUX .framer-oispa1 > :first-child, .framer-ZxGUX .framer-eols7l > :first-child, .framer-ZxGUX .framer-chzzq6 > :first-child, .framer-ZxGUX .framer-1xexqa9 > :first-child, .framer-ZxGUX .framer-gitdle > :first-child, .framer-ZxGUX .framer-ppvb30 > :first-child, .framer-ZxGUX .framer-12dclth > :first-child, .framer-ZxGUX .framer-d8qx8c > :first-child, .framer-ZxGUX .framer-d3pglp > :first-child, .framer-ZxGUX .framer-1y30ctu > :first-child, .framer-ZxGUX .framer-r81fbo > :first-child, .framer-ZxGUX .framer-pz1ssw > :first-child, .framer-ZxGUX .framer-qo1uqr > :first-child, .framer-ZxGUX .framer-1rynquh > :first-child, .framer-ZxGUX .framer-12ygkdi > :first-child, .framer-ZxGUX .framer-14vlr20 > :first-child, .framer-ZxGUX .framer-kefqco > :first-child, .framer-ZxGUX .framer-r0t05d > :first-child, .framer-ZxGUX .framer-19bbtw2 > :first-child, .framer-ZxGUX .framer-143qw9x > :first-child, .framer-ZxGUX .framer-yf0l7l > :first-child, .framer-ZxGUX .framer-1lw80ib > :first-child, .framer-ZxGUX .framer-1fzl4r9 > :first-child, .framer-ZxGUX .framer-19vgh97 > :first-child, .framer-ZxGUX .framer-o96ojd > :first-child { margin-left: 0px; } .framer-ZxGUX .framer-lm31y0 > :last-child, .framer-ZxGUX .framer-16vgm7a > :last-child, .framer-ZxGUX .framer-4ghz93 > :last-child, .framer-ZxGUX .framer-64x38l > :last-child, .framer-ZxGUX .framer-142qd1z > :last-child, .framer-ZxGUX .framer-ch8izt > :last-child, .framer-ZxGUX .framer-6iwc1p > :last-child, .framer-ZxGUX .framer-ny6wjw > :last-child, .framer-ZxGUX .framer-1ap0shw > :last-child, .framer-ZxGUX .framer-fy01jk > :last-child, .framer-ZxGUX .framer-1hol080 > :last-child, .framer-ZxGUX .framer-oispa1 > :last-child, .framer-ZxGUX .framer-eols7l > :last-child, .framer-ZxGUX .framer-chzzq6 > :last-child, .framer-ZxGUX .framer-1xexqa9 > :last-child, .framer-ZxGUX .framer-gitdle > :last-child, .framer-ZxGUX .framer-ppvb30 > :last-child, .framer-ZxGUX .framer-12dclth > :last-child, .framer-ZxGUX .framer-d8qx8c > :last-child, .framer-ZxGUX .framer-d3pglp > :last-child, .framer-ZxGUX .framer-1y30ctu > :last-child, .framer-ZxGUX .framer-r81fbo > :last-child, .framer-ZxGUX .framer-pz1ssw > :last-child, .framer-ZxGUX .framer-qo1uqr > :last-child, .framer-ZxGUX .framer-1rynquh > :last-child, .framer-ZxGUX .framer-12ygkdi > :last-child, .framer-ZxGUX .framer-14vlr20 > :last-child, .framer-ZxGUX .framer-kefqco > :last-child, .framer-ZxGUX .framer-r0t05d > :last-child, .framer-ZxGUX .framer-19bbtw2 > :last-child, .framer-ZxGUX .framer-143qw9x > :last-child, .framer-ZxGUX .framer-yf0l7l > :last-child, .framer-ZxGUX .framer-1lw80ib > :last-child, .framer-ZxGUX .framer-1fzl4r9 > :last-child, .framer-ZxGUX .framer-19vgh97 > :last-child, .framer-ZxGUX .framer-o96ojd > :last-child { margin-right: 0px; } .framer-ZxGUX .framer-ck1uvb > *, .framer-ZxGUX .framer-4ie0za > *, .framer-ZxGUX .framer-1rv0ob7 > *, .framer-ZxGUX .framer-12a0zz5 > *, .framer-ZxGUX .framer-11zlr6v > *, .framer-ZxGUX .framer-12t5mg4 > *, .framer-ZxGUX .framer-z508qv > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-ZxGUX .framer-mzqvu7 > *, .framer-ZxGUX .framer-xoiqs > *, .framer-ZxGUX .framer-1lvvlny > *, .framer-ZxGUX .framer-2phkai > *, .framer-ZxGUX .framer-nughnu > *, .framer-ZxGUX .framer-a4af7e > *, .framer-ZxGUX .framer-16qteqg > *, .framer-ZxGUX .framer-bp6i6y > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-ZxGUX .framer-16vgm7a > * { margin: 0px; margin-left: calc(7px / 2); margin-right: calc(7px / 2); } .framer-ZxGUX .framer-w1tufb > * { margin: 0px; margin-bottom: calc(55px / 2); margin-top: calc(55px / 2); } .framer-ZxGUX .framer-4ghz93 > *, .framer-ZxGUX .framer-ny6wjw > *, .framer-ZxGUX .framer-12ygkdi > * { margin: 0px; margin-left: calc(71px / 2); margin-right: calc(71px / 2); } .framer-ZxGUX .framer-64x38l > *, .framer-ZxGUX .framer-ch8izt > *, .framer-ZxGUX .framer-1ap0shw > *, .framer-ZxGUX .framer-fy01jk > *, .framer-ZxGUX .framer-1hol080 > *, .framer-ZxGUX .framer-oispa1 > *, .framer-ZxGUX .framer-eols7l > *, .framer-ZxGUX .framer-chzzq6 > *, .framer-ZxGUX .framer-1xexqa9 > *, .framer-ZxGUX .framer-gitdle > *, .framer-ZxGUX .framer-ppvb30 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-ZxGUX .framer-142qd1z > * { margin: 0px; margin-left: calc(1px / 2); margin-right: calc(1px / 2); } .framer-ZxGUX .framer-6iwc1p > * { margin: 0px; margin-left: calc(92px / 2); margin-right: calc(92px / 2); } .framer-ZxGUX .framer-mfxdin > *, .framer-ZxGUX .framer-a44uxq > *, .framer-ZxGUX .framer-1b7nn2p > *, .framer-ZxGUX .framer-mmziah > *, .framer-ZxGUX .framer-bwt39n > *, .framer-ZxGUX .framer-qeni0q > *, .framer-ZxGUX .framer-1kz7ydo > *, .framer-ZxGUX .framer-1g30d0y > *, .framer-ZxGUX .framer-lh6myq > *, .framer-ZxGUX .framer-1d1q22b > *, .framer-ZxGUX .framer-9d3zb8 > *, .framer-ZxGUX .framer-16rckh6 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-ZxGUX .framer-14dnjq6 > *, .framer-ZxGUX .framer-1np0pnj > *, .framer-ZxGUX .framer-uckqti > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-ZxGUX .framer-cccqgi > *, .framer-ZxGUX .framer-u6b8ju > *, .framer-ZxGUX .framer-i66pug > * { margin: 0px; margin-bottom: calc(22px / 2); margin-top: calc(22px / 2); } .framer-ZxGUX .framer-1q38mx0 > * { margin: 0px; margin-bottom: calc(45px / 2); margin-top: calc(45px / 2); } .framer-ZxGUX .framer-1cisa53 > *, .framer-ZxGUX .framer-11jx1sw > *, .framer-ZxGUX .framer-1vvdqqp > *, .framer-ZxGUX .framer-s7v07x > *, .framer-ZxGUX .framer-iog7vr > *, .framer-ZxGUX .framer-8g83ly > *, .framer-ZxGUX .framer-k1wbx0 > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-ZxGUX .framer-106ivxb > * { margin: 0px; margin-bottom: calc(37px / 2); margin-top: calc(37px / 2); } .framer-ZxGUX .framer-s1i5mm > * { margin: 0px; margin-bottom: calc(23px / 2); margin-top: calc(23px / 2); } .framer-ZxGUX .framer-d8qx8c > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-ZxGUX .framer-18t2aa1 > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-ZxGUX .framer-9jxq08 > *, .framer-ZxGUX .framer-10pxoql > *, .framer-ZxGUX .framer-10jnuj > *, .framer-ZxGUX .framer-1aijsmj > *, .framer-ZxGUX .framer-1e2cofb > *, .framer-ZxGUX .framer-1g30e8k > *, .framer-ZxGUX .framer-1paw8q9 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-ZxGUX .framer-14vlr20 > *, .framer-ZxGUX .framer-kefqco > *, .framer-ZxGUX .framer-r0t05d > *, .framer-ZxGUX .framer-19bbtw2 > *, .framer-ZxGUX .framer-143qw9x > *, .framer-ZxGUX .framer-yf0l7l > *, .framer-ZxGUX .framer-1lw80ib > *, .framer-ZxGUX .framer-1fzl4r9 > *, .framer-ZxGUX .framer-19vgh97 > *, .framer-ZxGUX .framer-o96ojd > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-ZxGUX .framer-anw3h > * { margin: 0px; margin-bottom: calc(71px / 2); margin-top: calc(71px / 2); } .framer-ZxGUX .framer-kr89hb > * { margin: 0px; margin-bottom: calc(49px / 2); margin-top: calc(49px / 2); } .framer-ZxGUX .framer-1n3zgz1 > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-ZxGUX .framer-1y07ckb > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,\"@media (min-width: 810px) and (max-width: 1199px) { .framer-ZxGUX.framer-1y4mrjo { width: 810px; } .framer-ZxGUX .framer-1uenapd, .framer-ZxGUX .framer-n3uto7 { order: 1; } .framer-ZxGUX .framer-lm31y0 { align-content: flex-start; align-items: flex-start; background-color: var(--token-bd98839e-23a8-4d7f-b04b-08e758845e76, #011f3d); height: min-content; justify-content: flex-start; overflow: hidden; padding: 15px 0px 15px 0px; } .framer-ZxGUX .framer-lbwe10 { bottom: -69px; height: 100.83333333333333vh; order: 1; top: unset; } .framer-ZxGUX .framer-10o7ri9-container { height: 100%; top: calc(50.28571428571431% - 100% / 2); } .framer-ZxGUX .framer-ck1uvb { height: 536px; justify-content: flex-start; order: 0; padding: 130px 50px 0px 50px; } .framer-ZxGUX .framer-mzqvu7 { padding: 60px 30px 19px 30px; } .framer-ZxGUX .framer-16vgm7a { flex-direction: column; } .framer-ZxGUX .framer-w1tufb, .framer-ZxGUX .framer-106ivxb { gap: 40px; } .framer-ZxGUX .framer-1cwx671-container, .framer-ZxGUX .framer-1y07ckb { width: 100%; } .framer-ZxGUX .framer-7sbnzm { padding: 60px 60px 100px 60px; } .framer-ZxGUX .framer-4ghz93 { flex-direction: column; gap: 50px; } .framer-ZxGUX .framer-4ie0za { flex: none; width: 100%; } .framer-ZxGUX .framer-64x38l { justify-content: center; } .framer-ZxGUX .framer-ky7s3z-container, .framer-ZxGUX .framer-mfxdin { order: 0; } .framer-ZxGUX .framer-ddk3px-container { height: var(--framer-aspect-ratio-supported, 391px); width: 690px; } .framer-ZxGUX .framer-ch8izt { flex-direction: column; gap: 38px; } .framer-ZxGUX .framer-6iwc1p { flex: none; gap: 40px; order: 0; padding: 0px 21px 0px 0px; width: 100%; } .framer-ZxGUX .framer-1rv0ob7 { width: 191px; } .framer-ZxGUX .framer-14dnjq6 { align-self: unset; width: 151px; } .framer-ZxGUX .framer-a44uxq, .framer-ZxGUX .framer-elugeg { order: 2; } .framer-ZxGUX .framer-12a0zz5 { width: 150px; } .framer-ZxGUX .framer-u6pb3y { order: 3; } .framer-ZxGUX .framer-1b7nn2p, .framer-ZxGUX .framer-1il1cmm-container { order: 4; } .framer-ZxGUX .framer-xoiqs { width: min-content; } .framer-ZxGUX .framer-5o3mtn { overflow: visible; width: 310px; } .framer-ZxGUX .framer-1lvvlny { flex-direction: row; width: min-content; } .framer-ZxGUX .framer-1raankr { overflow: visible; width: 309px; } .framer-ZxGUX .framer-sf0a06 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; justify-content: center; padding: 0px; width: 309px; } .framer-ZxGUX .framer-1d9zgsm { left: unset; position: relative; top: unset; transform: unset; width: 100%; } .framer-ZxGUX .framer-1o8yezi { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; justify-content: center; padding: 0px; width: 309px; } .framer-ZxGUX .framer-wrn87d { flex: 1 0 0px; left: unset; overflow: visible; position: relative; top: unset; transform: unset; width: 1px; } .framer-ZxGUX .framer-1o5mnop { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; justify-content: center; padding: 0px; width: min-content; } .framer-ZxGUX .framer-fruefz { left: unset; overflow: visible; position: relative; top: unset; transform: unset; width: 309px; } .framer-ZxGUX .framer-1xexqa9 { width: 309px; } .framer-ZxGUX .framer-32vt1d { overflow: visible; } .framer-ZxGUX .framer-2phkai { width: 308px; } .framer-ZxGUX .framer-ze2ct7 { padding: 60px 60px 50px 60px; } .framer-ZxGUX .framer-d8qx8c { gap: 16px; } .framer-ZxGUX .framer-d3pglp, .framer-ZxGUX .framer-pz1ssw { padding: 20px 20px 20px 92px; width: 33%; } .framer-ZxGUX .framer-zvzmq5, .framer-ZxGUX .framer-husdcb, .framer-ZxGUX .framer-rqban6, .framer-ZxGUX .framer-1aql1hi, .framer-ZxGUX .framer-zfch18, .framer-ZxGUX .framer-511tbt { left: 15px; } .framer-ZxGUX .framer-hrc9of, .framer-ZxGUX .framer-rdb4ka, .framer-ZxGUX .framer-1tn2aqx, .framer-ZxGUX .framer-8xmdvc, .framer-ZxGUX .framer-occlic, .framer-ZxGUX .framer-1qqgtff { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-ZxGUX .framer-1y30ctu, .framer-ZxGUX .framer-r81fbo { padding: 20px 10px 20px 92px; width: 31%; } .framer-ZxGUX .framer-qo1uqr, .framer-ZxGUX .framer-1rynquh { padding: 20px 20px 20px 92px; width: 31%; } .framer-ZxGUX .framer-18t2aa1 { padding: 60px; } .framer-ZxGUX .framer-10kp4sx-container { width: 688px; } .framer-ZxGUX .framer-isx2ye { padding: 100px 60px 100px 60px; } .framer-ZxGUX .framer-1n3zgz1 { width: 517px; } .framer-ZxGUX .framer-6p1smo-container { bottom: 22px; height: auto; order: 3; right: unset; top: unset; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-ZxGUX .framer-16vgm7a, .framer-ZxGUX .framer-w1tufb, .framer-ZxGUX .framer-4ghz93, .framer-ZxGUX .framer-ch8izt, .framer-ZxGUX .framer-6iwc1p, .framer-ZxGUX .framer-1lvvlny, .framer-ZxGUX .framer-sf0a06, .framer-ZxGUX .framer-1o8yezi, .framer-ZxGUX .framer-1o5mnop, .framer-ZxGUX .framer-106ivxb, .framer-ZxGUX .framer-d8qx8c { gap: 0px; } .framer-ZxGUX .framer-16vgm7a > * { margin: 0px; margin-bottom: calc(7px / 2); margin-top: calc(7px / 2); } .framer-ZxGUX .framer-16vgm7a > :first-child, .framer-ZxGUX .framer-w1tufb > :first-child, .framer-ZxGUX .framer-4ghz93 > :first-child, .framer-ZxGUX .framer-ch8izt > :first-child, .framer-ZxGUX .framer-sf0a06 > :first-child, .framer-ZxGUX .framer-106ivxb > :first-child { margin-top: 0px; } .framer-ZxGUX .framer-16vgm7a > :last-child, .framer-ZxGUX .framer-w1tufb > :last-child, .framer-ZxGUX .framer-4ghz93 > :last-child, .framer-ZxGUX .framer-ch8izt > :last-child, .framer-ZxGUX .framer-sf0a06 > :last-child, .framer-ZxGUX .framer-106ivxb > :last-child { margin-bottom: 0px; } .framer-ZxGUX .framer-w1tufb > *, .framer-ZxGUX .framer-106ivxb > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-ZxGUX .framer-4ghz93 > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-ZxGUX .framer-ch8izt > * { margin: 0px; margin-bottom: calc(38px / 2); margin-top: calc(38px / 2); } .framer-ZxGUX .framer-6iwc1p > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-ZxGUX .framer-6iwc1p > :first-child, .framer-ZxGUX .framer-1lvvlny > :first-child, .framer-ZxGUX .framer-1o8yezi > :first-child, .framer-ZxGUX .framer-1o5mnop > :first-child, .framer-ZxGUX .framer-d8qx8c > :first-child { margin-left: 0px; } .framer-ZxGUX .framer-6iwc1p > :last-child, .framer-ZxGUX .framer-1lvvlny > :last-child, .framer-ZxGUX .framer-1o8yezi > :last-child, .framer-ZxGUX .framer-1o5mnop > :last-child, .framer-ZxGUX .framer-d8qx8c > :last-child { margin-right: 0px; } .framer-ZxGUX .framer-1lvvlny > *, .framer-ZxGUX .framer-1o8yezi > *, .framer-ZxGUX .framer-1o5mnop > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-ZxGUX .framer-sf0a06 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-ZxGUX .framer-d8qx8c > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } }}\",\"@media (max-width: 809px) { .framer-ZxGUX.framer-1y4mrjo { width: 390px; } .framer-ZxGUX .framer-1uenapd { order: 1; } .framer-ZxGUX .framer-lm31y0 { justify-content: flex-start; z-index: 1; } .framer-ZxGUX .framer-lbwe10 { height: 102%; top: calc(49.49664429530203% - 102% / 2); } .framer-ZxGUX .framer-10o7ri9-container { height: 100%; top: calc(49.91708126036487% - 99.75124378109453% / 2); } .framer-ZxGUX .framer-ck1uvb { height: 596px; padding: 50px 30px 0px 30px; } .framer-ZxGUX .framer-mzqvu7 { padding: 0px; } .framer-ZxGUX .framer-16vgm7a { flex-direction: column; gap: 3px; padding: 0px; width: 100%; } .framer-ZxGUX .framer-gozr7q { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-ZxGUX .framer-qnhu3h-container, .framer-ZxGUX .framer-xtrl10, .framer-ZxGUX .framer-1y07ckb, .framer-ZxGUX .framer-16rckh6 { width: 100%; } .framer-ZxGUX .framer-w1tufb { padding: 0px 30px 0px 30px; } .framer-ZxGUX .framer-1cwx671-container { height: auto; width: 100%; } .framer-ZxGUX .framer-7sbnzm, .framer-ZxGUX .framer-isx2ye { padding: 100px 30px 100px 30px; } .framer-ZxGUX .framer-4ghz93 { flex-direction: column; gap: 50px; } .framer-ZxGUX .framer-4ie0za, .framer-ZxGUX .framer-mmziah { flex: none; width: 100%; } .framer-ZxGUX .framer-64x38l { justify-content: center; padding: 0px; } .framer-ZxGUX .framer-ddk3px-container { height: var(--framer-aspect-ratio-supported, 113px); width: 100%; } .framer-ZxGUX .framer-142qd1z { background-color: unset; } .framer-ZxGUX .framer-ch8izt { max-width: unset; padding: 50px 30px 50px 30px; } .framer-ZxGUX .framer-6iwc1p { flex-direction: column; gap: 18px; max-width: unset; } .framer-ZxGUX .framer-if38sq, .framer-ZxGUX .framer-ze2ct7 { padding: 60px 30px 60px 30px; } .framer-ZxGUX .framer-ny6wjw { flex-direction: column; gap: 40px; } .framer-ZxGUX .framer-cccqgi { align-content: center; align-items: center; flex: none; gap: 25px; position: relative; top: unset; width: 100%; } .framer-ZxGUX .framer-119mzxa, .framer-ZxGUX .framer-12ygkdi, .framer-ZxGUX .framer-qeni0q, .framer-ZxGUX .framer-1kz7ydo { order: 0; } .framer-ZxGUX .framer-d8qx8c { flex-direction: column; gap: 20px; justify-content: flex-start; } .framer-ZxGUX .framer-d3pglp, .framer-ZxGUX .framer-1y30ctu, .framer-ZxGUX .framer-r81fbo, .framer-ZxGUX .framer-pz1ssw, .framer-ZxGUX .framer-qo1uqr, .framer-ZxGUX .framer-1rynquh { height: 90px; width: 100%; } .framer-ZxGUX .framer-rqban6 { height: var(--framer-aspect-ratio-supported, 64px); } .framer-ZxGUX .framer-18t2aa1 { gap: 40px; padding: 75px 30px 75px 30px; } .framer-ZxGUX .framer-12t5mg4 { order: 2; } .framer-ZxGUX .framer-z508qv, .framer-ZxGUX .framer-6p1smo-container { order: 4; } .framer-ZxGUX .framer-10jnuj { order: 5; } .framer-ZxGUX .framer-1aijsmj { order: 3; } .framer-ZxGUX .framer-1e2cofb { order: 6; } .framer-ZxGUX .framer-1g30e8k { order: 7; } .framer-ZxGUX .framer-1paw8q9 { order: 8; } .framer-ZxGUX .framer-anw3h { gap: 35px; } .framer-ZxGUX .framer-1n3zgz1 { height: 689px; padding: 40px 27px 40px 27px; width: 326px; } .framer-ZxGUX .framer-elugeg { height: 726px; order: 2; } .framer-ZxGUX .framer-1il1cmm-container { left: 50%; max-height: 100vh; order: 3; transform: translateX(-50%); z-index: 3; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-ZxGUX .framer-16vgm7a, .framer-ZxGUX .framer-4ghz93, .framer-ZxGUX .framer-6iwc1p, .framer-ZxGUX .framer-ny6wjw, .framer-ZxGUX .framer-cccqgi, .framer-ZxGUX .framer-d8qx8c, .framer-ZxGUX .framer-18t2aa1, .framer-ZxGUX .framer-anw3h { gap: 0px; } .framer-ZxGUX .framer-16vgm7a > * { margin: 0px; margin-bottom: calc(3px / 2); margin-top: calc(3px / 2); } .framer-ZxGUX .framer-16vgm7a > :first-child, .framer-ZxGUX .framer-4ghz93 > :first-child, .framer-ZxGUX .framer-6iwc1p > :first-child, .framer-ZxGUX .framer-ny6wjw > :first-child, .framer-ZxGUX .framer-cccqgi > :first-child, .framer-ZxGUX .framer-d8qx8c > :first-child, .framer-ZxGUX .framer-18t2aa1 > :first-child, .framer-ZxGUX .framer-anw3h > :first-child { margin-top: 0px; } .framer-ZxGUX .framer-16vgm7a > :last-child, .framer-ZxGUX .framer-4ghz93 > :last-child, .framer-ZxGUX .framer-6iwc1p > :last-child, .framer-ZxGUX .framer-ny6wjw > :last-child, .framer-ZxGUX .framer-cccqgi > :last-child, .framer-ZxGUX .framer-d8qx8c > :last-child, .framer-ZxGUX .framer-18t2aa1 > :last-child, .framer-ZxGUX .framer-anw3h > :last-child { margin-bottom: 0px; } .framer-ZxGUX .framer-4ghz93 > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-ZxGUX .framer-6iwc1p > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-ZxGUX .framer-ny6wjw > *, .framer-ZxGUX .framer-18t2aa1 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-ZxGUX .framer-cccqgi > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-ZxGUX .framer-d8qx8c > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-ZxGUX .framer-anw3h > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4518\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"vyCMgQDxf\":{\"layout\":[\"fixed\",\"auto\"]},\"ZSL_I0K5p\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"lbuh5jjkS\":{\"pattern\":\":lbuh5jjkS\",\"name\":\"header-section\"},\"ZEFmdCyvx\":{\"pattern\":\":ZEFmdCyvx\",\"name\":\"cta\"},\"uoavmGCQU\":{\"pattern\":\":uoavmGCQU\",\"name\":\"navbar\"}}\n * @framerResponsiveScreen\n */const Framera_baB0xMT=withCSS(Component,css,\"framer-ZxGUX\");export default Framera_baB0xMT;Framera_baB0xMT.displayName=\"Home\";Framera_baB0xMT.defaultProps={height:4518,width:1200};addFonts(Framera_baB0xMT,[{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:\"Alternox Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/wjoe6R5hev7b5eSnWNzOPM5JN8.woff2\"},{family:\"Raleway\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/raleway/v34/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvoooCKNLA3JC9c.woff2\",weight:\"500\"},{family:\"Alternox Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/nM8tbqJuPlV4nwTEYu2bDOWr08k.woff2\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"},{family:\"Raleway\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/2YCK276JNUIIHMRWISQCDGWXNOKAXSCG/6OIJIEVI2ZSNHVU6RZ6WV47LHUN2T4MN/ZYCN4M673NULYB4BOICEICFLQAPDYBRK.woff2\",weight:\"400\"}]},...VideoFonts,...WordsSliderFonts,...PartnerLogosTickerFonts,...LearnMoreAboutUsButtonFonts,...YouTubeFonts,...CounterFonts,...ExploreOurCapabilitiesButtonFonts,...ListItemV2CopyFonts,...IconoirFonts,...ExploreOurSectorsButtonFonts,...CMSCard2Fonts,...CarouselFonts,...GetInTouchFonts,...Button3Fonts,...FooterFonts,...NavBarFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framera_baB0xMT\",\"slots\":[],\"annotations\":{\"framerAcceptsLayoutTemplate\":\"true\",\"framerContractVersion\":\"1\",\"framerResponsiveScreen\":\"\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"4518\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vyCMgQDxf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZSL_I0K5p\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1200\",\"framerScrollSections\":\"{\\\"lbuh5jjkS\\\":{\\\"pattern\\\":\\\":lbuh5jjkS\\\",\\\"name\\\":\\\"header-section\\\"},\\\"ZEFmdCyvx\\\":{\\\"pattern\\\":\\\":ZEFmdCyvx\\\",\\\"name\\\":\\\"cta\\\"},\\\"uoavmGCQU\\\":{\\\"pattern\\\":\\\":uoavmGCQU\\\",\\\"name\\\":\\\"navbar\\\"}}\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "progress", "objectFit", "backgroundColor", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "posterEnabled", "startTimeProp", "volume", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "startTime", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "groupsRegex", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "CounterStyles", "Counter", "props", "start", "end", "speed", "gapSize", "prefixText", "suffixText", "prefixFont", "suffixFont", "prefixColor", "suffixColor", "loop", "decimalSeparatorType", "textSize", "selectedFont", "textColor", "startOnViewport", "restartOnViewport", "count", "setCount", "ye", "isVisible", "setIsVisible", "containerRef", "pe", "ue", "observer", "entries", "entry", "updateCount", "prevCount", "intervalId", "formatNumber", "number", "u", "motion", "p", "addPropertyControls", "ControlType", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "RichText2", "u", "css", "FramerAN6hir0YI", "withCSS", "AN6hir0YI_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "hover", "id", "title", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "GcMGOEBiy", "fwJqTKFK5", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnter1yg9f13", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "RichText2", "css", "FramerbuMRhLPeB", "withCSS", "buMRhLPeB_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "RichText2", "css", "FramerCKgLAg4dO", "withCSS", "CKgLAg4dO_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "transformTemplate1", "_", "t", "transformTemplate2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "title", "title2", "title3", "title4", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_humanReadableVariantMap_props_variant", "_ref4", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "UerD0YzFJ", "SUGrwDSKe", "fmx9355OL", "PtgFWjAqJ", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear1rnr5e4", "args", "onAppear6ivtco", "onAppear68440q", "onAppear1x903th", "onAppear1lfk41w", "useOnVariantChange", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "css", "FrameroLRWJU7BT", "withCSS", "oLRWJU7BT_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "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", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "ComponentViewportProvider", "SmartComponentScopedContainer", "Ticker", "Image2", "css", "FramerS2T8LPwMP", "withCSS", "S2T8LPwMP_default", "addFonts", "TickerFonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "lqMlwAZy1", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1vae7l7", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "RichText2", "css", "FramerTp2B1b1oP", "withCSS", "Tp2B1b1oP_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "VideoFonts", "getFonts", "Video", "WordsSliderFonts", "oLRWJU7BT_default", "PartnerLogosTickerFonts", "S2T8LPwMP_default", "LearnMoreAboutUsButtonFonts", "zfhBthDya_default", "YouTubeFonts", "Youtube", "CounterFonts", "Counter", "ExploreOurCapabilitiesButtonFonts", "AN6hir0YI_default", "ListItemV2CopyFonts", "buMRhLPeB_default", "IconoirFonts", "Icon", "MotionDivWithFX", "withFX", "motion", "ExploreOurSectorsButtonFonts", "CKgLAg4dO_default", "CMSCard2Fonts", "h3PTKoNly_default", "CarouselFonts", "Carousel", "MotionAWithFX", "GetInTouchFonts", "Tp2B1b1oP_default", "Button3Fonts", "pVVkPy8Ds_default", "FooterFonts", "wgkVPX4Lj_default", "NavBarFonts", "K0zK2tqWi_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "animation2", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "transformTemplate1", "_", "t", "transition2", "animation3", "transformTemplate2", "transition3", "animation4", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "data", "useQueryData", "animation5", "animation6", "formVariants", "form", "variants", "currentVariant", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "W4QrcfAKTrLNfLIt4L", "WIWif6MVYrLNfLIt4L", "KFF9hrGZurLNfLIt4L", "idrLNfLIt4L", "W4QrcfAKTYSAd73ynN", "WIWif6MVYYSAd73ynN", "KFF9hrGZuYSAd73ynN", "idYSAd73ynN", "W4QrcfAKTqHRNMdQUa", "WIWif6MVYqHRNMdQUa", "KFF9hrGZuqHRNMdQUa", "idqHRNMdQUa", "W4QrcfAKTPVfd04EJx", "WIWif6MVYPVfd04EJx", "KFF9hrGZuPVfd04EJx", "idPVfd04EJx", "W4QrcfAKTLqCvQAeHd", "WIWif6MVYLqCvQAeHd", "KFF9hrGZuLqCvQAeHd", "idLqCvQAeHd", "W4QrcfAKTahHXYtAbF", "WIWif6MVYahHXYtAbF", "KFF9hrGZuahHXYtAbF", "idahHXYtAbF", "W4QrcfAKTrqzb3GOr2", "WIWif6MVYrqzb3GOr2", "KFF9hrGZurqzb3GOr2", "idrqzb3GOr2", "W4QrcfAKTKx832efZV", "KFF9hrGZuKx832efZV", "WIWif6MVYKx832efZV", "idKx832efZV", "W4QrcfAKTcdoOSZtXr", "KFF9hrGZucdoOSZtXr", "WIWif6MVYcdoOSZtXr", "idcdoOSZtXr", "W4QrcfAKTjB9I5OYqB", "KFF9hrGZujB9I5OYqB", "WIWif6MVYjB9I5OYqB", "idjB9I5OYqB", "W4QrcfAKTUx2OAn3JO", "KFF9hrGZuUx2OAn3JO", "WIWif6MVYUx2OAn3JO", "idUx2OAn3JO", "W4QrcfAKToOkwlByGf", "KFF9hrGZuoOkwlByGf", "WIWif6MVYoOkwlByGf", "idoOkwlByGf", "W4QrcfAKTsnYP9jncw", "KFF9hrGZusnYP9jncw", "WIWif6MVYsnYP9jncw", "idsnYP9jncw", "W4QrcfAKTLjdd4IgRZ", "KFF9hrGZuLjdd4IgRZ", "WIWif6MVYLjdd4IgRZ", "idLjdd4IgRZ", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEntertxyyif", "overlay", "loadMore", "args", "fwJqTKFK5txyyif", "lqMlwAZy1txyyif", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "isDisplayed", "isDisplayed1", "router", "useRouter", "isDisplayed2", "ref2", "ref3", "ref4", "ref5", "ref6", "ref7", "ref8", "ref9", "ref10", "ref11", "ref12", "ref13", "ref14", "ref15", "isDisplayed3", "ref16", "ref17", "ref18", "ref19", "ref20", "ref21", "ref22", "ref23", "elementId1", "ref24", "ref25", "ref26", "elementId2", "ref27", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "Container", "PropertyOverrides2", "x", "RichText2", "ResolveLinks", "resolvedLinks", "l", "AnimatePresence", "Floating", "overlay1", "overlay2", "overlay3", "overlay4", "overlay5", "overlay6", "overlay7", "overlay8", "overlay9", "overlay10", "overlay11", "overlay12", "overlay13", "Link", "Image2", "ChildrenCanSuspend", "R0RDYCDCJ_default", "collection", "paginationInfo", "index", "PathVariablesContext", "resolvedLinks1", "collection1", "paginationInfo1", "loadMore1", "index1", "resolvedLinks2", "collection2", "paginationInfo2", "loadMore2", "index2", "resolvedLinks3", "collection3", "paginationInfo3", "loadMore3", "index3", "resolvedLinks4", "collection4", "paginationInfo4", "loadMore4", "index4", "resolvedLinks5", "collection5", "paginationInfo5", "loadMore5", "index5", "resolvedLinks6", "collection6", "paginationInfo6", "loadMore6", "index6", "resolvedLinks7", "collection7", "paginationInfo7", "loadMore7", "index7", "collection8", "paginationInfo8", "loadMore8", "index8", "collection9", "paginationInfo9", "loadMore9", "index9", "collection10", "paginationInfo10", "loadMore10", "index10", "collection11", "paginationInfo11", "loadMore11", "index11", "collection12", "paginationInfo12", "loadMore12", "index12", "collection13", "paginationInfo13", "loadMore13", "index13", "overlay14", "FormContainer", "formState", "FormPlainTextInput2", "css", "Framera_baB0xMT", "withCSS", "a_baB0xMT_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
