{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/w90zR0qzeh1mgaDSvD54/Carousel.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/3fgSkLJzAAAU6lAT4hVj/SlideShow.js", "ssg:https://framerusercontent.com/modules/TOYsNfHT4xsdiSR6ieeS/zCjImh9ZRVNh8dixcOLG/AxrkXjwTm.js", "ssg:https://framerusercontent.com/modules/1KL57h55H6FypHSmJdu0/fAA3eG28S9X6a9HrzLI7/eJ6DEifPE.js", "ssg:https://framerusercontent.com/modules/QVX2NGgEweMp96vyxDUu/5T6IusmexwEtoTwzIeRv/F8EBOp716.js", "ssg:https://framerusercontent.com/modules/R7YHTCfeIoRLCSfbw4s0/9e2CRToRBCAOzXmlazx0/LidHoxabG.js", "ssg:https://framerusercontent.com/modules/CM3AoOsOgI1WnzzVitrY/qbzVPX2FAfQkPyLhkMw9/wWjouqtUO.js", "ssg:https://framerusercontent.com/modules/jbGMLt0nS4uKecSbbkt9/ZbmMlNn5jr7j8AbbiLxJ/vvg1RvENu.js"],
  "sourcesContent": ["function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isString=t=>\"string\"===typeof t;const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let r=0;for(;r<o-2;r++)if(s<e[r+1])break;let f=clamp(0,1,progress(e[r],e[r+1],s));const c=getEasingForSegment(n,r);f=c(f);return mix(t[r],t[r+1],f)}}const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useCallback,useLayoutEffect,useEffect,useState,useRef,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{scroll,resize}from\"@motionone/dom\";import{clamp,progress}from\"@motionone/utils\";import{animate,motion,useMotionValue,useTransform,useReducedMotion}from\"framer-motion\";import{usePadding,paddingControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * Calculate the width of the fade mask. Fade width and inset are provided\n * as percentages. There's a fade on the left and the right, so we return\n * a maximum of 50%.\n */ function calcMaskWidth([inset,width]){return inset+(100-inset)*(width/100)*.5;}/**\n * Use media queries to determine if this device uses a mouse as\n * the primary input.\n */ function useIsMouse(){const[isMouseDevice,setIsMouseDevice]=useState(false);useLayoutEffect(()=>{setIsMouseDevice(window.matchMedia(\"(pointer:fine)\").matches);},[]);return isMouseDevice;}/**\n * This checks a scroll position against the available scrollable\n * range. If we have hit an edge, start/end, we fade out the pagination\n * controls and mask. Likewise if we've just moved away from an edge we\n * fade them back in.\n */ function checkLimit(progress,target,{edgeOpacity,moreItems,buttonRef},transition){if(moreItems.current&&progress===target){moreItems.current=false;animate(edgeOpacity,1,transition);buttonRef.current.setAttribute(\"disabled\",\"\");}else if(!moreItems.current&&progress!==target){moreItems.current=true;animate(edgeOpacity,0,transition);buttonRef.current.removeAttribute(\"disabled\");}}function useGUI(initialMoreItems,initialAlpha){const moreItems=useRef(initialMoreItems);const edgeOpacity=useMotionValue(moreItems.current?0:1);const fadeOpacity=useTransform(edgeOpacity,[0,1],[initialAlpha||0,1]);const buttonOpacity=useTransform(edgeOpacity,v=>1-v);const buttonRef=useRef(null);/**\n     * Returns a pointer-events CSS value for a given opacity.\n     * The threshold here is arbitrary, the theory being we\n     * should only enable pointer-events when the button is\n     * somewhat visible.\n     */ const pointerEvents=useTransform(buttonOpacity,v=>v>.2?\"auto\":\"none\");/**\n     * Returns a cursor CSS value for a given pointer-events value.\n     * So only indicate\n     */ const cursor=useTransform(pointerEvents,v=>v===\"auto\"?\"pointer\":\"default\");const buttonStyle={...baseButtonStyles,opacity:buttonOpacity,pointerEvents,cursor};return{moreItems,fadeOpacity,edgeOpacity,buttonStyle,buttonRef};}function setAriaVisible({element}){element.setAttribute(\"aria-hidden\",false);}function useScrollLimits(container,axis,scrollInfo,updateCurrentScroll,targetScroll,checkLimits,measureItems){useEffect(()=>{if(!container.current)return;const updateScrollInfo=info=>{scrollInfo.current=info[axis];/**\n             * If we've reached our target scroll, delete it.\n             * This way we know when to make calculations based on the\n             * actual current scroll or the target scroll.\n             */ if(info[axis].current===targetScroll.current){targetScroll.current=undefined;}updateCurrentScroll(info[axis].current);checkLimits();};const stopScroll=scroll(updateScrollInfo,{container:container.current,axis});const stopResize=resize(container.current,()=>{measureItems();checkLimits();});return()=>{stopScroll();stopResize();};},[checkLimits,measureItems]);}/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */ export default function Carousel({slots,gap,axis,align,sizingObject,fadeObject,arrowObject,snapObject,progressObject,ariaLabel,borderRadius,effectsObject,...props}){const numItems=Children.count(slots);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const padding=usePadding(props);const axisLabel=axis?\"x\":\"y\";const{fadeContent,fadeWidth,fadeInset,fadeTransition,fadeAlpha}=fadeObject;const{snap,snapEdge,fluid}=snapObject;const{widthType,widthInset,widthColumns,heightType,heightInset,heightRows}=sizingObject;const{showScrollbar,showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressObject;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowPadding}=arrowObject;/**\n     * The latest scroll info on the scrollable axis as reported by Motion One.\n     */ const scrollInfo=useRef(undefined);/**\n     * The target scroll we're currently animating to, calculated when\n     * a user presses a pagination button.\n     */ const targetScroll=useRef(undefined);/**\n     * If we're performing a scroll animation, return the target scroll instead\n     * of the latest scroll position. This will help users paginate through\n     * a carousel much quicker.\n     */ const currentScroll=useMotionValue(0);const updateCurrentScroll=newScroll=>{currentScroll.set(targetScroll.current!==undefined?targetScroll.current:newScroll);};/**\n     * We only want to display pagination buttons if the user has enabled the setting\n     * and this is actually a mouse device.\n     */ const isMouseDevice=useIsMouse();/**\n     * Create all the motion values for the GUI at each end of the carousel.\n     */ const start=useGUI(false,fadeAlpha);const end=useGUI(true,fadeAlpha);const startMaskInset=useMotionValue(fadeInset*.5);const endMaskInset=useTransform(startMaskInset,v=>100-v);const baseWidth=useMotionValue(fadeWidth);const startMaskWidth=useTransform([startMaskInset,baseWidth],calcMaskWidth);const endMaskWidth=useTransform(startMaskWidth,v=>100-v);const direction=useMotionValue(axis?\"right\":\"bottom\");const mask=useTransform([direction,start.fadeOpacity,startMaskInset,startMaskWidth,end.fadeOpacity,endMaskInset,endMaskWidth,],latest=>{return`linear-gradient(to ${latest[0]}, rgb(0, 0, 0, ${latest[1]}) ${latest[2]}%, rgb(0, 0, 0, 1) ${latest[3]}%, rgba(0, 0, 0, 1) ${latest[6]}%, rgb(0, 0, 0, ${latest[4]}) ${latest[5]}%)`;});const carouselRef=useRef(null);/**\n     * Dots state\n     */ const[numPages,setNumPages]=useState(isCanvas?4:1);/**\n     * Generate styles for components.\n     */ const itemStyle={scrollSnapAlign:snapEdge,flexShrink:0};const childStyle={};if(align===\"stretch\"){if(axis){childStyle.height=\"100%\";itemStyle.height=\"auto\";}else{childStyle.width=\"100%\";itemStyle.width=\"auto\";}}if(!fluid){itemStyle.scrollSnapStop=\"always\";}if(widthType===\"stretch\"){itemStyle.width=`calc(100% - ${widthInset||0}px)`;childStyle.width=\"100%\";}else if(widthType===\"columns\"){itemStyle.width=`calc(${100/widthColumns}% - ${gap}px + ${gap/widthColumns}px)`;childStyle.width=\"100%\";}if(heightType===\"stretch\"){itemStyle.height=`calc(100% - ${heightInset||0}px)`;childStyle.height=\"100%\";}else if(heightType===\"rows\"){itemStyle.height=`calc(${100/heightRows}% - ${gap}px + ${gap/heightRows}px)`;childStyle.height=\"100%\";}const scrollOverflow=isCanvas?\"hidden\":\"auto\";const containerStyle={...baseContainerStyle,padding};const carouselStyle={...baseCarouselStyle,gap,alignItems:align,flexDirection:axis?\"row\":\"column\",overflowX:axis?scrollOverflow:\"hidden\",overflowY:axis?\"hidden\":scrollOverflow,scrollSnapType:snap?`${axisLabel} mandatory`:undefined,WebkitOverflowScrolling:\"touch\",WebkitMaskImage:fadeContent?mask:undefined,MozMaskImage:fadeContent?mask:undefined,maskImage:fadeContent?mask:undefined,borderRadius};const carouselA11y={[\"aria-roledescription\"]:\"carousel\"};if(ariaLabel){carouselA11y[\"aria-title\"]=ariaLabel;}const itemA11y={};if(align===\"stretch\"){itemA11y[\"aria-role\"]=\"group\";itemA11y[\"aria-roledescription\"]=\"slide\";}if(!isCanvas){const itemSizes=useRef([]);useScrollLimits(carouselRef,axisLabel,scrollInfo,updateCurrentScroll,targetScroll,useCallback(()=>{if(!scrollInfo.current)return;const{targetLength,containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();if(!targetLength&&!containerLength)return;if(targetLength>containerLength){checkLimit(current,0,start,fadeTransition);checkLimit(current,scrollLength,end,fadeTransition);for(let i=0;i<itemSizes.current.length;i++){const{element,start:start1,end:end1}=itemSizes.current[i];if(end1<current||start1>current+containerLength){element.setAttribute(\"aria-hidden\",true);}else{element.setAttribute(\"aria-hidden\",false);}}}else{checkLimit(0,0,start,fadeTransition);checkLimit(1,1,end,fadeTransition);itemSizes.current.forEach(setAriaVisible);}// This used to be Math.ceil, which would round 3.05 to 4.\n// This now uses Math.round to ensure people get a perfect amount of dots\n// when using Columns or Rows \u2014\u00A0Benjamin\n/**\n                 * Update by Matt: changing back to ceil, might break dots but round was incorrectly\n                 * paginating for all widths - overshooting items at shorter viewports and\n                 * not paginating at all for wide.\n                 */ let newNumPages=Math.ceil(targetLength/containerLength);if(!isNaN(newNumPages)){// If the number of dots is 65% of the number of items, make it 100%\nif(newNumPages/numItems>.65)newNumPages=numItems;if(newNumPages!==numPages)setNumPages(newNumPages);}},[numPages]),useCallback(()=>{if(!carouselRef.current)return;itemSizes.current=Array.from(carouselRef.current.children).map(element=>{return axis?{element,start:element.offsetLeft,end:element.offsetLeft+element.offsetWidth}:{element,start:element.offsetTop,end:element.offsetTop+element.offsetHeight};});},[]));}/**\n     * On the canvas, we want to keep the motion values updated\n     * with the latest props. Outside of the canvas these will never\n     * update.\n     */ if(isCanvas){useEffect(()=>{baseWidth.set(fadeWidth);},[fadeWidth]);useEffect(()=>{startMaskInset.set(fadeInset*.5);},[fadeInset]);useEffect(()=>{direction.set(axis?\"right\":\"bottom\");},[axis]);}const findNextItem=(delta,target)=>{if(!scrollInfo.current)return;const{current}=scrollInfo.current;const{children}=carouselRef.current;let scrollTarget;let i=delta===1?0:children.length-1;while(scrollTarget===undefined){const item=children[i];const start=axis?item.offsetLeft:item.offsetTop;const length=axis?item.offsetWidth:item.offsetHeight;const end=start+length;const threshold=.05;if(delta===1){const visibility=progress(start,end,target);if(visibility<1-threshold){scrollTarget=start;}else if(i===children.length-1){scrollTarget=end;}}else if(delta===-1){const visibility1=progress(start,end,target);if(visibility1>threshold){scrollTarget=end;}else if(i===0){scrollTarget=start;}}i+=delta;}return scrollTarget;};const isReducedMotion=useReducedMotion();const goto=scrollTo=>{targetScroll.current=scrollTo;const options=axis?{left:scrollTo}:{top:scrollTo};carouselRef.current.scrollTo({...options,behavior:isReducedMotion?\"auto\":\"smooth\"});};const gotoPage=page=>{if(!scrollInfo.current)return;const{scrollLength}=scrollInfo.current;goto(page*(scrollLength/(numPages-1)));};const gotoDelta=delta=>()=>{if(!scrollInfo.current)return;const{containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();const pageLength=scrollLength/numPages;const currentPage=clamp(0,numPages-1,Math.floor(current/pageLength));gotoPage(currentPage+delta);};/**\n     * Return placeholder if no children\n     */ if(numItems===0){return /*#__PURE__*/ _jsx(Placeholder,{});}const dots=[];const dotsBlurStyle={};if(numPages>1&&showProgressDots&&!showScrollbar){for(let i=0;i<numPages;i++){const isSelected=isCanvas&&!i||false;dots.push(/*#__PURE__*/ _jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,isSelected:isSelected,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>gotoPage(i),currentScroll:currentScroll,scrollInfo:scrollInfo,total:numPages,index:i,gap:dotsGap,padding:dotsPadding,axis:axis}));}if(dotsBlur){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}return /*#__PURE__*/ _jsxs(\"section\",{style:containerStyle,...carouselA11y,children:[/*#__PURE__*/ _jsx(motion.ul,{ref:carouselRef,style:carouselStyle,className:\"framer--carousel\",\"data-show-scrollbar\":showScrollbar,\"aria-atomic\":\"false\",\"aria-live\":\"polite\",onWheel:()=>targetScroll.current=undefined,children:Children.map(slots,(child,index)=>{var ref;/*#__PURE__*/ return _jsx(\"li\",{style:itemStyle,...itemA11y,\"aria-label\":`${index+1} of ${numItems}`,children:/*#__PURE__*/ cloneElement(child,{...child.props,style:{...(ref=child.props)===null||ref===void 0?void 0:ref.style,...childStyle}})});})}),/*#__PURE__*/ _jsxs(\"fieldset\",{style:{...controlsStyles,padding:arrowPadding,display:\"flex\",flexDirection:axis?\"row\":\"column\"},\"aria-label\":\"Carousel pagination controls\",className:\"framer--carousel-controls\",\"data-show-mouse-controls\":showMouseControls,children:[/*#__PURE__*/ _jsx(motion.button,{ref:start.buttonRef,type:\"button\",style:{...start.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/ _jsx(\"img\",{alt:\"\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\"})}),/*#__PURE__*/ _jsx(motion.button,{ref:end.buttonRef,type:\"button\",style:{...end.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/ _jsx(\"img\",{alt:\"\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\"})}),dots.length>1?/*#__PURE__*/ _jsx(\"div\",{style:{...dotsContainerStyle,left:axis?\"50%\":dotsInset,top:!axis?\"50%\":\"unset\",transform:axis?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:axis?\"row\":\"column\",bottom:axis?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,...dotsBlurStyle},children:dots}):null]}),/*#__PURE__*/ _jsx(MouseStyles,{})]});};/* Default Properties */ Carousel.defaultProps={gap:10,padding:10,progressObject:{showScrollbar:false,showProgressDots:false},sizingObject:{widthType:\"auto\",widthOffset:0,widthColumns:2,heightType:\"auto\",heightOffset:0,heightRows:2},borderRadius:0};/* Property Controls */ addPropertyControls(Carousel,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},axis:{type:ControlType.Enum,title:\"Direction\",options:[true,false],optionIcons:[\"direction-horizontal\",\"direction-vertical\"],displaySegmentedControl:true},align:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{axis:{true:[\"align-top\",\"align-middle\",\"align-bottom\"],false:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},...paddingControl,sizingObject:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Enum,title:\"Width\",options:[\"auto\",\"stretch\",\"columns\"],optionTitles:[\"Auto\",\"Stretch\",\"Columns\"],defaultValue:\"auto\"},widthInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.widthType!==\"stretch\"},widthColumns:{type:ControlType.Number,title:\"Columns\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.widthType!==\"columns\"},heightType:{type:ControlType.Enum,title:\"Height\",options:[\"auto\",\"stretch\",\"rows\"],optionTitles:[\"Auto\",\"Stretch\",\"Rows\"],defaultValue:\"auto\"},heightInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.heightType!==\"stretch\"},heightRows:{type:ControlType.Number,title:\"Rows\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.heightType!==\"rows\"}}},snapObject:{type:ControlType.Object,title:\"Snapping\",controls:{snap:{type:ControlType.Boolean,title:\"Enable\"},snapEdge:{type:ControlType.Enum,title:\"Edge\",options:[\"start\",\"center\",\"end\"],optionTitles:[\"Left\",\"Center\",\"Right\"],defaultValue:\"center\",hidden:props=>!props.snap},fluid:{type:ControlType.Boolean,title:\"Fluid\",defaultValue:false,hidden:props=>!props.snap}}},fadeObject:{type:ControlType.Object,title:\"Fading\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Enable\",defaultValue:false},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",hidden:props=>!props.fadeContent,min:0,max:1,step:.05,defaultValue:0},fadeTransition:{type:ControlType.Transition,title:\"Transition\",hidden:props=>!props.fadeContent}}},progressObject:{type:ControlType.Object,title:\"Progress\",controls:{showScrollbar:{type:ControlType.Boolean,title:\"Scroll Bar\",defaultValue:false},showProgressDots:{type:ControlType.Boolean,title:\"Dots\",defaultValue:false,hidden:props=>props.showScrollbar},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:4,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}},arrowObject:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:true},arrowFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showMouseControls},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:40,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls}}},ariaLabel:{type:ControlType.String,title:\"Aria Label\",placeholder:\"Movies...\"},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0}});function Dot({currentScroll,scrollInfo,isSelected,selectedOpacity,opacity:unselectedOpacity,total,index,dotStyle,buttonStyle,gap,padding,axis,...props}){const opacity=useTransform(currentScroll,v=>{var ref,ref1;if(!((ref=scrollInfo.current)===null||ref===void 0?void 0:ref.scrollLength)){return index===0?selectedOpacity:unselectedOpacity;}const pageLength=((ref1=scrollInfo.current)===null||ref1===void 0?void 0:ref1.scrollLength)/total;const minScroll=pageLength*index;const maxScroll=minScroll+pageLength;const isSelected=v>=minScroll&&(index<total-1?v<maxScroll:index===total-1);return isSelected?selectedOpacity:unselectedOpacity;});const inlinePadding=gap/2;let top=!axis&&index>0?inlinePadding:padding;let bottom=!axis&&index!==total-1?inlinePadding:padding;let right=axis&&index!==total-1?inlinePadding:padding;let left=axis&&index>0?inlinePadding:padding;return /*#__PURE__*/ _jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/ _jsx(motion.div,{style:{...dotStyle,opacity}})});}function Placeholder(){return /*#__PURE__*/ _jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/ _jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/ _jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/ _jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to swipe between.\"})]});}function MouseStyles(){return /*#__PURE__*/ _jsx(\"div\",{dangerouslySetInnerHTML:{__html:`<style>@media (pointer: fine) {\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar {\n                    display: none;\n                    -webkit-appearance: none;\n                    width: 0;\n                    height: 0;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar-thumb {\n                    display: none;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"] {\n                    scrollbar-width: none;\n                    scrollbar-height: none;\n                }\n            }</style>`}});}/* Styles */ const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:130,lineHeight:1.5,textAlign:\"center\"};const labelStyle={clip:\"rect(0 0 0 0)\",WebkitClipPath:\"inset(50%)\",clipPath:\"inset(50%)\",height:1,width:1,margin:-1,padding:0,overflow:\"hidden\",position:\"absolute\",whiteSpace:\"nowrap\"};/**\n * GUI styles\n */ const baseContainerStyle={display:\"flex\",overflow:\"hidden\",width:\"100%\",height:\"100%\",position:\"relative\"};const baseCarouselStyle={padding:0,margin:0,listStyle:\"none\",position:\"relative\",display:\"flex\",flex:\"1 1 100%\",width:\"100%\",height:\"100%\"};const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",top:0,left:0,right:0,bottom:0,pointerEvents:\"none\",border:0,padding:0,margin:0};/**\n * Dot styles\n */ const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Carousel\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement,forwardRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,animate,useMotionValue,useTransform,LayoutGroup,wrap,sync}from\"framer-motion\";import{resize}from\"@motionone/dom\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js\";// Using opacity: 0.001 instead of 0 as an LCP hack. (opacity: 0.001 is still 0\n// to a human eye but makes Google think the elements are visible)\nconst OPACITY_0=.001;/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots,startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;const hasChildren=Children.count(slots)>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return slots.map(index=>/*#__PURE__*/createRef());},[slots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null});/* For pausing on hover */const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */const dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{sync.read(()=>{if(hasChildren&&parentRef.current){const total=slots.length-1;const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[total].current?isHorizontal?childrenRef[total].current.offsetLeft+childrenRef[total].current.offsetWidth:childrenRef[total].current.offsetTop+childrenRef[total].current.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetWidth:childrenRef[0].current.offsetHeight:0;const itemWidth=childrenRef[0].current?childrenRef[0].current.offsetWidth:0;const itemHeight=childrenRef[0].current?childrenRef[0].current.offsetHeight:0;setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight});}});},[hasChildren]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{if(hasChildren)measure();},[hasChildren,itemAmount]);/**\n     * Track whether this is the initial resize event. By default this will fire on mount,\n     * which we do in the useEffect. We should only fire it on subsequent resizes.\n     */let initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){measure();setIsResizing(true);}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>setIsResizing(false),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=slots===null||slots===void 0?void 0:slots.length;const childrenSize=isCanvas?0:size===null||size===void 0?void 0:size.children;const itemWithGap=(size===null||size===void 0?void 0:size.item)+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);/* Check for browser window visibility *//* Otherwise, it will re-play all the item increments */const isVisible=usePageVisibility();const factor=isInverted?1:-1;/* The x and y values to start from */const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */const canvasPosition=isHorizontal?-startFrom*((size===null||size===void 0?void 0:size.itemWidth)+gap):-startFrom*((size===null||size===void 0?void 0:size.itemHeight)+gap);/* Calculate the new value to animate to */const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping *//* Instead of 0 to a negative full duplicated row, we start with an offset */const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point *//* The subtraction of a full row of children is for overflow */useLayoutEffect(()=>{if((size===null||size===void 0?void 0:size.children)===null)return;/* Initial measure */// if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     *//* Next and previous function, animates the X */const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover){timeoutRef.current=setTimeout(()=>{setCurrentItem(currentItem+1);switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=delta=>{if(!isInverted){setCurrentItem(currentItem+delta);}else{setCurrentItem(currentItem-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){setCurrentItem(currentItem+goto);}else{setCurrentItem(currentItem-gotoInverted);}};/**\n     * Drag\n     */const handleDragStart=()=>{setIsDragging(true);};const handleDragEnd=(event,{offset,velocity})=>{setIsDragging(false);const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200// Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch *//* For velocity use only */const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta);}if(isHalfOfPrev){setDelta(-itemDelta);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */let childCounter=0;/**\n     * Sizing\n     * */let columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */for(let index=0;index<duplicateBy;index++){dupedChildren.push(...Children.map(slots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===slots.length-1){ref=childrenRef[1];}return /*#__PURE__*/_jsx(Slide,{ref:childrenRef[childIndex],slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:slots===null||slots===void 0?void 0:slots.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/**\n     * Dots\n     */const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<(slots===null||slots===void 0?void 0:slots.length);i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:(size===null||size===void 0?void 0:size.item)!==null?1:OPACITY_0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();setIsMouseDown(true);},onMouseUp:()=>setIsMouseDown(false),children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/_jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?OPACITY_0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:OPACITY_0},transition:transitionControl,children:[/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});}/* Default Properties */Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover}}},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */const Slide=/*#__PURE__*/forwardRef(function Component(props,ref){var _child_props,_child_props1;const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;/**\n     * Unique offsets + scroll range [0, 1, 1, 0]\n     */const childOffset=((size===null||size===void 0?void 0:size.item)+gap)*childCounter;const scrollRange=[-(size===null||size===void 0?void 0:size.item),0,(size===null||size===void 0?void 0:size.parent)-(size===null||size===void 0?void 0:size.item)+gap,size===null||size===void 0?void 0:size.parent].map(val=>val-childOffset);/**\n     * Effects\n     */const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.onChange(newValue=>{var _ref_current;(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.setAttribute(\"aria-hidden\",!newValue);});},[]);return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref,key:slideKey+\"child\",style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.children)})});});function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item *//* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;let top=!isHorizontal&&index>0?inlinePadding:padding;let bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;let right=isHorizontal&&index!==total-1?inlinePadding:padding;let left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});}/* Dot Styles */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"200\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (be619af)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,ResolveLinks,RichText,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js\";import Button from\"https://framerusercontent.com/modules/lu7pZNh41IN8XEis7MHk/lavtT8vxGqLUeDZCkbjr/OneP4W_UD.js\";const VideoFonts=getFonts(Video);const RichTextWithFX=withFX(RichText);const ButtonFonts=getFonts(Button);const cycleOrder=[\"BXkuKa1Nb\",\"A09C9WxZ5\",\"uMQwJFqiy\"];const serializationHash=\"framer-9sYja\";const variantClassNames={A09C9WxZ5:\"framer-v-f21wiv\",BXkuKa1Nb:\"framer-v-1i7m9fv\",uMQwJFqiy:\"framer-v-mgz1i0\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:100};const transition2={damping:40,delay:.1,mass:1,stiffness:200,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transition:transition2,x:0,y:100};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Hero Mobile\":\"uMQwJFqiy\",\"Hero Tablet\":\"A09C9WxZ5\",HeroSection:\"BXkuKa1Nb\"};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:\"BXkuKa1Nb\"};};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:\"BXkuKa1Nb\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"uMQwJFqiy\")return false;return true;};const router=useRouter();const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.header,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1i7m9fv\",className,classNames),\"data-framer-name\":\"HeroSection\",layoutDependency:layoutDependency,layoutId:\"BXkuKa1Nb\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(255, 255, 255)\",...style},...addPropertyOverrides({A09C9WxZ5:{\"data-framer-name\":\"Hero Tablet\"},uMQwJFqiy:{\"data-framer-name\":\"Hero Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1py1t58-container\",layoutDependency:layoutDependency,layoutId:\"AFPHyeBnC-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"AFPHyeBnC\",isMixedBorderRadius:false,layoutId:\"AFPHyeBnC\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/s9risILz9T2KbWx0SPeHYNUf3jA.webm\",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__*/_jsx(motion.div,{className:\"framer-1ym930v\",\"data-framer-name\":\"Desktop-HeroSection\",layoutDependency:layoutDependency,layoutId:\"el7yb19G4\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6luued\",layoutDependency:layoutDependency,layoutId:\"jFAz9ggYm\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h1,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(255, 255, 255))\",\"--framer-text-transform\":\"capitalize\"},children:[\"Transforming Transport Infrastructure With \",/*#__PURE__*/_jsx(motion.br,{}),\"Digital Twins\"]})}),className:\"framer-1ye1gn2\",fonts:[\"GF;DM Sans-700\"],layoutDependency:layoutDependency,layoutId:\"qf1vh3ckh\",style:{\"--extracted-gdpscs\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({A09C9WxZ5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h1,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(255, 255, 255))\",\"--framer-text-transform\":\"capitalize\"},children:[\"Transforming Transport Infrastructure With \",/*#__PURE__*/_jsx(motion.br,{}),\"Digital Twins\"]})})},uMQwJFqiy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h1,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(255, 255, 255))\",\"--framer-text-transform\":\"capitalize\"},children:[\"Transforming Transport Infrastructure With \",/*#__PURE__*/_jsx(motion.br,{}),\"Digital Twins\"]})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:.8,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:[\"With \",/*#__PURE__*/_jsx(motion.strong,{children:\"SpatialSense Scanner\"}),\" and \",/*#__PURE__*/_jsx(motion.strong,{children:\"Cloud\"}),\", optimise infrastructure management to boost efficiency, save costs, and minimise downtime.\"]})}),className:\"framer-124afou\",fonts:[\"GF;DM Sans-regular\",\"GF;DM Sans-700\"],layoutDependency:layoutDependency,layoutId:\"khVhG53TY\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.8},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({A09C9WxZ5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:[\"With \",/*#__PURE__*/_jsx(motion.strong,{children:\"SpatialSense Scanner\"}),\" and \",/*#__PURE__*/_jsx(motion.strong,{children:\"Cloud\"}),\", optimise infrastructure management to boost efficiency, save costs, and minimise downtime.\"]})})},uMQwJFqiy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:[\"With \",/*#__PURE__*/_jsx(motion.strong,{children:\"SpatialSense Scanner\"}),\" and \",/*#__PURE__*/_jsx(motion.strong,{children:\"Cloud\"}),\", optimise infrastructure management to boost efficiency, save costs, and minimise downtime.\"]})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3wzh2m\",layoutDependency:layoutDependency,layoutId:\"tETuSa38j\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ABk9OkItj\"},implicitPathVariables:undefined},{href:{webPageId:\"ABk9OkItj\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,width:\"177px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+150+0+0+364+0,...addPropertyOverrides({A09C9WxZ5:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+150+0+0+324+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-dc6s0h-container\",layoutDependency:layoutDependency,layoutId:\"PbOicIqRo-container\",children:/*#__PURE__*/_jsx(Button,{Ag6XWw_qR:resolvedLinks[0],height:\"100%\",HEosbWztN:\"Discover Kodifly\",id:\"PbOicIqRo\",layoutId:\"PbOicIqRo\",style:{height:\"100%\",width:\"100%\"},variant:\"EG7UbZkw5\",width:\"100%\",...addPropertyOverrides({A09C9WxZ5:{Ag6XWw_qR:resolvedLinks[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"DbpyUBFJC\"},implicitPathVariables:undefined},{href:{webPageId:\"DbpyUBFJC\"},implicitPathVariables:undefined},{href:{webPageId:\"ABk9OkItj\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,width:\"177px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+150+0+0+364+0,...addPropertyOverrides({A09C9WxZ5:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+150+0+0+324+0},uMQwJFqiy:{height:40,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+150+0+0+214+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-9pvkbk-container\",layoutDependency:layoutDependency,layoutId:\"E1hK8P5fG-container\",children:/*#__PURE__*/_jsx(Button,{Ag6XWw_qR:resolvedLinks1[0],height:\"100%\",HEosbWztN:\"View Solutions\",id:\"E1hK8P5fG\",layoutId:\"E1hK8P5fG\",style:{height:\"100%\",width:\"100%\"},variant:\"BPFfPcuNl\",width:\"100%\",...addPropertyOverrides({A09C9WxZ5:{Ag6XWw_qR:resolvedLinks1[1]},uMQwJFqiy:{Ag6XWw_qR:resolvedLinks1[2],HEosbWztN:\"Discover Kodifly\"}},baseVariant,gestureVariant)})})})})]})]})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-9sYja.framer-m9gpds, .framer-9sYja .framer-m9gpds { display: block; }\",\".framer-9sYja.framer-1i7m9fv { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: 800px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1500px; }\",\".framer-9sYja .framer-1py1t58-container { flex: none; height: 800px; left: 0px; position: absolute; top: 0px; width: 100%; z-index: 0; }\",\".framer-9sYja .framer-1ym930v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 150px; position: relative; width: min-content; }\",\".framer-9sYja .framer-6luued { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: auto; }\",\".framer-9sYja .framer-1ye1gn2 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 827px; word-break: break-word; word-wrap: break-word; }\",\".framer-9sYja .framer-124afou { flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 722px; word-break: break-word; word-wrap: break-word; }\",\".framer-9sYja .framer-3wzh2m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-9sYja .framer-dc6s0h-container, .framer-9sYja .framer-9pvkbk-container { flex: none; height: 44px; position: relative; width: 177px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-9sYja.framer-1i7m9fv, .framer-9sYja .framer-1ym930v, .framer-9sYja .framer-6luued, .framer-9sYja .framer-3wzh2m { gap: 0px; } .framer-9sYja.framer-1i7m9fv > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-9sYja.framer-1i7m9fv > :first-child, .framer-9sYja .framer-1ym930v > :first-child, .framer-9sYja .framer-6luued > :first-child { margin-top: 0px; } .framer-9sYja.framer-1i7m9fv > :last-child, .framer-9sYja .framer-1ym930v > :last-child, .framer-9sYja .framer-6luued > :last-child { margin-bottom: 0px; } .framer-9sYja .framer-1ym930v > *, .framer-9sYja .framer-6luued > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-9sYja .framer-3wzh2m > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-9sYja .framer-3wzh2m > :first-child { margin-left: 0px; } .framer-9sYja .framer-3wzh2m > :last-child { margin-right: 0px; } }\",\".framer-9sYja.framer-v-f21wiv.framer-1i7m9fv { height: 700px; width: 1200px; }\",\".framer-9sYja.framer-v-f21wiv .framer-1py1t58-container { height: 700px; }\",\".framer-9sYja.framer-v-f21wiv .framer-1ye1gn2 { width: 810px; }\",\".framer-9sYja.framer-v-f21wiv .framer-124afou { width: 608px; }\",\".framer-9sYja.framer-v-mgz1i0.framer-1i7m9fv { height: 500px; width: 390px; }\",\".framer-9sYja.framer-v-mgz1i0 .framer-1py1t58-container { height: 500px; }\",\".framer-9sYja.framer-v-mgz1i0 .framer-1ye1gn2 { width: 353px; }\",\".framer-9sYja.framer-v-mgz1i0 .framer-124afou { width: 310px; }\",\".framer-9sYja.framer-v-mgz1i0 .framer-3wzh2m { gap: 16px; }\",\".framer-9sYja.framer-v-mgz1i0 .framer-9pvkbk-container { height: 40px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-9sYja.framer-v-mgz1i0 .framer-3wzh2m { gap: 0px; } .framer-9sYja.framer-v-mgz1i0 .framer-3wzh2m > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-9sYja.framer-v-mgz1i0 .framer-3wzh2m > :first-child { margin-left: 0px; } .framer-9sYja.framer-v-mgz1i0 .framer-3wzh2m > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 800\n * @framerIntrinsicWidth 1500\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"A09C9WxZ5\":{\"layout\":[\"fixed\",\"fixed\"]},\"uMQwJFqiy\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerAxrkXjwTm=withCSS(Component,css,\"framer-9sYja\");export default FramerAxrkXjwTm;FramerAxrkXjwTm.displayName=\"Hero Section\";FramerAxrkXjwTm.defaultProps={height:800,width:1500};addPropertyControls(FramerAxrkXjwTm,{variant:{options:[\"BXkuKa1Nb\",\"A09C9WxZ5\",\"uMQwJFqiy\"],optionTitles:[\"HeroSection\",\"Hero Tablet\",\"Hero Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerAxrkXjwTm,[{explicitInter:true,fonts:[{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwARZthS2f3ZGMZpg.woff2\",weight:\"700\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAopxhS2f3ZGMZpg.woff2\",weight:\"400\"}]},...VideoFonts,...ButtonFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerAxrkXjwTm\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1500\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"A09C9WxZ5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"uMQwJFqiy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"800\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./AxrkXjwTm.map", "// Generated by Framer (68888f7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,getPropertyControls,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import CTA from\"https://framerusercontent.com/modules/Fc42YbiZnUmIvfMJiYGP/K8gkfuUrDFkOuMotDAXs/FLXzApIyg.js\";import{Icon as Phosphor1}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/H4OHcdXxZyPVKySUy1y2/Phosphor.js\";const PhosphorFonts=getFonts(Phosphor);const CTAFonts=getFonts(CTA);const Phosphor1Controls=getPropertyControls(Phosphor1);const cycleOrder=[\"XLkWWOhdz\",\"eWTSOge44\",\"hRscnNlM_\",\"JMGVmhVTZ\"];const serializationHash=\"framer-2wW9K\";const variantClassNames={eWTSOge44:\"framer-v-1m0488e\",hRscnNlM_:\"framer-v-7emjue\",JMGVmhVTZ:\"framer-v-1w73uvq\",XLkWWOhdz:\"framer-v-1p91o6v\"};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 toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"\u26AA\uFE0F Day Left\":\"eWTSOge44\",\"\u26AA\uFE0F Day Middle\":\"XLkWWOhdz\",\"\u26AB\uFE0F Night Left\":\"JMGVmhVTZ\",\"\u26AB\uFE0F Night Middle\":\"hRscnNlM_\"};const getProps=({cTA,cTA1,height,icon,icon1,icon2,iconBackground,id,image,image1,link,text,title,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4,_ref5,_ref6,_humanReadableVariantMap_props_variant,_ref7,_ref8;return{...props,aa5hKvvkV:(_ref=icon1!==null&&icon1!==void 0?icon1:props.aa5hKvvkV)!==null&&_ref!==void 0?_ref:\"Leaf\",BFuTBK47u:(_ref1=text!==null&&text!==void 0?text:props.BFuTBK47u)!==null&&_ref1!==void 0?_ref1:\"Enhance your productivity by connecting with your favorite tools, keeping all your essentials in one place.\",cX1P9xQse:link!==null&&link!==void 0?link:props.cX1P9xQse,jFgwazo_q:(_ref2=icon2!==null&&icon2!==void 0?icon2:props.jFgwazo_q)!==null&&_ref2!==void 0?_ref2:\"rgb(255, 255, 255)\",oc_8kOa9a:(_ref3=title!==null&&title!==void 0?title:props.oc_8kOa9a)!==null&&_ref3!==void 0?_ref3:\"Integration ecosystem\",OLqpcuIeL:image!==null&&image!==void 0?image:props.OLqpcuIeL,PFec_i8Ff:(_ref4=image1!==null&&image1!==void 0?image1:props.PFec_i8Ff)!==null&&_ref4!==void 0?_ref4:{src:\"https://framerusercontent.com/images/WwuSEtN77IMXeoOP6vheQadgDRA.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/WwuSEtN77IMXeoOP6vheQadgDRA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/WwuSEtN77IMXeoOP6vheQadgDRA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/WwuSEtN77IMXeoOP6vheQadgDRA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/WwuSEtN77IMXeoOP6vheQadgDRA.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/WwuSEtN77IMXeoOP6vheQadgDRA.jpg 9600w\"},qkbS0bCx8:(_ref5=cTA1!==null&&cTA1!==void 0?cTA1:props.qkbS0bCx8)!==null&&_ref5!==void 0?_ref5:\"Learn more\",UaS05r1yh:(_ref6=iconBackground!==null&&iconBackground!==void 0?iconBackground:props.UaS05r1yh)!==null&&_ref6!==void 0?_ref6:\"rgb(0, 0, 0)\",variant:(_ref7=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref7!==void 0?_ref7:\"XLkWWOhdz\",Y3X4CKI40:(_ref8=icon!==null&&icon!==void 0?icon:props.Y3X4CKI40)!==null&&_ref8!==void 0?_ref8:true,ZA2T3dGW4:cTA!==null&&cTA!==void 0?cTA:props.ZA2T3dGW4};};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,OLqpcuIeL,PFec_i8Ff,Y3X4CKI40,aa5hKvvkV,UaS05r1yh,jFgwazo_q,oc_8kOa9a,BFuTBK47u,ZA2T3dGW4,qkbS0bCx8,cX1P9xQse,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"XLkWWOhdz\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1p91o6v\",className,classNames),\"data-framer-name\":\"\u26AA\uFE0F Day Middle\",layoutDependency:layoutDependency,layoutId:\"XLkWWOhdz\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,boxShadow:\"0px 10px 20px 0px rgba(0, 0, 0, 0.1)\",...style},variants:{hRscnNlM_:{backgroundColor:\"var(--token-fae2c128-35fb-45de-a6c2-32169f920c68, rgb(13, 13, 13))\"},JMGVmhVTZ:{backgroundColor:\"var(--token-fae2c128-35fb-45de-a6c2-32169f920c68, rgb(13, 13, 13))\"}},...addPropertyOverrides({eWTSOge44:{\"data-framer-name\":\"\u26AA\uFE0F Day Left\"},hRscnNlM_:{\"data-framer-name\":\"\u26AB\uFE0F Night Middle\"},JMGVmhVTZ:{\"data-framer-name\":\"\u26AB\uFE0F Night Left\"}},baseVariant,gestureVariant),children:[OLqpcuIeL&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:5400,intrinsicWidth:9600,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+40+0),pixelHeight:5400,pixelWidth:9600,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 80px)`,...toResponsiveImage(PFec_i8Ff)},className:\"framer-nfrn42\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"sesWHhNq5\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-700a1961-c2b8-4f37-ad37-e3c28ea0fc93, rgba(34, 34, 34, 0.1))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),Y3X4CKI40&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-qdycc0\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"pwNaXVkRG\",style:{backgroundColor:UaS05r1yh,borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1t3ggje-container\",layoutDependency:layoutDependency,layoutId:\"CtaBenByK-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:jFgwazo_q,height:\"100%\",iconSearch:\"House\",iconSelection:aa5hKvvkV,id:\"CtaBenByK\",layoutId:\"CtaBenByK\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fbnxdi\",layoutDependency:layoutDependency,layoutId:\"Cl3wu_nsY\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"RlM7U3dpdHplci1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Switzer\", \"Switzer Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\"},children:\"Integration ecosystem\"})}),className:\"framer-7hq2lp\",fonts:[\"FS;Switzer-semibold\"],layoutDependency:layoutDependency,layoutId:\"rpw8kKHyQ\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:oc_8kOa9a,variants:{hRscnNlM_:{\"--extracted-1lwpl3i\":\"rgb(255, 255, 255)\"},JMGVmhVTZ:{\"--extracted-1lwpl3i\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({eWTSOge44:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"RlM7U3dpdHplci1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Switzer\", \"Switzer Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\"},children:\"Integration ecosystem\"})})},hRscnNlM_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"RlM7U3dpdHplci1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Switzer\", \"Switzer Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, rgb(255, 255, 255))\"},children:\"Integration ecosystem\"})})},JMGVmhVTZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"RlM7U3dpdHplci1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Switzer\", \"Switzer Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, rgb(255, 255, 255))\"},children:\"Integration ecosystem\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\"},children:\"Enhance your productivity by connecting with your favorite tools, keeping all your essentials in one place.\"})}),className:\"framer-225yb7\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"Qb55ytUR_\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.8},text:BFuTBK47u,variants:{hRscnNlM_:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},JMGVmhVTZ:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({eWTSOge44:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"Enhance your productivity by connecting with your favorite tools, keeping all your essentials in one place.\"})})},hRscnNlM_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Enhance your productivity by connecting with your favorite tools, keeping all your essentials in one place.\"})})},JMGVmhVTZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Enhance your productivity by connecting with your favorite tools, keeping all your essentials in one place.\"})})}},baseVariant,gestureVariant)}),ZA2T3dGW4&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sngpti-container\",layoutDependency:layoutDependency,layoutId:\"EDtwu3SyJ-container\",children:/*#__PURE__*/_jsx(CTA,{bVToBLBTS:qkbS0bCx8,height:\"100%\",id:\"EDtwu3SyJ\",KqeH5xil_:\"rgb(0, 0, 0)\",layoutId:\"EDtwu3SyJ\",MJWWsEY26:cX1P9xQse,variant:\"uvXz5tOXs\",width:\"100%\"})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-2wW9K.framer-2mtyuy, .framer-2wW9K .framer-2mtyuy { display: block; }\",\".framer-2wW9K.framer-1p91o6v { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; max-width: 400px; overflow: hidden; padding: 40px; position: relative; width: 360px; will-change: var(--framer-will-change-override, transform); }\",\".framer-2wW9K .framer-nfrn42 { flex: none; height: 200px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-2wW9K .framer-qdycc0 { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 56px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 56px; will-change: var(--framer-will-change-override, transform); }\",\".framer-2wW9K .framer-1t3ggje-container { flex: none; height: 32px; position: relative; width: 32px; }\",\".framer-2wW9K .framer-1fbnxdi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-2wW9K .framer-7hq2lp { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-2wW9K .framer-225yb7 { flex: none; height: auto; max-width: 400px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-2wW9K .framer-1sngpti-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-2wW9K.framer-1p91o6v, .framer-2wW9K .framer-qdycc0, .framer-2wW9K .framer-1fbnxdi { gap: 0px; } .framer-2wW9K.framer-1p91o6v > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-2wW9K.framer-1p91o6v > :first-child, .framer-2wW9K .framer-1fbnxdi > :first-child { margin-top: 0px; } .framer-2wW9K.framer-1p91o6v > :last-child, .framer-2wW9K .framer-1fbnxdi > :last-child { margin-bottom: 0px; } .framer-2wW9K .framer-qdycc0 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-2wW9K .framer-qdycc0 > :first-child { margin-left: 0px; } .framer-2wW9K .framer-qdycc0 > :last-child { margin-right: 0px; } .framer-2wW9K .framer-1fbnxdi > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-2wW9K.framer-v-1m0488e.framer-1p91o6v, .framer-2wW9K.framer-v-1m0488e .framer-1fbnxdi, .framer-2wW9K.framer-v-1w73uvq.framer-1p91o6v, .framer-2wW9K.framer-v-1w73uvq .framer-1fbnxdi { align-content: flex-start; align-items: flex-start; }\",'.framer-2wW9K[data-border=\"true\"]::after, .framer-2wW9K [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 271\n * @framerIntrinsicWidth 360\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"400px\",null,null]},\"eWTSOge44\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"400px\",null,null]},\"hRscnNlM_\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"400px\",null,null]},\"JMGVmhVTZ\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"400px\",null,null]}}}\n * @framerVariables {\"OLqpcuIeL\":\"image\",\"PFec_i8Ff\":\"image1\",\"Y3X4CKI40\":\"icon\",\"aa5hKvvkV\":\"icon1\",\"UaS05r1yh\":\"iconBackground\",\"jFgwazo_q\":\"icon2\",\"oc_8kOa9a\":\"title\",\"BFuTBK47u\":\"text\",\"ZA2T3dGW4\":\"cTA\",\"qkbS0bCx8\":\"cTA1\",\"cX1P9xQse\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramereJ6DEifPE=withCSS(Component,css,\"framer-2wW9K\");export default FramereJ6DEifPE;FramereJ6DEifPE.displayName=\"Feature Card 2\";FramereJ6DEifPE.defaultProps={height:271,width:360};addPropertyControls(FramereJ6DEifPE,{variant:{options:[\"XLkWWOhdz\",\"eWTSOge44\",\"hRscnNlM_\",\"JMGVmhVTZ\"],optionTitles:[\"\u26AA\uFE0F Day Middle\",\"\u26AA\uFE0F Day Left\",\"\u26AB\uFE0F Night Middle\",\"\u26AB\uFE0F Night Left\"],title:\"Variant\",type:ControlType.Enum},OLqpcuIeL:{defaultValue:false,title:\"Image\",type:ControlType.Boolean},PFec_i8Ff:{__defaultAssetReference:\"data:framer/asset-reference,WwuSEtN77IMXeoOP6vheQadgDRA.jpg?originalFilename=photo-1709274296402-f6e96caaa1eb%3Fcrop%3Dentropy%26cs%3Dsrgb%26fm%3Djpg%26ixid%3DM3wxMzc5NjJ8MHwxfGFsbHwzfHx8fHx8Mnx8MTcwOTI4OTA5OXw%26ixlib%3Drb-4.0.jpg&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},Y3X4CKI40:{defaultValue:true,title:\"Icon\",type:ControlType.Boolean},aa5hKvvkV:(Phosphor1Controls===null||Phosphor1Controls===void 0?void 0:Phosphor1Controls[\"iconSelection\"])&&{...Phosphor1Controls[\"iconSelection\"],defaultValue:\"Leaf\",description:undefined,hidden:undefined,title:\"Icon\"},UaS05r1yh:{defaultValue:\"rgb(0, 0, 0)\",title:\"Icon Background\",type:ControlType.Color},jFgwazo_q:{defaultValue:\"rgb(255, 255, 255)\",title:\"Icon\",type:ControlType.Color},oc_8kOa9a:{defaultValue:\"Integration ecosystem\",displayTextArea:true,title:\"Title\",type:ControlType.String},BFuTBK47u:{defaultValue:\"Enhance your productivity by connecting with your favorite tools, keeping all your essentials in one place.\",displayTextArea:true,title:\"Text\",type:ControlType.String},ZA2T3dGW4:{defaultValue:false,title:\"CTA\",type:ControlType.Boolean},qkbS0bCx8:{defaultValue:\"Learn more\",displayTextArea:false,title:\"CTA\",type:ControlType.String},cX1P9xQse:{title:\"Link\",type:ControlType.Link}});addFonts(FramereJ6DEifPE,[{explicitInter:true,fonts:[{family:\"Switzer\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/5SZVFDB7V52TI6ULVC6J3WQZQCIZVDV5/ODYPSTCUDMKSTYIPTV4CLQ7URIK7XYBJ/YS3VPNVO4B3TOJMEXDGFZQ4TLZGGSRZC.woff2\",weight:\"600\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TTX2Z3BF3P6Y5BQT3IV2VNOK6FL22KUT/7QYRJOI3JIMYHGY6CH7SOIFRQLZOLNJ6/KFIAZD4RUMEZIYV6FQ3T3GP5PDBDB6JY.woff2\",weight:\"400\"}]},...PhosphorFonts,...CTAFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramereJ6DEifPE\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"271\",\"framerIntrinsicWidth\":\"360\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"400px\\\",null,null]},\\\"eWTSOge44\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"400px\\\",null,null]},\\\"hRscnNlM_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"400px\\\",null,null]},\\\"JMGVmhVTZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"400px\\\",null,null]}}}\",\"framerVariables\":\"{\\\"OLqpcuIeL\\\":\\\"image\\\",\\\"PFec_i8Ff\\\":\\\"image1\\\",\\\"Y3X4CKI40\\\":\\\"icon\\\",\\\"aa5hKvvkV\\\":\\\"icon1\\\",\\\"UaS05r1yh\\\":\\\"iconBackground\\\",\\\"jFgwazo_q\\\":\\\"icon2\\\",\\\"oc_8kOa9a\\\":\\\"title\\\",\\\"BFuTBK47u\\\":\\\"text\\\",\\\"ZA2T3dGW4\\\":\\\"cTA\\\",\\\"qkbS0bCx8\\\":\\\"cTA1\\\",\\\"cX1P9xQse\\\":\\\"link\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./eJ6DEifPE.map", "// Generated by Framer (56d1180)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,SVG,Text,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/8owehLhmpOnuCfVcb3Xp/yVPZF1xnY9TcajocPpOp/j_Hnc8qRV.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/2o3FsdxhHK72ANjjcLSc/tfN0voxiWyfxjpEAe5iH/stylesPresetHeading3.js\";const TextWithFX=withFX(Text);const SVGWithFX=withFX(SVG);const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"AMQKuY17B\",\"SWJU1f1hk\",\"XZimD5FTY\",\"c52nGCOcg\",\"KaodrxmLa\",\"AjoKHBcpC\",\"IGyRzqKck\",\"sdR0Totml\",\"QPR9wX9Sv\",\"P_6qXaWKC\",\"sKwILuoOo\",\"gAAl3lqxK\",\"PHla2b3Tp\",\"xyej1Qhev\",\"kYmT0rdhb\"];const serializationHash=\"framer-EsgRi\";const variantClassNames={AjoKHBcpC:\"framer-v-1n8fncr\",AMQKuY17B:\"framer-v-1x0kcqd\",c52nGCOcg:\"framer-v-1faauxp\",gAAl3lqxK:\"framer-v-uyt66a\",IGyRzqKck:\"framer-v-rcmcx3\",KaodrxmLa:\"framer-v-1gkuzh0\",kYmT0rdhb:\"framer-v-raitt\",P_6qXaWKC:\"framer-v-1kkj43d\",PHla2b3Tp:\"framer-v-134cd2y\",QPR9wX9Sv:\"framer-v-17ios9t\",sdR0Totml:\"framer-v-9b0t64\",sKwILuoOo:\"framer-v-1wi1eu2\",SWJU1f1hk:\"framer-v-h18kll\",xyej1Qhev:\"framer-v-2j9xy1\",XZimD5FTY:\"framer-v-1ukcyop\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:40};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:100};const transition3={damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transition:transition3,x:0,y:100};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Mobile - Loco\":\"gAAl3lqxK\",\"Mobile - Mapping\":\"sKwILuoOo\",\"Mobile - TKO\":\"PHla2b3Tp\",\"Mobile - TrIMS\":\"xyej1Qhev\",\"Mobile LRV\":\"kYmT0rdhb\",\"Tablet - Loco\":\"KaodrxmLa\",\"Tablet - LRV\":\"sdR0Totml\",\"Tablet - Mapping\":\"P_6qXaWKC\",\"Tablet - TKO\":\"QPR9wX9Sv\",\"Tablet - TrIMS\":\"AjoKHBcpC\",Loco:\"IGyRzqKck\",LRV:\"XZimD5FTY\",Mapping:\"c52nGCOcg\",TKO:\"SWJU1f1hk\",TrIMS:\"AMQKuY17B\"};const getProps=({height,id,title2,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,le4lkysI8:(_ref=title2!==null&&title2!==void 0?title2:props.le4lkysI8)!==null&&_ref!==void 0?_ref:\"CTO at Acme Corp\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"AMQKuY17B\"};};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,le4lkysI8,c63DZzKb0ZtgRo_nyE,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"AMQKuY17B\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"sKwILuoOo\",\"gAAl3lqxK\",\"PHla2b3Tp\",\"xyej1Qhev\",\"kYmT0rdhb\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"kYmT0rdhb\")return false;return true;};const isDisplayed2=()=>{if([\"sKwILuoOo\",\"gAAl3lqxK\",\"PHla2b3Tp\",\"xyej1Qhev\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if(baseVariant===\"SWJU1f1hk\")return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"XZimD5FTY\")return true;return false;};const isDisplayed5=()=>{if([\"SWJU1f1hk\",\"XZimD5FTY\",\"sKwILuoOo\",\"gAAl3lqxK\",\"PHla2b3Tp\",\"xyej1Qhev\",\"kYmT0rdhb\"].includes(baseVariant))return false;return true;};const isDisplayed6=()=>{if(baseVariant===\"P_6qXaWKC\")return true;return false;};const isDisplayed7=()=>{if(baseVariant===\"sdR0Totml\")return true;return false;};const isDisplayed8=()=>{if(baseVariant===\"KaodrxmLa\")return true;return false;};const isDisplayed9=()=>{if(baseVariant===\"AjoKHBcpC\")return true;return false;};const isDisplayed10=()=>{if(baseVariant===\"IGyRzqKck\")return true;return false;};const isDisplayed11=()=>{if([\"IGyRzqKck\",\"sdR0Totml\",\"P_6qXaWKC\"].includes(baseVariant))return false;return true;};const isDisplayed12=()=>{if([\"KaodrxmLa\",\"AjoKHBcpC\"].includes(baseVariant))return false;return true;};const isDisplayed13=()=>{if(baseVariant===\"c52nGCOcg\")return true;return false;};const isDisplayed14=()=>{if([\"SWJU1f1hk\",\"c52nGCOcg\",\"KaodrxmLa\",\"AjoKHBcpC\",\"sdR0Totml\",\"QPR9wX9Sv\",\"P_6qXaWKC\",\"sKwILuoOo\",\"gAAl3lqxK\",\"PHla2b3Tp\",\"xyej1Qhev\",\"kYmT0rdhb\"].includes(baseVariant))return false;return true;};const isDisplayed15=()=>{if(baseVariant===\"IGyRzqKck\")return false;return true;};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-1x0kcqd\",className,classNames),\"data-framer-name\":\"TrIMS\",layoutDependency:layoutDependency,layoutId:\"AMQKuY17B\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({AjoKHBcpC:{\"data-framer-name\":\"Tablet - TrIMS\"},c52nGCOcg:{\"data-framer-name\":\"Mapping\"},gAAl3lqxK:{\"data-framer-name\":\"Mobile - Loco\"},IGyRzqKck:{\"data-framer-name\":\"Loco\"},KaodrxmLa:{\"data-framer-name\":\"Tablet - Loco\"},kYmT0rdhb:{\"data-framer-name\":\"Mobile LRV\"},P_6qXaWKC:{\"data-framer-name\":\"Tablet - Mapping\"},PHla2b3Tp:{\"data-framer-name\":\"Mobile - TKO\"},QPR9wX9Sv:{\"data-framer-name\":\"Tablet - TKO\"},sdR0Totml:{\"data-framer-name\":\"Tablet - LRV\"},sKwILuoOo:{\"data-framer-name\":\"Mobile - Mapping\"},SWJU1f1hk:{\"data-framer-name\":\"TKO\"},xyej1Qhev:{\"data-framer-name\":\"Mobile - TrIMS\"},XZimD5FTY:{\"data-framer-name\":\"LRV\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1bk4bvk\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"s3X7z2nSk\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.08)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(242, 246, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 20px 40px 0px rgba(0, 0, 0, 0.05), 0px 2px 10px 0px rgba(0, 0, 0, 0.1)\",filter:\"saturate(1.2)\",WebkitFilter:\"saturate(1.2)\"},children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ssko5q\",layoutDependency:layoutDependency,layoutId:\"SNCWjROWT\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-ci2ngw\",\"data-styles-preset\":\"stylesPresetHeading3\",children:\"Railway Mapping System\"})}),className:\"framer-1xs5t63\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"oIEU4qEGp\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{gAAl3lqxK:{\"--extracted-a0htzi\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(16, 16, 18))\"},PHla2b3Tp:{\"--extracted-a0htzi\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(16, 16, 18))\"},sKwILuoOo:{\"--extracted-a0htzi\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(16, 16, 18))\"},xyej1Qhev:{\"--extracted-a0htzi\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(16, 16, 18))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({gAAl3lqxK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(16, 16, 18)))\"},children:\"Locomotive Perception System\"})}),fonts:[\"GF;DM Sans-600\"]},PHla2b3Tp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(16, 16, 18)))\"},children:\"Smart Tunnel Vehicle Counting.\"})}),fonts:[\"GF;DM Sans-600\"]},sKwILuoOo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(16, 16, 18)))\"},children:\"Railway Mapping System\"})}),fonts:[\"GF;DM Sans-600\"]},xyej1Qhev:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(16, 16, 18)))\"},children:\"Railway Vegetation Management\"})}),fonts:[\"GF;DM Sans-600\"]}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-15y9wh9\",\"data-styles-preset\":\"j_Hnc8qRV\",children:\"From heavily manual and time-consuming to swift, accurate, and consistent, Kodifly transforms the rail surveying process, enabling organisations to have reliable information about it's infrastructure.\"})}),className:\"framer-5pwhgx\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Y_A9QoJ0D\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{gAAl3lqxK:{\"--extracted-r6o4lv\":\"rgb(102, 102, 102)\"},PHla2b3Tp:{\"--extracted-r6o4lv\":\"rgb(102, 102, 102)\"},sKwILuoOo:{\"--extracted-r6o4lv\":\"rgb(102, 102, 102)\"},xyej1Qhev:{\"--extracted-r6o4lv\":\"rgb(102, 102, 102)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({gAAl3lqxK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:\"The Locomotive Perception System identifies hazards using 3D and 2D detection, providing safety data to the driver's cabin.\"})}),fonts:[\"GF;DM Sans-regular\"]},PHla2b3Tp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:\"Our Tunnel Traffic Monitoring System leverages AI and LiDAR for real-time vehicle counting and classification, optimizing flow and safety.\"})}),fonts:[\"GF;DM Sans-regular\"]},sKwILuoOo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:\"Kodifly transforms rail surveying into a swift, accurate process, providing organizations with reliable infrastructure information.\"})}),fonts:[\"GF;DM Sans-regular\"]},xyej1Qhev:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:\"Kodifly employs LiDAR and AI analytics for precise detection and mapping of foliage encroachment, automating vegetation management. \"})}),fonts:[\"GF;DM Sans-regular\"]}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-oi4e35\",layoutDependency:layoutDependency,layoutId:\"ER2LxCz1X\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(16, 16, 18)))\"},children:\"Blind Spot Detection System\"})}),className:\"framer-snpq57\",fonts:[\"GF;DM Sans-600\"],layoutDependency:layoutDependency,layoutId:\"HMXGRYxFI\",style:{\"--extracted-a0htzi\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(16, 16, 18))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:\"This system enhances safety by detecting pedestrians in front of the vehicle, crucial for preventing accidents.\"})}),className:\"framer-1edvkks\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"fHYtEkCh0\",style:{\"--extracted-r6o4lv\":\"rgb(102, 102, 102)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed3()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-scnjh6\",layoutDependency:layoutDependency,layoutId:\"seBKyLcgS\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1u9tg9u\",layoutDependency:layoutDependency,layoutId:\"MNYHvP3ZG\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bnyshp\",\"data-framer-name\":\"1\",layoutDependency:layoutDependency,layoutId:\"a9oklWSxN\",style:{opacity:0},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1kuyq7m\",layoutDependency:layoutDependency,layoutId:\"iF3_Y7F6M\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1iiw2gm\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"Z2s5nV1XW\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 49 47\"><path d=\"M 24.5 12.75 C 24.5 18.963 19.463 24 13.25 24 L 2 24 L 2 12.75 C 2 6.537 7.037 1.5 13.25 1.5 C 19.463 1.5 24.5 6.537 24.5 12.75 Z M 24.5 35.25 C 24.5 29.037 29.537 24 35.75 24 L 47 24 L 47 35.25 C 47 41.463 41.963 46.5 35.75 46.5 C 29.537 46.5 24.5 41.463 24.5 35.25 Z M 2 35.25 C 2 41.463 7.037 46.5 13.25 46.5 L 24.5 46.5 L 24.5 35.25 C 24.5 29.037 19.463 24 13.25 24 C 7.037 24 2 29.037 2 35.25 Z M 47 12.75 C 47 6.537 41.963 1.5 35.75 1.5 L 24.5 1.5 L 24.5 12.75 C 24.5 18.963 29.537 24 35.75 24 C 41.963 24 47 18.963 47 12.75 Z\" fill=\"var(--token-274fb780-9951-4059-956e-43216c6f8956, rgb(120, 85, 255)) /* {&quot;name&quot;:&quot;Purple&quot;} */\"></path></svg>',svgContentId:10504351260,withExternalLayout:true}),/*#__PURE__*/_jsx(TextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,alignment:\"left\",className:\"framer-1gacmlf\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"f4aQo_LnS\",rawHTML:\"<p style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style='--framer-text-color: rgba(16, 16, 18, 0.5)'>\u201C</span><span style=''>As we grow, it becomes increasingly important that we use software that we can trust and know is secure.</span><span style='--framer-text-color: rgba(16, 16, 18, 0.5)'>\u201D</span><br></span></p>\",style:{\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"normal\",\"--framer-font-size\":\"36px\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":400,\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"1.5em\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(102, 101, 114))\",\"--framer-text-decoration\":\"none\",\"--framer-text-stroke-color\":\"initial\",\"--framer-text-stroke-width\":\"initial\",\"--framer-text-transform\":\"none\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1uc6up1\",layoutDependency:layoutDependency,layoutId:\"RTCANsNH4\",children:[/*#__PURE__*/_jsx(TextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,alignment:\"left\",className:\"framer-17wfqyl\",fonts:[\"GF;DM Sans-700\"],layoutDependency:layoutDependency,layoutId:\"YzEi55pmK\",rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style=''>Ellis Koch</span><br></span></span>\",style:{\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"normal\",\"--framer-font-size\":\"20px\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":700,\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.4em\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(102, 101, 114))\",\"--framer-text-decoration\":\"none\",\"--framer-text-stroke-color\":\"initial\",\"--framer-text-stroke-width\":\"initial\",\"--framer-text-transform\":\"none\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(TextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:.5,alignment:\"left\",className:\"framer-100u9p3\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"xA5PTvTZo\",rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style=''>CTO at Acme Corp</span><br></span></span>\",style:{\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"normal\",\"--framer-font-size\":\"20px\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":400,\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.4em\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(102, 101, 114))\",\"--framer-text-decoration\":\"none\",\"--framer-text-stroke-color\":\"initial\",\"--framer-text-stroke-width\":\"initial\",\"--framer-text-transform\":\"none\",opacity:.5},text:le4lkysI8,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11r0ete\",\"data-framer-name\":\"2\",layoutDependency:layoutDependency,layoutId:\"Gey2Wq56q\",style:{opacity:0},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vgswg2\",layoutDependency:layoutDependency,layoutId:\"BQl12g9Uu\",children:[/*#__PURE__*/_jsx(SVGWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:100,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-iqgn55\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"ozl0nfy03\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 119 30\"><path d=\"M 2.941 27.825 L 28.591 27.825 L 28.591 2.175 L 2.941 2.175 Z M 23.654 12.532 L 18.234 12.532 L 18.234 7.112 L 23.654 7.112 Z M 7.877 7.112 L 13.3 7.112 L 13.3 17.468 L 23.654 17.468 L 23.654 22.888 L 7.877 22.888 Z M 45.294 2.175 C 38.211 2.175 32.469 7.917 32.469 15 C 32.469 22.083 38.211 27.825 45.294 27.825 C 52.377 27.825 58.119 22.083 58.119 15 C 58.111 7.92 52.374 2.183 45.294 2.175 Z M 45.294 22.888 C 40.938 22.888 37.406 19.356 37.406 15 C 37.406 10.644 40.938 7.112 45.294 7.112 C 49.65 7.112 53.182 10.644 53.182 15 C 53.175 19.354 49.648 22.881 45.294 22.888 Z M 104.013 2.175 C 96.931 2.175 91.189 7.916 91.189 14.999 C 91.189 22.081 96.93 27.823 104.012 27.823 C 111.095 27.823 116.836 22.082 116.837 15 C 116.829 7.921 111.092 2.184 104.013 2.175 Z M 104.013 22.888 C 99.963 22.877 96.579 19.802 96.182 15.772 C 95.785 11.742 98.503 8.065 102.473 7.264 C 105.879 6.588 109.327 8.219 110.964 11.282 C 112.6 14.345 112.041 18.118 109.586 20.574 C 108.108 22.053 106.104 22.885 104.013 22.888 Z M 74.653 2.175 C 67.57 2.175 61.828 7.917 61.828 15 C 61.828 22.083 67.57 27.825 74.653 27.825 C 81.736 27.825 87.478 22.083 87.478 15 C 87.47 7.92 81.733 2.183 74.653 2.175 Z M 74.653 22.888 C 70.619 22.89 67.234 19.849 66.806 15.838 C 66.377 11.827 69.044 8.139 72.987 7.289 C 76.93 6.439 80.879 8.701 82.141 12.532 L 74.653 12.532 L 74.653 17.468 L 82.141 17.468 C 81.073 20.699 78.056 22.883 74.653 22.888 Z\" fill=\"#7c50ff\"></path></svg>',svgContentId:10542151631,withExternalLayout:true}),/*#__PURE__*/_jsx(TextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,alignment:\"left\",className:\"framer-rrzh71\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"NStImQsG6\",rawHTML:\"<p style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style='--framer-text-color: rgba(16, 16, 18, 0.5)'>\u201C</span><span style=''>We have 10x\u2019ed the speed of our engineering team. Having data distilled in such a smart way is just heaven.</span><span style='--framer-text-color: rgba(16, 16, 18, 0.5)'>\u201D</span><br></span></p>\",style:{\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"normal\",\"--framer-font-size\":\"34px\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":400,\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"1.5em\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(102, 101, 114))\",\"--framer-text-decoration\":\"none\",\"--framer-text-stroke-color\":\"initial\",\"--framer-text-stroke-width\":\"initial\",\"--framer-text-transform\":\"none\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6d4wko\",layoutDependency:layoutDependency,layoutId:\"xl5K5sVL3\",children:[/*#__PURE__*/_jsx(TextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,alignment:\"left\",className:\"framer-1ar9hlg\",fonts:[\"GF;DM Sans-700\"],layoutDependency:layoutDependency,layoutId:\"BnVKRyfuY\",rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style=''>Noah Holt</span><br></span></span>\",style:{\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"normal\",\"--framer-font-size\":\"20px\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":700,\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.4em\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(102, 101, 114))\",\"--framer-text-decoration\":\"none\",\"--framer-text-stroke-color\":\"initial\",\"--framer-text-stroke-width\":\"initial\",\"--framer-text-transform\":\"none\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(TextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:.5,alignment:\"left\",className:\"framer-1aaz3zf\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"GOCdXGZkS\",rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style=''>CTO at Company</span><br></span></span>\",style:{\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"normal\",\"--framer-font-size\":\"20px\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":400,\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.4em\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(102, 101, 114))\",\"--framer-text-decoration\":\"none\",\"--framer-text-stroke-color\":\"initial\",\"--framer-text-stroke-width\":\"initial\",\"--framer-text-transform\":\"none\",opacity:.5},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lrehjw\",\"data-framer-name\":\"3\",layoutDependency:layoutDependency,layoutId:\"j7HeSfBar\",style:{opacity:0},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-y7ndrn\",layoutDependency:layoutDependency,layoutId:\"UtlDbZQ2C\",children:[/*#__PURE__*/_jsx(SVGWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:100,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-4rn79d\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"aPVQ3JySI\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 71 46\"><path d=\"M 45.868 23 C 45.868 35.426 35.794 45.5 23.368 45.5 C 10.941 45.5 0.868 35.426 0.868 23 C 0.868 10.574 10.94 0.5 23.368 0.5 C 35.794 0.5 45.868 10.574 45.868 23 Z\" fill=\"rgba(120, 85, 255, 0.6)\"></path><path d=\"M 70.132 23 C 70.132 35.426 60.157 45.5 47.852 45.5 C 35.548 45.5 25.574 35.426 25.574 23 C 25.574 10.574 35.547 0.5 47.852 0.5 C 60.156 0.5 70.132 10.574 70.132 23 Z\" fill=\"rgba(120, 85, 255, 0.8)\"></path><path d=\"M 35.67 41.842 C 41.81 37.824 45.868 30.886 45.868 23 C 45.868 15.114 41.811 8.176 35.67 4.159 C 29.351 8.342 25.557 15.421 25.573 23 C 25.556 30.579 29.35 37.659 35.67 41.842 Z\" fill=\"var(--token-274fb780-9951-4059-956e-43216c6f8956, rgb(120, 85, 255)) /* {&quot;name&quot;:&quot;Purple&quot;} */\"></path></svg>',svgContentId:11512981319,withExternalLayout:true}),/*#__PURE__*/_jsx(TextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,alignment:\"left\",className:\"framer-1iub7nv\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"rM9EUHhQC\",rawHTML:\"<p style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style='--framer-text-color: rgba(16, 16, 18, 0.5)'>\u201C</span><span style=''>Because of the flexible pricing plans, we were able to get exactly what we need at a fair price. That was pivotal in the early stages of our company.</span><span style='--framer-text-color: rgba(16, 16, 18, 0.5)'>\u201D</span><br></span></p>\",style:{\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"normal\",\"--framer-font-size\":\"34px\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":400,\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"1.5em\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(102, 101, 114))\",\"--framer-text-decoration\":\"none\",\"--framer-text-stroke-color\":\"initial\",\"--framer-text-stroke-width\":\"initial\",\"--framer-text-transform\":\"none\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5400m3\",layoutDependency:layoutDependency,layoutId:\"umDQOG8Tj\",children:[/*#__PURE__*/_jsx(TextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,alignment:\"left\",className:\"framer-2og4d0\",fonts:[\"GF;DM Sans-700\"],layoutDependency:layoutDependency,layoutId:\"RAhI3pwpA\",rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style=''>Diana Brady</span><br></span></span>\",style:{\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"normal\",\"--framer-font-size\":\"20px\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":700,\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.4em\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(102, 101, 114))\",\"--framer-text-decoration\":\"none\",\"--framer-text-stroke-color\":\"initial\",\"--framer-text-stroke-width\":\"initial\",\"--framer-text-transform\":\"none\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(TextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:.5,alignment:\"left\",className:\"framer-1usa5vz\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"AEyVmLUWz\",rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style=''>CFO at Company</span><br></span></span>\",style:{\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"normal\",\"--framer-font-size\":\"20px\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":400,\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.4em\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(102, 101, 114))\",\"--framer-text-decoration\":\"none\",\"--framer-text-stroke-color\":\"initial\",\"--framer-text-stroke-width\":\"initial\",\"--framer-text-transform\":\"none\",opacity:.5},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-111egof\",\"data-framer-name\":\"4\",layoutDependency:layoutDependency,layoutId:\"Rrqs5Eh65\",style:{opacity:0},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bf647w\",layoutDependency:layoutDependency,layoutId:\"hJKNwe2EN\",children:[/*#__PURE__*/_jsx(SVGWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:100,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-r66k25\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"lxLW8PDiG\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 132 40\"><path d=\"M 23.23 11.39 L 25.23 11.39 L 25.23 25.31 L 31.23 25.31 L 31.23 27.31 L 23.23 27.31 Z M 37.46 11.39 C 40.774 11.39 43.46 14.076 43.46 17.39 C 43.46 20.704 40.774 23.39 37.46 23.39 C 34.146 23.39 31.46 20.704 31.46 17.39 C 31.46 14.076 34.146 11.39 37.46 11.39 Z M 37.46 21.39 C 39.669 21.39 41.46 19.599 41.46 17.39 C 41.46 15.181 39.669 13.39 37.46 13.39 C 35.251 13.39 33.46 15.181 33.46 17.39 C 33.471 19.591 35.259 21.37 37.46 21.37 Z M 33.46 25.33 L 41.46 25.33 L 41.46 27.33 L 33.46 27.33 Z M 59.06 27.33 L 57.06 27.33 L 57.06 25.9 C 55.77 26.803 54.234 27.288 52.66 27.29 C 48.96 27.315 45.726 24.799 44.84 21.207 C 43.953 17.615 45.645 13.884 48.932 12.184 C 52.218 10.485 56.241 11.26 58.66 14.06 L 57.19 15.37 C 55.351 13.315 52.348 12.779 49.911 14.07 C 47.475 15.361 46.232 18.147 46.899 20.823 C 47.567 23.499 49.972 25.375 52.73 25.37 C 54.412 25.373 56.011 24.643 57.11 23.37 L 51.71 23.37 L 51.71 21.37 L 59.08 21.37 Z M 66.42 11.43 C 69.734 11.43 72.42 14.116 72.42 17.43 C 72.42 20.744 69.734 23.43 66.42 23.43 C 63.106 23.43 60.42 20.744 60.42 17.43 C 60.409 15.828 61.039 14.289 62.17 13.154 C 63.301 12.02 64.838 11.385 66.44 11.39 Z M 66.42 21.43 C 68.629 21.43 70.42 19.639 70.42 17.43 C 70.42 15.221 68.629 13.43 66.42 13.43 C 64.211 13.43 62.42 15.221 62.42 17.43 C 62.453 19.623 64.246 21.381 66.44 21.37 Z M 62.42 25.37 L 70.42 25.37 L 70.42 27.37 L 62.42 27.37 Z M 74.55 11.39 L 76.55 11.39 L 76.55 27.29 L 74.55 27.29 Z M 79.32 11.39 L 81.32 11.39 C 81.423 11.38 81.527 11.38 81.63 11.39 C 83.915 11.142 86.142 12.222 87.362 14.17 C 88.582 16.118 88.582 18.592 87.362 20.54 C 86.142 22.488 83.915 23.568 81.63 23.32 L 81.32 23.32 L 81.32 27.32 L 79.32 27.32 Z M 81.32 13.39 L 81.32 21.3 L 81.63 21.3 C 83.172 21.505 84.694 20.798 85.53 19.486 C 86.367 18.174 86.367 16.496 85.53 15.184 C 84.694 13.872 83.172 13.165 81.63 13.37 C 81.521 13.381 81.414 13.405 81.31 13.44 Z M 95.73 12.54 L 94.25 13.71 C 93.729 13.165 92.939 12.972 92.225 13.214 C 91.511 13.457 91.002 14.091 90.92 14.84 L 90.92 15 C 90.92 15.88 91.53 16.47 92.72 16.55 C 97.3 16.83 99.4 18.98 99.4 21.82 L 99.4 22 C 99.159 24.295 97.601 26.239 95.413 26.975 C 93.225 27.711 90.809 27.103 89.23 25.42 L 90.76 24.24 C 91.481 25.012 92.505 25.429 93.56 25.38 C 95.561 25.485 97.29 23.995 97.48 22 L 97.48 21.86 C 97.48 19.19 94.86 18.7 92.59 18.48 C 90.49 18.28 88.98 16.97 88.98 15.08 L 88.98 15 C 89.134 12.957 90.861 11.392 92.91 11.44 C 93.967 11.409 94.988 11.827 95.72 12.59 Z M 107.23 25.26 C 109.72 25.26 111.69 22.57 111.69 19.26 L 111.69 11.26 L 113.69 11.26 L 113.69 19.26 C 113.69 23.66 110.81 27.21 107.27 27.21 C 103.73 27.21 100.85 23.66 100.85 19.26 L 100.85 11.26 L 102.85 11.26 L 102.85 19.26 C 102.77 22.62 104.74 25.31 107.22 25.31 Z M 129.04 27.26 L 127.04 27.26 L 127.04 17.36 L 122.43 23.36 L 117.82 17.36 L 117.82 27.29 L 115.82 27.29 L 115.82 11.39 L 122.42 20.08 L 129.02 11.39 Z M 13.63 9 C 13.63 5.996 11.194 3.56 8.19 3.56 C 5.186 3.56 2.75 5.996 2.75 9 L 2.75 25.45 L 7.23 28.66 L 7.23 36.48 L 9.15 36.48 L 9.15 28.66 L 13.63 25.45 Z M 11.71 18.2 L 9.15 20.76 L 9.15 18.36 L 11.71 15.8 Z M 4.71 15.8 L 7.27 18.36 L 7.27 20.76 L 4.71 18.2 Z M 11.71 13.08 L 8.19 16.6 L 4.67 13 L 4.67 10.6 L 8.19 14.12 L 11.71 10.6 Z M 8.19 5.48 C 9.781 5.487 11.172 6.555 11.59 8.09 L 8.19 11.48 L 4.79 8.09 C 5.193 6.539 6.587 5.452 8.19 5.44 Z M 4.67 24.48 L 4.67 20.88 L 7.23 23.44 L 7.23 26.3 Z M 9.15 26.31 L 9.15 23.44 L 11.71 20.88 L 11.71 24.47 Z\" fill=\"var(--token-274fb780-9951-4059-956e-43216c6f8956, rgb(120, 85, 255)) /* {&quot;name&quot;:&quot;Purple&quot;} */\"></path></svg>',svgContentId:9570665483,withExternalLayout:true}),/*#__PURE__*/_jsx(TextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,alignment:\"left\",className:\"framer-1xtwrvt\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"T_nnCoy73\",rawHTML:\"<p style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style='--framer-text-color: rgba(16, 16, 18, 0.5)'>\u201C</span><span style='--framer-text-color: var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(16, 16, 18)) /* {&quot;name&quot;:&quot;Text&quot;} */'>We can make sound decisions on our marketing campaign with the data our engineering team is generating every week.</span><span style='--framer-text-color: rgba(16, 16, 18, 0.5)'>\u201D</span><br></span></p>\",style:{\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"normal\",\"--framer-font-size\":\"34px\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":400,\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"1.5em\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(102, 101, 114))\",\"--framer-text-decoration\":\"none\",\"--framer-text-stroke-color\":\"initial\",\"--framer-text-stroke-width\":\"initial\",\"--framer-text-transform\":\"none\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-df2swu\",layoutDependency:layoutDependency,layoutId:\"qf5rnNOeI\",children:[/*#__PURE__*/_jsx(TextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,alignment:\"left\",className:\"framer-k0adgk\",fonts:[\"GF;DM Sans-700\"],layoutDependency:layoutDependency,layoutId:\"GOiKBrYd9\",rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style=''>Lian Mathews</span><br></span></span>\",style:{\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"normal\",\"--framer-font-size\":\"20px\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":700,\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.4em\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(102, 101, 114))\",\"--framer-text-decoration\":\"none\",\"--framer-text-stroke-color\":\"initial\",\"--framer-text-stroke-width\":\"initial\",\"--framer-text-transform\":\"none\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(TextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:.5,alignment:\"left\",className:\"framer-xghvzx\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"hwIBjzwKQ\",rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style=''>Head Marketing at Company</span><br></span></span>\",style:{\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"normal\",\"--framer-font-size\":\"20px\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":400,\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.4em\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(102, 101, 114))\",\"--framer-text-decoration\":\"none\",\"--framer-text-stroke-color\":\"initial\",\"--framer-text-stroke-width\":\"initial\",\"--framer-text-transform\":\"none\",opacity:.5},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-wzf4n2\",\"data-framer-name\":\"5\",layoutDependency:layoutDependency,layoutId:\"Lqs0oEazt\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ivk6k0\",layoutDependency:layoutDependency,layoutId:\"Kvet2U1am\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-ci2ngw\",\"data-styles-preset\":\"stylesPresetHeading3\",children:\"Vehicle Counting & Classification in Road Tunnels\"})}),className:\"framer-i25gpw\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"xC7AiC6mm\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-15y9wh9\",\"data-styles-preset\":\"j_Hnc8qRV\",children:\"Managing tunnel traffic flow efficiently while ensuring safety poses significant challenges due to limited visibility and space.\"}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-15y9wh9\",\"data-styles-preset\":\"j_Hnc8qRV\",children:\"Our Tunnel Traffic Monitoring System leverages AI, LiDAR, and video analytics to accurately count and classify vehicles in real-time at tunnel entrances.\"}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-15y9wh9\",\"data-styles-preset\":\"j_Hnc8qRV\",children:\"Operators gain valuable insights to optimize traffic flow, enhancing tunnel safety and efficiency.\"})]}),className:\"framer-fkifi3\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"fnLDYqjjI\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})})]})}),isDisplayed4()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-ulbbmq\",layoutDependency:layoutDependency,layoutId:\"xXx2skzS2\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vsokmj\",layoutDependency:layoutDependency,layoutId:\"XvSYKL6Xb\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mbbjt6\",\"data-framer-name\":\"1\",layoutDependency:layoutDependency,layoutId:\"hnZstc7lr\",style:{opacity:0},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1we0mkb\",layoutDependency:layoutDependency,layoutId:\"HHFyJeSFi\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1aeqbkn\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"Bb1casVau\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 49 47\"><path d=\"M 24.5 12.75 C 24.5 18.963 19.463 24 13.25 24 L 2 24 L 2 12.75 C 2 6.537 7.037 1.5 13.25 1.5 C 19.463 1.5 24.5 6.537 24.5 12.75 Z M 24.5 35.25 C 24.5 29.037 29.537 24 35.75 24 L 47 24 L 47 35.25 C 47 41.463 41.963 46.5 35.75 46.5 C 29.537 46.5 24.5 41.463 24.5 35.25 Z M 2 35.25 C 2 41.463 7.037 46.5 13.25 46.5 L 24.5 46.5 L 24.5 35.25 C 24.5 29.037 19.463 24 13.25 24 C 7.037 24 2 29.037 2 35.25 Z M 47 12.75 C 47 6.537 41.963 1.5 35.75 1.5 L 24.5 1.5 L 24.5 12.75 C 24.5 18.963 29.537 24 35.75 24 C 41.963 24 47 18.963 47 12.75 Z\" fill=\"var(--token-274fb780-9951-4059-956e-43216c6f8956, rgb(120, 85, 255)) /* {&quot;name&quot;:&quot;Purple&quot;} */\"></path></svg>',svgContentId:10504351260,withExternalLayout:true}),/*#__PURE__*/_jsx(TextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,alignment:\"left\",className:\"framer-npike8\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"xYZ1RumtL\",rawHTML:\"<p style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style='--framer-text-color: rgba(16, 16, 18, 0.5)'>\u201C</span><span style=''>As we grow, it becomes increasingly important that we use software that we can trust and know is secure.</span><span style='--framer-text-color: rgba(16, 16, 18, 0.5)'>\u201D</span><br></span></p>\",style:{\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"normal\",\"--framer-font-size\":\"36px\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":400,\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"1.5em\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(102, 101, 114))\",\"--framer-text-decoration\":\"none\",\"--framer-text-stroke-color\":\"initial\",\"--framer-text-stroke-width\":\"initial\",\"--framer-text-transform\":\"none\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19j9nh0\",layoutDependency:layoutDependency,layoutId:\"ul0Xg_M7I\",children:[/*#__PURE__*/_jsx(TextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,alignment:\"left\",className:\"framer-1iqhx9n\",fonts:[\"GF;DM Sans-700\"],layoutDependency:layoutDependency,layoutId:\"MyagMHK33\",rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style=''>Ellis Koch</span><br></span></span>\",style:{\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"normal\",\"--framer-font-size\":\"20px\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":700,\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.4em\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(102, 101, 114))\",\"--framer-text-decoration\":\"none\",\"--framer-text-stroke-color\":\"initial\",\"--framer-text-stroke-width\":\"initial\",\"--framer-text-transform\":\"none\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(TextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:.5,alignment:\"left\",className:\"framer-kmjpl1\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"ZRtM4tsph\",rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style=''>CTO at Acme Corp</span><br></span></span>\",style:{\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"normal\",\"--framer-font-size\":\"20px\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":400,\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.4em\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(102, 101, 114))\",\"--framer-text-decoration\":\"none\",\"--framer-text-stroke-color\":\"initial\",\"--framer-text-stroke-width\":\"initial\",\"--framer-text-transform\":\"none\",opacity:.5},text:le4lkysI8,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mshsk8\",\"data-framer-name\":\"2\",layoutDependency:layoutDependency,layoutId:\"oW45iK5_M\",style:{opacity:0},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1m1qh7q\",layoutDependency:layoutDependency,layoutId:\"j9Rs1bzXg\",children:[/*#__PURE__*/_jsx(SVGWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:100,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1x3qh98\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"qNGjs7mvH\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 119 30\"><path d=\"M 2.941 27.825 L 28.591 27.825 L 28.591 2.175 L 2.941 2.175 Z M 23.654 12.532 L 18.234 12.532 L 18.234 7.112 L 23.654 7.112 Z M 7.877 7.112 L 13.3 7.112 L 13.3 17.468 L 23.654 17.468 L 23.654 22.888 L 7.877 22.888 Z M 45.294 2.175 C 38.211 2.175 32.469 7.917 32.469 15 C 32.469 22.083 38.211 27.825 45.294 27.825 C 52.377 27.825 58.119 22.083 58.119 15 C 58.111 7.92 52.374 2.183 45.294 2.175 Z M 45.294 22.888 C 40.938 22.888 37.406 19.356 37.406 15 C 37.406 10.644 40.938 7.112 45.294 7.112 C 49.65 7.112 53.182 10.644 53.182 15 C 53.175 19.354 49.648 22.881 45.294 22.888 Z M 104.013 2.175 C 96.931 2.175 91.189 7.916 91.189 14.999 C 91.189 22.081 96.93 27.823 104.012 27.823 C 111.095 27.823 116.836 22.082 116.837 15 C 116.829 7.921 111.092 2.184 104.013 2.175 Z M 104.013 22.888 C 99.963 22.877 96.579 19.802 96.182 15.772 C 95.785 11.742 98.503 8.065 102.473 7.264 C 105.879 6.588 109.327 8.219 110.964 11.282 C 112.6 14.345 112.041 18.118 109.586 20.574 C 108.108 22.053 106.104 22.885 104.013 22.888 Z M 74.653 2.175 C 67.57 2.175 61.828 7.917 61.828 15 C 61.828 22.083 67.57 27.825 74.653 27.825 C 81.736 27.825 87.478 22.083 87.478 15 C 87.47 7.92 81.733 2.183 74.653 2.175 Z M 74.653 22.888 C 70.619 22.89 67.234 19.849 66.806 15.838 C 66.377 11.827 69.044 8.139 72.987 7.289 C 76.93 6.439 80.879 8.701 82.141 12.532 L 74.653 12.532 L 74.653 17.468 L 82.141 17.468 C 81.073 20.699 78.056 22.883 74.653 22.888 Z\" fill=\"#7c50ff\"></path></svg>',svgContentId:9341559611,withExternalLayout:true}),/*#__PURE__*/_jsx(TextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,alignment:\"left\",className:\"framer-152mrp5\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"tI9nbTVvj\",rawHTML:\"<p style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style='--framer-text-color: rgba(16, 16, 18, 0.5)'>\u201C</span><span style=''>We have 10x\u2019ed the speed of our engineering team. Having data distilled in such a smart way is just heaven.</span><span style='--framer-text-color: rgba(16, 16, 18, 0.5)'>\u201D</span><br></span></p>\",style:{\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"normal\",\"--framer-font-size\":\"34px\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":400,\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"1.5em\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(102, 101, 114))\",\"--framer-text-decoration\":\"none\",\"--framer-text-stroke-color\":\"initial\",\"--framer-text-stroke-width\":\"initial\",\"--framer-text-transform\":\"none\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1otfsc0\",layoutDependency:layoutDependency,layoutId:\"Ykz7LpmDg\",children:[/*#__PURE__*/_jsx(TextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,alignment:\"left\",className:\"framer-1df5q59\",fonts:[\"GF;DM Sans-700\"],layoutDependency:layoutDependency,layoutId:\"t0MwTaBUV\",rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style=''>Noah Holt</span><br></span></span>\",style:{\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"normal\",\"--framer-font-size\":\"20px\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":700,\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.4em\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(102, 101, 114))\",\"--framer-text-decoration\":\"none\",\"--framer-text-stroke-color\":\"initial\",\"--framer-text-stroke-width\":\"initial\",\"--framer-text-transform\":\"none\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(TextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:.5,alignment:\"left\",className:\"framer-10a4tmy\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"E4dzmfEe9\",rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style=''>CTO at Company</span><br></span></span>\",style:{\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"normal\",\"--framer-font-size\":\"20px\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":400,\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.4em\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(102, 101, 114))\",\"--framer-text-decoration\":\"none\",\"--framer-text-stroke-color\":\"initial\",\"--framer-text-stroke-width\":\"initial\",\"--framer-text-transform\":\"none\",opacity:.5},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-303e3c\",\"data-framer-name\":\"3\",layoutDependency:layoutDependency,layoutId:\"Mv0Qz5G1X\",style:{opacity:0},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-953s7d\",layoutDependency:layoutDependency,layoutId:\"twQ3BUCzA\",children:[/*#__PURE__*/_jsx(SVGWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:100,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1fsldyp\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"jIBZXbjrE\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 71 46\"><path d=\"M 45.868 23 C 45.868 35.426 35.794 45.5 23.368 45.5 C 10.941 45.5 0.868 35.426 0.868 23 C 0.868 10.574 10.94 0.5 23.368 0.5 C 35.794 0.5 45.868 10.574 45.868 23 Z\" fill=\"rgba(120, 85, 255, 0.6)\"></path><path d=\"M 70.132 23 C 70.132 35.426 60.157 45.5 47.852 45.5 C 35.548 45.5 25.574 35.426 25.574 23 C 25.574 10.574 35.547 0.5 47.852 0.5 C 60.156 0.5 70.132 10.574 70.132 23 Z\" fill=\"rgba(120, 85, 255, 0.8)\"></path><path d=\"M 35.67 41.842 C 41.81 37.824 45.868 30.886 45.868 23 C 45.868 15.114 41.811 8.176 35.67 4.159 C 29.351 8.342 25.557 15.421 25.573 23 C 25.556 30.579 29.35 37.659 35.67 41.842 Z\" fill=\"var(--token-274fb780-9951-4059-956e-43216c6f8956, rgb(120, 85, 255)) /* {&quot;name&quot;:&quot;Purple&quot;} */\"></path></svg>',svgContentId:11512981319,withExternalLayout:true}),/*#__PURE__*/_jsx(TextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,alignment:\"left\",className:\"framer-1tisqsh\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"Da2dvXaBb\",rawHTML:\"<p style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style='--framer-text-color: rgba(16, 16, 18, 0.5)'>\u201C</span><span style=''>Because of the flexible pricing plans, we were able to get exactly what we need at a fair price. That was pivotal in the early stages of our company.</span><span style='--framer-text-color: rgba(16, 16, 18, 0.5)'>\u201D</span><br></span></p>\",style:{\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"normal\",\"--framer-font-size\":\"34px\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":400,\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"1.5em\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(102, 101, 114))\",\"--framer-text-decoration\":\"none\",\"--framer-text-stroke-color\":\"initial\",\"--framer-text-stroke-width\":\"initial\",\"--framer-text-transform\":\"none\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-sg429f\",layoutDependency:layoutDependency,layoutId:\"QX7Xe1zGi\",children:[/*#__PURE__*/_jsx(TextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,alignment:\"left\",className:\"framer-bn634y\",fonts:[\"GF;DM Sans-700\"],layoutDependency:layoutDependency,layoutId:\"YBtNyVYEA\",rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style=''>Diana Brady</span><br></span></span>\",style:{\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"normal\",\"--framer-font-size\":\"20px\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":700,\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.4em\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(102, 101, 114))\",\"--framer-text-decoration\":\"none\",\"--framer-text-stroke-color\":\"initial\",\"--framer-text-stroke-width\":\"initial\",\"--framer-text-transform\":\"none\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(TextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:.5,alignment:\"left\",className:\"framer-1kz9qxs\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"R8LkAqb9x\",rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style=''>CFO at Company</span><br></span></span>\",style:{\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"normal\",\"--framer-font-size\":\"20px\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":400,\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.4em\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(102, 101, 114))\",\"--framer-text-decoration\":\"none\",\"--framer-text-stroke-color\":\"initial\",\"--framer-text-stroke-width\":\"initial\",\"--framer-text-transform\":\"none\",opacity:.5},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17h2qo0\",\"data-framer-name\":\"4\",layoutDependency:layoutDependency,layoutId:\"p942SW0lD\",style:{opacity:0},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mkwm9\",layoutDependency:layoutDependency,layoutId:\"FJ6G253Uv\",children:[/*#__PURE__*/_jsx(SVGWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:100,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-r5ekgh\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"XMgsjt09t\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 132 40\"><path d=\"M 23.23 11.39 L 25.23 11.39 L 25.23 25.31 L 31.23 25.31 L 31.23 27.31 L 23.23 27.31 Z M 37.46 11.39 C 40.774 11.39 43.46 14.076 43.46 17.39 C 43.46 20.704 40.774 23.39 37.46 23.39 C 34.146 23.39 31.46 20.704 31.46 17.39 C 31.46 14.076 34.146 11.39 37.46 11.39 Z M 37.46 21.39 C 39.669 21.39 41.46 19.599 41.46 17.39 C 41.46 15.181 39.669 13.39 37.46 13.39 C 35.251 13.39 33.46 15.181 33.46 17.39 C 33.471 19.591 35.259 21.37 37.46 21.37 Z M 33.46 25.33 L 41.46 25.33 L 41.46 27.33 L 33.46 27.33 Z M 59.06 27.33 L 57.06 27.33 L 57.06 25.9 C 55.77 26.803 54.234 27.288 52.66 27.29 C 48.96 27.315 45.726 24.799 44.84 21.207 C 43.953 17.615 45.645 13.884 48.932 12.184 C 52.218 10.485 56.241 11.26 58.66 14.06 L 57.19 15.37 C 55.351 13.315 52.348 12.779 49.911 14.07 C 47.475 15.361 46.232 18.147 46.899 20.823 C 47.567 23.499 49.972 25.375 52.73 25.37 C 54.412 25.373 56.011 24.643 57.11 23.37 L 51.71 23.37 L 51.71 21.37 L 59.08 21.37 Z M 66.42 11.43 C 69.734 11.43 72.42 14.116 72.42 17.43 C 72.42 20.744 69.734 23.43 66.42 23.43 C 63.106 23.43 60.42 20.744 60.42 17.43 C 60.409 15.828 61.039 14.289 62.17 13.154 C 63.301 12.02 64.838 11.385 66.44 11.39 Z M 66.42 21.43 C 68.629 21.43 70.42 19.639 70.42 17.43 C 70.42 15.221 68.629 13.43 66.42 13.43 C 64.211 13.43 62.42 15.221 62.42 17.43 C 62.453 19.623 64.246 21.381 66.44 21.37 Z M 62.42 25.37 L 70.42 25.37 L 70.42 27.37 L 62.42 27.37 Z M 74.55 11.39 L 76.55 11.39 L 76.55 27.29 L 74.55 27.29 Z M 79.32 11.39 L 81.32 11.39 C 81.423 11.38 81.527 11.38 81.63 11.39 C 83.915 11.142 86.142 12.222 87.362 14.17 C 88.582 16.118 88.582 18.592 87.362 20.54 C 86.142 22.488 83.915 23.568 81.63 23.32 L 81.32 23.32 L 81.32 27.32 L 79.32 27.32 Z M 81.32 13.39 L 81.32 21.3 L 81.63 21.3 C 83.172 21.505 84.694 20.798 85.53 19.486 C 86.367 18.174 86.367 16.496 85.53 15.184 C 84.694 13.872 83.172 13.165 81.63 13.37 C 81.521 13.381 81.414 13.405 81.31 13.44 Z M 95.73 12.54 L 94.25 13.71 C 93.729 13.165 92.939 12.972 92.225 13.214 C 91.511 13.457 91.002 14.091 90.92 14.84 L 90.92 15 C 90.92 15.88 91.53 16.47 92.72 16.55 C 97.3 16.83 99.4 18.98 99.4 21.82 L 99.4 22 C 99.159 24.295 97.601 26.239 95.413 26.975 C 93.225 27.711 90.809 27.103 89.23 25.42 L 90.76 24.24 C 91.481 25.012 92.505 25.429 93.56 25.38 C 95.561 25.485 97.29 23.995 97.48 22 L 97.48 21.86 C 97.48 19.19 94.86 18.7 92.59 18.48 C 90.49 18.28 88.98 16.97 88.98 15.08 L 88.98 15 C 89.134 12.957 90.861 11.392 92.91 11.44 C 93.967 11.409 94.988 11.827 95.72 12.59 Z M 107.23 25.26 C 109.72 25.26 111.69 22.57 111.69 19.26 L 111.69 11.26 L 113.69 11.26 L 113.69 19.26 C 113.69 23.66 110.81 27.21 107.27 27.21 C 103.73 27.21 100.85 23.66 100.85 19.26 L 100.85 11.26 L 102.85 11.26 L 102.85 19.26 C 102.77 22.62 104.74 25.31 107.22 25.31 Z M 129.04 27.26 L 127.04 27.26 L 127.04 17.36 L 122.43 23.36 L 117.82 17.36 L 117.82 27.29 L 115.82 27.29 L 115.82 11.39 L 122.42 20.08 L 129.02 11.39 Z M 13.63 9 C 13.63 5.996 11.194 3.56 8.19 3.56 C 5.186 3.56 2.75 5.996 2.75 9 L 2.75 25.45 L 7.23 28.66 L 7.23 36.48 L 9.15 36.48 L 9.15 28.66 L 13.63 25.45 Z M 11.71 18.2 L 9.15 20.76 L 9.15 18.36 L 11.71 15.8 Z M 4.71 15.8 L 7.27 18.36 L 7.27 20.76 L 4.71 18.2 Z M 11.71 13.08 L 8.19 16.6 L 4.67 13 L 4.67 10.6 L 8.19 14.12 L 11.71 10.6 Z M 8.19 5.48 C 9.781 5.487 11.172 6.555 11.59 8.09 L 8.19 11.48 L 4.79 8.09 C 5.193 6.539 6.587 5.452 8.19 5.44 Z M 4.67 24.48 L 4.67 20.88 L 7.23 23.44 L 7.23 26.3 Z M 9.15 26.31 L 9.15 23.44 L 11.71 20.88 L 11.71 24.47 Z\" fill=\"var(--token-274fb780-9951-4059-956e-43216c6f8956, rgb(120, 85, 255)) /* {&quot;name&quot;:&quot;Purple&quot;} */\"></path></svg>',svgContentId:9706504567,withExternalLayout:true}),/*#__PURE__*/_jsx(TextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,alignment:\"left\",className:\"framer-6fvz2j\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"l1VeNBN89\",rawHTML:\"<p style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style='--framer-text-color: rgba(16, 16, 18, 0.5)'>\u201C</span><span style='--framer-text-color: var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(16, 16, 18)) /* {&quot;name&quot;:&quot;Text&quot;} */'>We can make sound decisions on our marketing campaign with the data our engineering team is generating every week.</span><span style='--framer-text-color: rgba(16, 16, 18, 0.5)'>\u201D</span><br></span></p>\",style:{\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"normal\",\"--framer-font-size\":\"34px\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":400,\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"1.5em\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(102, 101, 114))\",\"--framer-text-decoration\":\"none\",\"--framer-text-stroke-color\":\"initial\",\"--framer-text-stroke-width\":\"initial\",\"--framer-text-transform\":\"none\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-du4huw\",layoutDependency:layoutDependency,layoutId:\"lvceh413V\",children:[/*#__PURE__*/_jsx(TextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,alignment:\"left\",className:\"framer-157rrt7\",fonts:[\"GF;DM Sans-700\"],layoutDependency:layoutDependency,layoutId:\"BtJX8JMFF\",rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style=''>Lian Mathews</span><br></span></span>\",style:{\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"normal\",\"--framer-font-size\":\"20px\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":700,\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.4em\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(102, 101, 114))\",\"--framer-text-decoration\":\"none\",\"--framer-text-stroke-color\":\"initial\",\"--framer-text-stroke-width\":\"initial\",\"--framer-text-transform\":\"none\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(TextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:.5,alignment:\"left\",className:\"framer-uld49w\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"Widu_tLrh\",rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style=''>Head Marketing at Company</span><br></span></span>\",style:{\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"normal\",\"--framer-font-size\":\"20px\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":400,\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.4em\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(102, 101, 114))\",\"--framer-text-decoration\":\"none\",\"--framer-text-stroke-color\":\"initial\",\"--framer-text-stroke-width\":\"initial\",\"--framer-text-transform\":\"none\",opacity:.5},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-chkl0v\",\"data-framer-name\":\"5\",layoutDependency:layoutDependency,layoutId:\"u6weDIc5_\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nqf52h\",layoutDependency:layoutDependency,layoutId:\"i4W8awsR1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-ci2ngw\",\"data-styles-preset\":\"stylesPresetHeading3\",children:\"Blind Spot Detection System\"})}),className:\"framer-k1g3fk\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"srsdz5HrU\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-15y9wh9\",\"data-styles-preset\":\"j_Hnc8qRV\",children:\"Light rail vehicles at crossings face blind spots that obscure pedestrians, posing serious safety risks.\"}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-15y9wh9\",\"data-styles-preset\":\"j_Hnc8qRV\",children:\"Kodifly installs front-facing camera systems to eliminate blind spots, ensuring clear visibility of the track ahead.\"}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-15y9wh9\",\"data-styles-preset\":\"j_Hnc8qRV\",children:\"This system enhances safety by detecting pedestrians in front of the vehicle, crucial for preventing accidents.\"})]}),className:\"framer-63sp7m\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"IaiDCjwD8\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})})]})}),isDisplayed5()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-109o7eg\",layoutDependency:layoutDependency,layoutId:\"IsvyntRWp\",children:[isDisplayed6()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fn1mum\",\"data-framer-name\":\"5\",layoutDependency:layoutDependency,layoutId:\"WjkDGmmYf\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6gzlnf\",layoutDependency:layoutDependency,layoutId:\"Bg6GBU2sq\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-ci2ngw\",\"data-styles-preset\":\"stylesPresetHeading3\",children:\"Railway Mapping System\"})}),className:\"framer-y23gd3\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"iKNr76MjJ\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-15y9wh9\",\"data-styles-preset\":\"j_Hnc8qRV\",children:\"Kodifly's rail mapping solution offers a comprehensive approach to railway infrastructure management. This advanced system, equipped with LiDAR, cameras, GNSS, and IMU sensors, excels in mapping and analyzing railway tunnels and corridors, a traditionally challenging aspect of rail maintenance. From heavily manual and time-consuming to swift, accurate, and consistent, Kodifly transforms the rail surveying process, enabling organisations to have reliable information about it's infrastructure..\"})}),className:\"framer-1oo6puw\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"YlYF8aa_w\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),isDisplayed7()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-h9biy0\",\"data-framer-name\":\"5\",layoutDependency:layoutDependency,layoutId:\"YqcbXuh9s\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-djzyn\",layoutDependency:layoutDependency,layoutId:\"yvupiSIWe\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-ci2ngw\",\"data-styles-preset\":\"stylesPresetHeading3\",children:\"Blind Spot Detection System\"})}),className:\"framer-1m4vvhl\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"mPqNeP5Sm\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-15y9wh9\",\"data-styles-preset\":\"j_Hnc8qRV\",children:\"Light rail vehicles at crossings face blind spots that obscure pedestrians, posing serious safety risks.\"}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-15y9wh9\",\"data-styles-preset\":\"j_Hnc8qRV\",children:\"Kodifly installs front-facing camera systems to eliminate blind spots, ensuring clear visibility of the track ahead.\"}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-15y9wh9\",\"data-styles-preset\":\"j_Hnc8qRV\",children:\"This system enhances safety by detecting pedestrians in front of the vehicle, crucial for preventing accidents.\"})]}),className:\"framer-1mfoibv\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"vSMBdGmlQ\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),isDisplayed8()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6yauh2\",layoutDependency:layoutDependency,layoutId:\"r2oxg8csq\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qwpk34\",\"data-framer-name\":\"1\",layoutDependency:layoutDependency,layoutId:\"mCDvEEJgY\",style:{opacity:0},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1n355lk\",layoutDependency:layoutDependency,layoutId:\"Aai2b_GTV\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-z90sr3\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"qZkR8XQeP\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 49 47\"><path d=\"M 24.5 12.75 C 24.5 18.963 19.463 24 13.25 24 L 2 24 L 2 12.75 C 2 6.537 7.037 1.5 13.25 1.5 C 19.463 1.5 24.5 6.537 24.5 12.75 Z M 24.5 35.25 C 24.5 29.037 29.537 24 35.75 24 L 47 24 L 47 35.25 C 47 41.463 41.963 46.5 35.75 46.5 C 29.537 46.5 24.5 41.463 24.5 35.25 Z M 2 35.25 C 2 41.463 7.037 46.5 13.25 46.5 L 24.5 46.5 L 24.5 35.25 C 24.5 29.037 19.463 24 13.25 24 C 7.037 24 2 29.037 2 35.25 Z M 47 12.75 C 47 6.537 41.963 1.5 35.75 1.5 L 24.5 1.5 L 24.5 12.75 C 24.5 18.963 29.537 24 35.75 24 C 41.963 24 47 18.963 47 12.75 Z\" fill=\"var(--token-274fb780-9951-4059-956e-43216c6f8956, rgb(120, 85, 255)) /* {&quot;name&quot;:&quot;Purple&quot;} */\"></path></svg>',svgContentId:10504351260,withExternalLayout:true}),/*#__PURE__*/_jsx(TextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,alignment:\"left\",className:\"framer-1x5144m\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"WOVvt9h4P\",rawHTML:\"<p style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style='--framer-text-color: rgba(16, 16, 18, 0.5)'>\u201C</span><span style=''>As we grow, it becomes increasingly important that we use software that we can trust and know is secure.</span><span style='--framer-text-color: rgba(16, 16, 18, 0.5)'>\u201D</span><br></span></p>\",style:{\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"normal\",\"--framer-font-size\":\"36px\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":400,\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"1.5em\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(102, 101, 114))\",\"--framer-text-decoration\":\"none\",\"--framer-text-stroke-color\":\"initial\",\"--framer-text-stroke-width\":\"initial\",\"--framer-text-transform\":\"none\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jvs9yx\",layoutDependency:layoutDependency,layoutId:\"iqsC7NbFV\",children:[/*#__PURE__*/_jsx(TextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,alignment:\"left\",className:\"framer-13otbed\",fonts:[\"GF;DM Sans-700\"],layoutDependency:layoutDependency,layoutId:\"B5a8sRido\",rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style=''>Ellis Koch</span><br></span></span>\",style:{\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"normal\",\"--framer-font-size\":\"20px\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":700,\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.4em\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(102, 101, 114))\",\"--framer-text-decoration\":\"none\",\"--framer-text-stroke-color\":\"initial\",\"--framer-text-stroke-width\":\"initial\",\"--framer-text-transform\":\"none\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(TextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:.5,alignment:\"left\",className:\"framer-1f7f2zu\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"ovEAWtKW_\",rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style=''>CTO at Acme Corp</span><br></span></span>\",style:{\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"normal\",\"--framer-font-size\":\"20px\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":400,\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.4em\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(102, 101, 114))\",\"--framer-text-decoration\":\"none\",\"--framer-text-stroke-color\":\"initial\",\"--framer-text-stroke-width\":\"initial\",\"--framer-text-transform\":\"none\",opacity:.5},text:c63DZzKb0ZtgRo_nyE,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1326msg\",\"data-framer-name\":\"2\",layoutDependency:layoutDependency,layoutId:\"bbVaMKcpN\",style:{opacity:0},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-z0uwql\",layoutDependency:layoutDependency,layoutId:\"J6fVDLear\",children:[/*#__PURE__*/_jsx(SVGWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:100,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1t8k87p\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"askg4zWym\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 119 30\"><path d=\"M 2.941 27.825 L 28.591 27.825 L 28.591 2.175 L 2.941 2.175 Z M 23.654 12.532 L 18.234 12.532 L 18.234 7.112 L 23.654 7.112 Z M 7.877 7.112 L 13.3 7.112 L 13.3 17.468 L 23.654 17.468 L 23.654 22.888 L 7.877 22.888 Z M 45.294 2.175 C 38.211 2.175 32.469 7.917 32.469 15 C 32.469 22.083 38.211 27.825 45.294 27.825 C 52.377 27.825 58.119 22.083 58.119 15 C 58.111 7.92 52.374 2.183 45.294 2.175 Z M 45.294 22.888 C 40.938 22.888 37.406 19.356 37.406 15 C 37.406 10.644 40.938 7.112 45.294 7.112 C 49.65 7.112 53.182 10.644 53.182 15 C 53.175 19.354 49.648 22.881 45.294 22.888 Z M 104.013 2.175 C 96.931 2.175 91.189 7.916 91.189 14.999 C 91.189 22.081 96.93 27.823 104.012 27.823 C 111.095 27.823 116.836 22.082 116.837 15 C 116.829 7.921 111.092 2.184 104.013 2.175 Z M 104.013 22.888 C 99.963 22.877 96.579 19.802 96.182 15.772 C 95.785 11.742 98.503 8.065 102.473 7.264 C 105.879 6.588 109.327 8.219 110.964 11.282 C 112.6 14.345 112.041 18.118 109.586 20.574 C 108.108 22.053 106.104 22.885 104.013 22.888 Z M 74.653 2.175 C 67.57 2.175 61.828 7.917 61.828 15 C 61.828 22.083 67.57 27.825 74.653 27.825 C 81.736 27.825 87.478 22.083 87.478 15 C 87.47 7.92 81.733 2.183 74.653 2.175 Z M 74.653 22.888 C 70.619 22.89 67.234 19.849 66.806 15.838 C 66.377 11.827 69.044 8.139 72.987 7.289 C 76.93 6.439 80.879 8.701 82.141 12.532 L 74.653 12.532 L 74.653 17.468 L 82.141 17.468 C 81.073 20.699 78.056 22.883 74.653 22.888 Z\" fill=\"#7c50ff\"></path></svg>',svgContentId:10542151631,withExternalLayout:true}),/*#__PURE__*/_jsx(TextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,alignment:\"left\",className:\"framer-nwl9ew\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"gf2RVPLik\",rawHTML:\"<p style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style='--framer-text-color: rgba(16, 16, 18, 0.5)'>\u201C</span><span style=''>We have 10x\u2019ed the speed of our engineering team. Having data distilled in such a smart way is just heaven.</span><span style='--framer-text-color: rgba(16, 16, 18, 0.5)'>\u201D</span><br></span></p>\",style:{\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"normal\",\"--framer-font-size\":\"34px\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":400,\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"1.5em\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(102, 101, 114))\",\"--framer-text-decoration\":\"none\",\"--framer-text-stroke-color\":\"initial\",\"--framer-text-stroke-width\":\"initial\",\"--framer-text-transform\":\"none\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-m07naj\",layoutDependency:layoutDependency,layoutId:\"apNPu6n_S\",children:[/*#__PURE__*/_jsx(TextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,alignment:\"left\",className:\"framer-1b1hs5q\",fonts:[\"GF;DM Sans-700\"],layoutDependency:layoutDependency,layoutId:\"HMsfgAvda\",rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style=''>Noah Holt</span><br></span></span>\",style:{\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"normal\",\"--framer-font-size\":\"20px\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":700,\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.4em\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(102, 101, 114))\",\"--framer-text-decoration\":\"none\",\"--framer-text-stroke-color\":\"initial\",\"--framer-text-stroke-width\":\"initial\",\"--framer-text-transform\":\"none\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(TextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:.5,alignment:\"left\",className:\"framer-1fbqiql\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"zF03bc22V\",rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style=''>CTO at Company</span><br></span></span>\",style:{\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"normal\",\"--framer-font-size\":\"20px\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":400,\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.4em\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(102, 101, 114))\",\"--framer-text-decoration\":\"none\",\"--framer-text-stroke-color\":\"initial\",\"--framer-text-stroke-width\":\"initial\",\"--framer-text-transform\":\"none\",opacity:.5},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bk4khj\",\"data-framer-name\":\"3\",layoutDependency:layoutDependency,layoutId:\"dQA0zJ7KW\",style:{opacity:0},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-af1kjx\",layoutDependency:layoutDependency,layoutId:\"Mc4KCf9VA\",children:[/*#__PURE__*/_jsx(SVGWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:100,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-nasbdw\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"UaQg8VMcE\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 71 46\"><path d=\"M 45.868 23 C 45.868 35.426 35.794 45.5 23.368 45.5 C 10.941 45.5 0.868 35.426 0.868 23 C 0.868 10.574 10.94 0.5 23.368 0.5 C 35.794 0.5 45.868 10.574 45.868 23 Z\" fill=\"rgba(120, 85, 255, 0.6)\"></path><path d=\"M 70.132 23 C 70.132 35.426 60.157 45.5 47.852 45.5 C 35.548 45.5 25.574 35.426 25.574 23 C 25.574 10.574 35.547 0.5 47.852 0.5 C 60.156 0.5 70.132 10.574 70.132 23 Z\" fill=\"rgba(120, 85, 255, 0.8)\"></path><path d=\"M 35.67 41.842 C 41.81 37.824 45.868 30.886 45.868 23 C 45.868 15.114 41.811 8.176 35.67 4.159 C 29.351 8.342 25.557 15.421 25.573 23 C 25.556 30.579 29.35 37.659 35.67 41.842 Z\" fill=\"var(--token-274fb780-9951-4059-956e-43216c6f8956, rgb(120, 85, 255)) /* {&quot;name&quot;:&quot;Purple&quot;} */\"></path></svg>',svgContentId:11512981319,withExternalLayout:true}),/*#__PURE__*/_jsx(TextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,alignment:\"left\",className:\"framer-1ihz20a\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"Sm0_HY525\",rawHTML:\"<p style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style='--framer-text-color: rgba(16, 16, 18, 0.5)'>\u201C</span><span style=''>Because of the flexible pricing plans, we were able to get exactly what we need at a fair price. That was pivotal in the early stages of our company.</span><span style='--framer-text-color: rgba(16, 16, 18, 0.5)'>\u201D</span><br></span></p>\",style:{\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"normal\",\"--framer-font-size\":\"34px\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":400,\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"1.5em\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(102, 101, 114))\",\"--framer-text-decoration\":\"none\",\"--framer-text-stroke-color\":\"initial\",\"--framer-text-stroke-width\":\"initial\",\"--framer-text-transform\":\"none\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ae12pg\",layoutDependency:layoutDependency,layoutId:\"R3D57PxZh\",children:[/*#__PURE__*/_jsx(TextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,alignment:\"left\",className:\"framer-xzy19b\",fonts:[\"GF;DM Sans-700\"],layoutDependency:layoutDependency,layoutId:\"yuGIncste\",rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style=''>Diana Brady</span><br></span></span>\",style:{\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"normal\",\"--framer-font-size\":\"20px\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":700,\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.4em\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(102, 101, 114))\",\"--framer-text-decoration\":\"none\",\"--framer-text-stroke-color\":\"initial\",\"--framer-text-stroke-width\":\"initial\",\"--framer-text-transform\":\"none\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(TextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:.5,alignment:\"left\",className:\"framer-c208as\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"q62mHF0CT\",rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style=''>CFO at Company</span><br></span></span>\",style:{\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"normal\",\"--framer-font-size\":\"20px\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":400,\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.4em\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(102, 101, 114))\",\"--framer-text-decoration\":\"none\",\"--framer-text-stroke-color\":\"initial\",\"--framer-text-stroke-width\":\"initial\",\"--framer-text-transform\":\"none\",opacity:.5},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-e74z5a\",\"data-framer-name\":\"4\",layoutDependency:layoutDependency,layoutId:\"IbNQyHw2f\",style:{opacity:0},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yn7w01\",layoutDependency:layoutDependency,layoutId:\"nrte5pYTr\",children:[/*#__PURE__*/_jsx(SVGWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:100,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-kow3y0\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"ZlPD2wknC\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 132 40\"><path d=\"M 23.23 11.39 L 25.23 11.39 L 25.23 25.31 L 31.23 25.31 L 31.23 27.31 L 23.23 27.31 Z M 37.46 11.39 C 40.774 11.39 43.46 14.076 43.46 17.39 C 43.46 20.704 40.774 23.39 37.46 23.39 C 34.146 23.39 31.46 20.704 31.46 17.39 C 31.46 14.076 34.146 11.39 37.46 11.39 Z M 37.46 21.39 C 39.669 21.39 41.46 19.599 41.46 17.39 C 41.46 15.181 39.669 13.39 37.46 13.39 C 35.251 13.39 33.46 15.181 33.46 17.39 C 33.471 19.591 35.259 21.37 37.46 21.37 Z M 33.46 25.33 L 41.46 25.33 L 41.46 27.33 L 33.46 27.33 Z M 59.06 27.33 L 57.06 27.33 L 57.06 25.9 C 55.77 26.803 54.234 27.288 52.66 27.29 C 48.96 27.315 45.726 24.799 44.84 21.207 C 43.953 17.615 45.645 13.884 48.932 12.184 C 52.218 10.485 56.241 11.26 58.66 14.06 L 57.19 15.37 C 55.351 13.315 52.348 12.779 49.911 14.07 C 47.475 15.361 46.232 18.147 46.899 20.823 C 47.567 23.499 49.972 25.375 52.73 25.37 C 54.412 25.373 56.011 24.643 57.11 23.37 L 51.71 23.37 L 51.71 21.37 L 59.08 21.37 Z M 66.42 11.43 C 69.734 11.43 72.42 14.116 72.42 17.43 C 72.42 20.744 69.734 23.43 66.42 23.43 C 63.106 23.43 60.42 20.744 60.42 17.43 C 60.409 15.828 61.039 14.289 62.17 13.154 C 63.301 12.02 64.838 11.385 66.44 11.39 Z M 66.42 21.43 C 68.629 21.43 70.42 19.639 70.42 17.43 C 70.42 15.221 68.629 13.43 66.42 13.43 C 64.211 13.43 62.42 15.221 62.42 17.43 C 62.453 19.623 64.246 21.381 66.44 21.37 Z M 62.42 25.37 L 70.42 25.37 L 70.42 27.37 L 62.42 27.37 Z M 74.55 11.39 L 76.55 11.39 L 76.55 27.29 L 74.55 27.29 Z M 79.32 11.39 L 81.32 11.39 C 81.423 11.38 81.527 11.38 81.63 11.39 C 83.915 11.142 86.142 12.222 87.362 14.17 C 88.582 16.118 88.582 18.592 87.362 20.54 C 86.142 22.488 83.915 23.568 81.63 23.32 L 81.32 23.32 L 81.32 27.32 L 79.32 27.32 Z M 81.32 13.39 L 81.32 21.3 L 81.63 21.3 C 83.172 21.505 84.694 20.798 85.53 19.486 C 86.367 18.174 86.367 16.496 85.53 15.184 C 84.694 13.872 83.172 13.165 81.63 13.37 C 81.521 13.381 81.414 13.405 81.31 13.44 Z M 95.73 12.54 L 94.25 13.71 C 93.729 13.165 92.939 12.972 92.225 13.214 C 91.511 13.457 91.002 14.091 90.92 14.84 L 90.92 15 C 90.92 15.88 91.53 16.47 92.72 16.55 C 97.3 16.83 99.4 18.98 99.4 21.82 L 99.4 22 C 99.159 24.295 97.601 26.239 95.413 26.975 C 93.225 27.711 90.809 27.103 89.23 25.42 L 90.76 24.24 C 91.481 25.012 92.505 25.429 93.56 25.38 C 95.561 25.485 97.29 23.995 97.48 22 L 97.48 21.86 C 97.48 19.19 94.86 18.7 92.59 18.48 C 90.49 18.28 88.98 16.97 88.98 15.08 L 88.98 15 C 89.134 12.957 90.861 11.392 92.91 11.44 C 93.967 11.409 94.988 11.827 95.72 12.59 Z M 107.23 25.26 C 109.72 25.26 111.69 22.57 111.69 19.26 L 111.69 11.26 L 113.69 11.26 L 113.69 19.26 C 113.69 23.66 110.81 27.21 107.27 27.21 C 103.73 27.21 100.85 23.66 100.85 19.26 L 100.85 11.26 L 102.85 11.26 L 102.85 19.26 C 102.77 22.62 104.74 25.31 107.22 25.31 Z M 129.04 27.26 L 127.04 27.26 L 127.04 17.36 L 122.43 23.36 L 117.82 17.36 L 117.82 27.29 L 115.82 27.29 L 115.82 11.39 L 122.42 20.08 L 129.02 11.39 Z M 13.63 9 C 13.63 5.996 11.194 3.56 8.19 3.56 C 5.186 3.56 2.75 5.996 2.75 9 L 2.75 25.45 L 7.23 28.66 L 7.23 36.48 L 9.15 36.48 L 9.15 28.66 L 13.63 25.45 Z M 11.71 18.2 L 9.15 20.76 L 9.15 18.36 L 11.71 15.8 Z M 4.71 15.8 L 7.27 18.36 L 7.27 20.76 L 4.71 18.2 Z M 11.71 13.08 L 8.19 16.6 L 4.67 13 L 4.67 10.6 L 8.19 14.12 L 11.71 10.6 Z M 8.19 5.48 C 9.781 5.487 11.172 6.555 11.59 8.09 L 8.19 11.48 L 4.79 8.09 C 5.193 6.539 6.587 5.452 8.19 5.44 Z M 4.67 24.48 L 4.67 20.88 L 7.23 23.44 L 7.23 26.3 Z M 9.15 26.31 L 9.15 23.44 L 11.71 20.88 L 11.71 24.47 Z\" fill=\"var(--token-274fb780-9951-4059-956e-43216c6f8956, rgb(120, 85, 255)) /* {&quot;name&quot;:&quot;Purple&quot;} */\"></path></svg>',svgContentId:9570665483,withExternalLayout:true}),/*#__PURE__*/_jsx(TextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,alignment:\"left\",className:\"framer-nusafa\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"eETAj5Tb2\",rawHTML:\"<p style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style='--framer-text-color: rgba(16, 16, 18, 0.5)'>\u201C</span><span style='--framer-text-color: var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(16, 16, 18)) /* {&quot;name&quot;:&quot;Text&quot;} */'>We can make sound decisions on our marketing campaign with the data our engineering team is generating every week.</span><span style='--framer-text-color: rgba(16, 16, 18, 0.5)'>\u201D</span><br></span></p>\",style:{\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"normal\",\"--framer-font-size\":\"34px\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":400,\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"1.5em\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(102, 101, 114))\",\"--framer-text-decoration\":\"none\",\"--framer-text-stroke-color\":\"initial\",\"--framer-text-stroke-width\":\"initial\",\"--framer-text-transform\":\"none\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rzg2n6\",layoutDependency:layoutDependency,layoutId:\"QNGebq7k5\",children:[/*#__PURE__*/_jsx(TextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,alignment:\"left\",className:\"framer-nykjes\",fonts:[\"GF;DM Sans-700\"],layoutDependency:layoutDependency,layoutId:\"gdrfmoEwv\",rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style=''>Lian Mathews</span><br></span></span>\",style:{\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"normal\",\"--framer-font-size\":\"20px\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":700,\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.4em\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(102, 101, 114))\",\"--framer-text-decoration\":\"none\",\"--framer-text-stroke-color\":\"initial\",\"--framer-text-stroke-width\":\"initial\",\"--framer-text-transform\":\"none\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(TextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:.5,alignment:\"left\",className:\"framer-1u3t7l1\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"EqSCnVivp\",rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style=''>Head Marketing at Company</span><br></span></span>\",style:{\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"normal\",\"--framer-font-size\":\"20px\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":400,\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.4em\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(102, 101, 114))\",\"--framer-text-decoration\":\"none\",\"--framer-text-stroke-color\":\"initial\",\"--framer-text-stroke-width\":\"initial\",\"--framer-text-transform\":\"none\",opacity:.5},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yhtxi4\",\"data-framer-name\":\"5\",layoutDependency:layoutDependency,layoutId:\"uvuFezIzc\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10d52od\",layoutDependency:layoutDependency,layoutId:\"CD6iVa4re\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-ci2ngw\",\"data-styles-preset\":\"stylesPresetHeading3\",children:\"Locomotive Perception System\"})}),className:\"framer-11vfzw1\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ruq_NW3yK\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-15y9wh9\",\"data-styles-preset\":\"j_Hnc8qRV\",children:\"Locomotive drivers face significant challenges during night-time rail maintenance, where low visibility increases the risk of collisions and track incidents.\"}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-15y9wh9\",\"data-styles-preset\":\"j_Hnc8qRV\",children:\"Locomotive Perception System leverages 3D and 2D detection technologies to identify and classify critical objects and hazards, providing essential safety data directly to the driver's cabin interface.\"}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-15y9wh9\",\"data-styles-preset\":\"j_Hnc8qRV\",children:\"Teams benefit from enhanced driver assistance and reduced track incidents, even in low-visibility scenarios.\"})]}),className:\"framer-17so013\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"iMtMSYf4g\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})})]}),isDisplayed9()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-191vx5d\",\"data-framer-name\":\"5\",layoutDependency:layoutDependency,layoutId:\"zZx2W9GZT\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-174xtev\",layoutDependency:layoutDependency,layoutId:\"VG6Jgyl6N\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-ci2ngw\",\"data-styles-preset\":\"stylesPresetHeading3\",children:\"Railway Vegetation Monitoring\"})}),className:\"framer-1tootax\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Q1pmTVpAb\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-15y9wh9\",\"data-styles-preset\":\"j_Hnc8qRV\",children:\"Unmanaged vegetation along railways poses risks to safety and can cause costly disruptions to service.\"}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-15y9wh9\",\"data-styles-preset\":\"j_Hnc8qRV\",children:\"Kodifly employs LiDAR and AI analytics for precise detection and mapping of foliage encroachment, automating vegetation management. \"}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-15y9wh9\",\"data-styles-preset\":\"j_Hnc8qRV\",children:\"Rail operators experience enhanced safety, reduced service interruptions, and lower maintenance costs with proactive vegetation control.\"})]}),className:\"framer-7c8d5k\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"NU06DXUUR\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),isDisplayed10()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5dn7j0\",layoutDependency:layoutDependency,layoutId:\"qR1I_skNq\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1c7ldb1\",\"data-framer-name\":\"1\",layoutDependency:layoutDependency,layoutId:\"Nu26Lx7NM\",style:{opacity:0},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bu4pkq\",layoutDependency:layoutDependency,layoutId:\"KL83HEtRS\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1m6w23k\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"uQqKJ4kKG\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 49 47\"><path d=\"M 24.5 12.75 C 24.5 18.963 19.463 24 13.25 24 L 2 24 L 2 12.75 C 2 6.537 7.037 1.5 13.25 1.5 C 19.463 1.5 24.5 6.537 24.5 12.75 Z M 24.5 35.25 C 24.5 29.037 29.537 24 35.75 24 L 47 24 L 47 35.25 C 47 41.463 41.963 46.5 35.75 46.5 C 29.537 46.5 24.5 41.463 24.5 35.25 Z M 2 35.25 C 2 41.463 7.037 46.5 13.25 46.5 L 24.5 46.5 L 24.5 35.25 C 24.5 29.037 19.463 24 13.25 24 C 7.037 24 2 29.037 2 35.25 Z M 47 12.75 C 47 6.537 41.963 1.5 35.75 1.5 L 24.5 1.5 L 24.5 12.75 C 24.5 18.963 29.537 24 35.75 24 C 41.963 24 47 18.963 47 12.75 Z\" fill=\"var(--token-274fb780-9951-4059-956e-43216c6f8956, rgb(120, 85, 255)) /* {&quot;name&quot;:&quot;Purple&quot;} */\"></path></svg>',svgContentId:10504351260,withExternalLayout:true}),/*#__PURE__*/_jsx(TextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,alignment:\"left\",className:\"framer-1e94ehf\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"hphBXcCGy\",rawHTML:\"<p style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style='--framer-text-color: rgba(16, 16, 18, 0.5)'>\u201C</span><span style=''>As we grow, it becomes increasingly important that we use software that we can trust and know is secure.</span><span style='--framer-text-color: rgba(16, 16, 18, 0.5)'>\u201D</span><br></span></p>\",style:{\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"normal\",\"--framer-font-size\":\"36px\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":400,\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"1.5em\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(102, 101, 114))\",\"--framer-text-decoration\":\"none\",\"--framer-text-stroke-color\":\"initial\",\"--framer-text-stroke-width\":\"initial\",\"--framer-text-transform\":\"none\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1kuynoc\",layoutDependency:layoutDependency,layoutId:\"xhpJfUaUM\",children:[/*#__PURE__*/_jsx(TextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,alignment:\"left\",className:\"framer-11kw9x3\",fonts:[\"GF;DM Sans-700\"],layoutDependency:layoutDependency,layoutId:\"xpoVLcsaq\",rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style=''>Ellis Koch</span><br></span></span>\",style:{\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"normal\",\"--framer-font-size\":\"20px\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":700,\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.4em\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(102, 101, 114))\",\"--framer-text-decoration\":\"none\",\"--framer-text-stroke-color\":\"initial\",\"--framer-text-stroke-width\":\"initial\",\"--framer-text-transform\":\"none\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(TextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:.5,alignment:\"left\",className:\"framer-mg52k2\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"Jpx8ZhYl9\",rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style=''>CTO at Acme Corp</span><br></span></span>\",style:{\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"normal\",\"--framer-font-size\":\"20px\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":400,\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.4em\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(102, 101, 114))\",\"--framer-text-decoration\":\"none\",\"--framer-text-stroke-color\":\"initial\",\"--framer-text-stroke-width\":\"initial\",\"--framer-text-transform\":\"none\",opacity:.5},text:c63DZzKb0ZtgRo_nyE,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1c4sngc\",\"data-framer-name\":\"2\",layoutDependency:layoutDependency,layoutId:\"htkvWvDfj\",style:{opacity:0},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1a6h2vu\",layoutDependency:layoutDependency,layoutId:\"cB03ws6AA\",children:[/*#__PURE__*/_jsx(SVGWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:100,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-hojl6b\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"UrBtHCmxK\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 119 30\"><path d=\"M 2.941 27.825 L 28.591 27.825 L 28.591 2.175 L 2.941 2.175 Z M 23.654 12.532 L 18.234 12.532 L 18.234 7.112 L 23.654 7.112 Z M 7.877 7.112 L 13.3 7.112 L 13.3 17.468 L 23.654 17.468 L 23.654 22.888 L 7.877 22.888 Z M 45.294 2.175 C 38.211 2.175 32.469 7.917 32.469 15 C 32.469 22.083 38.211 27.825 45.294 27.825 C 52.377 27.825 58.119 22.083 58.119 15 C 58.111 7.92 52.374 2.183 45.294 2.175 Z M 45.294 22.888 C 40.938 22.888 37.406 19.356 37.406 15 C 37.406 10.644 40.938 7.112 45.294 7.112 C 49.65 7.112 53.182 10.644 53.182 15 C 53.175 19.354 49.648 22.881 45.294 22.888 Z M 104.013 2.175 C 96.931 2.175 91.189 7.916 91.189 14.999 C 91.189 22.081 96.93 27.823 104.012 27.823 C 111.095 27.823 116.836 22.082 116.837 15 C 116.829 7.921 111.092 2.184 104.013 2.175 Z M 104.013 22.888 C 99.963 22.877 96.579 19.802 96.182 15.772 C 95.785 11.742 98.503 8.065 102.473 7.264 C 105.879 6.588 109.327 8.219 110.964 11.282 C 112.6 14.345 112.041 18.118 109.586 20.574 C 108.108 22.053 106.104 22.885 104.013 22.888 Z M 74.653 2.175 C 67.57 2.175 61.828 7.917 61.828 15 C 61.828 22.083 67.57 27.825 74.653 27.825 C 81.736 27.825 87.478 22.083 87.478 15 C 87.47 7.92 81.733 2.183 74.653 2.175 Z M 74.653 22.888 C 70.619 22.89 67.234 19.849 66.806 15.838 C 66.377 11.827 69.044 8.139 72.987 7.289 C 76.93 6.439 80.879 8.701 82.141 12.532 L 74.653 12.532 L 74.653 17.468 L 82.141 17.468 C 81.073 20.699 78.056 22.883 74.653 22.888 Z\" fill=\"#7c50ff\"></path></svg>',svgContentId:9341559611,withExternalLayout:true}),/*#__PURE__*/_jsx(TextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,alignment:\"left\",className:\"framer-5a6zbt\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"Z6qze2Yu0\",rawHTML:\"<p style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style='--framer-text-color: rgba(16, 16, 18, 0.5)'>\u201C</span><span style=''>We have 10x\u2019ed the speed of our engineering team. Having data distilled in such a smart way is just heaven.</span><span style='--framer-text-color: rgba(16, 16, 18, 0.5)'>\u201D</span><br></span></p>\",style:{\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"normal\",\"--framer-font-size\":\"34px\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":400,\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"1.5em\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(102, 101, 114))\",\"--framer-text-decoration\":\"none\",\"--framer-text-stroke-color\":\"initial\",\"--framer-text-stroke-width\":\"initial\",\"--framer-text-transform\":\"none\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1co6mvq\",layoutDependency:layoutDependency,layoutId:\"sOcUajJN6\",children:[/*#__PURE__*/_jsx(TextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,alignment:\"left\",className:\"framer-gvju1n\",fonts:[\"GF;DM Sans-700\"],layoutDependency:layoutDependency,layoutId:\"UwyGrXzkD\",rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style=''>Noah Holt</span><br></span></span>\",style:{\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"normal\",\"--framer-font-size\":\"20px\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":700,\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.4em\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(102, 101, 114))\",\"--framer-text-decoration\":\"none\",\"--framer-text-stroke-color\":\"initial\",\"--framer-text-stroke-width\":\"initial\",\"--framer-text-transform\":\"none\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(TextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:.5,alignment:\"left\",className:\"framer-135cs1t\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"XADPvmVON\",rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style=''>CTO at Company</span><br></span></span>\",style:{\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"normal\",\"--framer-font-size\":\"20px\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":400,\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.4em\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(102, 101, 114))\",\"--framer-text-decoration\":\"none\",\"--framer-text-stroke-color\":\"initial\",\"--framer-text-stroke-width\":\"initial\",\"--framer-text-transform\":\"none\",opacity:.5},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wovco1\",\"data-framer-name\":\"3\",layoutDependency:layoutDependency,layoutId:\"mR0pcJq1G\",style:{opacity:0},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-o3er1h\",layoutDependency:layoutDependency,layoutId:\"ulVsQlPNM\",children:[/*#__PURE__*/_jsx(SVGWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:100,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1p1a5rc\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"taJgrCrBz\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 71 46\"><path d=\"M 45.868 23 C 45.868 35.426 35.794 45.5 23.368 45.5 C 10.941 45.5 0.868 35.426 0.868 23 C 0.868 10.574 10.94 0.5 23.368 0.5 C 35.794 0.5 45.868 10.574 45.868 23 Z\" fill=\"rgba(120, 85, 255, 0.6)\"></path><path d=\"M 70.132 23 C 70.132 35.426 60.157 45.5 47.852 45.5 C 35.548 45.5 25.574 35.426 25.574 23 C 25.574 10.574 35.547 0.5 47.852 0.5 C 60.156 0.5 70.132 10.574 70.132 23 Z\" fill=\"rgba(120, 85, 255, 0.8)\"></path><path d=\"M 35.67 41.842 C 41.81 37.824 45.868 30.886 45.868 23 C 45.868 15.114 41.811 8.176 35.67 4.159 C 29.351 8.342 25.557 15.421 25.573 23 C 25.556 30.579 29.35 37.659 35.67 41.842 Z\" fill=\"var(--token-274fb780-9951-4059-956e-43216c6f8956, rgb(120, 85, 255)) /* {&quot;name&quot;:&quot;Purple&quot;} */\"></path></svg>',svgContentId:11512981319,withExternalLayout:true}),/*#__PURE__*/_jsx(TextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,alignment:\"left\",className:\"framer-hj4gzv\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"lf9Aj1M6M\",rawHTML:\"<p style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style='--framer-text-color: rgba(16, 16, 18, 0.5)'>\u201C</span><span style=''>Because of the flexible pricing plans, we were able to get exactly what we need at a fair price. That was pivotal in the early stages of our company.</span><span style='--framer-text-color: rgba(16, 16, 18, 0.5)'>\u201D</span><br></span></p>\",style:{\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"normal\",\"--framer-font-size\":\"34px\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":400,\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"1.5em\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(102, 101, 114))\",\"--framer-text-decoration\":\"none\",\"--framer-text-stroke-color\":\"initial\",\"--framer-text-stroke-width\":\"initial\",\"--framer-text-transform\":\"none\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-138vghd\",layoutDependency:layoutDependency,layoutId:\"KMn1cF81X\",children:[/*#__PURE__*/_jsx(TextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,alignment:\"left\",className:\"framer-1l8r09n\",fonts:[\"GF;DM Sans-700\"],layoutDependency:layoutDependency,layoutId:\"sNwJ7b2Ht\",rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style=''>Diana Brady</span><br></span></span>\",style:{\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"normal\",\"--framer-font-size\":\"20px\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":700,\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.4em\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(102, 101, 114))\",\"--framer-text-decoration\":\"none\",\"--framer-text-stroke-color\":\"initial\",\"--framer-text-stroke-width\":\"initial\",\"--framer-text-transform\":\"none\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(TextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:.5,alignment:\"left\",className:\"framer-1ma4j2x\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"vr6y6TNFF\",rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style=''>CFO at Company</span><br></span></span>\",style:{\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"normal\",\"--framer-font-size\":\"20px\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":400,\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.4em\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(102, 101, 114))\",\"--framer-text-decoration\":\"none\",\"--framer-text-stroke-color\":\"initial\",\"--framer-text-stroke-width\":\"initial\",\"--framer-text-transform\":\"none\",opacity:.5},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1oyowjz\",\"data-framer-name\":\"4\",layoutDependency:layoutDependency,layoutId:\"zQjnLFytD\",style:{opacity:0},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xmyzo4\",layoutDependency:layoutDependency,layoutId:\"cBmxSWura\",children:[/*#__PURE__*/_jsx(SVGWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:100,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-t52i4j\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"i5BCkJmHK\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 132 40\"><path d=\"M 23.23 11.39 L 25.23 11.39 L 25.23 25.31 L 31.23 25.31 L 31.23 27.31 L 23.23 27.31 Z M 37.46 11.39 C 40.774 11.39 43.46 14.076 43.46 17.39 C 43.46 20.704 40.774 23.39 37.46 23.39 C 34.146 23.39 31.46 20.704 31.46 17.39 C 31.46 14.076 34.146 11.39 37.46 11.39 Z M 37.46 21.39 C 39.669 21.39 41.46 19.599 41.46 17.39 C 41.46 15.181 39.669 13.39 37.46 13.39 C 35.251 13.39 33.46 15.181 33.46 17.39 C 33.471 19.591 35.259 21.37 37.46 21.37 Z M 33.46 25.33 L 41.46 25.33 L 41.46 27.33 L 33.46 27.33 Z M 59.06 27.33 L 57.06 27.33 L 57.06 25.9 C 55.77 26.803 54.234 27.288 52.66 27.29 C 48.96 27.315 45.726 24.799 44.84 21.207 C 43.953 17.615 45.645 13.884 48.932 12.184 C 52.218 10.485 56.241 11.26 58.66 14.06 L 57.19 15.37 C 55.351 13.315 52.348 12.779 49.911 14.07 C 47.475 15.361 46.232 18.147 46.899 20.823 C 47.567 23.499 49.972 25.375 52.73 25.37 C 54.412 25.373 56.011 24.643 57.11 23.37 L 51.71 23.37 L 51.71 21.37 L 59.08 21.37 Z M 66.42 11.43 C 69.734 11.43 72.42 14.116 72.42 17.43 C 72.42 20.744 69.734 23.43 66.42 23.43 C 63.106 23.43 60.42 20.744 60.42 17.43 C 60.409 15.828 61.039 14.289 62.17 13.154 C 63.301 12.02 64.838 11.385 66.44 11.39 Z M 66.42 21.43 C 68.629 21.43 70.42 19.639 70.42 17.43 C 70.42 15.221 68.629 13.43 66.42 13.43 C 64.211 13.43 62.42 15.221 62.42 17.43 C 62.453 19.623 64.246 21.381 66.44 21.37 Z M 62.42 25.37 L 70.42 25.37 L 70.42 27.37 L 62.42 27.37 Z M 74.55 11.39 L 76.55 11.39 L 76.55 27.29 L 74.55 27.29 Z M 79.32 11.39 L 81.32 11.39 C 81.423 11.38 81.527 11.38 81.63 11.39 C 83.915 11.142 86.142 12.222 87.362 14.17 C 88.582 16.118 88.582 18.592 87.362 20.54 C 86.142 22.488 83.915 23.568 81.63 23.32 L 81.32 23.32 L 81.32 27.32 L 79.32 27.32 Z M 81.32 13.39 L 81.32 21.3 L 81.63 21.3 C 83.172 21.505 84.694 20.798 85.53 19.486 C 86.367 18.174 86.367 16.496 85.53 15.184 C 84.694 13.872 83.172 13.165 81.63 13.37 C 81.521 13.381 81.414 13.405 81.31 13.44 Z M 95.73 12.54 L 94.25 13.71 C 93.729 13.165 92.939 12.972 92.225 13.214 C 91.511 13.457 91.002 14.091 90.92 14.84 L 90.92 15 C 90.92 15.88 91.53 16.47 92.72 16.55 C 97.3 16.83 99.4 18.98 99.4 21.82 L 99.4 22 C 99.159 24.295 97.601 26.239 95.413 26.975 C 93.225 27.711 90.809 27.103 89.23 25.42 L 90.76 24.24 C 91.481 25.012 92.505 25.429 93.56 25.38 C 95.561 25.485 97.29 23.995 97.48 22 L 97.48 21.86 C 97.48 19.19 94.86 18.7 92.59 18.48 C 90.49 18.28 88.98 16.97 88.98 15.08 L 88.98 15 C 89.134 12.957 90.861 11.392 92.91 11.44 C 93.967 11.409 94.988 11.827 95.72 12.59 Z M 107.23 25.26 C 109.72 25.26 111.69 22.57 111.69 19.26 L 111.69 11.26 L 113.69 11.26 L 113.69 19.26 C 113.69 23.66 110.81 27.21 107.27 27.21 C 103.73 27.21 100.85 23.66 100.85 19.26 L 100.85 11.26 L 102.85 11.26 L 102.85 19.26 C 102.77 22.62 104.74 25.31 107.22 25.31 Z M 129.04 27.26 L 127.04 27.26 L 127.04 17.36 L 122.43 23.36 L 117.82 17.36 L 117.82 27.29 L 115.82 27.29 L 115.82 11.39 L 122.42 20.08 L 129.02 11.39 Z M 13.63 9 C 13.63 5.996 11.194 3.56 8.19 3.56 C 5.186 3.56 2.75 5.996 2.75 9 L 2.75 25.45 L 7.23 28.66 L 7.23 36.48 L 9.15 36.48 L 9.15 28.66 L 13.63 25.45 Z M 11.71 18.2 L 9.15 20.76 L 9.15 18.36 L 11.71 15.8 Z M 4.71 15.8 L 7.27 18.36 L 7.27 20.76 L 4.71 18.2 Z M 11.71 13.08 L 8.19 16.6 L 4.67 13 L 4.67 10.6 L 8.19 14.12 L 11.71 10.6 Z M 8.19 5.48 C 9.781 5.487 11.172 6.555 11.59 8.09 L 8.19 11.48 L 4.79 8.09 C 5.193 6.539 6.587 5.452 8.19 5.44 Z M 4.67 24.48 L 4.67 20.88 L 7.23 23.44 L 7.23 26.3 Z M 9.15 26.31 L 9.15 23.44 L 11.71 20.88 L 11.71 24.47 Z\" fill=\"var(--token-274fb780-9951-4059-956e-43216c6f8956, rgb(120, 85, 255)) /* {&quot;name&quot;:&quot;Purple&quot;} */\"></path></svg>',svgContentId:9706504567,withExternalLayout:true}),/*#__PURE__*/_jsx(TextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,alignment:\"left\",className:\"framer-1qcc3iw\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"Xf2CsK3Ki\",rawHTML:\"<p style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style='--framer-text-color: rgba(16, 16, 18, 0.5)'>\u201C</span><span style='--framer-text-color: var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(16, 16, 18)) /* {&quot;name&quot;:&quot;Text&quot;} */'>We can make sound decisions on our marketing campaign with the data our engineering team is generating every week.</span><span style='--framer-text-color: rgba(16, 16, 18, 0.5)'>\u201D</span><br></span></p>\",style:{\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"normal\",\"--framer-font-size\":\"34px\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":400,\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"1.5em\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(102, 101, 114))\",\"--framer-text-decoration\":\"none\",\"--framer-text-stroke-color\":\"initial\",\"--framer-text-stroke-width\":\"initial\",\"--framer-text-transform\":\"none\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1c5tcuu\",layoutDependency:layoutDependency,layoutId:\"xdbaMgzu2\",children:[/*#__PURE__*/_jsx(TextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,alignment:\"left\",className:\"framer-1ks5qno\",fonts:[\"GF;DM Sans-700\"],layoutDependency:layoutDependency,layoutId:\"WLWd5qwVW\",rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style=''>Lian Mathews</span><br></span></span>\",style:{\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"normal\",\"--framer-font-size\":\"20px\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":700,\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.4em\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(102, 101, 114))\",\"--framer-text-decoration\":\"none\",\"--framer-text-stroke-color\":\"initial\",\"--framer-text-stroke-width\":\"initial\",\"--framer-text-transform\":\"none\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(TextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:.5,alignment:\"left\",className:\"framer-19pz6ql\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"VMsG9A1AZ\",rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style=''>Head Marketing at Company</span><br></span></span>\",style:{\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"normal\",\"--framer-font-size\":\"20px\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":400,\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.4em\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(102, 101, 114))\",\"--framer-text-decoration\":\"none\",\"--framer-text-stroke-color\":\"initial\",\"--framer-text-stroke-width\":\"initial\",\"--framer-text-transform\":\"none\",opacity:.5},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ykg900\",\"data-framer-name\":\"5\",layoutDependency:layoutDependency,layoutId:\"tx2jtrFOc\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vq0xhm\",layoutDependency:layoutDependency,layoutId:\"UwpFmwMOd\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-ci2ngw\",\"data-styles-preset\":\"stylesPresetHeading3\",children:\"Locomotive Perception System\"})}),className:\"framer-1gfmrcy\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"clTfOUHyc\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-15y9wh9\",\"data-styles-preset\":\"j_Hnc8qRV\",children:\"Locomotive drivers face significant challenges during night-time rail maintenance, where low visibility increases the risk of collisions and track incidents.\"}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-15y9wh9\",\"data-styles-preset\":\"j_Hnc8qRV\",children:\"Locomotive Perception System leverages 3D and 2D detection technologies to identify and classify critical objects and hazards, providing essential safety data directly to the driver's cabin interface.\"}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-15y9wh9\",\"data-styles-preset\":\"j_Hnc8qRV\",children:\"Teams benefit from enhanced driver assistance and reduced track incidents, even in low-visibility scenarios.\"})]}),className:\"framer-17cv0k2\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Q3592vcua\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})})]}),isDisplayed11()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-411kdp\",layoutDependency:layoutDependency,layoutId:\"DqydJjocH\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1f4pnq6\",\"data-framer-name\":\"1\",layoutDependency:layoutDependency,layoutId:\"M3jIjAn2M\",style:{opacity:0},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1h0d0pr\",layoutDependency:layoutDependency,layoutId:\"FjROqWViW\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-i5uwvy\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"tYc4QC3t_\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 49 47\"><path d=\"M 24.5 12.75 C 24.5 18.963 19.463 24 13.25 24 L 2 24 L 2 12.75 C 2 6.537 7.037 1.5 13.25 1.5 C 19.463 1.5 24.5 6.537 24.5 12.75 Z M 24.5 35.25 C 24.5 29.037 29.537 24 35.75 24 L 47 24 L 47 35.25 C 47 41.463 41.963 46.5 35.75 46.5 C 29.537 46.5 24.5 41.463 24.5 35.25 Z M 2 35.25 C 2 41.463 7.037 46.5 13.25 46.5 L 24.5 46.5 L 24.5 35.25 C 24.5 29.037 19.463 24 13.25 24 C 7.037 24 2 29.037 2 35.25 Z M 47 12.75 C 47 6.537 41.963 1.5 35.75 1.5 L 24.5 1.5 L 24.5 12.75 C 24.5 18.963 29.537 24 35.75 24 C 41.963 24 47 18.963 47 12.75 Z\" fill=\"var(--token-274fb780-9951-4059-956e-43216c6f8956, rgb(120, 85, 255)) /* {&quot;name&quot;:&quot;Purple&quot;} */\"></path></svg>',svgContentId:10504351260,withExternalLayout:true}),/*#__PURE__*/_jsx(TextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,alignment:\"left\",className:\"framer-uy4vjd\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"xiyUVGWk1\",rawHTML:\"<p style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style='--framer-text-color: rgba(16, 16, 18, 0.5)'>\u201C</span><span style=''>As we grow, it becomes increasingly important that we use software that we can trust and know is secure.</span><span style='--framer-text-color: rgba(16, 16, 18, 0.5)'>\u201D</span><br></span></p>\",style:{\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"normal\",\"--framer-font-size\":\"36px\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":400,\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"1.5em\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(102, 101, 114))\",\"--framer-text-decoration\":\"none\",\"--framer-text-stroke-color\":\"initial\",\"--framer-text-stroke-width\":\"initial\",\"--framer-text-transform\":\"none\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1edytln\",layoutDependency:layoutDependency,layoutId:\"tBmm097Pa\",children:[/*#__PURE__*/_jsx(TextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,alignment:\"left\",className:\"framer-pyjoi1\",fonts:[\"GF;DM Sans-700\"],layoutDependency:layoutDependency,layoutId:\"DrDfcbNUf\",rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style=''>Ellis Koch</span><br></span></span>\",style:{\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"normal\",\"--framer-font-size\":\"20px\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":700,\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.4em\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(102, 101, 114))\",\"--framer-text-decoration\":\"none\",\"--framer-text-stroke-color\":\"initial\",\"--framer-text-stroke-width\":\"initial\",\"--framer-text-transform\":\"none\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(TextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:.5,alignment:\"left\",className:\"framer-1lj2y60\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"hpskycSZr\",rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style=''>CTO at Acme Corp</span><br></span></span>\",style:{\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"normal\",\"--framer-font-size\":\"20px\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":400,\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.4em\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(102, 101, 114))\",\"--framer-text-decoration\":\"none\",\"--framer-text-stroke-color\":\"initial\",\"--framer-text-stroke-width\":\"initial\",\"--framer-text-transform\":\"none\",opacity:.5},text:le4lkysI8,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nafjd9\",\"data-framer-name\":\"2\",layoutDependency:layoutDependency,layoutId:\"vmWkXfg3G\",style:{opacity:0},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11xmbgl\",layoutDependency:layoutDependency,layoutId:\"Ea8Yto4u8\",children:[/*#__PURE__*/_jsx(SVGWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:100,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1fryrei\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"PsNQqrMH9\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 119 30\"><path d=\"M 2.941 27.825 L 28.591 27.825 L 28.591 2.175 L 2.941 2.175 Z M 23.654 12.532 L 18.234 12.532 L 18.234 7.112 L 23.654 7.112 Z M 7.877 7.112 L 13.3 7.112 L 13.3 17.468 L 23.654 17.468 L 23.654 22.888 L 7.877 22.888 Z M 45.294 2.175 C 38.211 2.175 32.469 7.917 32.469 15 C 32.469 22.083 38.211 27.825 45.294 27.825 C 52.377 27.825 58.119 22.083 58.119 15 C 58.111 7.92 52.374 2.183 45.294 2.175 Z M 45.294 22.888 C 40.938 22.888 37.406 19.356 37.406 15 C 37.406 10.644 40.938 7.112 45.294 7.112 C 49.65 7.112 53.182 10.644 53.182 15 C 53.175 19.354 49.648 22.881 45.294 22.888 Z M 104.013 2.175 C 96.931 2.175 91.189 7.916 91.189 14.999 C 91.189 22.081 96.93 27.823 104.012 27.823 C 111.095 27.823 116.836 22.082 116.837 15 C 116.829 7.921 111.092 2.184 104.013 2.175 Z M 104.013 22.888 C 99.963 22.877 96.579 19.802 96.182 15.772 C 95.785 11.742 98.503 8.065 102.473 7.264 C 105.879 6.588 109.327 8.219 110.964 11.282 C 112.6 14.345 112.041 18.118 109.586 20.574 C 108.108 22.053 106.104 22.885 104.013 22.888 Z M 74.653 2.175 C 67.57 2.175 61.828 7.917 61.828 15 C 61.828 22.083 67.57 27.825 74.653 27.825 C 81.736 27.825 87.478 22.083 87.478 15 C 87.47 7.92 81.733 2.183 74.653 2.175 Z M 74.653 22.888 C 70.619 22.89 67.234 19.849 66.806 15.838 C 66.377 11.827 69.044 8.139 72.987 7.289 C 76.93 6.439 80.879 8.701 82.141 12.532 L 74.653 12.532 L 74.653 17.468 L 82.141 17.468 C 81.073 20.699 78.056 22.883 74.653 22.888 Z\" fill=\"#7c50ff\"></path></svg>',svgContentId:9341559611,withExternalLayout:true}),/*#__PURE__*/_jsx(TextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,alignment:\"left\",className:\"framer-1u74bb9\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"EXzgcbfb1\",rawHTML:\"<p style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style='--framer-text-color: rgba(16, 16, 18, 0.5)'>\u201C</span><span style=''>We have 10x\u2019ed the speed of our engineering team. Having data distilled in such a smart way is just heaven.</span><span style='--framer-text-color: rgba(16, 16, 18, 0.5)'>\u201D</span><br></span></p>\",style:{\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"normal\",\"--framer-font-size\":\"34px\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":400,\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"1.5em\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(102, 101, 114))\",\"--framer-text-decoration\":\"none\",\"--framer-text-stroke-color\":\"initial\",\"--framer-text-stroke-width\":\"initial\",\"--framer-text-transform\":\"none\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xcc6fj\",layoutDependency:layoutDependency,layoutId:\"KEbqKmuLt\",children:[/*#__PURE__*/_jsx(TextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,alignment:\"left\",className:\"framer-opfb2k\",fonts:[\"GF;DM Sans-700\"],layoutDependency:layoutDependency,layoutId:\"hnWCoVcA4\",rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style=''>Noah Holt</span><br></span></span>\",style:{\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"normal\",\"--framer-font-size\":\"20px\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":700,\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.4em\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(102, 101, 114))\",\"--framer-text-decoration\":\"none\",\"--framer-text-stroke-color\":\"initial\",\"--framer-text-stroke-width\":\"initial\",\"--framer-text-transform\":\"none\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(TextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:.5,alignment:\"left\",className:\"framer-1m5tvs6\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"kor1tt9aN\",rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style=''>CTO at Company</span><br></span></span>\",style:{\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"normal\",\"--framer-font-size\":\"20px\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":400,\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.4em\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(102, 101, 114))\",\"--framer-text-decoration\":\"none\",\"--framer-text-stroke-color\":\"initial\",\"--framer-text-stroke-width\":\"initial\",\"--framer-text-transform\":\"none\",opacity:.5},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14h5ozq\",\"data-framer-name\":\"3\",layoutDependency:layoutDependency,layoutId:\"sySiiaQGb\",style:{opacity:0},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xge1t3\",layoutDependency:layoutDependency,layoutId:\"VtVhRL7Zl\",children:[/*#__PURE__*/_jsx(SVGWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:100,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-10zbnup\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"voWX0oHvM\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 71 46\"><path d=\"M 45.868 23 C 45.868 35.426 35.794 45.5 23.368 45.5 C 10.941 45.5 0.868 35.426 0.868 23 C 0.868 10.574 10.94 0.5 23.368 0.5 C 35.794 0.5 45.868 10.574 45.868 23 Z\" fill=\"rgba(120, 85, 255, 0.6)\"></path><path d=\"M 70.132 23 C 70.132 35.426 60.157 45.5 47.852 45.5 C 35.548 45.5 25.574 35.426 25.574 23 C 25.574 10.574 35.547 0.5 47.852 0.5 C 60.156 0.5 70.132 10.574 70.132 23 Z\" fill=\"rgba(120, 85, 255, 0.8)\"></path><path d=\"M 35.67 41.842 C 41.81 37.824 45.868 30.886 45.868 23 C 45.868 15.114 41.811 8.176 35.67 4.159 C 29.351 8.342 25.557 15.421 25.573 23 C 25.556 30.579 29.35 37.659 35.67 41.842 Z\" fill=\"var(--token-274fb780-9951-4059-956e-43216c6f8956, rgb(120, 85, 255)) /* {&quot;name&quot;:&quot;Purple&quot;} */\"></path></svg>',svgContentId:11512981319,withExternalLayout:true}),/*#__PURE__*/_jsx(TextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,alignment:\"left\",className:\"framer-yi2yfk\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"l4sYK5kYh\",rawHTML:\"<p style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style='--framer-text-color: rgba(16, 16, 18, 0.5)'>\u201C</span><span style=''>Because of the flexible pricing plans, we were able to get exactly what we need at a fair price. That was pivotal in the early stages of our company.</span><span style='--framer-text-color: rgba(16, 16, 18, 0.5)'>\u201D</span><br></span></p>\",style:{\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"normal\",\"--framer-font-size\":\"34px\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":400,\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"1.5em\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(102, 101, 114))\",\"--framer-text-decoration\":\"none\",\"--framer-text-stroke-color\":\"initial\",\"--framer-text-stroke-width\":\"initial\",\"--framer-text-transform\":\"none\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17sksho\",layoutDependency:layoutDependency,layoutId:\"BnHPTA2JG\",children:[/*#__PURE__*/_jsx(TextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,alignment:\"left\",className:\"framer-1io3gzo\",fonts:[\"GF;DM Sans-700\"],layoutDependency:layoutDependency,layoutId:\"RixUp7WSP\",rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style=''>Diana Brady</span><br></span></span>\",style:{\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"normal\",\"--framer-font-size\":\"20px\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":700,\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.4em\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(102, 101, 114))\",\"--framer-text-decoration\":\"none\",\"--framer-text-stroke-color\":\"initial\",\"--framer-text-stroke-width\":\"initial\",\"--framer-text-transform\":\"none\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(TextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:.5,alignment:\"left\",className:\"framer-1wcbog\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"BeeXnjV27\",rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style=''>CFO at Company</span><br></span></span>\",style:{\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"normal\",\"--framer-font-size\":\"20px\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":400,\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.4em\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(102, 101, 114))\",\"--framer-text-decoration\":\"none\",\"--framer-text-stroke-color\":\"initial\",\"--framer-text-stroke-width\":\"initial\",\"--framer-text-transform\":\"none\",opacity:.5},verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed12()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jb02f0\",\"data-framer-name\":\"4\",layoutDependency:layoutDependency,layoutId:\"Ukp4T5UL4\",style:{opacity:0},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1emed8x\",layoutDependency:layoutDependency,layoutId:\"lhIITbYIb\",children:[/*#__PURE__*/_jsx(SVGWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:100,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1df022t\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"ED9lyuNST\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 132 40\"><path d=\"M 23.23 11.39 L 25.23 11.39 L 25.23 25.31 L 31.23 25.31 L 31.23 27.31 L 23.23 27.31 Z M 37.46 11.39 C 40.774 11.39 43.46 14.076 43.46 17.39 C 43.46 20.704 40.774 23.39 37.46 23.39 C 34.146 23.39 31.46 20.704 31.46 17.39 C 31.46 14.076 34.146 11.39 37.46 11.39 Z M 37.46 21.39 C 39.669 21.39 41.46 19.599 41.46 17.39 C 41.46 15.181 39.669 13.39 37.46 13.39 C 35.251 13.39 33.46 15.181 33.46 17.39 C 33.471 19.591 35.259 21.37 37.46 21.37 Z M 33.46 25.33 L 41.46 25.33 L 41.46 27.33 L 33.46 27.33 Z M 59.06 27.33 L 57.06 27.33 L 57.06 25.9 C 55.77 26.803 54.234 27.288 52.66 27.29 C 48.96 27.315 45.726 24.799 44.84 21.207 C 43.953 17.615 45.645 13.884 48.932 12.184 C 52.218 10.485 56.241 11.26 58.66 14.06 L 57.19 15.37 C 55.351 13.315 52.348 12.779 49.911 14.07 C 47.475 15.361 46.232 18.147 46.899 20.823 C 47.567 23.499 49.972 25.375 52.73 25.37 C 54.412 25.373 56.011 24.643 57.11 23.37 L 51.71 23.37 L 51.71 21.37 L 59.08 21.37 Z M 66.42 11.43 C 69.734 11.43 72.42 14.116 72.42 17.43 C 72.42 20.744 69.734 23.43 66.42 23.43 C 63.106 23.43 60.42 20.744 60.42 17.43 C 60.409 15.828 61.039 14.289 62.17 13.154 C 63.301 12.02 64.838 11.385 66.44 11.39 Z M 66.42 21.43 C 68.629 21.43 70.42 19.639 70.42 17.43 C 70.42 15.221 68.629 13.43 66.42 13.43 C 64.211 13.43 62.42 15.221 62.42 17.43 C 62.453 19.623 64.246 21.381 66.44 21.37 Z M 62.42 25.37 L 70.42 25.37 L 70.42 27.37 L 62.42 27.37 Z M 74.55 11.39 L 76.55 11.39 L 76.55 27.29 L 74.55 27.29 Z M 79.32 11.39 L 81.32 11.39 C 81.423 11.38 81.527 11.38 81.63 11.39 C 83.915 11.142 86.142 12.222 87.362 14.17 C 88.582 16.118 88.582 18.592 87.362 20.54 C 86.142 22.488 83.915 23.568 81.63 23.32 L 81.32 23.32 L 81.32 27.32 L 79.32 27.32 Z M 81.32 13.39 L 81.32 21.3 L 81.63 21.3 C 83.172 21.505 84.694 20.798 85.53 19.486 C 86.367 18.174 86.367 16.496 85.53 15.184 C 84.694 13.872 83.172 13.165 81.63 13.37 C 81.521 13.381 81.414 13.405 81.31 13.44 Z M 95.73 12.54 L 94.25 13.71 C 93.729 13.165 92.939 12.972 92.225 13.214 C 91.511 13.457 91.002 14.091 90.92 14.84 L 90.92 15 C 90.92 15.88 91.53 16.47 92.72 16.55 C 97.3 16.83 99.4 18.98 99.4 21.82 L 99.4 22 C 99.159 24.295 97.601 26.239 95.413 26.975 C 93.225 27.711 90.809 27.103 89.23 25.42 L 90.76 24.24 C 91.481 25.012 92.505 25.429 93.56 25.38 C 95.561 25.485 97.29 23.995 97.48 22 L 97.48 21.86 C 97.48 19.19 94.86 18.7 92.59 18.48 C 90.49 18.28 88.98 16.97 88.98 15.08 L 88.98 15 C 89.134 12.957 90.861 11.392 92.91 11.44 C 93.967 11.409 94.988 11.827 95.72 12.59 Z M 107.23 25.26 C 109.72 25.26 111.69 22.57 111.69 19.26 L 111.69 11.26 L 113.69 11.26 L 113.69 19.26 C 113.69 23.66 110.81 27.21 107.27 27.21 C 103.73 27.21 100.85 23.66 100.85 19.26 L 100.85 11.26 L 102.85 11.26 L 102.85 19.26 C 102.77 22.62 104.74 25.31 107.22 25.31 Z M 129.04 27.26 L 127.04 27.26 L 127.04 17.36 L 122.43 23.36 L 117.82 17.36 L 117.82 27.29 L 115.82 27.29 L 115.82 11.39 L 122.42 20.08 L 129.02 11.39 Z M 13.63 9 C 13.63 5.996 11.194 3.56 8.19 3.56 C 5.186 3.56 2.75 5.996 2.75 9 L 2.75 25.45 L 7.23 28.66 L 7.23 36.48 L 9.15 36.48 L 9.15 28.66 L 13.63 25.45 Z M 11.71 18.2 L 9.15 20.76 L 9.15 18.36 L 11.71 15.8 Z M 4.71 15.8 L 7.27 18.36 L 7.27 20.76 L 4.71 18.2 Z M 11.71 13.08 L 8.19 16.6 L 4.67 13 L 4.67 10.6 L 8.19 14.12 L 11.71 10.6 Z M 8.19 5.48 C 9.781 5.487 11.172 6.555 11.59 8.09 L 8.19 11.48 L 4.79 8.09 C 5.193 6.539 6.587 5.452 8.19 5.44 Z M 4.67 24.48 L 4.67 20.88 L 7.23 23.44 L 7.23 26.3 Z M 9.15 26.31 L 9.15 23.44 L 11.71 20.88 L 11.71 24.47 Z\" fill=\"var(--token-274fb780-9951-4059-956e-43216c6f8956, rgb(120, 85, 255)) /* {&quot;name&quot;:&quot;Purple&quot;} */\"></path></svg>',svgContentId:9706504567,withExternalLayout:true}),/*#__PURE__*/_jsx(TextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,alignment:\"left\",className:\"framer-rcpx5n\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"dGWSzOjhk\",rawHTML:\"<p style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style='--framer-text-color: rgba(16, 16, 18, 0.5)'>\u201C</span><span style='--framer-text-color: var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(16, 16, 18)) /* {&quot;name&quot;:&quot;Text&quot;} */'>We can make sound decisions on our marketing campaign with the data our engineering team is generating every week.</span><span style='--framer-text-color: rgba(16, 16, 18, 0.5)'>\u201D</span><br></span></p>\",style:{\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"normal\",\"--framer-font-size\":\"34px\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":400,\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"1.5em\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(102, 101, 114))\",\"--framer-text-decoration\":\"none\",\"--framer-text-stroke-color\":\"initial\",\"--framer-text-stroke-width\":\"initial\",\"--framer-text-transform\":\"none\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bdxu9m\",layoutDependency:layoutDependency,layoutId:\"H0D8NojIq\",children:[/*#__PURE__*/_jsx(TextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,alignment:\"left\",className:\"framer-hb74ud\",fonts:[\"GF;DM Sans-700\"],layoutDependency:layoutDependency,layoutId:\"FAF8LJLNz\",rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style=''>Lian Mathews</span><br></span></span>\",style:{\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"normal\",\"--framer-font-size\":\"20px\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":700,\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.4em\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(102, 101, 114))\",\"--framer-text-decoration\":\"none\",\"--framer-text-stroke-color\":\"initial\",\"--framer-text-stroke-width\":\"initial\",\"--framer-text-transform\":\"none\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(TextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:.5,alignment:\"left\",className:\"framer-1psg27d\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"k2kAYSNKx\",rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style=''>Head Marketing at Company</span><br></span></span>\",style:{\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"normal\",\"--framer-font-size\":\"20px\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":400,\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.4em\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(102, 101, 114))\",\"--framer-text-decoration\":\"none\",\"--framer-text-stroke-color\":\"initial\",\"--framer-text-stroke-width\":\"initial\",\"--framer-text-transform\":\"none\",opacity:.5},verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed12()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1why23\",\"data-framer-name\":\"5\",layoutDependency:layoutDependency,layoutId:\"LLRSPuHq5\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1iux7jf\",layoutDependency:layoutDependency,layoutId:\"Mbzd9WKy0\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-ci2ngw\",\"data-styles-preset\":\"stylesPresetHeading3\",children:\"Railway Vegetation Monitoring\"})}),className:\"framer-9mn24o\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"b6hc74BAi\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({c52nGCOcg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-ci2ngw\",\"data-styles-preset\":\"stylesPresetHeading3\",children:\"Railway Mapping System\"})})},QPR9wX9Sv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-ci2ngw\",\"data-styles-preset\":\"stylesPresetHeading3\",children:\"Vehicle Counting & Classification in Road Tunnels\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-15y9wh9\",\"data-styles-preset\":\"j_Hnc8qRV\",children:\"Unmanaged vegetation along railways poses risks to safety and can cause costly disruptions to service.\"}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-15y9wh9\",\"data-styles-preset\":\"j_Hnc8qRV\",children:\"Kodifly employs LiDAR and AI analytics for precise detection and mapping of foliage encroachment, automating vegetation management. \"}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-15y9wh9\",\"data-styles-preset\":\"j_Hnc8qRV\",children:\"Rail operators experience enhanced safety, reduced service interruptions, and lower maintenance costs with proactive vegetation control.\"})]}),className:\"framer-it3hub\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"du_8kFTzI\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({c52nGCOcg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-15y9wh9\",\"data-styles-preset\":\"j_Hnc8qRV\",children:\"Kodifly's rail mapping solution offers a comprehensive approach to railway infrastructure management. This advanced system, equipped with LiDAR, cameras, GNSS, and IMU sensors, excels in mapping and analyzing railway tunnels and corridors, a traditionally challenging aspect of rail maintenance. From heavily manual and time-consuming to swift, accurate, and consistent, Kodifly transforms the rail surveying process, enabling organisations to have reliable information about it's infrastructure..\"})})},QPR9wX9Sv:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-15y9wh9\",\"data-styles-preset\":\"j_Hnc8qRV\",children:\"Managing tunnel traffic flow efficiently while ensuring safety poses significant challenges due to limited visibility and space.\"}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-15y9wh9\",\"data-styles-preset\":\"j_Hnc8qRV\",children:\"Our Tunnel Traffic Monitoring System leverages AI, LiDAR, and video analytics to accurately count and classify vehicles in real-time at tunnel entrances.\"}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-15y9wh9\",\"data-styles-preset\":\"j_Hnc8qRV\",children:\"Operators gain valuable insights to optimize traffic flow, enhancing tunnel safety and efficiency.\"})]})}},baseVariant,gestureVariant)})]})})]})]}),isDisplayed13()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1197,intrinsicWidth:2256,pixelHeight:1197,pixelWidth:2256,src:\"https://framerusercontent.com/images/QyE35YdtUShD3uRg62nHxofYU.png\",srcSet:\"https://framerusercontent.com/images/QyE35YdtUShD3uRg62nHxofYU.png?scale-down-to=512 512w,https://framerusercontent.com/images/QyE35YdtUShD3uRg62nHxofYU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QyE35YdtUShD3uRg62nHxofYU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/QyE35YdtUShD3uRg62nHxofYU.png 2256w\"},className:\"framer-1ssywgy\",layoutDependency:layoutDependency,layoutId:\"fTLGC5WTE\",...addPropertyOverrides({c52nGCOcg:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1197,intrinsicWidth:2256,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0),pixelHeight:1197,pixelWidth:2256,sizes:\"600px\",src:\"https://framerusercontent.com/images/QyE35YdtUShD3uRg62nHxofYU.png\",srcSet:\"https://framerusercontent.com/images/QyE35YdtUShD3uRg62nHxofYU.png?scale-down-to=512 512w,https://framerusercontent.com/images/QyE35YdtUShD3uRg62nHxofYU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QyE35YdtUShD3uRg62nHxofYU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/QyE35YdtUShD3uRg62nHxofYU.png 2256w\"}}},baseVariant,gestureVariant)}),isDisplayed14()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-t6keaa\",layoutDependency:layoutDependency,layoutId:\"fL_WwXvLL\",children:[isDisplayed15()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1626,intrinsicWidth:2241,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+11368683772161603e-29),pixelHeight:1626,pixelWidth:2241,sizes:\"600px\",src:\"https://framerusercontent.com/images/pzLq914J0trVxy48NZbSxYbSJSY.png\",srcSet:\"https://framerusercontent.com/images/pzLq914J0trVxy48NZbSxYbSJSY.png?scale-down-to=512 512w,https://framerusercontent.com/images/pzLq914J0trVxy48NZbSxYbSJSY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/pzLq914J0trVxy48NZbSxYbSJSY.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/pzLq914J0trVxy48NZbSxYbSJSY.png 2241w\"},className:\"framer-1ua6zjx\",\"data-framer-name\":\"1\",layoutDependency:layoutDependency,layoutId:\"z1wyH3fZP\",style:{filter:\"hue-rotate(0deg)\",WebkitFilter:\"hue-rotate(0deg)\"}}),isDisplayed15()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"A man working behind a laptop.\",fit:\"fill\",intrinsicHeight:4209,intrinsicWidth:3368,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+0),pixelHeight:4209,pixelWidth:3368,sizes:\"600px\",src:\"https://framerusercontent.com/images/9779STfJhpIrdZKh7w7W0RXVtc.jpg\",srcSet:\"https://framerusercontent.com/images/9779STfJhpIrdZKh7w7W0RXVtc.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/9779STfJhpIrdZKh7w7W0RXVtc.jpg?scale-down-to=2048 1638w,https://framerusercontent.com/images/9779STfJhpIrdZKh7w7W0RXVtc.jpg?scale-down-to=4096 3277w,https://framerusercontent.com/images/9779STfJhpIrdZKh7w7W0RXVtc.jpg 3368w\"},className:\"framer-mew8r0\",\"data-framer-name\":\"2\",layoutDependency:layoutDependency,layoutId:\"DSDnekiSk\",style:{opacity:0}}),isDisplayed15()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"A man looking at code.\",fit:\"fill\",intrinsicHeight:3513,intrinsicWidth:5269,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+0),pixelHeight:3513,pixelWidth:5269,sizes:\"600px\",src:\"https://framerusercontent.com/images/iWNxiaH2b6IaaMxFaMvazSgiSr0.jpg\",srcSet:\"https://framerusercontent.com/images/iWNxiaH2b6IaaMxFaMvazSgiSr0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/iWNxiaH2b6IaaMxFaMvazSgiSr0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/iWNxiaH2b6IaaMxFaMvazSgiSr0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/iWNxiaH2b6IaaMxFaMvazSgiSr0.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/iWNxiaH2b6IaaMxFaMvazSgiSr0.jpg 5269w\"},className:\"framer-10frmwr\",\"data-framer-name\":\"3\",layoutDependency:layoutDependency,layoutId:\"KIGAiactV\"}),isDisplayed15()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"A few people having a meeting.\",fit:\"fill\",intrinsicHeight:4320,intrinsicWidth:6480,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+0),pixelHeight:4320,pixelWidth:6480,sizes:\"600px\",src:\"https://framerusercontent.com/images/JrhhyyP4EqasvJITB8zbsSVyE.jpg\",srcSet:\"https://framerusercontent.com/images/JrhhyyP4EqasvJITB8zbsSVyE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/JrhhyyP4EqasvJITB8zbsSVyE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/JrhhyyP4EqasvJITB8zbsSVyE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/JrhhyyP4EqasvJITB8zbsSVyE.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/JrhhyyP4EqasvJITB8zbsSVyE.jpg 6480w\"},className:\"framer-74b8ai\",\"data-framer-name\":\"4\",layoutDependency:layoutDependency,layoutId:\"qYGDbdK09\"}),isDisplayed15()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1626,intrinsicWidth:2241,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+0),pixelHeight:1626,pixelWidth:2241,sizes:\"600px\",src:\"https://framerusercontent.com/images/pzLq914J0trVxy48NZbSxYbSJSY.png\",srcSet:\"https://framerusercontent.com/images/pzLq914J0trVxy48NZbSxYbSJSY.png?scale-down-to=512 512w,https://framerusercontent.com/images/pzLq914J0trVxy48NZbSxYbSJSY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/pzLq914J0trVxy48NZbSxYbSJSY.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/pzLq914J0trVxy48NZbSxYbSJSY.png 2241w\"},className:\"framer-198hj71\",\"data-framer-name\":\"5\",layoutDependency:layoutDependency,layoutId:\"i9EMwjdpt\",...addPropertyOverrides({XZimD5FTY:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:692,intrinsicWidth:1148,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+0),pixelHeight:692,pixelWidth:1148,sizes:\"660px\",src:\"https://framerusercontent.com/images/mts7b0qHvL6oCOcc4N0PwdrKw.png\",srcSet:\"https://framerusercontent.com/images/mts7b0qHvL6oCOcc4N0PwdrKw.png?scale-down-to=512 512w,https://framerusercontent.com/images/mts7b0qHvL6oCOcc4N0PwdrKw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mts7b0qHvL6oCOcc4N0PwdrKw.png 1148w\"}}},baseVariant,gestureVariant)}),isDisplayed10()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1554,intrinsicWidth:2187,pixelHeight:1554,pixelWidth:2187,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/F1TWl61AllVdCE1qXGEk1nPI.png\",srcSet:\"https://framerusercontent.com/images/F1TWl61AllVdCE1qXGEk1nPI.png?scale-down-to=512 512w,https://framerusercontent.com/images/F1TWl61AllVdCE1qXGEk1nPI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/F1TWl61AllVdCE1qXGEk1nPI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/F1TWl61AllVdCE1qXGEk1nPI.png 2187w\"},className:\"framer-1ayvws6\",\"data-framer-name\":\"1\",layoutDependency:layoutDependency,layoutId:\"GNqgoesCNKHYfNHujR\",style:{filter:\"hue-rotate(0deg)\",WebkitFilter:\"hue-rotate(0deg)\"},...addPropertyOverrides({IGyRzqKck:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1554,intrinsicWidth:2187,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+17.000000000000114),pixelHeight:1554,pixelWidth:2187,positionX:\"center\",positionY:\"center\",sizes:\"521px\",src:\"https://framerusercontent.com/images/F1TWl61AllVdCE1qXGEk1nPI.png\",srcSet:\"https://framerusercontent.com/images/F1TWl61AllVdCE1qXGEk1nPI.png?scale-down-to=512 512w,https://framerusercontent.com/images/F1TWl61AllVdCE1qXGEk1nPI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/F1TWl61AllVdCE1qXGEk1nPI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/F1TWl61AllVdCE1qXGEk1nPI.png 2187w\"}}},baseVariant,gestureVariant)})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gfaynz\",layoutDependency:layoutDependency,layoutId:\"fTvlyZOLT\",style:{backgroundColor:\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:400,pixelHeight:400,pixelWidth:800,src:\"https://framerusercontent.com/images/DPjJvF9O4suiVk5J4c6cfFvuzU.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/DPjJvF9O4suiVk5J4c6cfFvuzU.png?scale-down-to=512 512w,https://framerusercontent.com/images/DPjJvF9O4suiVk5J4c6cfFvuzU.png 800w\"},className:\"framer-a3iget\",\"data-framer-name\":\"$2024_03_07_17_44_42_8126\",layoutDependency:layoutDependency,layoutId:\"FDemGEOYx\",...addPropertyOverrides({SWJU1f1hk:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:400,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+0),pixelHeight:400,pixelWidth:800,sizes:\"600px\",src:\"https://framerusercontent.com/images/DPjJvF9O4suiVk5J4c6cfFvuzU.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/DPjJvF9O4suiVk5J4c6cfFvuzU.png?scale-down-to=512 512w,https://framerusercontent.com/images/DPjJvF9O4suiVk5J4c6cfFvuzU.png 800w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:336,intrinsicWidth:729,pixelHeight:336,pixelWidth:729,src:\"https://framerusercontent.com/images/229G6qIwOjTYTLh4Pkjc4UbQRw8.png\",srcSet:\"https://framerusercontent.com/images/229G6qIwOjTYTLh4Pkjc4UbQRw8.png?scale-down-to=512 512w,https://framerusercontent.com/images/229G6qIwOjTYTLh4Pkjc4UbQRw8.png 729w\"},className:\"framer-1wqriex\",\"data-framer-name\":\"$2024_03_07_17_44_42_8126bev\",layoutDependency:layoutDependency,layoutId:\"PWK87KFw4\",...addPropertyOverrides({SWJU1f1hk:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:336,intrinsicWidth:729,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+600-300),pixelHeight:336,pixelWidth:729,sizes:\"600px\",src:\"https://framerusercontent.com/images/229G6qIwOjTYTLh4Pkjc4UbQRw8.png\",srcSet:\"https://framerusercontent.com/images/229G6qIwOjTYTLh4Pkjc4UbQRw8.png?scale-down-to=512 512w,https://framerusercontent.com/images/229G6qIwOjTYTLh4Pkjc4UbQRw8.png 729w\"}}},baseVariant,gestureVariant)})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-EsgRi.framer-199q9cv, .framer-EsgRi .framer-199q9cv { display: block; }\",\".framer-EsgRi.framer-1x0kcqd { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-EsgRi .framer-1bk4bvk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-evenly; overflow: hidden; padding: 0px; position: relative; width: 1200px; will-change: var(--framer-will-change-override, transform); }\",\".framer-EsgRi .framer-1ssko5q { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: 414px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 270px; }\",\".framer-EsgRi .framer-1xs5t63 { flex: none; height: 91px; position: relative; white-space: pre-wrap; width: 301px; word-break: break-word; word-wrap: break-word; }\",\".framer-EsgRi .framer-5pwhgx { flex: none; height: 218px; position: relative; white-space: pre-wrap; width: 295px; word-break: break-word; word-wrap: break-word; }\",\".framer-EsgRi .framer-oi4e35 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 270px; }\",\".framer-EsgRi .framer-snpq57 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-EsgRi .framer-1edvkks { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 274px; word-break: break-word; word-wrap: break-word; }\",\".framer-EsgRi .framer-scnjh6, .framer-EsgRi .framer-109o7eg { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 600px; justify-content: space-between; overflow: visible; padding: 60px; position: relative; width: 1px; }\",\".framer-EsgRi .framer-1u9tg9u, .framer-EsgRi .framer-vsokmj, .framer-EsgRi .framer-411kdp { flex: none; height: 496px; overflow: visible; position: relative; width: 100%; }\",\".framer-EsgRi .framer-1bnyshp, .framer-EsgRi .framer-11r0ete, .framer-EsgRi .framer-lrehjw, .framer-EsgRi .framer-111egof, .framer-EsgRi .framer-1mbbjt6, .framer-EsgRi .framer-1mshsk8, .framer-EsgRi .framer-303e3c, .framer-EsgRi .framer-17h2qo0, .framer-EsgRi .framer-qwpk34, .framer-EsgRi .framer-1326msg, .framer-EsgRi .framer-1bk4khj, .framer-EsgRi .framer-e74z5a, .framer-EsgRi .framer-1c7ldb1, .framer-EsgRi .framer-1c4sngc, .framer-EsgRi .framer-1wovco1, .framer-EsgRi .framer-1oyowjz, .framer-EsgRi .framer-1f4pnq6, .framer-EsgRi .framer-nafjd9, .framer-EsgRi .framer-14h5ozq, .framer-EsgRi .framer-1jb02f0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 480px; justify-content: space-evenly; left: 0px; overflow: visible; padding: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-EsgRi .framer-1kuyq7m, .framer-EsgRi .framer-1vgswg2, .framer-EsgRi .framer-y7ndrn, .framer-EsgRi .framer-1bf647w, .framer-EsgRi .framer-ivk6k0, .framer-EsgRi .framer-1we0mkb, .framer-EsgRi .framer-1m1qh7q, .framer-EsgRi .framer-953s7d, .framer-EsgRi .framer-1mkwm9, .framer-EsgRi .framer-nqf52h, .framer-EsgRi .framer-6gzlnf, .framer-EsgRi .framer-djzyn, .framer-EsgRi .framer-1n355lk, .framer-EsgRi .framer-z0uwql, .framer-EsgRi .framer-af1kjx, .framer-EsgRi .framer-1yn7w01, .framer-EsgRi .framer-10d52od, .framer-EsgRi .framer-174xtev, .framer-EsgRi .framer-bu4pkq, .framer-EsgRi .framer-1a6h2vu, .framer-EsgRi .framer-o3er1h, .framer-EsgRi .framer-1xmyzo4, .framer-EsgRi .framer-1vq0xhm, .framer-EsgRi .framer-1h0d0pr, .framer-EsgRi .framer-11xmbgl, .framer-EsgRi .framer-1xge1t3, .framer-EsgRi .framer-1emed8x, .framer-EsgRi .framer-1iux7jf { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 1px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-EsgRi .framer-1iiw2gm, .framer-EsgRi .framer-1aeqbkn, .framer-EsgRi .framer-z90sr3, .framer-EsgRi .framer-1m6w23k, .framer-EsgRi .framer-i5uwvy { flex: none; height: 47px; position: relative; width: 49px; }\",\".framer-EsgRi .framer-1gacmlf, .framer-EsgRi .framer-rrzh71, .framer-EsgRi .framer-1iub7nv, .framer-EsgRi .framer-1xtwrvt, .framer-EsgRi .framer-npike8, .framer-EsgRi .framer-152mrp5, .framer-EsgRi .framer-1tisqsh, .framer-EsgRi .framer-6fvz2j, .framer-EsgRi .framer-1x5144m, .framer-EsgRi .framer-nwl9ew, .framer-EsgRi .framer-1ihz20a, .framer-EsgRi .framer-nusafa, .framer-EsgRi .framer-1e94ehf, .framer-EsgRi .framer-5a6zbt, .framer-EsgRi .framer-hj4gzv, .framer-EsgRi .framer-1qcc3iw, .framer-EsgRi .framer-uy4vjd, .framer-EsgRi .framer-1u74bb9, .framer-EsgRi .framer-yi2yfk, .framer-EsgRi .framer-rcpx5n { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 480px; word-break: break-word; word-wrap: break-word; }\",\".framer-EsgRi .framer-1uc6up1, .framer-EsgRi .framer-6d4wko, .framer-EsgRi .framer-5400m3, .framer-EsgRi .framer-df2swu, .framer-EsgRi .framer-19j9nh0, .framer-EsgRi .framer-1otfsc0, .framer-EsgRi .framer-sg429f, .framer-EsgRi .framer-du4huw, .framer-EsgRi .framer-jvs9yx, .framer-EsgRi .framer-m07naj, .framer-EsgRi .framer-ae12pg, .framer-EsgRi .framer-1rzg2n6, .framer-EsgRi .framer-1kuynoc, .framer-EsgRi .framer-1co6mvq, .framer-EsgRi .framer-138vghd, .framer-EsgRi .framer-1c5tcuu, .framer-EsgRi .framer-1edytln, .framer-EsgRi .framer-1xcc6fj, .framer-EsgRi .framer-17sksho, .framer-EsgRi .framer-bdxu9m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-EsgRi .framer-17wfqyl, .framer-EsgRi .framer-100u9p3, .framer-EsgRi .framer-1ar9hlg, .framer-EsgRi .framer-1aaz3zf, .framer-EsgRi .framer-2og4d0, .framer-EsgRi .framer-1usa5vz, .framer-EsgRi .framer-k0adgk, .framer-EsgRi .framer-xghvzx, .framer-EsgRi .framer-1iqhx9n, .framer-EsgRi .framer-kmjpl1, .framer-EsgRi .framer-1df5q59, .framer-EsgRi .framer-10a4tmy, .framer-EsgRi .framer-bn634y, .framer-EsgRi .framer-1kz9qxs, .framer-EsgRi .framer-157rrt7, .framer-EsgRi .framer-uld49w, .framer-EsgRi .framer-13otbed, .framer-EsgRi .framer-1f7f2zu, .framer-EsgRi .framer-1b1hs5q, .framer-EsgRi .framer-1fbqiql, .framer-EsgRi .framer-xzy19b, .framer-EsgRi .framer-c208as, .framer-EsgRi .framer-nykjes, .framer-EsgRi .framer-1u3t7l1, .framer-EsgRi .framer-11kw9x3, .framer-EsgRi .framer-mg52k2, .framer-EsgRi .framer-gvju1n, .framer-EsgRi .framer-135cs1t, .framer-EsgRi .framer-1l8r09n, .framer-EsgRi .framer-1ma4j2x, .framer-EsgRi .framer-1ks5qno, .framer-EsgRi .framer-19pz6ql, .framer-EsgRi .framer-pyjoi1, .framer-EsgRi .framer-1lj2y60, .framer-EsgRi .framer-opfb2k, .framer-EsgRi .framer-1m5tvs6, .framer-EsgRi .framer-1io3gzo, .framer-EsgRi .framer-1wcbog, .framer-EsgRi .framer-hb74ud, .framer-EsgRi .framer-1psg27d { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-EsgRi .framer-iqgn55, .framer-EsgRi .framer-1x3qh98, .framer-EsgRi .framer-1t8k87p, .framer-EsgRi .framer-hojl6b, .framer-EsgRi .framer-1fryrei { flex: none; height: 30px; position: relative; width: 119px; }\",\".framer-EsgRi .framer-4rn79d, .framer-EsgRi .framer-1fsldyp, .framer-EsgRi .framer-nasbdw, .framer-EsgRi .framer-1p1a5rc, .framer-EsgRi .framer-10zbnup { flex: none; height: 46px; position: relative; width: 71px; }\",\".framer-EsgRi .framer-r66k25, .framer-EsgRi .framer-r5ekgh, .framer-EsgRi .framer-kow3y0, .framer-EsgRi .framer-t52i4j, .framer-EsgRi .framer-1df022t { flex: none; height: 40px; position: relative; width: 132px; }\",\".framer-EsgRi .framer-wzf4n2, .framer-EsgRi .framer-chkl0v, .framer-EsgRi .framer-1yhtxi4, .framer-EsgRi .framer-ykg900, .framer-EsgRi .framer-1why23 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 480px; justify-content: space-evenly; left: 0px; overflow: visible; padding: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-EsgRi .framer-i25gpw, .framer-EsgRi .framer-k1g3fk, .framer-EsgRi .framer-y23gd3, .framer-EsgRi .framer-1m4vvhl, .framer-EsgRi .framer-11vfzw1, .framer-EsgRi .framer-1tootax, .framer-EsgRi .framer-1gfmrcy, .framer-EsgRi .framer-9mn24o { flex: none; height: 91px; position: relative; white-space: pre-wrap; width: 472px; word-break: break-word; word-wrap: break-word; }\",\".framer-EsgRi .framer-fkifi3, .framer-EsgRi .framer-63sp7m, .framer-EsgRi .framer-1oo6puw, .framer-EsgRi .framer-1mfoibv, .framer-EsgRi .framer-17so013, .framer-EsgRi .framer-7c8d5k, .framer-EsgRi .framer-17cv0k2, .framer-EsgRi .framer-it3hub { flex: none; height: 304px; position: relative; white-space: pre-wrap; width: 471px; word-break: break-word; word-wrap: break-word; }\",\".framer-EsgRi .framer-ulbbmq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 600px; justify-content: space-between; overflow: visible; padding: 60px; position: relative; width: 600px; }\",\".framer-EsgRi .framer-1fn1mum, .framer-EsgRi .framer-h9biy0, .framer-EsgRi .framer-191vx5d { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 480px; justify-content: space-evenly; overflow: visible; padding: 0px; position: relative; width: 480px; }\",\".framer-EsgRi .framer-6yauh2, .framer-EsgRi .framer-5dn7j0 { flex: none; height: 496px; overflow: visible; position: relative; width: 480px; }\",\".framer-EsgRi .framer-1ssywgy, .framer-EsgRi .framer-t6keaa { flex: none; height: 600px; overflow: visible; position: relative; width: 600px; }\",\".framer-EsgRi .framer-1ua6zjx { flex: none; height: 600px; left: calc(50.00000000000002% - 600px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 600px / 2); width: 600px; }\",\".framer-EsgRi .framer-mew8r0, .framer-EsgRi .framer-10frmwr, .framer-EsgRi .framer-74b8ai, .framer-EsgRi .framer-198hj71 { flex: none; height: 600px; left: 0px; overflow: visible; position: absolute; top: 0px; width: 600px; }\",\".framer-EsgRi .framer-1ayvws6 { flex: none; height: 566px; left: calc(47.50000000000002% - 521px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 566px / 2); width: 521px; }\",\".framer-EsgRi .framer-1gfaynz { flex: none; height: 600px; overflow: hidden; position: relative; width: 600px; }\",\".framer-EsgRi .framer-a3iget { aspect-ratio: 2 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 300px); left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-EsgRi .framer-1wqriex { aspect-ratio: 2 / 1; bottom: 0px; flex: none; height: var(--framer-aspect-ratio-supported, 300px); left: 0px; overflow: visible; position: absolute; right: 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-EsgRi.framer-1x0kcqd, .framer-EsgRi .framer-1ssko5q, .framer-EsgRi .framer-oi4e35, .framer-EsgRi .framer-1kuyq7m, .framer-EsgRi .framer-1uc6up1, .framer-EsgRi .framer-1vgswg2, .framer-EsgRi .framer-6d4wko, .framer-EsgRi .framer-y7ndrn, .framer-EsgRi .framer-5400m3, .framer-EsgRi .framer-1bf647w, .framer-EsgRi .framer-df2swu, .framer-EsgRi .framer-ivk6k0, .framer-EsgRi .framer-1we0mkb, .framer-EsgRi .framer-19j9nh0, .framer-EsgRi .framer-1m1qh7q, .framer-EsgRi .framer-1otfsc0, .framer-EsgRi .framer-953s7d, .framer-EsgRi .framer-sg429f, .framer-EsgRi .framer-1mkwm9, .framer-EsgRi .framer-du4huw, .framer-EsgRi .framer-nqf52h, .framer-EsgRi .framer-6gzlnf, .framer-EsgRi .framer-djzyn, .framer-EsgRi .framer-1n355lk, .framer-EsgRi .framer-jvs9yx, .framer-EsgRi .framer-z0uwql, .framer-EsgRi .framer-m07naj, .framer-EsgRi .framer-af1kjx, .framer-EsgRi .framer-ae12pg, .framer-EsgRi .framer-1yn7w01, .framer-EsgRi .framer-1rzg2n6, .framer-EsgRi .framer-10d52od, .framer-EsgRi .framer-174xtev, .framer-EsgRi .framer-bu4pkq, .framer-EsgRi .framer-1kuynoc, .framer-EsgRi .framer-1a6h2vu, .framer-EsgRi .framer-1co6mvq, .framer-EsgRi .framer-o3er1h, .framer-EsgRi .framer-138vghd, .framer-EsgRi .framer-1xmyzo4, .framer-EsgRi .framer-1c5tcuu, .framer-EsgRi .framer-1vq0xhm, .framer-EsgRi .framer-1h0d0pr, .framer-EsgRi .framer-1edytln, .framer-EsgRi .framer-11xmbgl, .framer-EsgRi .framer-1xcc6fj, .framer-EsgRi .framer-1xge1t3, .framer-EsgRi .framer-17sksho, .framer-EsgRi .framer-1emed8x, .framer-EsgRi .framer-bdxu9m, .framer-EsgRi .framer-1iux7jf { gap: 0px; } .framer-EsgRi.framer-1x0kcqd > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-EsgRi.framer-1x0kcqd > :first-child, .framer-EsgRi .framer-1ssko5q > :first-child, .framer-EsgRi .framer-oi4e35 > :first-child, .framer-EsgRi .framer-1kuyq7m > :first-child, .framer-EsgRi .framer-1uc6up1 > :first-child, .framer-EsgRi .framer-1vgswg2 > :first-child, .framer-EsgRi .framer-6d4wko > :first-child, .framer-EsgRi .framer-y7ndrn > :first-child, .framer-EsgRi .framer-5400m3 > :first-child, .framer-EsgRi .framer-1bf647w > :first-child, .framer-EsgRi .framer-df2swu > :first-child, .framer-EsgRi .framer-ivk6k0 > :first-child, .framer-EsgRi .framer-1we0mkb > :first-child, .framer-EsgRi .framer-19j9nh0 > :first-child, .framer-EsgRi .framer-1m1qh7q > :first-child, .framer-EsgRi .framer-1otfsc0 > :first-child, .framer-EsgRi .framer-953s7d > :first-child, .framer-EsgRi .framer-sg429f > :first-child, .framer-EsgRi .framer-1mkwm9 > :first-child, .framer-EsgRi .framer-du4huw > :first-child, .framer-EsgRi .framer-nqf52h > :first-child, .framer-EsgRi .framer-6gzlnf > :first-child, .framer-EsgRi .framer-djzyn > :first-child, .framer-EsgRi .framer-1n355lk > :first-child, .framer-EsgRi .framer-jvs9yx > :first-child, .framer-EsgRi .framer-z0uwql > :first-child, .framer-EsgRi .framer-m07naj > :first-child, .framer-EsgRi .framer-af1kjx > :first-child, .framer-EsgRi .framer-ae12pg > :first-child, .framer-EsgRi .framer-1yn7w01 > :first-child, .framer-EsgRi .framer-1rzg2n6 > :first-child, .framer-EsgRi .framer-10d52od > :first-child, .framer-EsgRi .framer-174xtev > :first-child, .framer-EsgRi .framer-bu4pkq > :first-child, .framer-EsgRi .framer-1kuynoc > :first-child, .framer-EsgRi .framer-1a6h2vu > :first-child, .framer-EsgRi .framer-1co6mvq > :first-child, .framer-EsgRi .framer-o3er1h > :first-child, .framer-EsgRi .framer-138vghd > :first-child, .framer-EsgRi .framer-1xmyzo4 > :first-child, .framer-EsgRi .framer-1c5tcuu > :first-child, .framer-EsgRi .framer-1vq0xhm > :first-child, .framer-EsgRi .framer-1h0d0pr > :first-child, .framer-EsgRi .framer-1edytln > :first-child, .framer-EsgRi .framer-11xmbgl > :first-child, .framer-EsgRi .framer-1xcc6fj > :first-child, .framer-EsgRi .framer-1xge1t3 > :first-child, .framer-EsgRi .framer-17sksho > :first-child, .framer-EsgRi .framer-1emed8x > :first-child, .framer-EsgRi .framer-bdxu9m > :first-child, .framer-EsgRi .framer-1iux7jf > :first-child { margin-top: 0px; } .framer-EsgRi.framer-1x0kcqd > :last-child, .framer-EsgRi .framer-1ssko5q > :last-child, .framer-EsgRi .framer-oi4e35 > :last-child, .framer-EsgRi .framer-1kuyq7m > :last-child, .framer-EsgRi .framer-1uc6up1 > :last-child, .framer-EsgRi .framer-1vgswg2 > :last-child, .framer-EsgRi .framer-6d4wko > :last-child, .framer-EsgRi .framer-y7ndrn > :last-child, .framer-EsgRi .framer-5400m3 > :last-child, .framer-EsgRi .framer-1bf647w > :last-child, .framer-EsgRi .framer-df2swu > :last-child, .framer-EsgRi .framer-ivk6k0 > :last-child, .framer-EsgRi .framer-1we0mkb > :last-child, .framer-EsgRi .framer-19j9nh0 > :last-child, .framer-EsgRi .framer-1m1qh7q > :last-child, .framer-EsgRi .framer-1otfsc0 > :last-child, .framer-EsgRi .framer-953s7d > :last-child, .framer-EsgRi .framer-sg429f > :last-child, .framer-EsgRi .framer-1mkwm9 > :last-child, .framer-EsgRi .framer-du4huw > :last-child, .framer-EsgRi .framer-nqf52h > :last-child, .framer-EsgRi .framer-6gzlnf > :last-child, .framer-EsgRi .framer-djzyn > :last-child, .framer-EsgRi .framer-1n355lk > :last-child, .framer-EsgRi .framer-jvs9yx > :last-child, .framer-EsgRi .framer-z0uwql > :last-child, .framer-EsgRi .framer-m07naj > :last-child, .framer-EsgRi .framer-af1kjx > :last-child, .framer-EsgRi .framer-ae12pg > :last-child, .framer-EsgRi .framer-1yn7w01 > :last-child, .framer-EsgRi .framer-1rzg2n6 > :last-child, .framer-EsgRi .framer-10d52od > :last-child, .framer-EsgRi .framer-174xtev > :last-child, .framer-EsgRi .framer-bu4pkq > :last-child, .framer-EsgRi .framer-1kuynoc > :last-child, .framer-EsgRi .framer-1a6h2vu > :last-child, .framer-EsgRi .framer-1co6mvq > :last-child, .framer-EsgRi .framer-o3er1h > :last-child, .framer-EsgRi .framer-138vghd > :last-child, .framer-EsgRi .framer-1xmyzo4 > :last-child, .framer-EsgRi .framer-1c5tcuu > :last-child, .framer-EsgRi .framer-1vq0xhm > :last-child, .framer-EsgRi .framer-1h0d0pr > :last-child, .framer-EsgRi .framer-1edytln > :last-child, .framer-EsgRi .framer-11xmbgl > :last-child, .framer-EsgRi .framer-1xcc6fj > :last-child, .framer-EsgRi .framer-1xge1t3 > :last-child, .framer-EsgRi .framer-17sksho > :last-child, .framer-EsgRi .framer-1emed8x > :last-child, .framer-EsgRi .framer-bdxu9m > :last-child, .framer-EsgRi .framer-1iux7jf > :last-child { margin-bottom: 0px; } .framer-EsgRi .framer-1ssko5q > *, .framer-EsgRi .framer-oi4e35 > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-EsgRi .framer-1kuyq7m > *, .framer-EsgRi .framer-1vgswg2 > *, .framer-EsgRi .framer-y7ndrn > *, .framer-EsgRi .framer-1bf647w > *, .framer-EsgRi .framer-ivk6k0 > *, .framer-EsgRi .framer-1we0mkb > *, .framer-EsgRi .framer-1m1qh7q > *, .framer-EsgRi .framer-953s7d > *, .framer-EsgRi .framer-1mkwm9 > *, .framer-EsgRi .framer-nqf52h > *, .framer-EsgRi .framer-6gzlnf > *, .framer-EsgRi .framer-djzyn > *, .framer-EsgRi .framer-1n355lk > *, .framer-EsgRi .framer-z0uwql > *, .framer-EsgRi .framer-af1kjx > *, .framer-EsgRi .framer-1yn7w01 > *, .framer-EsgRi .framer-10d52od > *, .framer-EsgRi .framer-174xtev > *, .framer-EsgRi .framer-bu4pkq > *, .framer-EsgRi .framer-1a6h2vu > *, .framer-EsgRi .framer-o3er1h > *, .framer-EsgRi .framer-1xmyzo4 > *, .framer-EsgRi .framer-1vq0xhm > *, .framer-EsgRi .framer-1h0d0pr > *, .framer-EsgRi .framer-11xmbgl > *, .framer-EsgRi .framer-1xge1t3 > *, .framer-EsgRi .framer-1emed8x > *, .framer-EsgRi .framer-1iux7jf > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-EsgRi .framer-1uc6up1 > *, .framer-EsgRi .framer-6d4wko > *, .framer-EsgRi .framer-5400m3 > *, .framer-EsgRi .framer-df2swu > *, .framer-EsgRi .framer-19j9nh0 > *, .framer-EsgRi .framer-1otfsc0 > *, .framer-EsgRi .framer-sg429f > *, .framer-EsgRi .framer-du4huw > *, .framer-EsgRi .framer-jvs9yx > *, .framer-EsgRi .framer-m07naj > *, .framer-EsgRi .framer-ae12pg > *, .framer-EsgRi .framer-1rzg2n6 > *, .framer-EsgRi .framer-1kuynoc > *, .framer-EsgRi .framer-1co6mvq > *, .framer-EsgRi .framer-138vghd > *, .framer-EsgRi .framer-1c5tcuu > *, .framer-EsgRi .framer-1edytln > *, .framer-EsgRi .framer-1xcc6fj > *, .framer-EsgRi .framer-17sksho > *, .framer-EsgRi .framer-bdxu9m > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } }\",\".framer-EsgRi.framer-v-1ukcyop .framer-198hj71 { bottom: 0px; height: unset; left: -60px; right: 0px; width: unset; }\",\".framer-EsgRi.framer-v-1faauxp .framer-109o7eg, .framer-EsgRi.framer-v-1n8fncr .framer-109o7eg { order: 3; }\",\".framer-EsgRi.framer-v-1faauxp .framer-1ssywgy { order: 5; }\",\".framer-EsgRi.framer-v-1gkuzh0.framer-1x0kcqd, .framer-EsgRi.framer-v-9b0t64.framer-1x0kcqd, .framer-EsgRi.framer-v-17ios9t.framer-1x0kcqd, .framer-EsgRi.framer-v-1kkj43d.framer-1x0kcqd { width: 640px; }\",\".framer-EsgRi.framer-v-1gkuzh0 .framer-1bk4bvk, .framer-EsgRi.framer-v-1n8fncr .framer-1bk4bvk, .framer-EsgRi.framer-v-9b0t64 .framer-1bk4bvk, .framer-EsgRi.framer-v-17ios9t .framer-1bk4bvk, .framer-EsgRi.framer-v-1kkj43d .framer-1bk4bvk { width: 606px; }\",\".framer-EsgRi.framer-v-1gkuzh0 .framer-109o7eg, .framer-EsgRi.framer-v-9b0t64 .framer-109o7eg, .framer-EsgRi.framer-v-17ios9t .framer-109o7eg, .framer-EsgRi.framer-v-1kkj43d .framer-109o7eg { height: 613px; order: 3; }\",\".framer-EsgRi.framer-v-1n8fncr.framer-1x0kcqd { width: 619px; }\",\".framer-EsgRi.framer-v-1wi1eu2.framer-1x0kcqd, .framer-EsgRi.framer-v-uyt66a.framer-1x0kcqd, .framer-EsgRi.framer-v-134cd2y.framer-1x0kcqd, .framer-EsgRi.framer-v-2j9xy1.framer-1x0kcqd, .framer-EsgRi.framer-v-raitt.framer-1x0kcqd { height: 300px; width: 330px; }\",\".framer-EsgRi.framer-v-1wi1eu2 .framer-1bk4bvk, .framer-EsgRi.framer-v-uyt66a .framer-1bk4bvk, .framer-EsgRi.framer-v-134cd2y .framer-1bk4bvk, .framer-EsgRi.framer-v-2j9xy1 .framer-1bk4bvk, .framer-EsgRi.framer-v-raitt .framer-1bk4bvk { height: 300px; padding: 20px; width: 330px; }\",\".framer-EsgRi.framer-v-1wi1eu2 .framer-1ssko5q, .framer-EsgRi.framer-v-uyt66a .framer-1ssko5q, .framer-EsgRi.framer-v-2j9xy1 .framer-1ssko5q, .framer-EsgRi.framer-v-raitt .framer-1ssko5q { align-content: center; align-items: center; height: min-content; order: 0; }\",\".framer-EsgRi.framer-v-1wi1eu2 .framer-1xs5t63, .framer-EsgRi.framer-v-uyt66a .framer-1xs5t63, .framer-EsgRi.framer-v-2j9xy1 .framer-1xs5t63 { height: auto; white-space: pre; width: auto; }\",\".framer-EsgRi.framer-v-1wi1eu2 .framer-5pwhgx { height: 64px; width: 259px; }\",\".framer-EsgRi.framer-v-uyt66a .framer-5pwhgx { height: 63px; width: 269px; }\",\".framer-EsgRi.framer-v-134cd2y .framer-1ssko5q { align-content: center; align-items: center; height: min-content; order: 0; width: min-content; }\",\".framer-EsgRi.framer-v-134cd2y .framer-1xs5t63 { height: auto; width: 229px; }\",\".framer-EsgRi.framer-v-134cd2y .framer-5pwhgx { height: auto; width: 272px; }\",\".framer-EsgRi.framer-v-2j9xy1 .framer-5pwhgx { height: auto; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-EsgRi[data-border=\"true\"]::after, .framer-EsgRi [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 600\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"SWJU1f1hk\":{\"layout\":[\"fixed\",\"auto\"]},\"XZimD5FTY\":{\"layout\":[\"fixed\",\"auto\"]},\"c52nGCOcg\":{\"layout\":[\"fixed\",\"auto\"]},\"KaodrxmLa\":{\"layout\":[\"fixed\",\"auto\"]},\"AjoKHBcpC\":{\"layout\":[\"fixed\",\"auto\"]},\"IGyRzqKck\":{\"layout\":[\"fixed\",\"auto\"]},\"sdR0Totml\":{\"layout\":[\"fixed\",\"auto\"]},\"QPR9wX9Sv\":{\"layout\":[\"fixed\",\"auto\"]},\"P_6qXaWKC\":{\"layout\":[\"fixed\",\"auto\"]},\"sKwILuoOo\":{\"layout\":[\"fixed\",\"fixed\"]},\"gAAl3lqxK\":{\"layout\":[\"fixed\",\"fixed\"]},\"PHla2b3Tp\":{\"layout\":[\"fixed\",\"fixed\"]},\"xyej1Qhev\":{\"layout\":[\"fixed\",\"fixed\"]},\"kYmT0rdhb\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"le4lkysI8\":\"title2\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerF8EBOp716=withCSS(Component,css,\"framer-EsgRi\");export default FramerF8EBOp716;FramerF8EBOp716.displayName=\"Use-Case-Slider\";FramerF8EBOp716.defaultProps={height:600,width:1200};addPropertyControls(FramerF8EBOp716,{variant:{options:[\"AMQKuY17B\",\"SWJU1f1hk\",\"XZimD5FTY\",\"c52nGCOcg\",\"KaodrxmLa\",\"AjoKHBcpC\",\"IGyRzqKck\",\"sdR0Totml\",\"QPR9wX9Sv\",\"P_6qXaWKC\",\"sKwILuoOo\",\"gAAl3lqxK\",\"PHla2b3Tp\",\"xyej1Qhev\",\"kYmT0rdhb\"],optionTitles:[\"TrIMS\",\"TKO\",\"LRV\",\"Mapping\",\"Tablet - Loco\",\"Tablet - TrIMS\",\"Loco\",\"Tablet - LRV\",\"Tablet - TKO\",\"Tablet - Mapping\",\"Mobile - Mapping\",\"Mobile - Loco\",\"Mobile - TKO\",\"Mobile - TrIMS\",\"Mobile LRV\"],title:\"Variant\",type:ControlType.Enum},le4lkysI8:{defaultValue:\"CTO at Acme Corp\",displayTextArea:false,title:\"Title 2\",type:ControlType.String}});addFonts(FramerF8EBOp716,[{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:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAfJthS2f3ZGMZpg.woff2\",weight:\"600\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAopxhS2f3ZGMZpg.woff2\",weight:\"400\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwARZthS2f3ZGMZpg.woff2\",weight:\"700\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerF8EBOp716\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"600\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"SWJU1f1hk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XZimD5FTY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"c52nGCOcg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KaodrxmLa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"AjoKHBcpC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IGyRzqKck\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"sdR0Totml\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QPR9wX9Sv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"P_6qXaWKC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"sKwILuoOo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"gAAl3lqxK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"PHla2b3Tp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"xyej1Qhev\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"kYmT0rdhb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"le4lkysI8\\\":\\\"title2\\\"}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f22aa3d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"gNzKeRNcz\",\"QaZimOnmJ\",\"rSG973zWQ\",\"SMm5PfX7s\",\"j5OnKJqin\",\"PjeG2bYUe\",\"LffExgguW\"];const serializationHash=\"framer-y0yzo\";const variantClassNames={gNzKeRNcz:\"framer-v-166gj7c\",j5OnKJqin:\"framer-v-1ta3cq2\",LffExgguW:\"framer-v-z48csp\",PjeG2bYUe:\"framer-v-uw9xs4\",QaZimOnmJ:\"framer-v-7nz401\",rSG973zWQ:\"framer-v-10m1qat\",SMm5PfX7s:\"framer-v-1xly8hj\"};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 transformTemplate2=(_,t)=>`translateX(-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.create(React.Fragment);const humanReadableVariantMap={Analytics:\"QaZimOnmJ\",Mobile:\"LffExgguW\",Overview:\"j5OnKJqin\",Platofrm:\"gNzKeRNcz\",Predictove:\"rSG973zWQ\",Report:\"SMm5PfX7s\",Tablet:\"PjeG2bYUe\"};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:\"gNzKeRNcz\"};};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:\"gNzKeRNcz\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap19y62or=activeVariantCallback(async(...args)=>{setVariant(\"LffExgguW\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"rSG973zWQ\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"QaZimOnmJ\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"LffExgguW\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"j5OnKJqin\")return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"SMm5PfX7s\")return true;return false;};const isDisplayed5=()=>{if([\"rSG973zWQ\",\"SMm5PfX7s\"].includes(baseVariant))return false;return true;};const isDisplayed6=()=>{if([\"j5OnKJqin\",\"LffExgguW\"].includes(baseVariant))return false;return true;};const isDisplayed7=()=>{if(baseVariant===\"QaZimOnmJ\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.figure,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-166gj7c\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Platofrm\",layoutDependency:layoutDependency,layoutId:\"gNzKeRNcz\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.08)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 20px 40px 0px rgba(0, 0, 0, 0.1), 0px 2px 10px 0px rgba(0, 0, 0, 0.1)\",filter:\"saturate(1.2)\",WebkitFilter:\"saturate(1.2)\",...style},...addPropertyOverrides({j5OnKJqin:{\"data-framer-name\":\"Overview\"},LffExgguW:{\"data-framer-name\":\"Mobile\"},PjeG2bYUe:{\"data-framer-name\":\"Tablet\"},QaZimOnmJ:{\"data-framer-name\":\"Analytics\"},rSG973zWQ:{\"data-framer-name\":\"Predictove\"},SMm5PfX7s:{\"data-framer-name\":\"Report\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-m9fia6\",\"data-framer-name\":\"Frame 34\",layoutDependency:layoutDependency,layoutId:\"resFjnNog\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-z3g1ll\",\"data-framer-name\":\"Radial\",layoutDependency:layoutDependency,layoutId:\"TA1ISzc5I\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"0px 4px 8px 0px rgba(0, 0, 0, 0.05000000074505806)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"38px\",\"--framer-line-height\":\"46px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(20, 20, 20, 1))\"},children:\"Pole ID: M2368\"})})}),className:\"framer-1nnsx0m\",\"data-framer-name\":\"Pole ID: M2368\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"mcN6DT8ZV\",style:{\"--extracted-1w3ko1f\":\"rgba(20, 20, 20, 1)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"32px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\"',\"--framer-font-size\":\"24px\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(20, 20, 20, 1))\"},children:\"Displacement:\"})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\"',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgba(20, 20, 20, 1))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"32px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\"',\"--framer-font-size\":\"24px\",\"--framer-text-color\":\"var(--extracted-1sfm3sg, rgba(20, 20, 20, 1))\"},children:\"Tilt: \"})})]}),className:\"framer-1bmp0ku\",\"data-framer-name\":\"Displacement: Tilt:\",fonts:[\"GF;Roboto-regular\"],layoutDependency:layoutDependency,layoutId:\"HL5LgSsVS\",style:{\"--extracted-1sfm3sg\":\"rgba(20, 20, 20, 1)\",\"--extracted-1w3ko1f\":\"rgba(20, 20, 20, 1)\",\"--extracted-2gxw0f\":\"rgba(20, 20, 20, 1)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"46px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(183, 235, 143))\"},children:\"0\"})}),className:\"framer-3h9ic2\",\"data-framer-name\":\"0\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"HqH12FrTx\",style:{\"--extracted-r6o4lv\":\"rgb(183, 235, 143)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"46px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 192, 105))\"},children:\"3\\xb0\"})}),className:\"framer-16tcyk9\",\"data-framer-name\":\"3\\xb0\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"uFLGpqTiL\",style:{\"--extracted-r6o4lv\":\"rgb(255, 192, 105)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"10px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXI=\",\"--framer-font-family\":'\"Inter\"',\"--framer-font-size\":\"10px\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(140, 140, 140, 1))\"},children:\"Inspection date: 2024/02/22\"})})}),className:\"framer-1cnv066\",\"data-framer-name\":\"Inspection date: 2024/02/22\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Bg19425Cf\",style:{\"--extracted-1w3ko1f\":\"rgba(140, 140, 140, 1)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1l19asz\",\"data-framer-name\":\"Radial\",layoutDependency:layoutDependency,layoutId:\"q7sp1NBEZ\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"0px 4px 8px 0px rgba(0, 0, 0, 0.05000000074505806)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"46px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:\"Tree ID: K2411\"})}),className:\"framer-6cmhzd\",\"data-framer-name\":\"Tree ID: K2411\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"wciO6vEoZ\",style:{\"--extracted-r6o4lv\":\"rgb(102, 102, 102)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(125, 125, 125))\"},children:\"Height:\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(125, 125, 125))\"},children:\"Distance: \"})]}),className:\"framer-8lf21w\",\"data-framer-name\":\"Height: Distance:\",fonts:[\"GF;Roboto-regular\"],layoutDependency:layoutDependency,layoutId:\"tgjJeGhPv\",style:{\"--extracted-2gxw0f\":\"rgb(125, 125, 125)\",\"--extracted-r6o4lv\":\"rgb(125, 125, 125)\",\"--framer-paragraph-spacing\":\"0px\"},transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"46px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 187, 184))\"},children:\"11.63m\"})}),className:\"framer-qigqbe\",\"data-framer-name\":\"11.63m\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"RRrTwAqSJ\",style:{\"--extracted-r6o4lv\":\"rgb(255, 187, 184)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"46px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 187, 184))\"},children:\"7.86m\"})}),className:\"framer-1sais0x\",\"data-framer-name\":\"7.86m\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"tCMSovKDW\",style:{\"--extracted-r6o4lv\":\"rgb(255, 187, 184)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"10px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXI=\",\"--framer-font-family\":'\"Inter\"',\"--framer-font-size\":\"10px\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(140, 140, 140, 1))\"},children:\"Inspection date: 2024/02/22\"})})}),className:\"framer-lq7f8z\",\"data-framer-name\":\"Inspection date: 2024/02/22\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"qEYxBmpn5\",style:{\"--extracted-1w3ko1f\":\"rgba(140, 140, 140, 1)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-mso82e\",\"data-framer-name\":\"Frame 16\",layoutDependency:layoutDependency,layoutId:\"Ee9xojDR_\",style:{backgroundColor:\"rgb(46, 110, 255)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1p7fswp\",\"data-framer-name\":\"Frame 33\",layoutDependency:layoutDependency,layoutId:\"kK2u2ERlv\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"28px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(255, 255, 255, 1))\"},children:\"+12% \"})})}),className:\"framer-1xvakt7\",\"data-framer-name\":\"+12%\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"rlkNkOQzW\",style:{\"--extracted-1w3ko1f\":\"rgba(255, 255, 255, 1)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"10px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXI=\",\"--framer-font-family\":'\"Inter\"',\"--framer-font-size\":\"10px\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(255, 255, 255, 1))\"},children:\"from last month\"})})}),className:\"framer-oblsos\",\"data-framer-name\":\"from last month\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"cG1NzQT88\",style:{\"--extracted-1w3ko1f\":\"rgba(255, 255, 255, 1)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8dnpj0\",\"data-framer-name\":\"Frame 17\",layoutDependency:layoutDependency,layoutId:\"GAmx_yeeZ\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(237, 237, 237))\"},children:\"Inspect Soon\"})}),className:\"framer-n8qqn2\",\"data-framer-name\":\"Inspect Soon\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"x2UpsXpke\",style:{\"--extracted-r6o4lv\":\"rgb(237, 237, 237)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1g0952m\",\"data-framer-name\":\"Warning\",layoutDependency:layoutDependency,layoutId:\"mz9PdoU5M\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1soxw93\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:15,intrinsicWidth:17,layoutDependency:layoutDependency,layoutId:\"I311:171;806:7950\",svg:'<svg width=\"17\" height=\"15\" viewBox=\"0 0 17 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M7.58977 11.4464C7.58977 11.688 7.68572 11.9196 7.85651 12.0904C8.0273 12.2612 8.25894 12.3571 8.50048 12.3571C8.74202 12.3571 8.97366 12.2612 9.14445 12.0904C9.31524 11.9196 9.4112 11.688 9.4112 11.4464C9.4112 11.2049 9.31524 10.9733 9.14445 10.8025C8.97366 10.6317 8.74202 10.5357 8.50048 10.5357C8.25894 10.5357 8.0273 10.6317 7.85651 10.8025C7.68572 10.9733 7.58977 11.2049 7.58977 11.4464V11.4464ZM7.89334 5.67857V9.16964C7.89334 9.25313 7.96164 9.32143 8.04512 9.32143H8.95584C9.03932 9.32143 9.10762 9.25313 9.10762 9.16964V5.67857C9.10762 5.59509 9.03932 5.52679 8.95584 5.52679H8.04512C7.96164 5.52679 7.89334 5.59509 7.89334 5.67857ZM16.9189 14.0268L9.02604 0.366071C8.90841 0.163058 8.70539 0.0625 8.50048 0.0625C8.29557 0.0625 8.09066 0.163058 7.97492 0.366071L0.0820656 14.0268C-0.151305 14.4328 0.140883 14.9375 0.607624 14.9375H16.3933C16.8601 14.9375 17.1523 14.4328 16.9189 14.0268ZM2.05338 13.4974L8.50048 2.33739L14.9476 13.4974H2.05338V13.4974Z\" fill=\"#FFA39E\"/>\\n</svg>\\n',withExternalLayout:true})})]})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-17rhoqw\",\"data-framer-name\":\"Frame 16\",layoutDependency:layoutDependency,layoutId:\"Q5d59BwL1\",style:{backgroundColor:\"rgb(46, 110, 255)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qshxga\",\"data-framer-name\":\"Frame 33\",layoutDependency:layoutDependency,layoutId:\"N8ULFfFmH\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"28px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(255, 255, 255, 1))\"},children:\"+1% \"})})}),className:\"framer-r6qfmm\",\"data-framer-name\":\"+1%\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"JEiL3UGzB\",style:{\"--extracted-1w3ko1f\":\"rgba(255, 255, 255, 1)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"10px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXI=\",\"--framer-font-family\":'\"Inter\"',\"--framer-font-size\":\"10px\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(255, 255, 255, 1))\"},children:\"from last month\"})})}),className:\"framer-1d84s5s\",\"data-framer-name\":\"from last month\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"MWdj0msya\",style:{\"--extracted-1w3ko1f\":\"rgba(255, 255, 255, 1)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-uh6hfv\",\"data-framer-name\":\"Frame 17\",layoutDependency:layoutDependency,layoutId:\"JWbyZ4sK_\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(230, 230, 230))\"},children:\"Good Health\"})}),className:\"framer-afe2ho\",\"data-framer-name\":\"Good Health\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"tUkZuzqH4\",style:{\"--extracted-r6o4lv\":\"rgb(230, 230, 230)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qp4vwo\",\"data-framer-name\":\"Smile\",layoutDependency:layoutDependency,layoutId:\"czVMfjQKS\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1x5ofp\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:17,layoutDependency:layoutDependency,layoutId:\"I323:27;806:9229\",svg:'<svg width=\"17\" height=\"17\" viewBox=\"0 0 17 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M4.25 6.77344C4.25 7.01497 4.34595 7.24662 4.51674 7.41741C4.68753 7.5882 4.91918 7.68415 5.16071 7.68415C5.40225 7.68415 5.63389 7.5882 5.80469 7.41741C5.97548 7.24662 6.07143 7.01497 6.07143 6.77344C6.07143 6.5319 5.97548 6.30026 5.80469 6.12947C5.63389 5.95867 5.40225 5.86272 5.16071 5.86272C4.91918 5.86272 4.68753 5.95867 4.51674 6.12947C4.34595 6.30026 4.25 6.5319 4.25 6.77344V6.77344ZM10.9286 6.77344C10.9286 7.01497 11.0245 7.24662 11.1953 7.41741C11.3661 7.5882 11.5977 7.68415 11.8393 7.68415C12.0808 7.68415 12.3125 7.5882 12.4833 7.41741C12.654 7.24662 12.75 7.01497 12.75 6.77344C12.75 6.5319 12.654 6.30026 12.4833 6.12947C12.3125 5.95867 12.0808 5.86272 11.8393 5.86272C11.5977 5.86272 11.3661 5.95867 11.1953 6.12947C11.0245 6.30026 10.9286 6.5319 10.9286 6.77344V6.77344ZM8.5 0C3.80603 0 0 3.80603 0 8.5C0 13.194 3.80603 17 8.5 17C13.194 17 17 13.194 17 8.5C17 3.80603 13.194 0 8.5 0ZM13.49 13.49C12.8411 14.1388 12.0859 14.6473 11.2454 15.004C10.3783 15.3721 9.45435 15.558 8.5 15.558C7.54565 15.558 6.62165 15.3721 5.75268 15.004C4.91344 14.6496 4.15112 14.1354 3.50815 13.49C2.85926 12.8411 2.35078 12.0859 1.99408 11.2454C1.6279 10.3783 1.44196 9.45435 1.44196 8.5C1.44196 7.54565 1.6279 6.62165 1.99598 5.75268C2.35042 4.91344 2.86465 4.15112 3.51004 3.50815C4.15893 2.85926 4.91406 2.35078 5.75458 1.99408C6.62165 1.6279 7.54565 1.44196 8.5 1.44196C9.45435 1.44196 10.3783 1.6279 11.2473 1.99598C12.0866 2.35042 12.8489 2.86465 13.4919 3.51004C14.1407 4.15893 14.6492 4.91406 15.0059 5.75458C15.3721 6.62165 15.558 7.54565 15.558 8.5C15.558 9.45435 15.3721 10.3783 15.004 11.2473C14.65 12.0862 14.1357 12.848 13.49 13.49V13.49ZM11.3839 8.89844H10.4713C10.3916 8.89844 10.3233 8.95915 10.3176 9.03884C10.2455 9.97801 9.45815 10.7199 8.5 10.7199C7.54185 10.7199 6.75257 9.97801 6.68237 9.03884C6.67667 8.95915 6.60837 8.89844 6.52868 8.89844H5.61607C5.59548 8.89841 5.57511 8.90257 5.55618 8.91067C5.53725 8.91877 5.52017 8.93063 5.50597 8.94554C5.49177 8.96045 5.48075 8.97809 5.47359 8.99739C5.46642 9.01669 5.46326 9.03725 5.46429 9.05781C5.54777 10.6573 6.87779 11.9342 8.5 11.9342C10.1222 11.9342 11.4522 10.6573 11.5357 9.05781C11.5367 9.03725 11.5336 9.01669 11.5264 8.99739C11.5192 8.97809 11.5082 8.96045 11.494 8.94554C11.4798 8.93063 11.4628 8.91877 11.4438 8.91067C11.4249 8.90257 11.4045 8.89841 11.3839 8.89844V8.89844Z\" fill=\"#B7EB8F\"/>\\n</svg>\\n',withExternalLayout:true})})]})]})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6ethek\",\"data-framer-name\":\"Frame 32\",layoutDependency:layoutDependency,layoutId:\"gKGFufGnU\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lzgr0z\",\"data-framer-name\":\"Radial\",layoutDependency:layoutDependency,layoutId:\"ao3fhUGOo\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"0px 4px 8px 0px rgba(0, 0, 0, 0.05000000074505806)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jxzbl9\",\"data-framer-name\":\"Group 15\",layoutDependency:layoutDependency,layoutId:\"sw5T1mwA0\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-12nsljk\",\"data-framer-name\":\"Frame 5\",layoutDependency:layoutDependency,layoutId:\"IeP2hL3Cc\",style:{backgroundColor:\"rgb(46, 110, 255)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1j21m0b\",\"data-framer-name\":\"Rectangle 1\",layoutDependency:layoutDependency,layoutId:\"S8tpHeDAG\",style:{backgroundColor:\"rgb(46, 110, 255)\"}})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXI=\",\"--framer-font-family\":'\"Inter\"',\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(146, 146, 146, 1))\"},children:\"Trees\"})})}),className:\"framer-1ky4i9t\",\"data-framer-name\":\"Trees\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"azcrAPxVd\",style:{\"--extracted-1w3ko1f\":\"rgba(146, 146, 146, 1)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"38px\",\"--framer-line-height\":\"46px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(20, 20, 20, 1))\"},children:\"Analysis\"})})}),className:\"framer-fjy0c0\",\"data-framer-name\":\"Analysis\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"H3lZs3M3r\",style:{\"--extracted-1w3ko1f\":\"rgba(20, 20, 20, 1)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1aopuum\",\"data-framer-name\":\"Group 1\",layoutDependency:layoutDependency,layoutId:\"bCx4i4MPn\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tpdyfw\",\"data-framer-name\":\"Frame 6\",layoutDependency:layoutDependency,layoutId:\"jgeQvl9tp\",style:{backgroundColor:\"rgb(138, 173, 255)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-c10kw3\",\"data-framer-name\":\"Rectangle 1\",layoutDependency:layoutDependency,layoutId:\"vjwGLNJQd\",style:{backgroundColor:\"rgb(138, 173, 255)\"}})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXI=\",\"--framer-font-family\":'\"Inter\"',\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(146, 146, 146, 1))\"},children:\"Vehicles\"})})}),className:\"framer-1f9rnu1\",\"data-framer-name\":\"Vehicles\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"cfcawlbrN\",style:{\"--extracted-1w3ko1f\":\"rgba(146, 146, 146, 1)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15p9at7\",\"data-framer-name\":\"Group 3\",layoutDependency:layoutDependency,layoutId:\"Gz_iJhAkk\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1onf0ak\",\"data-framer-name\":\"Frame 6\",layoutDependency:layoutDependency,layoutId:\"jwRQ5urox\",style:{backgroundColor:\"rgb(0, 255, 178)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lttt0\",\"data-framer-name\":\"Rectangle 1\",layoutDependency:layoutDependency,layoutId:\"NUgaPLPpL\",style:{backgroundColor:\"rgb(0, 255, 178)\"}})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXI=\",\"--framer-font-family\":'\"Inter\"',\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(146, 146, 146, 1))\"},children:\"Light Poles\"})})}),className:\"framer-bcvq02\",\"data-framer-name\":\"Light Poles\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"TA87ybIZ2\",style:{\"--extracted-1w3ko1f\":\"rgba(146, 146, 146, 1)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-qm6ls3\",\"data-framer-name\":\"Ellipse 10\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:240,intrinsicWidth:240,layoutDependency:layoutDependency,layoutId:\"FpSRWtaXx\",svg:'<svg width=\"240\" height=\"240\" viewBox=\"0 0 240 240\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M31.2598 58.4436C25.8143 54.6662 18.2788 55.9943 15.0638 61.7897C4.01408 81.7087 -1.17925 104.444 0.22497 127.344C1.87496 154.253 12.5379 179.822 30.4949 199.93C48.452 220.038 72.657 233.514 99.2084 238.185C125.76 242.856 153.111 238.45 176.852 225.678C200.594 212.906 219.343 192.511 230.077 167.781C240.812 143.051 242.906 115.427 236.023 89.3615C229.14 63.2959 213.68 40.3074 192.135 24.1016C173.8 10.3096 151.967 2.11402 129.256 0.357321C122.648 -0.153788 117.387 5.40235 117.538 12.0281C117.689 18.6537 123.202 23.8247 129.795 24.5008C147.102 26.2759 163.684 32.7324 177.708 43.2812C194.944 56.2459 207.312 74.6367 212.818 95.4892C218.325 116.342 216.649 138.441 208.062 158.225C199.474 178.009 184.475 194.325 165.482 204.542C146.488 214.76 124.608 218.285 103.367 214.548C82.1256 210.811 62.7616 200.031 48.3959 183.944C34.0303 167.858 25.5 147.402 24.18 125.876C23.106 108.36 26.8564 90.9652 34.9133 75.5447C37.9823 69.6707 36.7054 62.2211 31.2598 58.4436Z\" fill=\"#2E6EFF\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-whko16\",\"data-framer-name\":\"Ellipse 11\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:176,intrinsicWidth:176,layoutDependency:layoutDependency,layoutId:\"IjldpoXer\",svg:'<svg width=\"176\" height=\"176\" viewBox=\"0 0 176 176\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.0851 116.853C11.2328 119.234 8.35608 125.958 11.4758 131.452C17.4791 142.024 25.6301 151.276 35.4484 158.586C48.3371 168.181 63.6071 174.065 79.6023 175.598C95.5975 177.132 111.707 174.256 126.184 167.284C140.661 160.312 152.953 149.509 161.726 136.047C170.499 122.585 175.419 106.977 175.952 90.9177C176.484 74.858 172.61 58.959 164.748 44.9451C156.886 30.9311 145.338 19.3372 131.355 11.4208C120.703 5.39024 108.948 1.66912 96.8511 0.446221C90.565 -0.189262 85.576 5.15733 85.7608 11.4728C85.9456 17.7882 91.2508 22.655 97.5013 23.5769C105.41 24.7433 113.069 27.3609 120.082 31.3314C130.43 37.1896 138.976 45.769 144.794 56.1394C150.611 66.5097 153.478 78.2749 153.084 90.1591C152.69 102.043 149.049 113.593 142.557 123.555C136.065 133.516 126.969 141.511 116.256 146.67C105.543 151.83 93.6221 153.958 81.7857 152.823C69.9493 151.688 58.6495 147.334 49.1119 140.233C42.6475 135.421 37.1599 129.47 32.8993 122.706C29.532 117.36 22.9374 114.472 17.0851 116.853Z\" fill=\"#8AAEFF\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-exfzos\",\"data-framer-name\":\"Ellipse 12\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:112,intrinsicWidth:112,layoutDependency:layoutDependency,layoutId:\"Xn08fk0d0\",svg:'<svg width=\"112\" height=\"112\" viewBox=\"0 0 112 112\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M11.8719 48.2701C5.77907 47.2029 -0.144778 51.3057 0.0197649 57.4891C0.226841 65.2711 2.05553 72.967 5.43678 80.0699C10.4326 90.5645 18.57 99.2445 28.7207 104.906C38.8714 110.568 50.5323 112.932 62.0865 111.668C73.6406 110.405 84.5154 105.578 93.2028 97.8563C101.89 90.1348 107.96 79.9014 110.57 68.5752C113.18 57.2491 112.201 45.3914 107.769 34.6466C103.337 23.9018 95.6716 14.8022 85.8356 8.60973C79.1784 4.41855 71.7502 1.69963 64.0462 0.581035C57.9248 -0.307782 53.1553 5.09383 53.5005 11.2698C53.8456 17.4457 59.2564 21.9909 65.2053 23.6856C68.2556 24.5545 71.1854 25.856 73.9014 27.5658C79.803 31.2813 84.4022 36.7411 87.0614 43.188C89.7206 49.6349 90.3079 56.7494 88.7419 63.5451C87.1759 70.3408 83.5341 76.4809 78.3217 81.1138C73.1092 85.7467 66.5844 88.643 59.6519 89.401C52.7194 90.1589 45.7228 88.741 39.6324 85.3439C33.542 81.9467 28.6595 76.7387 25.6621 70.4419C24.2826 67.5442 23.3338 64.4819 22.8288 61.3507C21.8438 55.2441 17.9647 49.3374 11.8719 48.2701Z\" fill=\"#00FFB2\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-d9cb0j\",\"data-framer-name\":\"Radial\",layoutDependency:layoutDependency,layoutId:\"smFMdiaKc\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"0px 4px 8px 0px rgba(0, 0, 0, 0.05000000074505806)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"60px\",\"--framer-line-height\":\"46px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItQmxhY2s=\",\"--framer-font-family\":'\"Inter-Black\", \"Inter\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"900\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(46, 110, 255, 1))\"},children:\"86%\"})})}),className:\"framer-f7bqj9\",\"data-framer-name\":\"86%\",fonts:[\"Inter-Black\"],layoutDependency:layoutDependency,layoutId:\"dCd2PRZnO\",style:{\"--extracted-1w3ko1f\":\"rgba(46, 110, 255, 1)\",\"--framer-paragraph-spacing\":\"0px\"},transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"30px\",\"--framer-line-height\":\"40px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTUwMA==\",\"--framer-font-family\":'\"Roboto\"',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(20, 20, 20, 1))\"},children:\"inspected in the past 7 weeks\"})})}),className:\"framer-7ri34u\",\"data-framer-name\":\"inspected in the past 7 weeks\",fonts:[\"GF;Roboto-500\"],layoutDependency:layoutDependency,layoutId:\"FKWEjv4m2\",style:{\"--extracted-1w3ko1f\":\"rgba(20, 20, 20, 1)\",\"--framer-paragraph-spacing\":\"0px\"},transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ukr3a1\",\"data-framer-name\":\"Radial\",layoutDependency:layoutDependency,layoutId:\"LaavJEofX\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"0px 4px 8px 0px rgba(0, 0, 0, 0.05000000074505806)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"60px\",\"--framer-line-height\":\"46px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter-ExtraBold\", \"Inter\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(138, 173, 255, 1))\"},children:\"0\"})})}),className:\"framer-1mdzib3\",\"data-framer-name\":\"0\",fonts:[\"Inter-ExtraBold\"],layoutDependency:layoutDependency,layoutId:\"S3sqgcOMX\",style:{\"--extracted-1w3ko1f\":\"rgba(138, 173, 255, 1)\",\"--framer-paragraph-spacing\":\"0px\"},transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"30px\",\"--framer-line-height\":\"40px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTUwMA==\",\"--framer-font-family\":'\"Roboto\"',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(20, 20, 20, 1))\"},children:\"Abnormalities\"})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"30px\",\"--framer-line-height\":\"40px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTUwMA==\",\"--framer-font-family\":'\"Roboto\"',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-5dqwso, rgba(20, 20, 20, 1))\"},children:\"detected\"})})]}),className:\"framer-s7gxcc\",\"data-framer-name\":\"Abnormalities detected\",fonts:[\"GF;Roboto-500\"],layoutDependency:layoutDependency,layoutId:\"EXbJARHCQ\",style:{\"--extracted-1w3ko1f\":\"rgba(20, 20, 20, 1)\",\"--extracted-5dqwso\":\"rgba(20, 20, 20, 1)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-137bkfy\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"tk0x1wOPo\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(238, 238, 238)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19xsd3r\",layoutDependency:layoutDependency,layoutId:\"rlvGb4f_8\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-101z0aq\",layoutDependency:layoutDependency,layoutId:\"Wu6MelzcE\",style:{backgroundColor:\"rgb(238, 238, 238)\",borderBottomLeftRadius:\"50%\",borderBottomRightRadius:\"50%\",borderTopLeftRadius:\"50%\",borderTopRightRadius:\"50%\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-kbaf0t\",layoutDependency:layoutDependency,layoutId:\"F41MbHOFy\",style:{backgroundColor:\"rgb(238, 238, 238)\",borderBottomLeftRadius:\"50%\",borderBottomRightRadius:\"50%\",borderTopLeftRadius:\"50%\",borderTopRightRadius:\"50%\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sr523a\",layoutDependency:layoutDependency,layoutId:\"CcGEUV7JH\",style:{backgroundColor:\"rgb(238, 238, 238)\",borderBottomLeftRadius:\"50%\",borderBottomRightRadius:\"50%\",borderTopLeftRadius:\"50%\",borderTopRightRadius:\"50%\"}})]})}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qp5a5o\",layoutDependency:layoutDependency,layoutId:\"EW752B37T\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11hj8su\",\"data-framer-name\":\"Radial\",layoutDependency:layoutDependency,layoutId:\"ev7OGVKWN\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"0px 4px 8px 0px rgba(0, 0, 0, 0.05000000074505806)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"46px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(34, 34, 34))\"},children:\"Analysis\"})}),className:\"framer-1uwyksa\",\"data-framer-name\":\"Analysis\",fonts:[\"GF;DM Sans-600\"],layoutDependency:layoutDependency,layoutId:\"kpYnzo39i\",style:{\"--extracted-r6o4lv\":\"rgb(34, 34, 34)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rd6evs\",\"data-framer-name\":\"Group 1\",layoutDependency:layoutDependency,layoutId:\"mhktHAOgW\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-14gzkna\",\"data-framer-name\":\"Ellipse 10\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:240,intrinsicWidth:240,layoutDependency:layoutDependency,layoutId:\"nG2OHRN3b\",svg:'<svg width=\"240\" height=\"240\" viewBox=\"0 0 240 240\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M31.2598 58.4436C25.8143 54.6662 18.2788 55.9943 15.0638 61.7897C4.01408 81.7087 -1.17925 104.444 0.22497 127.344C1.87496 154.253 12.5379 179.822 30.4949 199.93C48.452 220.038 72.657 233.514 99.2084 238.185C125.76 242.856 153.111 238.45 176.852 225.678C200.594 212.906 219.343 192.511 230.077 167.781C240.812 143.051 242.906 115.427 236.023 89.3615C229.14 63.2959 213.68 40.3074 192.135 24.1016C173.8 10.3096 151.967 2.11402 129.256 0.357321C122.648 -0.153788 117.387 5.40235 117.538 12.0281C117.689 18.6537 123.202 23.8247 129.795 24.5008C147.102 26.2759 163.684 32.7324 177.708 43.2812C194.944 56.2459 207.312 74.6367 212.818 95.4892C218.325 116.342 216.649 138.441 208.062 158.225C199.474 178.009 184.475 194.325 165.482 204.542C146.488 214.76 124.608 218.285 103.367 214.548C82.1256 210.811 62.7616 200.031 48.3959 183.944C34.0303 167.858 25.5 147.402 24.18 125.876C23.106 108.36 26.8564 90.9652 34.9133 75.5447C37.9823 69.6707 36.7054 62.2211 31.2598 58.4436Z\" fill=\"#2E6EFF\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-93dqso\",\"data-framer-name\":\"Ellipse 11\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:176,intrinsicWidth:176,layoutDependency:layoutDependency,layoutId:\"IsYM7Bm8K\",svg:'<svg width=\"176\" height=\"176\" viewBox=\"0 0 176 176\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.0851 116.853C11.2328 119.234 8.35608 125.958 11.4758 131.452C17.4791 142.024 25.6301 151.276 35.4484 158.586C48.3371 168.181 63.6071 174.065 79.6023 175.598C95.5975 177.132 111.707 174.256 126.184 167.284C140.661 160.312 152.953 149.509 161.726 136.047C170.499 122.585 175.419 106.977 175.952 90.9177C176.484 74.858 172.61 58.959 164.748 44.9451C156.886 30.9311 145.338 19.3372 131.355 11.4208C120.703 5.39024 108.948 1.66912 96.8511 0.446221C90.565 -0.189262 85.576 5.15733 85.7608 11.4728C85.9456 17.7882 91.2508 22.655 97.5013 23.5769C105.41 24.7433 113.069 27.3609 120.082 31.3314C130.43 37.1896 138.976 45.769 144.794 56.1394C150.611 66.5097 153.478 78.2749 153.084 90.1591C152.69 102.043 149.049 113.593 142.557 123.555C136.065 133.516 126.969 141.511 116.256 146.67C105.543 151.83 93.6221 153.958 81.7857 152.823C69.9493 151.688 58.6495 147.334 49.1119 140.233C42.6475 135.421 37.1599 129.47 32.8993 122.706C29.532 117.36 22.9374 114.472 17.0851 116.853Z\" fill=\"#8AAEFF\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-pltzup\",\"data-framer-name\":\"Ellipse 12\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:112,intrinsicWidth:112,layoutDependency:layoutDependency,layoutId:\"lbIkQRqIf\",svg:'<svg width=\"112\" height=\"112\" viewBox=\"0 0 112 112\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M11.8719 48.2701C5.77907 47.2029 -0.144778 51.3057 0.0197649 57.4891C0.226841 65.2711 2.05553 72.967 5.43678 80.0699C10.4326 90.5645 18.57 99.2445 28.7207 104.906C38.8714 110.568 50.5323 112.932 62.0865 111.668C73.6406 110.405 84.5154 105.578 93.2028 97.8563C101.89 90.1348 107.96 79.9014 110.57 68.5752C113.18 57.2491 112.201 45.3914 107.769 34.6466C103.337 23.9018 95.6716 14.8022 85.8356 8.60973C79.1784 4.41855 71.7502 1.69963 64.0462 0.581035C57.9248 -0.307782 53.1553 5.09383 53.5005 11.2698C53.8456 17.4457 59.2564 21.9909 65.2053 23.6856C68.2556 24.5545 71.1854 25.856 73.9014 27.5658C79.803 31.2813 84.4022 36.7411 87.0614 43.188C89.7206 49.6349 90.3079 56.7494 88.7419 63.5451C87.1759 70.3408 83.5341 76.4809 78.3217 81.1138C73.1092 85.7467 66.5844 88.643 59.6519 89.401C52.7194 90.1589 45.7228 88.741 39.6324 85.3439C33.542 81.9467 28.6595 76.7387 25.6621 70.4419C24.2826 67.5442 23.3338 64.4819 22.8288 61.3507C21.8438 55.2441 17.9647 49.3374 11.8719 48.2701Z\" fill=\"#00FFB2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1v1cqcv\",layoutDependency:layoutDependency,layoutId:\"ETx1_W66d\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qjyzpb\",layoutDependency:layoutDependency,layoutId:\"MUizxyjHQ\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-2hklac\",\"data-framer-name\":\"Frame 5\",layoutDependency:layoutDependency,layoutId:\"q_JVmG_G0\",style:{backgroundColor:\"rgb(46, 110, 255)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"8px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(146, 146, 146))\"},children:\"Trees\"})}),className:\"framer-6j8smv\",\"data-framer-name\":\"Trees\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"NJ2te32_r\",style:{\"--extracted-r6o4lv\":\"rgb(146, 146, 146)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gzvcwc\",layoutDependency:layoutDependency,layoutId:\"ddWEP01SJ\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ezwzgw\",\"data-framer-name\":\"Frame 6\",layoutDependency:layoutDependency,layoutId:\"OtOF426US\",style:{backgroundColor:\"rgb(138, 173, 255)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"8px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(146, 146, 146))\"},children:\"Vehicles\"})}),className:\"framer-v73v5b\",\"data-framer-name\":\"Vehicles\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"C7JXTsjiq\",style:{\"--extracted-r6o4lv\":\"rgb(146, 146, 146)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1u2cozw\",layoutDependency:layoutDependency,layoutId:\"oo5zVmmM8\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-jmitr4\",\"data-framer-name\":\"Frame 6\",layoutDependency:layoutDependency,layoutId:\"rmsqqdPtB\",style:{backgroundColor:\"rgb(0, 255, 178)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"8px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(146, 146, 146))\"},children:\"Light Poles\"})}),className:\"framer-4uc8my\",\"data-framer-name\":\"Light Poles\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"loECjr2WY\",style:{\"--extracted-r6o4lv\":\"rgb(146, 146, 146)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-187tl54\",layoutDependency:layoutDependency,layoutId:\"aRQ9PVrR9\",style:{backgroundColor:\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ec865f\",\"data-framer-name\":\"Overview\",layoutDependency:layoutDependency,layoutId:\"LVOpJjUYH\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 4px 8px 0px rgba(0, 0, 0, 0.05000000074505806)\"},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-184vhl0\",\"data-framer-name\":\"Overview\",layoutDependency:layoutDependency,layoutId:\"TXcAnxCUd\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 4px 8px 0px rgba(0, 0, 0, 0.05000000074505806)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1129,pixelWidth:2449,sizes:\"227px\",src:\"https://framerusercontent.com/images/eKTGUDkDRBj0YwVTinEdXomT59g.png\",srcSet:\"https://framerusercontent.com/images/eKTGUDkDRBj0YwVTinEdXomT59g.png?scale-down-to=512 512w,https://framerusercontent.com/images/eKTGUDkDRBj0YwVTinEdXomT59g.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/eKTGUDkDRBj0YwVTinEdXomT59g.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/eKTGUDkDRBj0YwVTinEdXomT59g.png 2449w\"},className:\"framer-5qqq8v\",\"data-framer-name\":\"Screenshot 2023-12-14 at 6.46 1\",layoutDependency:layoutDependency,layoutId:\"F_mzqXnC6\",...addPropertyOverrides({LffExgguW:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+30+19+0+3.25+119-80+0+-34),pixelHeight:1129,pixelWidth:2449,sizes:\"227px\",src:\"https://framerusercontent.com/images/eKTGUDkDRBj0YwVTinEdXomT59g.png\",srcSet:\"https://framerusercontent.com/images/eKTGUDkDRBj0YwVTinEdXomT59g.png?scale-down-to=512 512w,https://framerusercontent.com/images/eKTGUDkDRBj0YwVTinEdXomT59g.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/eKTGUDkDRBj0YwVTinEdXomT59g.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/eKTGUDkDRBj0YwVTinEdXomT59g.png 2449w\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zjzsgd\",\"data-framer-name\":\"Radial\",layoutDependency:layoutDependency,layoutId:\"UmdnnT_qQ\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"0px 4px 8px 0px rgba(0, 0, 0, 0.05000000074505806)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"46px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(138, 173, 255))\"},children:\"0\"})}),className:\"framer-mdxl71\",\"data-framer-name\":\"0\",fonts:[\"Inter-ExtraBold\"],layoutDependency:layoutDependency,layoutId:\"z2C9OxYhC\",style:{\"--extracted-r6o4lv\":\"rgb(138, 173, 255)\",\"--framer-paragraph-spacing\":\"0px\"},transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(34, 34, 34))\"},children:\"Abnormalities Detected\"})}),className:\"framer-1k1l76q\",\"data-framer-name\":\"Abnormalities detected\",\"data-highlight\":true,fonts:[\"GF;DM Sans-600\"],layoutDependency:layoutDependency,layoutId:\"fynsxPEqy\",onTap:onTap19y62or,style:{\"--extracted-r6o4lv\":\"rgb(34, 34, 34)\",\"--framer-paragraph-spacing\":\"0px\"},transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tmvted\",layoutDependency:layoutDependency,layoutId:\"XXe3cYb5d\",children:[isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jaom75\",layoutDependency:layoutDependency,layoutId:\"svfh94_4V\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1kglekr\",\"data-framer-name\":\"Tree\",layoutDependency:layoutDependency,layoutId:\"h5T2Ejf6S\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 4px 8px 0px rgba(0, 0, 0, 0.05000000074505806)\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-13hnssu\",\"data-framer-name\":\"Frame 35\",layoutDependency:layoutDependency,layoutId:\"fJIi_yMLq\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"46px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(20, 20, 20, 1))\"},children:\"Tree\"})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"28px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTUwMA==\",\"--framer-font-family\":'\"Roboto\"',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-5dqwso, rgba(20, 20, 20, 1))\"},children:\"Total: 13,638\"})})]}),className:\"framer-1q5zvtg\",\"data-framer-name\":\"Tree Total: 13,638\",fonts:[\"Inter-Bold\",\"GF;Roboto-500\"],layoutDependency:layoutDependency,layoutId:\"jSGOXSz8M\",style:{\"--extracted-1w3ko1f\":\"rgba(20, 20, 20, 1)\",\"--extracted-5dqwso\":\"rgba(20, 20, 20, 1)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-xs13hv\",\"data-framer-name\":\"Overview\",layoutDependency:layoutDependency,layoutId:\"ECIiYNcjV\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 4px 8px 0px rgba(0, 0, 0, 0.05000000074505806)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"147.0988px\",src:\"https://framerusercontent.com/images/eEbcs0fnEPGmVIzGj3jdQafC4.png\",srcSet:\"https://framerusercontent.com/images/eEbcs0fnEPGmVIzGj3jdQafC4.png 592w\"},className:\"framer-37ppym\",\"data-framer-name\":\"Screenshot 2023-12-20 at 2.26 1\",layoutDependency:layoutDependency,layoutId:\"Sxn1q_f8W\",...addPropertyOverrides({j5OnKJqin:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+42+20+0+-6+20.5+0),positionX:\"center\",positionY:\"center\",sizes:\"147.0988px\",src:\"https://framerusercontent.com/images/eEbcs0fnEPGmVIzGj3jdQafC4.png\",srcSet:\"https://framerusercontent.com/images/eEbcs0fnEPGmVIzGj3jdQafC4.png 592w\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jfllva\",\"data-framer-name\":\"Vehicle\",layoutDependency:layoutDependency,layoutId:\"BrwDmhUPw\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 4px 8px 0px rgba(0, 0, 0, 0.05000000074505806)\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kxc92q\",\"data-framer-name\":\"Frame 35\",layoutDependency:layoutDependency,layoutId:\"UFb2yFHTd\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"46px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(20, 20, 20, 1))\"},children:\"Vehicle\"})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"28px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTUwMA==\",\"--framer-font-family\":'\"Roboto\"',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-5dqwso, rgba(20, 20, 20, 1))\"},children:\"Total: 325\"})})]}),className:\"framer-wh9vbs\",\"data-framer-name\":\"Vehicle Total: 325\",fonts:[\"Inter-Bold\",\"GF;Roboto-500\"],layoutDependency:layoutDependency,layoutId:\"xlP0WTa3K\",style:{\"--extracted-1w3ko1f\":\"rgba(20, 20, 20, 1)\",\"--extracted-5dqwso\":\"rgba(20, 20, 20, 1)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-6dvzd5\",\"data-framer-name\":\"Overview\",layoutDependency:layoutDependency,layoutId:\"LK0u_ZKZ9\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 4px 8px 0px rgba(0, 0, 0, 0.05000000074505806)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"186.7971px\",src:\"https://framerusercontent.com/images/K0Xe7PCtHQFhTdrdoitYHIww6I8.png\",srcSet:\"https://framerusercontent.com/images/K0Xe7PCtHQFhTdrdoitYHIww6I8.png 748w\"},className:\"framer-4mph59\",\"data-framer-name\":\"Screenshot 2023-12-14 at 11.23 1\",layoutDependency:layoutDependency,layoutId:\"vF09gsUnp\",...addPropertyOverrides({j5OnKJqin:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+42+20+0+-6+20.5+-33),positionX:\"center\",positionY:\"center\",sizes:\"186.7971px\",src:\"https://framerusercontent.com/images/K0Xe7PCtHQFhTdrdoitYHIww6I8.png\",srcSet:\"https://framerusercontent.com/images/K0Xe7PCtHQFhTdrdoitYHIww6I8.png 748w\"}}},baseVariant,gestureVariant)})})]})]}),isDisplayed4()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vstnxj\",\"data-framer-name\":\"Timeline\",layoutDependency:layoutDependency,layoutId:\"zqfocPqeg\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"0px 4px 8px 0px rgba(0, 0, 0, 0.05000000074505806)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTUwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(20, 20, 20))\"},children:\"Maintenance Schedule\"})}),className:\"framer-2p8gxy\",\"data-framer-name\":\"Critical Assets\",fonts:[\"GF;Roboto-500\"],layoutDependency:layoutDependency,layoutId:\"fRVg0NYvj\",style:{\"--extracted-r6o4lv\":\"rgb(20, 20, 20)\",\"--framer-paragraph-spacing\":\"0px\"},transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-32kh5a\",\"data-framer-name\":\"Group 11\",layoutDependency:layoutDependency,layoutId:\"XIA_sUibg\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXI=\",\"--framer-font-family\":'\"Inter\"',\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(146, 146, 146, 1))\"},children:\"Section1\"})})}),className:\"framer-bv9d3w\",\"data-framer-name\":\"Section1\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"JkJ__ZaXJ\",style:{\"--extracted-1w3ko1f\":\"rgba(146, 146, 146, 1)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXI=\",\"--framer-font-family\":'\"Inter\"',\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(146, 146, 146, 1))\"},children:\"Section2\"})})}),className:\"framer-1fgi3ns\",\"data-framer-name\":\"Section2\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"BWMQBkQvZ\",style:{\"--extracted-1w3ko1f\":\"rgba(146, 146, 146, 1)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXI=\",\"--framer-font-family\":'\"Inter\"',\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(146, 146, 146, 1))\"},children:\"Section3\"})})}),className:\"framer-1nvst8u\",\"data-framer-name\":\"Section3\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"J9ylVZ3G6\",style:{\"--extracted-1w3ko1f\":\"rgba(146, 146, 146, 1)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXI=\",\"--framer-font-family\":'\"Inter\"',\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(146, 146, 146, 1))\"},children:\"Section4\"})})}),className:\"framer-kaxlwf\",\"data-framer-name\":\"Section4\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"HdPkIw8C1\",style:{\"--extracted-1w3ko1f\":\"rgba(146, 146, 146, 1)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXI=\",\"--framer-font-family\":'\"Inter\"',\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(146, 146, 146, 1))\"},children:\"Section5\"})})}),className:\"framer-1m3w6go\",\"data-framer-name\":\"Section5\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"DPC_ixmND\",style:{\"--extracted-1w3ko1f\":\"rgba(146, 146, 146, 1)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-tx47aw\",\"data-framer-name\":\"Group 13\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:289,intrinsicWidth:277,layoutDependency:layoutDependency,layoutId:\"dwrZIfocr\",svg:'<svg width=\"277\" height=\"289\" viewBox=\"0 0 277 289\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M277 15L0 15\" stroke=\"#D9D9D9\" stroke-dasharray=\"5 5\"/>\\n<path d=\"M277 63L0 63\" stroke=\"#D9D9D9\" stroke-dasharray=\"5 5\"/>\\n<path d=\"M277 111L0 111\" stroke=\"#D9D9D9\" stroke-dasharray=\"5 5\"/>\\n<path d=\"M277 159L0 159\" stroke=\"#D9D9D9\" stroke-dasharray=\"5 5\"/>\\n<path d=\"M277 207L0 207\" stroke=\"#D9D9D9\" stroke-dasharray=\"5 5\"/>\\n<path d=\"M277 255L0 255\" stroke=\"#D9D9D9\" stroke-dasharray=\"5 5\"/>\\n<path d=\"M15 289L15 0\" stroke=\"#D9D9D9\" stroke-dasharray=\"5 5\"/>\\n<path d=\"M63 289L63 0\" stroke=\"#D9D9D9\" stroke-dasharray=\"5 5\"/>\\n<path d=\"M111 289L111 0\" stroke=\"#D9D9D9\" stroke-dasharray=\"5 5\"/>\\n<path d=\"M159 289L159 0\" stroke=\"#D9D9D9\" stroke-dasharray=\"5 5\"/>\\n<path d=\"M207 289L207 0\" stroke=\"#D9D9D9\" stroke-dasharray=\"5 5\"/>\\n<path d=\"M255 289L255 0\" stroke=\"#D9D9D9\" stroke-dasharray=\"5 5\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(146, 146, 146))\"},children:\"Mar\"})}),className:\"framer-1boylpt\",\"data-framer-name\":\"Mar\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"q5ti0SNM4\",style:{\"--extracted-r6o4lv\":\"rgb(146, 146, 146)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(146, 146, 146))\"},children:\"Apr\"})}),className:\"framer-1qvaepn\",\"data-framer-name\":\"Apr\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"XeeEr87Kf\",style:{\"--extracted-r6o4lv\":\"rgb(146, 146, 146)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(146, 146, 146))\"},children:\"May\"})}),className:\"framer-1oman0e\",\"data-framer-name\":\"May\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"XBD9UGFlp\",style:{\"--extracted-r6o4lv\":\"rgb(146, 146, 146)\",\"--framer-paragraph-spacing\":\"0px\"},transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(146, 146, 146))\"},children:\"Jun\"})}),className:\"framer-1tjp032\",\"data-framer-name\":\"Jun\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"FOKTm1Wcv\",style:{\"--extracted-r6o4lv\":\"rgb(146, 146, 146)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(146, 146, 146))\"},children:\"Jul\"})}),className:\"framer-w000we\",\"data-framer-name\":\"Jul\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"KeYUW0PBi\",style:{\"--extracted-r6o4lv\":\"rgb(146, 146, 146)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(146, 146, 146))\"},children:\"Aug\"})}),className:\"framer-8aoa53\",\"data-framer-name\":\"Aug\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Ogv7oJMvS\",style:{\"--extracted-r6o4lv\":\"rgb(146, 146, 146)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pqtrkb\",\"data-framer-name\":\"Frame 21\",layoutDependency:layoutDependency,layoutId:\"sQGl3UFdr\",style:{backgroundColor:\"rgb(231, 63, 118)\",borderBottomRightRadius:6,borderTopRightRadius:6},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/x5bF3zssFSo3RFBhVgSqkCg8ncs.png\"},className:\"framer-e18f1a\",\"data-border\":true,\"data-framer-name\":\"Ellipse 13\",layoutDependency:layoutDependency,layoutId:\"Sk9dN2vSx\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\",boxShadow:\"1px 1px 8px 0px rgba(0, 0, 0, 0.10000000149011612)\"},...addPropertyOverrides({SMm5PfX7s:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+42+20+108+12),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/x5bF3zssFSo3RFBhVgSqkCg8ncs.png\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/SORhLEUZG9OWaqYwfBMNnmEFU.png\"},className:\"framer-clqmdn\",\"data-border\":true,\"data-framer-name\":\"Ellipse 12\",layoutDependency:layoutDependency,layoutId:\"mmHjQKpZC\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\",boxShadow:\"1px 1px 8px 0px rgba(0, 0, 0, 0.10000000149011612)\"},...addPropertyOverrides({SMm5PfX7s:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+42+20+108+12),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/SORhLEUZG9OWaqYwfBMNnmEFU.png\"}}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1o14d22\",\"data-framer-name\":\"Frame 22\",layoutDependency:layoutDependency,layoutId:\"le9w4C3IL\",style:{backgroundColor:\"rgb(231, 63, 118)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXI=\",\"--framer-font-family\":'\"Inter\"',\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(255, 255, 255, 1))\"},children:\"Team 2\"})})}),className:\"framer-zfpl8n\",\"data-framer-name\":\"Team 2\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Avb3eZv0U\",style:{\"--extracted-1w3ko1f\":\"rgba(255, 255, 255, 1)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/N40RgHebMwqIVik1iJWXznW7ss.png\"},className:\"framer-17f4twr\",\"data-border\":true,\"data-framer-name\":\"Ellipse 14\",layoutDependency:layoutDependency,layoutId:\"a5aJXWUz3\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\",boxShadow:\"1px 1px 8px 0px rgba(0, 0, 0, 0.10000000149011612)\"},...addPropertyOverrides({SMm5PfX7s:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+42+20+148.50000000000009+12),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/N40RgHebMwqIVik1iJWXznW7ss.png\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/x5bF3zssFSo3RFBhVgSqkCg8ncs.png\"},className:\"framer-1xpu683\",\"data-border\":true,\"data-framer-name\":\"Ellipse 13\",layoutDependency:layoutDependency,layoutId:\"Jcu5FGgKA\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\",boxShadow:\"1px 1px 8px 0px rgba(0, 0, 0, 0.10000000149011612)\"},...addPropertyOverrides({SMm5PfX7s:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+42+20+148.50000000000009+12),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/x5bF3zssFSo3RFBhVgSqkCg8ncs.png\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/SORhLEUZG9OWaqYwfBMNnmEFU.png\"},className:\"framer-e80ssq\",\"data-border\":true,\"data-framer-name\":\"Ellipse 12\",layoutDependency:layoutDependency,layoutId:\"JVdOnZYcG\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\",boxShadow:\"1px 1px 8px 0px rgba(0, 0, 0, 0.10000000149011612)\"},...addPropertyOverrides({SMm5PfX7s:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+42+20+148.50000000000009+12),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/SORhLEUZG9OWaqYwfBMNnmEFU.png\"}}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-t3zjqp\",\"data-framer-name\":\"Frame 23\",layoutDependency:layoutDependency,layoutId:\"vy1ueEgHm\",style:{backgroundColor:\"rgb(60, 48, 196)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXI=\",\"--framer-font-family\":'\"Inter\"',\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(255, 255, 255, 1))\"},children:\"Henry Wong\"})})}),className:\"framer-k06nda\",\"data-framer-name\":\"Henry Wong\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"nrOJhiYSz\",style:{\"--extracted-1w3ko1f\":\"rgba(255, 255, 255, 1)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lfk53j\",\"data-framer-name\":\"Frame 26\",layoutDependency:layoutDependency,layoutId:\"qFEKg_FiS\",style:{backgroundColor:\"rgb(60, 48, 196)\",borderBottomLeftRadius:6,borderTopLeftRadius:6},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXI=\",\"--framer-font-family\":'\"Inter\"',\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(255, 255, 255, 1))\"},children:\"Henry W.\"})})}),className:\"framer-19beocr\",\"data-framer-name\":\"Henry W.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"WxhgysyT6\",style:{\"--extracted-1w3ko1f\":\"rgba(255, 255, 255, 1)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ddancv\",\"data-framer-name\":\"Frame 24\",layoutDependency:layoutDependency,layoutId:\"YVaP1oTBL\",style:{backgroundColor:\"rgb(57, 5, 108)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXI=\",\"--framer-font-family\":'\"Inter\"',\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(255, 255, 255, 1))\"},children:\"Madina J.\"})})}),className:\"framer-pruxi7\",\"data-framer-name\":\"Madina J.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"LjXZ6jn5l\",style:{\"--extracted-1w3ko1f\":\"rgba(255, 255, 255, 1)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1s5h4tg\",\"data-framer-name\":\"Frame 25\",layoutDependency:layoutDependency,layoutId:\"RE_8SpUjU\",style:{backgroundColor:\"rgb(60, 48, 196)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXI=\",\"--framer-font-family\":'\"Inter\"',\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(255, 255, 255, 1))\"},children:\"Henry Wong\"})})}),className:\"framer-1hwfbsa\",\"data-framer-name\":\"Henry Wong\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"TwktwLUm1\",style:{\"--extracted-1w3ko1f\":\"rgba(255, 255, 255, 1)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-q5mft7\",\"data-framer-name\":\"Frame 36\",layoutDependency:layoutDependency,layoutId:\"b7pchBXaj\"}),isDisplayed5()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gf6swr\",layoutDependency:layoutDependency,layoutId:\"jXBNamKcs\",children:[isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1c63b71\",layoutDependency:layoutDependency,layoutId:\"qodmJV3GW\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-uwviph\",\"data-framer-name\":\"Overview\",layoutDependency:layoutDependency,layoutId:\"XlDrsSt9I\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 4px 8px 0px rgba(0, 0, 0, 0.05000000074505806)\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cnfoil\",\"data-framer-name\":\"Frame 35\",layoutDependency:layoutDependency,layoutId:\"RXn3SMXhl\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"46px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(20, 20, 20, 1))\"},children:\"Overview\"})})}),className:\"framer-qscugs\",\"data-framer-name\":\"Overview\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"k6bqhC6Ph\",style:{\"--extracted-1w3ko1f\":\"rgba(20, 20, 20, 1)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-15f8l7s\",\"data-framer-name\":\"Overview\",layoutDependency:layoutDependency,layoutId:\"XxJMYIEzH\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 4px 8px 0px rgba(0, 0, 0, 0.05000000074505806)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"420px\",src:\"https://framerusercontent.com/images/4t3OIwhSnj8ZZ1y8o5RwfRzbTes.png\",srcSet:\"https://framerusercontent.com/images/4t3OIwhSnj8ZZ1y8o5RwfRzbTes.png?scale-down-to=512 512w,https://framerusercontent.com/images/4t3OIwhSnj8ZZ1y8o5RwfRzbTes.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4t3OIwhSnj8ZZ1y8o5RwfRzbTes.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/4t3OIwhSnj8ZZ1y8o5RwfRzbTes.png 4096w\"},className:\"framer-1ucrcvb\",\"data-framer-name\":\"Screenshot 2023-12-14 at 6.46 1\",layoutDependency:layoutDependency,layoutId:\"lRosijmPH\",...addPropertyOverrides({j5OnKJqin:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+42+20+218+(0+(Math.max(0,(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||500)-0-42)/1)*1-40-218)/1)*1-0-200)/2)+0+20.5+-51),sizes:\"420px\",src:\"https://framerusercontent.com/images/4t3OIwhSnj8ZZ1y8o5RwfRzbTes.png\",srcSet:\"https://framerusercontent.com/images/4t3OIwhSnj8ZZ1y8o5RwfRzbTes.png?scale-down-to=512 512w,https://framerusercontent.com/images/4t3OIwhSnj8ZZ1y8o5RwfRzbTes.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4t3OIwhSnj8ZZ1y8o5RwfRzbTes.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/4t3OIwhSnj8ZZ1y8o5RwfRzbTes.png 4096w\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18ki5xk\",\"data-framer-name\":\"Light Pole\",layoutDependency:layoutDependency,layoutId:\"UnHeuN9qv\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 4px 8px 0px rgba(0, 0, 0, 0.05000000074505806)\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-lrh5d9\",\"data-framer-name\":\"Frame 35\",layoutDependency:layoutDependency,layoutId:\"YcPuWDQYz\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"46px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(20, 20, 20, 1))\"},children:\"Light Pole\"})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"28px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTUwMA==\",\"--framer-font-family\":'\"Roboto\"',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-5dqwso, rgba(20, 20, 20, 1))\"},children:\"Total: 86\"})})]}),className:\"framer-16ytfkj\",\"data-framer-name\":\"Light Pole Total: 86\",fonts:[\"Inter-Bold\",\"GF;Roboto-500\"],layoutDependency:layoutDependency,layoutId:\"vejAtOV6q\",style:{\"--extracted-1w3ko1f\":\"rgba(20, 20, 20, 1)\",\"--extracted-5dqwso\":\"rgba(20, 20, 20, 1)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-3fev5x\",\"data-framer-name\":\"Overview\",layoutDependency:layoutDependency,layoutId:\"jI3J4NO6B\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 4px 8px 0px rgba(0, 0, 0, 0.05000000074505806)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"209.8765px\",src:\"https://framerusercontent.com/images/wXnTCfCkPeYNkg1HaWzEuSF2Cpo.png\",srcSet:\"https://framerusercontent.com/images/wXnTCfCkPeYNkg1HaWzEuSF2Cpo.png?scale-down-to=512 512w,https://framerusercontent.com/images/wXnTCfCkPeYNkg1HaWzEuSF2Cpo.png 840w\"},className:\"framer-j9pewh\",\"data-framer-name\":\"Screenshot 2023-12-20 at 11.20 1\",layoutDependency:layoutDependency,layoutId:\"g5GqWFNHu\",...addPropertyOverrides({j5OnKJqin:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+42+20+218+(0+(Math.max(0,(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||500)-0-42)/1)*1-40-218)/1)*1-0-200)/2)+0+20.5+0),positionX:\"center\",positionY:\"center\",sizes:\"209.8765px\",src:\"https://framerusercontent.com/images/wXnTCfCkPeYNkg1HaWzEuSF2Cpo.png\",srcSet:\"https://framerusercontent.com/images/wXnTCfCkPeYNkg1HaWzEuSF2Cpo.png?scale-down-to=512 512w,https://framerusercontent.com/images/wXnTCfCkPeYNkg1HaWzEuSF2Cpo.png 840w\"}}},baseVariant,gestureVariant)})})]})]}),isDisplayed6()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-co8b27\",layoutDependency:layoutDependency,layoutId:\"shGZiApKA\",children:[isDisplayed7()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1g90tfo\",\"data-framer-name\":\"Radial\",layoutDependency:layoutDependency,layoutId:\"OkJof6eAz\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"0px 4px 8px 0px rgba(0, 0, 0, 0.05000000074505806)\"},transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1izfrq6\",\"data-framer-name\":\"Group 15\",layoutDependency:layoutDependency,layoutId:\"hKiBQBqSo\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-az8fj7\",\"data-framer-name\":\"Frame 5\",layoutDependency:layoutDependency,layoutId:\"GtOLFFx3h\",style:{backgroundColor:\"rgb(46, 110, 255)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1u2xl36\",\"data-framer-name\":\"Rectangle 1\",layoutDependency:layoutDependency,layoutId:\"Ef3hLI1SW\",style:{backgroundColor:\"rgb(46, 110, 255)\"}})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(146, 146, 146))\"},children:\"Trees\"})}),className:\"framer-1aw2wmz\",\"data-framer-name\":\"Trees\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"NgjO9JoSb\",style:{\"--extracted-r6o4lv\":\"rgb(146, 146, 146)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"46px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(20, 20, 20))\"},children:\"Analysis\"})}),className:\"framer-46badr\",\"data-framer-name\":\"Analysis\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"mJckFBN3X\",style:{\"--extracted-r6o4lv\":\"rgb(20, 20, 20)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1t254h8\",\"data-framer-name\":\"Group 1\",layoutDependency:layoutDependency,layoutId:\"gWn66ISrQ\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-lxgs83\",\"data-framer-name\":\"Frame 6\",layoutDependency:layoutDependency,layoutId:\"NM5HJAWDd\",style:{backgroundColor:\"rgb(138, 173, 255)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-18btw5y\",\"data-framer-name\":\"Rectangle 1\",layoutDependency:layoutDependency,layoutId:\"enhJnuDkQ\",style:{backgroundColor:\"rgb(138, 173, 255)\"}})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(146, 146, 146))\"},children:\"Vehicles\"})}),className:\"framer-1boi2qn\",\"data-framer-name\":\"Vehicles\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"qonrmoeqB\",style:{\"--extracted-r6o4lv\":\"rgb(146, 146, 146)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-cusiyb\",\"data-framer-name\":\"Group 3\",layoutDependency:layoutDependency,layoutId:\"Fi0SKcDoI\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qj66pn\",\"data-framer-name\":\"Frame 6\",layoutDependency:layoutDependency,layoutId:\"ZBqMxpdWE\",style:{backgroundColor:\"rgb(0, 255, 178)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-16qli7d\",\"data-framer-name\":\"Rectangle 1\",layoutDependency:layoutDependency,layoutId:\"E2jfufM33\",style:{backgroundColor:\"rgb(0, 255, 178)\"}})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(146, 146, 146))\"},children:\"Light Poles\"})}),className:\"framer-nfsmxe\",\"data-framer-name\":\"Light Poles\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ZxODTpLtu\",style:{\"--extracted-r6o4lv\":\"rgb(146, 146, 146)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-kiec75\",\"data-framer-name\":\"Ellipse 10\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:240,intrinsicWidth:240,layoutDependency:layoutDependency,layoutId:\"vxa5iNAGB\",svg:'<svg width=\"240\" height=\"240\" viewBox=\"0 0 240 240\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M31.2598 58.4436C25.8143 54.6662 18.2788 55.9943 15.0638 61.7897C4.01408 81.7087 -1.17925 104.444 0.22497 127.344C1.87496 154.253 12.5379 179.822 30.4949 199.93C48.452 220.038 72.657 233.514 99.2084 238.185C125.76 242.856 153.111 238.45 176.852 225.678C200.594 212.906 219.343 192.511 230.077 167.781C240.812 143.051 242.906 115.427 236.023 89.3615C229.14 63.2959 213.68 40.3074 192.135 24.1016C173.8 10.3096 151.967 2.11402 129.256 0.357321C122.648 -0.153788 117.387 5.40235 117.538 12.0281C117.689 18.6537 123.202 23.8247 129.795 24.5008C147.102 26.2759 163.684 32.7324 177.708 43.2812C194.944 56.2459 207.312 74.6367 212.818 95.4892C218.325 116.342 216.649 138.441 208.062 158.225C199.474 178.009 184.475 194.325 165.482 204.542C146.488 214.76 124.608 218.285 103.367 214.548C82.1256 210.811 62.7616 200.031 48.3959 183.944C34.0303 167.858 25.5 147.402 24.18 125.876C23.106 108.36 26.8564 90.9652 34.9133 75.5447C37.9823 69.6707 36.7054 62.2211 31.2598 58.4436Z\" fill=\"#2E6EFF\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-w3hb1x\",\"data-framer-name\":\"Ellipse 11\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:176,intrinsicWidth:176,layoutDependency:layoutDependency,layoutId:\"DppceZNIa\",svg:'<svg width=\"176\" height=\"176\" viewBox=\"0 0 176 176\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.0851 116.853C11.2328 119.234 8.35608 125.958 11.4758 131.452C17.4791 142.024 25.6301 151.276 35.4484 158.586C48.3371 168.181 63.6071 174.065 79.6023 175.598C95.5975 177.132 111.707 174.256 126.184 167.284C140.661 160.312 152.953 149.509 161.726 136.047C170.499 122.585 175.419 106.977 175.952 90.9177C176.484 74.858 172.61 58.959 164.748 44.9451C156.886 30.9311 145.338 19.3372 131.355 11.4208C120.703 5.39024 108.948 1.66912 96.8511 0.446221C90.565 -0.189262 85.576 5.15733 85.7608 11.4728C85.9456 17.7882 91.2508 22.655 97.5013 23.5769C105.41 24.7433 113.069 27.3609 120.082 31.3314C130.43 37.1896 138.976 45.769 144.794 56.1394C150.611 66.5097 153.478 78.2749 153.084 90.1591C152.69 102.043 149.049 113.593 142.557 123.555C136.065 133.516 126.969 141.511 116.256 146.67C105.543 151.83 93.6221 153.958 81.7857 152.823C69.9493 151.688 58.6495 147.334 49.1119 140.233C42.6475 135.421 37.1599 129.47 32.8993 122.706C29.532 117.36 22.9374 114.472 17.0851 116.853Z\" fill=\"#8AAEFF\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ex2azl\",\"data-framer-name\":\"Ellipse 12\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:112,intrinsicWidth:112,layoutDependency:layoutDependency,layoutId:\"Q9rbjLQeh\",svg:'<svg width=\"112\" height=\"112\" viewBox=\"0 0 112 112\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M11.8719 48.2701C5.77907 47.2029 -0.144778 51.3057 0.0197649 57.4891C0.226841 65.2711 2.05553 72.967 5.43678 80.0699C10.4326 90.5645 18.57 99.2445 28.7207 104.906C38.8714 110.568 50.5323 112.932 62.0865 111.668C73.6406 110.405 84.5154 105.578 93.2028 97.8563C101.89 90.1348 107.96 79.9014 110.57 68.5752C113.18 57.2491 112.201 45.3914 107.769 34.6466C103.337 23.9018 95.6716 14.8022 85.8356 8.60973C79.1784 4.41855 71.7502 1.69963 64.0462 0.581035C57.9248 -0.307782 53.1553 5.09383 53.5005 11.2698C53.8456 17.4457 59.2564 21.9909 65.2053 23.6856C68.2556 24.5545 71.1854 25.856 73.9014 27.5658C79.803 31.2813 84.4022 36.7411 87.0614 43.188C89.7206 49.6349 90.3079 56.7494 88.7419 63.5451C87.1759 70.3408 83.5341 76.4809 78.3217 81.1138C73.1092 85.7467 66.5844 88.643 59.6519 89.401C52.7194 90.1589 45.7228 88.741 39.6324 85.3439C33.542 81.9467 28.6595 76.7387 25.6621 70.4419C24.2826 67.5442 23.3338 64.4819 22.8288 61.3507C21.8438 55.2441 17.9647 49.3374 11.8719 48.2701Z\" fill=\"#00FFB2\"/>\\n</svg>\\n',withExternalLayout:true})]}),isDisplayed7()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-aqb9u2\",layoutDependency:layoutDependency,layoutId:\"JuxFRlrHY\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:9,borderBottomRightRadius:9,borderTopLeftRadius:9,borderTopRightRadius:9},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-q223gz\",\"data-framer-name\":\"Overview\",layoutDependency:layoutDependency,layoutId:\"MruarEW2J\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 4px 8px 0px rgba(0, 0, 0, 0.05000000074505806)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"46px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(20, 20, 20))\"},children:\"Overview\"})}),className:\"framer-1s5wd8w\",\"data-framer-name\":\"Overview\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"OxPzARJly\",style:{\"--extracted-r6o4lv\":\"rgb(20, 20, 20)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({PjeG2bYUe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"46px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(20, 20, 20))\"},children:\"Overview\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cd25j7\",\"data-framer-name\":\"Overview\",layoutDependency:layoutDependency,layoutId:\"ESi_F_8P7\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 4px 8px 0px rgba(0, 0, 0, 0.05000000074505806)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+42+20+0+(0+(Math.max(0,(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||500)-0-42)/1)*1-40-0)/1)*1-0-(Math.max(0,(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||500)-0-42)/1)*1-40-0)/1)*1-0)*1)/2)+((Math.max(0,(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||500)-0-42)/1)*1-40-0)/1)*1-0)*1*.5095693779904309-182.5)+0+9.5+20.5+-51),sizes:\"420px\",src:\"https://framerusercontent.com/images/4t3OIwhSnj8ZZ1y8o5RwfRzbTes.png\",srcSet:\"https://framerusercontent.com/images/4t3OIwhSnj8ZZ1y8o5RwfRzbTes.png?scale-down-to=512 512w,https://framerusercontent.com/images/4t3OIwhSnj8ZZ1y8o5RwfRzbTes.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4t3OIwhSnj8ZZ1y8o5RwfRzbTes.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/4t3OIwhSnj8ZZ1y8o5RwfRzbTes.png 4096w\"},className:\"framer-3kzkbz\",\"data-framer-name\":\"Screenshot 2023-12-14 at 6.46 1\",layoutDependency:layoutDependency,layoutId:\"NnRC8FH0Y\",...addPropertyOverrides({PjeG2bYUe:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+42+20+0+(0+(Math.max(0,(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||500)-0-42)/1)*1-40-0)/1)*1-0-(Math.max(0,(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||500)-0-42)/1)*1-40-0)/1)*1-0)*1)/2)+((Math.max(0,(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||500)-0-42)/1)*1-40-0)/1)*1-0)*1*.5095693779904309-182.5)+0+7+19.500000000000043+-51),positionX:\"center\",positionY:\"center\",sizes:\"420px\",src:\"https://framerusercontent.com/images/4t3OIwhSnj8ZZ1y8o5RwfRzbTes.png\",srcSet:\"https://framerusercontent.com/images/4t3OIwhSnj8ZZ1y8o5RwfRzbTes.png?scale-down-to=512 512w,https://framerusercontent.com/images/4t3OIwhSnj8ZZ1y8o5RwfRzbTes.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4t3OIwhSnj8ZZ1y8o5RwfRzbTes.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/4t3OIwhSnj8ZZ1y8o5RwfRzbTes.png 4096w\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-g3051x\",\"data-framer-name\":\"Radial\",layoutDependency:layoutDependency,layoutId:\"s2nqI34nC\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"0px 4px 8px 0px rgba(0, 0, 0, 0.05000000074505806)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter-ExtraBold\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"46px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(138, 173, 255))\"},children:\"0\"})}),className:\"framer-14px9er\",\"data-framer-name\":\"0\",fonts:[\"Inter-ExtraBold\"],layoutDependency:layoutDependency,layoutId:\"jXrqj2cKw\",style:{\"--extracted-r6o4lv\":\"rgb(138, 173, 255)\",\"--framer-paragraph-spacing\":\"0px\"},transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({PjeG2bYUe:{transformTemplate:undefined}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTUwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"40px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(20, 20, 20))\"},children:\"Abnormalities Detected\"})}),className:\"framer-516mus\",\"data-framer-name\":\"Abnormalities detected\",fonts:[\"GF;Roboto-500\"],layoutDependency:layoutDependency,layoutId:\"zz1MNLIAm\",style:{\"--extracted-r6o4lv\":\"rgb(20, 20, 20)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),isDisplayed4()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vvr32p\",\"data-framer-name\":\"Vehicle\",layoutDependency:layoutDependency,layoutId:\"ht3uHKgtZ\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"0px 4px 8px 0px rgba(0, 0, 0, 0.05000000074505806)\"},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"195px\",src:\"https://framerusercontent.com/images/JWiJ59rcGisJhm3UH151OGdTTA0.png\",srcSet:\"https://framerusercontent.com/images/JWiJ59rcGisJhm3UH151OGdTTA0.png?scale-down-to=512 512w,https://framerusercontent.com/images/JWiJ59rcGisJhm3UH151OGdTTA0.png 780w\"},className:\"framer-1x52vsu\",\"data-framer-name\":\"image 76-2 1\",layoutDependency:layoutDependency,layoutId:\"jdPtekZtV\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},transformTemplate:transformTemplate2,...addPropertyOverrides({SMm5PfX7s:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+42+18+338-198),positionX:\"center\",positionY:\"center\",sizes:\"195px\",src:\"https://framerusercontent.com/images/JWiJ59rcGisJhm3UH151OGdTTA0.png\",srcSet:\"https://framerusercontent.com/images/JWiJ59rcGisJhm3UH151OGdTTA0.png?scale-down-to=512 512w,https://framerusercontent.com/images/JWiJ59rcGisJhm3UH151OGdTTA0.png 780w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(20, 20, 20))\"},children:\"Tree ID:           K2411\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(20, 20, 20))\"},children:\" \"})]}),className:\"framer-u5vqe6\",\"data-framer-name\":\"Tree ID: K2411\",fonts:[\"GF;Roboto-regular\"],layoutDependency:layoutDependency,layoutId:\"Hxmu5R1XV\",style:{\"--extracted-2gxw0f\":\"rgb(20, 20, 20)\",\"--extracted-r6o4lv\":\"rgb(20, 20, 20)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"32px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\"',\"--framer-font-size\":\"24px\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(20, 20, 20, 1))\"},children:\"Score:\"})})}),className:\"framer-1dho4u1\",\"data-framer-name\":\"Score:\",fonts:[\"GF;Roboto-regular\"],layoutDependency:layoutDependency,layoutId:\"pPJml2N7Y\",style:{\"--extracted-1w3ko1f\":\"rgba(20, 20, 20, 1)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"46px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXI=\",\"--framer-font-family\":'\"Inter\"',\"--framer-font-size\":\"32px\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(255, 192, 105, 1))\"},children:\"3.4\"})})}),className:\"framer-1wi0eug\",\"data-framer-name\":\"3.4\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Neg80A41R\",style:{\"--extracted-1w3ko1f\":\"rgba(255, 192, 105, 1)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTUwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(20, 20, 20))\"},children:\"Critical Assets\"})}),className:\"framer-11csn97\",\"data-framer-name\":\"Critical Assets\",fonts:[\"GF;Roboto-500\"],layoutDependency:layoutDependency,layoutId:\"Uop3sTtfs\",style:{\"--extracted-r6o4lv\":\"rgb(20, 20, 20)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed4()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ydkz6b\",\"data-framer-name\":\"Frame 34\",layoutDependency:layoutDependency,layoutId:\"Xva04qCwI\",style:{backgroundColor:\"rgb(46, 110, 255)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Download Report\"})}),className:\"framer-bq8ni0\",\"data-framer-name\":\"Download Report\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"wwqAWIeex\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-klo38m\",\"data-framer-name\":\"Download\",layoutDependency:layoutDependency,layoutId:\"SF9rWUEvq\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-bm6yqp\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"I326:42;806:8636\",svg:'<svg width=\"20\" height=\"16\" viewBox=\"0 0 20 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M9.84475 11.3217C9.86313 11.3431 9.88661 11.3603 9.91341 11.3722C9.94021 11.3841 9.96963 11.3902 9.99944 11.3902C10.0293 11.3902 10.0587 11.3841 10.0855 11.3722C10.1123 11.3603 10.1358 11.3431 10.1541 11.3217L12.9041 8.15876C13.0048 8.04269 12.914 7.87082 12.7494 7.87082H10.93V0.317243C10.93 0.219029 10.8416 0.138672 10.7336 0.138672H9.26038C9.15234 0.138672 9.06395 0.219029 9.06395 0.317243V7.86858H7.24944C7.08493 7.86858 6.99408 8.04046 7.09475 8.15653L9.84475 11.3217ZM18.986 10.5405H17.5128C17.4048 10.5405 17.3164 10.6208 17.3164 10.719V14.1565H2.68248V10.719C2.68248 10.6208 2.59408 10.5405 2.48605 10.5405H1.01283C0.904799 10.5405 0.816406 10.6208 0.816406 10.719V15.1387C0.816406 15.5338 1.16752 15.853 1.60212 15.853H18.3968C18.8314 15.853 19.1825 15.5338 19.1825 15.1387V10.719C19.1825 10.6208 19.0941 10.5405 18.986 10.5405Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-y0yzo.framer-13iwbld, .framer-y0yzo .framer-13iwbld { display: block; }\",\".framer-y0yzo.framer-166gj7c { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 500px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 672px; will-change: var(--framer-will-change-override, transform); }\",\".framer-y0yzo .framer-m9fia6 { flex: none; height: 414px; overflow: visible; position: relative; width: 608px; }\",\".framer-y0yzo .framer-z3g1ll { aspect-ratio: 1.7851239669421488 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 242px); left: 12px; overflow: hidden; position: absolute; top: 0px; width: 432px; will-change: var(--framer-will-change-override, transform); }\",\".framer-y0yzo .framer-1nnsx0m { flex: none; height: auto; left: 23px; position: absolute; top: 18px; white-space: pre; width: auto; }\",\".framer-y0yzo .framer-1bmp0ku { bottom: 56px; flex: none; height: auto; left: 23px; position: absolute; white-space: pre-wrap; width: 272px; word-break: break-word; word-wrap: break-word; }\",\".framer-y0yzo .framer-3h9ic2 { flex: none; height: auto; position: absolute; right: 43px; top: 83px; white-space: pre; width: auto; }\",\".framer-y0yzo .framer-16tcyk9 { bottom: 58px; flex: none; height: auto; position: absolute; right: 27px; white-space: pre; width: auto; }\",\".framer-y0yzo .framer-1cnv066 { bottom: 18px; flex: none; height: auto; left: 23px; position: absolute; white-space: pre; width: auto; }\",\".framer-y0yzo .framer-1l19asz { bottom: -11px; flex: none; height: 178px; left: 12px; overflow: hidden; position: absolute; width: 418px; will-change: var(--framer-will-change-override, transform); }\",\".framer-y0yzo .framer-6cmhzd { flex: none; height: auto; left: 18px; position: absolute; top: 14px; white-space: pre; width: auto; }\",\".framer-y0yzo .framer-8lf21w { flex: none; height: auto; left: 18px; position: absolute; top: 54%; white-space: pre-wrap; width: 272px; word-break: break-word; word-wrap: break-word; }\",\".framer-y0yzo .framer-qigqbe { flex: none; height: auto; position: absolute; right: 38px; top: 52px; white-space: pre; width: auto; }\",\".framer-y0yzo .framer-1sais0x { bottom: 43px; flex: none; height: auto; position: absolute; right: 38px; white-space: pre; width: auto; }\",\".framer-y0yzo .framer-lq7f8z { bottom: 18px; flex: none; height: auto; left: 18px; position: absolute; white-space: pre; width: auto; }\",\".framer-y0yzo .framer-mso82e { bottom: 71px; flex: none; height: 88px; overflow: hidden; position: absolute; right: 6px; width: 184px; will-change: var(--framer-will-change-override, transform); }\",\".framer-y0yzo .framer-1p7fswp, .framer-y0yzo .framer-qshxga { flex: none; height: 58px; left: 13px; overflow: visible; position: absolute; top: 16px; width: 154px; }\",\".framer-y0yzo .framer-1xvakt7 { flex: none; height: auto; left: 1px; position: absolute; top: 24px; white-space: pre; width: auto; }\",\".framer-y0yzo .framer-oblsos { flex: none; height: auto; left: 79px; position: absolute; top: 41px; white-space: pre; width: auto; }\",\".framer-y0yzo .framer-8dnpj0, .framer-y0yzo .framer-uh6hfv { flex: none; height: 19px; left: 0px; overflow: visible; position: absolute; top: 0px; width: 58px; }\",\".framer-y0yzo .framer-n8qqn2, .framer-y0yzo .framer-afe2ho { flex: none; height: auto; left: 24px; position: absolute; top: 0px; white-space: pre; width: auto; }\",\".framer-y0yzo .framer-1g0952m { flex: none; height: 17px; left: 1px; overflow: hidden; position: absolute; top: -1px; width: 17px; }\",\".framer-y0yzo .framer-1soxw93 { bottom: 1px; flex: none; left: 0px; position: absolute; right: 0px; top: 1px; }\",\".framer-y0yzo .framer-17rhoqw { flex: none; height: 88px; overflow: hidden; position: absolute; right: 6px; top: 18px; width: 184px; will-change: var(--framer-will-change-override, transform); }\",\".framer-y0yzo .framer-r6qfmm { flex: none; height: auto; left: 0px; position: absolute; top: 24px; white-space: pre; width: auto; }\",\".framer-y0yzo .framer-1d84s5s { flex: none; height: auto; left: 62px; position: absolute; top: 41px; white-space: pre; width: auto; }\",\".framer-y0yzo .framer-1qp4vwo { flex: none; height: 17px; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 17px; }\",\".framer-y0yzo .framer-1x5ofp { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-y0yzo .framer-6ethek { flex: none; height: 415px; overflow: visible; position: relative; width: 645px; }\",\".framer-y0yzo .framer-1lzgr0z { aspect-ratio: 0.8674698795180723 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 415px); left: 0px; overflow: hidden; position: absolute; top: 0px; width: 360px; will-change: var(--framer-will-change-override, transform); }\",\".framer-y0yzo .framer-1jxzbl9, .framer-y0yzo .framer-1izfrq6 { flex: none; height: 15px; left: 41px; overflow: visible; position: absolute; top: 364px; width: 52px; }\",\".framer-y0yzo .framer-12nsljk, .framer-y0yzo .framer-1tpdyfw, .framer-y0yzo .framer-1onf0ak, .framer-y0yzo .framer-az8fj7, .framer-y0yzo .framer-lxgs83, .framer-y0yzo .framer-1qj66pn { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 14px); left: 0px; overflow: hidden; position: absolute; top: 1px; width: 14px; will-change: var(--framer-will-change-override, transform); }\",\".framer-y0yzo .framer-1j21m0b, .framer-y0yzo .framer-1u2xl36 { flex: none; height: 7px; left: 0px; position: absolute; top: 0px; width: 15px; }\",\".framer-y0yzo .framer-1ky4i9t, .framer-y0yzo .framer-1f9rnu1, .framer-y0yzo .framer-bcvq02, .framer-y0yzo .framer-1aw2wmz, .framer-y0yzo .framer-1boi2qn, .framer-y0yzo .framer-nfsmxe { flex: none; height: auto; left: 20px; position: absolute; top: 0px; white-space: pre; width: auto; }\",\".framer-y0yzo .framer-fjy0c0, .framer-y0yzo .framer-46badr { flex: none; height: auto; left: 18px; position: absolute; top: 16px; white-space: pre; width: auto; }\",\".framer-y0yzo .framer-1aopuum, .framer-y0yzo .framer-1t254h8 { flex: none; height: 15px; left: 138px; overflow: visible; position: absolute; top: 364px; width: 68px; }\",\".framer-y0yzo .framer-c10kw3, .framer-y0yzo .framer-1lttt0, .framer-y0yzo .framer-18btw5y, .framer-y0yzo .framer-16qli7d { flex: none; height: 7px; left: 0px; position: absolute; top: 0px; width: 16px; }\",\".framer-y0yzo .framer-15p9at7, .framer-y0yzo .framer-cusiyb { flex: none; height: 15px; left: 235px; overflow: visible; position: absolute; top: 364px; width: 83px; }\",\".framer-y0yzo .framer-qm6ls3, .framer-y0yzo .framer-kiec75 { flex: none; height: 240px; left: 60px; position: absolute; top: 83px; width: 240px; }\",\".framer-y0yzo .framer-whko16, .framer-y0yzo .framer-w3hb1x { flex: none; height: 176px; left: 92px; position: absolute; top: 114px; width: 176px; }\",\".framer-y0yzo .framer-exfzos, .framer-y0yzo .framer-1ex2azl { flex: none; height: 112px; left: 124px; position: absolute; top: 146px; width: 112px; }\",\".framer-y0yzo .framer-d9cb0j { aspect-ratio: 1.5721649484536082 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 175px); overflow: hidden; position: absolute; right: 4px; top: 29px; width: 275px; will-change: var(--framer-will-change-override, transform); }\",\".framer-y0yzo .framer-f7bqj9 { flex: none; height: auto; left: 50%; position: absolute; top: 24px; white-space: pre; width: auto; }\",\".framer-y0yzo .framer-7ri34u { bottom: 11px; flex: none; height: auto; left: 50%; position: absolute; white-space: pre-wrap; width: 272px; word-break: break-word; word-wrap: break-word; }\",\".framer-y0yzo .framer-ukr3a1 { aspect-ratio: 1.5721649484536082 / 1; bottom: 23px; flex: none; height: var(--framer-aspect-ratio-supported, 175px); overflow: hidden; position: absolute; right: 4px; width: 275px; will-change: var(--framer-will-change-override, transform); }\",\".framer-y0yzo .framer-1mdzib3 { flex: none; height: auto; left: 50%; position: absolute; top: 13px; white-space: pre; width: auto; }\",\".framer-y0yzo .framer-s7gxcc { bottom: 15px; flex: none; height: auto; left: -9px; position: absolute; right: -10px; white-space: pre-wrap; word-break: break-word; word-wrap: break-word; }\",\".framer-y0yzo .framer-137bkfy { 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: visible; padding: 16px; position: relative; width: 100%; }\",\".framer-y0yzo .framer-19xsd3r { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 42px; }\",\".framer-y0yzo .framer-101z0aq, .framer-y0yzo .framer-kbaf0t, .framer-y0yzo .framer-1sr523a { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 10px); overflow: visible; position: relative; width: 10px; }\",\".framer-y0yzo .framer-qp5a5o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 276px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 352px; }\",\".framer-y0yzo .framer-11hj8su { flex: none; height: 233px; overflow: hidden; position: relative; width: 150px; will-change: var(--framer-will-change-override, transform); }\",\".framer-y0yzo .framer-1uwyksa { flex: none; height: auto; left: 7px; position: absolute; top: 7px; white-space: pre; width: auto; }\",\".framer-y0yzo .framer-1rd6evs { bottom: 49px; flex: none; height: 12px; left: calc(48.7309644670051% - 56.27586206896551px / 2); overflow: visible; position: absolute; width: 56px; }\",\".framer-y0yzo .framer-14gzkna { flex: none; height: 96px; left: calc(47.33333333333336% - 96px / 2); position: absolute; top: 54px; width: 96px; }\",\".framer-y0yzo .framer-93dqso { flex: none; height: 70px; left: calc(47.33333333333336% - 70.4px / 2); position: absolute; top: 66px; width: 70px; }\",\".framer-y0yzo .framer-pltzup { flex: none; height: 45px; left: calc(46.66666666666669% - 44.80000000000001px / 2); position: absolute; top: 79px; width: 45px; }\",\".framer-y0yzo .framer-1v1cqcv { align-content: center; align-items: center; bottom: 19px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: 47px; justify-content: center; left: calc(50.00000000000002% - 147px / 2); overflow: hidden; padding: 0px; position: absolute; width: 147px; }\",\".framer-y0yzo .framer-qjyzpb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: 10px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 32px; }\",\".framer-y0yzo .framer-2hklac, .framer-y0yzo .framer-ezwzgw, .framer-y0yzo .framer-jmitr4 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 9px); overflow: hidden; position: relative; width: 9px; will-change: var(--framer-will-change-override, transform); }\",\".framer-y0yzo .framer-6j8smv, .framer-y0yzo .framer-v73v5b, .framer-y0yzo .framer-4uc8my, .framer-y0yzo .framer-1q5zvtg, .framer-y0yzo .framer-wh9vbs, .framer-y0yzo .framer-qscugs, .framer-y0yzo .framer-16ytfkj, .framer-y0yzo .framer-1s5wd8w { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-y0yzo .framer-gzvcwc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: 10px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 45px; }\",\".framer-y0yzo .framer-1u2cozw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: 10px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 54px; }\",\".framer-y0yzo .framer-187tl54 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 238px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 164px; }\",\".framer-y0yzo .framer-1ec865f { flex: none; height: 119px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-y0yzo .framer-184vhl0 { align-content: center; align-items: center; bottom: 7px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 73px; justify-content: center; left: calc(50.609756097561% - 152px / 2); overflow: hidden; padding: 0px; position: absolute; width: 152px; will-change: var(--framer-will-change-override, transform); }\",\".framer-y0yzo .framer-5qqq8v { aspect-ratio: 1.6153846153846154 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 141px); position: relative; width: 227px; }\",\".framer-y0yzo .framer-zjzsgd { aspect-ratio: 1.5721649484536082 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 127px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-y0yzo .framer-mdxl71 { flex: none; height: auto; left: 49%; position: absolute; top: 19px; white-space: pre; width: auto; }\",\".framer-y0yzo .framer-1k1l76q { bottom: 15px; cursor: pointer; flex: none; height: auto; left: 50%; position: absolute; white-space: pre-wrap; width: 141px; word-break: break-word; word-wrap: break-word; }\",\".framer-y0yzo .framer-1tmvted { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 1px; justify-content: flex-start; overflow: visible; padding: 20px; position: relative; width: 100%; }\",\".framer-y0yzo .framer-1jaom75 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 188px; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 7px; position: relative; width: 632px; }\",\".framer-y0yzo .framer-1kglekr, .framer-y0yzo .framer-jfllva, .framer-y0yzo .framer-uwviph, .framer-y0yzo .framer-18ki5xk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 200px; justify-content: flex-end; overflow: hidden; padding: 51px 20px 51px 20px; position: relative; width: 300px; will-change: var(--framer-will-change-override, transform); }\",\".framer-y0yzo .framer-13hnssu, .framer-y0yzo .framer-1kxc92q, .framer-y0yzo .framer-1cnfoil, .framer-y0yzo .framer-lrh5d9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 159px; justify-content: flex-start; overflow: hidden; padding: 0px 10px 10px 0px; position: relative; width: 127px; }\",\".framer-y0yzo .framer-xs13hv, .framer-y0yzo .framer-6dvzd5, .framer-y0yzo .framer-15f8l7s, .framer-y0yzo .framer-3fev5x, .framer-y0yzo .framer-1cd25j7 { aspect-ratio: 0.8176100628930818 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 159px); overflow: hidden; position: relative; width: 130px; will-change: var(--framer-will-change-override, transform); }\",\".framer-y0yzo .framer-37ppym { aspect-ratio: 0.9251497856476022 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 159px); left: -9px; position: absolute; top: 0px; width: 147px; }\",\".framer-y0yzo .framer-4mph59 { aspect-ratio: 0.9339853668212891 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 200px); left: -9px; position: absolute; top: -33px; width: 187px; }\",\".framer-y0yzo .framer-vstnxj { flex: none; height: 361px; overflow: hidden; position: relative; width: 361px; will-change: var(--framer-will-change-override, transform); }\",\".framer-y0yzo .framer-2p8gxy { flex: none; height: auto; left: 47%; position: absolute; top: 16px; white-space: pre-wrap; width: 315px; word-break: break-word; word-wrap: break-word; }\",\".framer-y0yzo .framer-32kh5a { bottom: 59px; flex: none; height: 184px; left: 14px; overflow: visible; position: absolute; width: 53px; }\",\".framer-y0yzo .framer-bv9d3w { flex: none; height: auto; left: 0px; position: absolute; top: 0px; white-space: pre; width: auto; }\",\".framer-y0yzo .framer-1fgi3ns { flex: none; height: auto; left: 2px; position: absolute; top: 49px; white-space: pre; width: auto; }\",\".framer-y0yzo .framer-1nvst8u { flex: none; height: auto; left: 0px; position: absolute; top: 97px; white-space: pre; width: auto; }\",\".framer-y0yzo .framer-kaxlwf { flex: none; height: auto; left: 0px; position: absolute; top: 145px; white-space: pre; width: auto; }\",\".framer-y0yzo .framer-1m3w6go { flex: none; height: auto; left: 0px; position: absolute; top: 193px; white-space: pre; width: auto; }\",\".framer-y0yzo .framer-tx47aw { bottom: 14px; flex: none; height: 256px; position: absolute; right: 16px; width: 282px; }\",\".framer-y0yzo .framer-1boylpt { flex: none; height: auto; left: 67px; position: absolute; top: 67px; white-space: pre; width: auto; }\",\".framer-y0yzo .framer-1qvaepn { flex: none; height: auto; left: 116px; position: absolute; top: 67px; white-space: pre; width: auto; }\",\".framer-y0yzo .framer-1oman0e { flex: none; height: auto; left: 49%; position: absolute; top: 67px; white-space: pre; width: auto; }\",\".framer-y0yzo .framer-1tjp032 { flex: none; height: auto; position: absolute; right: 127px; top: 67px; white-space: pre; width: auto; }\",\".framer-y0yzo .framer-w000we { flex: none; height: auto; position: absolute; right: 81px; top: 67px; white-space: pre; width: auto; }\",\".framer-y0yzo .framer-8aoa53 { flex: none; height: auto; position: absolute; right: 27px; top: 67px; white-space: pre; width: auto; }\",\".framer-y0yzo .framer-1pqtrkb { flex: none; height: 34px; left: 84px; overflow: hidden; position: absolute; top: 108px; width: 64px; will-change: var(--framer-will-change-override, transform); }\",\".framer-y0yzo .framer-e18f1a { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 15px); left: 26px; position: absolute; top: 12px; width: 15px; }\",\".framer-y0yzo .framer-clqmdn { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 15px); left: 36px; position: absolute; top: 12px; width: 15px; }\",\".framer-y0yzo .framer-1o14d22 { flex: none; height: 35px; overflow: hidden; position: absolute; right: 42px; top: calc(45.983379501385066% - 35px / 2); width: 137px; will-change: var(--framer-will-change-override, transform); }\",\".framer-y0yzo .framer-zfpl8n, .framer-y0yzo .framer-k06nda, .framer-y0yzo .framer-19beocr, .framer-y0yzo .framer-pruxi7, .framer-y0yzo .framer-1hwfbsa { flex: none; height: auto; left: 12px; position: absolute; top: 12px; white-space: pre; width: auto; }\",\".framer-y0yzo .framer-17f4twr { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 15px); left: 88px; position: absolute; top: 12px; width: 15px; }\",\".framer-y0yzo .framer-1xpu683 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 15px); left: 98px; position: absolute; top: 12px; width: 15px; }\",\".framer-y0yzo .framer-e80ssq { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 15px); left: 108px; position: absolute; top: 12px; width: 15px; }\",\".framer-y0yzo .framer-t3zjqp { bottom: 91px; flex: none; height: 34px; left: 85px; overflow: hidden; position: absolute; width: 87px; will-change: var(--framer-will-change-override, transform); }\",\".framer-y0yzo .framer-1lfk53j { flex: none; height: 34px; overflow: hidden; position: absolute; right: 16px; top: 108px; width: 66px; will-change: var(--framer-will-change-override, transform); }\",\".framer-y0yzo .framer-ddancv { bottom: 49px; flex: none; height: 34px; left: calc(48.47645429362883% - 87px / 2); overflow: hidden; position: absolute; width: 87px; will-change: var(--framer-will-change-override, transform); }\",\".framer-y0yzo .framer-1s5h4tg { bottom: 134px; flex: none; height: 34px; left: calc(48.47645429362883% - 87px / 2); overflow: hidden; position: absolute; width: 87px; will-change: var(--framer-will-change-override, transform); }\",\".framer-y0yzo .framer-q5mft7 { flex: none; height: 83%; overflow: visible; position: relative; width: 93%; }\",\".framer-y0yzo .framer-1gf6swr { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-y0yzo .framer-1c63b71 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 200px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 632px; }\",\".framer-y0yzo .framer-1ucrcvb, .framer-y0yzo .framer-3kzkbz { aspect-ratio: 1.6153846153846154 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 260px); left: -30px; position: absolute; top: -51px; width: 420px; }\",\".framer-y0yzo .framer-j9pewh { aspect-ratio: 1.0493827056884766 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 200px); left: -5px; position: absolute; top: 0px; width: 210px; }\",\".framer-y0yzo .framer-co8b27 { flex: 1 0 0px; height: 100%; overflow: visible; position: relative; width: 1px; }\",\".framer-y0yzo .framer-1g90tfo { aspect-ratio: 0.8674698795180723 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 395px); left: -3px; overflow: hidden; position: absolute; top: 49%; width: 343px; will-change: var(--framer-will-change-override, transform); }\",\".framer-y0yzo .framer-aqb9u2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 365px; justify-content: center; overflow: hidden; padding: 0px; position: absolute; right: 11px; top: calc(50.95693779904309% - 365px / 2); width: 279px; will-change: var(--framer-will-change-override, transform); }\",\".framer-y0yzo .framer-q223gz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 9px; height: 200px; justify-content: flex-end; overflow: hidden; padding: 51px 20px 51px 20px; position: relative; width: 279px; will-change: var(--framer-will-change-override, transform); }\",\".framer-y0yzo .framer-g3051x { flex: none; height: 136px; overflow: hidden; position: relative; width: 264px; will-change: var(--framer-will-change-override, transform); }\",\".framer-y0yzo .framer-14px9er { flex: none; height: auto; left: 50%; position: absolute; top: 26px; white-space: pre; width: auto; }\",\".framer-y0yzo .framer-516mus { bottom: 18px; flex: none; height: auto; left: -4px; position: absolute; right: 0px; white-space: pre-wrap; word-break: break-word; word-wrap: break-word; }\",\".framer-y0yzo .framer-1vvr32p { flex: none; height: 338px; overflow: hidden; position: relative; width: 249px; will-change: var(--framer-will-change-override, transform); }\",\".framer-y0yzo .framer-1x52vsu { aspect-ratio: 1.0483870967741935 / 1; bottom: 12px; flex: none; height: var(--framer-aspect-ratio-supported, 186px); left: 50%; position: absolute; width: 195px; }\",\".framer-y0yzo .framer-u5vqe6 { flex: none; height: 69px; position: absolute; right: 19px; top: 59px; white-space: pre-wrap; width: 206px; word-break: break-word; word-wrap: break-word; }\",\".framer-y0yzo .framer-1dho4u1 { flex: none; height: 28px; left: 23px; position: absolute; top: 94px; white-space: pre-wrap; width: 90px; word-break: break-word; word-wrap: break-word; }\",\".framer-y0yzo .framer-1wi0eug { flex: none; height: auto; position: absolute; right: 27px; top: 82px; white-space: pre; width: auto; }\",\".framer-y0yzo .framer-11csn97 { flex: none; height: auto; position: absolute; right: 19px; top: 19px; white-space: pre-wrap; width: 206px; word-break: break-word; word-wrap: break-word; }\",\".framer-y0yzo .framer-ydkz6b { flex: none; height: 56px; overflow: hidden; position: relative; width: 249px; will-change: var(--framer-will-change-override, transform); }\",\".framer-y0yzo .framer-bq8ni0 { flex: none; height: auto; position: absolute; right: 29px; top: 48%; white-space: pre; width: auto; }\",\".framer-y0yzo .framer-klo38m { flex: none; height: 20px; left: 27px; overflow: hidden; position: absolute; top: calc(50.00000000000002% - 20px / 2); width: 22px; }\",\".framer-y0yzo .framer-bm6yqp { flex: none; height: 16px; left: calc(50.00000000000002% - 20px / 2); position: absolute; top: 1px; width: 20px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-y0yzo.framer-166gj7c, .framer-y0yzo .framer-137bkfy, .framer-y0yzo .framer-19xsd3r, .framer-y0yzo .framer-qp5a5o, .framer-y0yzo .framer-1v1cqcv, .framer-y0yzo .framer-qjyzpb, .framer-y0yzo .framer-gzvcwc, .framer-y0yzo .framer-1u2cozw, .framer-y0yzo .framer-187tl54, .framer-y0yzo .framer-184vhl0, .framer-y0yzo .framer-1tmvted, .framer-y0yzo .framer-1jaom75, .framer-y0yzo .framer-1kglekr, .framer-y0yzo .framer-13hnssu, .framer-y0yzo .framer-jfllva, .framer-y0yzo .framer-1kxc92q, .framer-y0yzo .framer-1gf6swr, .framer-y0yzo .framer-1c63b71, .framer-y0yzo .framer-uwviph, .framer-y0yzo .framer-1cnfoil, .framer-y0yzo .framer-18ki5xk, .framer-y0yzo .framer-lrh5d9, .framer-y0yzo .framer-aqb9u2, .framer-y0yzo .framer-q223gz { gap: 0px; } .framer-y0yzo.framer-166gj7c > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-y0yzo.framer-166gj7c > :first-child, .framer-y0yzo .framer-1v1cqcv > :first-child, .framer-y0yzo .framer-187tl54 > :first-child, .framer-y0yzo .framer-184vhl0 > :first-child, .framer-y0yzo .framer-1tmvted > :first-child, .framer-y0yzo .framer-13hnssu > :first-child, .framer-y0yzo .framer-1kxc92q > :first-child, .framer-y0yzo .framer-1cnfoil > :first-child, .framer-y0yzo .framer-lrh5d9 > :first-child, .framer-y0yzo .framer-aqb9u2 > :first-child { margin-top: 0px; } .framer-y0yzo.framer-166gj7c > :last-child, .framer-y0yzo .framer-1v1cqcv > :last-child, .framer-y0yzo .framer-187tl54 > :last-child, .framer-y0yzo .framer-184vhl0 > :last-child, .framer-y0yzo .framer-1tmvted > :last-child, .framer-y0yzo .framer-13hnssu > :last-child, .framer-y0yzo .framer-1kxc92q > :last-child, .framer-y0yzo .framer-1cnfoil > :last-child, .framer-y0yzo .framer-lrh5d9 > :last-child, .framer-y0yzo .framer-aqb9u2 > :last-child { margin-bottom: 0px; } .framer-y0yzo .framer-137bkfy > *, .framer-y0yzo .framer-qp5a5o > *, .framer-y0yzo .framer-1kglekr > *, .framer-y0yzo .framer-jfllva > *, .framer-y0yzo .framer-1gf6swr > *, .framer-y0yzo .framer-uwviph > *, .framer-y0yzo .framer-18ki5xk > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-y0yzo .framer-137bkfy > :first-child, .framer-y0yzo .framer-19xsd3r > :first-child, .framer-y0yzo .framer-qp5a5o > :first-child, .framer-y0yzo .framer-qjyzpb > :first-child, .framer-y0yzo .framer-gzvcwc > :first-child, .framer-y0yzo .framer-1u2cozw > :first-child, .framer-y0yzo .framer-1jaom75 > :first-child, .framer-y0yzo .framer-1kglekr > :first-child, .framer-y0yzo .framer-jfllva > :first-child, .framer-y0yzo .framer-1gf6swr > :first-child, .framer-y0yzo .framer-1c63b71 > :first-child, .framer-y0yzo .framer-uwviph > :first-child, .framer-y0yzo .framer-18ki5xk > :first-child, .framer-y0yzo .framer-q223gz > :first-child { margin-left: 0px; } .framer-y0yzo .framer-137bkfy > :last-child, .framer-y0yzo .framer-19xsd3r > :last-child, .framer-y0yzo .framer-qp5a5o > :last-child, .framer-y0yzo .framer-qjyzpb > :last-child, .framer-y0yzo .framer-gzvcwc > :last-child, .framer-y0yzo .framer-1u2cozw > :last-child, .framer-y0yzo .framer-1jaom75 > :last-child, .framer-y0yzo .framer-1kglekr > :last-child, .framer-y0yzo .framer-jfllva > :last-child, .framer-y0yzo .framer-1gf6swr > :last-child, .framer-y0yzo .framer-1c63b71 > :last-child, .framer-y0yzo .framer-uwviph > :last-child, .framer-y0yzo .framer-18ki5xk > :last-child, .framer-y0yzo .framer-q223gz > :last-child { margin-right: 0px; } .framer-y0yzo .framer-19xsd3r > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-y0yzo .framer-1v1cqcv > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-y0yzo .framer-qjyzpb > *, .framer-y0yzo .framer-gzvcwc > *, .framer-y0yzo .framer-1u2cozw > * { margin: 0px; margin-left: calc(2px / 2); margin-right: calc(2px / 2); } .framer-y0yzo .framer-187tl54 > *, .framer-y0yzo .framer-184vhl0 > *, .framer-y0yzo .framer-13hnssu > *, .framer-y0yzo .framer-1kxc92q > *, .framer-y0yzo .framer-1cnfoil > *, .framer-y0yzo .framer-lrh5d9 > *, .framer-y0yzo .framer-aqb9u2 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-y0yzo .framer-1tmvted > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-y0yzo .framer-1jaom75 > *, .framer-y0yzo .framer-1c63b71 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-y0yzo .framer-q223gz > * { margin: 0px; margin-left: calc(9px / 2); margin-right: calc(9px / 2); } }\",\".framer-y0yzo.framer-v-7nz401 .framer-6ethek, .framer-y0yzo.framer-v-10m1qat .framer-q5mft7 { order: 2; }\",\".framer-y0yzo.framer-v-7nz401 .framer-d9cb0j { height: var(--framer-aspect-ratio-supported, 174px); }\",\".framer-y0yzo.framer-v-7nz401 .framer-137bkfy, .framer-y0yzo.framer-v-10m1qat .framer-m9fia6 { order: 1; }\",\".framer-y0yzo.framer-v-7nz401 .framer-1tmvted, .framer-y0yzo.framer-v-10m1qat .framer-1tmvted { order: 4; }\",\".framer-y0yzo.framer-v-10m1qat .framer-137bkfy { order: 0; }\",\".framer-y0yzo.framer-v-1xly8hj .framer-1tmvted { display: block; padding: unset; }\",\".framer-y0yzo.framer-v-1xly8hj .framer-vstnxj { left: 20px; position: absolute; top: 20px; }\",\".framer-y0yzo.framer-v-1xly8hj .framer-1vvr32p { position: absolute; right: 25px; top: 18px; }\",\".framer-y0yzo.framer-v-1xly8hj .framer-ydkz6b { bottom: 39px; position: absolute; right: 25px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-y0yzo.framer-v-1xly8hj .framer-1tmvted { gap: 0px; } .framer-y0yzo.framer-v-1xly8hj .framer-1tmvted > *, .framer-y0yzo.framer-v-1xly8hj .framer-1tmvted > :first-child, .framer-y0yzo.framer-v-1xly8hj .framer-1tmvted > :last-child { margin: 0px; } }\",\".framer-y0yzo.framer-v-1ta3cq2 .framer-37ppym { height: var(--framer-aspect-ratio-supported, 158px); }\",\".framer-y0yzo.framer-v-1ta3cq2 .framer-4mph59, .framer-y0yzo.framer-v-1ta3cq2 .framer-j9pewh { height: var(--framer-aspect-ratio-supported, 199px); }\",\".framer-y0yzo.framer-v-uw9xs4 .framer-q223gz { display: block; padding: unset; width: 268px; }\",\".framer-y0yzo.framer-v-uw9xs4 .framer-1s5wd8w { left: 10px; position: absolute; top: 19px; }\",\".framer-y0yzo.framer-v-uw9xs4 .framer-1cd25j7 { aspect-ratio: unset; height: 159px; position: absolute; right: 20px; top: calc(49.50000000000002% - 159px / 2); }\",\".framer-y0yzo.framer-v-uw9xs4 .framer-3kzkbz { aspect-ratio: unset; height: 311px; left: 0px; }\",\".framer-y0yzo.framer-v-uw9xs4 .framer-g3051x { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 141px; justify-content: center; padding: 0px; width: 266px; }\",\".framer-y0yzo.framer-v-uw9xs4 .framer-14px9er { left: unset; position: relative; top: unset; }\",\".framer-y0yzo.framer-v-uw9xs4 .framer-516mus { bottom: unset; left: unset; position: relative; right: unset; width: 232px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-y0yzo.framer-v-uw9xs4 .framer-q223gz, .framer-y0yzo.framer-v-uw9xs4 .framer-g3051x { gap: 0px; } .framer-y0yzo.framer-v-uw9xs4 .framer-q223gz > *, .framer-y0yzo.framer-v-uw9xs4 .framer-q223gz > :first-child, .framer-y0yzo.framer-v-uw9xs4 .framer-q223gz > :last-child { margin: 0px; } .framer-y0yzo.framer-v-uw9xs4 .framer-g3051x > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-y0yzo.framer-v-uw9xs4 .framer-g3051x > :first-child { margin-top: 0px; } .framer-y0yzo.framer-v-uw9xs4 .framer-g3051x > :last-child { margin-bottom: 0px; } }\",\".framer-y0yzo.framer-v-z48csp.framer-166gj7c { height: 300px; width: 350px; }\",\".framer-y0yzo.framer-v-z48csp .framer-137bkfy { padding: 10px 16px 10px 16px; }\",\".framer-y0yzo.framer-v-z48csp .framer-5qqq8v { height: var(--framer-aspect-ratio-supported, 140px); }\",\".framer-y0yzo.framer-v-z48csp .framer-zjzsgd { height: var(--framer-aspect-ratio-supported, 105px); }\",\".framer-y0yzo.framer-v-z48csp .framer-1tmvted { display: block; overflow: hidden; padding: unset; }\",\".framer-y0yzo.framer-v-z48csp .framer-1gf6swr { bottom: 10px; flex: none; height: 80px; left: calc(50.00000000000002% - 199px / 2); position: absolute; width: 199px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-y0yzo.framer-v-z48csp .framer-1tmvted { gap: 0px; } .framer-y0yzo.framer-v-z48csp .framer-1tmvted > *, .framer-y0yzo.framer-v-z48csp .framer-1tmvted > :first-child, .framer-y0yzo.framer-v-z48csp .framer-1tmvted > :last-child { margin: 0px; } }\",'.framer-y0yzo[data-border=\"true\"]::after, .framer-y0yzo [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 500\n * @framerIntrinsicWidth 672\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"QaZimOnmJ\":{\"layout\":[\"fixed\",\"fixed\"]},\"rSG973zWQ\":{\"layout\":[\"fixed\",\"fixed\"]},\"SMm5PfX7s\":{\"layout\":[\"fixed\",\"fixed\"]},\"j5OnKJqin\":{\"layout\":[\"fixed\",\"fixed\"]},\"PjeG2bYUe\":{\"layout\":[\"fixed\",\"fixed\"]},\"LffExgguW\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerLidHoxabG=withCSS(Component,css,\"framer-y0yzo\");export default FramerLidHoxabG;FramerLidHoxabG.displayName=\"Dashboard\";FramerLidHoxabG.defaultProps={height:500,width:672};addPropertyControls(FramerLidHoxabG,{variant:{options:[\"gNzKeRNcz\",\"QaZimOnmJ\",\"rSG973zWQ\",\"SMm5PfX7s\",\"j5OnKJqin\",\"PjeG2bYUe\",\"LffExgguW\"],optionTitles:[\"Platofrm\",\"Analytics\",\"Predictove\",\"Report\",\"Overview\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerLidHoxabG,[{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/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:\"Roboto\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/roboto/v32/KFOmCnqEu92Fr1Me4GZLCzYlKw.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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{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/mkY5Sgyq51ik0AMrSBwhm9DJg.woff2\",weight:\"900\"},{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/X5hj6qzcHUYv7h1390c8Rhm6550.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/gQhNpS3tN86g8RcVKYUUaKt2oMQ.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cugnVhSraaRyANCaUtI5FV17wk.woff2\",weight:\"900\"},{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/5HcVoGak8k5agFJSaKa4floXVu0.woff2\",weight:\"900\"},{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/jn4BtSPLlS0NDp1KiFAtFKiiY0o.woff2\",weight:\"900\"},{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/P2Bw01CtL0b9wqygO0sSVogWbo.woff2\",weight:\"900\"},{family:\"Roboto\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/roboto/v32/KFOlCnqEu92Fr1MmEU9vBh05IsDqlA.woff2\",weight:\"500\"},{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/PONfPc6h4EPYwJliXQBmjVx7QxI.woff2\",weight:\"800\"},{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/zsnJN7Z1wdzUvepJniD3rbvJIyU.woff2\",weight:\"800\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/UrzZBOy7RyJEWAZGduzOeHiHuY.woff2\",weight:\"800\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/996sR9SfSDuYELz8oHhDOcErkY.woff2\",weight:\"800\"},{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/ftN1HpyPVJEoEb4q36SOrNdLXU.woff2\",weight:\"800\"},{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/jN39PDxZWEwjG7Csryx3JN2r2Y.woff2\",weight:\"800\"},{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/JAur4lGGSGRGyrFi59JSIKqVgU.woff2\",weight:\"800\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAfJthS2f3ZGMZpg.woff2\",weight:\"600\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerLidHoxabG\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"500\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"QaZimOnmJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"rSG973zWQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"SMm5PfX7s\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"j5OnKJqin\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"PjeG2bYUe\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"LffExgguW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"672\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./LidHoxabG.map", "// Generated by Framer (f22aa3d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const serializationHash=\"framer-FUjKB\";const variantClassNames={Pc0o_myhQ:\"framer-v-yk61sg\"};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)=>`translateX(-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.create(React.Fragment);const getProps=({amount,height,id,subTitle,title,width,...props})=>{var _ref,_ref1,_ref2;return{...props,bZeTXSy0H:(_ref=amount!==null&&amount!==void 0?amount:props.bZeTXSy0H)!==null&&_ref!==void 0?_ref:\"34%\",NIcpYpbeI:(_ref1=subTitle!==null&&subTitle!==void 0?subTitle:props.NIcpYpbeI)!==null&&_ref1!==void 0?_ref1:\"Risk of accident\",Wa7zETWVc:(_ref2=title!==null&&title!==void 0?title:props.Wa7zETWVc)!==null&&_ref2!==void 0?_ref2:\"Lower \"};};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,bZeTXSy0H,Wa7zETWVc,NIcpYpbeI,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"Pc0o_myhQ\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-yk61sg\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"Pc0o_myhQ\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter-SemiBold\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"600\"},children:\"Lower \"})}),className:\"framer-tjar6h\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"jlsEbZG1h\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"1px\"},text:Wa7zETWVc,transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-43117a14-6afd-45ed-acaa-cf3557fdf996, rgb(46, 110, 255)))\"},children:\"34%\"})}),className:\"framer-136j5xp\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"Tx4ACblDD\",style:{\"--extracted-r6o4lv\":\"var(--token-43117a14-6afd-45ed-acaa-cf3557fdf996, rgb(46, 110, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:bZeTXSy0H,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"28px\",\"--framer-text-alignment\":\"center\"},children:\"Risk of accident\"})}),className:\"framer-iriwf4\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"qWEviByIC\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:NIcpYpbeI,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-FUjKB.framer-1x84ep1, .framer-FUjKB .framer-1x84ep1 { display: block; }\",\".framer-FUjKB.framer-yk61sg { height: 180px; overflow: hidden; position: relative; width: 217px; }\",\".framer-FUjKB .framer-tjar6h { bottom: 56px; flex: none; height: auto; left: 50%; overflow: visible; position: absolute; white-space: pre; width: auto; }\",\".framer-FUjKB .framer-136j5xp { flex: none; height: 73px; left: calc(49.76958525345624% - 163px / 2); position: absolute; top: 18px; white-space: pre-wrap; width: 163px; word-break: break-word; word-wrap: break-word; }\",\".framer-FUjKB .framer-iriwf4 { bottom: 18px; flex: none; height: 33px; left: 0px; position: absolute; right: 0px; white-space: pre-wrap; word-break: break-word; word-wrap: break-word; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 180\n * @framerIntrinsicWidth 217\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"bZeTXSy0H\":\"amount\",\"Wa7zETWVc\":\"title\",\"NIcpYpbeI\":\"subTitle\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerwWjouqtUO=withCSS(Component,css,\"framer-FUjKB\");export default FramerwWjouqtUO;FramerwWjouqtUO.displayName=\"highlight-num\";FramerwWjouqtUO.defaultProps={height:180,width:217};addPropertyControls(FramerwWjouqtUO,{bZeTXSy0H:{defaultValue:\"34%\",displayTextArea:false,title:\"Amount\",type:ControlType.String},Wa7zETWVc:{defaultValue:\"Lower \",displayTextArea:false,title:\"Title\",type:ControlType.String},NIcpYpbeI:{defaultValue:\"Risk of accident\",displayTextArea:true,title:\"Sub-title\",type:ControlType.String}});addFonts(FramerwWjouqtUO,[{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{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:\"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\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerwWjouqtUO\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"180\",\"framerIntrinsicWidth\":\"217\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"bZeTXSy0H\\\":\\\"amount\\\",\\\"Wa7zETWVc\\\":\\\"title\\\",\\\"NIcpYpbeI\\\":\\\"subTitle\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./wWjouqtUO.map", "// Generated by Framer (013b13c)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/RLUeKLNmERbgkhrJQwKX/Ticker.js\";import{Icon as Hero}from\"https://framerusercontent.com/modules/hKjtTuWGYB451ckw6eTN/bbq95ZQZ142lE2fXscHd/Hero.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/9zLIz4fn80IR9zpOx18Q/Embed.js\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/w90zR0qzeh1mgaDSvD54/Carousel.js\";import Slideshow1 from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/3fgSkLJzAAAU6lAT4hVj/SlideShow.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/z9LFDX6PKECtSqS68OWD/SlideShow.js\";import HeroSection from\"#framer/local/canvasComponent/AxrkXjwTm/AxrkXjwTm.js\";import FeatureCard2 from\"#framer/local/canvasComponent/eJ6DEifPE/eJ6DEifPE.js\";import UseCaseSlider from\"#framer/local/canvasComponent/F8EBOp716/F8EBOp716.js\";import ButtonCopy from\"#framer/local/canvasComponent/hwG80mlVt/hwG80mlVt.js\";import Dashboard from\"#framer/local/canvasComponent/LidHoxabG/LidHoxabG.js\";import Footer from\"#framer/local/canvasComponent/OHpFUHCr_/OHpFUHCr_.js\";import Button from\"#framer/local/canvasComponent/OneP4W_UD/OneP4W_UD.js\";import HighlightNum from\"#framer/local/canvasComponent/wWjouqtUO/wWjouqtUO.js\";import Navigation from\"#framer/local/canvasComponent/YPNKDK9RD/YPNKDK9RD.js\";import Blog from\"#framer/local/collection/KyQCx8VLf/KyQCx8VLf.js\";import*as sharedStyle from\"#framer/local/css/HvV7GEWTd/HvV7GEWTd.js\";import*as sharedStyle1 from\"#framer/local/css/stylesPresetHeading1/stylesPresetHeading1.js\";import*as sharedStyle3 from\"#framer/local/css/stylesPresetHeading3/stylesPresetHeading3.js\";import*as sharedStyle2 from\"#framer/local/css/stylesPresetParagraph/stylesPresetParagraph.js\";import metadataProvider from\"#framer/local/webPageMetadata/vvg1RvENu/vvg1RvENu.js\";const NavigationFonts=getFonts(Navigation);const HeroSectionFonts=getFonts(HeroSection);const TickerFonts=getFonts(Ticker);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const ImageWithFX=withFX(Image);const RichTextWithFX=withFX(RichText);const ButtonFonts=getFonts(Button);const ContainerWithFX=withFX(Container);const MotionDivWithFX=withFX(motion.div);const ImageWithOptimizedAppearEffect=withOptimizedAppearEffect(Image);const EmbedFonts=getFonts(Embed);const SlideshowFonts=getFonts(Slideshow);const DashboardFonts=getFonts(Dashboard);const HeroFonts=getFonts(Hero);const FeatureCard2Fonts=getFonts(FeatureCard2);const ButtonCopyFonts=getFonts(ButtonCopy);const CarouselFonts=getFonts(Carousel);const HighlightNumFonts=getFonts(HighlightNum);const DashboardWithVariantAppearEffect=withVariantAppearEffect(Dashboard);const UseCaseSliderFonts=getFonts(UseCaseSlider);const Slideshow1Fonts=getFonts(Slideshow1);const FooterFonts=getFonts(Footer);const breakpoints={ApRcdMQAL:\"(min-width: 1400px) and (max-width: 1485px)\",gKcyARiAQ:\"(max-width: 809px)\",NUYgUWtOw:\"(min-width: 810px) and (max-width: 1399px)\",OU0P3Zqmv:\"(min-width: 1486px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-5GezZ\";const variantClassNames={ApRcdMQAL:\"framer-v-1ssf6fz\",gKcyARiAQ:\"framer-v-1jq0hhp\",NUYgUWtOw:\"framer-v-boc3wm\",OU0P3Zqmv:\"framer-v-149fdtj\"};const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:100};const transition3={damping:40,delay:.1,mass:1,stiffness:200,type:\"spring\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transition:transition3,x:0,y:100};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:20};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation10={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation11={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:100};const transition4={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation12={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,y:-10};const transition5={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const animation13={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:20};const animation14={opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20};const animation15={opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:20};const animation16={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.05,skewX:0,skewY:0,transition:transition4};const transition6={delay:0,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation17={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:0,y:0};const animation18={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-150};const transition7={delay:0,duration:.75,ease:[.44,0,.56,1],type:\"tween\"};const animation19={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:0};const animation20={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const animation21={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const display=options.display?options.display:\"date\";const dateOptions={dateStyle:display!==\"time\"?options.dateStyle:undefined,timeStyle:display===\"date\"?undefined:\"short\",timeZone:\"UTC\"};const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;// We add a try block because an invalid language code results in a crash\ntry{return date.toLocaleString(locale,dateOptions);}catch{return date.toLocaleString(fallbackLocale,dateOptions);}};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop 2\":\"ApRcdMQAL\",Desktop:\"OU0P3Zqmv\",Phone:\"gKcyARiAQ\",Tablet:\"NUYgUWtOw\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"OU0P3Zqmv\"};};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,fNt9LLzVfCO8TqlQIZ,fogtkHRU2CO8TqlQIZ,FnWRDuqlKCO8TqlQIZ,F18QtAGrcCO8TqlQIZ,idCO8TqlQIZ,fNt9LLzVfSZHEBNMSQ,fogtkHRU2SZHEBNMSQ,FnWRDuqlKSZHEBNMSQ,F18QtAGrcSZHEBNMSQ,idSZHEBNMSQ,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"gKcyARiAQ\")return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"gKcyARiAQ\")return false;return true;};const router=useRouter();const elementId=useRouteElementId(\"aGQ9foIP9\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"Js0pf9qPQ\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"nA_WfiSSO\");const ref3=React.useRef(null);const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"NUYgUWtOw\")return true;return false;};const elementId3=useRouteElementId(\"BoMAco5qM\");const ref4=React.useRef(null);const elementId4=useRouteElementId(\"RVqXhMWb6\");const ref5=React.useRef(null);const elementId5=useRouteElementId(\"xuLjFSHU4\");const ref6=React.useRef(null);const elementId6=useRouteElementId(\"vapt5gtEi\");const ref7=React.useRef(null);const elementId7=useRouteElementId(\"q7a_pNdqW\");const ref8=React.useRef(null);const elementId8=useRouteElementId(\"N8rP3pONW\");const ref9=React.useRef(null);const elementId9=useRouteElementId(\"NRA1qzjQF\");const ref10=React.useRef(null);const elementId10=useRouteElementId(\"ozE57QTx9\");const ref11=React.useRef(null);const isDisplayed3=()=>{if(!isBrowser())return true;if([\"NUYgUWtOw\",\"gKcyARiAQ\"].includes(baseVariant))return false;return true;};const elementId11=useRouteElementId(\"FXmWGZZXu\");const ref12=React.useRef(null);const elementId12=useRouteElementId(\"mY2_EuljM\");const ref13=React.useRef(null);const elementId13=useRouteElementId(\"HtKXj3LBm\");const ref14=React.useRef(null);const isDisplayed4=()=>{if(!isBrowser())return true;if(baseVariant===\"NUYgUWtOw\")return false;return true;};const elementId14=useRouteElementId(\"H8bX8ZQ6Q\");const ref15=React.useRef(null);const elementId15=useRouteElementId(\"GerHh3BzX\");const ref16=React.useRef(null);const elementId16=useRouteElementId(\"EdYxyYTmP\");const ref17=React.useRef(null);const elementId17=useRouteElementId(\"ejzKpT13F\");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 elementId18=useRouteElementId(\"Zk64iF3Qz\");const elementId19=useRouteElementId(\"nlqJLJdgO\");const elementId20=useRouteElementId(\"HPYkotNg2\");const elementId21=useRouteElementId(\"NnCSIsvBv\");const elementId22=useRouteElementId(\"ikLZoi8nx\");const activeLocaleCode=useLocaleCode();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"OU0P3Zqmv\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-149fdtj\",className),ref:refBinding,style:{...style},children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gKcyARiAQ:{height:60,width:`max(${componentViewport?.width||\"100vw\"}, 390px)`,y:(componentViewport?.y||0)+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-gpcw1r-container hidden-149fdtj hidden-boc3wm hidden-1ssf6fz\",nodeId:\"nb3qZOevW\",scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"nb3qZOevW\",layoutId:\"nb3qZOevW\",style:{width:\"100%\"},variant:\"QVHb_ayZw\",width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gKcyARiAQ:{height:500,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+60}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-2jb4q8-container hidden-149fdtj hidden-boc3wm hidden-1ssf6fz\",nodeId:\"MFx2608ix\",scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(HeroSection,{height:\"100%\",id:\"MFx2608ix\",layoutId:\"MFx2608ix\",style:{height:\"100%\",width:\"100%\"},variant:\"uMQwJFqiy\",width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NUYgUWtOw:{width:`max(${componentViewport?.width||\"100vw\"}, 810px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jomevf-container hidden-1jq0hhp\",nodeId:\"B5DbqGGz7\",scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NUYgUWtOw:{style:{width:\"100%\"},variant:\"jbmiSbQdS\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"B5DbqGGz7\",layoutId:\"B5DbqGGz7\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"MVuJl6uss\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kilf61\",children:/*#__PURE__*/_jsxs(\"main\",{className:\"framer-hjufsv\",\"data-framer-name\":\"Main\",children:[isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kma8z2 hidden-149fdtj hidden-boc3wm hidden-1ssf6fz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:\"Trusted By\"})}),className:\"framer-1qcihvs\",fonts:[\"GF;DM Sans-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-tzuthh-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"MyzUerh_w\",scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:60,overflow:false},gap:30,height:\"100%\",hoverFactor:1,id:\"MyzUerh_w\",layoutId:\"MyzUerh_w\",padding:40,paddingBottom:40,paddingLeft:40,paddingPerSide:false,paddingRight:40,paddingTop:40,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:929,intrinsicWidth:2034,pixelHeight:929,pixelWidth:2034,sizes:\"88px\",src:\"https://framerusercontent.com/images/VY2X4C0jqhwFSeezcCkym85V0.png\",srcSet:\"https://framerusercontent.com/images/VY2X4C0jqhwFSeezcCkym85V0.png?scale-down-to=512 512w,https://framerusercontent.com/images/VY2X4C0jqhwFSeezcCkym85V0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VY2X4C0jqhwFSeezcCkym85V0.png 2034w\"},className:\"framer-odi3hu\",\"data-framer-name\":\"HKSTP\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:67.5,intrinsicWidth:223,pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/0sJSxlt7kNAKOeSXI29kuQBvLo.png\"},className:\"framer-fx5qzj\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:353.5,intrinsicWidth:640,pixelHeight:707,pixelWidth:647,positionX:\"center\",positionY:\"center\",sizes:\"48px\",src:\"https://framerusercontent.com/images/wBvJ7V3RbmYQyA2uTFdQmNze9rY.png\",srcSet:\"https://framerusercontent.com/images/wBvJ7V3RbmYQyA2uTFdQmNze9rY.png 647w\"},className:\"framer-o9q940\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:347.5,intrinsicWidth:1280,pixelHeight:695,pixelWidth:2560,sizes:\"103px\",src:\"https://framerusercontent.com/images/WyuTByh19kfmHYAfHjX1wxI0No.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/WyuTByh19kfmHYAfHjX1wxI0No.png?scale-down-to=512 512w,https://framerusercontent.com/images/WyuTByh19kfmHYAfHjX1wxI0No.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WyuTByh19kfmHYAfHjX1wxI0No.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/WyuTByh19kfmHYAfHjX1wxI0No.png 2560w\"},className:\"framer-ls8r9c\",\"data-framer-name\":\"NEC_logo_svg\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:286,intrinsicWidth:1120,pixelHeight:125,pixelWidth:403,src:\"https://framerusercontent.com/images/pa1XA7H09mZ1pCaWXV5iMV4zk.png\"},className:\"framer-16zp4j9\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:570.5,intrinsicWidth:2419.5,pixelHeight:1141,pixelWidth:4839,sizes:\"123px\",src:\"https://framerusercontent.com/images/YX3bbbkFdtoSU10ivMgT864nFE.jpg?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/YX3bbbkFdtoSU10ivMgT864nFE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/YX3bbbkFdtoSU10ivMgT864nFE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/YX3bbbkFdtoSU10ivMgT864nFE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/YX3bbbkFdtoSU10ivMgT864nFE.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/YX3bbbkFdtoSU10ivMgT864nFE.jpg 4839w\"},className:\"framer-njy1lh\",\"data-framer-name\":\"$1541536600_NEXCOM_Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:71,intrinsicWidth:250,pixelHeight:142,pixelWidth:500,src:\"https://framerusercontent.com/images/xyQtS0DFTuQSWBaebt2FYVIGbQ.png\"},className:\"framer-jzdb3o\",\"data-framer-name\":\"logo_tc\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:237,intrinsicWidth:920.5,pixelHeight:474,pixelWidth:1841,sizes:\"112px\",src:\"https://framerusercontent.com/images/laXXQuMmLOblfAhSEnz56YreCU4.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/laXXQuMmLOblfAhSEnz56YreCU4.png?scale-down-to=512 512w,https://framerusercontent.com/images/laXXQuMmLOblfAhSEnz56YreCU4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/laXXQuMmLOblfAhSEnz56YreCU4.png 1841w\"},className:\"framer-1vd1e2v\",\"data-framer-name\":\"Beyond_Limits\"})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NUYgUWtOw:{height:700,width:\"1200px\",y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:800,width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+60+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-169rup7-container hidden-1jq0hhp\",nodeId:\"uWrRzdkLF\",scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NUYgUWtOw:{variant:\"A09C9WxZ5\"}},children:/*#__PURE__*/_jsx(HeroSection,{height:\"100%\",id:\"uWrRzdkLF\",layoutId:\"uWrRzdkLF\",style:{height:\"100%\",width:\"100%\"},variant:\"BXkuKa1Nb\",width:\"100%\"})})})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wiuvux hidden-1jq0hhp\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:\"Trusted By\"})}),className:\"framer-1ucw6vg\",fonts:[\"GF;DM Sans-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-keq2go-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"YEfLsIbqI\",scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:60,overflow:false},gap:70,height:\"100%\",hoverFactor:1,id:\"YEfLsIbqI\",layoutId:\"YEfLsIbqI\",padding:40,paddingBottom:40,paddingLeft:40,paddingPerSide:false,paddingRight:40,paddingTop:40,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:237,intrinsicWidth:920.5,pixelHeight:474,pixelWidth:1841,sizes:\"163px\",src:\"https://framerusercontent.com/images/laXXQuMmLOblfAhSEnz56YreCU4.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/laXXQuMmLOblfAhSEnz56YreCU4.png?scale-down-to=512 512w,https://framerusercontent.com/images/laXXQuMmLOblfAhSEnz56YreCU4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/laXXQuMmLOblfAhSEnz56YreCU4.png 1841w\"},className:\"framer-1tbf7wh\",\"data-framer-name\":\"Beyond_Limits\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:71,intrinsicWidth:250,pixelHeight:142,pixelWidth:500,src:\"https://framerusercontent.com/images/xyQtS0DFTuQSWBaebt2FYVIGbQ.png\"},className:\"framer-3efthr\",\"data-framer-name\":\"logo_tc\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:570.5,intrinsicWidth:2419.5,pixelHeight:1141,pixelWidth:4839,sizes:\"203px\",src:\"https://framerusercontent.com/images/YX3bbbkFdtoSU10ivMgT864nFE.jpg?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/YX3bbbkFdtoSU10ivMgT864nFE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/YX3bbbkFdtoSU10ivMgT864nFE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/YX3bbbkFdtoSU10ivMgT864nFE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/YX3bbbkFdtoSU10ivMgT864nFE.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/YX3bbbkFdtoSU10ivMgT864nFE.jpg 4839w\"},className:\"framer-fd0ip\",\"data-framer-name\":\"$1541536600_NEXCOM_Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:353.5,intrinsicWidth:640,pixelHeight:707,pixelWidth:647,positionX:\"center\",positionY:\"center\",sizes:\"103px\",src:\"https://framerusercontent.com/images/wBvJ7V3RbmYQyA2uTFdQmNze9rY.png\",srcSet:\"https://framerusercontent.com/images/wBvJ7V3RbmYQyA2uTFdQmNze9rY.png 647w\"},className:\"framer-p9hp77\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:929,intrinsicWidth:2034,pixelHeight:929,pixelWidth:2034,sizes:\"227px\",src:\"https://framerusercontent.com/images/VY2X4C0jqhwFSeezcCkym85V0.png\",srcSet:\"https://framerusercontent.com/images/VY2X4C0jqhwFSeezcCkym85V0.png?scale-down-to=512 512w,https://framerusercontent.com/images/VY2X4C0jqhwFSeezcCkym85V0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VY2X4C0jqhwFSeezcCkym85V0.png 2034w\"},className:\"framer-18fpy7n\",\"data-framer-name\":\"HKSTP\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:286,intrinsicWidth:1120,pixelHeight:125,pixelWidth:403,src:\"https://framerusercontent.com/images/pa1XA7H09mZ1pCaWXV5iMV4zk.png\"},className:\"framer-12263hy\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:67.5,intrinsicWidth:223,pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/0sJSxlt7kNAKOeSXI29kuQBvLo.png\"},className:\"framer-1sbdv7v\",\"data-framer-name\":\"image\"})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5g1aac hidden-149fdtj hidden-boc3wm hidden-1ssf6fz\",children:[/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-8ztcbi\",\"data-framer-appear-id\":\"8ztcbi\",\"data-framer-name\":\"Logos\",initial:animation1,optimized:true,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cqpqwh\",\"data-framer-name\":\"Frame 1000003387\",children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\"},children:\"OUR PRODUCTS\"})}),className:\"framer-ml4xgu\",\"data-framer-appear-id\":\"ml4xgu\",\"data-framer-name\":\"OUR PRODUCTS\",fonts:[\"GF;DM Sans-500\"],initial:animation3,optimized:true,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:\"Precision Redefined for\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:\" Every Application\"})]}),className:\"framer-1hks3b2\",\"data-framer-appear-id\":\"1hks3b2\",\"data-framer-name\":\"Precision Redefined for Every Project\",fonts:[\"GF;DM Sans-600\"],initial:animation3,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nr48tl\",\"data-framer-name\":\"2 Columns Image Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gKcyARiAQ:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+560+0+0+200+60+1314.4+0+0),positionX:\"center\",positionY:\"center\",sizes:\"225px\",src:\"https://framerusercontent.com/images/MufM19JMDcy7ZIU1h9KkFaQfgs.png\",srcSet:\"https://framerusercontent.com/images/MufM19JMDcy7ZIU1h9KkFaQfgs.png?scale-down-to=1024 756w,https://framerusercontent.com/images/MufM19JMDcy7ZIU1h9KkFaQfgs.png 1463w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:\"225px\",src:\"https://framerusercontent.com/images/MufM19JMDcy7ZIU1h9KkFaQfgs.png\",srcSet:\"https://framerusercontent.com/images/MufM19JMDcy7ZIU1h9KkFaQfgs.png?scale-down-to=1024 756w,https://framerusercontent.com/images/MufM19JMDcy7ZIU1h9KkFaQfgs.png 1463w\"},className:\"framer-yo5x1r\",\"data-framer-name\":\"image_62Spatial_Sense_Scanner-removebg-preview (1) 1\"})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-117set5\",\"data-framer-name\":\"Frame 1000003446\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9kaqc1\",\"data-framer-name\":\"Frame 1000003442\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(45, 110, 255)\"},children:\"SS-128\"})}),className:\"framer-638tq0\",\"data-framer-name\":\"SS1208\",fonts:[\"GF;DM Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:\"Spatial Sense Scanner\"})}),className:\"framer-d6aca8\",\"data-framer-name\":\"Spatial Sense Scanner\",fonts:[\"GF;DM Sans-700\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u9qrtb\",\"data-framer-name\":\"Frame 1000003444\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:\"Enhanced 3D Color Models for Improved Infrastructure Management\"})}),className:\"framer-19cmhfl\",\"data-framer-name\":\"Precision Redefined for Every Project\",fonts:[\"GF;DM Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"y_ti4VVir\"},implicitPathVariables:undefined},{href:{webPageId:\"y_ti4VVir\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gKcyARiAQ:{y:(componentViewport?.y||0)+0+560+0+0+200+60+1314.4+0+185+0+256+0+118}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1xuzz55-container\",nodeId:\"EYDI1uOwd\",rendersWithMotion:true,scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gKcyARiAQ:{Ag6XWw_qR:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(Button,{Ag6XWw_qR:resolvedLinks[0],height:\"100%\",HEosbWztN:\"View Details\",id:\"EYDI1uOwd\",layoutId:\"EYDI1uOwd\",variant:\"HMhFJvw_P\",width:\"100%\"})})})})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xdcqc1\",\"data-framer-name\":\"Spatial Twin Rail\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-l2tvuu\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dnf785\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-fwvyci\",\"data-styles-preset\":\"HvV7GEWTd\",style:{\"--framer-text-alignment\":\"center\"},children:\"SpatialTwin Rail\"})}),className:\"framer-b8geap\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Comprehensive technology powering efficient, safer rails.\"})}),className:\"framer-seag4s\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-k5fqym\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gKcyARiAQ:{y:(componentViewport?.y||0)+0+560+0+0+200+60+78.4+0+277+0+31.6+10+140.8+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,children:/*#__PURE__*/_jsx(Container,{className:\"framer-4p4t6o-container\",nodeId:\"rnASfMbjT\",scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",HEosbWztN:\"View Product Details\",id:\"rnASfMbjT\",layoutId:\"rnASfMbjT\",style:{height:\"100%\"},variant:\"Hsf5FtJp3\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XbRZzmcO0\"},motionChild:true,nodeId:\"hZwwQ40je\",scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1gsrfhx framer-1jhgmtf\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Learn More\"})}),className:\"framer-u498gb\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gKcyARiAQ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+560+0+0+200+60+78.4+0+0),pixelHeight:2800,pixelWidth:5944,positionX:\"left\",positionY:\"center\",sizes:\"393px\",src:\"https://framerusercontent.com/images/0s2NbgJrHxaS2C9TiNF4kazappk.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/0s2NbgJrHxaS2C9TiNF4kazappk.png?scale-down-to=512 512w,https://framerusercontent.com/images/0s2NbgJrHxaS2C9TiNF4kazappk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0s2NbgJrHxaS2C9TiNF4kazappk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/0s2NbgJrHxaS2C9TiNF4kazappk.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/0s2NbgJrHxaS2C9TiNF4kazappk.png 5944w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:2800,pixelWidth:5944,positionX:\"left\",positionY:\"center\",sizes:\"393px\",src:\"https://framerusercontent.com/images/0s2NbgJrHxaS2C9TiNF4kazappk.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/0s2NbgJrHxaS2C9TiNF4kazappk.png?scale-down-to=512 512w,https://framerusercontent.com/images/0s2NbgJrHxaS2C9TiNF4kazappk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0s2NbgJrHxaS2C9TiNF4kazappk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/0s2NbgJrHxaS2C9TiNF4kazappk.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/0s2NbgJrHxaS2C9TiNF4kazappk.png 5944w\"},className:\"framer-1budd4x\",\"data-framer-name\":\"Image\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-95chfx\",\"data-framer-name\":\"2 Columns Image Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gKcyARiAQ:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+560+0+0+200+60+1925.4+100+-220.5),pixelHeight:433,pixelWidth:452,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/YkquPZbmPkuKp29DWgLxWzH27A.png\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",pixelHeight:433,pixelWidth:452,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/YkquPZbmPkuKp29DWgLxWzH27A.png\"},className:\"framer-xg9ehp\",\"data-framer-name\":\"image_62Spatial_Sense_Scanner-removebg-preview (1) 1\"})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-dxfvgh\",\"data-framer-name\":\"Frame 1000003446\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b70737\",\"data-framer-name\":\"Frame 1000003442\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(45, 110, 255)\"},children:\"SE-64\"})}),className:\"framer-4r7tap\",\"data-framer-name\":\"SS1208\",fonts:[\"GF;DM Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:\"Spatial Sense Edge Device\"})}),className:\"framer-1bd8scj\",\"data-framer-name\":\"Spatial Sense Scanner\",fonts:[\"GF;DM Sans-700\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:\"On-the-go Processing Even in Harsh Environments\"})}),className:\"framer-xlzi68\",\"data-framer-name\":\"Precision Redefined for Every Project\",fonts:[\"GF;DM Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Au1aTOuQ1\"},implicitPathVariables:undefined},{href:{webPageId:\"Au1aTOuQ1\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gKcyARiAQ:{y:(componentViewport?.y||0)+0+560+0+0+200+60+1925.4+100+-26.5+40+346}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1k705u2-container\",nodeId:\"glqjAPoDN\",rendersWithMotion:true,scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gKcyARiAQ:{Ag6XWw_qR:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(Button,{Ag6XWw_qR:resolvedLinks1[0],height:\"100%\",HEosbWztN:\"View Details\",id:\"glqjAPoDN\",layoutId:\"glqjAPoDN\",variant:\"HMhFJvw_P\",width:\"100%\"})})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wh0oei\",\"data-framer-name\":\"How Products Work\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gKcyARiAQ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+560+0+0+200+60+2356.4+0+0),pixelHeight:2700,pixelWidth:3600,sizes:\"336px\",src:\"https://framerusercontent.com/images/zbaoX8GhUVjtAWW2jrEw258oQ7w.png\",srcSet:\"https://framerusercontent.com/images/zbaoX8GhUVjtAWW2jrEw258oQ7w.png?scale-down-to=512 512w,https://framerusercontent.com/images/zbaoX8GhUVjtAWW2jrEw258oQ7w.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zbaoX8GhUVjtAWW2jrEw258oQ7w.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/zbaoX8GhUVjtAWW2jrEw258oQ7w.png 3600w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",pixelHeight:2700,pixelWidth:3600,sizes:\"336px\",src:\"https://framerusercontent.com/images/zbaoX8GhUVjtAWW2jrEw258oQ7w.png\",srcSet:\"https://framerusercontent.com/images/zbaoX8GhUVjtAWW2jrEw258oQ7w.png?scale-down-to=512 512w,https://framerusercontent.com/images/zbaoX8GhUVjtAWW2jrEw258oQ7w.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zbaoX8GhUVjtAWW2jrEw258oQ7w.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/zbaoX8GhUVjtAWW2jrEw258oQ7w.png 3600w\"},className:\"framer-c2kfso\"})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-tk1ri4\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\"},children:\"Spatial Sense Cloud\"})}),className:\"framer-12a4n1f\",\"data-framer-name\":\"Real-time Insights from Scanners and Edge Devices\",fonts:[\"GF;DM Sans-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\"},children:\"Real-time Insights from Scanners and Edge Devices\"})}),className:\"framer-1v7beej\",\"data-framer-name\":\"HOW OUR PRODUCTS CREATE IMPACT\",fonts:[\"GF;DM Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"VfkiqOh5A\"},implicitPathVariables:undefined},{href:{webPageId:\"VfkiqOh5A\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gKcyARiAQ:{y:(componentViewport?.y||0)+0+560+0+0+200+60+2356.4+0+210+50+120}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1k7y9q3-container\",nodeId:\"Oa2bTjNpW\",rendersWithMotion:true,scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gKcyARiAQ:{Ag6XWw_qR:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(Button,{Ag6XWw_qR:resolvedLinks2[0],height:\"100%\",HEosbWztN:\"View Details\",id:\"Oa2bTjNpW\",layoutId:\"Oa2bTjNpW\",variant:\"HMhFJvw_P\",width:\"100%\"})})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-f4vw2x\",\"data-framer-name\":\"Mobile Mapping System\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"fIopIGtuS\"},motionChild:true,nodeId:\"PyjXJO54w\",scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gKcyARiAQ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+560+0+0+200+60+631.4+0+0),pixelHeight:348,pixelWidth:717,positionX:\"center\",positionY:\"center\",sizes:\"268px\",src:\"https://framerusercontent.com/images/8kMDMaU1cgH02LheVRybOEQPY.png\",srcSet:\"https://framerusercontent.com/images/8kMDMaU1cgH02LheVRybOEQPY.png?scale-down-to=512 512w,https://framerusercontent.com/images/8kMDMaU1cgH02LheVRybOEQPY.png 717w\"}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation,as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:348,pixelWidth:717,positionX:\"center\",positionY:\"center\",sizes:\"268px\",src:\"https://framerusercontent.com/images/8kMDMaU1cgH02LheVRybOEQPY.png\",srcSet:\"https://framerusercontent.com/images/8kMDMaU1cgH02LheVRybOEQPY.png?scale-down-to=512 512w,https://framerusercontent.com/images/8kMDMaU1cgH02LheVRybOEQPY.png 717w\"},className:\"framer-1urvo2y framer-1jhgmtf\",\"data-framer-appear-id\":\"1urvo2y\",\"data-framer-name\":\"Image\",initial:animation1,optimized:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1azxzq9\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-fwvyci\",\"data-styles-preset\":\"HvV7GEWTd\",style:{\"--framer-text-alignment\":\"center\"},children:\"SpatialSense - 360 Mobile Mapping System\"})}),className:\"framer-3itbys\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Urban mapping and multi layer data output for maintenance and work planning.\"})}),className:\"framer-8u7xj6\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fnbd7l\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gKcyARiAQ:{y:(componentViewport?.y||0)+0+560+0+0+200+60+631.4+0+320+10+205.9+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13eiskq-container\",nodeId:\"NQwawA1g8\",scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",HEosbWztN:\"View Product Details\",id:\"NQwawA1g8\",layoutId:\"NQwawA1g8\",style:{height:\"100%\"},variant:\"Hsf5FtJp3\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"fIopIGtuS\"},motionChild:true,nodeId:\"B5Y8HI5Ei\",scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-8rssid framer-1jhgmtf\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Learn More\"})}),className:\"framer-tyif5r\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]})]})]}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vb3lgd hidden-149fdtj hidden-1jq0hhp hidden-1ssf6fz\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-66o7dv\",children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-19glv8r\",\"data-framer-appear-id\":\"19glv8r\",\"data-framer-name\":\"Section Heading\",initial:animation1,optimized:true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\"},children:\"SOLUTIONS\"})}),className:\"framer-e7jw5a\",\"data-framer-name\":\"OUR PRODUCTS\",fonts:[\"GF;DM Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:\"Cutting Edge Systems for Transport Safety\"})}),className:\"framer-m71sd2\",\"data-framer-name\":\"Precision Redefined for Every Project\",fonts:[\"GF;DM Sans-700\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pgy0qi\",\"data-framer-name\":\"Spatial Twin Rail\",id:elementId3,ref:ref4,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-nw2dfu\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1j1cg5l\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-fwvyci\",\"data-styles-preset\":\"HvV7GEWTd\",children:\"SpatialTwin Rail\"})}),className:\"framer-qn83lg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Comprehensive technology powering efficient, safer rails.\"})}),className:\"framer-pntcdc\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s73bko\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bvhojf-container\",nodeId:\"HXghu12Rq\",scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",HEosbWztN:\"View Product Details\",id:\"HXghu12Rq\",layoutId:\"HXghu12Rq\",style:{height:\"100%\"},variant:\"Hsf5FtJp3\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XbRZzmcO0\"},motionChild:true,nodeId:\"clEfpYAKm\",scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-fr8uy framer-1jhgmtf\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Learn More\"})}),className:\"framer-i1v4a9\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:2800,pixelWidth:5944,positionX:\"left\",positionY:\"center\",sizes:\"297px\",src:\"https://framerusercontent.com/images/0s2NbgJrHxaS2C9TiNF4kazappk.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/0s2NbgJrHxaS2C9TiNF4kazappk.png?scale-down-to=512 512w,https://framerusercontent.com/images/0s2NbgJrHxaS2C9TiNF4kazappk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0s2NbgJrHxaS2C9TiNF4kazappk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/0s2NbgJrHxaS2C9TiNF4kazappk.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/0s2NbgJrHxaS2C9TiNF4kazappk.png 5944w\"},className:\"framer-1evvewx\",\"data-framer-name\":\"Image\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cs0r7o\",\"data-framer-name\":\"Mobile Mapping System\",id:elementId4,ref:ref5,children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"fIopIGtuS\"},motionChild:true,nodeId:\"UqsWWqYvI\",scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation,as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:348,pixelWidth:717,positionX:\"center\",positionY:\"center\",sizes:\"268px\",src:\"https://framerusercontent.com/images/8kMDMaU1cgH02LheVRybOEQPY.png\",srcSet:\"https://framerusercontent.com/images/8kMDMaU1cgH02LheVRybOEQPY.png?scale-down-to=512 512w,https://framerusercontent.com/images/8kMDMaU1cgH02LheVRybOEQPY.png 717w\"},className:\"framer-1v3fjc7 framer-1jhgmtf\",\"data-framer-appear-id\":\"1v3fjc7\",\"data-framer-name\":\"Image\",initial:animation1,optimized:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1htca89\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-fwvyci\",\"data-styles-preset\":\"HvV7GEWTd\",children:\"SpatialSense - 360 Mobile Mapping System\"})}),className:\"framer-1emstyg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Urban mapping and multi layer data output for maintenance and work planning.\"})}),className:\"framer-16h3pr0\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3jf0lz\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,children:/*#__PURE__*/_jsx(Container,{className:\"framer-32fa0c-container\",nodeId:\"w1bvVgXP6\",scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",HEosbWztN:\"View Product Details\",id:\"w1bvVgXP6\",layoutId:\"w1bvVgXP6\",style:{height:\"100%\"},variant:\"Hsf5FtJp3\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"fIopIGtuS\"},motionChild:true,nodeId:\"Gfv8jH7mF\",scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-sdiebg framer-1jhgmtf\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Learn More\"})}),className:\"framer-1smvz7g\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-tjewik\",\"data-framer-appear-id\":\"tjewik\",\"data-framer-name\":\"Section Heading\",initial:animation1,optimized:true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\"},children:\"OUR PRODUCTS\"})}),className:\"framer-1tjtr85\",\"data-framer-name\":\"OUR PRODUCTS\",fonts:[\"GF;DM Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:\"Precision Redefined for\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:\" Every Application\"})]}),className:\"framer-1ou01m8\",\"data-framer-name\":\"Precision Redefined for Every Project\",fonts:[\"GF;DM Sans-700\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-30l2d\",\"data-framer-name\":\"2 Columns Image Text\",children:[/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:\"278px\",src:\"https://framerusercontent.com/images/MufM19JMDcy7ZIU1h9KkFaQfgs.png\",srcSet:\"https://framerusercontent.com/images/MufM19JMDcy7ZIU1h9KkFaQfgs.png?scale-down-to=1024 756w,https://framerusercontent.com/images/MufM19JMDcy7ZIU1h9KkFaQfgs.png 1463w\"},className:\"framer-5alec8\",\"data-framer-name\":\"image_62Spatial_Sense_Scanner-removebg-preview (1) 1\"}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-3ckj13\",\"data-framer-name\":\"Frame 1000003446\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bc4r9l\",\"data-framer-name\":\"Frame 1000003442\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(45, 110, 255)\"},children:\"SS-128\"})}),className:\"framer-qejlrw\",\"data-framer-name\":\"SS1208\",fonts:[\"GF;DM Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:\"Spatial Sense Scanner\"})}),className:\"framer-6ww6gr\",\"data-framer-name\":\"Spatial Sense Scanner\",fonts:[\"GF;DM Sans-700\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-u9degp\",\"data-framer-name\":\"Frame 1000003444\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-186kpap\",\"data-framer-name\":\"Frame 1000003443\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:\"Enhanced 3D Color Models for Improved Infrastructure Management\"})}),className:\"framer-18vjyo2\",\"data-framer-name\":\"Precision Redefined for Every Project\",fonts:[\"GF;DM Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"y_ti4VVir\"},implicitPathVariables:undefined},{href:{webPageId:\"y_ti4VVir\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-8mijav-container\",nodeId:\"gHDIrgfAQ\",rendersWithMotion:true,scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NUYgUWtOw:{Ag6XWw_qR:resolvedLinks3[1]}},children:/*#__PURE__*/_jsx(Button,{Ag6XWw_qR:resolvedLinks3[0],height:\"100%\",HEosbWztN:\"View Details\",id:\"gHDIrgfAQ\",layoutId:\"gHDIrgfAQ\",variant:\"HMhFJvw_P\",width:\"100%\"})})})})})]})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uvudla\",\"data-framer-name\":\"2 Columns Image Text\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1p64a3t\",\"data-framer-name\":\"Frame 1000003446\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fhoueo\",\"data-framer-name\":\"Frame 1000003442\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(45, 110, 255)\"},children:\"SE-64\"})}),className:\"framer-11c7t6a\",\"data-framer-name\":\"SS1208\",fonts:[\"GF;DM Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:\"Spatial Sense Edge Device\"})}),className:\"framer-1756a6l\",\"data-framer-name\":\"Spatial Sense Scanner\",fonts:[\"GF;DM Sans-700\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pa19e0\",\"data-framer-name\":\"Frame 1000003444\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x2scss\",\"data-framer-name\":\"Frame 1000003443\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:\"On-the-go Processing Even in Harsh Environments\"})}),className:\"framer-1rpnsea\",\"data-framer-name\":\"Precision Redefined for Every Project\",fonts:[\"GF;DM Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Au1aTOuQ1\"},implicitPathVariables:undefined},{href:{webPageId:\"Au1aTOuQ1\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1g6y3u1-container\",nodeId:\"bR8GLE7jx\",rendersWithMotion:true,scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NUYgUWtOw:{Ag6XWw_qR:resolvedLinks4[1]}},children:/*#__PURE__*/_jsx(Button,{Ag6XWw_qR:resolvedLinks4[0],height:\"100%\",HEosbWztN:\"View Details\",id:\"bR8GLE7jx\",layoutId:\"bR8GLE7jx\",variant:\"HMhFJvw_P\",width:\"100%\"})})})})})]})})]}),/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",pixelHeight:433,pixelWidth:577,positionX:\"center\",positionY:\"center\",sizes:\"302px\",src:\"https://framerusercontent.com/images/yTAgWJqWldNnInvCGCtHXbrIjSk.png\",srcSet:\"https://framerusercontent.com/images/yTAgWJqWldNnInvCGCtHXbrIjSk.png?scale-down-to=512 512w,https://framerusercontent.com/images/yTAgWJqWldNnInvCGCtHXbrIjSk.png 577w\"},className:\"framer-1lt0voa\",\"data-framer-name\":\"image_62Spatial_Sense_Scanner-removebg-preview (1) 1\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-147brys\",\"data-framer-name\":\"Hoe Products Work\",id:elementId5,ref:ref6,children:[/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",pixelHeight:2700,pixelWidth:3600,sizes:\"283px\",src:\"https://framerusercontent.com/images/zbaoX8GhUVjtAWW2jrEw258oQ7w.png\",srcSet:\"https://framerusercontent.com/images/zbaoX8GhUVjtAWW2jrEw258oQ7w.png?scale-down-to=512 512w,https://framerusercontent.com/images/zbaoX8GhUVjtAWW2jrEw258oQ7w.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zbaoX8GhUVjtAWW2jrEw258oQ7w.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/zbaoX8GhUVjtAWW2jrEw258oQ7w.png 3600w\"},className:\"framer-uywpya\"}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-193547b\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wv2770\",\"data-framer-name\":\"Frame 1000003442\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:\"Spatial Sense Cloud\"})}),className:\"framer-rg5fpd\",\"data-framer-name\":\"Spatial Sense Scanner\",fonts:[\"GF;DM Sans-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:\"Real-time Insights from Scanners and Edge Devices\"})}),className:\"framer-j0n36s\",\"data-framer-name\":\"Precision Redefined for Every Project\",fonts:[\"GF;DM Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"VfkiqOh5A\"},implicitPathVariables:undefined},{href:{webPageId:\"VfkiqOh5A\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1gio33d-container\",nodeId:\"iCdh7E3eT\",rendersWithMotion:true,scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NUYgUWtOw:{Ag6XWw_qR:resolvedLinks5[1]}},children:/*#__PURE__*/_jsx(Button,{Ag6XWw_qR:resolvedLinks5[0],height:\"100%\",HEosbWztN:\"View Details\",id:\"iCdh7E3eT\",layoutId:\"iCdh7E3eT\",variant:\"HMhFJvw_P\",width:\"100%\"})})})})})]})]})]})}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gehu91 hidden-149fdtj hidden-boc3wm hidden-1ssf6fz\",\"data-framer-name\":\"Mob- Areas\",children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-lff8ya\",\"data-framer-appear-id\":\"lff8ya\",\"data-framer-name\":\"Heading Text\",initial:animation1,optimized:true,children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\"},children:\"HOW KODIFLY EMPOWERS THE FUTURE?\"})}),className:\"framer-y112st\",\"data-framer-appear-id\":\"y112st\",\"data-framer-name\":\"OUR PRODUCTS\",fonts:[\"GF;DM Sans-500\"],initial:animation3,optimized:true,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation10,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:\"Kodifly Empowers the Future of Transportation with Advanced Digital Twin Technology.\"})}),className:\"framer-1ureope\",\"data-framer-appear-id\":\"1ureope\",\"data-framer-name\":\"Precision Redefined for Every Project\",fonts:[\"GF;DM Sans-700\"],initial:animation11,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i1ayt1\",\"data-framer-name\":\"Areas Stack\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-neamix\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gKcyARiAQ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4500,intrinsicWidth:8e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+560+0+0+3150.4+60+272.4+0+0+40+0),pixelHeight:4500,pixelWidth:8e3,sizes:\"280px\",src:\"https://framerusercontent.com/images/KfL61DLx3fAw7maII2vPiobvok.jpg\",srcSet:\"https://framerusercontent.com/images/KfL61DLx3fAw7maII2vPiobvok.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/KfL61DLx3fAw7maII2vPiobvok.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/KfL61DLx3fAw7maII2vPiobvok.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/KfL61DLx3fAw7maII2vPiobvok.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/KfL61DLx3fAw7maII2vPiobvok.jpg 8000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4500,intrinsicWidth:8e3,pixelHeight:4500,pixelWidth:8e3,sizes:\"280px\",src:\"https://framerusercontent.com/images/KfL61DLx3fAw7maII2vPiobvok.jpg\",srcSet:\"https://framerusercontent.com/images/KfL61DLx3fAw7maII2vPiobvok.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/KfL61DLx3fAw7maII2vPiobvok.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/KfL61DLx3fAw7maII2vPiobvok.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/KfL61DLx3fAw7maII2vPiobvok.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/KfL61DLx3fAw7maII2vPiobvok.jpg 8000w\"},className:\"framer-1x0vsoo\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11ltgkz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlM7U3dpdHplci1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Switzer\", \"Switzer Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.6px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\"},children:\"Highway\"})}),className:\"framer-1vd72db\",fonts:[\"FS;Switzer-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\"},children:\"Advancing road safety and traffic flow with innovative monitoring and predictive analytics, optimizing highway operations and travel safety.\"})}),className:\"framer-4ds886\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-baih6w\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gKcyARiAQ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:5e3,intrinsicWidth:8e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+560+0+0+3150.4+60+272.4+0+585.2+40+0),pixelHeight:5e3,pixelWidth:8e3,sizes:\"280px\",src:\"https://framerusercontent.com/images/htUx3m2BgHQQweSiXt1ZGlBXhgg.jpg\",srcSet:\"https://framerusercontent.com/images/htUx3m2BgHQQweSiXt1ZGlBXhgg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/htUx3m2BgHQQweSiXt1ZGlBXhgg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/htUx3m2BgHQQweSiXt1ZGlBXhgg.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/htUx3m2BgHQQweSiXt1ZGlBXhgg.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/htUx3m2BgHQQweSiXt1ZGlBXhgg.jpg 8000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:5e3,intrinsicWidth:8e3,pixelHeight:5e3,pixelWidth:8e3,sizes:\"280px\",src:\"https://framerusercontent.com/images/htUx3m2BgHQQweSiXt1ZGlBXhgg.jpg\",srcSet:\"https://framerusercontent.com/images/htUx3m2BgHQQweSiXt1ZGlBXhgg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/htUx3m2BgHQQweSiXt1ZGlBXhgg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/htUx3m2BgHQQweSiXt1ZGlBXhgg.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/htUx3m2BgHQQweSiXt1ZGlBXhgg.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/htUx3m2BgHQQweSiXt1ZGlBXhgg.jpg 8000w\"},className:\"framer-12hh74\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c75d32\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlM7U3dpdHplci1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Switzer\", \"Switzer Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.6px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\"},children:\"Railway\"})}),className:\"framer-1s7viuv\",fonts:[\"FS;Switzer-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\"},children:\"Empowering rail operations with AI and spatial analytics for safety enhancements and efficient management, including vegetation control and integrity monitoring.\"})}),className:\"framer-1t9sktr\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1tsd3ju\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gKcyARiAQ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2160,intrinsicWidth:3840,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+560+0+0+3150.4+60+272.4+0+1170.4+40+0),pixelHeight:2160,pixelWidth:3840,sizes:\"280px\",src:\"https://framerusercontent.com/images/Vo67ymjgkgj2cimns4nA1Ll2CU.jpg\",srcSet:\"https://framerusercontent.com/images/Vo67ymjgkgj2cimns4nA1Ll2CU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Vo67ymjgkgj2cimns4nA1Ll2CU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Vo67ymjgkgj2cimns4nA1Ll2CU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Vo67ymjgkgj2cimns4nA1Ll2CU.jpg 3840w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2160,intrinsicWidth:3840,pixelHeight:2160,pixelWidth:3840,sizes:\"280px\",src:\"https://framerusercontent.com/images/Vo67ymjgkgj2cimns4nA1Ll2CU.jpg\",srcSet:\"https://framerusercontent.com/images/Vo67ymjgkgj2cimns4nA1Ll2CU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Vo67ymjgkgj2cimns4nA1Ll2CU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Vo67ymjgkgj2cimns4nA1Ll2CU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Vo67ymjgkgj2cimns4nA1Ll2CU.jpg 3840w\"},className:\"framer-q5h13d\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17b60g8\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlM7U3dpdHplci1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Switzer\", \"Switzer Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.6px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\"},children:\"Construction\"})}),className:\"framer-h7i21r\",fonts:[\"FS;Switzer-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\"},children:\"Transforming construction processes with digital twins, precise site surveillance, and asset management to streamline projects and ensure compliance.\"})}),className:\"framer-5w4y3p\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fduzb4 hidden-149fdtj hidden-boc3wm hidden-1ssf6fz\",\"data-framer-name\":\"Mob- 3D view\",children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-1uzprne\",\"data-framer-appear-id\":\"1uzprne\",\"data-framer-name\":\"Heading Text\",initial:animation1,optimized:true,children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\"},children:\"HOW DIGITAL TWIN WORKS?\"})}),className:\"framer-8y01a1\",\"data-framer-appear-id\":\"8y01a1\",\"data-framer-name\":\"OUR PRODUCTS\",fonts:[\"GF;DM Sans-500\"],initial:animation3,optimized:true,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:\"Harnessing LiDAR for Real-Time Visualization and 3D Point Cloud View.\"})}),className:\"framer-1f83aql\",\"data-framer-appear-id\":\"1f83aql\",\"data-framer-name\":\"Precision Redefined for Every Project\",fonts:[\"GF;DM Sans-700\"],initial:animation3,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-wbcrq9-container\",\"data-framer-name\":\"Mob-slideshow\",isModuleExternal:true,name:\"Mob-slideshow\",nodeId:\"xddNbAPSH\",scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:10,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:28,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"xddNbAPSH\",intervalControl:4,itemAmount:1,layoutId:\"xddNbAPSH\",name:\"Mob-slideshow\",padding:0,paddingBottom:40,paddingLeft:0,paddingPerSide:true,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:22,dotSize:8,dotsOpacity:.5,dotsPadding:8,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-lcswoj-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"oAVXcx2FR\",rendersWithMotion:true,scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<div class=\"sketchfab-embed-wrapper\"> <iframe title=\"Demo for ETU Box Detection\" frameborder=\"0\" allowfullscreen mozallowfullscreen=\"true\" webkitallowfullscreen=\"true\" allow=\"autoplay; fullscreen; xr-spatial-tracking\" xr-spatial-tracking execution-while-out-of-viewport execution-while-not-rendered web-share width=\"300\" height=\"300\" src=\"https://sketchfab.com/models/a7d630cc46324d62a9b38a77fdb1a58a/embed\"> </iframe></div>',id:\"oAVXcx2FR\",layoutId:\"oAVXcx2FR\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-vjnpjy-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"pB5GDbE7D\",rendersWithMotion:true,scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<div class=\"sketchfab-embed-wrapper\"> <iframe title=\"Roadside Infrastructure Model\" frameborder=\"0\" allowfullscreen mozallowfullscreen=\"true\" webkitallowfullscreen=\"true\" allow=\"autoplay; fullscreen; xr-spatial-tracking\" xr-spatial-tracking execution-while-out-of-viewport execution-while-not-rendered web-share width=\"300\" height=\"300\" src=\"https://sketchfab.com/models/1d5609347e21480381136900cba80dcb/embed\"> </iframe></div>',id:\"pB5GDbE7D\",layoutId:\"pB5GDbE7D\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-18tjnpg-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"EUafLx3e9\",rendersWithMotion:true,scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<div class=\"sketchfab-embed-wrapper\"> <iframe title=\"3D Model of Segmented Railway Infrastructure\" frameborder=\"0\" allowfullscreen mozallowfullscreen=\"true\" webkitallowfullscreen=\"true\" allow=\"autoplay; fullscreen; xr-spatial-tracking\" xr-spatial-tracking execution-while-out-of-viewport execution-while-not-rendered web-share width=\"300\" height=\"300\" src=\"https://sketchfab.com/models/9fe479499b46412686dd8df4c95d175a/embed\"> </iframe></div>',id:\"EUafLx3e9\",layoutId:\"EUafLx3e9\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10l2q5z hidden-149fdtj hidden-boc3wm hidden-1ssf6fz\",\"data-framer-name\":\"Mob-Digital Twin\",children:[/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-1cn2fy3\",\"data-framer-appear-id\":\"1cn2fy3\",\"data-framer-name\":\"Logos\",initial:animation1,optimized:true,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11j7fhu\",\"data-framer-name\":\"Frame 1000003387\",children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\"},children:\"HOW WE GATHER THE SPATIAL TWIN DATA?\"})}),className:\"framer-plpdwu\",\"data-framer-appear-id\":\"plpdwu\",\"data-framer-name\":\"OUR PRODUCTS\",fonts:[\"GF;DM Sans-500\"],initial:animation3,optimized:true,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:\"Unlocking the Value of Spatial Digital Twins\"})}),className:\"framer-vz2o9n\",\"data-framer-appear-id\":\"vz2o9n\",\"data-framer-name\":\"Precision Redefined for Every Project\",fonts:[\"GF;DM Sans-700\"],initial:animation3,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a2zzub\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-nkflnh\",whileHover:animation12,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6dhgc7\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3},className:\"framer-1setmay\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gKcyARiAQ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:591,intrinsicWidth:1141.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+560+0+0+6031.4+60+272+0+0+0+0+0+0+0+25),pixelHeight:1182,pixelWidth:2283,sizes:\"250px\",src:\"https://framerusercontent.com/images/4uIGHX1RUA7ajRBrZtMH2llj1P0.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/4uIGHX1RUA7ajRBrZtMH2llj1P0.png?scale-down-to=512 512w,https://framerusercontent.com/images/4uIGHX1RUA7ajRBrZtMH2llj1P0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4uIGHX1RUA7ajRBrZtMH2llj1P0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/4uIGHX1RUA7ajRBrZtMH2llj1P0.png 2283w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:591,intrinsicWidth:1141.5,pixelHeight:1182,pixelWidth:2283,sizes:\"250px\",src:\"https://framerusercontent.com/images/4uIGHX1RUA7ajRBrZtMH2llj1P0.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/4uIGHX1RUA7ajRBrZtMH2llj1P0.png?scale-down-to=512 512w,https://framerusercontent.com/images/4uIGHX1RUA7ajRBrZtMH2llj1P0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4uIGHX1RUA7ajRBrZtMH2llj1P0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/4uIGHX1RUA7ajRBrZtMH2llj1P0.png 2283w\"},className:\"framer-1f3qb0g\",\"data-framer-name\":\"Screenshot_2023_10_26_at_3_06_1\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10k87wj\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:\"Digital Twin Creation\"})}),className:\"framer-17rebhu\",fonts:[\"GF;DM Sans-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Utilizes precise LiDAR scanning for accurate railway infrastructure 3D modeling.\"})}),className:\"framer-8qpp7o\",fonts:[\"GF;DM Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fzkvd8\",whileHover:animation12,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gKcyARiAQ:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1310,intrinsicWidth:2112,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+560+0+0+6031.4+60+272+0+418.8+0+20.1),pixelHeight:1310,pixelWidth:2112,positionX:\"center\",positionY:\"center\",sizes:\"300px\",src:\"https://framerusercontent.com/images/9KVLUTRbPkSv6wEMtgenK80zZJU.png\",srcSet:\"https://framerusercontent.com/images/9KVLUTRbPkSv6wEMtgenK80zZJU.png?scale-down-to=512 512w,https://framerusercontent.com/images/9KVLUTRbPkSv6wEMtgenK80zZJU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9KVLUTRbPkSv6wEMtgenK80zZJU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/9KVLUTRbPkSv6wEMtgenK80zZJU.png 2112w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1310,intrinsicWidth:2112,pixelHeight:1310,pixelWidth:2112,positionX:\"center\",positionY:\"center\",sizes:\"300px\",src:\"https://framerusercontent.com/images/9KVLUTRbPkSv6wEMtgenK80zZJU.png\",srcSet:\"https://framerusercontent.com/images/9KVLUTRbPkSv6wEMtgenK80zZJU.png?scale-down-to=512 512w,https://framerusercontent.com/images/9KVLUTRbPkSv6wEMtgenK80zZJU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9KVLUTRbPkSv6wEMtgenK80zZJU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/9KVLUTRbPkSv6wEMtgenK80zZJU.png 2112w\"},className:\"framer-l1x8q9\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1scmm93\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:\"AI-Powered Insights\"})}),className:\"framer-1de0wki\",fonts:[\"GF;DM Sans-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Processes 3D data with AI for crucial inspection and safety insights.\"})}),className:\"framer-rwj7lp\",fonts:[\"GF;DM Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4z62y\",whileHover:animation12,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gKcyARiAQ:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1180,intrinsicWidth:2159,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+560+0+0+6031.4+60+272+0+845.8+20+-1.9),pixelHeight:1180,pixelWidth:2159,positionX:\"center\",positionY:\"center\",sizes:\"300px\",src:\"https://framerusercontent.com/images/JkhMREKefKXvH7Spjyiz9jA.png\",srcSet:\"https://framerusercontent.com/images/JkhMREKefKXvH7Spjyiz9jA.png?scale-down-to=512 512w,https://framerusercontent.com/images/JkhMREKefKXvH7Spjyiz9jA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JkhMREKefKXvH7Spjyiz9jA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/JkhMREKefKXvH7Spjyiz9jA.png 2159w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1180,intrinsicWidth:2159,pixelHeight:1180,pixelWidth:2159,positionX:\"center\",positionY:\"center\",sizes:\"300px\",src:\"https://framerusercontent.com/images/JkhMREKefKXvH7Spjyiz9jA.png\",srcSet:\"https://framerusercontent.com/images/JkhMREKefKXvH7Spjyiz9jA.png?scale-down-to=512 512w,https://framerusercontent.com/images/JkhMREKefKXvH7Spjyiz9jA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JkhMREKefKXvH7Spjyiz9jA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/JkhMREKefKXvH7Spjyiz9jA.png 2159w\"},className:\"framer-nsxsn6\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lfoq9k\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:\"Efficient Asset Management\"})}),className:\"framer-5xn2g9\",fonts:[\"GF;DM Sans-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Combines digital twins and AI for improved railway asset safety and efficiency.\"})}),className:\"framer-1534hxc\",fonts:[\"GF;DM Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qq0k6q\",whileHover:animation12,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gKcyARiAQ:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2446,intrinsicWidth:2808,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+560+0+0+6031.4+60+272+0+1272.8+0+55.6),pixelHeight:2446,pixelWidth:2808,positionX:\"center\",positionY:\"center\",sizes:\"240px\",src:\"https://framerusercontent.com/images/P3wykaULWvjTgByUvm9ILmt8Ytc.png\",srcSet:\"https://framerusercontent.com/images/P3wykaULWvjTgByUvm9ILmt8Ytc.png?scale-down-to=512 512w,https://framerusercontent.com/images/P3wykaULWvjTgByUvm9ILmt8Ytc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/P3wykaULWvjTgByUvm9ILmt8Ytc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/P3wykaULWvjTgByUvm9ILmt8Ytc.png 2808w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2446,intrinsicWidth:2808,pixelHeight:2446,pixelWidth:2808,positionX:\"center\",positionY:\"center\",sizes:\"240px\",src:\"https://framerusercontent.com/images/P3wykaULWvjTgByUvm9ILmt8Ytc.png\",srcSet:\"https://framerusercontent.com/images/P3wykaULWvjTgByUvm9ILmt8Ytc.png?scale-down-to=512 512w,https://framerusercontent.com/images/P3wykaULWvjTgByUvm9ILmt8Ytc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/P3wykaULWvjTgByUvm9ILmt8Ytc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/P3wykaULWvjTgByUvm9ILmt8Ytc.png 2808w\"},className:\"framer-sltw5l\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vo9897\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:\"Predictive Maintenance\"})}),className:\"framer-1pk9z22\",fonts:[\"GF;DM Sans-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"AI detects early signs of issues, allowing timely, economical fixes.\"})}),className:\"framer-1p84f8x\",fonts:[\"GF;DM Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lrqtgb hidden-149fdtj hidden-boc3wm hidden-1ssf6fz\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gKcyARiAQ:{y:(componentViewport?.y||0)+0+560+0+0+8146.2+100+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:300,width:\"350px\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-fnt45j-container\",nodeId:\"d0KOBoxYA\",rendersWithMotion:true,scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(Dashboard,{height:\"100%\",id:\"d0KOBoxYA\",layoutId:\"d0KOBoxYA\",style:{height:\"100%\",width:\"100%\"},variant:\"LffExgguW\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a6a8ih\",id:elementId6,ref:ref7,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-43117a14-6afd-45ed-acaa-cf3557fdf996, rgb(46, 110, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(16, 16, 18))\"},children:\"Meet  \"}),\"Spatial Sense\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(102, 101, 114))\"},children:\"  \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-79f54f4b-5c08-4adb-84cd-68f4d833bf59, rgb(17, 16, 19))\"},children:\"Platform\"})]})}),className:\"framer-bywmm7\",fonts:[\"GF;DM Sans-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2840d062-261b-4eca-acdb-d7c218ee2723, rgb(102, 101, 114))\"},children:\"Leverage our platform's powerful analytics to unlock actionable insights and drive informed decisions across your infrastructure network.\"})}),className:\"framer-1be0xam\",fonts:[\"GF;DM Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"VfkiqOh5A\"},implicitPathVariables:undefined},{href:{webPageId:\"VfkiqOh5A\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gKcyARiAQ:{y:(componentViewport?.y||0)+0+560+0+0+8146.2+100+332+40+296}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10zs68j-container\",nodeId:\"VTm6VjgPq\",scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gKcyARiAQ:{Ag6XWw_qR:resolvedLinks6[1]}},children:/*#__PURE__*/_jsx(Button,{Ag6XWw_qR:resolvedLinks6[0],height:\"100%\",HEosbWztN:\"View Product Details\",id:\"VTm6VjgPq\",layoutId:\"VTm6VjgPq\",variant:\"HMhFJvw_P\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-10f0t2k\",id:elementId7,ref:ref8,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8mu3qk\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-8mxx7u\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-9th0fp-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"CZFtj1xaz\",scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(Hero,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"menu\",iconSelection:\"RectangleGroup\",id:\"CZFtj1xaz\",layoutId:\"CZFtj1xaz\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1.6px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(102, 101, 114))\"},children:\"Digital Twin of Infrastructure\"})}),className:\"framer-tkqmnk\",fonts:[\"GF;DM Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2840d062-261b-4eca-acdb-d7c218ee2723, rgb(102, 101, 114))\"},children:\"Create a comprehensive digital repository of your infrastructure assets, streamlined for easy access and management.\"})}),className:\"framer-1wpx04n\",fonts:[\"GF;DM Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1u7i2hd\",id:elementId8,ref:ref9,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kmq6yb\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-dn06qm\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-e3mpwe-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"jNyuUvxP9\",scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(Hero,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"cube\",iconSelection:\"Home\",id:\"jNyuUvxP9\",layoutId:\"jNyuUvxP9\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation14,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1.6px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(34, 34, 34))\"},children:\"3D Point Cloud Analytics\"})}),className:\"framer-15c0wci\",fonts:[\"GF;DM Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2840d062-261b-4eca-acdb-d7c218ee2723, rgb(102, 101, 114))\"},children:\"Harness the precision of 3D point cloud analytics to visualize and analyze the spatial dynamics of your assets with unmatched detail.\"})}),className:\"framer-1ylqnjb\",fonts:[\"GF;DM Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-7qvq7w\",id:elementId9,ref:ref10,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ya2xzo\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation14,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-5kakg\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-11iv4tu-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ab0PIBcWn\",scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(Hero,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Heart\",id:\"ab0PIBcWn\",layoutId:\"ab0PIBcWn\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation14,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1.6px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(34, 34, 34))\"},children:\"Actionable Insights on Asset Health\"})}),className:\"framer-iqb614\",fonts:[\"GF;DM Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2840d062-261b-4eca-acdb-d7c218ee2723, rgb(102, 101, 114))\"},children:\"Gain critical insights into the health of your assets, with data-driven intelligence that informs maintenance and operational strategies.\"})}),className:\"framer-16fjtg7\",fonts:[\"GF;DM Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-b57mpw\",id:elementId10,ref:ref11,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-txce8n\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation14,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1sqsdlm\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wfskxn-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"doK3eXZBo\",scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(Hero,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"document\",iconSelection:\"Home\",id:\"doK3eXZBo\",layoutId:\"doK3eXZBo\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation14,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1.6px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(34, 34, 34))\"},children:\"Maintenance Reports\"})}),className:\"framer-vnd2ae\",fonts:[\"GF;DM Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2840d062-261b-4eca-acdb-d7c218ee2723, rgb(102, 101, 114))\"},children:\"Effortlessly generate and export detailed maintenance reports, ensuring that actionable information is readily available for on-the-ground teams.\"})}),className:\"framer-1n6xips\",fonts:[\"GF;DM Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"section\",{className:\"framer-i7bde4 hidden-149fdtj hidden-boc3wm hidden-1ssf6fz\",children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-17u4ifq\",\"data-framer-appear-id\":\"17u4ifq\",\"data-framer-name\":\"Logos\",initial:animation1,optimized:true,children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\"},children:\"OUR KEY FEATURES\"})}),className:\"framer-lxrrss\",\"data-framer-appear-id\":\"lxrrss\",\"data-framer-name\":\"OUR PRODUCTS\",fonts:[\"GF;DM Sans-500\"],initial:animation3,optimized:true,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-o3e5h0\",\"data-styles-preset\":\"stylesPresetHeading1\",style:{\"--framer-text-alignment\":\"center\"},children:\"Empowering Your Success with Advanced Features for Optimal Performance!\"})}),className:\"framer-61wv8n\",\"data-framer-appear-id\":\"61wv8n\",\"data-framer-name\":\"Precision Redefined for Every Project\",fonts:[\"Inter\"],initial:animation3,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cpdfn7\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-igckze\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gKcyARiAQ:{y:(componentViewport?.y||0)+0+560+0+0+9994.2+50+151.2+0+0+32+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:247,width:\"260px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-kxddeg-container\",nodeId:\"Se2elaDs_\",scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(FeatureCard2,{aa5hKvvkV:\"Monitor\",BFuTBK47u:\"Instantly track and analyze spatial data.\",height:\"100%\",id:\"Se2elaDs_\",jFgwazo_q:\"var(--token-43117a14-6afd-45ed-acaa-cf3557fdf996, rgb(46, 110, 255))\",layoutId:\"Se2elaDs_\",oc_8kOa9a:\"Real Time Monitoring\",OLqpcuIeL:false,qkbS0bCx8:\"Learn more\",style:{height:\"100%\",width:\"100%\"},UaS05r1yh:\"rgb(235, 241, 255)\",variant:\"XLkWWOhdz\",width:\"100%\",Y3X4CKI40:true,ZA2T3dGW4:false})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gKcyARiAQ:{y:(componentViewport?.y||0)+0+560+0+0+9994.2+50+151.2+0+0+32+257}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:247,width:\"260px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1o4rxmz-container\",nodeId:\"rD7iWFaa7\",scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(FeatureCard2,{aa5hKvvkV:\"Suitcase\",BFuTBK47u:\"Efficiently catalog and monitor infrastructure assets.\",height:\"100%\",id:\"rD7iWFaa7\",jFgwazo_q:\"var(--token-43117a14-6afd-45ed-acaa-cf3557fdf996, rgb(46, 110, 255))\",layoutId:\"rD7iWFaa7\",oc_8kOa9a:\"Asset Managment\",OLqpcuIeL:false,qkbS0bCx8:\"Learn more\",style:{height:\"100%\",width:\"100%\"},UaS05r1yh:\"rgb(235, 241, 255)\",variant:\"XLkWWOhdz\",width:\"100%\",Y3X4CKI40:true,ZA2T3dGW4:false})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-22ry5v\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gKcyARiAQ:{y:(componentViewport?.y||0)+0+560+0+0+9994.2+50+151.2+0+578+30+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:247,width:\"260px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1f7nvfb-container\",nodeId:\"TgJV0ObZR\",scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(FeatureCard2,{aa5hKvvkV:\"TrafficCone\",BFuTBK47u:\"Improve flow and reduce congestion intelligently.\",height:\"100%\",id:\"TgJV0ObZR\",jFgwazo_q:\"var(--token-43117a14-6afd-45ed-acaa-cf3557fdf996, rgb(46, 110, 255))\",layoutId:\"TgJV0ObZR\",oc_8kOa9a:\"Traffic Optimization\",OLqpcuIeL:false,qkbS0bCx8:\"Learn more\",style:{height:\"100%\",width:\"100%\"},UaS05r1yh:\"rgb(235, 241, 255)\",variant:\"XLkWWOhdz\",width:\"100%\",Y3X4CKI40:true,ZA2T3dGW4:false})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gKcyARiAQ:{y:(componentViewport?.y||0)+0+560+0+0+9994.2+50+151.2+0+578+30+267}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:247,width:\"260px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1983li6-container\",nodeId:\"z8ovOPFB9\",scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(FeatureCard2,{aa5hKvvkV:\"ShieldCheck\",BFuTBK47u:\"Reduce risks with advanced sensing technology.\",height:\"100%\",id:\"z8ovOPFB9\",jFgwazo_q:\"var(--token-43117a14-6afd-45ed-acaa-cf3557fdf996, rgb(46, 110, 255))\",layoutId:\"z8ovOPFB9\",oc_8kOa9a:\"Safety Enhancement\",OLqpcuIeL:false,qkbS0bCx8:\"Learn more\",style:{height:\"100%\",width:\"100%\"},UaS05r1yh:\"rgb(235, 241, 255)\",variant:\"XLkWWOhdz\",width:\"100%\",Y3X4CKI40:true,ZA2T3dGW4:false})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ywip2p\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gKcyARiAQ:{y:(componentViewport?.y||0)+0+560+0+0+9994.2+50+151.2+0+1162+25+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:247,width:\"260px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1f8x10j-container\",nodeId:\"RVTcdKFcg\",scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(FeatureCard2,{aa5hKvvkV:\"Target\",BFuTBK47u:\"Virtual replicas of infrastructure for planning and analysis.\",height:\"100%\",id:\"RVTcdKFcg\",jFgwazo_q:\"var(--token-43117a14-6afd-45ed-acaa-cf3557fdf996, rgb(46, 110, 255))\",layoutId:\"RVTcdKFcg\",oc_8kOa9a:\"Digital Twin Creation\",OLqpcuIeL:false,qkbS0bCx8:\"Learn more\",style:{height:\"100%\",width:\"100%\"},UaS05r1yh:\"rgb(235, 241, 255)\",variant:\"XLkWWOhdz\",width:\"100%\",Y3X4CKI40:true,ZA2T3dGW4:false})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gKcyARiAQ:{y:(componentViewport?.y||0)+0+560+0+0+9994.2+50+151.2+0+1162+25+267}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:247,width:\"260px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fdgf0i-container\",nodeId:\"vSIzTFfYI\",scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(FeatureCard2,{aa5hKvvkV:\"ChartLine\",BFuTBK47u:\"Derive actionable insights from complex datasets.\",height:\"100%\",id:\"vSIzTFfYI\",jFgwazo_q:\"var(--token-43117a14-6afd-45ed-acaa-cf3557fdf996, rgb(46, 110, 255))\",layoutId:\"vSIzTFfYI\",oc_8kOa9a:\"Data Analytics Platform\",OLqpcuIeL:false,qkbS0bCx8:\"Learn more\",style:{height:\"100%\",width:\"100%\"},UaS05r1yh:\"rgb(235, 241, 255)\",variant:\"XLkWWOhdz\",width:\"100%\",Y3X4CKI40:true,ZA2T3dGW4:false})})})})]})]})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2fd2q5 hidden-boc3wm hidden-1jq0hhp\",children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-ac336l\",\"data-framer-appear-id\":\"ac336l\",\"data-framer-name\":\"Section Heading\",initial:animation1,optimized:true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\"},children:\"SOLUTIONS\"})}),className:\"framer-1y84n6v\",\"data-framer-name\":\"OUR PRODUCTS\",fonts:[\"GF;DM Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:\"Cutting Edge Systems for Transport Safety\"})}),className:\"framer-1t7p6zt\",\"data-framer-name\":\"Precision Redefined for Every Project\",fonts:[\"GF;DM Sans-700\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-g91zf7\",\"data-framer-name\":\"Spatial Twin Rail\",id:elementId11,ref:ref12,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1onadz5\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ikc2ow\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-fwvyci\",\"data-styles-preset\":\"HvV7GEWTd\",children:\"SpatialTwin Rail\"})}),className:\"framer-58iuam\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Comprehensive technology powering efficient, safer rails.\"})}),className:\"framer-1meyeso\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-193gpxp\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+60+0+0+1e3+60+512+0+136.6+0+140.8+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-a81xq4-container\",nodeId:\"s2_GS0RmH\",scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",HEosbWztN:\"View Product Details\",id:\"s2_GS0RmH\",layoutId:\"s2_GS0RmH\",style:{height:\"100%\"},variant:\"Hsf5FtJp3\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XbRZzmcO0\"},motionChild:true,nodeId:\"Ia6KssXEn\",scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1guociy framer-1jhgmtf\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Learn More\"})}),className:\"framer-1skqu67\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+60+0+0+1e3+60+512+0),pixelHeight:2800,pixelWidth:5944,positionX:\"left\",positionY:\"center\",sizes:\"650px\",src:\"https://framerusercontent.com/images/0s2NbgJrHxaS2C9TiNF4kazappk.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/0s2NbgJrHxaS2C9TiNF4kazappk.png?scale-down-to=512 512w,https://framerusercontent.com/images/0s2NbgJrHxaS2C9TiNF4kazappk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0s2NbgJrHxaS2C9TiNF4kazappk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/0s2NbgJrHxaS2C9TiNF4kazappk.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/0s2NbgJrHxaS2C9TiNF4kazappk.png 5944w\"},className:\"framer-1f98hfz\",\"data-framer-name\":\"Image\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qdmtus\",\"data-framer-name\":\"Mobile Mapping System\",id:elementId12,ref:ref13,children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"fIopIGtuS\"},motionChild:true,nodeId:\"sNMUnZ0zV\",scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation,as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+60+0+0+1e3+60+1010+4),pixelHeight:348,pixelWidth:717,positionX:\"center\",positionY:\"center\",sizes:\"560px\",src:\"https://framerusercontent.com/images/8kMDMaU1cgH02LheVRybOEQPY.png\",srcSet:\"https://framerusercontent.com/images/8kMDMaU1cgH02LheVRybOEQPY.png?scale-down-to=512 512w,https://framerusercontent.com/images/8kMDMaU1cgH02LheVRybOEQPY.png 717w\"},className:\"framer-eigxwm framer-1jhgmtf\",\"data-framer-appear-id\":\"eigxwm\",\"data-framer-name\":\"Image\",initial:animation1,optimized:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-161wn6u\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-fwvyci\",\"data-styles-preset\":\"HvV7GEWTd\",children:\"SpatialSense - 360 Mobile Mapping System\"})}),className:\"framer-qrb9sj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Urban mapping and multi layer data output for maintenance and work planning.\"})}),className:\"framer-rtkmu6\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13ncsvq\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+60+0+0+1e3+60+1010+0+100+217.4+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-gwwokl-container\",nodeId:\"k_qoMthll\",scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",HEosbWztN:\"View Product Details\",id:\"k_qoMthll\",layoutId:\"k_qoMthll\",style:{height:\"100%\"},variant:\"Hsf5FtJp3\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"fIopIGtuS\"},motionChild:true,nodeId:\"QiIBvB9z6\",scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1hqrii4 framer-1jhgmtf\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Learn More\"})}),className:\"framer-rlzyco\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-1efpo95\",\"data-framer-appear-id\":\"1efpo95\",\"data-framer-name\":\"Section Heading\",initial:animation1,optimized:true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\"},children:\"OUR PRODUCTS\"})}),className:\"framer-lxui7r\",\"data-framer-name\":\"OUR PRODUCTS\",fonts:[\"GF;DM Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:\"Precision Redefined for\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:\" Every Application\"})]}),className:\"framer-1cmmcg8\",\"data-framer-name\":\"Precision Redefined for Every Project\",fonts:[\"GF;DM Sans-700\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-168x6pg\",\"data-framer-name\":\"2 Columns Image Text\",children:[/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+60+0+0+1e3+60+2420+75.5),positionX:\"center\",positionY:\"center\",sizes:\"449px\",src:\"https://framerusercontent.com/images/MufM19JMDcy7ZIU1h9KkFaQfgs.png\",srcSet:\"https://framerusercontent.com/images/MufM19JMDcy7ZIU1h9KkFaQfgs.png?scale-down-to=1024 756w,https://framerusercontent.com/images/MufM19JMDcy7ZIU1h9KkFaQfgs.png 1463w\"},className:\"framer-aqyjg7\",\"data-framer-name\":\"image_62Spatial_Sense_Scanner-removebg-preview (1) 1\"}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-4ped4i\",\"data-framer-name\":\"Frame 1000003446\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-civpsd\",\"data-framer-name\":\"Frame 1000003442\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(45, 110, 255)\"},children:\"SS-128\"})}),className:\"framer-f2e04z\",\"data-framer-name\":\"SS1208\",fonts:[\"GF;DM Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:\"Spatial Sense Scanner\"})}),className:\"framer-lc10nl\",\"data-framer-name\":\"Spatial Sense Scanner\",fonts:[\"GF;DM Sans-700\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ohog3a\",\"data-framer-name\":\"Frame 1000003444\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jee4p4\",\"data-framer-name\":\"Frame 1000003443\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:\"Enhanced 3D Color Models for Improved Infrastructure Management\"})}),className:\"framer-hqfwj8\",\"data-framer-name\":\"Precision Redefined for Every Project\",fonts:[\"GF;DM Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"y_ti4VVir\"},implicitPathVariables:undefined},{href:{webPageId:\"y_ti4VVir\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+60+0+0+1e3+60+2420+-36+0+352+0+0+0+176,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-18armrt-container\",nodeId:\"U_ETk21Jx\",rendersWithMotion:true,scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ApRcdMQAL:{Ag6XWw_qR:resolvedLinks7[1]}},children:/*#__PURE__*/_jsx(Button,{Ag6XWw_qR:resolvedLinks7[0],height:\"100%\",HEosbWztN:\"View Details\",id:\"U_ETk21Jx\",layoutId:\"U_ETk21Jx\",variant:\"HMhFJvw_P\",width:\"100%\"})})})})})]})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pgkxad\",\"data-framer-name\":\"2 Columns Image Text\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1j8n7hi\",\"data-framer-name\":\"Frame 1000003446\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7vvmtk\",\"data-framer-name\":\"Frame 1000003442\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(45, 110, 255)\"},children:\"SE-64\"})}),className:\"framer-2yczbw\",\"data-framer-name\":\"SS1208\",fonts:[\"GF;DM Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:\"Spatial Sense Edge Device\"})}),className:\"framer-1pg7ove\",\"data-framer-name\":\"Spatial Sense Scanner\",fonts:[\"GF;DM Sans-700\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xldbg1\",\"data-framer-name\":\"Frame 1000003444\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9iu527\",\"data-framer-name\":\"Frame 1000003443\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:\"On-the-go Processing Even in Harsh Environments\"})}),className:\"framer-5j1onl\",\"data-framer-name\":\"Precision Redefined for Every Project\",fonts:[\"GF;DM Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Au1aTOuQ1\"},implicitPathVariables:undefined},{href:{webPageId:\"Au1aTOuQ1\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+60+0+0+1e3+60+2960+-36+0+352+0+0+0+176,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1a4y97g-container\",nodeId:\"fsZeTbdua\",rendersWithMotion:true,scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ApRcdMQAL:{Ag6XWw_qR:resolvedLinks8[1]}},children:/*#__PURE__*/_jsx(Button,{Ag6XWw_qR:resolvedLinks8[0],height:\"100%\",HEosbWztN:\"View Details\",id:\"fsZeTbdua\",layoutId:\"fsZeTbdua\",variant:\"HMhFJvw_P\",width:\"100%\"})})})})})]})})]}),/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+60+0+0+1e3+60+2960+75.5),pixelHeight:433,pixelWidth:577,positionX:\"center\",positionY:\"center\",sizes:\"501px\",src:\"https://framerusercontent.com/images/yTAgWJqWldNnInvCGCtHXbrIjSk.png\",srcSet:\"https://framerusercontent.com/images/yTAgWJqWldNnInvCGCtHXbrIjSk.png?scale-down-to=512 512w,https://framerusercontent.com/images/yTAgWJqWldNnInvCGCtHXbrIjSk.png 577w\"},className:\"framer-jzz53m\",\"data-framer-name\":\"image_62Spatial_Sense_Scanner-removebg-preview (1) 1\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sgwnpt\",\"data-framer-name\":\"Hoe Products Work\",id:elementId13,ref:ref14,children:[/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+60+0+0+1e3+60+3500+89),pixelHeight:2700,pixelWidth:3600,sizes:\"413px\",src:\"https://framerusercontent.com/images/zbaoX8GhUVjtAWW2jrEw258oQ7w.png\",srcSet:\"https://framerusercontent.com/images/zbaoX8GhUVjtAWW2jrEw258oQ7w.png?scale-down-to=512 512w,https://framerusercontent.com/images/zbaoX8GhUVjtAWW2jrEw258oQ7w.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zbaoX8GhUVjtAWW2jrEw258oQ7w.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/zbaoX8GhUVjtAWW2jrEw258oQ7w.png 3600w\"},className:\"framer-k0zbgc\"}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ykk7zm\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1e3drnz\",\"data-framer-name\":\"Frame 1000003442\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:\"Spatial Sense Cloud\"})}),className:\"framer-wsk6pc\",\"data-framer-name\":\"Spatial Sense Scanner\",fonts:[\"GF;DM Sans-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:\"Real-time Insights from Scanners and Edge Devices\"})}),className:\"framer-k0epte\",\"data-framer-name\":\"Precision Redefined for Every Project\",fonts:[\"GF;DM Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"VfkiqOh5A\"},implicitPathVariables:undefined},{href:{webPageId:\"VfkiqOh5A\"},implicitPathVariables:undefined}],children:resolvedLinks9=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+60+0+0+1e3+60+3500+-78+100+412,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-116mci1-container\",nodeId:\"hTJ7_FtVW\",rendersWithMotion:true,scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ApRcdMQAL:{Ag6XWw_qR:resolvedLinks9[1]}},children:/*#__PURE__*/_jsx(Button,{Ag6XWw_qR:resolvedLinks9[0],height:\"100%\",HEosbWztN:\"View Details\",id:\"hTJ7_FtVW\",layoutId:\"hTJ7_FtVW\",variant:\"HMhFJvw_P\",width:\"100%\"})})})})})]})]})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-j8vtco hidden-1jq0hhp\",children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-1v1rvwn\",\"data-framer-appear-id\":\"1v1rvwn\",\"data-framer-name\":\"Logos\",initial:animation1,optimized:true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15jv6hq\",\"data-framer-name\":\"Frame 1000003387\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NUYgUWtOw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"APPLICATION SECTORS\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\"},children:\"APPLICATION SECTORS\"})}),className:\"framer-7ooyzx\",\"data-framer-appear-id\":\"7ooyzx\",\"data-framer-name\":\"OUR PRODUCTS\",fonts:[\"GF;DM Sans-500\"],initial:animation3,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation10,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:\"Enhancing Railway, Highway, and Airport infrastructure management with LiDAR and Cloud Analytics\"})}),className:\"framer-1yfbyf7\",\"data-framer-appear-id\":\"1yfbyf7\",\"data-framer-name\":\"Precision Redefined for Every Project\",fonts:[\"GF;DM Sans-700\"],initial:animation11,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1up8c2j hidden-149fdtj hidden-1ssf6fz\",\"data-framer-name\":\"Areas\",children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation17,className:\"framer-mxwki0\",\"data-border\":true,\"data-framer-appear-id\":\"mxwki0\",\"data-framer-name\":\"Highway\",initial:animation18,optimized:true,style:{transformPerspective:1200},whileHover:animation16,children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4500,intrinsicWidth:8e3,pixelHeight:4500,pixelWidth:8e3,sizes:\"163px\",src:\"https://framerusercontent.com/images/KfL61DLx3fAw7maII2vPiobvok.jpg\",srcSet:\"https://framerusercontent.com/images/KfL61DLx3fAw7maII2vPiobvok.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/KfL61DLx3fAw7maII2vPiobvok.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/KfL61DLx3fAw7maII2vPiobvok.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/KfL61DLx3fAw7maII2vPiobvok.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/KfL61DLx3fAw7maII2vPiobvok.jpg 8000w\"},className:\"framer-1j4vi1n\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wumen6\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlM7U3dpdHplci1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Switzer\", \"Switzer Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.6px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\"},children:\"Highway\"})}),className:\"framer-1pyndxd\",fonts:[\"FS;Switzer-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\"},children:\"Advancing road safety and traffic flow with innovative monitoring and predictive analytics, optimizing highway operations and travel safety.\"})}),className:\"framer-14fus97\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation17,className:\"framer-1gd6lk6\",\"data-border\":true,\"data-framer-appear-id\":\"1gd6lk6\",\"data-framer-name\":\"Railway\",initial:animation18,optimized:true,style:{transformPerspective:1200},whileHover:animation16,children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:5e3,intrinsicWidth:8e3,pixelHeight:5e3,pixelWidth:8e3,sizes:\"163px\",src:\"https://framerusercontent.com/images/htUx3m2BgHQQweSiXt1ZGlBXhgg.jpg\",srcSet:\"https://framerusercontent.com/images/htUx3m2BgHQQweSiXt1ZGlBXhgg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/htUx3m2BgHQQweSiXt1ZGlBXhgg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/htUx3m2BgHQQweSiXt1ZGlBXhgg.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/htUx3m2BgHQQweSiXt1ZGlBXhgg.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/htUx3m2BgHQQweSiXt1ZGlBXhgg.jpg 8000w\"},className:\"framer-gzz9x2\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-86z00i\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlM7U3dpdHplci1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Switzer\", \"Switzer Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.6px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\"},children:\"Railway\"})}),className:\"framer-1g63ian\",fonts:[\"FS;Switzer-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\"},children:\"Empowering rail operations with AI and spatial analytics for safety enhancements and efficient management, including vegetation control and integrity monitoring.\"})}),className:\"framer-1lwvnfc\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation19,className:\"framer-r0ux58\",\"data-border\":true,\"data-framer-appear-id\":\"r0ux58\",\"data-framer-name\":\"Construction \",initial:animation18,optimized:true,style:{transformPerspective:1200},whileHover:animation16,children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2160,intrinsicWidth:3840,pixelHeight:2160,pixelWidth:3840,sizes:\"163px\",src:\"https://framerusercontent.com/images/Vo67ymjgkgj2cimns4nA1Ll2CU.jpg\",srcSet:\"https://framerusercontent.com/images/Vo67ymjgkgj2cimns4nA1Ll2CU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Vo67ymjgkgj2cimns4nA1Ll2CU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Vo67ymjgkgj2cimns4nA1Ll2CU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Vo67ymjgkgj2cimns4nA1Ll2CU.jpg 3840w\"},className:\"framer-kfi3mf\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dvpazq\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlM7U3dpdHplci1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Switzer\", \"Switzer Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.6px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\"},children:\"Construction\"})}),className:\"framer-1yj9cas\",fonts:[\"FS;Switzer-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\"},children:\"Transforming construction processes with digital twins, precise site surveillance, and asset management to streamline projects and ensure compliance.\"})}),className:\"framer-w2epp0\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),isDisplayed4()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1maxop hidden-boc3wm\",\"data-framer-name\":\"Areas\",children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation17,className:\"framer-9wjzqm\",\"data-border\":true,\"data-framer-appear-id\":\"9wjzqm\",\"data-framer-name\":\"Highway\",initial:animation18,optimized:true,style:{transformPerspective:1200},whileHover:animation16,children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4500,intrinsicWidth:8e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+60+0+0+5120+0+319.6+86.4+40+0),pixelHeight:4500,pixelWidth:8e3,sizes:\"280px\",src:\"https://framerusercontent.com/images/KfL61DLx3fAw7maII2vPiobvok.jpg\",srcSet:\"https://framerusercontent.com/images/KfL61DLx3fAw7maII2vPiobvok.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/KfL61DLx3fAw7maII2vPiobvok.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/KfL61DLx3fAw7maII2vPiobvok.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/KfL61DLx3fAw7maII2vPiobvok.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/KfL61DLx3fAw7maII2vPiobvok.jpg 8000w\"},className:\"framer-60t1uo\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-algvaf\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlM7U3dpdHplci1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Switzer\", \"Switzer Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.6px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\"},children:\"Highway\"})}),className:\"framer-1q8c7vi\",fonts:[\"FS;Switzer-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\"},children:\"Advancing road safety and traffic flow with innovative monitoring and predictive analytics, optimizing highway operations and travel safety.\"})}),className:\"framer-1onp3cz\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation17,className:\"framer-1pwsyx2\",\"data-border\":true,\"data-framer-appear-id\":\"1pwsyx2\",\"data-framer-name\":\"Railway\",initial:animation18,optimized:true,style:{transformPerspective:1200},whileHover:animation16,children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:5e3,intrinsicWidth:8e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+60+0+0+5120+0+319.6+0+40+0),pixelHeight:5e3,pixelWidth:8e3,sizes:\"280px\",src:\"https://framerusercontent.com/images/htUx3m2BgHQQweSiXt1ZGlBXhgg.jpg\",srcSet:\"https://framerusercontent.com/images/htUx3m2BgHQQweSiXt1ZGlBXhgg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/htUx3m2BgHQQweSiXt1ZGlBXhgg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/htUx3m2BgHQQweSiXt1ZGlBXhgg.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/htUx3m2BgHQQweSiXt1ZGlBXhgg.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/htUx3m2BgHQQweSiXt1ZGlBXhgg.jpg 8000w\"},className:\"framer-1d5yl50\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15ljo0e\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlM7U3dpdHplci1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Switzer\", \"Switzer Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.6px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\"},children:\"Railway\"})}),className:\"framer-1tgz0ct\",fonts:[\"FS;Switzer-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\"},children:\"Empowering rail operations with AI and spatial analytics for safety enhancements and efficient management, including vegetation control and integrity monitoring.\"})}),className:\"framer-rrhb9o\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"DbpyUBFJC\"},implicitPathVariables:undefined},{href:{webPageId:\"DbpyUBFJC\"},implicitPathVariables:undefined}],children:resolvedLinks10=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,y:(componentViewport?.y||0)+0+60+0+0+5120+0+319.6+0+40+525.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1axtw2x-container\",nodeId:\"FIWfBa2lV\",scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ApRcdMQAL:{yTZZaFOb3:resolvedLinks10[1]}},children:/*#__PURE__*/_jsx(ButtonCopy,{eszixBaDA:10,height:\"100%\",id:\"FIWfBa2lV\",ik9I5qIGz:true,J0LC2FGV8:false,KJK1sV1GB:\"Explore Solutions\",layoutId:\"FIWfBa2lV\",RmkZjgJwi:\"ArrowRight\",UsLusPFRg:\"rgb(0, 0, 0)\",variant:\"cO3WWBdAK\",width:\"100%\",yTZZaFOb3:resolvedLinks10[0]})})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation19,className:\"framer-erippc\",\"data-border\":true,\"data-framer-appear-id\":\"erippc\",\"data-framer-name\":\"Construction \",initial:animation18,optimized:true,style:{transformPerspective:1200},whileHover:animation16,children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2160,intrinsicWidth:3840,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+60+0+0+5120+0+319.6+42+40+0),pixelHeight:2160,pixelWidth:3840,sizes:\"280px\",src:\"https://framerusercontent.com/images/Vo67ymjgkgj2cimns4nA1Ll2CU.jpg\",srcSet:\"https://framerusercontent.com/images/Vo67ymjgkgj2cimns4nA1Ll2CU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Vo67ymjgkgj2cimns4nA1Ll2CU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Vo67ymjgkgj2cimns4nA1Ll2CU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Vo67ymjgkgj2cimns4nA1Ll2CU.jpg 3840w\"},className:\"framer-1gmr4li\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rkdcta\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlM7U3dpdHplci1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Switzer\", \"Switzer Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.6px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\"},children:\"Construction\"})}),className:\"framer-923ffl\",fonts:[\"FS;Switzer-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\"},children:\"Transforming construction processes with digital twins, precise site surveillance, and asset management to streamline projects and ensure compliance.\"})}),className:\"framer-19edhm7\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1in08vg hidden-1jq0hhp\",children:[/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-1qxa3ev\",\"data-framer-appear-id\":\"1qxa3ev\",\"data-framer-name\":\"Logos\",initial:animation1,optimized:true,children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-17vc6k6\",\"data-framer-name\":\"Frame 1000003387\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\"},children:\"SEE IT IN ACTION\"})}),className:\"framer-1fd5s1b\",\"data-framer-name\":\"OUR PRODUCTS\",fonts:[\"GF;DM Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NUYgUWtOw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:\"Harnessing LiDAR for Real-Time Actionable Insights\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:\"Harnessing LiDAR for Real-Time Actionable Insights\"})}),className:\"framer-160bskl\",\"data-framer-name\":\"Precision Redefined for Every Project\",fonts:[\"GF;DM Sans-700\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-28pjnj-container hidden-boc3wm\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"gMAfDNuqA\",rendersWithMotion:true,scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:10,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:10,height:\"100%\",id:\"gMAfDNuqA\",layoutId:\"gMAfDNuqA\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-wv6aq-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"S7MmsVJcN\",rendersWithMotion:true,scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<div class=\"sketchfab-embed-wrapper\"> <iframe title=\"3D Model of Segmented Railway Infrastructure\" frameborder=\"0\" allowfullscreen mozallowfullscreen=\"true\" webkitallowfullscreen=\"true\" allow=\"autoplay; fullscreen; xr-spatial-tracking\" xr-spatial-tracking execution-while-out-of-viewport execution-while-not-rendered web-share width=\"1150\" height=\"650\" src=\"https://sketchfab.com/models/9fe479499b46412686dd8df4c95d175a/embed\"> </iframe></div>',id:\"S7MmsVJcN\",layoutId:\"S7MmsVJcN\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-s9nem9-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Nese_WHOv\",rendersWithMotion:true,scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<div class=\"sketchfab-embed-wrapper\"> <iframe title=\"Roadside Infrastructure Model\" frameborder=\"0\" allowfullscreen mozallowfullscreen=\"true\" webkitallowfullscreen=\"true\" allow=\"autoplay; fullscreen; xr-spatial-tracking\" xr-spatial-tracking execution-while-out-of-viewport execution-while-not-rendered web-share width=\"1150\" height=\"650\" src=\"https://sketchfab.com/models/1d5609347e21480381136900cba80dcb/embed\"> </iframe></div>',id:\"Nese_WHOv\",layoutId:\"Nese_WHOv\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ul6osi-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"r5KxT1tun\",rendersWithMotion:true,scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<div class=\"sketchfab-embed-wrapper\"> <iframe title=\"Demo for ETU Box Detection\" frameborder=\"0\" allowfullscreen mozallowfullscreen=\"true\" webkitallowfullscreen=\"true\" allow=\"autoplay; fullscreen; xr-spatial-tracking\" xr-spatial-tracking execution-while-out-of-viewport execution-while-not-rendered web-share width=\"1150\" height=\"650\" src=\"https://sketchfab.com/models/a7d630cc46324d62a9b38a77fdb1a58a/embed\"> </iframe></div>',id:\"r5KxT1tun\",layoutId:\"r5KxT1tun\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-l2by32-container hidden-149fdtj hidden-1jq0hhp hidden-1ssf6fz\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"jW0lf69e0\",scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:10,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:0,height:\"100%\",id:\"jW0lf69e0\",layoutId:\"jW0lf69e0\",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:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-de1bc4-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"DbpD7WhP4\",rendersWithMotion:true,scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<div class=\"sketchfab-embed-wrapper\"> <iframe title=\"3D Model of Segmented Railway Infrastructure\" frameborder=\"0\" allowfullscreen mozallowfullscreen=\"true\" webkitallowfullscreen=\"true\" allow=\"autoplay; fullscreen; xr-spatial-tracking\" xr-spatial-tracking execution-while-out-of-viewport execution-while-not-rendered web-share width=\"700\" height=\"450\" src=\"https://sketchfab.com/models/9fe479499b46412686dd8df4c95d175a/embed\"> </iframe></div>',id:\"DbpD7WhP4\",layoutId:\"DbpD7WhP4\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pmtu2a-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ehB7TtxbW\",rendersWithMotion:true,scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<div class=\"sketchfab-embed-wrapper\"> <iframe title=\"Roadside Infrastructure Model\" frameborder=\"0\" allowfullscreen mozallowfullscreen=\"true\" webkitallowfullscreen=\"true\" allow=\"autoplay; fullscreen; xr-spatial-tracking\" xr-spatial-tracking execution-while-out-of-viewport execution-while-not-rendered web-share width=\"700\" height=\"450\" src=\"https://sketchfab.com/models/1d5609347e21480381136900cba80dcb/embed\"></iframe></div>',id:\"ehB7TtxbW\",layoutId:\"ehB7TtxbW\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-oi0t2d-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"JWAw_p_WW\",rendersWithMotion:true,scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<div class=\"sketchfab-embed-wrapper\"> <iframe title=\"Demo for ETU Box Detection\" frameborder=\"0\" allowfullscreen mozallowfullscreen=\"true\" webkitallowfullscreen=\"true\" allow=\"autoplay; fullscreen; xr-spatial-tracking\" xr-spatial-tracking execution-while-out-of-viewport execution-while-not-rendered web-share width=\"700\" height=\"450\" src=\"https://sketchfab.com/models/a7d630cc46324d62a9b38a77fdb1a58a/embed\"> </iframe></div>',id:\"JWAw_p_WW\",layoutId:\"JWAw_p_WW\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17j4oip hidden-1jq0hhp\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e6pfl0\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lc89nd\",children:[/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-hi55dc\",\"data-framer-appear-id\":\"hi55dc\",\"data-framer-name\":\"Logos\",initial:animation1,optimized:true,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tlljvt\",\"data-framer-name\":\"Frame 1000003387\",children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\"},children:\"BENEFITS\"})}),className:\"framer-1wlpo5u\",\"data-framer-appear-id\":\"1wlpo5u\",\"data-framer-name\":\"OUR PRODUCTS\",fonts:[\"GF;DM Sans-500\"],initial:animation3,optimized:true,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NUYgUWtOw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:[\"Unlocking the Value of \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-43117a14-6afd-45ed-acaa-cf3557fdf996, rgb(46, 110, 255))\"},children:\"Spatial Digital Twins\"})]})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:[\"Unlocking the Value of \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-43117a14-6afd-45ed-acaa-cf3557fdf996, rgb(46, 110, 255))\"},children:\"Spatial Digital Twins\"})]})}),className:\"framer-h6nfwf\",\"data-framer-appear-id\":\"h6nfwf\",\"data-framer-name\":\"Precision Redefined for Every Project\",fonts:[\"GF;DM Sans-700\"],initial:animation3,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NUYgUWtOw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2840d062-261b-4eca-acdb-d7c218ee2723, rgb(102, 101, 114))\"},children:\"We gather comprehensive spatial data from transport infrastructures and deliver actionable insights and advanced processing tools for every team in your organization.\"})}),fonts:[\"GF;DM Sans-regular\"]}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16bzrdu\",\"data-styles-preset\":\"stylesPresetParagraph\",style:{\"--framer-text-alignment\":\"center\"},children:\"We gather comprehensive spatial data from transport infrastructures and deliver actionable insights and advanced processing tools for every team in your organization.\"})}),className:\"framer-122avxa\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:false,__framer__enter:animation20,__framer__exit:animation21,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-brvzqr\",\"data-framer-name\":\"Content\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:180,width:\"246px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-403p0t-container\",nodeId:\"MSAnoMrlO\",scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(HighlightNum,{bZeTXSy0H:\"80%\",height:\"100%\",id:\"MSAnoMrlO\",layoutId:\"MSAnoMrlO\",NIcpYpbeI:\"Cost of Inspection\",style:{height:\"100%\",width:\"100%\"},Wa7zETWVc:\"Lower \",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:180,width:\"218px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1i0ev8y-container\",nodeId:\"xPGaiQLFE\",scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(HighlightNum,{bZeTXSy0H:\"34%\",height:\"100%\",id:\"xPGaiQLFE\",layoutId:\"xPGaiQLFE\",NIcpYpbeI:\"Risk of accident\",style:{height:\"100%\",width:\"100%\"},Wa7zETWVc:\"Lower \",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:180,width:\"293px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-9ikvfr-container\",nodeId:\"URVCyJ4Hv\",scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(HighlightNum,{bZeTXSy0H:\"45%\",height:\"100%\",id:\"URVCyJ4Hv\",layoutId:\"URVCyJ4Hv\",NIcpYpbeI:\"Operational Efficiency\",style:{height:\"100%\",width:\"100%\"},Wa7zETWVc:\"Higher\",width:\"100%\"})})})]})]}),isDisplayed4()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qcj3q3 hidden-boc3wm\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1awyu0x\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1q3bjsw\",id:elementId14,ref:ref15,whileHover:animation12,children:[/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3},className:\"framer-b44y60\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:591,intrinsicWidth:1141.5,pixelHeight:1182,pixelWidth:2283,sizes:\"597px\",src:\"https://framerusercontent.com/images/4uIGHX1RUA7ajRBrZtMH2llj1P0.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/4uIGHX1RUA7ajRBrZtMH2llj1P0.png?scale-down-to=512 512w,https://framerusercontent.com/images/4uIGHX1RUA7ajRBrZtMH2llj1P0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4uIGHX1RUA7ajRBrZtMH2llj1P0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/4uIGHX1RUA7ajRBrZtMH2llj1P0.png 2283w\"},className:\"framer-1oj7oyd\",\"data-framer-name\":\"Screenshot_2023_10_26_at_3_06_1\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-21dn56\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Digital Twin Creation\"})}),className:\"framer-1f5tbb1\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"Digitally replicate your infrastructure for real-time monitoring and simulation, enhancing understanding and preparedness.\"})}),className:\"framer-1kbum3h\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-y3oqfe\",id:elementId15,ref:ref16,whileHover:animation12,children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1310,intrinsicWidth:2112,pixelHeight:1310,pixelWidth:2112,sizes:\"646.6667px\",src:\"https://framerusercontent.com/images/9KVLUTRbPkSv6wEMtgenK80zZJU.png\",srcSet:\"https://framerusercontent.com/images/9KVLUTRbPkSv6wEMtgenK80zZJU.png?scale-down-to=512 512w,https://framerusercontent.com/images/9KVLUTRbPkSv6wEMtgenK80zZJU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9KVLUTRbPkSv6wEMtgenK80zZJU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/9KVLUTRbPkSv6wEMtgenK80zZJU.png 2112w\"},className:\"framer-g84cqq\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xjti8u\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"AI-Powered Insights\"})}),className:\"framer-ijul1\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"Transform raw data into strategic knowledge with our AI algorithms, fine-tuning your operational decisions.\"})}),className:\"framer-14gv128\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ygck0\",id:elementId16,ref:ref17,whileHover:animation12,children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1180,intrinsicWidth:2159,pixelHeight:1180,pixelWidth:2159,positionX:\"center\",positionY:\"center\",sizes:\"646.6667px\",src:\"https://framerusercontent.com/images/JkhMREKefKXvH7Spjyiz9jA.png\",srcSet:\"https://framerusercontent.com/images/JkhMREKefKXvH7Spjyiz9jA.png?scale-down-to=512 512w,https://framerusercontent.com/images/JkhMREKefKXvH7Spjyiz9jA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JkhMREKefKXvH7Spjyiz9jA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/JkhMREKefKXvH7Spjyiz9jA.png 2159w\"},className:\"framer-agz8bv\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t0erij\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Efficient Asset Management\"})}),className:\"framer-uljl4j\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"Streamline your asset oversight and optimization with our integrated platform, driving productivity and cost savings.\"})}),className:\"framer-1615l61\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-wjwyex\",id:elementId17,ref:ref18,whileHover:animation12,children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2446,intrinsicWidth:2808,pixelHeight:2446,pixelWidth:2808,sizes:\"293.3333px\",src:\"https://framerusercontent.com/images/P3wykaULWvjTgByUvm9ILmt8Ytc.png\",srcSet:\"https://framerusercontent.com/images/P3wykaULWvjTgByUvm9ILmt8Ytc.png?scale-down-to=512 512w,https://framerusercontent.com/images/P3wykaULWvjTgByUvm9ILmt8Ytc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/P3wykaULWvjTgByUvm9ILmt8Ytc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/P3wykaULWvjTgByUvm9ILmt8Ytc.png 2808w\"},className:\"framer-1jio6a9\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k75ds\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Predictive Maintenance\"})}),className:\"framer-16i50gs\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"Anticipate maintenance needs and prevent downtime with predictive analytics, keeping your operations ahead of the curve.\"})}),className:\"framer-1h9mmxo\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})]}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xpqcjj hidden-149fdtj hidden-1jq0hhp hidden-1ssf6fz\",\"data-framer-name\":\"Grid 2\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k4wi42\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lcwjie\",whileHover:animation12,children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3},className:\"framer-giqujy\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:591,intrinsicWidth:1141.5,pixelHeight:1182,pixelWidth:2283,sizes:\"582px\",src:\"https://framerusercontent.com/images/4uIGHX1RUA7ajRBrZtMH2llj1P0.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/4uIGHX1RUA7ajRBrZtMH2llj1P0.png?scale-down-to=512 512w,https://framerusercontent.com/images/4uIGHX1RUA7ajRBrZtMH2llj1P0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4uIGHX1RUA7ajRBrZtMH2llj1P0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/4uIGHX1RUA7ajRBrZtMH2llj1P0.png 2283w\"},className:\"framer-p3771b\",\"data-framer-name\":\"Screenshot_2023_10_26_at_3_06_1\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zx2h7w\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Digital Twin Creation\"})}),className:\"framer-9obqk5\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"Utilizes precise LiDAR scanning for accurate railway infrastructure 3D modeling.\"})}),className:\"framer-55btps\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-436sfs\",whileHover:animation12,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NUYgUWtOw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1310,intrinsicWidth:2112,pixelHeight:1310,pixelWidth:2112,sizes:\"460px\",src:\"https://framerusercontent.com/images/9KVLUTRbPkSv6wEMtgenK80zZJU.png\",srcSet:\"https://framerusercontent.com/images/9KVLUTRbPkSv6wEMtgenK80zZJU.png?scale-down-to=512 512w,https://framerusercontent.com/images/9KVLUTRbPkSv6wEMtgenK80zZJU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9KVLUTRbPkSv6wEMtgenK80zZJU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/9KVLUTRbPkSv6wEMtgenK80zZJU.png 2112w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1310,intrinsicWidth:2112,pixelHeight:1310,pixelWidth:2112,src:\"https://framerusercontent.com/images/9KVLUTRbPkSv6wEMtgenK80zZJU.png\",srcSet:\"https://framerusercontent.com/images/9KVLUTRbPkSv6wEMtgenK80zZJU.png?scale-down-to=512 512w,https://framerusercontent.com/images/9KVLUTRbPkSv6wEMtgenK80zZJU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9KVLUTRbPkSv6wEMtgenK80zZJU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/9KVLUTRbPkSv6wEMtgenK80zZJU.png 2112w\"},className:\"framer-a4ejda\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1y2qorb\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"AI-Powered Insights\"})}),className:\"framer-1ey02ko\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:[\"Processes 3D data with AI for crucial \",/*#__PURE__*/_jsx(\"br\",{}),\"inspection and safety insights.\"]})}),className:\"framer-jemst4\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ny7aqu\",whileHover:animation12,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NUYgUWtOw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1180,intrinsicWidth:2159,pixelHeight:1180,pixelWidth:2159,sizes:\"460px\",src:\"https://framerusercontent.com/images/JkhMREKefKXvH7Spjyiz9jA.png\",srcSet:\"https://framerusercontent.com/images/JkhMREKefKXvH7Spjyiz9jA.png?scale-down-to=512 512w,https://framerusercontent.com/images/JkhMREKefKXvH7Spjyiz9jA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JkhMREKefKXvH7Spjyiz9jA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/JkhMREKefKXvH7Spjyiz9jA.png 2159w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1180,intrinsicWidth:2159,pixelHeight:1180,pixelWidth:2159,src:\"https://framerusercontent.com/images/JkhMREKefKXvH7Spjyiz9jA.png\",srcSet:\"https://framerusercontent.com/images/JkhMREKefKXvH7Spjyiz9jA.png?scale-down-to=512 512w,https://framerusercontent.com/images/JkhMREKefKXvH7Spjyiz9jA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JkhMREKefKXvH7Spjyiz9jA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/JkhMREKefKXvH7Spjyiz9jA.png 2159w\"},className:\"framer-1pa2vtd\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dmakz5\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Efficient Asset Management\"})}),className:\"framer-1300rna\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"Combines digital twins and AI for improved railway asset safety and efficiency.\"})}),className:\"framer-8muxq0\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lky5x7\",whileHover:animation12,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NUYgUWtOw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2446,intrinsicWidth:2808,pixelHeight:2446,pixelWidth:2808,sizes:\"200px\",src:\"https://framerusercontent.com/images/P3wykaULWvjTgByUvm9ILmt8Ytc.png\",srcSet:\"https://framerusercontent.com/images/P3wykaULWvjTgByUvm9ILmt8Ytc.png?scale-down-to=512 512w,https://framerusercontent.com/images/P3wykaULWvjTgByUvm9ILmt8Ytc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/P3wykaULWvjTgByUvm9ILmt8Ytc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/P3wykaULWvjTgByUvm9ILmt8Ytc.png 2808w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2446,intrinsicWidth:2808,pixelHeight:2446,pixelWidth:2808,src:\"https://framerusercontent.com/images/P3wykaULWvjTgByUvm9ILmt8Ytc.png\",srcSet:\"https://framerusercontent.com/images/P3wykaULWvjTgByUvm9ILmt8Ytc.png?scale-down-to=512 512w,https://framerusercontent.com/images/P3wykaULWvjTgByUvm9ILmt8Ytc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/P3wykaULWvjTgByUvm9ILmt8Ytc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/P3wykaULWvjTgByUvm9ILmt8Ytc.png 2808w\"},className:\"framer-18qx39k\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vn8s8w\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Predictive Maintenance\"})}),className:\"framer-1k9qsdj\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"AI detects early signs of issues, allowing timely, economical fixes.\"})}),className:\"framer-s2irys\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1v7io7b hidden-1jq0hhp\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nqgntv\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NUYgUWtOw:{height:511,width:\"721px\",y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:500,y:(componentViewport?.y||0)+0+60+0+0+9472+100+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-y4r3r6-container\",nodeId:\"txhBuw_zx\",rendersWithMotion:true,scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NUYgUWtOw:{__framer__variantAppearEffectEnabled:undefined,style:{height:\"100%\",width:\"100%\"},variant:\"PjeG2bYUe\"}},children:/*#__PURE__*/_jsx(DashboardWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref19,target:\"gNzKeRNcz\"},{ref:ref20,target:\"j5OnKJqin\"},{ref:ref21,target:\"QaZimOnmJ\"},{ref:ref22,target:\"rSG973zWQ\"},{ref:ref23,target:\"SMm5PfX7s\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"txhBuw_zx\",layoutId:\"txhBuw_zx\",style:{height:\"100%\"},variant:\"gNzKeRNcz\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fmojlj\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h7gkwc\",id:elementId18,ref:ref19,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NUYgUWtOw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.05px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-43117a14-6afd-45ed-acaa-cf3557fdf996, rgb(46, 110, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(16, 16, 18))\"},children:\"Meet \"}),\"SpatialSense\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(102, 101, 114))\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-79f54f4b-5c08-4adb-84cd-68f4d833bf59, rgb(17, 16, 19))\"},children:\"Platform\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.05px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-43117a14-6afd-45ed-acaa-cf3557fdf996, rgb(46, 110, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(16, 16, 18))\"},children:\"Meet \"}),\"SpatialSense\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(102, 101, 114))\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-79f54f4b-5c08-4adb-84cd-68f4d833bf59, rgb(17, 16, 19))\"},children:\"Platform\"})]})}),className:\"framer-5f4yfj\",fonts:[\"GF;DM Sans-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NUYgUWtOw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2840d062-261b-4eca-acdb-d7c218ee2723, rgb(102, 101, 114))\"},children:\"Leverage our platform's powerful analytics to unlock actionable insights and drive informed decisions across your infrastructure network.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-2840d062-261b-4eca-acdb-d7c218ee2723, rgb(102, 101, 114))\"},children:\"Leverage our platform's powerful analytics to unlock actionable insights and drive informed decisions across your infrastructure network.\"})}),className:\"framer-1k8kq2u\",fonts:[\"GF;DM Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"VfkiqOh5A\"},implicitPathVariables:undefined},{href:{webPageId:\"VfkiqOh5A\"},implicitPathVariables:undefined},{href:{webPageId:\"VfkiqOh5A\"},implicitPathVariables:undefined}],children:resolvedLinks11=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NUYgUWtOw:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+60+0+0+9472+100+0+40+0+0+472,children:/*#__PURE__*/_jsx(Container,{className:\"framer-zl09gb-container\",nodeId:\"zVvjphloq\",scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ApRcdMQAL:{Ag6XWw_qR:resolvedLinks11[2]},NUYgUWtOw:{Ag6XWw_qR:resolvedLinks11[1]}},children:/*#__PURE__*/_jsx(Button,{Ag6XWw_qR:resolvedLinks11[0],height:\"100%\",HEosbWztN:\"View Product Details\",id:\"zVvjphloq\",layoutId:\"zVvjphloq\",variant:\"HMhFJvw_P\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17ldqr6\",id:elementId19,ref:ref20,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rscey8\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ueq3at\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wgq4xo-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Bvud_2KCa\",scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(Hero,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"menu\",iconSelection:\"RectangleGroup\",id:\"Bvud_2KCa\",layoutId:\"Bvud_2KCa\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NUYgUWtOw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-ci2ngw\",\"data-styles-preset\":\"stylesPresetHeading3\",style:{\"--framer-text-alignment\":\"center\"},children:\"Digital Twin of Infrastructure\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-ci2ngw\",\"data-styles-preset\":\"stylesPresetHeading3\",children:\"Digital Twin of Infrastructure\"})}),className:\"framer-x5wvgr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NUYgUWtOw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16bzrdu\",\"data-styles-preset\":\"stylesPresetParagraph\",style:{\"--framer-text-alignment\":\"center\"},children:\"Create a comprehensive digital repository of your infrastructure assets, streamlined for easy access and management.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16bzrdu\",\"data-styles-preset\":\"stylesPresetParagraph\",children:\"Create a comprehensive digital repository of your infrastructure assets, streamlined for easy access and management.\"})}),className:\"framer-13li5oa\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fwmwe5\",id:elementId20,ref:ref21,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-65s99k\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-lzww65\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-j2u74h-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"svQ0DEmvv\",scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(Hero,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"cube\",iconSelection:\"Home\",id:\"svQ0DEmvv\",layoutId:\"svQ0DEmvv\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NUYgUWtOw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-ci2ngw\",\"data-styles-preset\":\"stylesPresetHeading3\",style:{\"--framer-text-alignment\":\"center\"},children:\"3D Point Cloud Analytics\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation14,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-ci2ngw\",\"data-styles-preset\":\"stylesPresetHeading3\",children:\"3D Point Cloud Analytics\"})}),className:\"framer-zq7et8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NUYgUWtOw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16bzrdu\",\"data-styles-preset\":\"stylesPresetParagraph\",style:{\"--framer-text-alignment\":\"center\"},children:\"Harness the precision of 3D point cloud analytics to visualize and analyze the spatial dynamics of your assets with unmatched detail.\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16bzrdu\",\"data-styles-preset\":\"stylesPresetParagraph\",children:\"Harness the precision of 3D point cloud analytics to visualize and analyze the spatial dynamics of your assets with unmatched detail.\"})}),className:\"framer-110drev\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7wmxcx\",id:elementId21,ref:ref22,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16dek62\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation14,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-9wqxlg\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-u78c27-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"LM1_6_E6f\",scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(Hero,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Heart\",id:\"LM1_6_E6f\",layoutId:\"LM1_6_E6f\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NUYgUWtOw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-ci2ngw\",\"data-styles-preset\":\"stylesPresetHeading3\",style:{\"--framer-text-alignment\":\"center\"},children:\"Actionable Insights on Asset Health\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation14,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-ci2ngw\",\"data-styles-preset\":\"stylesPresetHeading3\",children:\"Actionable Insights on Asset Health\"})}),className:\"framer-gd2esu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NUYgUWtOw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16bzrdu\",\"data-styles-preset\":\"stylesPresetParagraph\",style:{\"--framer-text-alignment\":\"center\"},children:\"Gain critical insights into the health of your assets, with data-driven intelligence that informs maintenance and operational strategies.\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16bzrdu\",\"data-styles-preset\":\"stylesPresetParagraph\",children:\"Gain critical insights into the health of your assets, with data-driven intelligence that informs maintenance and operational strategies.\"})}),className:\"framer-iny5ts\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1msw3db\",id:elementId22,ref:ref23,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vkzspe\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation14,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1b2nqp6\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-jowkso-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"pYSN2Gt1H\",scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(Hero,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"document\",iconSelection:\"Home\",id:\"pYSN2Gt1H\",layoutId:\"pYSN2Gt1H\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NUYgUWtOw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-ci2ngw\",\"data-styles-preset\":\"stylesPresetHeading3\",style:{\"--framer-text-alignment\":\"center\"},children:\"Maintenance Reports\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation14,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-ci2ngw\",\"data-styles-preset\":\"stylesPresetHeading3\",children:\"Maintenance Reports\"})}),className:\"framer-geyebr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NUYgUWtOw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16bzrdu\",\"data-styles-preset\":\"stylesPresetParagraph\",style:{\"--framer-text-alignment\":\"center\"},children:\"Effortlessly generate and export detailed maintenance reports, ensuring that actionable information is readily available for on-the-ground teams.\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16bzrdu\",\"data-styles-preset\":\"stylesPresetParagraph\",children:\"Effortlessly generate and export detailed maintenance reports, ensuring that actionable information is readily available for on-the-ground teams.\"})}),className:\"framer-1ap751i\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]}),isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})}),className:\"framer-1bsos01 hidden-149fdtj hidden-1ssf6fz\",fonts:[\"GF;DM Sans-600\"],verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NUYgUWtOw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:2250,pixelHeight:1200,pixelWidth:1600,sizes:\"800px\",src:\"https://framerusercontent.com/images/6lKuYoL0KzL84fLQL6u06uc8jJ4.jpg\",srcSet:\"https://framerusercontent.com/images/6lKuYoL0KzL84fLQL6u06uc8jJ4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/6lKuYoL0KzL84fLQL6u06uc8jJ4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/6lKuYoL0KzL84fLQL6u06uc8jJ4.jpg 1600w\"}}},children:/*#__PURE__*/_jsxs(Image,{as:\"header\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:2250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+60+0+0+12476),pixelHeight:1200,pixelWidth:1600,sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/6lKuYoL0KzL84fLQL6u06uc8jJ4.jpg\",srcSet:\"https://framerusercontent.com/images/6lKuYoL0KzL84fLQL6u06uc8jJ4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/6lKuYoL0KzL84fLQL6u06uc8jJ4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/6lKuYoL0KzL84fLQL6u06uc8jJ4.jpg 1600w\"},className:\"framer-mbpzm7 hidden-1jq0hhp\",\"data-framer-name\":\"Header Image\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"We're hiring!\"})}),className:\"framer-ulbge6\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.6)\"},children:\"Become a part of a fast growing startup and reshape the future of spatial analytics with Kodifly.\"})}),className:\"framer-kpafj3\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19wvvl3\",\"data-framer-name\":\"Overlay\"}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"kYU0231Hq\"},implicitPathVariables:undefined},{href:{webPageId:\"kYU0231Hq\"},implicitPathVariables:undefined},{href:{webPageId:\"kYU0231Hq\"},implicitPathVariables:undefined}],children:resolvedLinks12=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NUYgUWtOw:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+60+0+0+12476+60+336,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-13fneuj-container\",nodeId:\"Aa3T4LHnc\",rendersWithMotion:true,scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ApRcdMQAL:{Ag6XWw_qR:resolvedLinks12[2]},NUYgUWtOw:{Ag6XWw_qR:resolvedLinks12[1]}},children:/*#__PURE__*/_jsx(Button,{Ag6XWw_qR:resolvedLinks12[0],height:\"100%\",HEosbWztN:\"Join Now\",id:\"Aa3T4LHnc\",layoutId:\"Aa3T4LHnc\",variant:\"BPFfPcuNl\",width:\"100%\"})})})})})})]})}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"section\",{className:\"framer-p5adsz hidden-1jq0hhp\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gr9pv6\",\"data-framer-name\":\"Logos\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\"},children:\"OUR SOLUTIONS\"})}),className:\"framer-1eg78cs\",\"data-framer-name\":\"OUR PRODUCTS\",fonts:[\"GF;DM Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:\"Innovative Infrastructure Solutions for Railways, Highways, and Airports.\"})}),className:\"framer-2bra97\",\"data-framer-name\":\"Precision Redefined for Every Project\",fonts:[\"GF;DM Sans-700\"],verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-h1a43b-container hidden-149fdtj hidden-1ssf6fz\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"URRvHbr_Z\",scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},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:10,height:\"100%\",id:\"URRvHbr_Z\",layoutId:\"URRvHbr_Z\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:600,width:\"693px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-v6f6h7-container\",inComponentSlot:true,nodeId:\"KJQgqnBcW\",rendersWithMotion:true,scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(UseCaseSlider,{height:\"100%\",id:\"KJQgqnBcW\",layoutId:\"KJQgqnBcW\",le4lkysI8:\"CTO at Acme Corp\",style:{width:\"100%\"},variant:\"AjoKHBcpC\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:600,width:\"693px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-qhu9ku-container\",inComponentSlot:true,nodeId:\"MjHHEWTOA\",rendersWithMotion:true,scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(UseCaseSlider,{height:\"100%\",id:\"MjHHEWTOA\",layoutId:\"MjHHEWTOA\",le4lkysI8:\"CTO at Acme Corp\",style:{width:\"100%\"},variant:\"KaodrxmLa\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:600,width:\"693px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-s7fptx-container\",inComponentSlot:true,nodeId:\"nhHikPsH4\",rendersWithMotion:true,scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(UseCaseSlider,{height:\"100%\",id:\"nhHikPsH4\",layoutId:\"nhHikPsH4\",le4lkysI8:\"CTO at Acme Corp\",style:{width:\"100%\"},variant:\"sdR0Totml\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:600,width:\"693px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xapptf-container\",inComponentSlot:true,nodeId:\"GFzyl1zDh\",rendersWithMotion:true,scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(UseCaseSlider,{height:\"100%\",id:\"GFzyl1zDh\",layoutId:\"GFzyl1zDh\",le4lkysI8:\"CTO at Acme Corp\",style:{width:\"100%\"},variant:\"QPR9wX9Sv\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:613,width:\"693px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-193gjt8-container\",inComponentSlot:true,nodeId:\"Y5FPgm4Xw\",rendersWithMotion:true,scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(UseCaseSlider,{height:\"100%\",id:\"Y5FPgm4Xw\",layoutId:\"Y5FPgm4Xw\",le4lkysI8:\"CTO at Acme Corp\",style:{height:\"100%\",width:\"100%\"},variant:\"P_6qXaWKC\",width:\"100%\"})})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1o67cyh-container hidden-boc3wm\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"tCSDN3Pxv\",scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(Slideshow1,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"tCSDN3Pxv\",intervalControl:7,itemAmount:1,layoutId:\"tCSDN3Pxv\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:-71,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:600,width:\"1200px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dml65e-container\",inComponentSlot:true,nodeId:\"O2uWCSQit\",rendersWithMotion:true,scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(UseCaseSlider,{height:\"100%\",id:\"O2uWCSQit\",layoutId:\"O2uWCSQit\",le4lkysI8:\"CTO at Acme Corp\",style:{width:\"100%\"},variant:\"AMQKuY17B\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:600,width:\"1200px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-lmkvxh-container\",inComponentSlot:true,nodeId:\"YqKQAxa4U\",rendersWithMotion:true,scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(UseCaseSlider,{height:\"100%\",id:\"YqKQAxa4U\",layoutId:\"YqKQAxa4U\",le4lkysI8:\"CTO at Acme Corp\",style:{height:\"100%\",width:\"100%\"},variant:\"SWJU1f1hk\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:600,width:\"1200px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1peh757-container\",inComponentSlot:true,nodeId:\"p8MzG8nDV\",rendersWithMotion:true,scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(UseCaseSlider,{height:\"100%\",id:\"p8MzG8nDV\",layoutId:\"p8MzG8nDV\",le4lkysI8:\"CTO at Acme Corp\",style:{width:\"100%\"},variant:\"XZimD5FTY\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:600,width:\"1200px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-z5ksdf-container\",inComponentSlot:true,nodeId:\"tuqk_hOIA\",rendersWithMotion:true,scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(UseCaseSlider,{height:\"100%\",id:\"tuqk_hOIA\",layoutId:\"tuqk_hOIA\",le4lkysI8:\"CTO at Acme Corp\",style:{height:\"100%\",width:\"100%\"},variant:\"c52nGCOcg\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:600,width:\"1200px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-b190iw-container\",inComponentSlot:true,nodeId:\"Up8df0T5x\",rendersWithMotion:true,scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(UseCaseSlider,{height:\"100%\",id:\"Up8df0T5x\",layoutId:\"Up8df0T5x\",le4lkysI8:\"CTO at Acme Corp\",style:{width:\"100%\"},variant:\"IGyRzqKck\",width:\"100%\"})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{delay:0,duration:1,ease:[.44,0,.56,1],type:\"tween\"},width:\"100%\"})})})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1sxj5l2 hidden-boc3wm hidden-1jq0hhp\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1miqnoc\",\"data-framer-name\":\"Logos\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\"},children:\"OUR KEY FEATURES\"})}),className:\"framer-1eg85mr\",\"data-framer-name\":\"OUR PRODUCTS\",fonts:[\"GF;DM Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:\"Empowering Your Success with Advanced Features for Optimal Performance!\"})}),className:\"framer-vhkz5p\",\"data-framer-name\":\"Precision Redefined for Every Project\",fonts:[\"GF;DM Sans-700\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a3gpks\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fliy48\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:271,width:\"347px\",y:(componentViewport?.y||0)+0+60+0+0+14391+100+492+0+0+26.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-2ygl3y-container\",nodeId:\"fR_BrMRO9\",scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(FeatureCard2,{aa5hKvvkV:\"Monitor\",BFuTBK47u:\"Instantly track and analyze spatial data.\",height:\"100%\",id:\"fR_BrMRO9\",jFgwazo_q:\"var(--token-43117a14-6afd-45ed-acaa-cf3557fdf996, rgb(46, 110, 255))\",layoutId:\"fR_BrMRO9\",oc_8kOa9a:\"Real Time Monitoring\",OLqpcuIeL:false,qkbS0bCx8:\"Learn more\",style:{width:\"100%\"},UaS05r1yh:\"rgb(235, 241, 255)\",variant:\"XLkWWOhdz\",width:\"100%\",Y3X4CKI40:true,ZA2T3dGW4:false})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:271,width:\"347px\",y:(componentViewport?.y||0)+0+60+0+0+14391+100+492+0+0+26.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-14hby00-container\",nodeId:\"Vi2Y2OHXn\",scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(FeatureCard2,{aa5hKvvkV:\"ShieldCheck\",BFuTBK47u:\"Reduce risks with advanced sensing technology.\",height:\"100%\",id:\"Vi2Y2OHXn\",jFgwazo_q:\"var(--token-43117a14-6afd-45ed-acaa-cf3557fdf996, rgb(46, 110, 255))\",layoutId:\"Vi2Y2OHXn\",oc_8kOa9a:\"Safety Enhancement\",OLqpcuIeL:false,qkbS0bCx8:\"Learn more\",style:{width:\"100%\"},UaS05r1yh:\"rgb(235, 241, 255)\",variant:\"XLkWWOhdz\",width:\"100%\",Y3X4CKI40:true,ZA2T3dGW4:false})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:271,width:\"347px\",y:(componentViewport?.y||0)+0+60+0+0+14391+100+492+0+0+26.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1135ni-container\",nodeId:\"eM73AizSh\",scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(FeatureCard2,{aa5hKvvkV:\"Target\",BFuTBK47u:\"Virtual replicas of infrastructure for planning and analysis.\",height:\"100%\",id:\"eM73AizSh\",jFgwazo_q:\"var(--token-43117a14-6afd-45ed-acaa-cf3557fdf996, rgb(46, 110, 255))\",layoutId:\"eM73AizSh\",oc_8kOa9a:\"Digital Twin Creation\",OLqpcuIeL:false,qkbS0bCx8:\"Learn more\",style:{width:\"100%\"},UaS05r1yh:\"rgb(235, 241, 255)\",variant:\"XLkWWOhdz\",width:\"100%\",Y3X4CKI40:true,ZA2T3dGW4:false})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wij0wc\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:271,width:\"347px\",y:(componentViewport?.y||0)+0+60+0+0+14391+100+492+0+334+27.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-6vu4m6-container\",nodeId:\"inPpqM9dz\",scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(FeatureCard2,{aa5hKvvkV:\"ChartLine\",BFuTBK47u:\"Derive actionable insights from complex datasets.\",height:\"100%\",id:\"inPpqM9dz\",jFgwazo_q:\"var(--token-43117a14-6afd-45ed-acaa-cf3557fdf996, rgb(46, 110, 255))\",layoutId:\"inPpqM9dz\",oc_8kOa9a:\"Data Analytics Platform\",OLqpcuIeL:false,qkbS0bCx8:\"Learn more\",style:{width:\"100%\"},UaS05r1yh:\"rgb(235, 241, 255)\",variant:\"XLkWWOhdz\",width:\"100%\",Y3X4CKI40:true,ZA2T3dGW4:false})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:271,width:\"347px\",y:(componentViewport?.y||0)+0+60+0+0+14391+100+492+0+334+27.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1anhjmt-container\",nodeId:\"z7sIHsuBz\",scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(FeatureCard2,{aa5hKvvkV:\"Suitcase\",BFuTBK47u:\"Efficiently catalog and monitor infrastructure assets.\",height:\"100%\",id:\"z7sIHsuBz\",jFgwazo_q:\"var(--token-43117a14-6afd-45ed-acaa-cf3557fdf996, rgb(46, 110, 255))\",layoutId:\"z7sIHsuBz\",oc_8kOa9a:\"Asset Managment\",OLqpcuIeL:false,qkbS0bCx8:\"Learn more\",style:{width:\"100%\"},UaS05r1yh:\"rgb(235, 241, 255)\",variant:\"XLkWWOhdz\",width:\"100%\",Y3X4CKI40:true,ZA2T3dGW4:false})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:271,width:\"347px\",y:(componentViewport?.y||0)+0+60+0+0+14391+100+492+0+334+27.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1sriyn4-container\",nodeId:\"iKpJNKJhp\",scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(FeatureCard2,{aa5hKvvkV:\"TrafficCone\",BFuTBK47u:\"Improve flow and reduce congestion intelligently.\",height:\"100%\",id:\"iKpJNKJhp\",jFgwazo_q:\"var(--token-43117a14-6afd-45ed-acaa-cf3557fdf996, rgb(46, 110, 255))\",layoutId:\"iKpJNKJhp\",oc_8kOa9a:\"Traffic Optimization\",OLqpcuIeL:false,qkbS0bCx8:\"Learn more\",style:{width:\"100%\"},UaS05r1yh:\"rgb(235, 241, 255)\",variant:\"XLkWWOhdz\",width:\"100%\",Y3X4CKI40:true,ZA2T3dGW4:false})})})]})]})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1sts0g5 hidden-149fdtj hidden-1jq0hhp hidden-1ssf6fz\",children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-jm8oqd\",\"data-framer-appear-id\":\"jm8oqd\",\"data-framer-name\":\"Logos\",initial:animation1,optimized:true,children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\"},children:\"OUR KEY FEATURES\"})}),className:\"framer-nnroan\",\"data-framer-appear-id\":\"nnroan\",\"data-framer-name\":\"OUR PRODUCTS\",fonts:[\"GF;DM Sans-500\"],initial:animation3,optimized:true,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:\"Empowering Your Success with Advanced Features for Optimal Performance!\"})}),className:\"framer-15674br\",\"data-framer-appear-id\":\"15674br\",\"data-framer-name\":\"Precision Redefined for Every Project\",fonts:[\"GF;DM Sans-700\"],initial:animation3,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mev7b2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bldo2q\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:247,width:\"260px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-2gc5xv-container\",nodeId:\"gCoUONB0G\",scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(FeatureCard2,{aa5hKvvkV:\"Monitor\",BFuTBK47u:\"Instantly track and analyze spatial data.\",height:\"100%\",id:\"gCoUONB0G\",jFgwazo_q:\"var(--token-43117a14-6afd-45ed-acaa-cf3557fdf996, rgb(46, 110, 255))\",layoutId:\"gCoUONB0G\",oc_8kOa9a:\"Real Time Monitoring\",OLqpcuIeL:false,qkbS0bCx8:\"Learn more\",style:{height:\"100%\",width:\"100%\"},UaS05r1yh:\"rgb(235, 241, 255)\",variant:\"XLkWWOhdz\",width:\"100%\",Y3X4CKI40:true,ZA2T3dGW4:false})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:247,width:\"260px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-xmhwgk-container\",nodeId:\"ibZYf71Nc\",scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(FeatureCard2,{aa5hKvvkV:\"ShieldCheck\",BFuTBK47u:\"Reduce risks with advanced sensing technology.\",height:\"100%\",id:\"ibZYf71Nc\",jFgwazo_q:\"var(--token-43117a14-6afd-45ed-acaa-cf3557fdf996, rgb(46, 110, 255))\",layoutId:\"ibZYf71Nc\",oc_8kOa9a:\"Safety Enhancement\",OLqpcuIeL:false,qkbS0bCx8:\"Learn more\",style:{height:\"100%\",width:\"100%\"},UaS05r1yh:\"rgb(235, 241, 255)\",variant:\"XLkWWOhdz\",width:\"100%\",Y3X4CKI40:true,ZA2T3dGW4:false})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10vjwen\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:247,width:\"260px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1czauic-container\",nodeId:\"sXo8PeDSU\",scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(FeatureCard2,{aa5hKvvkV:\"Target\",BFuTBK47u:\"Virtual replicas of infrastructure for planning and analysis.\",height:\"100%\",id:\"sXo8PeDSU\",jFgwazo_q:\"var(--token-43117a14-6afd-45ed-acaa-cf3557fdf996, rgb(46, 110, 255))\",layoutId:\"sXo8PeDSU\",oc_8kOa9a:\"Digital Twin Creation\",OLqpcuIeL:false,qkbS0bCx8:\"Learn more\",style:{height:\"100%\",width:\"100%\"},UaS05r1yh:\"rgb(235, 241, 255)\",variant:\"XLkWWOhdz\",width:\"100%\",Y3X4CKI40:true,ZA2T3dGW4:false})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:247,width:\"260px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-g3r1oe-container\",nodeId:\"DnOhT5Qo8\",scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(FeatureCard2,{aa5hKvvkV:\"ChartLine\",BFuTBK47u:\"Derive actionable insights from complex datasets.\",height:\"100%\",id:\"DnOhT5Qo8\",jFgwazo_q:\"var(--token-43117a14-6afd-45ed-acaa-cf3557fdf996, rgb(46, 110, 255))\",layoutId:\"DnOhT5Qo8\",oc_8kOa9a:\"Data Analytics Platform\",OLqpcuIeL:false,qkbS0bCx8:\"Learn more\",style:{height:\"100%\",width:\"100%\"},UaS05r1yh:\"rgb(235, 241, 255)\",variant:\"XLkWWOhdz\",width:\"100%\",Y3X4CKI40:true,ZA2T3dGW4:false})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-129m4u4\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:247,width:\"260px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-stfxdk-container\",nodeId:\"uP76JnCjk\",scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(FeatureCard2,{aa5hKvvkV:\"Suitcase\",BFuTBK47u:\"Efficiently catalog and monitor infrastructure assets.\",height:\"100%\",id:\"uP76JnCjk\",jFgwazo_q:\"var(--token-43117a14-6afd-45ed-acaa-cf3557fdf996, rgb(46, 110, 255))\",layoutId:\"uP76JnCjk\",oc_8kOa9a:\"Asset Managment\",OLqpcuIeL:false,qkbS0bCx8:\"Learn more\",style:{height:\"100%\",width:\"100%\"},UaS05r1yh:\"rgb(235, 241, 255)\",variant:\"XLkWWOhdz\",width:\"100%\",Y3X4CKI40:true,ZA2T3dGW4:false})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:247,width:\"260px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-18vb7gl-container\",nodeId:\"IDyOWcOU8\",scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(FeatureCard2,{aa5hKvvkV:\"TrafficCone\",BFuTBK47u:\"Improve flow and reduce congestion intelligently.\",height:\"100%\",id:\"IDyOWcOU8\",jFgwazo_q:\"var(--token-43117a14-6afd-45ed-acaa-cf3557fdf996, rgb(46, 110, 255))\",layoutId:\"IDyOWcOU8\",oc_8kOa9a:\"Traffic Optimization\",OLqpcuIeL:false,qkbS0bCx8:\"Learn more\",style:{height:\"100%\",width:\"100%\"},UaS05r1yh:\"rgb(235, 241, 255)\",variant:\"XLkWWOhdz\",width:\"100%\",Y3X4CKI40:true,ZA2T3dGW4:false})})})]})]})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yu29uf hidden-149fdtj hidden-1jq0hhp hidden-1ssf6fz\",\"data-framer-name\":\"CTA Simple\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-o3e5h0\",\"data-styles-preset\":\"stylesPresetHeading1\",style:{\"--framer-text-alignment\":\"center\"},children:\"Schedule a Meeting With Our Sales Team\"})}),className:\"framer-1fm7cls\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Find out how SpatialSense can help transform your business.\"})}),className:\"framer-t2eqqp\",fonts:[\"GF;DM Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6t6vor\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"dSMU0fq8V\"},implicitPathVariables:undefined},{href:{webPageId:\"dSMU0fq8V\"},implicitPathVariables:undefined}],children:resolvedLinks13=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-afi3eh-container\",nodeId:\"ou5UjTfR4\",rendersWithMotion:true,scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NUYgUWtOw:{Ag6XWw_qR:resolvedLinks13[1]}},children:/*#__PURE__*/_jsx(Button,{Ag6XWw_qR:resolvedLinks13[0],height:\"100%\",HEosbWztN:\"\",id:\"ou5UjTfR4\",layoutId:\"ou5UjTfR4\",variant:\"Hsf5FtJp3\",width:\"100%\"})})})})})})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ih064n hidden-boc3wm hidden-1jq0hhp\",\"data-framer-name\":\"CTA Simple\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-fwvyci\",\"data-styles-preset\":\"HvV7GEWTd\",style:{\"--framer-text-alignment\":\"center\"},children:\"Schedule a Meeting With Our Sales Team\"})}),className:\"framer-samkap\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Find out how SpatialSense can help transform your business.\"})}),className:\"framer-1hicbaq\",fonts:[\"GF;DM Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gc7qh8\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"dSMU0fq8V\"},implicitPathVariables:undefined},{href:{webPageId:\"dSMU0fq8V\"},implicitPathVariables:undefined}],children:resolvedLinks14=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+60+0+0+15743+100+306.4+20,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-18iijql-container\",nodeId:\"y8IWsIBSc\",rendersWithMotion:true,scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ApRcdMQAL:{Ag6XWw_qR:resolvedLinks14[1]}},children:/*#__PURE__*/_jsx(Button,{Ag6XWw_qR:resolvedLinks14[0],height:\"100%\",HEosbWztN:\"\",id:\"y8IWsIBSc\",layoutId:\"y8IWsIBSc\",variant:\"Hsf5FtJp3\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-svvj4v\",children:[isDisplayed()&&/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1mcsqf5 hidden-149fdtj hidden-boc3wm hidden-1ssf6fz\",children:[/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-182sf0k\",\"data-framer-appear-id\":\"182sf0k\",\"data-framer-name\":\"Logos\",initial:animation1,optimized:true,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jk1w0e\",\"data-framer-name\":\"Frame 1000003387\",children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\"},children:\"REAL WORLD APPLICATION\"})}),className:\"framer-fnmfep\",\"data-framer-appear-id\":\"fnmfep\",\"data-framer-name\":\"OUR PRODUCTS\",fonts:[\"GF;DM Sans-500\"],initial:animation3,optimized:true,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation10,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:\"Enhancing Safety and Flow Management.\"})}),className:\"framer-160xw8o\",\"data-framer-appear-id\":\"160xw8o\",\"data-framer-name\":\"Precision Redefined for Every Project\",fonts:[\"GF;DM Sans-700\"],initial:animation11,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-h7y8tx-container\",\"data-framer-name\":\"Mob-slideshow\",isModuleExternal:true,name:\"Mob-slideshow\",nodeId:\"auoUU8itn\",scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:10,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:28,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"auoUU8itn\",intervalControl:4,itemAmount:1,layoutId:\"auoUU8itn\",name:\"Mob-slideshow\",padding:0,paddingBottom:40,paddingLeft:20,paddingPerSide:true,paddingRight:20,paddingTop:40,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:22,dotSize:8,dotsOpacity:.5,dotsPadding:8,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:600,width:\"330px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-beoc0b-container\",\"data-framer-name\":\"MOB-SMARTTUNNEL\",inComponentSlot:true,name:\"MOB-SMARTTUNNEL\",nodeId:\"GqeE5k1V0\",rendersWithMotion:true,scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(UseCaseSlider,{height:\"100%\",id:\"GqeE5k1V0\",layoutId:\"GqeE5k1V0\",le4lkysI8:\"CTO at Acme Corp\",name:\"MOB-SMARTTUNNEL\",style:{width:\"100%\"},variant:\"PHla2b3Tp\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:300,width:\"330px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jcu1ju-container\",\"data-framer-name\":\"MOB-LOCOMOTIVE\",inComponentSlot:true,name:\"MOB-LOCOMOTIVE\",nodeId:\"auRiHJaZI\",rendersWithMotion:true,scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(UseCaseSlider,{height:\"100%\",id:\"auRiHJaZI\",layoutId:\"auRiHJaZI\",le4lkysI8:\"CTO at Acme Corp\",name:\"MOB-LOCOMOTIVE\",style:{height:\"100%\",width:\"100%\"},variant:\"gAAl3lqxK\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:600,width:\"330px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1emi0l9-container\",\"data-framer-name\":\"MOB-RAILWAYMAP\",inComponentSlot:true,name:\"MOB-RAILWAYMAP\",nodeId:\"o22mHnKPd\",rendersWithMotion:true,scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(UseCaseSlider,{height:\"100%\",id:\"o22mHnKPd\",layoutId:\"o22mHnKPd\",le4lkysI8:\"\",name:\"MOB-RAILWAYMAP\",style:{width:\"100%\"},variant:\"sKwILuoOo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:600,width:\"330px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-l1zk7v-container\",\"data-framer-name\":\"MOB-RAILWAYVEG\",inComponentSlot:true,name:\"MOB-RAILWAYVEG\",nodeId:\"svC3NUzhk\",rendersWithMotion:true,scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(UseCaseSlider,{height:\"100%\",id:\"svC3NUzhk\",layoutId:\"svC3NUzhk\",le4lkysI8:\"CTO at Acme Corp\",name:\"MOB-RAILWAYVEG\",style:{width:\"100%\"},variant:\"xyej1Qhev\",width:\"100%\"})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-12or1ym\",\"data-framer-appear-id\":\"12or1ym\",\"data-framer-name\":\"Text\",initial:animation1,optimized:true,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pxdupe\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-23grct\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NUYgUWtOw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:\"Our Thoughts, Ideas and Reflections\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:\"Our Thoughts, Ideas and Reflections\"})}),className:\"framer-1b7an4l\",\"data-framer-appear-id\":\"1b7an4l\",\"data-framer-name\":\"Precision Redefined for Every Project\",fonts:[\"GF;DM Sans-700\"],initial:animation3,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NUYgUWtOw:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Here you'll find a treasure trove of articles filled with insights, inspiration, guidance, information, and everything about Kodifly\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Here you'll find a treasure trove of articles filled with insights, inspiration, guidance, information, and everything about Kodifly\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-axaq3e\",\"data-framer-appear-id\":\"axaq3e\",\"data-framer-name\":\"Precision Redefined for Every Project\",fonts:[\"GF;DM Sans-500\"],initial:animation3,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"UsyoFJuUy\"},implicitPathVariables:undefined},{href:{webPageId:\"UsyoFJuUy\"},implicitPathVariables:undefined},{href:{webPageId:\"UsyoFJuUy\"},implicitPathVariables:undefined},{href:{webPageId:\"UsyoFJuUy\"},implicitPathVariables:undefined}],children:resolvedLinks15=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gKcyARiAQ:{y:(componentViewport?.y||0)+0+560+0+0+11971.4+0+873+100+0+0+558},NUYgUWtOw:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+60+0+0+16343+100+0+100+-64+0+84,children:/*#__PURE__*/_jsx(Container,{className:\"framer-62q9mt-container\",nodeId:\"YKkM4Dvvt\",scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ApRcdMQAL:{Ag6XWw_qR:resolvedLinks15[3]},gKcyARiAQ:{Ag6XWw_qR:resolvedLinks15[2]},NUYgUWtOw:{Ag6XWw_qR:resolvedLinks15[1]}},children:/*#__PURE__*/_jsx(Button,{Ag6XWw_qR:resolvedLinks15[0],height:\"100%\",HEosbWztN:\"Check Our Blog\",id:\"YKkM4Dvvt\",layoutId:\"YKkM4Dvvt\",variant:\"BPFfPcuNl\",width:\"100%\"})})})})})})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1v9npg5-container hidden-1jq0hhp\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"YaA3fImDI\",scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NUYgUWtOw:{padding:0,paddingBottom:0,paddingLeft:0,paddingRight:0,paddingTop:0}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:40,height:\"100%\",hoverFactor:1,id:\"YaA3fImDI\",layoutId:\"YaA3fImDI\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-18tqn6s\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"CO8TqlQIZ\",data:Blog,type:\"Collection\"},select:[{collection:\"CO8TqlQIZ\",name:\"fNt9LLzVf\",type:\"Identifier\"},{collection:\"CO8TqlQIZ\",name:\"fogtkHRU2\",type:\"Identifier\"},{collection:\"CO8TqlQIZ\",name:\"FnWRDuqlK\",type:\"Identifier\"},{collection:\"CO8TqlQIZ\",name:\"F18QtAGrc\",type:\"Identifier\"},{collection:\"CO8TqlQIZ\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({F18QtAGrc:F18QtAGrcCO8TqlQIZ,fNt9LLzVf:fNt9LLzVfCO8TqlQIZ,FnWRDuqlK:FnWRDuqlKCO8TqlQIZ,fogtkHRU2:fogtkHRU2CO8TqlQIZ,id:idCO8TqlQIZ},index)=>{fNt9LLzVfCO8TqlQIZ??=\"\";FnWRDuqlKCO8TqlQIZ??=\"\";const textContent=toDateString(F18QtAGrcCO8TqlQIZ,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);return /*#__PURE__*/_jsx(LayoutGroup,{id:`CO8TqlQIZ-${idCO8TqlQIZ}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{fNt9LLzVf:fNt9LLzVfCO8TqlQIZ},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{fNt9LLzVf:fNt9LLzVfCO8TqlQIZ},webPageId:\"A5ve7y5_b\"},motionChild:true,nodeId:\"YMdjdXI2Y\",scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1lnn7lx framer-1jhgmtf\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"234px\",...toResponsiveImage(fogtkHRU2CO8TqlQIZ)},className:\"framer-zekoey\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-w6819t\",\"data-framer-name\":\"Post\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(16, 16, 18))\"},children:\"Track Geometry Irregularities: Understanding and Addressing Key Issues\"})}),className:\"framer-1c3snn9\",\"data-framer-name\":\"Title\",fonts:[\"GF;DM Sans-500\"],text:FnWRDuqlKCO8TqlQIZ,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16bzrdu\",\"data-styles-preset\":\"stylesPresetParagraph\",style:{\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"Jan 23, 2025\"})}),className:\"framer-1oq6go0\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})},idCO8TqlQIZ);})})})})})],speed:20,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NUYgUWtOw:{width:\"800px\",y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:700,width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+60+0+0+17700,children:/*#__PURE__*/_jsx(Container,{className:\"framer-uaevh8-container hidden-1jq0hhp\",nodeId:\"DNflF6M8_\",scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NUYgUWtOw:{variant:\"DA0HfnXeS\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"DNflF6M8_\",layoutId:\"DNflF6M8_\",style:{width:\"100%\"},variant:\"IkzHL30Am\",width:\"100%\"})})})})})]})}),isDisplayed()&&/*#__PURE__*/_jsxs(\"section\",{className:\"framer-e3vg2l hidden-149fdtj hidden-boc3wm hidden-1ssf6fz\",\"data-framer-name\":\"Blog\",children:[/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-f9qiwh\",\"data-framer-appear-id\":\"f9qiwh\",\"data-framer-name\":\"Logos\",initial:animation1,optimized:true,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cqfqem\",\"data-framer-name\":\"Frame 1000003387\",children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\"},children:\"OUR BLOGS\"})}),className:\"framer-1188zys\",\"data-framer-appear-id\":\"1188zys\",\"data-framer-name\":\"OUR PRODUCTS\",fonts:[\"GF;DM Sans-500\"],initial:animation3,optimized:true,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation10,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:\"Kodifly\u2019s Insights on Trends and Solutions in Transportation.\"})}),className:\"framer-1kwqmj\",\"data-framer-appear-id\":\"1kwqmj\",\"data-framer-name\":\"Precision Redefined for Every Project\",fonts:[\"GF;DM Sans-700\"],initial:animation11,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-rpwtl6\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"SZHEBNMSQ\",data:Blog,type:\"Collection\"},select:[{collection:\"SZHEBNMSQ\",name:\"fNt9LLzVf\",type:\"Identifier\"},{collection:\"SZHEBNMSQ\",name:\"fogtkHRU2\",type:\"Identifier\"},{collection:\"SZHEBNMSQ\",name:\"FnWRDuqlK\",type:\"Identifier\"},{collection:\"SZHEBNMSQ\",name:\"F18QtAGrc\",type:\"Identifier\"},{collection:\"SZHEBNMSQ\",name:\"id\",type:\"Identifier\"}]},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({F18QtAGrc:F18QtAGrcSZHEBNMSQ,fNt9LLzVf:fNt9LLzVfSZHEBNMSQ,FnWRDuqlK:FnWRDuqlKSZHEBNMSQ,fogtkHRU2:fogtkHRU2SZHEBNMSQ,id:idSZHEBNMSQ},index1)=>{fNt9LLzVfSZHEBNMSQ??=\"\";FnWRDuqlKSZHEBNMSQ??=\"\";const textContent1=toDateString(F18QtAGrcSZHEBNMSQ,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);return /*#__PURE__*/_jsx(LayoutGroup,{id:`SZHEBNMSQ-${idSZHEBNMSQ}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{fNt9LLzVf:fNt9LLzVfSZHEBNMSQ},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{fNt9LLzVf:fNt9LLzVfSZHEBNMSQ},webPageId:\"A5ve7y5_b\"},motionChild:true,nodeId:\"VP5W7NRFN\",scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-w62eoy framer-1jhgmtf\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"150px\",...toResponsiveImage(fogtkHRU2SZHEBNMSQ)},className:\"framer-fefibs\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tphfs2\",\"data-framer-name\":\"Post\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(16, 16, 18))\"},children:\"Content\"})}),className:\"framer-1mfufy5\",\"data-framer-name\":\"Title\",fonts:[\"GF;DM Sans-700\"],text:FnWRDuqlKSZHEBNMSQ,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"Content\"})}),className:\"framer-1cj73lj\",\"data-framer-name\":\"Date\",fonts:[\"GF;DM Sans-regular\"],text:textContent1,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})},idSZHEBNMSQ);})})})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gKcyARiAQ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:2250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+15399.8),pixelHeight:1200,pixelWidth:1600,sizes:\"390px\",src:\"https://framerusercontent.com/images/6lKuYoL0KzL84fLQL6u06uc8jJ4.jpg\",srcSet:\"https://framerusercontent.com/images/6lKuYoL0KzL84fLQL6u06uc8jJ4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/6lKuYoL0KzL84fLQL6u06uc8jJ4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/6lKuYoL0KzL84fLQL6u06uc8jJ4.jpg 1600w\"}}},children:/*#__PURE__*/_jsxs(Image,{as:\"header\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:2250,pixelHeight:1200,pixelWidth:1600,src:\"https://framerusercontent.com/images/6lKuYoL0KzL84fLQL6u06uc8jJ4.jpg\",srcSet:\"https://framerusercontent.com/images/6lKuYoL0KzL84fLQL6u06uc8jJ4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/6lKuYoL0KzL84fLQL6u06uc8jJ4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/6lKuYoL0KzL84fLQL6u06uc8jJ4.jpg 1600w\"},className:\"framer-19d7k10 hidden-149fdtj hidden-boc3wm hidden-1ssf6fz\",\"data-framer-name\":\"Hiring\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rzq3mk\",\"data-framer-name\":\"Overlay\"}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-uhch0u\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"We're hiring!\"})}),className:\"framer-41gp3y\",fonts:[\"GF;DM Sans-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"Become a part of a fast growing startup and reshape the future of spatial analytics with Kodifly.\"})}),className:\"framer-sna14l\",fonts:[\"GF;DM Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"kYU0231Hq\"},implicitPathVariables:undefined},{href:{webPageId:\"kYU0231Hq\"},implicitPathVariables:undefined}],children:resolvedLinks16=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gKcyARiAQ:{y:(componentViewport?.y||0)+0+15399.8+60+74.6+0+76.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,children:/*#__PURE__*/_jsx(Container,{className:\"framer-fy2ep8-container\",nodeId:\"nIbEIj2lf\",scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gKcyARiAQ:{Ag6XWw_qR:resolvedLinks16[1]}},children:/*#__PURE__*/_jsx(Button,{Ag6XWw_qR:resolvedLinks16[0],height:\"100%\",HEosbWztN:\"Join Now\",id:\"nIbEIj2lf\",layoutId:\"nIbEIj2lf\",variant:\"BPFfPcuNl\",width:\"100%\"})})})})})})]})]})}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ub5emm hidden-149fdtj hidden-boc3wm hidden-1ssf6fz\",\"data-framer-name\":\"CTA Sales\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7434257b-0490-4e05-8646-71d8417a414b, rgb(16, 16, 18))\",\"--framer-text-transform\":\"capitalize\"},children:\"Schedule a Meeting With Our Sales Team\"})}),className:\"framer-l4xlrr\",fonts:[\"GF;DM Sans-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Find out how SpatialSense can help transform your business.\"})}),className:\"framer-16xz7lv\",fonts:[\"GF;DM Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-5y48yn\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"dSMU0fq8V\"},implicitPathVariables:undefined},{href:{webPageId:\"dSMU0fq8V\"},implicitPathVariables:undefined}],children:resolvedLinks17=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gKcyARiAQ:{y:(componentViewport?.y||0)+0+14206.4+60+198.4+20}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1t2yy9s-container\",nodeId:\"AbMgrwRrM\",rendersWithMotion:true,scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gKcyARiAQ:{Ag6XWw_qR:resolvedLinks17[1]}},children:/*#__PURE__*/_jsx(Button,{Ag6XWw_qR:resolvedLinks17[0],height:\"100%\",HEosbWztN:\"\",id:\"AbMgrwRrM\",layoutId:\"AbMgrwRrM\",variant:\"Hsf5FtJp3\",width:\"100%\"})})})})})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gKcyARiAQ:{height:700,width:\"390px\",y:(componentViewport?.y||0)+0+15789.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ohbcnm-container hidden-149fdtj hidden-boc3wm hidden-1ssf6fz\",nodeId:\"jIvBSDToI\",scopeId:\"vvg1RvENu\",children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"jIvBSDToI\",layoutId:\"jIvBSDToI\",style:{width:\"100%\"},variant:\"lajLhZYfa\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-5GezZ.framer-1jhgmtf, .framer-5GezZ .framer-1jhgmtf { display: block; }\",\".framer-5GezZ.framer-149fdtj { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1486px; }\",\".framer-5GezZ .framer-gpcw1r-container { flex: none; height: auto; min-width: 390px; position: relative; width: 100%; z-index: 1; }\",\".framer-5GezZ .framer-2jb4q8-container { flex: none; height: 500px; position: relative; width: 100%; z-index: 1; }\",\".framer-5GezZ .framer-1jomevf-container { flex: none; height: auto; max-width: 100%; position: relative; width: 100%; z-index: 1; }\",\".framer-5GezZ .framer-1kilf61 { 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: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-5GezZ .framer-hjufsv { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-5GezZ .framer-kma8z2 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 200px; justify-content: center; max-width: 100%; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-5GezZ .framer-1qcihvs, .framer-5GezZ .framer-1ucw6vg, .framer-5GezZ .framer-1bsos01 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-5GezZ .framer-tzuthh-container { flex: none; height: 87px; position: relative; width: 100%; }\",\".framer-5GezZ .framer-odi3hu { aspect-ratio: 1.9595375722543353 / 1; height: var(--framer-aspect-ratio-supported, 45px); overflow: visible; position: relative; width: 88px; }\",\".framer-5GezZ .framer-fx5qzj { height: 39px; overflow: visible; position: relative; width: 112px; }\",\".framer-5GezZ .framer-o9q940 { height: 51px; overflow: visible; position: relative; width: 48px; }\",\".framer-5GezZ .framer-ls8r9c { aspect-ratio: 3.683453237410072 / 1; height: var(--framer-aspect-ratio-supported, 28px); overflow: visible; position: relative; width: 103px; }\",\".framer-5GezZ .framer-16zp4j9 { height: 29px; overflow: visible; position: relative; width: 97px; }\",\".framer-5GezZ .framer-njy1lh { aspect-ratio: 4.241016652059597 / 1; height: var(--framer-aspect-ratio-supported, 29px); overflow: visible; position: relative; width: 123px; }\",\".framer-5GezZ .framer-jzdb3o { aspect-ratio: 3.5211267605633805 / 1; height: var(--framer-aspect-ratio-supported, 29px); overflow: visible; position: relative; width: 102px; }\",\".framer-5GezZ .framer-1vd1e2v { aspect-ratio: 3.8839662447257384 / 1; height: var(--framer-aspect-ratio-supported, 29px); overflow: visible; position: relative; width: 112px; }\",\".framer-5GezZ .framer-169rup7-container { flex: none; height: 800px; position: relative; width: 100%; z-index: 1; }\",\".framer-5GezZ .framer-wiuvux { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: 200px; justify-content: center; max-width: 100%; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-5GezZ .framer-keq2go-container { flex: none; height: 200px; position: relative; width: 951px; }\",\".framer-5GezZ .framer-1tbf7wh { aspect-ratio: 3.8839662447257384 / 1; height: var(--framer-aspect-ratio-supported, 42px); overflow: visible; position: relative; width: 163px; }\",\".framer-5GezZ .framer-3efthr { aspect-ratio: 3.5211267605633805 / 1; height: var(--framer-aspect-ratio-supported, 57px); overflow: visible; position: relative; width: 200px; }\",\".framer-5GezZ .framer-fd0ip { aspect-ratio: 4.241016652059597 / 1; height: var(--framer-aspect-ratio-supported, 48px); overflow: visible; position: relative; width: 203px; }\",\".framer-5GezZ .framer-p9hp77 { height: 108px; overflow: visible; position: relative; width: 103px; }\",\".framer-5GezZ .framer-18fpy7n { aspect-ratio: 1.9595375722543353 / 1; height: var(--framer-aspect-ratio-supported, 116px); overflow: visible; position: relative; width: 227px; }\",\".framer-5GezZ .framer-12263hy { height: 74px; overflow: visible; position: relative; width: 251px; }\",\".framer-5GezZ .framer-1sbdv7v { height: 78px; overflow: visible; position: relative; width: 223px; }\",\".framer-5GezZ .framer-5g1aac { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 60px 0px 60px 0px; position: relative; width: 397px; }\",\".framer-5GezZ .framer-8ztcbi { 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: hidden; padding: 0px; position: relative; width: 390px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-5GezZ .framer-1cqpqwh, .framer-5GezZ .framer-cqfqem { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-5GezZ .framer-ml4xgu, .framer-5GezZ .framer-y112st, .framer-5GezZ .framer-lxrrss, .framer-5GezZ .framer-nnroan { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-5GezZ .framer-1hks3b2, .framer-5GezZ .framer-1b7an4l { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-5GezZ .framer-nr48tl { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 390px; z-index: 1; }\",\".framer-5GezZ .framer-yo5x1r { -webkit-filter: drop-shadow(5px 20px 13px rgba(0, 0, 0, 0.25)); filter: drop-shadow(5px 20px 13px rgba(0, 0, 0, 0.25)); flex: none; height: 175px; position: relative; width: 225px; }\",\".framer-5GezZ .framer-117set5 { 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: 392px; }\",\".framer-5GezZ .framer-9kaqc1, .framer-5GezZ .framer-bc4r9l, .framer-5GezZ .framer-civpsd { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 73%; }\",\".framer-5GezZ .framer-638tq0 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 280px; word-break: break-word; word-wrap: break-word; }\",\".framer-5GezZ .framer-d6aca8 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 276px; word-break: break-word; word-wrap: break-word; }\",\".framer-5GezZ .framer-u9qrtb { 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; overflow: visible; padding: 0px; position: relative; width: 83%; }\",\".framer-5GezZ .framer-19cmhfl { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 297px; word-break: break-word; word-wrap: break-word; }\",\".framer-5GezZ .framer-1xuzz55-container, .framer-5GezZ .framer-1k705u2-container, .framer-5GezZ .framer-1k7y9q3-container, .framer-5GezZ .framer-8mijav-container, .framer-5GezZ .framer-1g6y3u1-container, .framer-5GezZ .framer-1gio33d-container, .framer-5GezZ .framer-10zs68j-container, .framer-5GezZ .framer-18armrt-container, .framer-5GezZ .framer-1a4y97g-container, .framer-5GezZ .framer-116mci1-container, .framer-5GezZ .framer-1axtw2x-container, .framer-5GezZ .framer-zl09gb-container, .framer-5GezZ .framer-13fneuj-container, .framer-5GezZ .framer-afi3eh-container, .framer-5GezZ .framer-18iijql-container, .framer-5GezZ .framer-62q9mt-container, .framer-5GezZ .framer-fy2ep8-container, .framer-5GezZ .framer-1t2yy9s-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-5GezZ .framer-xdcqc1 { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-5GezZ .framer-l2tvuu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 268px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-5GezZ .framer-dnf785 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 2018px; padding: 10px; position: relative; width: 400px; }\",\".framer-5GezZ .framer-b8geap, .framer-5GezZ .framer-3itbys, .framer-5GezZ .framer-qn83lg, .framer-5GezZ .framer-1emstyg, .framer-5GezZ .framer-17rebhu, .framer-5GezZ .framer-1de0wki, .framer-5GezZ .framer-5xn2g9, .framer-5GezZ .framer-1pk9z22, .framer-5GezZ .framer-58iuam, .framer-5GezZ .framer-qrb9sj, .framer-5GezZ .framer-1f5tbb1, .framer-5GezZ .framer-ijul1, .framer-5GezZ .framer-uljl4j, .framer-5GezZ .framer-16i50gs, .framer-5GezZ .framer-9obqk5, .framer-5GezZ .framer-1ey02ko, .framer-5GezZ .framer-1300rna, .framer-5GezZ .framer-1k9qsdj { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-5GezZ .framer-seag4s, .framer-5GezZ .framer-8u7xj6, .framer-5GezZ .framer-pntcdc, .framer-5GezZ .framer-16h3pr0, .framer-5GezZ .framer-1meyeso, .framer-5GezZ .framer-rtkmu6, .framer-5GezZ .framer-1kbum3h, .framer-5GezZ .framer-14gv128, .framer-5GezZ .framer-1615l61, .framer-5GezZ .framer-1h9mmxo, .framer-5GezZ .framer-55btps, .framer-5GezZ .framer-8muxq0, .framer-5GezZ .framer-s2irys { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-5GezZ .framer-k5fqym, .framer-5GezZ .framer-fnbd7l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-5GezZ .framer-4p4t6o-container, .framer-5GezZ .framer-13eiskq-container, .framer-5GezZ .framer-1bvhojf-container, .framer-5GezZ .framer-32fa0c-container, .framer-5GezZ .framer-a81xq4-container, .framer-5GezZ .framer-gwwokl-container { flex: none; height: 44px; position: relative; width: auto; }\",\".framer-5GezZ .framer-1gsrfhx, .framer-5GezZ .framer-8rssid, .framer-5GezZ .framer-fr8uy, .framer-5GezZ .framer-sdiebg, .framer-5GezZ .framer-1guociy, .framer-5GezZ .framer-1hqrii4 { align-content: center; align-items: center; background-color: #ebebeb; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 15px; position: relative; text-decoration: none; width: min-content; }\",\".framer-5GezZ .framer-u498gb, .framer-5GezZ .framer-tyif5r, .framer-5GezZ .framer-i1v4a9, .framer-5GezZ .framer-1smvz7g, .framer-5GezZ .framer-1skqu67, .framer-5GezZ .framer-rlzyco { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-5GezZ .framer-1budd4x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 277px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 393px; }\",\".framer-5GezZ .framer-95chfx { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 423px; justify-content: center; overflow: visible; padding: 100px 0px 100px 0px; position: relative; width: 390px; z-index: 1; }\",\".framer-5GezZ .framer-xg9ehp { -webkit-filter: drop-shadow(5px 20px 13px rgba(0, 0, 0, 0.25)); filter: drop-shadow(5px 20px 13px rgba(0, 0, 0, 0.25)); flex: none; height: 184px; position: relative; width: 264px; }\",\".framer-5GezZ .framer-dxfvgh { 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: 40px; position: relative; width: 391px; }\",\".framer-5GezZ .framer-1b70737 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 83%; }\",\".framer-5GezZ .framer-4r7tap { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 322px; word-break: break-word; word-wrap: break-word; }\",\".framer-5GezZ .framer-1bd8scj { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 301px; word-break: break-word; word-wrap: break-word; }\",\".framer-5GezZ .framer-xlzi68 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 198px; word-break: break-word; word-wrap: break-word; }\",\".framer-5GezZ .framer-wh0oei { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 40px 0px 40px; position: relative; width: 397px; }\",\".framer-5GezZ .framer-c2kfso { -webkit-filter: drop-shadow(5px 20px 13px rgba(0, 0, 0, 0.25)); align-content: center; align-items: center; display: flex; filter: drop-shadow(5px 20px 13px rgba(0, 0, 0, 0.25)); flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 200px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 336px; }\",\".framer-5GezZ .framer-tk1ri4 { 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: hidden; padding: 50px; position: relative; width: 317px; }\",\".framer-5GezZ .framer-12a4n1f { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-5GezZ .framer-1v7beej { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 168px; word-break: break-word; word-wrap: break-word; }\",\".framer-5GezZ .framer-f4vw2x { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-5GezZ .framer-1urvo2y, .framer-5GezZ .framer-1v3fjc7 { align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 310px; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 268px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-5GezZ .framer-1azxzq9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 355px; justify-content: center; padding: 10px; position: relative; width: 100%; }\",\".framer-5GezZ .framer-1vb3lgd { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 800px; }\",\".framer-5GezZ .framer-66o7dv, .framer-5GezZ .framer-2fd2q5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 60px 0px 60px 0px; position: relative; width: 100%; }\",\".framer-5GezZ .framer-19glv8r, .framer-5GezZ .framer-tjewik, .framer-5GezZ .framer-ac336l, .framer-5GezZ .framer-1efpo95, .framer-5GezZ .framer-182sf0k { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 20px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-5GezZ .framer-e7jw5a, .framer-5GezZ .framer-qejlrw, .framer-5GezZ .framer-6ww6gr, .framer-5GezZ .framer-18vjyo2, .framer-5GezZ .framer-11c7t6a, .framer-5GezZ .framer-1756a6l, .framer-5GezZ .framer-1rpnsea, .framer-5GezZ .framer-rg5fpd, .framer-5GezZ .framer-j0n36s { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-5GezZ .framer-m71sd2 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-5GezZ .framer-1pgy0qi, .framer-5GezZ .framer-g91zf7 { align-content: center; align-items: center; background-color: #ffffff; 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%; }\",\".framer-5GezZ .framer-nw2dfu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 458px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 508px; }\",\".framer-5GezZ .framer-1j1cg5l, .framer-5GezZ .framer-1ikc2ow { 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: center; max-width: 2018px; padding: 0px; position: relative; width: 400px; }\",\".framer-5GezZ .framer-s73bko, .framer-5GezZ .framer-3jf0lz, .framer-5GezZ .framer-193gpxp, .framer-5GezZ .framer-13ncsvq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-5GezZ .framer-1evvewx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 458px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 297px; }\",\".framer-5GezZ .framer-1cs0r7o, .framer-5GezZ .framer-1qdmtus { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-5GezZ .framer-1htca89 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 558px; justify-content: center; padding: 0px; position: relative; width: 432px; }\",\".framer-5GezZ .framer-1tjtr85, .framer-5GezZ .framer-1y84n6v, .framer-5GezZ .framer-lxui7r, .framer-5GezZ .framer-1fd5s1b, .framer-5GezZ .framer-1eg78cs, .framer-5GezZ .framer-1eg85mr { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 889px; word-break: break-word; word-wrap: break-word; }\",\".framer-5GezZ .framer-1ou01m8, .framer-5GezZ .framer-1cmmcg8 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 889px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-5GezZ .framer-30l2d { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: 500px; justify-content: center; overflow: hidden; padding: 0px; position: sticky; top: 0px; width: 100%; z-index: 1; }\",\".framer-5GezZ .framer-5alec8 { -webkit-filter: drop-shadow(5px 20px 13px rgba(0, 0, 0, 0.25)); filter: drop-shadow(5px 20px 13px rgba(0, 0, 0, 0.25)); flex: none; height: 274px; position: relative; width: 278px; }\",\".framer-5GezZ .framer-3ckj13 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-5GezZ .framer-u9degp, .framer-5GezZ .framer-1ohog3a { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 83%; }\",\".framer-5GezZ .framer-186kpap, .framer-5GezZ .framer-1x2scss, .framer-5GezZ .framer-1jee4p4, .framer-5GezZ .framer-9iu527, .framer-5GezZ .framer-rscey8, .framer-5GezZ .framer-65s99k, .framer-5GezZ .framer-16dek62, .framer-5GezZ .framer-1vkzspe { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-5GezZ .framer-uvudla { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: 500px; justify-content: center; overflow: hidden; padding: 100px 0px 100px 0px; position: sticky; top: 0px; width: 100%; z-index: 1; }\",\".framer-5GezZ .framer-1p64a3t { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 40px; position: relative; width: 1px; }\",\".framer-5GezZ .framer-fhoueo, .framer-5GezZ .framer-7vvmtk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 83%; }\",\".framer-5GezZ .framer-1pa19e0, .framer-5GezZ .framer-xldbg1, .framer-5GezZ .framer-1h7gkwc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-5GezZ .framer-1lt0voa { -webkit-filter: drop-shadow(5px 20px 13px rgba(0, 0, 0, 0.25)); filter: drop-shadow(5px 20px 13px rgba(0, 0, 0, 0.25)); flex: none; height: 300px; position: relative; width: 302px; }\",\".framer-5GezZ .framer-147brys { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: 500px; justify-content: center; overflow: hidden; padding: 100px; position: sticky; top: 0px; width: 100%; z-index: 1; }\",\".framer-5GezZ .framer-uywpya { -webkit-filter: drop-shadow(5px 20px 13px rgba(0, 0, 0, 0.25)); align-content: center; align-items: center; display: flex; filter: drop-shadow(5px 20px 13px rgba(0, 0, 0, 0.25)); flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 241px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 283px; }\",\".framer-5GezZ .framer-193547b { 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: center; overflow: hidden; padding: 0px; position: relative; width: 394px; }\",\".framer-5GezZ .framer-1wv2770, .framer-5GezZ .framer-1e3drnz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 81%; }\",\".framer-5GezZ .framer-1gehu91 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 60px 40px 60px 40px; position: relative; width: 391px; }\",\".framer-5GezZ .framer-lff8ya { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 20px; position: relative; width: 391px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-5GezZ .framer-1ureope { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 352px; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-5GezZ .framer-1i1ayt1, .framer-5GezZ .framer-uhch0u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-5GezZ .framer-neamix, .framer-5GezZ .framer-baih6w { align-content: center; align-items: center; background-color: var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, #ffffff); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 40px; position: relative; width: 360px; will-change: var(--framer-will-change-override, transform); }\",\".framer-5GezZ .framer-1x0vsoo, .framer-5GezZ .framer-12hh74, .framer-5GezZ .framer-q5h13d, .framer-5GezZ .framer-1j4vi1n, .framer-5GezZ .framer-gzz9x2, .framer-5GezZ .framer-kfi3mf { align-content: center; align-items: center; aspect-ratio: 1.303030303030303 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 153px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-5GezZ .framer-11ltgkz, .framer-5GezZ .framer-1c75d32, .framer-5GezZ .framer-17b60g8, .framer-5GezZ .framer-10k87wj, .framer-5GezZ .framer-1cpdfn7, .framer-5GezZ .framer-1wumen6, .framer-5GezZ .framer-algvaf, .framer-5GezZ .framer-15ljo0e, .framer-5GezZ .framer-1rkdcta, .framer-5GezZ .framer-1in08vg, .framer-5GezZ .framer-1a3gpks, .framer-5GezZ .framer-mev7b2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-5GezZ .framer-1vd72db, .framer-5GezZ .framer-1s7viuv, .framer-5GezZ .framer-h7i21r, .framer-5GezZ .framer-1pyndxd, .framer-5GezZ .framer-1g63ian, .framer-5GezZ .framer-1yj9cas, .framer-5GezZ .framer-1q8c7vi, .framer-5GezZ .framer-1tgz0ct, .framer-5GezZ .framer-923ffl { --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-5GezZ .framer-4ds886, .framer-5GezZ .framer-1t9sktr, .framer-5GezZ .framer-5w4y3p, .framer-5GezZ .framer-14fus97, .framer-5GezZ .framer-1lwvnfc, .framer-5GezZ .framer-1onp3cz, .framer-5GezZ .framer-rrhb9o, .framer-5GezZ .framer-19edhm7 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 300px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-5GezZ .framer-1tsd3ju { align-content: center; align-items: center; background-color: var(--token-b984212c-6b21-4967-bb54-ce90369391ae, #ffffff); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 40px; position: relative; width: 360px; will-change: var(--framer-will-change-override, transform); }\",\".framer-5GezZ .framer-fduzb4 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 745px; justify-content: center; overflow: hidden; padding: 60px 0px 60px 0px; position: relative; width: 100%; }\",\".framer-5GezZ .framer-1uzprne, .framer-5GezZ .framer-1cn2fy3 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 390px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-5GezZ .framer-8y01a1, .framer-5GezZ .framer-plpdwu, .framer-5GezZ .framer-fnmfep { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-5GezZ .framer-1f83aql { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 286px; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-5GezZ .framer-wbcrq9-container { flex: none; height: 431px; position: relative; width: 390px; }\",\".framer-5GezZ .framer-lcswoj-container, .framer-5GezZ .framer-vjnpjy-container, .framer-5GezZ .framer-18tjnpg-container { height: 300px; position: relative; width: 300px; }\",\".framer-5GezZ .framer-10l2q5z { 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: hidden; padding: 60px 20px 60px 20px; position: relative; width: 390px; }\",\".framer-5GezZ .framer-11j7fhu, .framer-5GezZ .framer-1jk1w0e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-5GezZ .framer-vz2o9n { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 270px; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-5GezZ .framer-1a2zzub { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-5GezZ .framer-nkflnh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-5GezZ .framer-6dhgc7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-5GezZ .framer-1setmay { align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 300px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 310px; will-change: var(--framer-will-change-override, transform); }\",\".framer-5GezZ .framer-1f3qb0g { flex: none; height: 250px; overflow: visible; position: relative; width: 250px; }\",\".framer-5GezZ .framer-8qpp7o { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 223px; word-break: break-word; word-wrap: break-word; }\",\".framer-5GezZ .framer-1fzkvd8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: 417px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-5GezZ .framer-l1x8q9, .framer-5GezZ .framer-nsxsn6 { align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 300px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 300px; will-change: var(--framer-will-change-override, transform); }\",\".framer-5GezZ .framer-1scmm93, .framer-5GezZ .framer-1lfoq9k, .framer-5GezZ .framer-1vo9897 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-5GezZ .framer-rwj7lp { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 221px; word-break: break-word; word-wrap: break-word; }\",\".framer-5GezZ .framer-4z62y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: 417px; justify-content: center; overflow: visible; padding: 20px 0px 20px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-5GezZ .framer-1534hxc { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 239px; word-break: break-word; word-wrap: break-word; }\",\".framer-5GezZ .framer-1qq0k6q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 450px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-5GezZ .framer-sltw5l { align-content: center; align-items: center; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 240px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 240px; will-change: var(--framer-will-change-override, transform); }\",\".framer-5GezZ .framer-1p84f8x { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 261px; word-break: break-word; word-wrap: break-word; }\",\".framer-5GezZ .framer-lrqtgb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 100px 0px 60px 0px; position: relative; width: 350px; }\",\".framer-5GezZ .framer-fnt45j-container { flex: none; height: 300px; position: relative; width: 350px; z-index: 1; }\",\".framer-5GezZ .framer-a6a8ih { 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; overflow: visible; padding: 40px; position: relative; width: 100%; }\",\".framer-5GezZ .framer-bywmm7 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 253px; word-break: break-word; word-wrap: break-word; }\",\".framer-5GezZ .framer-1be0xam { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-5GezZ .framer-10f0t2k, .framer-5GezZ .framer-8mu3qk, .framer-5GezZ .framer-1u7i2hd, .framer-5GezZ .framer-kmq6yb, .framer-5GezZ .framer-7qvq7w, .framer-5GezZ .framer-1ya2xzo, .framer-5GezZ .framer-b57mpw, .framer-5GezZ .framer-txce8n, .framer-5GezZ .framer-15jv6hq, .framer-5GezZ .framer-17vc6k6, .framer-5GezZ .framer-1tlljvt { 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; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-5GezZ .framer-8mxx7u, .framer-5GezZ .framer-dn06qm, .framer-5GezZ .framer-5kakg, .framer-5GezZ .framer-1sqsdlm, .framer-5GezZ .framer-ueq3at, .framer-5GezZ .framer-lzww65, .framer-5GezZ .framer-9wqxlg, .framer-5GezZ .framer-1b2nqp6 { background-color: var(--token-43117a14-6afd-45ed-acaa-cf3557fdf996, #2e6eff); border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; flex: none; height: 50px; overflow: visible; position: relative; width: 50px; }\",\".framer-5GezZ .framer-9th0fp-container, .framer-5GezZ .framer-1wgq4xo-container { flex: none; height: 39px; left: calc(50.00000000000002% - 39px / 2); position: absolute; top: calc(48.00000000000002% - 39px / 2); width: 39px; }\",\".framer-5GezZ .framer-tkqmnk, .framer-5GezZ .framer-15c0wci, .framer-5GezZ .framer-vnd2ae, .framer-5GezZ .framer-x5wvgr, .framer-5GezZ .framer-zq7et8, .framer-5GezZ .framer-gd2esu, .framer-5GezZ .framer-geyebr { --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-5GezZ .framer-1wpx04n { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 238px; word-break: break-word; word-wrap: break-word; }\",\".framer-5GezZ .framer-e3mpwe-container, .framer-5GezZ .framer-j2u74h-container { flex: none; height: 35px; left: calc(48.00000000000002% - 35px / 2); position: absolute; top: calc(50.00000000000002% - 35px / 2); width: 35px; }\",\".framer-5GezZ .framer-1ylqnjb { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 227px; word-break: break-word; word-wrap: break-word; }\",\".framer-5GezZ .framer-11iv4tu-container, .framer-5GezZ .framer-u78c27-container { flex: none; height: 29px; left: calc(50.00000000000002% - 29px / 2); position: absolute; top: calc(50.00000000000002% - 29px / 2); width: 29px; }\",\".framer-5GezZ .framer-iqb614 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 315px; word-break: break-word; word-wrap: break-word; }\",\".framer-5GezZ .framer-16fjtg7 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 219px; word-break: break-word; word-wrap: break-word; }\",\".framer-5GezZ .framer-1wfskxn-container, .framer-5GezZ .framer-jowkso-container { flex: none; height: 31px; left: calc(50.00000000000002% - 31px / 2); position: absolute; top: calc(50.00000000000002% - 31px / 2); width: 31px; }\",\".framer-5GezZ .framer-1n6xips { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 246px; word-break: break-word; word-wrap: break-word; }\",\".framer-5GezZ .framer-i7bde4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 50px 0px 50px 0px; position: relative; width: 100%; }\",\".framer-5GezZ .framer-17u4ifq { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-5GezZ .framer-61wv8n { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 338px; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-5GezZ .framer-igckze { 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: 32px 0px 32px 0px; position: relative; width: 100%; }\",\".framer-5GezZ .framer-kxddeg-container, .framer-5GezZ .framer-1o4rxmz-container, .framer-5GezZ .framer-1f7nvfb-container, .framer-5GezZ .framer-1983li6-container, .framer-5GezZ .framer-1f8x10j-container, .framer-5GezZ .framer-1fdgf0i-container, .framer-5GezZ .framer-2gc5xv-container, .framer-5GezZ .framer-xmhwgk-container, .framer-5GezZ .framer-1czauic-container, .framer-5GezZ .framer-g3r1oe-container, .framer-5GezZ .framer-stfxdk-container, .framer-5GezZ .framer-18vb7gl-container { flex: none; height: 247px; position: relative; width: 260px; }\",\".framer-5GezZ .framer-22ry5v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 30px 0px 30px 0px; position: relative; width: 100%; }\",\".framer-5GezZ .framer-ywip2p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 25px 0px 25px 0px; position: relative; width: 100%; }\",\".framer-5GezZ .framer-1t7p6zt { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 763px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-5GezZ .framer-1onadz5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 458px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 650px; }\",\".framer-5GezZ .framer-1f98hfz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 458px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 650px; }\",\".framer-5GezZ .framer-eigxwm { align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 550px; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 560px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-5GezZ .framer-161wn6u { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 558px; justify-content: center; padding: 100px; position: relative; width: 634px; }\",\".framer-5GezZ .framer-168x6pg { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 120px; height: 500px; justify-content: center; overflow: hidden; padding: 0px; position: sticky; top: 0px; width: 100%; z-index: 1; }\",\".framer-5GezZ .framer-aqyjg7 { -webkit-filter: drop-shadow(5px 20px 13px rgba(0, 0, 0, 0.25)); filter: drop-shadow(5px 20px 13px rgba(0, 0, 0, 0.25)); flex: none; height: 349px; position: relative; width: 449px; }\",\".framer-5GezZ .framer-4ped4i { align-content: flex-start; align-items: flex-start; 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: 558px; }\",\".framer-5GezZ .framer-f2e04z { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 355px; word-break: break-word; word-wrap: break-word; }\",\".framer-5GezZ .framer-lc10nl { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 404px; word-break: break-word; word-wrap: break-word; }\",\".framer-5GezZ .framer-hqfwj8 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 434px; word-break: break-word; word-wrap: break-word; }\",\".framer-5GezZ .framer-pgkxad { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 42px; height: 500px; justify-content: center; overflow: hidden; padding: 100px 0px 100px 0px; position: sticky; top: 0px; width: 100%; z-index: 1; }\",\".framer-5GezZ .framer-1j8n7hi { align-content: flex-start; align-items: flex-start; 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: 464px; }\",\".framer-5GezZ .framer-2yczbw { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 439px; word-break: break-word; word-wrap: break-word; }\",\".framer-5GezZ .framer-1pg7ove, .framer-5GezZ .framer-wsk6pc { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 457px; word-break: break-word; word-wrap: break-word; }\",\".framer-5GezZ .framer-5j1onl, .framer-5GezZ .framer-k0epte { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 335px; word-break: break-word; word-wrap: break-word; }\",\".framer-5GezZ .framer-jzz53m { -webkit-filter: drop-shadow(5px 20px 13px rgba(0, 0, 0, 0.25)); filter: drop-shadow(5px 20px 13px rgba(0, 0, 0, 0.25)); flex: none; height: 349px; position: relative; width: 501px; }\",\".framer-5GezZ .framer-1sgwnpt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 36px; height: 500px; justify-content: center; overflow: hidden; padding: 100px; position: sticky; top: 0px; width: 100%; z-index: 1; }\",\".framer-5GezZ .framer-k0zbgc { -webkit-filter: drop-shadow(5px 20px 13px rgba(0, 0, 0, 0.25)); align-content: center; align-items: center; display: flex; filter: drop-shadow(5px 20px 13px rgba(0, 0, 0, 0.25)); flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 322px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 413px; }\",\".framer-5GezZ .framer-ykk7zm { 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: center; overflow: hidden; padding: 100px; position: relative; width: 580px; }\",\".framer-5GezZ .framer-j8vtco { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 959px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-5GezZ .framer-1v1rvwn { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 63px; height: 320px; justify-content: center; overflow: hidden; padding: 100px 40px 100px 40px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-5GezZ .framer-7ooyzx, .framer-5GezZ .framer-1wlpo5u { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 889px; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-5GezZ .framer-1yfbyf7 { --framer-paragraph-spacing: 0px; flex: none; height: 197px; position: relative; white-space: pre-wrap; width: 794px; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-5GezZ .framer-1up8c2j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 810px; }\",\".framer-5GezZ .framer-mxwki0, .framer-5GezZ .framer-1gd6lk6 { --border-bottom-width: 1px; --border-color: var(--token-700a1961-c2b8-4f37-ad37-e3c28ea0fc93, rgba(34, 34, 34, 0.1)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, #ffffff); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 40px; position: relative; width: 243px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-5GezZ .framer-86z00i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 194px; }\",\".framer-5GezZ .framer-r0ux58 { --border-bottom-width: 1px; --border-color: var(--token-700a1961-c2b8-4f37-ad37-e3c28ea0fc93, rgba(34, 34, 34, 0.1)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-b984212c-6b21-4967-bb54-ce90369391ae, #ffffff); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 40px; position: relative; width: 243px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-5GezZ .framer-1dvpazq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 208px; }\",\".framer-5GezZ .framer-w2epp0 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 300px; position: relative; white-space: pre-wrap; width: 184px; word-break: break-word; word-wrap: break-word; }\",\".framer-5GezZ .framer-1maxop { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 1120px; }\",\".framer-5GezZ .framer-9wjzqm { --border-bottom-width: 1px; --border-color: var(--token-700a1961-c2b8-4f37-ad37-e3c28ea0fc93, rgba(34, 34, 34, 0.1)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, #ffffff); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 487px; justify-content: flex-start; overflow: hidden; padding: 40px; position: relative; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-5GezZ .framer-60t1uo, .framer-5GezZ .framer-1d5yl50, .framer-5GezZ .framer-1gmr4li { align-content: center; align-items: center; aspect-ratio: 1.303030303030303 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 215px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-5GezZ .framer-1pwsyx2 { --border-bottom-width: 1px; --border-color: var(--token-700a1961-c2b8-4f37-ad37-e3c28ea0fc93, rgba(34, 34, 34, 0.1)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, #ffffff); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 40px; position: relative; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-5GezZ .framer-erippc { --border-bottom-width: 1px; --border-color: var(--token-700a1961-c2b8-4f37-ad37-e3c28ea0fc93, rgba(34, 34, 34, 0.1)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-b984212c-6b21-4967-bb54-ce90369391ae, #ffffff); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 40px; position: relative; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-5GezZ .framer-1qxa3ev { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 63px; height: 320px; justify-content: center; overflow: hidden; padding: 100px 40px 100px 40px; position: relative; width: 1200px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-5GezZ .framer-160bskl, .framer-5GezZ .framer-2bra97 { --framer-paragraph-spacing: 0px; flex: none; height: 122px; position: relative; white-space: pre-wrap; width: 915px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-5GezZ .framer-28pjnj-container { flex: none; height: 675px; position: relative; width: 1156px; }\",\".framer-5GezZ .framer-wv6aq-container, .framer-5GezZ .framer-s9nem9-container, .framer-5GezZ .framer-1ul6osi-container { height: 675px; position: relative; width: 1156px; }\",\".framer-5GezZ .framer-l2by32-container { flex: none; height: 470px; position: relative; width: 700px; }\",\".framer-5GezZ .framer-de1bc4-container, .framer-5GezZ .framer-1pmtu2a-container, .framer-5GezZ .framer-oi0t2d-container { height: 480px; position: relative; width: 700px; }\",\".framer-5GezZ .framer-17j4oip { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 2388px; justify-content: center; overflow: hidden; padding: 100px; position: relative; width: 100%; }\",\".framer-5GezZ .framer-e6pfl0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-5GezZ .framer-lc89nd { 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; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-5GezZ .framer-hi55dc { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 63px; height: 200px; justify-content: center; overflow: hidden; padding: 100px 40px 100px 40px; position: relative; width: 1200px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-5GezZ .framer-h6nfwf { --framer-paragraph-spacing: 0px; flex: none; height: 122px; position: relative; white-space: pre-wrap; width: 603px; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-5GezZ .framer-122avxa { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 686px; word-break: break-word; word-wrap: break-word; }\",\".framer-5GezZ .framer-brvzqr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 100px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 1195px; }\",\".framer-5GezZ .framer-403p0t-container { flex: none; height: 180px; position: relative; width: 246px; }\",\".framer-5GezZ .framer-1i0ev8y-container { flex: none; height: 180px; position: relative; width: 218px; }\",\".framer-5GezZ .framer-9ikvfr-container { flex: none; height: 180px; position: relative; width: 293px; }\",\".framer-5GezZ .framer-1qcj3q3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1408px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1184px; }\",\".framer-5GezZ .framer-1awyu0x { display: grid; flex: none; gap: 60px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(200px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; max-width: 1400px; overflow: visible; padding: 0px; position: relative; width: 1000px; }\",\".framer-5GezZ .framer-1q3bjsw, .framer-5GezZ .framer-wjwyex, .framer-5GezZ .framer-lcwjie, .framer-5GezZ .framer-1lky5x7 { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: auto; justify-content: center; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-5GezZ .framer-b44y60, .framer-5GezZ .framer-giqujy { align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 300px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-5GezZ .framer-1oj7oyd { aspect-ratio: 1.9314720812182742 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 309px); overflow: visible; position: relative; width: 597px; }\",\".framer-5GezZ .framer-21dn56, .framer-5GezZ .framer-xjti8u, .framer-5GezZ .framer-1t0erij, .framer-5GezZ .framer-1k75ds, .framer-5GezZ .framer-zx2h7w, .framer-5GezZ .framer-1y2qorb, .framer-5GezZ .framer-1dmakz5, .framer-5GezZ .framer-vn8s8w { 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: center; padding: 0px; position: relative; width: 100%; }\",\".framer-5GezZ .framer-y3oqfe, .framer-5GezZ .framer-1ygck0, .framer-5GezZ .framer-436sfs, .framer-5GezZ .framer-ny7aqu { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; grid-column: auto / span 2; height: auto; justify-content: center; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-5GezZ .framer-g84cqq { align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 404px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-5GezZ .framer-agz8bv { align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 356px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-5GezZ .framer-1jio6a9 { align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 256px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-5GezZ .framer-1xpqcjj { 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: hidden; padding: 100px; position: relative; width: 789px; }\",\".framer-5GezZ .framer-1k4wi42 { display: grid; flex: none; gap: 60px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(200px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-5GezZ .framer-p3771b { aspect-ratio: 1.9314720812182742 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 301px); overflow: visible; position: relative; width: 582px; }\",\".framer-5GezZ .framer-a4ejda { align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 284px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-5GezZ .framer-jemst4 { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 460px; word-break: break-word; word-wrap: break-word; }\",\".framer-5GezZ .framer-1pa2vtd { align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 249px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-5GezZ .framer-18qx39k { align-content: center; align-items: center; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 174px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-5GezZ .framer-1v7io7b { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: visible; padding: 100px; position: relative; width: 100%; }\",\".framer-5GezZ .framer-1nqgntv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 120px 0px; position: relative; width: 1058px; }\",\".framer-5GezZ .framer-y4r3r6-container { bottom: 0px; flex: none; height: 500px; left: 0px; position: sticky; top: 140px; width: auto; z-index: 1; }\",\".framer-5GezZ .framer-fmojlj { align-content: center; align-items: center; display: flex; flex: 2 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 190px; height: min-content; justify-content: flex-start; overflow: visible; padding: 40px 0px 200px 0px; position: relative; width: 1px; }\",\".framer-5GezZ .framer-5f4yfj { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 286px; word-break: break-word; word-wrap: break-word; }\",\".framer-5GezZ .framer-1k8kq2u, .framer-5GezZ .framer-13li5oa { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 286px; word-break: break-word; word-wrap: break-word; }\",\".framer-5GezZ .framer-17ldqr6, .framer-5GezZ .framer-1fwmwe5, .framer-5GezZ .framer-7wmxcx, .framer-5GezZ .framer-1msw3db { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 26px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-5GezZ .framer-110drev, .framer-5GezZ .framer-1ap751i { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 288px; word-break: break-word; word-wrap: break-word; }\",\".framer-5GezZ .framer-iny5ts { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 294px; word-break: break-word; word-wrap: break-word; }\",\".framer-5GezZ .framer-mbpzm7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 700px; justify-content: center; overflow: hidden; padding: 60px; position: relative; width: 100%; }\",\".framer-5GezZ .framer-ulbge6, .framer-5GezZ .framer-41gp3y { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-5GezZ .framer-kpafj3 { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: 390px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-5GezZ .framer-19wvvl3 { background-color: rgba(0, 0, 0, 0.5); bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-5GezZ .framer-p5adsz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: hidden; padding: 160px 100px 160px 100px; position: relative; width: 100%; }\",\".framer-5GezZ .framer-1gr9pv6 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: 195px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-5GezZ .framer-h1a43b-container { flex: none; height: 703px; position: relative; width: 733px; }\",\".framer-5GezZ .framer-v6f6h7-container, .framer-5GezZ .framer-qhu9ku-container, .framer-5GezZ .framer-s7fptx-container, .framer-5GezZ .framer-1xapptf-container { height: auto; position: relative; width: 693px; }\",\".framer-5GezZ .framer-193gjt8-container { height: 613px; position: relative; width: 693px; }\",\".framer-5GezZ .framer-1o67cyh-container { flex: none; height: 600px; position: relative; width: 1215px; }\",\".framer-5GezZ .framer-1dml65e-container, .framer-5GezZ .framer-1peh757-container, .framer-5GezZ .framer-b190iw-container { height: auto; position: relative; width: 1200px; }\",\".framer-5GezZ .framer-lmkvxh-container, .framer-5GezZ .framer-z5ksdf-container { height: 600px; position: relative; width: 1200px; }\",\".framer-5GezZ .framer-1sxj5l2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 100px 0px 100px 0px; position: relative; width: 1486px; }\",\".framer-5GezZ .framer-1miqnoc { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-5GezZ .framer-vhkz5p { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 959px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-5GezZ .framer-1fliy48 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: 324px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-5GezZ .framer-2ygl3y-container, .framer-5GezZ .framer-14hby00-container, .framer-5GezZ .framer-1135ni-container, .framer-5GezZ .framer-6vu4m6-container, .framer-5GezZ .framer-1anhjmt-container, .framer-5GezZ .framer-1sriyn4-container { flex: none; height: auto; position: relative; width: 347px; }\",\".framer-5GezZ .framer-1wij0wc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: 326px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-5GezZ .framer-1sts0g5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 50px 0px 50px 0px; position: relative; width: 800px; }\",\".framer-5GezZ .framer-jm8oqd { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: 216px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 800px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-5GezZ .framer-15674br { --framer-paragraph-spacing: 0px; flex: none; height: 160px; position: relative; white-space: pre-wrap; width: 546px; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-5GezZ .framer-bldo2q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: 282px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-5GezZ .framer-10vjwen { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: 285px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-5GezZ .framer-129m4u4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: 290px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-5GezZ .framer-1yu29uf { align-content: center; align-items: center; background: linear-gradient(180deg, #ffffff 0%, rgba(192, 203, 255, 0.5) 53.55855855855856%, rgb(255, 255, 255) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 500px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-5GezZ .framer-1fm7cls { flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 380px; word-break: break-word; word-wrap: break-word; }\",\".framer-5GezZ .framer-t2eqqp { flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 351px; word-break: break-word; word-wrap: break-word; }\",\".framer-5GezZ .framer-6t6vor, .framer-5GezZ .framer-1gc7qh8, .framer-5GezZ .framer-5y48yn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px; position: relative; width: min-content; }\",\".framer-5GezZ .framer-ih064n { align-content: center; align-items: center; background: linear-gradient(180deg, #ffffff 0%, rgba(192, 203, 255, 0.5) 50%, rgb(255, 255, 255) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 600px; justify-content: center; overflow: visible; padding: 100px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-5GezZ .framer-samkap { flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 571px; word-break: break-word; word-wrap: break-word; }\",\".framer-5GezZ .framer-1hicbaq { flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 483px; word-break: break-word; word-wrap: break-word; }\",\".framer-5GezZ .framer-svvj4v { 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: 100px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-5GezZ .framer-1mcsqf5, .framer-5GezZ .framer-e3vg2l { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 60px 20px 60px 20px; position: relative; width: 390px; }\",\".framer-5GezZ .framer-160xw8o { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-5GezZ .framer-h7y8tx-container { flex: none; height: 419px; position: relative; width: 390px; }\",\".framer-5GezZ .framer-beoc0b-container, .framer-5GezZ .framer-1emi0l9-container, .framer-5GezZ .framer-l1zk7v-container { height: auto; position: relative; width: 330px; }\",\".framer-5GezZ .framer-1jcu1ju-container { height: 300px; position: relative; width: 330px; }\",\".framer-5GezZ .framer-12or1ym { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 63px; height: 200px; justify-content: center; overflow: hidden; padding: 100px 40px 100px 40px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-5GezZ .framer-pxdupe { align-content: flex-end; align-items: flex-end; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 426px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-5GezZ .framer-23grct { 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: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-5GezZ .framer-axaq3e { --framer-paragraph-spacing: 0px; flex: none; height: 60px; position: relative; white-space: pre-wrap; width: 716px; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-5GezZ .framer-1v9npg5-container { flex: none; height: 1047px; position: relative; width: 1431px; }\",\".framer-5GezZ .framer-18tqn6s { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: wrap; gap: 100px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 4032px; }\",\".framer-5GezZ .framer-1lnn7lx { align-content: flex-start; align-items: flex-start; 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: 188px; }\",\".framer-5GezZ .framer-zekoey { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: 197px; position: relative; width: 234px; }\",\".framer-5GezZ .framer-w6819t, .framer-5GezZ .framer-tphfs2 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; min-width: 200px; padding: 0px; position: relative; width: 1px; }\",\".framer-5GezZ .framer-1c3snn9, .framer-5GezZ .framer-1oq6go0, .framer-5GezZ .framer-1cj73lj { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-5GezZ .framer-uaevh8-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-5GezZ .framer-f9qiwh { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 20px; position: relative; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-5GezZ .framer-1188zys { --framer-paragraph-spacing: 0px; align-self: stretch; flex: none; height: auto; position: relative; white-space: pre-wrap; width: auto; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-5GezZ .framer-1kwqmj { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 325px; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-5GezZ .framer-rpwtl6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 32px; height: 347px; justify-content: flex-start; padding: 0px; position: relative; width: 390px; }\",\".framer-5GezZ .framer-w62eoy { align-content: flex-start; align-items: flex-start; 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: 150px; }\",\".framer-5GezZ .framer-fefibs { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: 150px; position: relative; width: 150px; }\",\".framer-5GezZ .framer-1mfufy5 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 150px; word-break: break-word; word-wrap: break-word; }\",\".framer-5GezZ .framer-19d7k10 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 390px; justify-content: center; overflow: hidden; padding: 60px; position: relative; width: 390px; }\",\".framer-5GezZ .framer-1rzq3mk { background-color: rgba(0, 0, 0, 0.5); bottom: -2px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 2px; }\",\".framer-5GezZ .framer-sna14l { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: 270px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-5GezZ .framer-ub5emm { align-content: center; align-items: center; background: linear-gradient(180deg, #ffffff 0%, rgba(192, 203, 255, 0.5) 53.55855855855856%, rgb(255, 255, 255) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 60px; position: relative; width: 390px; }\",\".framer-5GezZ .framer-l4xlrr { flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 339px; word-break: break-word; word-wrap: break-word; }\",\".framer-5GezZ .framer-16xz7lv { flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 306px; word-break: break-word; word-wrap: break-word; }\",\".framer-5GezZ .framer-ohbcnm-container { flex: none; height: auto; position: relative; width: 390px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-5GezZ.framer-149fdtj, .framer-5GezZ .framer-1kilf61, .framer-5GezZ .framer-hjufsv, .framer-5GezZ .framer-kma8z2, .framer-5GezZ .framer-wiuvux, .framer-5GezZ .framer-5g1aac, .framer-5GezZ .framer-8ztcbi, .framer-5GezZ .framer-1cqpqwh, .framer-5GezZ .framer-nr48tl, .framer-5GezZ .framer-117set5, .framer-5GezZ .framer-9kaqc1, .framer-5GezZ .framer-u9qrtb, .framer-5GezZ .framer-xdcqc1, .framer-5GezZ .framer-l2tvuu, .framer-5GezZ .framer-dnf785, .framer-5GezZ .framer-k5fqym, .framer-5GezZ .framer-1gsrfhx, .framer-5GezZ .framer-1budd4x, .framer-5GezZ .framer-95chfx, .framer-5GezZ .framer-dxfvgh, .framer-5GezZ .framer-1b70737, .framer-5GezZ .framer-wh0oei, .framer-5GezZ .framer-c2kfso, .framer-5GezZ .framer-tk1ri4, .framer-5GezZ .framer-f4vw2x, .framer-5GezZ .framer-1urvo2y, .framer-5GezZ .framer-1azxzq9, .framer-5GezZ .framer-fnbd7l, .framer-5GezZ .framer-8rssid, .framer-5GezZ .framer-1vb3lgd, .framer-5GezZ .framer-66o7dv, .framer-5GezZ .framer-19glv8r, .framer-5GezZ .framer-1pgy0qi, .framer-5GezZ .framer-nw2dfu, .framer-5GezZ .framer-1j1cg5l, .framer-5GezZ .framer-s73bko, .framer-5GezZ .framer-fr8uy, .framer-5GezZ .framer-1evvewx, .framer-5GezZ .framer-1cs0r7o, .framer-5GezZ .framer-1v3fjc7, .framer-5GezZ .framer-1htca89, .framer-5GezZ .framer-3jf0lz, .framer-5GezZ .framer-sdiebg, .framer-5GezZ .framer-tjewik, .framer-5GezZ .framer-30l2d, .framer-5GezZ .framer-3ckj13, .framer-5GezZ .framer-bc4r9l, .framer-5GezZ .framer-u9degp, .framer-5GezZ .framer-186kpap, .framer-5GezZ .framer-uvudla, .framer-5GezZ .framer-1p64a3t, .framer-5GezZ .framer-fhoueo, .framer-5GezZ .framer-1pa19e0, .framer-5GezZ .framer-1x2scss, .framer-5GezZ .framer-147brys, .framer-5GezZ .framer-uywpya, .framer-5GezZ .framer-193547b, .framer-5GezZ .framer-1wv2770, .framer-5GezZ .framer-1gehu91, .framer-5GezZ .framer-lff8ya, .framer-5GezZ .framer-1i1ayt1, .framer-5GezZ .framer-neamix, .framer-5GezZ .framer-1x0vsoo, .framer-5GezZ .framer-11ltgkz, .framer-5GezZ .framer-baih6w, .framer-5GezZ .framer-12hh74, .framer-5GezZ .framer-1c75d32, .framer-5GezZ .framer-1tsd3ju, .framer-5GezZ .framer-q5h13d, .framer-5GezZ .framer-17b60g8, .framer-5GezZ .framer-fduzb4, .framer-5GezZ .framer-1uzprne, .framer-5GezZ .framer-10l2q5z, .framer-5GezZ .framer-1cn2fy3, .framer-5GezZ .framer-11j7fhu, .framer-5GezZ .framer-1a2zzub, .framer-5GezZ .framer-nkflnh, .framer-5GezZ .framer-6dhgc7, .framer-5GezZ .framer-1setmay, .framer-5GezZ .framer-10k87wj, .framer-5GezZ .framer-1fzkvd8, .framer-5GezZ .framer-l1x8q9, .framer-5GezZ .framer-1scmm93, .framer-5GezZ .framer-4z62y, .framer-5GezZ .framer-nsxsn6, .framer-5GezZ .framer-1lfoq9k, .framer-5GezZ .framer-1qq0k6q, .framer-5GezZ .framer-sltw5l, .framer-5GezZ .framer-1vo9897, .framer-5GezZ .framer-lrqtgb, .framer-5GezZ .framer-a6a8ih, .framer-5GezZ .framer-10f0t2k, .framer-5GezZ .framer-8mu3qk, .framer-5GezZ .framer-1u7i2hd, .framer-5GezZ .framer-kmq6yb, .framer-5GezZ .framer-7qvq7w, .framer-5GezZ .framer-1ya2xzo, .framer-5GezZ .framer-b57mpw, .framer-5GezZ .framer-txce8n, .framer-5GezZ .framer-i7bde4, .framer-5GezZ .framer-17u4ifq, .framer-5GezZ .framer-1cpdfn7, .framer-5GezZ .framer-igckze, .framer-5GezZ .framer-22ry5v, .framer-5GezZ .framer-ywip2p, .framer-5GezZ .framer-2fd2q5, .framer-5GezZ .framer-ac336l, .framer-5GezZ .framer-g91zf7, .framer-5GezZ .framer-1onadz5, .framer-5GezZ .framer-1ikc2ow, .framer-5GezZ .framer-193gpxp, .framer-5GezZ .framer-1guociy, .framer-5GezZ .framer-1f98hfz, .framer-5GezZ .framer-1qdmtus, .framer-5GezZ .framer-eigxwm, .framer-5GezZ .framer-161wn6u, .framer-5GezZ .framer-13ncsvq, .framer-5GezZ .framer-1hqrii4, .framer-5GezZ .framer-1efpo95, .framer-5GezZ .framer-168x6pg, .framer-5GezZ .framer-4ped4i, .framer-5GezZ .framer-civpsd, .framer-5GezZ .framer-1ohog3a, .framer-5GezZ .framer-1jee4p4, .framer-5GezZ .framer-pgkxad, .framer-5GezZ .framer-1j8n7hi, .framer-5GezZ .framer-7vvmtk, .framer-5GezZ .framer-xldbg1, .framer-5GezZ .framer-9iu527, .framer-5GezZ .framer-1sgwnpt, .framer-5GezZ .framer-k0zbgc, .framer-5GezZ .framer-ykk7zm, .framer-5GezZ .framer-1e3drnz, .framer-5GezZ .framer-j8vtco, .framer-5GezZ .framer-1v1rvwn, .framer-5GezZ .framer-15jv6hq, .framer-5GezZ .framer-1up8c2j, .framer-5GezZ .framer-mxwki0, .framer-5GezZ .framer-1j4vi1n, .framer-5GezZ .framer-1wumen6, .framer-5GezZ .framer-1gd6lk6, .framer-5GezZ .framer-gzz9x2, .framer-5GezZ .framer-86z00i, .framer-5GezZ .framer-r0ux58, .framer-5GezZ .framer-kfi3mf, .framer-5GezZ .framer-1dvpazq, .framer-5GezZ .framer-1maxop, .framer-5GezZ .framer-9wjzqm, .framer-5GezZ .framer-60t1uo, .framer-5GezZ .framer-algvaf, .framer-5GezZ .framer-1pwsyx2, .framer-5GezZ .framer-1d5yl50, .framer-5GezZ .framer-15ljo0e, .framer-5GezZ .framer-erippc, .framer-5GezZ .framer-1gmr4li, .framer-5GezZ .framer-1rkdcta, .framer-5GezZ .framer-1in08vg, .framer-5GezZ .framer-1qxa3ev, .framer-5GezZ .framer-17vc6k6, .framer-5GezZ .framer-17j4oip, .framer-5GezZ .framer-e6pfl0, .framer-5GezZ .framer-lc89nd, .framer-5GezZ .framer-hi55dc, .framer-5GezZ .framer-1tlljvt, .framer-5GezZ .framer-brvzqr, .framer-5GezZ .framer-1qcj3q3, .framer-5GezZ .framer-1q3bjsw, .framer-5GezZ .framer-b44y60, .framer-5GezZ .framer-21dn56, .framer-5GezZ .framer-y3oqfe, .framer-5GezZ .framer-g84cqq, .framer-5GezZ .framer-xjti8u, .framer-5GezZ .framer-1ygck0, .framer-5GezZ .framer-agz8bv, .framer-5GezZ .framer-1t0erij, .framer-5GezZ .framer-wjwyex, .framer-5GezZ .framer-1jio6a9, .framer-5GezZ .framer-1k75ds, .framer-5GezZ .framer-1xpqcjj, .framer-5GezZ .framer-lcwjie, .framer-5GezZ .framer-giqujy, .framer-5GezZ .framer-zx2h7w, .framer-5GezZ .framer-436sfs, .framer-5GezZ .framer-a4ejda, .framer-5GezZ .framer-1y2qorb, .framer-5GezZ .framer-ny7aqu, .framer-5GezZ .framer-1pa2vtd, .framer-5GezZ .framer-1dmakz5, .framer-5GezZ .framer-1lky5x7, .framer-5GezZ .framer-18qx39k, .framer-5GezZ .framer-vn8s8w, .framer-5GezZ .framer-1v7io7b, .framer-5GezZ .framer-1nqgntv, .framer-5GezZ .framer-fmojlj, .framer-5GezZ .framer-1h7gkwc, .framer-5GezZ .framer-17ldqr6, .framer-5GezZ .framer-rscey8, .framer-5GezZ .framer-1fwmwe5, .framer-5GezZ .framer-65s99k, .framer-5GezZ .framer-7wmxcx, .framer-5GezZ .framer-16dek62, .framer-5GezZ .framer-1msw3db, .framer-5GezZ .framer-1vkzspe, .framer-5GezZ .framer-mbpzm7, .framer-5GezZ .framer-p5adsz, .framer-5GezZ .framer-1gr9pv6, .framer-5GezZ .framer-1sxj5l2, .framer-5GezZ .framer-1miqnoc, .framer-5GezZ .framer-1a3gpks, .framer-5GezZ .framer-1fliy48, .framer-5GezZ .framer-1wij0wc, .framer-5GezZ .framer-1sts0g5, .framer-5GezZ .framer-jm8oqd, .framer-5GezZ .framer-mev7b2, .framer-5GezZ .framer-bldo2q, .framer-5GezZ .framer-10vjwen, .framer-5GezZ .framer-129m4u4, .framer-5GezZ .framer-1yu29uf, .framer-5GezZ .framer-6t6vor, .framer-5GezZ .framer-ih064n, .framer-5GezZ .framer-1gc7qh8, .framer-5GezZ .framer-svvj4v, .framer-5GezZ .framer-1mcsqf5, .framer-5GezZ .framer-182sf0k, .framer-5GezZ .framer-1jk1w0e, .framer-5GezZ .framer-12or1ym, .framer-5GezZ .framer-pxdupe, .framer-5GezZ .framer-23grct, .framer-5GezZ .framer-18tqn6s, .framer-5GezZ .framer-1lnn7lx, .framer-5GezZ .framer-w6819t, .framer-5GezZ .framer-e3vg2l, .framer-5GezZ .framer-f9qiwh, .framer-5GezZ .framer-cqfqem, .framer-5GezZ .framer-rpwtl6, .framer-5GezZ .framer-w62eoy, .framer-5GezZ .framer-tphfs2, .framer-5GezZ .framer-19d7k10, .framer-5GezZ .framer-uhch0u, .framer-5GezZ .framer-ub5emm, .framer-5GezZ .framer-5y48yn { gap: 0px; } .framer-5GezZ.framer-149fdtj > *, .framer-5GezZ .framer-hjufsv > *, .framer-5GezZ .framer-8ztcbi > *, .framer-5GezZ .framer-xdcqc1 > *, .framer-5GezZ .framer-10l2q5z > *, .framer-5GezZ .framer-17j4oip > *, .framer-5GezZ .framer-1xpqcjj > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-5GezZ.framer-149fdtj > :first-child, .framer-5GezZ .framer-hjufsv > :first-child, .framer-5GezZ .framer-kma8z2 > :first-child, .framer-5GezZ .framer-5g1aac > :first-child, .framer-5GezZ .framer-8ztcbi > :first-child, .framer-5GezZ .framer-1cqpqwh > :first-child, .framer-5GezZ .framer-nr48tl > :first-child, .framer-5GezZ .framer-117set5 > :first-child, .framer-5GezZ .framer-9kaqc1 > :first-child, .framer-5GezZ .framer-u9qrtb > :first-child, .framer-5GezZ .framer-xdcqc1 > :first-child, .framer-5GezZ .framer-l2tvuu > :first-child, .framer-5GezZ .framer-dnf785 > :first-child, .framer-5GezZ .framer-1budd4x > :first-child, .framer-5GezZ .framer-95chfx > :first-child, .framer-5GezZ .framer-dxfvgh > :first-child, .framer-5GezZ .framer-1b70737 > :first-child, .framer-5GezZ .framer-wh0oei > :first-child, .framer-5GezZ .framer-tk1ri4 > :first-child, .framer-5GezZ .framer-f4vw2x > :first-child, .framer-5GezZ .framer-1urvo2y > :first-child, .framer-5GezZ .framer-1azxzq9 > :first-child, .framer-5GezZ .framer-1vb3lgd > :first-child, .framer-5GezZ .framer-66o7dv > :first-child, .framer-5GezZ .framer-19glv8r > :first-child, .framer-5GezZ .framer-1j1cg5l > :first-child, .framer-5GezZ .framer-1evvewx > :first-child, .framer-5GezZ .framer-1v3fjc7 > :first-child, .framer-5GezZ .framer-1htca89 > :first-child, .framer-5GezZ .framer-tjewik > :first-child, .framer-5GezZ .framer-3ckj13 > :first-child, .framer-5GezZ .framer-bc4r9l > :first-child, .framer-5GezZ .framer-u9degp > :first-child, .framer-5GezZ .framer-186kpap > :first-child, .framer-5GezZ .framer-1p64a3t > :first-child, .framer-5GezZ .framer-fhoueo > :first-child, .framer-5GezZ .framer-1pa19e0 > :first-child, .framer-5GezZ .framer-1x2scss > :first-child, .framer-5GezZ .framer-193547b > :first-child, .framer-5GezZ .framer-1wv2770 > :first-child, .framer-5GezZ .framer-1gehu91 > :first-child, .framer-5GezZ .framer-lff8ya > :first-child, .framer-5GezZ .framer-1i1ayt1 > :first-child, .framer-5GezZ .framer-neamix > :first-child, .framer-5GezZ .framer-11ltgkz > :first-child, .framer-5GezZ .framer-baih6w > :first-child, .framer-5GezZ .framer-1c75d32 > :first-child, .framer-5GezZ .framer-1tsd3ju > :first-child, .framer-5GezZ .framer-17b60g8 > :first-child, .framer-5GezZ .framer-fduzb4 > :first-child, .framer-5GezZ .framer-1uzprne > :first-child, .framer-5GezZ .framer-10l2q5z > :first-child, .framer-5GezZ .framer-1cn2fy3 > :first-child, .framer-5GezZ .framer-11j7fhu > :first-child, .framer-5GezZ .framer-1a2zzub > :first-child, .framer-5GezZ .framer-nkflnh > :first-child, .framer-5GezZ .framer-6dhgc7 > :first-child, .framer-5GezZ .framer-1setmay > :first-child, .framer-5GezZ .framer-10k87wj > :first-child, .framer-5GezZ .framer-1fzkvd8 > :first-child, .framer-5GezZ .framer-l1x8q9 > :first-child, .framer-5GezZ .framer-1scmm93 > :first-child, .framer-5GezZ .framer-4z62y > :first-child, .framer-5GezZ .framer-nsxsn6 > :first-child, .framer-5GezZ .framer-1lfoq9k > :first-child, .framer-5GezZ .framer-1qq0k6q > :first-child, .framer-5GezZ .framer-sltw5l > :first-child, .framer-5GezZ .framer-1vo9897 > :first-child, .framer-5GezZ .framer-lrqtgb > :first-child, .framer-5GezZ .framer-a6a8ih > :first-child, .framer-5GezZ .framer-10f0t2k > :first-child, .framer-5GezZ .framer-8mu3qk > :first-child, .framer-5GezZ .framer-1u7i2hd > :first-child, .framer-5GezZ .framer-kmq6yb > :first-child, .framer-5GezZ .framer-7qvq7w > :first-child, .framer-5GezZ .framer-1ya2xzo > :first-child, .framer-5GezZ .framer-b57mpw > :first-child, .framer-5GezZ .framer-txce8n > :first-child, .framer-5GezZ .framer-i7bde4 > :first-child, .framer-5GezZ .framer-17u4ifq > :first-child, .framer-5GezZ .framer-1cpdfn7 > :first-child, .framer-5GezZ .framer-igckze > :first-child, .framer-5GezZ .framer-22ry5v > :first-child, .framer-5GezZ .framer-ywip2p > :first-child, .framer-5GezZ .framer-2fd2q5 > :first-child, .framer-5GezZ .framer-ac336l > :first-child, .framer-5GezZ .framer-1ikc2ow > :first-child, .framer-5GezZ .framer-1f98hfz > :first-child, .framer-5GezZ .framer-eigxwm > :first-child, .framer-5GezZ .framer-161wn6u > :first-child, .framer-5GezZ .framer-1efpo95 > :first-child, .framer-5GezZ .framer-4ped4i > :first-child, .framer-5GezZ .framer-civpsd > :first-child, .framer-5GezZ .framer-1ohog3a > :first-child, .framer-5GezZ .framer-1jee4p4 > :first-child, .framer-5GezZ .framer-1j8n7hi > :first-child, .framer-5GezZ .framer-7vvmtk > :first-child, .framer-5GezZ .framer-xldbg1 > :first-child, .framer-5GezZ .framer-9iu527 > :first-child, .framer-5GezZ .framer-ykk7zm > :first-child, .framer-5GezZ .framer-1e3drnz > :first-child, .framer-5GezZ .framer-j8vtco > :first-child, .framer-5GezZ .framer-1v1rvwn > :first-child, .framer-5GezZ .framer-15jv6hq > :first-child, .framer-5GezZ .framer-mxwki0 > :first-child, .framer-5GezZ .framer-1wumen6 > :first-child, .framer-5GezZ .framer-1gd6lk6 > :first-child, .framer-5GezZ .framer-86z00i > :first-child, .framer-5GezZ .framer-r0ux58 > :first-child, .framer-5GezZ .framer-1dvpazq > :first-child, .framer-5GezZ .framer-9wjzqm > :first-child, .framer-5GezZ .framer-algvaf > :first-child, .framer-5GezZ .framer-1pwsyx2 > :first-child, .framer-5GezZ .framer-15ljo0e > :first-child, .framer-5GezZ .framer-erippc > :first-child, .framer-5GezZ .framer-1rkdcta > :first-child, .framer-5GezZ .framer-1in08vg > :first-child, .framer-5GezZ .framer-1qxa3ev > :first-child, .framer-5GezZ .framer-17vc6k6 > :first-child, .framer-5GezZ .framer-17j4oip > :first-child, .framer-5GezZ .framer-e6pfl0 > :first-child, .framer-5GezZ .framer-lc89nd > :first-child, .framer-5GezZ .framer-hi55dc > :first-child, .framer-5GezZ .framer-1tlljvt > :first-child, .framer-5GezZ .framer-1q3bjsw > :first-child, .framer-5GezZ .framer-b44y60 > :first-child, .framer-5GezZ .framer-21dn56 > :first-child, .framer-5GezZ .framer-y3oqfe > :first-child, .framer-5GezZ .framer-g84cqq > :first-child, .framer-5GezZ .framer-xjti8u > :first-child, .framer-5GezZ .framer-1ygck0 > :first-child, .framer-5GezZ .framer-agz8bv > :first-child, .framer-5GezZ .framer-1t0erij > :first-child, .framer-5GezZ .framer-wjwyex > :first-child, .framer-5GezZ .framer-1jio6a9 > :first-child, .framer-5GezZ .framer-1k75ds > :first-child, .framer-5GezZ .framer-1xpqcjj > :first-child, .framer-5GezZ .framer-lcwjie > :first-child, .framer-5GezZ .framer-giqujy > :first-child, .framer-5GezZ .framer-zx2h7w > :first-child, .framer-5GezZ .framer-436sfs > :first-child, .framer-5GezZ .framer-a4ejda > :first-child, .framer-5GezZ .framer-1y2qorb > :first-child, .framer-5GezZ .framer-ny7aqu > :first-child, .framer-5GezZ .framer-1pa2vtd > :first-child, .framer-5GezZ .framer-1dmakz5 > :first-child, .framer-5GezZ .framer-1lky5x7 > :first-child, .framer-5GezZ .framer-18qx39k > :first-child, .framer-5GezZ .framer-vn8s8w > :first-child, .framer-5GezZ .framer-fmojlj > :first-child, .framer-5GezZ .framer-1h7gkwc > :first-child, .framer-5GezZ .framer-17ldqr6 > :first-child, .framer-5GezZ .framer-rscey8 > :first-child, .framer-5GezZ .framer-1fwmwe5 > :first-child, .framer-5GezZ .framer-65s99k > :first-child, .framer-5GezZ .framer-7wmxcx > :first-child, .framer-5GezZ .framer-16dek62 > :first-child, .framer-5GezZ .framer-1msw3db > :first-child, .framer-5GezZ .framer-1vkzspe > :first-child, .framer-5GezZ .framer-mbpzm7 > :first-child, .framer-5GezZ .framer-p5adsz > :first-child, .framer-5GezZ .framer-1gr9pv6 > :first-child, .framer-5GezZ .framer-1sxj5l2 > :first-child, .framer-5GezZ .framer-1miqnoc > :first-child, .framer-5GezZ .framer-1a3gpks > :first-child, .framer-5GezZ .framer-1sts0g5 > :first-child, .framer-5GezZ .framer-jm8oqd > :first-child, .framer-5GezZ .framer-mev7b2 > :first-child, .framer-5GezZ .framer-1yu29uf > :first-child, .framer-5GezZ .framer-ih064n > :first-child, .framer-5GezZ .framer-svvj4v > :first-child, .framer-5GezZ .framer-1mcsqf5 > :first-child, .framer-5GezZ .framer-182sf0k > :first-child, .framer-5GezZ .framer-1jk1w0e > :first-child, .framer-5GezZ .framer-12or1ym > :first-child, .framer-5GezZ .framer-23grct > :first-child, .framer-5GezZ .framer-w6819t > :first-child, .framer-5GezZ .framer-e3vg2l > :first-child, .framer-5GezZ .framer-f9qiwh > :first-child, .framer-5GezZ .framer-cqfqem > :first-child, .framer-5GezZ .framer-rpwtl6 > :first-child, .framer-5GezZ .framer-tphfs2 > :first-child, .framer-5GezZ .framer-19d7k10 > :first-child, .framer-5GezZ .framer-uhch0u > :first-child, .framer-5GezZ .framer-ub5emm > :first-child { margin-top: 0px; } .framer-5GezZ.framer-149fdtj > :last-child, .framer-5GezZ .framer-hjufsv > :last-child, .framer-5GezZ .framer-kma8z2 > :last-child, .framer-5GezZ .framer-5g1aac > :last-child, .framer-5GezZ .framer-8ztcbi > :last-child, .framer-5GezZ .framer-1cqpqwh > :last-child, .framer-5GezZ .framer-nr48tl > :last-child, .framer-5GezZ .framer-117set5 > :last-child, .framer-5GezZ .framer-9kaqc1 > :last-child, .framer-5GezZ .framer-u9qrtb > :last-child, .framer-5GezZ .framer-xdcqc1 > :last-child, .framer-5GezZ .framer-l2tvuu > :last-child, .framer-5GezZ .framer-dnf785 > :last-child, .framer-5GezZ .framer-1budd4x > :last-child, .framer-5GezZ .framer-95chfx > :last-child, .framer-5GezZ .framer-dxfvgh > :last-child, .framer-5GezZ .framer-1b70737 > :last-child, .framer-5GezZ .framer-wh0oei > :last-child, .framer-5GezZ .framer-tk1ri4 > :last-child, .framer-5GezZ .framer-f4vw2x > :last-child, .framer-5GezZ .framer-1urvo2y > :last-child, .framer-5GezZ .framer-1azxzq9 > :last-child, .framer-5GezZ .framer-1vb3lgd > :last-child, .framer-5GezZ .framer-66o7dv > :last-child, .framer-5GezZ .framer-19glv8r > :last-child, .framer-5GezZ .framer-1j1cg5l > :last-child, .framer-5GezZ .framer-1evvewx > :last-child, .framer-5GezZ .framer-1v3fjc7 > :last-child, .framer-5GezZ .framer-1htca89 > :last-child, .framer-5GezZ .framer-tjewik > :last-child, .framer-5GezZ .framer-3ckj13 > :last-child, .framer-5GezZ .framer-bc4r9l > :last-child, .framer-5GezZ .framer-u9degp > :last-child, .framer-5GezZ .framer-186kpap > :last-child, .framer-5GezZ .framer-1p64a3t > :last-child, .framer-5GezZ .framer-fhoueo > :last-child, .framer-5GezZ .framer-1pa19e0 > :last-child, .framer-5GezZ .framer-1x2scss > :last-child, .framer-5GezZ .framer-193547b > :last-child, .framer-5GezZ .framer-1wv2770 > :last-child, .framer-5GezZ .framer-1gehu91 > :last-child, .framer-5GezZ .framer-lff8ya > :last-child, .framer-5GezZ .framer-1i1ayt1 > :last-child, .framer-5GezZ .framer-neamix > :last-child, .framer-5GezZ .framer-11ltgkz > :last-child, .framer-5GezZ .framer-baih6w > :last-child, .framer-5GezZ .framer-1c75d32 > :last-child, .framer-5GezZ .framer-1tsd3ju > :last-child, .framer-5GezZ .framer-17b60g8 > :last-child, .framer-5GezZ .framer-fduzb4 > :last-child, .framer-5GezZ .framer-1uzprne > :last-child, .framer-5GezZ .framer-10l2q5z > :last-child, .framer-5GezZ .framer-1cn2fy3 > :last-child, .framer-5GezZ .framer-11j7fhu > :last-child, .framer-5GezZ .framer-1a2zzub > :last-child, .framer-5GezZ .framer-nkflnh > :last-child, .framer-5GezZ .framer-6dhgc7 > :last-child, .framer-5GezZ .framer-1setmay > :last-child, .framer-5GezZ .framer-10k87wj > :last-child, .framer-5GezZ .framer-1fzkvd8 > :last-child, .framer-5GezZ .framer-l1x8q9 > :last-child, .framer-5GezZ .framer-1scmm93 > :last-child, .framer-5GezZ .framer-4z62y > :last-child, .framer-5GezZ .framer-nsxsn6 > :last-child, .framer-5GezZ .framer-1lfoq9k > :last-child, .framer-5GezZ .framer-1qq0k6q > :last-child, .framer-5GezZ .framer-sltw5l > :last-child, .framer-5GezZ .framer-1vo9897 > :last-child, .framer-5GezZ .framer-lrqtgb > :last-child, .framer-5GezZ .framer-a6a8ih > :last-child, .framer-5GezZ .framer-10f0t2k > :last-child, .framer-5GezZ .framer-8mu3qk > :last-child, .framer-5GezZ .framer-1u7i2hd > :last-child, .framer-5GezZ .framer-kmq6yb > :last-child, .framer-5GezZ .framer-7qvq7w > :last-child, .framer-5GezZ .framer-1ya2xzo > :last-child, .framer-5GezZ .framer-b57mpw > :last-child, .framer-5GezZ .framer-txce8n > :last-child, .framer-5GezZ .framer-i7bde4 > :last-child, .framer-5GezZ .framer-17u4ifq > :last-child, .framer-5GezZ .framer-1cpdfn7 > :last-child, .framer-5GezZ .framer-igckze > :last-child, .framer-5GezZ .framer-22ry5v > :last-child, .framer-5GezZ .framer-ywip2p > :last-child, .framer-5GezZ .framer-2fd2q5 > :last-child, .framer-5GezZ .framer-ac336l > :last-child, .framer-5GezZ .framer-1ikc2ow > :last-child, .framer-5GezZ .framer-1f98hfz > :last-child, .framer-5GezZ .framer-eigxwm > :last-child, .framer-5GezZ .framer-161wn6u > :last-child, .framer-5GezZ .framer-1efpo95 > :last-child, .framer-5GezZ .framer-4ped4i > :last-child, .framer-5GezZ .framer-civpsd > :last-child, .framer-5GezZ .framer-1ohog3a > :last-child, .framer-5GezZ .framer-1jee4p4 > :last-child, .framer-5GezZ .framer-1j8n7hi > :last-child, .framer-5GezZ .framer-7vvmtk > :last-child, .framer-5GezZ .framer-xldbg1 > :last-child, .framer-5GezZ .framer-9iu527 > :last-child, .framer-5GezZ .framer-ykk7zm > :last-child, .framer-5GezZ .framer-1e3drnz > :last-child, .framer-5GezZ .framer-j8vtco > :last-child, .framer-5GezZ .framer-1v1rvwn > :last-child, .framer-5GezZ .framer-15jv6hq > :last-child, .framer-5GezZ .framer-mxwki0 > :last-child, .framer-5GezZ .framer-1wumen6 > :last-child, .framer-5GezZ .framer-1gd6lk6 > :last-child, .framer-5GezZ .framer-86z00i > :last-child, .framer-5GezZ .framer-r0ux58 > :last-child, .framer-5GezZ .framer-1dvpazq > :last-child, .framer-5GezZ .framer-9wjzqm > :last-child, .framer-5GezZ .framer-algvaf > :last-child, .framer-5GezZ .framer-1pwsyx2 > :last-child, .framer-5GezZ .framer-15ljo0e > :last-child, .framer-5GezZ .framer-erippc > :last-child, .framer-5GezZ .framer-1rkdcta > :last-child, .framer-5GezZ .framer-1in08vg > :last-child, .framer-5GezZ .framer-1qxa3ev > :last-child, .framer-5GezZ .framer-17vc6k6 > :last-child, .framer-5GezZ .framer-17j4oip > :last-child, .framer-5GezZ .framer-e6pfl0 > :last-child, .framer-5GezZ .framer-lc89nd > :last-child, .framer-5GezZ .framer-hi55dc > :last-child, .framer-5GezZ .framer-1tlljvt > :last-child, .framer-5GezZ .framer-1q3bjsw > :last-child, .framer-5GezZ .framer-b44y60 > :last-child, .framer-5GezZ .framer-21dn56 > :last-child, .framer-5GezZ .framer-y3oqfe > :last-child, .framer-5GezZ .framer-g84cqq > :last-child, .framer-5GezZ .framer-xjti8u > :last-child, .framer-5GezZ .framer-1ygck0 > :last-child, .framer-5GezZ .framer-agz8bv > :last-child, .framer-5GezZ .framer-1t0erij > :last-child, .framer-5GezZ .framer-wjwyex > :last-child, .framer-5GezZ .framer-1jio6a9 > :last-child, .framer-5GezZ .framer-1k75ds > :last-child, .framer-5GezZ .framer-1xpqcjj > :last-child, .framer-5GezZ .framer-lcwjie > :last-child, .framer-5GezZ .framer-giqujy > :last-child, .framer-5GezZ .framer-zx2h7w > :last-child, .framer-5GezZ .framer-436sfs > :last-child, .framer-5GezZ .framer-a4ejda > :last-child, .framer-5GezZ .framer-1y2qorb > :last-child, .framer-5GezZ .framer-ny7aqu > :last-child, .framer-5GezZ .framer-1pa2vtd > :last-child, .framer-5GezZ .framer-1dmakz5 > :last-child, .framer-5GezZ .framer-1lky5x7 > :last-child, .framer-5GezZ .framer-18qx39k > :last-child, .framer-5GezZ .framer-vn8s8w > :last-child, .framer-5GezZ .framer-fmojlj > :last-child, .framer-5GezZ .framer-1h7gkwc > :last-child, .framer-5GezZ .framer-17ldqr6 > :last-child, .framer-5GezZ .framer-rscey8 > :last-child, .framer-5GezZ .framer-1fwmwe5 > :last-child, .framer-5GezZ .framer-65s99k > :last-child, .framer-5GezZ .framer-7wmxcx > :last-child, .framer-5GezZ .framer-16dek62 > :last-child, .framer-5GezZ .framer-1msw3db > :last-child, .framer-5GezZ .framer-1vkzspe > :last-child, .framer-5GezZ .framer-mbpzm7 > :last-child, .framer-5GezZ .framer-p5adsz > :last-child, .framer-5GezZ .framer-1gr9pv6 > :last-child, .framer-5GezZ .framer-1sxj5l2 > :last-child, .framer-5GezZ .framer-1miqnoc > :last-child, .framer-5GezZ .framer-1a3gpks > :last-child, .framer-5GezZ .framer-1sts0g5 > :last-child, .framer-5GezZ .framer-jm8oqd > :last-child, .framer-5GezZ .framer-mev7b2 > :last-child, .framer-5GezZ .framer-1yu29uf > :last-child, .framer-5GezZ .framer-ih064n > :last-child, .framer-5GezZ .framer-svvj4v > :last-child, .framer-5GezZ .framer-1mcsqf5 > :last-child, .framer-5GezZ .framer-182sf0k > :last-child, .framer-5GezZ .framer-1jk1w0e > :last-child, .framer-5GezZ .framer-12or1ym > :last-child, .framer-5GezZ .framer-23grct > :last-child, .framer-5GezZ .framer-w6819t > :last-child, .framer-5GezZ .framer-e3vg2l > :last-child, .framer-5GezZ .framer-f9qiwh > :last-child, .framer-5GezZ .framer-cqfqem > :last-child, .framer-5GezZ .framer-rpwtl6 > :last-child, .framer-5GezZ .framer-tphfs2 > :last-child, .framer-5GezZ .framer-19d7k10 > :last-child, .framer-5GezZ .framer-uhch0u > :last-child, .framer-5GezZ .framer-ub5emm > :last-child { margin-bottom: 0px; } .framer-5GezZ .framer-1kilf61 > *, .framer-5GezZ .framer-1gsrfhx > *, .framer-5GezZ .framer-c2kfso > *, .framer-5GezZ .framer-8rssid > *, .framer-5GezZ .framer-nw2dfu > *, .framer-5GezZ .framer-fr8uy > *, .framer-5GezZ .framer-1cs0r7o > *, .framer-5GezZ .framer-sdiebg > *, .framer-5GezZ .framer-uywpya > *, .framer-5GezZ .framer-1x0vsoo > *, .framer-5GezZ .framer-12hh74 > *, .framer-5GezZ .framer-q5h13d > *, .framer-5GezZ .framer-1onadz5 > *, .framer-5GezZ .framer-1guociy > *, .framer-5GezZ .framer-1qdmtus > *, .framer-5GezZ .framer-1hqrii4 > *, .framer-5GezZ .framer-k0zbgc > *, .framer-5GezZ .framer-1j4vi1n > *, .framer-5GezZ .framer-gzz9x2 > *, .framer-5GezZ .framer-kfi3mf > *, .framer-5GezZ .framer-60t1uo > *, .framer-5GezZ .framer-1d5yl50 > *, .framer-5GezZ .framer-1gmr4li > *, .framer-5GezZ .framer-1qcj3q3 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-5GezZ .framer-1kilf61 > :first-child, .framer-5GezZ .framer-wiuvux > :first-child, .framer-5GezZ .framer-k5fqym > :first-child, .framer-5GezZ .framer-1gsrfhx > :first-child, .framer-5GezZ .framer-c2kfso > :first-child, .framer-5GezZ .framer-fnbd7l > :first-child, .framer-5GezZ .framer-8rssid > :first-child, .framer-5GezZ .framer-1pgy0qi > :first-child, .framer-5GezZ .framer-nw2dfu > :first-child, .framer-5GezZ .framer-s73bko > :first-child, .framer-5GezZ .framer-fr8uy > :first-child, .framer-5GezZ .framer-1cs0r7o > :first-child, .framer-5GezZ .framer-3jf0lz > :first-child, .framer-5GezZ .framer-sdiebg > :first-child, .framer-5GezZ .framer-30l2d > :first-child, .framer-5GezZ .framer-uvudla > :first-child, .framer-5GezZ .framer-147brys > :first-child, .framer-5GezZ .framer-uywpya > :first-child, .framer-5GezZ .framer-1x0vsoo > :first-child, .framer-5GezZ .framer-12hh74 > :first-child, .framer-5GezZ .framer-q5h13d > :first-child, .framer-5GezZ .framer-g91zf7 > :first-child, .framer-5GezZ .framer-1onadz5 > :first-child, .framer-5GezZ .framer-193gpxp > :first-child, .framer-5GezZ .framer-1guociy > :first-child, .framer-5GezZ .framer-1qdmtus > :first-child, .framer-5GezZ .framer-13ncsvq > :first-child, .framer-5GezZ .framer-1hqrii4 > :first-child, .framer-5GezZ .framer-168x6pg > :first-child, .framer-5GezZ .framer-pgkxad > :first-child, .framer-5GezZ .framer-1sgwnpt > :first-child, .framer-5GezZ .framer-k0zbgc > :first-child, .framer-5GezZ .framer-1up8c2j > :first-child, .framer-5GezZ .framer-1j4vi1n > :first-child, .framer-5GezZ .framer-gzz9x2 > :first-child, .framer-5GezZ .framer-kfi3mf > :first-child, .framer-5GezZ .framer-1maxop > :first-child, .framer-5GezZ .framer-60t1uo > :first-child, .framer-5GezZ .framer-1d5yl50 > :first-child, .framer-5GezZ .framer-1gmr4li > :first-child, .framer-5GezZ .framer-brvzqr > :first-child, .framer-5GezZ .framer-1qcj3q3 > :first-child, .framer-5GezZ .framer-1v7io7b > :first-child, .framer-5GezZ .framer-1nqgntv > :first-child, .framer-5GezZ .framer-1fliy48 > :first-child, .framer-5GezZ .framer-1wij0wc > :first-child, .framer-5GezZ .framer-bldo2q > :first-child, .framer-5GezZ .framer-10vjwen > :first-child, .framer-5GezZ .framer-129m4u4 > :first-child, .framer-5GezZ .framer-6t6vor > :first-child, .framer-5GezZ .framer-1gc7qh8 > :first-child, .framer-5GezZ .framer-pxdupe > :first-child, .framer-5GezZ .framer-18tqn6s > :first-child, .framer-5GezZ .framer-1lnn7lx > :first-child, .framer-5GezZ .framer-w62eoy > :first-child, .framer-5GezZ .framer-5y48yn > :first-child { margin-left: 0px; } .framer-5GezZ .framer-1kilf61 > :last-child, .framer-5GezZ .framer-wiuvux > :last-child, .framer-5GezZ .framer-k5fqym > :last-child, .framer-5GezZ .framer-1gsrfhx > :last-child, .framer-5GezZ .framer-c2kfso > :last-child, .framer-5GezZ .framer-fnbd7l > :last-child, .framer-5GezZ .framer-8rssid > :last-child, .framer-5GezZ .framer-1pgy0qi > :last-child, .framer-5GezZ .framer-nw2dfu > :last-child, .framer-5GezZ .framer-s73bko > :last-child, .framer-5GezZ .framer-fr8uy > :last-child, .framer-5GezZ .framer-1cs0r7o > :last-child, .framer-5GezZ .framer-3jf0lz > :last-child, .framer-5GezZ .framer-sdiebg > :last-child, .framer-5GezZ .framer-30l2d > :last-child, .framer-5GezZ .framer-uvudla > :last-child, .framer-5GezZ .framer-147brys > :last-child, .framer-5GezZ .framer-uywpya > :last-child, .framer-5GezZ .framer-1x0vsoo > :last-child, .framer-5GezZ .framer-12hh74 > :last-child, .framer-5GezZ .framer-q5h13d > :last-child, .framer-5GezZ .framer-g91zf7 > :last-child, .framer-5GezZ .framer-1onadz5 > :last-child, .framer-5GezZ .framer-193gpxp > :last-child, .framer-5GezZ .framer-1guociy > :last-child, .framer-5GezZ .framer-1qdmtus > :last-child, .framer-5GezZ .framer-13ncsvq > :last-child, .framer-5GezZ .framer-1hqrii4 > :last-child, .framer-5GezZ .framer-168x6pg > :last-child, .framer-5GezZ .framer-pgkxad > :last-child, .framer-5GezZ .framer-1sgwnpt > :last-child, .framer-5GezZ .framer-k0zbgc > :last-child, .framer-5GezZ .framer-1up8c2j > :last-child, .framer-5GezZ .framer-1j4vi1n > :last-child, .framer-5GezZ .framer-gzz9x2 > :last-child, .framer-5GezZ .framer-kfi3mf > :last-child, .framer-5GezZ .framer-1maxop > :last-child, .framer-5GezZ .framer-60t1uo > :last-child, .framer-5GezZ .framer-1d5yl50 > :last-child, .framer-5GezZ .framer-1gmr4li > :last-child, .framer-5GezZ .framer-brvzqr > :last-child, .framer-5GezZ .framer-1qcj3q3 > :last-child, .framer-5GezZ .framer-1v7io7b > :last-child, .framer-5GezZ .framer-1nqgntv > :last-child, .framer-5GezZ .framer-1fliy48 > :last-child, .framer-5GezZ .framer-1wij0wc > :last-child, .framer-5GezZ .framer-bldo2q > :last-child, .framer-5GezZ .framer-10vjwen > :last-child, .framer-5GezZ .framer-129m4u4 > :last-child, .framer-5GezZ .framer-6t6vor > :last-child, .framer-5GezZ .framer-1gc7qh8 > :last-child, .framer-5GezZ .framer-pxdupe > :last-child, .framer-5GezZ .framer-18tqn6s > :last-child, .framer-5GezZ .framer-1lnn7lx > :last-child, .framer-5GezZ .framer-w62eoy > :last-child, .framer-5GezZ .framer-5y48yn > :last-child { margin-right: 0px; } .framer-5GezZ .framer-kma8z2 > *, .framer-5GezZ .framer-dnf785 > *, .framer-5GezZ .framer-1budd4x > *, .framer-5GezZ .framer-1urvo2y > *, .framer-5GezZ .framer-1j1cg5l > *, .framer-5GezZ .framer-1evvewx > *, .framer-5GezZ .framer-1v3fjc7 > *, .framer-5GezZ .framer-186kpap > *, .framer-5GezZ .framer-1x2scss > *, .framer-5GezZ .framer-193547b > *, .framer-5GezZ .framer-1setmay > *, .framer-5GezZ .framer-l1x8q9 > *, .framer-5GezZ .framer-nsxsn6 > *, .framer-5GezZ .framer-sltw5l > *, .framer-5GezZ .framer-a6a8ih > *, .framer-5GezZ .framer-10f0t2k > *, .framer-5GezZ .framer-8mu3qk > *, .framer-5GezZ .framer-1u7i2hd > *, .framer-5GezZ .framer-kmq6yb > *, .framer-5GezZ .framer-7qvq7w > *, .framer-5GezZ .framer-1ya2xzo > *, .framer-5GezZ .framer-b57mpw > *, .framer-5GezZ .framer-txce8n > *, .framer-5GezZ .framer-22ry5v > *, .framer-5GezZ .framer-ywip2p > *, .framer-5GezZ .framer-1ikc2ow > *, .framer-5GezZ .framer-1f98hfz > *, .framer-5GezZ .framer-eigxwm > *, .framer-5GezZ .framer-1jee4p4 > *, .framer-5GezZ .framer-9iu527 > *, .framer-5GezZ .framer-ykk7zm > *, .framer-5GezZ .framer-j8vtco > *, .framer-5GezZ .framer-15jv6hq > *, .framer-5GezZ .framer-17vc6k6 > *, .framer-5GezZ .framer-1tlljvt > *, .framer-5GezZ .framer-b44y60 > *, .framer-5GezZ .framer-g84cqq > *, .framer-5GezZ .framer-agz8bv > *, .framer-5GezZ .framer-1jio6a9 > *, .framer-5GezZ .framer-giqujy > *, .framer-5GezZ .framer-a4ejda > *, .framer-5GezZ .framer-1pa2vtd > *, .framer-5GezZ .framer-18qx39k > *, .framer-5GezZ .framer-rscey8 > *, .framer-5GezZ .framer-65s99k > *, .framer-5GezZ .framer-16dek62 > *, .framer-5GezZ .framer-1vkzspe > *, .framer-5GezZ .framer-mbpzm7 > *, .framer-5GezZ .framer-1yu29uf > *, .framer-5GezZ .framer-ih064n > *, .framer-5GezZ .framer-23grct > *, .framer-5GezZ .framer-19d7k10 > *, .framer-5GezZ .framer-ub5emm > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-5GezZ .framer-wiuvux > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } .framer-5GezZ .framer-5g1aac > *, .framer-5GezZ .framer-1cqpqwh > *, .framer-5GezZ .framer-11j7fhu > *, .framer-5GezZ .framer-1fzkvd8 > *, .framer-5GezZ .framer-1jk1w0e > *, .framer-5GezZ .framer-cqfqem > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-5GezZ .framer-nr48tl > *, .framer-5GezZ .framer-l2tvuu > *, .framer-5GezZ .framer-95chfx > *, .framer-5GezZ .framer-wh0oei > *, .framer-5GezZ .framer-f4vw2x > *, .framer-5GezZ .framer-1azxzq9 > *, .framer-5GezZ .framer-1vb3lgd > *, .framer-5GezZ .framer-1htca89 > *, .framer-5GezZ .framer-1gehu91 > *, .framer-5GezZ .framer-11ltgkz > *, .framer-5GezZ .framer-1c75d32 > *, .framer-5GezZ .framer-17b60g8 > *, .framer-5GezZ .framer-fduzb4 > *, .framer-5GezZ .framer-1a2zzub > *, .framer-5GezZ .framer-10k87wj > *, .framer-5GezZ .framer-1scmm93 > *, .framer-5GezZ .framer-1lfoq9k > *, .framer-5GezZ .framer-1vo9897 > *, .framer-5GezZ .framer-1cpdfn7 > *, .framer-5GezZ .framer-igckze > *, .framer-5GezZ .framer-161wn6u > *, .framer-5GezZ .framer-1wumen6 > *, .framer-5GezZ .framer-86z00i > *, .framer-5GezZ .framer-1dvpazq > *, .framer-5GezZ .framer-algvaf > *, .framer-5GezZ .framer-15ljo0e > *, .framer-5GezZ .framer-1rkdcta > *, .framer-5GezZ .framer-1in08vg > *, .framer-5GezZ .framer-21dn56 > *, .framer-5GezZ .framer-xjti8u > *, .framer-5GezZ .framer-1t0erij > *, .framer-5GezZ .framer-1k75ds > *, .framer-5GezZ .framer-zx2h7w > *, .framer-5GezZ .framer-1y2qorb > *, .framer-5GezZ .framer-1dmakz5 > *, .framer-5GezZ .framer-vn8s8w > *, .framer-5GezZ .framer-1a3gpks > *, .framer-5GezZ .framer-mev7b2 > *, .framer-5GezZ .framer-svvj4v > *, .framer-5GezZ .framer-w6819t > *, .framer-5GezZ .framer-tphfs2 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-5GezZ .framer-117set5 > *, .framer-5GezZ .framer-dxfvgh > *, .framer-5GezZ .framer-tk1ri4 > *, .framer-5GezZ .framer-19glv8r > *, .framer-5GezZ .framer-tjewik > *, .framer-5GezZ .framer-3ckj13 > *, .framer-5GezZ .framer-1p64a3t > *, .framer-5GezZ .framer-1i1ayt1 > *, .framer-5GezZ .framer-1uzprne > *, .framer-5GezZ .framer-1cn2fy3 > *, .framer-5GezZ .framer-4z62y > *, .framer-5GezZ .framer-17u4ifq > *, .framer-5GezZ .framer-ac336l > *, .framer-5GezZ .framer-1efpo95 > *, .framer-5GezZ .framer-4ped4i > *, .framer-5GezZ .framer-1j8n7hi > *, .framer-5GezZ .framer-1gr9pv6 > *, .framer-5GezZ .framer-1miqnoc > *, .framer-5GezZ .framer-jm8oqd > *, .framer-5GezZ .framer-1mcsqf5 > *, .framer-5GezZ .framer-182sf0k > *, .framer-5GezZ .framer-e3vg2l > *, .framer-5GezZ .framer-f9qiwh > *, .framer-5GezZ .framer-uhch0u > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-5GezZ .framer-9kaqc1 > *, .framer-5GezZ .framer-1b70737 > *, .framer-5GezZ .framer-bc4r9l > *, .framer-5GezZ .framer-fhoueo > *, .framer-5GezZ .framer-1wv2770 > *, .framer-5GezZ .framer-civpsd > *, .framer-5GezZ .framer-7vvmtk > *, .framer-5GezZ .framer-1e3drnz > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-5GezZ .framer-u9qrtb > *, .framer-5GezZ .framer-66o7dv > *, .framer-5GezZ .framer-u9degp > *, .framer-5GezZ .framer-1pa19e0 > *, .framer-5GezZ .framer-6dhgc7 > *, .framer-5GezZ .framer-2fd2q5 > *, .framer-5GezZ .framer-1ohog3a > *, .framer-5GezZ .framer-xldbg1 > *, .framer-5GezZ .framer-lc89nd > *, .framer-5GezZ .framer-1h7gkwc > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-5GezZ .framer-k5fqym > *, .framer-5GezZ .framer-fnbd7l > *, .framer-5GezZ .framer-s73bko > *, .framer-5GezZ .framer-3jf0lz > *, .framer-5GezZ .framer-193gpxp > *, .framer-5GezZ .framer-13ncsvq > *, .framer-5GezZ .framer-1up8c2j > *, .framer-5GezZ .framer-1maxop > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-5GezZ .framer-1pgy0qi > *, .framer-5GezZ .framer-g91zf7 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-5GezZ .framer-30l2d > *, .framer-5GezZ .framer-uvudla > *, .framer-5GezZ .framer-147brys > *, .framer-5GezZ .framer-1fliy48 > *, .framer-5GezZ .framer-1wij0wc > *, .framer-5GezZ .framer-bldo2q > *, .framer-5GezZ .framer-10vjwen > *, .framer-5GezZ .framer-129m4u4 > *, .framer-5GezZ .framer-1lnn7lx > *, .framer-5GezZ .framer-w62eoy > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-5GezZ .framer-lff8ya > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-5GezZ .framer-neamix > *, .framer-5GezZ .framer-baih6w > *, .framer-5GezZ .framer-1tsd3ju > *, .framer-5GezZ .framer-nkflnh > *, .framer-5GezZ .framer-1qq0k6q > *, .framer-5GezZ .framer-mxwki0 > *, .framer-5GezZ .framer-1gd6lk6 > *, .framer-5GezZ .framer-r0ux58 > *, .framer-5GezZ .framer-9wjzqm > *, .framer-5GezZ .framer-1pwsyx2 > *, .framer-5GezZ .framer-erippc > *, .framer-5GezZ .framer-1q3bjsw > *, .framer-5GezZ .framer-y3oqfe > *, .framer-5GezZ .framer-1ygck0 > *, .framer-5GezZ .framer-wjwyex > *, .framer-5GezZ .framer-lcwjie > *, .framer-5GezZ .framer-436sfs > *, .framer-5GezZ .framer-ny7aqu > *, .framer-5GezZ .framer-1lky5x7 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-5GezZ .framer-lrqtgb > *, .framer-5GezZ .framer-rpwtl6 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-5GezZ .framer-i7bde4 > *, .framer-5GezZ .framer-1sxj5l2 > *, .framer-5GezZ .framer-1sts0g5 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-5GezZ .framer-168x6pg > * { margin: 0px; margin-left: calc(120px / 2); margin-right: calc(120px / 2); } .framer-5GezZ .framer-pgkxad > * { margin: 0px; margin-left: calc(42px / 2); margin-right: calc(42px / 2); } .framer-5GezZ .framer-1sgwnpt > * { margin: 0px; margin-left: calc(36px / 2); margin-right: calc(36px / 2); } .framer-5GezZ .framer-1v1rvwn > *, .framer-5GezZ .framer-1qxa3ev > *, .framer-5GezZ .framer-hi55dc > *, .framer-5GezZ .framer-12or1ym > * { margin: 0px; margin-bottom: calc(63px / 2); margin-top: calc(63px / 2); } .framer-5GezZ .framer-e6pfl0 > *, .framer-5GezZ .framer-p5adsz > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-5GezZ .framer-brvzqr > *, .framer-5GezZ .framer-1v7io7b > *, .framer-5GezZ .framer-18tqn6s > * { margin: 0px; margin-left: calc(100px / 2); margin-right: calc(100px / 2); } .framer-5GezZ .framer-1nqgntv > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-5GezZ .framer-fmojlj > * { margin: 0px; margin-bottom: calc(190px / 2); margin-top: calc(190px / 2); } .framer-5GezZ .framer-17ldqr6 > *, .framer-5GezZ .framer-1fwmwe5 > *, .framer-5GezZ .framer-7wmxcx > *, .framer-5GezZ .framer-1msw3db > * { margin: 0px; margin-bottom: calc(26px / 2); margin-top: calc(26px / 2); } .framer-5GezZ .framer-6t6vor > *, .framer-5GezZ .framer-1gc7qh8 > *, .framer-5GezZ .framer-5y48yn > * { margin: 0px; margin-left: calc(18px / 2); margin-right: calc(18px / 2); } .framer-5GezZ .framer-pxdupe > * { margin: 0px; margin-left: calc(426px / 2); margin-right: calc(426px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,'.framer-5GezZ[data-border=\"true\"]::after, .framer-5GezZ [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1399px) { .framer-5GezZ.framer-149fdtj { width: 810px; } .framer-5GezZ .framer-1jomevf-container { max-width: unset; min-width: 810px; } .framer-5GezZ .framer-hjufsv { flex: none; width: 800px; } .framer-5GezZ .framer-169rup7-container { height: 700px; order: 1; width: 150%; } .framer-5GezZ .framer-wiuvux { flex-direction: column; gap: 0px; height: 284px; order: 2; padding: 10px 0px 0px 0px; width: 800px; } .framer-5GezZ .framer-keq2go-container, .framer-5GezZ .framer-1fd5s1b, .framer-5GezZ .framer-brvzqr, .framer-5GezZ .framer-13li5oa, .framer-5GezZ .framer-110drev, .framer-5GezZ .framer-iny5ts, .framer-5GezZ .framer-1ap751i, .framer-5GezZ .framer-23grct { width: 100%; } .framer-5GezZ .framer-1vb3lgd { order: 4; } .framer-5GezZ .framer-66o7dv, .framer-5GezZ .framer-1htca89, .framer-5GezZ .framer-5alec8, .framer-5GezZ .framer-1p64a3t, .framer-5GezZ .framer-uywpya, .framer-5GezZ .framer-p3771b { order: 0; } .framer-5GezZ .framer-1v3fjc7, .framer-5GezZ .framer-3ckj13, .framer-5GezZ .framer-1lt0voa, .framer-5GezZ .framer-1bsos01 { order: 1; } .framer-5GezZ .framer-193547b { order: 3; } .framer-5GezZ .framer-j8vtco { order: 11; } .framer-5GezZ .framer-1v1rvwn { height: min-content; padding: 50px 40px 50px 40px; } .framer-5GezZ .framer-15jv6hq, .framer-5GezZ .framer-1tlljvt { width: min-content; } .framer-5GezZ .framer-7ooyzx { height: 24px; white-space: pre; width: auto; } .framer-5GezZ .framer-1yfbyf7 { height: auto; width: 649px; } .framer-5GezZ .framer-1j4vi1n, .framer-5GezZ .framer-gzz9x2, .framer-5GezZ .framer-kfi3mf { height: var(--framer-aspect-ratio-supported, 125px); } .framer-5GezZ .framer-1in08vg { order: 12; } .framer-5GezZ .framer-1qxa3ev { height: min-content; padding: 0px 40px 50px 40px; width: 801px; } .framer-5GezZ .framer-160bskl { width: 707px; } .framer-5GezZ .framer-l2by32-container { order: 13; } .framer-5GezZ .framer-17j4oip { height: min-content; order: 14; } .framer-5GezZ .framer-e6pfl0 { gap: 50px; } .framer-5GezZ .framer-lc89nd { gap: 0px; } .framer-5GezZ .framer-hi55dc { height: min-content; padding: 0px; width: min-content; } .framer-5GezZ .framer-1wlpo5u, .framer-5GezZ .framer-1eg78cs { white-space: pre; width: auto; } .framer-5GezZ .framer-h6nfwf { width: 483px; } .framer-5GezZ .framer-122avxa { width: 488px; } .framer-5GezZ .framer-1xpqcjj { order: 15; } .framer-5GezZ .framer-1v7io7b { align-content: center; align-items: center; flex-direction: column; order: 16; } .framer-5GezZ .framer-1nqgntv { align-content: center; align-items: center; flex-direction: column; order: 0; width: 721px; } .framer-5GezZ .framer-y4r3r6-container { bottom: unset; height: 511px; left: unset; position: relative; top: unset; width: 100%; } .framer-5GezZ .framer-fmojlj { flex: none; gap: 100px; padding: 40px 0px 0px 0px; width: 100%; } .framer-5GezZ .framer-1h7gkwc { align-content: center; align-items: center; gap: 30px; width: min-content; } .framer-5GezZ .framer-5f4yfj { width: 591px; } .framer-5GezZ .framer-1k8kq2u { width: 440px; } .framer-5GezZ .framer-17ldqr6 { align-content: center; align-items: center; width: 450px; } .framer-5GezZ .framer-rscey8, .framer-5GezZ .framer-65s99k, .framer-5GezZ .framer-16dek62, .framer-5GezZ .framer-1vkzspe { align-content: center; align-items: center; } .framer-5GezZ .framer-1fwmwe5, .framer-5GezZ .framer-7wmxcx, .framer-5GezZ .framer-1msw3db { width: 450px; } .framer-5GezZ .framer-mbpzm7 { order: 17; padding: 0px; } .framer-5GezZ .framer-p5adsz { gap: 60px; order: 18; padding: 100px; } .framer-5GezZ .framer-1gr9pv6 { height: 231px; width: 100%; } .framer-5GezZ .framer-2bra97 { height: auto; width: 662px; } .framer-5GezZ .framer-1sts0g5 { order: 20; } .framer-5GezZ .framer-1yu29uf { order: 21; } .framer-5GezZ .framer-svvj4v { order: 23; } .framer-5GezZ .framer-12or1ym { height: min-content; padding: 0px; width: 810px; z-index: 1; } .framer-5GezZ .framer-pxdupe { align-content: center; align-items: center; flex-direction: column; gap: 0px; order: 0; } .framer-5GezZ .framer-1b7an4l { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-5GezZ .framer-axaq3e { height: auto; width: 100%; } .framer-5GezZ .framer-1v9npg5-container { height: 562px; width: 100%; } .framer-5GezZ .framer-uaevh8-container { order: 24; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-5GezZ .framer-wiuvux, .framer-5GezZ .framer-e6pfl0, .framer-5GezZ .framer-lc89nd, .framer-5GezZ .framer-1v7io7b, .framer-5GezZ .framer-1nqgntv, .framer-5GezZ .framer-fmojlj, .framer-5GezZ .framer-1h7gkwc, .framer-5GezZ .framer-p5adsz, .framer-5GezZ .framer-pxdupe { gap: 0px; } .framer-5GezZ .framer-wiuvux > *, .framer-5GezZ .framer-lc89nd > *, .framer-5GezZ .framer-pxdupe > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-5GezZ .framer-wiuvux > :first-child, .framer-5GezZ .framer-e6pfl0 > :first-child, .framer-5GezZ .framer-lc89nd > :first-child, .framer-5GezZ .framer-1v7io7b > :first-child, .framer-5GezZ .framer-1nqgntv > :first-child, .framer-5GezZ .framer-fmojlj > :first-child, .framer-5GezZ .framer-1h7gkwc > :first-child, .framer-5GezZ .framer-p5adsz > :first-child, .framer-5GezZ .framer-pxdupe > :first-child { margin-top: 0px; } .framer-5GezZ .framer-wiuvux > :last-child, .framer-5GezZ .framer-e6pfl0 > :last-child, .framer-5GezZ .framer-lc89nd > :last-child, .framer-5GezZ .framer-1v7io7b > :last-child, .framer-5GezZ .framer-1nqgntv > :last-child, .framer-5GezZ .framer-fmojlj > :last-child, .framer-5GezZ .framer-1h7gkwc > :last-child, .framer-5GezZ .framer-p5adsz > :last-child, .framer-5GezZ .framer-pxdupe > :last-child { margin-bottom: 0px; } .framer-5GezZ .framer-e6pfl0 > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-5GezZ .framer-1v7io7b > *, .framer-5GezZ .framer-fmojlj > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-5GezZ .framer-1nqgntv > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-5GezZ .framer-1h7gkwc > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-5GezZ .framer-p5adsz > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } }}\",\"@media (max-width: 809px) { .framer-5GezZ.framer-149fdtj { justify-content: center; overflow: hidden; width: 390px; } .framer-5GezZ .framer-gpcw1r-container, .framer-5GezZ .framer-kma8z2, .framer-5GezZ .framer-8ztcbi, .framer-5GezZ .framer-1budd4x, .framer-5GezZ .framer-1uzprne { order: 0; } .framer-5GezZ .framer-2jb4q8-container, .framer-5GezZ .framer-xdcqc1, .framer-5GezZ .framer-l2tvuu, .framer-5GezZ .framer-wbcrq9-container { order: 1; } .framer-5GezZ .framer-1kilf61, .framer-5GezZ .framer-5g1aac, .framer-5GezZ .framer-nr48tl { order: 3; } .framer-5GezZ .framer-hjufsv { flex: none; width: 390px; } .framer-5GezZ .framer-95chfx, .framer-5GezZ .framer-ub5emm { order: 4; } .framer-5GezZ .framer-wh0oei, .framer-5GezZ .framer-1gehu91, .framer-5GezZ .framer-e3vg2l { order: 5; } .framer-5GezZ .framer-f4vw2x { order: 2; } .framer-5GezZ .framer-1x0vsoo, .framer-5GezZ .framer-12hh74, .framer-5GezZ .framer-q5h13d { height: var(--framer-aspect-ratio-supported, 215px); } .framer-5GezZ .framer-fduzb4, .framer-5GezZ .framer-19d7k10 { order: 6; } .framer-5GezZ .framer-10l2q5z, .framer-5GezZ .framer-ohbcnm-container { order: 7; } .framer-5GezZ .framer-lrqtgb { order: 8; } .framer-5GezZ .framer-i7bde4 { order: 9; } .framer-5GezZ .framer-svvj4v { order: 21; padding: 0px; } .framer-5GezZ .framer-12or1ym { height: min-content; } .framer-5GezZ .framer-pxdupe { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 10px; } .framer-5GezZ .framer-23grct { width: 100%; } .framer-5GezZ .framer-1b7an4l { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-5GezZ .framer-axaq3e { height: auto; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-5GezZ .framer-pxdupe { gap: 0px; } .framer-5GezZ .framer-pxdupe > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-5GezZ .framer-pxdupe > :first-child { margin-top: 0px; } .framer-5GezZ .framer-pxdupe > :last-child { margin-bottom: 0px; } }}\",\"@media (min-width: 1400px) and (max-width: 1485px) { .framer-5GezZ.framer-149fdtj { width: 1400px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 17541\n * @framerIntrinsicWidth 1486\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"NUYgUWtOw\":{\"layout\":[\"fixed\",\"auto\"]},\"gKcyARiAQ\":{\"layout\":[\"fixed\",\"auto\"]},\"ApRcdMQAL\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"aGQ9foIP9\":{\"pattern\":\":aGQ9foIP9\",\"name\":\"rail\"},\"Js0pf9qPQ\":{\"pattern\":\":Js0pf9qPQ\",\"name\":\"digitaltwin\"},\"nA_WfiSSO\":{\"pattern\":\":nA_WfiSSO\",\"name\":\"mms\"},\"BoMAco5qM\":{\"pattern\":\":BoMAco5qM\",\"name\":\"rail\"},\"RVqXhMWb6\":{\"pattern\":\":RVqXhMWb6\",\"name\":\"mms\"},\"xuLjFSHU4\":{\"pattern\":\":xuLjFSHU4\",\"name\":\"digitaltwin\"},\"vapt5gtEi\":{\"pattern\":\":vapt5gtEi\",\"name\":\"section-1\"},\"q7a_pNdqW\":{\"pattern\":\":q7a_pNdqW\",\"name\":\"section-2\"},\"N8rP3pONW\":{\"pattern\":\":N8rP3pONW\",\"name\":\"section-3\"},\"NRA1qzjQF\":{\"pattern\":\":NRA1qzjQF\",\"name\":\"section-4\"},\"ozE57QTx9\":{\"pattern\":\":ozE57QTx9\",\"name\":\"section-5\"},\"FXmWGZZXu\":{\"pattern\":\":FXmWGZZXu\",\"name\":\"rail\"},\"mY2_EuljM\":{\"pattern\":\":mY2_EuljM\",\"name\":\"mms\"},\"HtKXj3LBm\":{\"pattern\":\":HtKXj3LBm\",\"name\":\"digitaltwin\"},\"H8bX8ZQ6Q\":{\"pattern\":\":H8bX8ZQ6Q\",\"name\":\"digital-twin\"},\"GerHh3BzX\":{\"pattern\":\":GerHh3BzX\",\"name\":\"ai-powered-insight\"},\"EdYxyYTmP\":{\"pattern\":\":EdYxyYTmP\",\"name\":\"asset-management\"},\"ejzKpT13F\":{\"pattern\":\":ejzKpT13F\",\"name\":\"predictive-\"},\"Zk64iF3Qz\":{\"pattern\":\":Zk64iF3Qz\",\"name\":\"section-1\"},\"nlqJLJdgO\":{\"pattern\":\":nlqJLJdgO\",\"name\":\"section-2\"},\"HPYkotNg2\":{\"pattern\":\":HPYkotNg2\",\"name\":\"section-3\"},\"NnCSIsvBv\":{\"pattern\":\":NnCSIsvBv\",\"name\":\"section-4\"},\"ikLZoi8nx\":{\"pattern\":\":ikLZoi8nx\",\"name\":\"section-5\"}}\n * @framerResponsiveScreen\n */const Framervvg1RvENu=withCSS(Component,css,\"framer-5GezZ\");export default Framervvg1RvENu;Framervvg1RvENu.displayName=\"Generated Component\";Framervvg1RvENu.defaultProps={height:17541,width:1486};addFonts(Framervvg1RvENu,[{explicitInter:true,fonts:[{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwARZthS2f3ZGMZpg.woff2\",weight:\"700\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAkJxhS2f3ZGMZpg.woff2\",weight:\"500\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAfJthS2f3ZGMZpg.woff2\",weight:\"600\"},{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:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"},{family:\"Switzer\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/5SZVFDB7V52TI6ULVC6J3WQZQCIZVDV5/ODYPSTCUDMKSTYIPTV4CLQ7URIK7XYBJ/YS3VPNVO4B3TOJMEXDGFZQ4TLZGGSRZC.woff2\",weight:\"600\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TTX2Z3BF3P6Y5BQT3IV2VNOK6FL22KUT/7QYRJOI3JIMYHGY6CH7SOIFRQLZOLNJ6/KFIAZD4RUMEZIYV6FQ3T3GP5PDBDB6JY.woff2\",weight:\"400\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAopxhS2f3ZGMZpg.woff2\",weight:\"400\"}]},...NavigationFonts,...HeroSectionFonts,...TickerFonts,...ButtonFonts,...EmbedFonts,...SlideshowFonts,...DashboardFonts,...HeroFonts,...FeatureCard2Fonts,...ButtonCopyFonts,...CarouselFonts,...HighlightNumFonts,...UseCaseSliderFonts,...Slideshow1Fonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framervvg1RvENu\",\"slots\":[],\"annotations\":{\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicHeight\":\"17541\",\"framerComponentViewportWidth\":\"true\",\"framerScrollSections\":\"{\\\"aGQ9foIP9\\\":{\\\"pattern\\\":\\\":aGQ9foIP9\\\",\\\"name\\\":\\\"rail\\\"},\\\"Js0pf9qPQ\\\":{\\\"pattern\\\":\\\":Js0pf9qPQ\\\",\\\"name\\\":\\\"digitaltwin\\\"},\\\"nA_WfiSSO\\\":{\\\"pattern\\\":\\\":nA_WfiSSO\\\",\\\"name\\\":\\\"mms\\\"},\\\"BoMAco5qM\\\":{\\\"pattern\\\":\\\":BoMAco5qM\\\",\\\"name\\\":\\\"rail\\\"},\\\"RVqXhMWb6\\\":{\\\"pattern\\\":\\\":RVqXhMWb6\\\",\\\"name\\\":\\\"mms\\\"},\\\"xuLjFSHU4\\\":{\\\"pattern\\\":\\\":xuLjFSHU4\\\",\\\"name\\\":\\\"digitaltwin\\\"},\\\"vapt5gtEi\\\":{\\\"pattern\\\":\\\":vapt5gtEi\\\",\\\"name\\\":\\\"section-1\\\"},\\\"q7a_pNdqW\\\":{\\\"pattern\\\":\\\":q7a_pNdqW\\\",\\\"name\\\":\\\"section-2\\\"},\\\"N8rP3pONW\\\":{\\\"pattern\\\":\\\":N8rP3pONW\\\",\\\"name\\\":\\\"section-3\\\"},\\\"NRA1qzjQF\\\":{\\\"pattern\\\":\\\":NRA1qzjQF\\\",\\\"name\\\":\\\"section-4\\\"},\\\"ozE57QTx9\\\":{\\\"pattern\\\":\\\":ozE57QTx9\\\",\\\"name\\\":\\\"section-5\\\"},\\\"FXmWGZZXu\\\":{\\\"pattern\\\":\\\":FXmWGZZXu\\\",\\\"name\\\":\\\"rail\\\"},\\\"mY2_EuljM\\\":{\\\"pattern\\\":\\\":mY2_EuljM\\\",\\\"name\\\":\\\"mms\\\"},\\\"HtKXj3LBm\\\":{\\\"pattern\\\":\\\":HtKXj3LBm\\\",\\\"name\\\":\\\"digitaltwin\\\"},\\\"H8bX8ZQ6Q\\\":{\\\"pattern\\\":\\\":H8bX8ZQ6Q\\\",\\\"name\\\":\\\"digital-twin\\\"},\\\"GerHh3BzX\\\":{\\\"pattern\\\":\\\":GerHh3BzX\\\",\\\"name\\\":\\\"ai-powered-insight\\\"},\\\"EdYxyYTmP\\\":{\\\"pattern\\\":\\\":EdYxyYTmP\\\",\\\"name\\\":\\\"asset-management\\\"},\\\"ejzKpT13F\\\":{\\\"pattern\\\":\\\":ejzKpT13F\\\",\\\"name\\\":\\\"predictive-\\\"},\\\"Zk64iF3Qz\\\":{\\\"pattern\\\":\\\":Zk64iF3Qz\\\",\\\"name\\\":\\\"section-1\\\"},\\\"nlqJLJdgO\\\":{\\\"pattern\\\":\\\":nlqJLJdgO\\\",\\\"name\\\":\\\"section-2\\\"},\\\"HPYkotNg2\\\":{\\\"pattern\\\":\\\":HPYkotNg2\\\",\\\"name\\\":\\\"section-3\\\"},\\\"NnCSIsvBv\\\":{\\\"pattern\\\":\\\":NnCSIsvBv\\\",\\\"name\\\":\\\"section-4\\\"},\\\"ikLZoi8nx\\\":{\\\"pattern\\\":\\\":ikLZoi8nx\\\",\\\"name\\\":\\\"section-5\\\"}}\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NUYgUWtOw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gKcyARiAQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ApRcdMQAL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicWidth\":\"1486\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["clamp", "t", "e", "n", "progress", "t", "e", "n", "calcMaskWidth", "inset", "width", "useIsMouse", "isMouseDevice", "setIsMouseDevice", "ye", "fe", "window", "checkLimit", "progress", "target", "edgeOpacity", "moreItems", "buttonRef", "transition", "animate", "useGUI", "initialMoreItems", "initialAlpha", "pe", "useMotionValue", "fadeOpacity", "useTransform", "buttonOpacity", "v", "pointerEvents", "cursor", "buttonStyle", "baseButtonStyles", "setAriaVisible", "element", "useScrollLimits", "container", "axis", "scrollInfo", "updateCurrentScroll", "targetScroll", "checkLimits", "measureItems", "ue", "stopScroll", "scroll", "info", "stopResize", "resize", "Carousel", "slots", "gap", "align", "sizingObject", "fadeObject", "arrowObject", "snapObject", "progressObject", "ariaLabel", "borderRadius", "effectsObject", "props", "numItems", "j", "isCanvas", "RenderTarget", "padding", "usePadding", "axisLabel", "fadeContent", "fadeWidth", "fadeInset", "fadeTransition", "fadeAlpha", "snap", "snapEdge", "fluid", "widthType", "widthInset", "widthColumns", "heightType", "heightInset", "heightRows", "showScrollbar", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowPadding", "currentScroll", "newScroll", "start", "end", "startMaskInset", "endMaskInset", "baseWidth", "startMaskWidth", "endMaskWidth", "direction", "mask", "latest", "carouselRef", "numPages", "setNumPages", "itemStyle", "childStyle", "scrollOverflow", "containerStyle", "baseContainerStyle", "carouselStyle", "baseCarouselStyle", "carouselA11y", "itemA11y", "itemSizes", "te", "targetLength", "containerLength", "scrollLength", "current", "i", "start1", "end1", "newNumPages", "findNextItem", "delta", "children", "scrollTarget", "item", "length", "threshold", "isReducedMotion", "useReducedMotion", "goto", "scrollTo", "options", "gotoPage", "page", "gotoDelta", "pageLength", "currentPage", "clamp", "p", "Placeholder", "dots", "dotsBlurStyle", "isSelected", "Dot", "dotStyle", "u", "motion", "child", "index", "ref", "q", "controlsStyles", "dotsContainerStyle", "MouseStyles", "addPropertyControls", "ControlType", "paddingControl", "selectedOpacity", "unselectedOpacity", "total", "opacity", "ref1", "minScroll", "maxScroll", "inlinePadding", "top", "bottom", "right", "left", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "baseContainerStyle", "baseCarouselStyle", "baseButtonStyles", "controlsStyles", "dotsContainerStyle", "dotStyle", "OPACITY_0", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "W", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "sync", "total", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "fe", "initialResize", "ue", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "setDelta", "delta", "setPage", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "Y", "_child_props", "_child_props1", "slideKey", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "_ref_current", "LayoutGroup", "q", "selectedOpacity", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "VideoFonts", "getFonts", "Video", "RichTextWithFX", "withFX", "RichText2", "ButtonFonts", "OneP4W_UD_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "animation1", "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", "isDisplayed", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "css", "FramerAxrkXjwTm", "withCSS", "AxrkXjwTm_default", "addPropertyControls", "ControlType", "addFonts", "PhosphorFonts", "getFonts", "Icon", "CTAFonts", "FLXzApIyg_default", "Phosphor1Controls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "cTA", "cTA1", "height", "icon", "icon1", "icon2", "iconBackground", "id", "image", "image1", "link", "text", "title", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_ref5", "_ref6", "_humanReadableVariantMap_props_variant", "_ref7", "_ref8", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "OLqpcuIeL", "PFec_i8Ff", "Y3X4CKI40", "aa5hKvvkV", "UaS05r1yh", "jFgwazo_q", "oc_8kOa9a", "BFuTBK47u", "ZA2T3dGW4", "qkbS0bCx8", "cX1P9xQse", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "RichText2", "css", "FramereJ6DEifPE", "withCSS", "eJ6DEifPE_default", "addPropertyControls", "ControlType", "addFonts", "TextWithFX", "withFX", "Text2", "SVGWithFX", "SVG", "MotionDivWithFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "animation1", "animation2", "transition3", "animation3", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "title2", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "le4lkysI8", "c63DZzKb0ZtgRo_nyE", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "isDisplayed8", "isDisplayed9", "isDisplayed10", "isDisplayed11", "isDisplayed12", "isDisplayed13", "isDisplayed14", "isDisplayed15", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "RichText2", "Image2", "getLoadingLazyAtYPosition", "css", "FramerF8EBOp716", "withCSS", "F8EBOp716_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "transformTemplate2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap19y62or", "args", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "SVG", "Image2", "getLoadingLazyAtYPosition", "css", "FramerLidHoxabG", "withCSS", "LidHoxabG_default", "addPropertyControls", "ControlType", "addFonts", "serializationHash", "variantClassNames", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "amount", "height", "id", "subTitle", "title", "width", "props", "_ref", "_ref1", "_ref2", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "bZeTXSy0H", "Wa7zETWVc", "NIcpYpbeI", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "RichText2", "css", "FramerwWjouqtUO", "withCSS", "wWjouqtUO_default", "addPropertyControls", "ControlType", "addFonts", "NavigationFonts", "getFonts", "YPNKDK9RD_default", "HeroSectionFonts", "AxrkXjwTm_default", "TickerFonts", "Ticker", "RichTextWithOptimizedAppearEffect", "withOptimizedAppearEffect", "RichText2", "MotionDivWithOptimizedAppearEffect", "motion", "ImageWithFX", "withFX", "Image2", "RichTextWithFX", "ButtonFonts", "OneP4W_UD_default", "ContainerWithFX", "Container", "MotionDivWithFX", "ImageWithOptimizedAppearEffect", "EmbedFonts", "Embed", "SlideshowFonts", "Slideshow", "DashboardFonts", "LidHoxabG_default", "HeroFonts", "Icon", "FeatureCard2Fonts", "eJ6DEifPE_default", "ButtonCopyFonts", "hwG80mlVt_default", "CarouselFonts", "Carousel", "HighlightNumFonts", "wWjouqtUO_default", "DashboardWithVariantAppearEffect", "withVariantAppearEffect", "UseCaseSliderFonts", "F8EBOp716_default", "Slideshow1Fonts", "FooterFonts", "OHpFUHCr_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "animation4", "transition3", "animation5", "animation6", "animation7", "animation8", "animation9", "animation10", "animation11", "transition4", "animation12", "transition5", "animation13", "animation14", "animation15", "animation16", "transition6", "animation17", "animation18", "transition7", "animation19", "animation20", "animation21", "toResponsiveImage", "value", "toDateString", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "locale", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "fNt9LLzVfCO8TqlQIZ", "fogtkHRU2CO8TqlQIZ", "FnWRDuqlKCO8TqlQIZ", "F18QtAGrcCO8TqlQIZ", "idCO8TqlQIZ", "fNt9LLzVfSZHEBNMSQ", "fogtkHRU2SZHEBNMSQ", "FnWRDuqlKSZHEBNMSQ", "F18QtAGrcSZHEBNMSQ", "idSZHEBNMSQ", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "router", "useRouter", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "elementId2", "ref3", "isDisplayed2", "elementId3", "ref4", "elementId4", "ref5", "elementId5", "ref6", "elementId6", "ref7", "elementId7", "ref8", "elementId8", "ref9", "elementId9", "ref10", "elementId10", "ref11", "isDisplayed3", "elementId11", "ref12", "elementId12", "ref13", "elementId13", "ref14", "isDisplayed4", "elementId14", "ref15", "elementId15", "ref16", "elementId16", "ref17", "elementId17", "ref18", "ref19", "ref20", "ref21", "ref22", "ref23", "elementId18", "elementId19", "elementId20", "elementId21", "elementId22", "activeLocaleCode", "useLocaleCode", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "x", "getLoadingLazyAtYPosition", "ResolveLinks", "resolvedLinks", "Link", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "resolvedLinks7", "resolvedLinks8", "resolvedLinks9", "resolvedLinks10", "resolvedLinks11", "resolvedLinks12", "resolvedLinks13", "resolvedLinks14", "resolvedLinks15", "ChildrenCanSuspend", "KyQCx8VLf_default", "collection", "paginationInfo", "loadMore", "l", "index", "textContent", "PathVariablesContext", "collection1", "paginationInfo1", "loadMore1", "index1", "textContent1", "resolvedLinks16", "resolvedLinks17", "css", "Framervvg1RvENu", "withCSS", "vvg1RvENu_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
