{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/gveXKR6bwXNSCLv12kr3/SlideShow.js", "ssg:https://framerusercontent.com/modules/dl54CBQQVTh1NSCHF9Wn/HEqqpRLWKYeONepcGSKu/QpaBBUtli.js", "ssg:https://framerusercontent.com/modules/3awts7PtnlGyGiazzD7P/m2pVPC0U8MsDCZoYdrjF/jiReBlm1J.js", "ssg:https://framerusercontent.com/modules/FtKdDkfcBMDkYtUDCpGi/K7fp6KPiJf6wmdQFRRPM/Zv64KJFib.js", "ssg:https://framerusercontent.com/modules/orgNXAzLMgri13joB0qN/IueheINDbkWMcOX6PauV/eB84KWUf8.js", "ssg:https://framerusercontent.com/modules/kCmIXLZs3c0J809GpyXb/5GNqZ42aXDYUoCb1uoej/DeB1G79Gi.js", "ssg:https://framerusercontent.com/modules/qkjqICsBh1I5kLAWAHnl/8zVzxyiXuKTKwXFtpXfw/l1KEtCO7J.js", "ssg:https://framerusercontent.com/modules/CROh6lzU9NF1VGip08c9/EvwlUmypeM5MUTwdDh4d/MC2iiD4Yn.js", "ssg:https://framerusercontent.com/modules/vOqbkrS0Yq39HtPv4vjT/uPF9ZdcbLLvrYQzQdB8b/aMhIXt0uW.js", "ssg:https://framerusercontent.com/modules/gku3kXPXNigmsuqLq8Ai/ntWcYsVc5beHEgkGjXex/GU31Vqo7C.js", "ssg:https://framerusercontent.com/modules/68XU6DDtiHsBWFq8ONKt/68SVgydk4YnAUycP2DTk/pag7V5EkB.js", "ssg:https://framerusercontent.com/modules/2lxiSj4pRRhwAOgALZNQ/tDNvVvpV3QUmqKPszDtT/W5JNhDchF.js", "ssg:https://framerusercontent.com/modules/zBKp8yAcQHVeV8EGQi2w/8UB7gIWRa1yUTU19NYUQ/augiA20Il.js"],
  "sourcesContent": ["import{useState,useEffect}from\"react\";export const isBrowser=()=>typeof document===\"object\";export function usePageVisibility(){if(!isBrowser())return;const[isVisible,setIsVisible]=useState(!document.hidden);useEffect(()=>{const onVisibilityChange=()=>setIsVisible(!document.hidden);document.addEventListener(\"visibilitychange\",onVisibilityChange,false);return()=>{document.removeEventListener(\"visibilitychange\",onVisibilityChange);};},[]);return isVisible;}\nexport const __FramerMetadata__ = {\"exports\":{\"isBrowser\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePageVisibility\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UsePageVisibility.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{resize}from\"@motionone/dom\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{animate,LayoutGroup,mix,motion,frame,useInView,useMotionValue,useTransform,wrap}from\"framer-motion\";import{Children,cloneElement,forwardRef,startTransition,useCallback,useEffect,useLayoutEffect,useMemo,useRef,useState}from\"react\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js\";function awaitRefCallback(element,controller){let refCallbackResolve;const refCallbackPromise=new Promise((resolve,reject)=>{refCallbackResolve=resolve;controller.signal.addEventListener(\"abort\",()=>reject);// resolve immediately if it exists\nconst current=element.current;if(current)resolve(current);}).catch(()=>{});// we need to listen to the ref setter, so let's override `current` - we can do that, because we don't use React's `useRef` hook for those refs.\nlet current=element.current;Object.defineProperty(element,\"current\",{get(){return current;},set(node){current=node;if(node===null){// React calls with null when the element is unmounted\ncontroller.abort();return;}refCallbackResolve(node);},configurable:true});return refCallbackPromise;}// 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,playOffscreen}=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;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const hasChildren=Children.count(filteredSlots)>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 filteredSlots.map(index=>({current:null}));},[filteredSlots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null,viewportLength: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     */let dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{const firstChild=childrenRef[0].current;const lastChild=childrenRef[filteredSlots.length-1].current;if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=firstChild?isHorizontal?firstChild.offsetLeft:firstChild.offsetTop:0;const end=lastChild?isHorizontal?lastChild.offsetLeft+lastChild.offsetWidth:lastChild.offsetTop+lastChild.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=firstChild?isHorizontal?firstChild.offsetWidth:firstChild.offsetHeight:0;const itemWidth=firstChild?firstChild.offsetWidth:0;const itemHeight=firstChild?firstChild.offsetHeight:0;const viewportLength=isHorizontal?Math.max(document.documentElement.clientWidth||0,window.innerWidth||0,parentRef.current.offsetWidth):Math.max(document.documentElement.clientHeight||0,window.innerHeight||0,parentRef.current.offsetHeight);startTransition(()=>setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight,viewportLength}));}},[hasChildren]);const scheduleMeasure=useCallback(async()=>{const controller=new AbortController;/**\n         * The elements in the set are refs of children. If they're wrapped in Suspense, they could mount later than the parent.\n         * Thus, we wait for each ref to be set step by step if required.\n         */const firstChild=childrenRef[0];const lastChild=childrenRef[filteredSlots.length-1];if(!isCanvas&&(!firstChild.current||!lastChild.current))try{await Promise.all([awaitRefCallback(firstChild,controller),awaitRefCallback(lastChild,controller)]);}catch{controller.abort();}frame.read(measure);},[measure]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{if(hasChildren)scheduleMeasure();},[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     */const initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){scheduleMeasure();startTransition(()=>setIsResizing(true));}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>startTransition(()=>setIsResizing(false)),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=filteredSlots?.length;const childrenSize=isCanvas?0:size?.children;const itemWithGap=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 visibilityRef=useRef(null);const isInView=useInView(visibilityRef);const isVisible=usePageVisibility()&&isInView;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?.itemWidth+gap):-startFrom*(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?.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&&(playOffscreen||isVisible)){timeoutRef.current=setTimeout(()=>{startTransition(()=>setCurrentItem(item=>item+1));switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=(delta,transition=false)=>{if(!isInverted){if(transition)startTransition(()=>setCurrentItem(item=>item+delta));else setCurrentItem(item=>item+delta);}else{if(transition)startTransition(()=>setCurrentItem(item=>item-delta));else setCurrentItem(item=>item-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){startTransition(()=>setCurrentItem(item=>item+goto));}else{startTransition(()=>setCurrentItem(item=>item-gotoInverted));}};/**\n     * Drag\n     */const handleDragStart=()=>{startTransition(()=>setIsDragging(true));};const handleDragEnd=(event,{offset,velocity})=>{startTransition(()=>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,true);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne,true);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta,true);}if(isHalfOfPrev){setDelta(-itemDelta,true);}}};/* 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     * */const 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=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===filteredSlots.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:filteredSlots?.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<filteredSlots?.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=`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,maskImage:fadeContent?fadeMask:undefined,opacity: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();startTransition(()=>setIsMouseDown(true));},onMouseUp:()=>startTransition(()=>setIsMouseDown(false)),ref:visibilityRef,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,true),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",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,true),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",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,playOffscreen:false},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},playOffscreen:{type:ControlType.Boolean,title:\"Offscreen\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.playOffscreen}}},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){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?.item+gap)*childCounter;const scrollRange=[-size?.item,0,size?.parent-size?.item+gap,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.on(\"change\",newValue=>{ref.current?.setAttribute(\"aria-hidden\",!newValue);});},[]);const visibility=isCanvas?\"visible\":useTransform(wrappedValue,[scrollRange[0]-size.viewportLength,mix(scrollRange[1],scrollRange[2],.5),scrollRange[3]+size.viewportLength],[\"hidden\",\"visible\",\"hidden\"]);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?.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,visibility},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},child.props?.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;const top=!isHorizontal&&index>0?inlinePadding:padding;const bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;const right=isHorizontal&&index!==total-1?inlinePadding:padding;const 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\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (f030ee3)\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\";import{useRef}from\"react\";const cycleOrder=[\"JzFmkr5JN\",\"LoSiSeVXH\",\"LdtYekw8U\",\"IiUTkB0r7\"];const serializationHash=\"framer-6iOWK\";const variantClassNames={IiUTkB0r7:\"framer-v-1dc01ec\",JzFmkr5JN:\"framer-v-1cq5ate\",LdtYekw8U:\"framer-v-jljodf\",LoSiSeVXH:\"framer-v-1alq01t\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 2\":\"LoSiSeVXH\",\"Variant 3\":\"LdtYekw8U\",\"Variant 4\":\"IiUTkB0r7\",Default:\"JzFmkr5JN\"};const getProps=({height,id,text,text2,value,width,...props})=>{return{...props,DoQ90NtLv:text??props.DoQ90NtLv??\"Revolve boosts supply chain efficiency by up to 85%, streamlining operations with precision.\",sF1GbxxZW:text2??props.sF1GbxxZW??\"Revolve boosts supply chain efficiency by up to 85%, streamlining operations with precision.\",variant:humanReadableVariantMap[props.variant]??props.variant??\"JzFmkr5JN\",vw6krL0ow:value??props.vw6krL0ow??\"85%\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,vw6krL0ow,DoQ90NtLv,sF1GbxxZW,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"JzFmkr5JN\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1cq5ate\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"JzFmkr5JN\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"dashed\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:1200,borderBottomRightRadius:1200,borderTopLeftRadius:1200,borderTopRightRadius:1200,...style},variants:{IiUTkB0r7:{\"--border-color\":\"rgb(31, 67, 89)\",background:\"linear-gradient(134deg, rgb(48, 100, 112) 0%, rgb(48, 84, 112) 100%)\",borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},LdtYekw8U:{\"--border-color\":\"rgb(31, 67, 89)\",borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},LoSiSeVXH:{\"--border-color\":\"rgb(31, 67, 89)\",borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5}},...addPropertyOverrides({IiUTkB0r7:{\"data-framer-name\":\"Variant 4\"},LdtYekw8U:{\"data-framer-name\":\"Variant 3\"},LoSiSeVXH:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-je870b\",layoutDependency:layoutDependency,layoutId:\"aoJDYJI81\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0JETyBHcm90ZXNrIFJlZ3VsYXI=\",\"--framer-font-family\":'\"BDO Grotesk Regular\", \"BDO Grotesk Regular Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Revolve boosts supply chain efficiency by up to 85%, streamlining operations with precision.\"})}),className:\"framer-1ihlgjj\",\"data-framer-name\":\"Text\",fonts:[\"CUSTOM;BDO Grotesk Regular\"],layoutDependency:layoutDependency,layoutId:\"yhtWrHbor\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},text:sF1GbxxZW,variants:{IiUTkB0r7:{\"--extracted-2gg91v\":'\"wght\" 400'},LdtYekw8U:{\"--extracted-2gg91v\":'\"wght\" 400',\"--extracted-r6o4lv\":\"rgb(48, 84, 112)\"},LoSiSeVXH:{\"--extracted-2gg91v\":'\"wght\" 400',\"--extracted-r6o4lv\":\"rgb(48, 84, 112)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({IiUTkB0r7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0JETyBHcm90ZXNrIFZhcmlhYmxlVkY9SW5kbmFIUWlJRFF3TUE9PQ==\",\"--framer-font-family\":'\"BDO Grotesk Variable\", \"BDO Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-variation-axes\":'var(--extracted-2gg91v, \"wght\" 400)',\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Revolve boosts supply chain efficiency by up to 85%, streamlining operations with precision.\"})}),fonts:[\"CUSTOM;BDO Grotesk Variable\"]},LdtYekw8U:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0JETyBHcm90ZXNrIFZhcmlhYmxlVkY9SW5kbmFIUWlJRFF3TUE9PQ==\",\"--framer-font-family\":'\"BDO Grotesk Variable\", \"BDO Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-variation-axes\":'var(--extracted-2gg91v, \"wght\" 400)',\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(48, 84, 112))\"},children:\"Revolve boosts supply chain efficiency by up to 85%, streamlining operations with precision.\"})}),fonts:[\"CUSTOM;BDO Grotesk Variable\"]},LoSiSeVXH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0JETyBHcm90ZXNrIFZhcmlhYmxlVkY9SW5kbmFIUWlJRFF3TUE9PQ==\",\"--framer-font-family\":'\"BDO Grotesk Variable\", \"BDO Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-variation-axes\":'var(--extracted-2gg91v, \"wght\" 400)',\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(48, 84, 112))\"},children:\"Revolve boosts supply chain efficiency by up to 85%, streamlining operations with precision.\"})}),fonts:[\"CUSTOM;BDO Grotesk Variable\"]}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-mym6v8\",layoutDependency:layoutDependency,layoutId:\"dd13OYTVj\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0JETyBHcm90ZXNrIFJlZ3VsYXI=\",\"--framer-font-family\":'\"BDO Grotesk Regular\", \"BDO Grotesk Regular Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"85%\"})}),className:\"framer-xmcr71\",\"data-framer-name\":\"Value\",fonts:[\"CUSTOM;BDO Grotesk Regular\"],layoutDependency:layoutDependency,layoutId:\"lLLSeyQaO\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},text:vw6krL0ow,variants:{IiUTkB0r7:{\"--extracted-2gg91v\":'\"wght\" 400'},LdtYekw8U:{\"--extracted-2gg91v\":'\"wght\" 400',\"--extracted-r6o4lv\":\"rgb(59, 89, 112)\"},LoSiSeVXH:{\"--extracted-2gg91v\":'\"wght\" 400',\"--extracted-r6o4lv\":\"rgb(59, 89, 112)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({IiUTkB0r7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0JETyBHcm90ZXNrIFZhcmlhYmxlVkY9SW5kbmFIUWlJRFF3TUE9PQ==\",\"--framer-font-family\":'\"BDO Grotesk Variable\", \"BDO Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-variation-axes\":'var(--extracted-2gg91v, \"wght\" 400)',\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"85%\"})}),fonts:[\"CUSTOM;BDO Grotesk Variable\"]},LdtYekw8U:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0JETyBHcm90ZXNrIFZhcmlhYmxlVkY9SW5kbmFIUWlJRFF3TUE9PQ==\",\"--framer-font-family\":'\"BDO Grotesk Variable\", \"BDO Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-variation-axes\":'var(--extracted-2gg91v, \"wght\" 400)',\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(59, 89, 112))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(300deg, rgb(74, 132, 176) 0%, rgb(59, 105, 140) 47.5683%, rgb(74, 132, 176) 100%)\"},children:\"85%\"})})}),fonts:[\"CUSTOM;BDO Grotesk Variable\"]},LoSiSeVXH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0JETyBHcm90ZXNrIFZhcmlhYmxlVkY9SW5kbmFIUWlJRFF3TUE9PQ==\",\"--framer-font-family\":'\"BDO Grotesk Variable\", \"BDO Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-variation-axes\":'var(--extracted-2gg91v, \"wght\" 400)',\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(59, 89, 112))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(300deg, rgb(74, 132, 176) 0%, rgb(59, 105, 140) 47.5683%, rgb(74, 132, 176) 100%)\"},children:\"85%\"})})}),fonts:[\"CUSTOM;BDO Grotesk Variable\"]}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gfzy5e\",layoutDependency:layoutDependency,layoutId:\"MdSiQPdIn\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0JETyBHcm90ZXNrIFJlZ3VsYXI=\",\"--framer-font-family\":'\"BDO Grotesk Regular\", \"BDO Grotesk Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Revolve boosts supply chain efficiency by up to 85%, streamlining operations with precision.\"})}),className:\"framer-hijrk1\",\"data-framer-name\":\"Text\",fonts:[\"CUSTOM;BDO Grotesk Regular\"],layoutDependency:layoutDependency,layoutId:\"wTQ3fYOdp\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},text:DoQ90NtLv,variants:{IiUTkB0r7:{\"--extracted-2gg91v\":'\"wght\" 400'},LdtYekw8U:{\"--extracted-2gg91v\":'\"wght\" 400',\"--extracted-r6o4lv\":\"rgb(48, 84, 112)\"},LoSiSeVXH:{\"--extracted-2gg91v\":'\"wght\" 400',\"--extracted-r6o4lv\":\"rgb(48, 84, 112)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({IiUTkB0r7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0JETyBHcm90ZXNrIFZhcmlhYmxlVkY9SW5kbmFIUWlJRFF3TUE9PQ==\",\"--framer-font-family\":'\"BDO Grotesk Variable\", \"BDO Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-variation-axes\":'var(--extracted-2gg91v, \"wght\" 400)',\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Revolve boosts supply chain efficiency by up to 85%, streamlining operations with precision.\"})}),fonts:[\"CUSTOM;BDO Grotesk Variable\"]},LdtYekw8U:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0JETyBHcm90ZXNrIFZhcmlhYmxlVkY9SW5kbmFIUWlJRFF3TUE9PQ==\",\"--framer-font-family\":'\"BDO Grotesk Variable\", \"BDO Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-variation-axes\":'var(--extracted-2gg91v, \"wght\" 400)',\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(48, 84, 112))\"},children:\"Revolve boosts supply chain efficiency by up to 85%, streamlining operations with precision.\"})}),fonts:[\"CUSTOM;BDO Grotesk Variable\"]},LoSiSeVXH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0JETyBHcm90ZXNrIFZhcmlhYmxlVkY9SW5kbmFIUWlJRFF3TUE9PQ==\",\"--framer-font-family\":'\"BDO Grotesk Variable\", \"BDO Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-variation-axes\":'var(--extracted-2gg91v, \"wght\" 400)',\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(48, 84, 112))\"},children:\"Revolve boosts supply chain efficiency by up to 85%, streamlining operations with precision.\"})}),fonts:[\"CUSTOM;BDO Grotesk Variable\"]}},baseVariant,gestureVariant)})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-6iOWK.framer-gmmag7, .framer-6iOWK .framer-gmmag7 { display: block; }\",\".framer-6iOWK.framer-1cq5ate { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: 377px; justify-content: center; overflow: visible; padding: 24px 60px 24px 60px; position: relative; width: 377px; }\",\".framer-6iOWK .framer-je870b, .framer-6iOWK .framer-mym6v8, .framer-6iOWK .framer-1gfzy5e { 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; position: relative; width: 100%; }\",\".framer-6iOWK .framer-1ihlgjj, .framer-6iOWK .framer-hijrk1 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-6iOWK .framer-xmcr71 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-6iOWK.framer-1cq5ate, .framer-6iOWK .framer-je870b, .framer-6iOWK .framer-mym6v8, .framer-6iOWK .framer-1gfzy5e { gap: 0px; } .framer-6iOWK.framer-1cq5ate > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-6iOWK.framer-1cq5ate > :first-child, .framer-6iOWK .framer-je870b > :first-child, .framer-6iOWK .framer-mym6v8 > :first-child, .framer-6iOWK .framer-1gfzy5e > :first-child { margin-top: 0px; } .framer-6iOWK.framer-1cq5ate > :last-child, .framer-6iOWK .framer-je870b > :last-child, .framer-6iOWK .framer-mym6v8 > :last-child, .framer-6iOWK .framer-1gfzy5e > :last-child { margin-bottom: 0px; } .framer-6iOWK .framer-je870b > *, .framer-6iOWK .framer-mym6v8 > *, .framer-6iOWK .framer-1gfzy5e > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-6iOWK.framer-v-1alq01t.framer-1cq5ate { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 377px); padding: 24px 40px 24px 40px; }\",\".framer-6iOWK.framer-v-1alq01t .framer-je870b, .framer-6iOWK.framer-v-1alq01t .framer-mym6v8, .framer-6iOWK.framer-v-1alq01t .framer-1gfzy5e, .framer-6iOWK.framer-v-jljodf .framer-je870b, .framer-6iOWK.framer-v-jljodf .framer-mym6v8, .framer-6iOWK.framer-v-jljodf .framer-1gfzy5e, .framer-6iOWK.framer-v-1dc01ec .framer-je870b, .framer-6iOWK.framer-v-1dc01ec .framer-mym6v8, .framer-6iOWK.framer-v-1dc01ec .framer-1gfzy5e { flex-direction: row; }\",\".framer-6iOWK.framer-v-1alq01t .framer-1ihlgjj, .framer-6iOWK.framer-v-1alq01t .framer-hijrk1 { flex: 1 0 0px; width: 1px; }\",\".framer-6iOWK.framer-v-1alq01t .framer-xmcr71, .framer-6iOWK.framer-v-jljodf .framer-xmcr71, .framer-6iOWK.framer-v-1dc01ec .framer-xmcr71 { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-6iOWK.framer-v-1alq01t .framer-je870b, .framer-6iOWK.framer-v-1alq01t .framer-mym6v8, .framer-6iOWK.framer-v-1alq01t .framer-1gfzy5e { gap: 0px; } .framer-6iOWK.framer-v-1alq01t .framer-je870b > *, .framer-6iOWK.framer-v-1alq01t .framer-mym6v8 > *, .framer-6iOWK.framer-v-1alq01t .framer-1gfzy5e > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-6iOWK.framer-v-1alq01t .framer-je870b > :first-child, .framer-6iOWK.framer-v-1alq01t .framer-mym6v8 > :first-child, .framer-6iOWK.framer-v-1alq01t .framer-1gfzy5e > :first-child { margin-left: 0px; } .framer-6iOWK.framer-v-1alq01t .framer-je870b > :last-child, .framer-6iOWK.framer-v-1alq01t .framer-mym6v8 > :last-child, .framer-6iOWK.framer-v-1alq01t .framer-1gfzy5e > :last-child { margin-right: 0px; } }\",\".framer-6iOWK.framer-v-jljodf.framer-1cq5ate, .framer-6iOWK.framer-v-1dc01ec.framer-1cq5ate { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 377px); padding: 24px 10px 24px 10px; }\",\".framer-6iOWK.framer-v-jljodf .framer-1ihlgjj, .framer-6iOWK.framer-v-jljodf .framer-hijrk1, .framer-6iOWK.framer-v-1dc01ec .framer-1ihlgjj, .framer-6iOWK.framer-v-1dc01ec .framer-hijrk1 { width: 70%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-6iOWK.framer-v-jljodf .framer-je870b, .framer-6iOWK.framer-v-jljodf .framer-mym6v8, .framer-6iOWK.framer-v-jljodf .framer-1gfzy5e { gap: 0px; } .framer-6iOWK.framer-v-jljodf .framer-je870b > *, .framer-6iOWK.framer-v-jljodf .framer-mym6v8 > *, .framer-6iOWK.framer-v-jljodf .framer-1gfzy5e > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-6iOWK.framer-v-jljodf .framer-je870b > :first-child, .framer-6iOWK.framer-v-jljodf .framer-mym6v8 > :first-child, .framer-6iOWK.framer-v-jljodf .framer-1gfzy5e > :first-child { margin-left: 0px; } .framer-6iOWK.framer-v-jljodf .framer-je870b > :last-child, .framer-6iOWK.framer-v-jljodf .framer-mym6v8 > :last-child, .framer-6iOWK.framer-v-jljodf .framer-1gfzy5e > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-6iOWK.framer-v-1dc01ec .framer-je870b, .framer-6iOWK.framer-v-1dc01ec .framer-mym6v8, .framer-6iOWK.framer-v-1dc01ec .framer-1gfzy5e { gap: 0px; } .framer-6iOWK.framer-v-1dc01ec .framer-je870b > *, .framer-6iOWK.framer-v-1dc01ec .framer-mym6v8 > *, .framer-6iOWK.framer-v-1dc01ec .framer-1gfzy5e > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-6iOWK.framer-v-1dc01ec .framer-je870b > :first-child, .framer-6iOWK.framer-v-1dc01ec .framer-mym6v8 > :first-child, .framer-6iOWK.framer-v-1dc01ec .framer-1gfzy5e > :first-child { margin-left: 0px; } .framer-6iOWK.framer-v-1dc01ec .framer-je870b > :last-child, .framer-6iOWK.framer-v-1dc01ec .framer-mym6v8 > :last-child, .framer-6iOWK.framer-v-1dc01ec .framer-1gfzy5e > :last-child { margin-right: 0px; } }\",'.framer-6iOWK[data-border=\"true\"]::after, .framer-6iOWK [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 377\n * @framerIntrinsicWidth 377\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"LoSiSeVXH\":{\"layout\":[\"fixed\",\"fixed\"]},\"LdtYekw8U\":{\"layout\":[\"fixed\",\"fixed\"]},\"IiUTkB0r7\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"vw6krL0ow\":\"value\",\"DoQ90NtLv\":\"text\",\"sF1GbxxZW\":\"text2\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerQpaBBUtli=withCSS(Component,css,\"framer-6iOWK\");export default FramerQpaBBUtli;FramerQpaBBUtli.displayName=\"Metric Circle\";FramerQpaBBUtli.defaultProps={height:377,width:377};addPropertyControls(FramerQpaBBUtli,{variant:{options:[\"JzFmkr5JN\",\"LoSiSeVXH\",\"LdtYekw8U\",\"IiUTkB0r7\"],optionTitles:[\"Default\",\"Variant 2\",\"Variant 3\",\"Variant 4\"],title:\"Variant\",type:ControlType.Enum},vw6krL0ow:{defaultValue:\"85%\",displayTextArea:false,title:\"Value\",type:ControlType.String},DoQ90NtLv:{defaultValue:\"Revolve boosts supply chain efficiency by up to 85%, streamlining operations with precision.\",displayTextArea:false,title:\"Text\",type:ControlType.String},sF1GbxxZW:{defaultValue:\"Revolve boosts supply chain efficiency by up to 85%, streamlining operations with precision.\",displayTextArea:false,title:\"Text 2\",type:ControlType.String}});const variationAxes=[{defaultValue:400,maxValue:900,minValue:300,name:\"Weight\",tag:\"wght\"}];addFonts(FramerQpaBBUtli,[{explicitInter:true,fonts:[{family:\"BDO Grotesk Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/Sk82rOE9I0ck31H7NDDI3qwVY.woff2\"},{family:\"BDO Grotesk Variable\",source:\"custom\",url:\"https://framerusercontent.com/assets/mUeFl3gzhwtV73WbOCuVHPAIaOU.woff2\",variationAxes}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerQpaBBUtli\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"377\",\"framerVariables\":\"{\\\"vw6krL0ow\\\":\\\"value\\\",\\\"DoQ90NtLv\\\":\\\"text\\\",\\\"sF1GbxxZW\\\":\\\"text2\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"LoSiSeVXH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"LdtYekw8U\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"IiUTkB0r7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"377\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./QpaBBUtli.map", "// Generated by Framer (f030ee3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import MetricCircle from\"https://framerusercontent.com/modules/dl54CBQQVTh1NSCHF9Wn/HEqqpRLWKYeONepcGSKu/QpaBBUtli.js\";const MetricCircleFonts=getFonts(MetricCircle);const SmartComponentScopedContainerWithFX=withFX(SmartComponentScopedContainer);const cycleOrder=[\"B8gyZGvfX\",\"iDpTd8FDW\",\"opYvpZYj8\"];const serializationHash=\"framer-xxtAw\";const variantClassNames={B8gyZGvfX:\"framer-v-66z4f4\",iDpTd8FDW:\"framer-v-1dq3qws\",opYvpZYj8:\"framer-v-178cflq\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};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:1,skewX:0,skewY:0,x:0,y:30};const transition2={delay:0,duration:.6,ease:[.44,0,.38,1.03],type:\"tween\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:30};const transition3={delay:.1,duration:.6,ease:[.44,0,.38,1.03],type:\"tween\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:30};const transition4={delay:.2,duration:.6,ease:[.44,0,.38,1.03],type:\"tween\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:30};const transition5={delay:.3,duration:.6,ease:[.44,0,.38,1.03],type:\"tween\"};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:30};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"B8gyZGvfX\",Phone:\"opYvpZYj8\",Tablet:\"iDpTd8FDW\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"B8gyZGvfX\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"B8gyZGvfX\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-66z4f4\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"B8gyZGvfX\",ref:refBinding,style:{...style},...addPropertyOverrides({iDpTd8FDW:{\"data-framer-name\":\"Tablet\"},opYvpZYj8:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:182,width:`max((${componentViewport?.width||\"100vw\"} - 30px) / 4, 1px)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||182)-0-182)/2),...addPropertyOverrides({iDpTd8FDW:{width:`max((${componentViewport?.width||\"100vw\"} - 10px) / 2, 50px)`,y:(componentViewport?.y||0)+0+(0*(((componentViewport?.height||374)-0-10)/2)+0)},opYvpZYj8:{width:`max((${componentViewport?.width||\"100vw\"} - 10px) / 2, 50px)`,y:(componentViewport?.y||0)+0+(0*(((componentViewport?.height||374)-0-10)/2)+0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__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-1w4ylem-container\",layoutDependency:layoutDependency,layoutId:\"Cb23i8_zf-container\",nodeId:\"Cb23i8_zf\",rendersWithMotion:true,scopeId:\"jiReBlm1J\",children:/*#__PURE__*/_jsx(MetricCircle,{DoQ90NtLv:\"Quality Metrics Analysed\",height:\"100%\",id:\"Cb23i8_zf\",layoutId:\"Cb23i8_zf\",sF1GbxxZW:\"Over\",style:{height:\"100%\",width:\"100%\"},variant:\"LoSiSeVXH\",vw6krL0ow:\"2.5 Billion\",width:\"100%\",...addPropertyOverrides({opYvpZYj8:{variant:\"LdtYekw8U\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:182,width:`max((${componentViewport?.width||\"100vw\"} - 30px) / 4, 1px)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||182)-0-182)/2),...addPropertyOverrides({iDpTd8FDW:{width:`max((${componentViewport?.width||\"100vw\"} - 10px) / 2, 50px)`,y:(componentViewport?.y||0)+0+(0*(((componentViewport?.height||374)-0-10)/2)+0)},opYvpZYj8:{width:`max((${componentViewport?.width||\"100vw\"} - 10px) / 2, 50px)`,y:(componentViewport?.y||0)+0+(0*(((componentViewport?.height||374)-0-10)/2)+0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1a2dtjq-container\",layoutDependency:layoutDependency,layoutId:\"PjL96w6SR-container\",nodeId:\"PjL96w6SR\",rendersWithMotion:true,scopeId:\"jiReBlm1J\",children:/*#__PURE__*/_jsx(MetricCircle,{DoQ90NtLv:\"Images Processsed Daily\",height:\"100%\",id:\"PjL96w6SR\",layoutId:\"PjL96w6SR\",sF1GbxxZW:\"Over\",style:{height:\"100%\",width:\"100%\"},variant:\"LoSiSeVXH\",vw6krL0ow:\"1 Billion\",width:\"100%\",...addPropertyOverrides({opYvpZYj8:{variant:\"LdtYekw8U\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:182,width:`max((${componentViewport?.width||\"100vw\"} - 30px) / 4, 1px)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||182)-0-182)/2),...addPropertyOverrides({iDpTd8FDW:{width:`max((${componentViewport?.width||\"100vw\"} - 10px) / 2, 50px)`,y:(componentViewport?.y||0)+0+(1*(((componentViewport?.height||374)-0-10)/2)+10)},opYvpZYj8:{width:`max((${componentViewport?.width||\"100vw\"} - 10px) / 2, 50px)`,y:(componentViewport?.y||0)+0+(1*(((componentViewport?.height||374)-0-10)/2)+10)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1axv6oi-container\",layoutDependency:layoutDependency,layoutId:\"IEalhQW0E-container\",nodeId:\"IEalhQW0E\",rendersWithMotion:true,scopeId:\"jiReBlm1J\",children:/*#__PURE__*/_jsx(MetricCircle,{DoQ90NtLv:\"Events Monitored Daily\",height:\"100%\",id:\"IEalhQW0E\",layoutId:\"IEalhQW0E\",sF1GbxxZW:\"Over\",style:{height:\"100%\",width:\"100%\"},variant:\"LoSiSeVXH\",vw6krL0ow:\"180,000\",width:\"100%\",...addPropertyOverrides({opYvpZYj8:{variant:\"LdtYekw8U\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:182,width:`max((${componentViewport?.width||\"100vw\"} - 30px) / 4, 1px)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||182)-0-182)/2),...addPropertyOverrides({iDpTd8FDW:{width:`max((${componentViewport?.width||\"100vw\"} - 10px) / 2, 50px)`,y:(componentViewport?.y||0)+0+(1*(((componentViewport?.height||374)-0-10)/2)+10)},opYvpZYj8:{width:`max((${componentViewport?.width||\"100vw\"} - 10px) / 2, 50px)`,y:(componentViewport?.y||0)+0+(1*(((componentViewport?.height||374)-0-10)/2)+10)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1fc96b3-container\",layoutDependency:layoutDependency,layoutId:\"rA5wmBigD-container\",nodeId:\"rA5wmBigD\",rendersWithMotion:true,scopeId:\"jiReBlm1J\",children:/*#__PURE__*/_jsx(MetricCircle,{DoQ90NtLv:\"Parts Verified Everyday\",height:\"100%\",id:\"rA5wmBigD\",layoutId:\"rA5wmBigD\",sF1GbxxZW:\"Over\",style:{height:\"100%\",width:\"100%\"},variant:\"LoSiSeVXH\",vw6krL0ow:\"29,000\",width:\"100%\",...addPropertyOverrides({opYvpZYj8:{variant:\"LdtYekw8U\"}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-xxtAw.framer-m73lc9, .framer-xxtAw .framer-m73lc9 { display: block; }\",\".framer-xxtAw.framer-66z4f4 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1140px; }\",\".framer-xxtAw .framer-1w4ylem-container, .framer-xxtAw .framer-1a2dtjq-container, .framer-xxtAw .framer-1axv6oi-container, .framer-xxtAw .framer-1fc96b3-container { flex: 1 0 0px; height: 182px; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-xxtAw.framer-66z4f4 { gap: 0px; } .framer-xxtAw.framer-66z4f4 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-xxtAw.framer-66z4f4 > :first-child { margin-left: 0px; } .framer-xxtAw.framer-66z4f4 > :last-child { margin-right: 0px; } }\",\".framer-xxtAw.framer-v-1dq3qws.framer-66z4f4 { align-content: unset; align-items: unset; display: grid; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); width: 750px; }\",\".framer-xxtAw.framer-v-1dq3qws .framer-1w4ylem-container, .framer-xxtAw.framer-v-1dq3qws .framer-1a2dtjq-container, .framer-xxtAw.framer-v-1dq3qws .framer-1axv6oi-container, .framer-xxtAw.framer-v-1dq3qws .framer-1fc96b3-container, .framer-xxtAw.framer-v-178cflq .framer-1w4ylem-container, .framer-xxtAw.framer-v-178cflq .framer-1a2dtjq-container, .framer-xxtAw.framer-v-178cflq .framer-1axv6oi-container, .framer-xxtAw.framer-v-178cflq .framer-1fc96b3-container { align-self: start; flex: none; justify-self: start; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-xxtAw.framer-v-1dq3qws.framer-66z4f4 { gap: 0px; } .framer-xxtAw.framer-v-1dq3qws.framer-66z4f4 > *, .framer-xxtAw.framer-v-1dq3qws.framer-66z4f4 > :first-child, .framer-xxtAw.framer-v-1dq3qws.framer-66z4f4 > :last-child { margin: 0px; } }\",\".framer-xxtAw.framer-v-178cflq.framer-66z4f4 { align-content: unset; align-items: unset; display: grid; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); width: 370px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-xxtAw.framer-v-178cflq.framer-66z4f4 { gap: 0px; } .framer-xxtAw.framer-v-178cflq.framer-66z4f4 > *, .framer-xxtAw.framer-v-178cflq.framer-66z4f4 > :first-child, .framer-xxtAw.framer-v-178cflq.framer-66z4f4 > :last-child { margin: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 182\n * @framerIntrinsicWidth 1140\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"iDpTd8FDW\":{\"layout\":[\"fixed\",\"auto\"]},\"opYvpZYj8\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerjiReBlm1J=withCSS(Component,css,\"framer-xxtAw\");export default FramerjiReBlm1J;FramerjiReBlm1J.displayName=\"gsgs\";FramerjiReBlm1J.defaultProps={height:182,width:1140};addPropertyControls(FramerjiReBlm1J,{variant:{options:[\"B8gyZGvfX\",\"iDpTd8FDW\",\"opYvpZYj8\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerjiReBlm1J,[{explicitInter:true,fonts:[]},...MetricCircleFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerjiReBlm1J\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"iDpTd8FDW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"opYvpZYj8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"182\",\"framerIntrinsicWidth\":\"1140\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./jiReBlm1J.map", "// Generated by Framer (f030ee3)\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\";import{useRef}from\"react\";const serializationHash=\"framer-w8wCS\";const variantClassNames={Zfy9sfPry:\"framer-v-7ns6pk\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({background,color,fontSize,height,id,title,width,...props})=>{return{...props,eJA1D3mLK:background??props.eJA1D3mLK??\"rgb(39, 43, 39)\",kkneNr6XY:fontSize??props.kkneNr6XY??14,l0hw1garg:title??props.l0hw1garg??\"Basic Emission Tracking\",UvahNivIK:color??props.UvahNivIK??\"var(--token-60b8256d-8ac8-433f-b6b8-cb9776d3a855, rgb(39, 43, 39))\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,l0hw1garg,eJA1D3mLK,UvahNivIK,kkneNr6XY,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"Zfy9sfPry\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-7ns6pk\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"Zfy9sfPry\",ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-y1zk56\",\"data-framer-name\":\"Circle\",layoutDependency:layoutDependency,layoutId:\"n5bGr6yf5\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-f3686x\",\"data-framer-name\":\"Cricle\",layoutDependency:layoutDependency,layoutId:\"tCVfQR15o\",style:{backgroundColor:eJA1D3mLK,borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0JETyBHcm90ZXNrIFZhcmlhYmxlVkY9SW5kbmFIUWlJRE0zTUE9PQ==\",\"--framer-font-family\":'\"BDO Grotesk Variable\", \"BDO Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-kkneNr6XY-Zv64KJFib) * 1px)\",\"--framer-font-variation-axes\":'var(--extracted-2gg91v, \"wght\" 370)',\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-UvahNivIK-Zv64KJFib))\",\"--framer-text-transform\":\"inherit\"},children:\"Basic Emission Tracking\"})}),className:\"framer-zzih9h\",\"data-framer-name\":\"Bullet item\",fonts:[\"CUSTOM;BDO Grotesk Variable\"],layoutDependency:layoutDependency,layoutId:\"z0dzmQ_qk\",style:{\"--extracted-2gg91v\":'\"wght\" 370',\"--extracted-r6o4lv\":\"var(--variable-reference-UvahNivIK-Zv64KJFib)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-kkneNr6XY-Zv64KJFib\":kkneNr6XY,\"--variable-reference-UvahNivIK-Zv64KJFib\":UvahNivIK},text:l0hw1garg,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-w8wCS.framer-pczeqd, .framer-w8wCS .framer-pczeqd { display: block; }\",\".framer-w8wCS.framer-7ns6pk { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 210px; }\",\".framer-w8wCS .framer-y1zk56 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 9px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-w8wCS .framer-f3686x { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 5px); position: relative; width: 5px; }\",\".framer-w8wCS .framer-zzih9h { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-w8wCS.framer-7ns6pk, .framer-w8wCS .framer-y1zk56 { gap: 0px; } .framer-w8wCS.framer-7ns6pk > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-w8wCS.framer-7ns6pk > :first-child, .framer-w8wCS .framer-y1zk56 > :first-child { margin-left: 0px; } .framer-w8wCS.framer-7ns6pk > :last-child, .framer-w8wCS .framer-y1zk56 > :last-child { margin-right: 0px; } .framer-w8wCS .framer-y1zk56 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 19.5\n * @framerIntrinsicWidth 210\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"l0hw1garg\":\"title\",\"eJA1D3mLK\":\"background\",\"UvahNivIK\":\"color\",\"kkneNr6XY\":\"fontSize\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerZv64KJFib=withCSS(Component,css,\"framer-w8wCS\");export default FramerZv64KJFib;FramerZv64KJFib.displayName=\"Bullet Point 2\";FramerZv64KJFib.defaultProps={height:19.5,width:210};addPropertyControls(FramerZv64KJFib,{l0hw1garg:{defaultValue:\"Basic Emission Tracking\",displayTextArea:false,title:\"Title\",type:ControlType.String},eJA1D3mLK:{defaultValue:\"rgb(39, 43, 39)\",title:\"Background\",type:ControlType.Color},UvahNivIK:{defaultValue:\"var(--token-60b8256d-8ac8-433f-b6b8-cb9776d3a855, rgb(39, 43, 39))\",title:\"Color\",type:ControlType.Color},kkneNr6XY:{defaultValue:14,title:\"Font Size\",type:ControlType.Number}});const variationAxes=[{defaultValue:400,maxValue:900,minValue:300,name:\"Weight\",tag:\"wght\"}];addFonts(FramerZv64KJFib,[{explicitInter:true,fonts:[{family:\"BDO Grotesk Variable\",source:\"custom\",url:\"https://framerusercontent.com/assets/mUeFl3gzhwtV73WbOCuVHPAIaOU.woff2\",variationAxes}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZv64KJFib\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"19.5\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"210\",\"framerVariables\":\"{\\\"l0hw1garg\\\":\\\"title\\\",\\\"eJA1D3mLK\\\":\\\"background\\\",\\\"UvahNivIK\\\":\\\"color\\\",\\\"kkneNr6XY\\\":\\\"fontSize\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Zv64KJFib.map", "// Generated by Framer (47ebf4a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,ResolveLinks,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Option1 from\"https://framerusercontent.com/modules/onPJsiWu5R7QCsx3DGZi/drb9Xs2GvzvLqPpQjT4q/xlmSdvenh.js\";import BulletPoint2 from\"https://framerusercontent.com/modules/FtKdDkfcBMDkYtUDCpGi/K7fp6KPiJf6wmdQFRRPM/Zv64KJFib.js\";const BulletPoint2Fonts=getFonts(BulletPoint2);const Option1Fonts=getFonts(Option1);const cycleOrder=[\"pJOA9srfR\",\"r4KhFPXkW\",\"Om1GKyMYK\",\"pIm1FVfCg\",\"sRMNcx9qk\",\"TUz4MGnBK\"];const serializationHash=\"framer-QfErX\";const variantClassNames={Om1GKyMYK:\"framer-v-1g4v7zo\",pIm1FVfCg:\"framer-v-1d2rhkt\",pJOA9srfR:\"framer-v-1n5sier\",r4KhFPXkW:\"framer-v-a39grc\",sRMNcx9qk:\"framer-v-1orcg1w\",TUz4MGnBK:\"framer-v-12f5v07\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 4\":\"pIm1FVfCg\",\"Variant 5\":\"sRMNcx9qk\",\"Variant 6\":\"TUz4MGnBK\",Desktop:\"pJOA9srfR\",Ipad:\"r4KhFPXkW\",Mobile:\"Om1GKyMYK\"};const getProps=({featuresPadding,height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"pJOA9srfR\",Y2dCh1PjJ:featuresPadding??props.Y2dCh1PjJ??\"24px 12px 24px 12px\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,Y2dCh1PjJ,Q86JkECvG,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"pJOA9srfR\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const RoK3PVlbk3a1evk=activeVariantCallback(async(...args)=>{if(Q86JkECvG){const res=await Q86JkECvG(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"pIm1FVfCg\")return true;return false;};const isDisplayed1=()=>{if([\"pIm1FVfCg\",\"sRMNcx9qk\",\"TUz4MGnBK\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if(baseVariant===\"sRMNcx9qk\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"TUz4MGnBK\")return true;return false;};const isDisplayed4=()=>{if([\"sRMNcx9qk\",\"TUz4MGnBK\"].includes(baseVariant))return false;return true;};const isDisplayed5=()=>{if(baseVariant===\"pIm1FVfCg\")return false;return true;};const router=useRouter();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1n5sier\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"pJOA9srfR\",ref:refBinding,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:3,borderBottomRightRadius:3,borderTopLeftRadius:3,borderTopRightRadius:3,...style},...addPropertyOverrides({Om1GKyMYK:{\"data-framer-name\":\"Mobile\"},pIm1FVfCg:{\"data-framer-name\":\"Variant 4\"},r4KhFPXkW:{\"data-framer-name\":\"Ipad\"},sRMNcx9qk:{\"data-framer-name\":\"Variant 5\"},TUz4MGnBK:{\"data-framer-name\":\"Variant 6\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rcb4xm\",\"data-framer-name\":\"Left\",layoutDependency:layoutDependency,layoutId:\"b7FAX85dM\",style:{borderBottomLeftRadius:3,borderBottomRightRadius:3,borderTopLeftRadius:3,borderTopRightRadius:3},children:[isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1335.5,intrinsicWidth:842.5,pixelHeight:995,pixelWidth:1494,src:\"https://framerusercontent.com/images/zwjE3LhK0YGHuFnvhy3CnsH0a0.png\",srcSet:\"https://framerusercontent.com/images/zwjE3LhK0YGHuFnvhy3CnsH0a0.png?scale-down-to=512 512w,https://framerusercontent.com/images/zwjE3LhK0YGHuFnvhy3CnsH0a0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zwjE3LhK0YGHuFnvhy3CnsH0a0.png 1494w\"},className:\"framer-1wtozyz\",\"data-framer-name\":\"NA Deployment_Mobile Uploads_20241115T024807Z (1)\",layoutDependency:layoutDependency,layoutId:\"h0R1ZxBIx\",style:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},...addPropertyOverrides({pIm1FVfCg:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1335.5,intrinsicWidth:842.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+9+10+0),pixelHeight:995,pixelWidth:1494,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 66px) / 2, 1px) - 20px)`,src:\"https://framerusercontent.com/images/zwjE3LhK0YGHuFnvhy3CnsH0a0.png\",srcSet:\"https://framerusercontent.com/images/zwjE3LhK0YGHuFnvhy3CnsH0a0.png?scale-down-to=512 512w,https://framerusercontent.com/images/zwjE3LhK0YGHuFnvhy3CnsH0a0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zwjE3LhK0YGHuFnvhy3CnsH0a0.png 1494w\"}}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qur3mm\",layoutDependency:layoutDependency,layoutId:\"eWtPKvxre\",style:{backgroundColor:\"rgb(237, 237, 237)\",borderBottomLeftRadius:3,borderBottomRightRadius:3,borderTopLeftRadius:3,borderTopRightRadius:3},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1492,intrinsicWidth:2484,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+9+10+0+56.5),pixelHeight:956,pixelWidth:1600,sizes:`calc((max((${componentViewport?.width||\"100vw\"} - 66px) / 2, 1px) - 20px) * 0.9312)`,src:\"https://framerusercontent.com/images/B4jHTCcfLbzc24iD2S4rVTkN1wY.jpeg\",srcSet:\"https://framerusercontent.com/images/B4jHTCcfLbzc24iD2S4rVTkN1wY.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/B4jHTCcfLbzc24iD2S4rVTkN1wY.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/B4jHTCcfLbzc24iD2S4rVTkN1wY.jpeg 1600w\"},className:\"framer-1i1wege\",\"data-framer-name\":\"Image (6)\",layoutDependency:layoutDependency,layoutId:\"b_Fb5qRIV\",style:{borderBottomLeftRadius:3,borderBottomRightRadius:3,borderTopLeftRadius:3,borderTopRightRadius:3},transformTemplate:transformTemplate1,...addPropertyOverrides({Om1GKyMYK:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1492,intrinsicWidth:2484,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+9+0+10+0+2.5),pixelHeight:956,pixelWidth:1600,sizes:`calc((${componentViewport?.width||\"100vw\"} - 38px) * 0.95)`,src:\"https://framerusercontent.com/images/B4jHTCcfLbzc24iD2S4rVTkN1wY.jpeg\",srcSet:\"https://framerusercontent.com/images/B4jHTCcfLbzc24iD2S4rVTkN1wY.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/B4jHTCcfLbzc24iD2S4rVTkN1wY.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/B4jHTCcfLbzc24iD2S4rVTkN1wY.jpeg 1600w\"}},r4KhFPXkW:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1492,intrinsicWidth:2484,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+9+10+0+(Math.max(0,(((componentViewport?.height||440)-18)*1-20-0)/1)*1*.5000000000000002-128.5)),pixelHeight:956,pixelWidth:1600,sizes:`calc((max((${componentViewport?.width||\"100vw\"} - 66px) / 2, 1px) - 20px) * 0.9312)`,src:\"https://framerusercontent.com/images/B4jHTCcfLbzc24iD2S4rVTkN1wY.jpeg\",srcSet:\"https://framerusercontent.com/images/B4jHTCcfLbzc24iD2S4rVTkN1wY.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/B4jHTCcfLbzc24iD2S4rVTkN1wY.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/B4jHTCcfLbzc24iD2S4rVTkN1wY.jpeg 1600w\"}}},baseVariant,gestureVariant)})}),isDisplayed2()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1335.5,intrinsicWidth:842.5,pixelHeight:995,pixelWidth:1494,src:\"https://framerusercontent.com/images/zwjE3LhK0YGHuFnvhy3CnsH0a0.png\",srcSet:\"https://framerusercontent.com/images/zwjE3LhK0YGHuFnvhy3CnsH0a0.png?scale-down-to=512 512w,https://framerusercontent.com/images/zwjE3LhK0YGHuFnvhy3CnsH0a0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zwjE3LhK0YGHuFnvhy3CnsH0a0.png 1494w\"},className:\"framer-z97kmv\",\"data-framer-name\":\"NA Deployment_Mobile Uploads_20241115T024807Z (1)\",layoutDependency:layoutDependency,layoutId:\"qKJadCqxP\",style:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},...addPropertyOverrides({sRMNcx9qk:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1335.5,intrinsicWidth:842.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+9+10+0),pixelHeight:995,pixelWidth:1494,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 66px) / 2, 1px) - 20px)`,src:\"https://framerusercontent.com/images/zwjE3LhK0YGHuFnvhy3CnsH0a0.png\",srcSet:\"https://framerusercontent.com/images/zwjE3LhK0YGHuFnvhy3CnsH0a0.png?scale-down-to=512 512w,https://framerusercontent.com/images/zwjE3LhK0YGHuFnvhy3CnsH0a0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zwjE3LhK0YGHuFnvhy3CnsH0a0.png 1494w\"}}},baseVariant,gestureVariant)}),isDisplayed3()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-j1oeh9\",layoutDependency:layoutDependency,layoutId:\"WPdaIW_fs\",style:{backgroundColor:\"rgb(237, 237, 237)\",borderBottomLeftRadius:3,borderBottomRightRadius:3,borderTopLeftRadius:3,borderTopRightRadius:3},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1335.5,intrinsicWidth:842.5,pixelHeight:995,pixelWidth:1494,sizes:\"304px\",src:\"https://framerusercontent.com/images/zwjE3LhK0YGHuFnvhy3CnsH0a0.png\",srcSet:\"https://framerusercontent.com/images/zwjE3LhK0YGHuFnvhy3CnsH0a0.png?scale-down-to=512 512w,https://framerusercontent.com/images/zwjE3LhK0YGHuFnvhy3CnsH0a0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zwjE3LhK0YGHuFnvhy3CnsH0a0.png 1494w\"},className:\"framer-b43cj1\",\"data-framer-name\":\"NA Deployment_Mobile Uploads_20241115T024807Z (1)\",layoutDependency:layoutDependency,layoutId:\"eNPcopmbr\",style:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},transformTemplate:transformTemplate1,...addPropertyOverrides({TUz4MGnBK:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1335.5,intrinsicWidth:842.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+9+0+10+0+20.5),pixelHeight:995,pixelWidth:1494,sizes:\"304px\",src:\"https://framerusercontent.com/images/zwjE3LhK0YGHuFnvhy3CnsH0a0.png\",srcSet:\"https://framerusercontent.com/images/zwjE3LhK0YGHuFnvhy3CnsH0a0.png?scale-down-to=512 512w,https://framerusercontent.com/images/zwjE3LhK0YGHuFnvhy3CnsH0a0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zwjE3LhK0YGHuFnvhy3CnsH0a0.png 1494w\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-lu0zx2\",\"data-framer-name\":\"Right\",layoutDependency:layoutDependency,layoutId:\"hoQH2UEkA\",style:{\"--1qyuynl\":numberToPixelString(Y2dCh1PjJ)},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gs77n6\",\"data-framer-name\":\"Features\",layoutDependency:layoutDependency,layoutId:\"UxTW1z35j\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"Q1VTVE9NO0JETyBHcm90ZXNrIFZhcmlhYmxlVkY9SW5kbmFIUWlJRE0zTUE9PQ==\",\"--framer-font-family\":'\"BDO Grotesk Variable\", \"BDO Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-variation-axes\":'var(--extracted-zfisys, \"wght\" 370)',\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(37, 53, 71))\"},children:\"Key Features:\"})}),className:\"framer-bo5ewj\",\"data-framer-name\":\"Heading\",fonts:[\"CUSTOM;BDO Grotesk Variable\"],layoutDependency:layoutDependency,layoutId:\"vQlPbcwjn\",style:{\"--extracted-a0htzi\":\"rgb(37, 53, 71)\",\"--extracted-zfisys\":'\"wght\" 370',\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Om1GKyMYK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"Q1VTVE9NO0JETyBHcm90ZXNrIFZhcmlhYmxlVkY9SW5kbmFIUWlJRE0zTUE9PQ==\",\"--framer-font-family\":'\"BDO Grotesk Variable\", \"BDO Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-variation-axes\":'var(--extracted-zfisys, \"wght\" 370)',\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(37, 53, 71))\"},children:\"Key Features:\"})})},TUz4MGnBK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"Q1VTVE9NO0JETyBHcm90ZXNrIFZhcmlhYmxlVkY9SW5kbmFIUWlJRE0zTUE9PQ==\",\"--framer-font-family\":'\"BDO Grotesk Variable\", \"BDO Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-variation-axes\":'var(--extracted-zfisys, \"wght\" 370)',\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(37, 53, 71))\"},children:\"Key Features:\"})})}},baseVariant,gestureVariant)}),isDisplayed4()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vesj5d\",\"data-framer-name\":\"EDGE\",layoutDependency:layoutDependency,layoutId:\"NOx91bUeJ\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-63fw95\",\"data-framer-name\":\"Feature List\",layoutDependency:layoutDependency,layoutId:\"kha2A8C7W\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:19,y:(componentViewport?.y||0)+9+24+((((componentViewport?.height||408)-18)*1-48-239.5)/2+0+0)+0+67.5+0+0+0,...addPropertyOverrides({Om1GKyMYK:{y:(componentViewport?.y||0)+9+306+0+0+0+43.4+0+0+0+0},pIm1FVfCg:{width:\"256px\"},r4KhFPXkW:{y:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-bfw1bz-container\",layoutDependency:layoutDependency,layoutId:\"twfzyo3Dm-container\",nodeId:\"twfzyo3Dm\",rendersWithMotion:true,scopeId:\"eB84KWUf8\",children:/*#__PURE__*/_jsx(BulletPoint2,{eJA1D3mLK:\"rgb(46, 90, 148)\",height:\"100%\",id:\"twfzyo3Dm\",kkneNr6XY:14,l0hw1garg:\"Anomaly Detection\",layoutId:\"twfzyo3Dm\",UvahNivIK:\"rgb(37, 53, 71)\",width:\"100%\",...addPropertyOverrides({Om1GKyMYK:{kkneNr6XY:12,style:{width:\"100%\"}},pIm1FVfCg:{l0hw1garg:\"Multi-Camera & Sensor Integration\",style:{width:\"100%\"}},r4KhFPXkW:{style:{width:\"100%\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:19,y:(componentViewport?.y||0)+9+24+((((componentViewport?.height||408)-18)*1-48-239.5)/2+0+0)+0+67.5+0+0+31,...addPropertyOverrides({Om1GKyMYK:{y:(componentViewport?.y||0)+9+306+0+0+0+43.4+0+0+0+31},pIm1FVfCg:{width:\"256px\"},r4KhFPXkW:{y:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1147e48-container\",layoutDependency:layoutDependency,layoutId:\"TW2lSgIc0-container\",nodeId:\"TW2lSgIc0\",rendersWithMotion:true,scopeId:\"eB84KWUf8\",children:/*#__PURE__*/_jsx(BulletPoint2,{eJA1D3mLK:\"rgb(46, 90, 148)\",height:\"100%\",id:\"TW2lSgIc0\",kkneNr6XY:14,l0hw1garg:\"No-Code AI Model Training\",layoutId:\"TW2lSgIc0\",UvahNivIK:\"rgb(37, 53, 71)\",width:\"100%\",...addPropertyOverrides({Om1GKyMYK:{kkneNr6XY:12},pIm1FVfCg:{l0hw1garg:\"Real Time Quality Alerts\",style:{width:\"100%\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:19,y:(componentViewport?.y||0)+9+24+((((componentViewport?.height||408)-18)*1-48-239.5)/2+0+0)+0+67.5+0+0+62,...addPropertyOverrides({Om1GKyMYK:{y:(componentViewport?.y||0)+9+306+0+0+0+43.4+0+0+0+62},pIm1FVfCg:{width:\"256px\"},r4KhFPXkW:{y:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-dacrtg-container\",layoutDependency:layoutDependency,layoutId:\"tsjbo0y2Y-container\",nodeId:\"tsjbo0y2Y\",rendersWithMotion:true,scopeId:\"eB84KWUf8\",children:/*#__PURE__*/_jsx(BulletPoint2,{eJA1D3mLK:\"rgb(46, 90, 148)\",height:\"100%\",id:\"tsjbo0y2Y\",kkneNr6XY:14,l0hw1garg:\"Prediction Heatmaps\",layoutId:\"tsjbo0y2Y\",UvahNivIK:\"rgb(37, 53, 71)\",width:\"100%\",...addPropertyOverrides({Om1GKyMYK:{kkneNr6XY:12,style:{width:\"100%\"}},pIm1FVfCg:{l0hw1garg:\"PLC Integration\",style:{width:\"100%\"}},r4KhFPXkW:{style:{width:\"100%\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:19,y:(componentViewport?.y||0)+9+24+((((componentViewport?.height||408)-18)*1-48-239.5)/2+0+0)+0+67.5+0+0+93,...addPropertyOverrides({Om1GKyMYK:{y:(componentViewport?.y||0)+9+306+0+0+0+43.4+0+0+0+93},pIm1FVfCg:{width:\"256px\"},r4KhFPXkW:{y:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-v69k0w-container\",layoutDependency:layoutDependency,layoutId:\"TfMKukxw4-container\",nodeId:\"TfMKukxw4\",rendersWithMotion:true,scopeId:\"eB84KWUf8\",children:/*#__PURE__*/_jsx(BulletPoint2,{eJA1D3mLK:\"rgb(46, 90, 148)\",height:\"100%\",id:\"TfMKukxw4\",kkneNr6XY:14,l0hw1garg:\"Image / Data Ingestion\",layoutId:\"TfMKukxw4\",UvahNivIK:\"rgb(37, 53, 71)\",width:\"100%\",...addPropertyOverrides({Om1GKyMYK:{kkneNr6XY:12,style:{width:\"100%\"}},pIm1FVfCg:{l0hw1garg:\"Edge Computing\",style:{width:\"100%\"}},r4KhFPXkW:{style:{width:\"100%\"}}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14so8qh\",\"data-framer-name\":\"Feature List\",layoutDependency:layoutDependency,layoutId:\"m4xZR0r0H\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:19,y:(componentViewport?.y||0)+9+24+((((componentViewport?.height||408)-18)*1-48-239.5)/2+0+0)+0+67.5+0+0+0,...addPropertyOverrides({Om1GKyMYK:{width:`calc(${componentViewport?.width||\"100vw\"} - 42px)`,y:(componentViewport?.y||0)+9+306+0+0+0+43.4+0+122+0+0},r4KhFPXkW:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 66px) / 2, 1px) - ${Y2dCh1PjJ*2}px)`,y:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1m2ylf0-container\",layoutDependency:layoutDependency,layoutId:\"CU3yo8_CL-container\",nodeId:\"CU3yo8_CL\",rendersWithMotion:true,scopeId:\"eB84KWUf8\",children:/*#__PURE__*/_jsx(BulletPoint2,{eJA1D3mLK:\"rgb(46, 90, 148)\",height:\"100%\",id:\"CU3yo8_CL\",kkneNr6XY:14,l0hw1garg:\"Data Consolidation & Searchability\",layoutId:\"CU3yo8_CL\",style:{width:\"100%\"},UvahNivIK:\"rgb(37, 53, 71)\",width:\"100%\",...addPropertyOverrides({Om1GKyMYK:{kkneNr6XY:12},pIm1FVfCg:{l0hw1garg:\"Connect to Existing Cameras or Add Additional Cameras\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:19,y:(componentViewport?.y||0)+9+24+((((componentViewport?.height||408)-18)*1-48-239.5)/2+0+0)+0+67.5+0+0+31,...addPropertyOverrides({Om1GKyMYK:{width:`calc(${componentViewport?.width||\"100vw\"} - 42px)`,y:(componentViewport?.y||0)+9+306+0+0+0+43.4+0+122+0+31},r4KhFPXkW:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 66px) / 2, 1px) - ${Y2dCh1PjJ*2}px)`,y:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1cabx34-container\",layoutDependency:layoutDependency,layoutId:\"oALLbhH0r-container\",nodeId:\"oALLbhH0r\",rendersWithMotion:true,scopeId:\"eB84KWUf8\",children:/*#__PURE__*/_jsx(BulletPoint2,{eJA1D3mLK:\"rgb(46, 90, 148)\",height:\"100%\",id:\"oALLbhH0r\",kkneNr6XY:14,l0hw1garg:\"Automated Quality & Anomaly Reports\",layoutId:\"oALLbhH0r\",style:{width:\"100%\"},UvahNivIK:\"rgb(37, 53, 71)\",width:\"100%\",...addPropertyOverrides({Om1GKyMYK:{kkneNr6XY:12},pIm1FVfCg:{l0hw1garg:\"Remotely Build & Manage Quality Inspection Algorithms\"}},baseVariant,gestureVariant)})})}),isDisplayed5()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:19,y:(componentViewport?.y||0)+9+24+((((componentViewport?.height||408)-18)*1-48-239.5)/2+0+0)+0+67.5+0+0+62,...addPropertyOverrides({Om1GKyMYK:{width:`calc(${componentViewport?.width||\"100vw\"} - 42px)`,y:(componentViewport?.y||0)+9+306+0+0+0+43.4+0+122+0+62},r4KhFPXkW:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 66px) / 2, 1px) - ${Y2dCh1PjJ*2}px)`,y:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1toc251-container\",layoutDependency:layoutDependency,layoutId:\"CsKvT200G-container\",nodeId:\"CsKvT200G\",rendersWithMotion:true,scopeId:\"eB84KWUf8\",children:/*#__PURE__*/_jsx(BulletPoint2,{eJA1D3mLK:\"rgb(46, 90, 148)\",height:\"100%\",id:\"CsKvT200G\",kkneNr6XY:14,l0hw1garg:\"Find & Contain Similar Defects\",layoutId:\"CsKvT200G\",style:{width:\"100%\"},UvahNivIK:\"rgb(37, 53, 71)\",width:\"100%\",...addPropertyOverrides({Om1GKyMYK:{kkneNr6XY:12}},baseVariant,gestureVariant)})})}),isDisplayed5()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:19,y:(componentViewport?.y||0)+9+24+((((componentViewport?.height||408)-18)*1-48-239.5)/2+0+0)+0+67.5+0+0+93,...addPropertyOverrides({Om1GKyMYK:{width:`calc(${componentViewport?.width||\"100vw\"} - 42px)`,y:(componentViewport?.y||0)+9+306+0+0+0+43.4+0+122+0+93},r4KhFPXkW:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 66px) / 2, 1px) - ${Y2dCh1PjJ*2}px)`,y:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-17j5ukb-container\",layoutDependency:layoutDependency,layoutId:\"PDzf_WvlC-container\",nodeId:\"PDzf_WvlC\",rendersWithMotion:true,scopeId:\"eB84KWUf8\",children:/*#__PURE__*/_jsx(BulletPoint2,{eJA1D3mLK:\"rgb(46, 90, 148)\",height:\"100%\",id:\"PDzf_WvlC\",kkneNr6XY:14,l0hw1garg:\"Explainable AI Predictions\",layoutId:\"PDzf_WvlC\",style:{width:\"100%\"},UvahNivIK:\"rgb(37, 53, 71)\",width:\"100%\",...addPropertyOverrides({Om1GKyMYK:{kkneNr6XY:12}},baseVariant,gestureVariant)})})})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-hqcz1f\",layoutDependency:layoutDependency,layoutId:\"NEwuJ2QRC\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-wx851j\",layoutDependency:layoutDependency,layoutId:\"U0IPUT76z\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":zQW10MkTh\",webPageId:\"lVFIDK1X5\"},implicitPathVariables:undefined},{href:{hash:\":zQW10MkTh\",webPageId:\"lVFIDK1X5\"},implicitPathVariables:undefined},{href:{hash:\":zQW10MkTh\",webPageId:\"lVFIDK1X5\"},implicitPathVariables:undefined},{href:{hash:\":mQcCj8O4D\",webPageId:\"lVFIDK1X5\"},implicitPathVariables:undefined},{href:{hash:\":zQW10MkTh\",webPageId:\"lVFIDK1X5\"},implicitPathVariables:undefined},{href:{hash:\":mQcCj8O4D\",webPageId:\"lVFIDK1X5\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:25,y:(componentViewport?.y||0)+9+24+((((componentViewport?.height||408)-18)*1-48-239.5)/2+0+0)+0+214.5+0+0,...addPropertyOverrides({Om1GKyMYK:{y:(componentViewport?.y||0)+9+306+0+0+0+297.4+0+10},r4KhFPXkW:{y:undefined},sRMNcx9qk:{y:undefined},TUz4MGnBK:{y:(componentViewport?.y||0)+9+306+0+0+0+235.4+0+10}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-4bmx1u-container\",layoutDependency:layoutDependency,layoutId:\"OBNj9LzFI-container\",nodeId:\"OBNj9LzFI\",rendersWithMotion:true,scopeId:\"eB84KWUf8\",children:/*#__PURE__*/_jsx(Option1,{Dej_q0EvW:13,DuBmluGcs:\"Plastics\",F1vqvqCV8:\"CLOUD\",height:\"100%\",id:\"OBNj9LzFI\",j52Mi5O3s:resolvedLinks[0],layoutId:\"OBNj9LzFI\",QzOfqFAwr:\"rgb(247, 246, 240)\",RoK3PVlbk:RoK3PVlbk3a1evk,variant:\"OSzri9cgN\",width:\"100%\",Wu0i3OEzL:\"rgb(247, 246, 240)\",ZbmOoogKJ:{borderColor:\"rgb(247, 246, 240)\",borderStyle:\"solid\",borderWidth:1},ZuWFgziaH:\"rgb(33, 51, 71)\",...addPropertyOverrides({Om1GKyMYK:{j52Mi5O3s:resolvedLinks[2]},pIm1FVfCg:{F1vqvqCV8:\"| Cloud + Edge\",j52Mi5O3s:resolvedLinks[3],variant:\"O146P5Bq3\"},r4KhFPXkW:{j52Mi5O3s:resolvedLinks[1]},sRMNcx9qk:{j52Mi5O3s:resolvedLinks[4],variant:\"O146P5Bq3\"},TUz4MGnBK:{j52Mi5O3s:resolvedLinks[5],variant:\"O146P5Bq3\"}},baseVariant,gestureVariant)})})})})})}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-im992g\",\"data-framer-name\":\"EDGE\",layoutDependency:layoutDependency,layoutId:\"wanFob3Yr\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ru6rlh\",\"data-framer-name\":\"Feature List\",layoutDependency:layoutDependency,layoutId:\"LxUycVDij\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:19,width:\"256px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ui03xy-container\",layoutDependency:layoutDependency,layoutId:\"LVtEx2iLH-container\",nodeId:\"LVtEx2iLH\",rendersWithMotion:true,scopeId:\"eB84KWUf8\",children:/*#__PURE__*/_jsx(BulletPoint2,{eJA1D3mLK:\"rgb(46, 90, 148)\",height:\"100%\",id:\"LVtEx2iLH\",kkneNr6XY:14,l0hw1garg:\"Multi-Camera & Sensor Integration\",layoutId:\"LVtEx2iLH\",style:{width:\"100%\"},UvahNivIK:\"rgb(37, 53, 71)\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:19,width:\"256px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-dnd2wt-container\",layoutDependency:layoutDependency,layoutId:\"tKVMutTf0-container\",nodeId:\"tKVMutTf0\",rendersWithMotion:true,scopeId:\"eB84KWUf8\",children:/*#__PURE__*/_jsx(BulletPoint2,{eJA1D3mLK:\"rgb(46, 90, 148)\",height:\"100%\",id:\"tKVMutTf0\",kkneNr6XY:14,l0hw1garg:\"Real Time Quality Alerts\",layoutId:\"tKVMutTf0\",style:{width:\"100%\"},UvahNivIK:\"rgb(37, 53, 71)\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:19,width:\"256px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1vychd9-container\",layoutDependency:layoutDependency,layoutId:\"WbpR6UBWj-container\",nodeId:\"WbpR6UBWj\",rendersWithMotion:true,scopeId:\"eB84KWUf8\",children:/*#__PURE__*/_jsx(BulletPoint2,{eJA1D3mLK:\"rgb(46, 90, 148)\",height:\"100%\",id:\"WbpR6UBWj\",kkneNr6XY:14,l0hw1garg:\"PLC Integration\",layoutId:\"WbpR6UBWj\",style:{width:\"100%\"},UvahNivIK:\"rgb(37, 53, 71)\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:19,width:\"256px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-tmwx5v-container\",layoutDependency:layoutDependency,layoutId:\"YYWWXQ26I-container\",nodeId:\"YYWWXQ26I\",rendersWithMotion:true,scopeId:\"eB84KWUf8\",children:/*#__PURE__*/_jsx(BulletPoint2,{eJA1D3mLK:\"rgb(46, 90, 148)\",height:\"100%\",id:\"YYWWXQ26I\",kkneNr6XY:14,l0hw1garg:\"Edge Computing\",layoutId:\"YYWWXQ26I\",style:{width:\"100%\"},UvahNivIK:\"rgb(37, 53, 71)\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wi7n39\",\"data-framer-name\":\"Feature List\",layoutDependency:layoutDependency,layoutId:\"WewoihZQb\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:19,...addPropertyOverrides({sRMNcx9qk:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 66px) / 2, 1px) - ${Y2dCh1PjJ*2}px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-m31l3m-container\",layoutDependency:layoutDependency,layoutId:\"QBoLORL2l-container\",nodeId:\"QBoLORL2l\",rendersWithMotion:true,scopeId:\"eB84KWUf8\",children:/*#__PURE__*/_jsx(BulletPoint2,{eJA1D3mLK:\"rgb(46, 90, 148)\",height:\"100%\",id:\"QBoLORL2l\",kkneNr6XY:14,l0hw1garg:\"Connect to Existing Cameras or Add Additional Cameras\",layoutId:\"QBoLORL2l\",style:{width:\"100%\"},UvahNivIK:\"rgb(37, 53, 71)\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:19,...addPropertyOverrides({sRMNcx9qk:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 66px) / 2, 1px) - ${Y2dCh1PjJ*2}px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1umy7nq-container\",layoutDependency:layoutDependency,layoutId:\"NY8e2TA5c-container\",nodeId:\"NY8e2TA5c\",rendersWithMotion:true,scopeId:\"eB84KWUf8\",children:/*#__PURE__*/_jsx(BulletPoint2,{eJA1D3mLK:\"rgb(46, 90, 148)\",height:\"100%\",id:\"NY8e2TA5c\",kkneNr6XY:14,l0hw1garg:\"Remotely Build & Manage Quality Inspection Algorithms\",layoutId:\"NY8e2TA5c\",style:{width:\"100%\"},UvahNivIK:\"rgb(37, 53, 71)\",width:\"100%\"})})})]})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mf049u\",\"data-framer-name\":\"EDGE\",layoutDependency:layoutDependency,layoutId:\"uCPHb7zru\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17g2xz3\",\"data-framer-name\":\"Feature List\",layoutDependency:layoutDependency,layoutId:\"dR6ZE8nP7\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:19,width:\"256px\",...addPropertyOverrides({TUz4MGnBK:{y:(componentViewport?.y||0)+9+306+0+0+0+43.4+0+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-w8w7yh-container\",layoutDependency:layoutDependency,layoutId:\"ZZpATtzT3-container\",nodeId:\"ZZpATtzT3\",rendersWithMotion:true,scopeId:\"eB84KWUf8\",children:/*#__PURE__*/_jsx(BulletPoint2,{eJA1D3mLK:\"rgb(46, 90, 148)\",height:\"100%\",id:\"ZZpATtzT3\",kkneNr6XY:12,l0hw1garg:\"Multi-Camera & Sensor Integration\",layoutId:\"ZZpATtzT3\",style:{width:\"100%\"},UvahNivIK:\"rgb(37, 53, 71)\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:19,width:\"256px\",...addPropertyOverrides({TUz4MGnBK:{y:(componentViewport?.y||0)+9+306+0+0+0+43.4+0+0+0+31}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-he49e0-container\",layoutDependency:layoutDependency,layoutId:\"Iu6v7K44o-container\",nodeId:\"Iu6v7K44o\",rendersWithMotion:true,scopeId:\"eB84KWUf8\",children:/*#__PURE__*/_jsx(BulletPoint2,{eJA1D3mLK:\"rgb(46, 90, 148)\",height:\"100%\",id:\"Iu6v7K44o\",kkneNr6XY:12,l0hw1garg:\"Real Time Quality Alerts\",layoutId:\"Iu6v7K44o\",style:{width:\"100%\"},UvahNivIK:\"rgb(37, 53, 71)\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:19,width:\"256px\",...addPropertyOverrides({TUz4MGnBK:{y:(componentViewport?.y||0)+9+306+0+0+0+43.4+0+0+0+62}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-wsjnbp-container\",layoutDependency:layoutDependency,layoutId:\"YwtvAr2zf-container\",nodeId:\"YwtvAr2zf\",rendersWithMotion:true,scopeId:\"eB84KWUf8\",children:/*#__PURE__*/_jsx(BulletPoint2,{eJA1D3mLK:\"rgb(46, 90, 148)\",height:\"100%\",id:\"YwtvAr2zf\",kkneNr6XY:12,l0hw1garg:\"PLC Integration\",layoutId:\"YwtvAr2zf\",style:{width:\"100%\"},UvahNivIK:\"rgb(37, 53, 71)\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:19,width:\"256px\",...addPropertyOverrides({TUz4MGnBK:{y:(componentViewport?.y||0)+9+306+0+0+0+43.4+0+0+0+93}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1is9m13-container\",layoutDependency:layoutDependency,layoutId:\"jc470B_A1-container\",nodeId:\"jc470B_A1\",rendersWithMotion:true,scopeId:\"eB84KWUf8\",children:/*#__PURE__*/_jsx(BulletPoint2,{eJA1D3mLK:\"rgb(46, 90, 148)\",height:\"100%\",id:\"jc470B_A1\",kkneNr6XY:12,l0hw1garg:\"Edge Computing\",layoutId:\"jc470B_A1\",style:{width:\"100%\"},UvahNivIK:\"rgb(37, 53, 71)\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10uxh1b\",\"data-framer-name\":\"Feature List\",layoutDependency:layoutDependency,layoutId:\"u291_Alkx\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:19,...addPropertyOverrides({TUz4MGnBK:{width:`calc(${componentViewport?.width||\"100vw\"} - 42px)`,y:(componentViewport?.y||0)+9+306+0+0+0+43.4+0+122+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-gmxqkw-container\",layoutDependency:layoutDependency,layoutId:\"zNDcsm7E6-container\",nodeId:\"zNDcsm7E6\",rendersWithMotion:true,scopeId:\"eB84KWUf8\",children:/*#__PURE__*/_jsx(BulletPoint2,{eJA1D3mLK:\"rgb(46, 90, 148)\",height:\"100%\",id:\"zNDcsm7E6\",kkneNr6XY:12,l0hw1garg:\"Connect to Existing Cameras or Add Additional Cameras\",layoutId:\"zNDcsm7E6\",style:{width:\"100%\"},UvahNivIK:\"rgb(37, 53, 71)\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:19,...addPropertyOverrides({TUz4MGnBK:{width:`calc(${componentViewport?.width||\"100vw\"} - 42px)`,y:(componentViewport?.y||0)+9+306+0+0+0+43.4+0+122+0+31}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1wnuc6r-container\",layoutDependency:layoutDependency,layoutId:\"MI4B9xGew-container\",nodeId:\"MI4B9xGew\",rendersWithMotion:true,scopeId:\"eB84KWUf8\",children:/*#__PURE__*/_jsx(BulletPoint2,{eJA1D3mLK:\"rgb(46, 90, 148)\",height:\"100%\",id:\"MI4B9xGew\",kkneNr6XY:12,l0hw1garg:\"Remotely Build & Manage Quality Inspection Algorithms\",layoutId:\"MI4B9xGew\",style:{width:\"100%\"},UvahNivIK:\"rgb(37, 53, 71)\",width:\"100%\"})})})]})]})]})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-QfErX.framer-104ls16, .framer-QfErX .framer-104ls16 { display: block; }\",\".framer-QfErX.framer-1n5sier { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 9px; position: relative; width: 1060px; }\",\".framer-QfErX .framer-rcb4xm { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: 390px; justify-content: flex-start; overflow: visible; padding: 10px; position: relative; width: 1px; }\",\".framer-QfErX .framer-1wtozyz, .framer-QfErX .framer-z97kmv { flex: 1 0 0px; height: 1px; overflow: visible; position: relative; width: 100%; }\",\".framer-QfErX .framer-1qur3mm { flex: 1 0 0px; height: 1px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-QfErX .framer-1i1wege { aspect-ratio: 1.843450479233227 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 234px); left: 50%; overflow: visible; position: absolute; top: 50%; width: 93%; }\",\".framer-QfErX .framer-j1oeh9 { flex: none; height: 262px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-QfErX .framer-b43cj1 { aspect-ratio: 1.3435114503816794 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 219px); left: 50%; overflow: visible; position: absolute; top: 50%; width: 304px; }\",\".framer-QfErX .framer-lu0zx2 { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: auto; justify-content: center; overflow: visible; padding: 24px 48px 24px 0px; position: relative; width: 1px; }\",\".framer-QfErX .framer-1gs77n6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 35px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-QfErX .framer-bo5ewj { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-QfErX .framer-vesj5d { 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: 0px; position: relative; width: 100%; }\",\".framer-QfErX .framer-63fw95, .framer-QfErX .framer-1ru6rlh, .framer-QfErX .framer-17g2xz3 { 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: min-content; }\",\".framer-QfErX .framer-bfw1bz-container, .framer-QfErX .framer-1147e48-container, .framer-QfErX .framer-dacrtg-container, .framer-QfErX .framer-v69k0w-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-QfErX .framer-14so8qh { 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-QfErX .framer-1m2ylf0-container, .framer-QfErX .framer-1cabx34-container, .framer-QfErX .framer-1toc251-container, .framer-QfErX .framer-17j5ukb-container, .framer-QfErX .framer-m31l3m-container, .framer-QfErX .framer-1umy7nq-container, .framer-QfErX .framer-gmxqkw-container, .framer-QfErX .framer-1wnuc6r-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-QfErX .framer-hqcz1f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-QfErX .framer-wx851j { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-QfErX .framer-4bmx1u-container { cursor: pointer; flex: none; height: auto; position: relative; width: auto; }\",\".framer-QfErX .framer-im992g, .framer-QfErX .framer-mf049u { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-QfErX .framer-ui03xy-container, .framer-QfErX .framer-dnd2wt-container, .framer-QfErX .framer-1vychd9-container, .framer-QfErX .framer-tmwx5v-container, .framer-QfErX .framer-w8w7yh-container, .framer-QfErX .framer-he49e0-container, .framer-QfErX .framer-wsjnbp-container, .framer-QfErX .framer-1is9m13-container { flex: none; height: auto; position: relative; width: 256px; }\",\".framer-QfErX .framer-1wi7n39, .framer-QfErX .framer-10uxh1b { 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: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-QfErX.framer-1n5sier, .framer-QfErX .framer-rcb4xm, .framer-QfErX .framer-lu0zx2, .framer-QfErX .framer-1gs77n6, .framer-QfErX .framer-vesj5d, .framer-QfErX .framer-63fw95, .framer-QfErX .framer-14so8qh, .framer-QfErX .framer-wx851j, .framer-QfErX .framer-im992g, .framer-QfErX .framer-1ru6rlh, .framer-QfErX .framer-1wi7n39, .framer-QfErX .framer-mf049u, .framer-QfErX .framer-17g2xz3, .framer-QfErX .framer-10uxh1b { gap: 0px; } .framer-QfErX.framer-1n5sier > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-QfErX.framer-1n5sier > :first-child, .framer-QfErX .framer-vesj5d > :first-child, .framer-QfErX .framer-wx851j > :first-child { margin-left: 0px; } .framer-QfErX.framer-1n5sier > :last-child, .framer-QfErX .framer-vesj5d > :last-child, .framer-QfErX .framer-wx851j > :last-child { margin-right: 0px; } .framer-QfErX .framer-rcb4xm > *, .framer-QfErX .framer-lu0zx2 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-QfErX .framer-rcb4xm > :first-child, .framer-QfErX .framer-lu0zx2 > :first-child, .framer-QfErX .framer-1gs77n6 > :first-child, .framer-QfErX .framer-63fw95 > :first-child, .framer-QfErX .framer-14so8qh > :first-child, .framer-QfErX .framer-im992g > :first-child, .framer-QfErX .framer-1ru6rlh > :first-child, .framer-QfErX .framer-1wi7n39 > :first-child, .framer-QfErX .framer-mf049u > :first-child, .framer-QfErX .framer-17g2xz3 > :first-child, .framer-QfErX .framer-10uxh1b > :first-child { margin-top: 0px; } .framer-QfErX .framer-rcb4xm > :last-child, .framer-QfErX .framer-lu0zx2 > :last-child, .framer-QfErX .framer-1gs77n6 > :last-child, .framer-QfErX .framer-63fw95 > :last-child, .framer-QfErX .framer-14so8qh > :last-child, .framer-QfErX .framer-im992g > :last-child, .framer-QfErX .framer-1ru6rlh > :last-child, .framer-QfErX .framer-1wi7n39 > :last-child, .framer-QfErX .framer-mf049u > :last-child, .framer-QfErX .framer-17g2xz3 > :last-child, .framer-QfErX .framer-10uxh1b > :last-child { margin-bottom: 0px; } .framer-QfErX .framer-1gs77n6 > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } .framer-QfErX .framer-vesj5d > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-QfErX .framer-63fw95 > *, .framer-QfErX .framer-14so8qh > *, .framer-QfErX .framer-1ru6rlh > *, .framer-QfErX .framer-1wi7n39 > *, .framer-QfErX .framer-17g2xz3 > *, .framer-QfErX .framer-10uxh1b > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-QfErX .framer-wx851j > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-QfErX .framer-im992g > *, .framer-QfErX .framer-mf049u > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-QfErX.framer-v-a39grc.framer-1n5sier, .framer-QfErX.framer-v-1orcg1w.framer-1n5sier { width: 800px; }\",\".framer-QfErX.framer-v-a39grc .framer-rcb4xm, .framer-QfErX.framer-v-1orcg1w .framer-rcb4xm { align-self: stretch; height: auto; }\",\".framer-QfErX.framer-v-a39grc .framer-1i1wege { height: var(--framer-aspect-ratio-supported, 174px); }\",\".framer-QfErX.framer-v-a39grc .framer-lu0zx2, .framer-QfErX.framer-v-1orcg1w .framer-lu0zx2 { align-self: unset; height: min-content; padding: var(--1qyuynl); }\",\".framer-QfErX.framer-v-a39grc .framer-vesj5d, .framer-QfErX.framer-v-1g4v7zo .framer-vesj5d { align-content: flex-start; align-items: flex-start; flex-direction: column; }\",\".framer-QfErX.framer-v-a39grc .framer-bfw1bz-container, .framer-QfErX.framer-v-a39grc .framer-dacrtg-container, .framer-QfErX.framer-v-a39grc .framer-v69k0w-container, .framer-QfErX.framer-v-1g4v7zo .framer-bfw1bz-container, .framer-QfErX.framer-v-1g4v7zo .framer-dacrtg-container, .framer-QfErX.framer-v-1g4v7zo .framer-v69k0w-container { align-self: stretch; }\",\".framer-QfErX.framer-v-a39grc .framer-14so8qh, .framer-QfErX.framer-v-1g4v7zo .framer-14so8qh { flex: none; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-QfErX.framer-v-a39grc .framer-vesj5d { gap: 0px; } .framer-QfErX.framer-v-a39grc .framer-vesj5d > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-QfErX.framer-v-a39grc .framer-vesj5d > :first-child { margin-top: 0px; } .framer-QfErX.framer-v-a39grc .framer-vesj5d > :last-child { margin-bottom: 0px; } }\",\".framer-QfErX.framer-v-1g4v7zo.framer-1n5sier, .framer-QfErX.framer-v-12f5v07.framer-1n5sier { flex-direction: column; gap: 24px; width: 390px; }\",\".framer-QfErX.framer-v-1g4v7zo .framer-rcb4xm, .framer-QfErX.framer-v-12f5v07 .framer-rcb4xm { flex: none; height: min-content; width: 100%; }\",\".framer-QfErX.framer-v-1g4v7zo .framer-1qur3mm { flex: none; height: 262px; }\",\".framer-QfErX.framer-v-1g4v7zo .framer-1i1wege { height: var(--framer-aspect-ratio-supported, 182px); width: 95%; }\",\".framer-QfErX.framer-v-1g4v7zo .framer-lu0zx2, .framer-QfErX.framer-v-12f5v07 .framer-lu0zx2 { align-self: unset; flex: none; height: min-content; padding: 0px 12px 20px 12px; width: 100%; }\",\".framer-QfErX.framer-v-1g4v7zo .framer-1gs77n6, .framer-QfErX.framer-v-12f5v07 .framer-1gs77n6 { gap: 20px; }\",\".framer-QfErX.framer-v-1g4v7zo .framer-wx851j, .framer-QfErX.framer-v-12f5v07 .framer-wx851j { justify-content: flex-start; padding: 10px 0px 0px 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-QfErX.framer-v-1g4v7zo.framer-1n5sier, .framer-QfErX.framer-v-1g4v7zo .framer-1gs77n6, .framer-QfErX.framer-v-1g4v7zo .framer-vesj5d { gap: 0px; } .framer-QfErX.framer-v-1g4v7zo.framer-1n5sier > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-QfErX.framer-v-1g4v7zo.framer-1n5sier > :first-child, .framer-QfErX.framer-v-1g4v7zo .framer-1gs77n6 > :first-child, .framer-QfErX.framer-v-1g4v7zo .framer-vesj5d > :first-child { margin-top: 0px; } .framer-QfErX.framer-v-1g4v7zo.framer-1n5sier > :last-child, .framer-QfErX.framer-v-1g4v7zo .framer-1gs77n6 > :last-child, .framer-QfErX.framer-v-1g4v7zo .framer-vesj5d > :last-child { margin-bottom: 0px; } .framer-QfErX.framer-v-1g4v7zo .framer-1gs77n6 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-QfErX.framer-v-1g4v7zo .framer-vesj5d > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-QfErX.framer-v-1d2rhkt .framer-vesj5d { align-content: flex-start; align-items: flex-start; }\",\".framer-QfErX.framer-v-1d2rhkt .framer-bfw1bz-container { order: 0; width: 256px; }\",\".framer-QfErX.framer-v-1d2rhkt .framer-1147e48-container { order: 1; width: 256px; }\",\".framer-QfErX.framer-v-1d2rhkt .framer-dacrtg-container { order: 2; width: 256px; }\",\".framer-QfErX.framer-v-1d2rhkt .framer-v69k0w-container { order: 3; width: 256px; }\",\".framer-QfErX.framer-v-1orcg1w .framer-bo5ewj, .framer-QfErX.framer-v-12f5v07 .framer-bo5ewj { order: 0; }\",\".framer-QfErX.framer-v-1orcg1w .framer-hqcz1f, .framer-QfErX.framer-v-12f5v07 .framer-j1oeh9, .framer-QfErX.framer-v-12f5v07 .framer-hqcz1f { order: 4; }\",\".framer-QfErX.framer-v-1orcg1w .framer-im992g { order: 3; }\",\".framer-QfErX.framer-v-12f5v07 .framer-b43cj1 { height: var(--framer-aspect-ratio-supported, 226px); }\",\".framer-QfErX.framer-v-12f5v07 .framer-mf049u { order: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-QfErX.framer-v-12f5v07.framer-1n5sier, .framer-QfErX.framer-v-12f5v07 .framer-1gs77n6 { gap: 0px; } .framer-QfErX.framer-v-12f5v07.framer-1n5sier > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-QfErX.framer-v-12f5v07.framer-1n5sier > :first-child, .framer-QfErX.framer-v-12f5v07 .framer-1gs77n6 > :first-child { margin-top: 0px; } .framer-QfErX.framer-v-12f5v07.framer-1n5sier > :last-child, .framer-QfErX.framer-v-12f5v07 .framer-1gs77n6 > :last-child { margin-bottom: 0px; } .framer-QfErX.framer-v-12f5v07 .framer-1gs77n6 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 408\n * @framerIntrinsicWidth 1060\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"r4KhFPXkW\":{\"layout\":[\"fixed\",\"auto\"]},\"Om1GKyMYK\":{\"layout\":[\"fixed\",\"auto\"]},\"pIm1FVfCg\":{\"layout\":[\"fixed\",\"auto\"]},\"sRMNcx9qk\":{\"layout\":[\"fixed\",\"auto\"]},\"TUz4MGnBK\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"Y2dCh1PjJ\":\"featuresPadding\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramereB84KWUf8=withCSS(Component,css,\"framer-QfErX\");export default FramereB84KWUf8;FramereB84KWUf8.displayName=\"Plan/Simple\";FramereB84KWUf8.defaultProps={height:408,width:1060};addPropertyControls(FramereB84KWUf8,{variant:{options:[\"pJOA9srfR\",\"r4KhFPXkW\",\"Om1GKyMYK\",\"pIm1FVfCg\",\"sRMNcx9qk\",\"TUz4MGnBK\"],optionTitles:[\"Desktop\",\"Ipad\",\"Mobile\",\"Variant 4\",\"Variant 5\",\"Variant 6\"],title:\"Variant\",type:ControlType.Enum},Y2dCh1PjJ:{defaultValue:\"24px 12px 24px 12px\",title:\"Features padding\",type:ControlType.Padding}});const variationAxes=[{defaultValue:400,maxValue:900,minValue:300,name:\"Weight\",tag:\"wght\"}];addFonts(FramereB84KWUf8,[{explicitInter:true,fonts:[{family:\"BDO Grotesk Variable\",source:\"custom\",url:\"https://framerusercontent.com/assets/mUeFl3gzhwtV73WbOCuVHPAIaOU.woff2\",variationAxes}]},...BulletPoint2Fonts,...Option1Fonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramereB84KWUf8\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"r4KhFPXkW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Om1GKyMYK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pIm1FVfCg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"sRMNcx9qk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TUz4MGnBK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1060\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"408\",\"framerVariables\":\"{\\\"Y2dCh1PjJ\\\":\\\"featuresPadding\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./eB84KWUf8.map", "// Generated by Framer (ab692b1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import PlanSimple from\"https://framerusercontent.com/modules/orgNXAzLMgri13joB0qN/IueheINDbkWMcOX6PauV/eB84KWUf8.js\";import Ss from\"https://framerusercontent.com/modules/Grcf3OdmgjDuh2myFrds/qpRbT2CFAsubcna1dCNE/iyaY1aNns.js\";const SsFonts=getFonts(Ss);const PlanSimpleFonts=getFonts(PlanSimple);const cycleOrder=[\"kMjm7RvXH\",\"IiDYk2Vbe\",\"Kvb4KhuoY\",\"yfGjx8Oy5\",\"hZP9KPGdk\",\"vpsQjGjxg\",\"OeoWA3vlt\",\"NnCAjkw5f\"];const serializationHash=\"framer-ZhCzl\";const variantClassNames={hZP9KPGdk:\"framer-v-1jdibjb\",IiDYk2Vbe:\"framer-v-1cohiwt\",kMjm7RvXH:\"framer-v-fd733t\",Kvb4KhuoY:\"framer-v-2kqxmx\",NnCAjkw5f:\"framer-v-hy4g9m\",OeoWA3vlt:\"framer-v-ktevxn\",vpsQjGjxg:\"framer-v-1m1y8wz\",yfGjx8Oy5:\"framer-v-1n7oiqv\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transition2={damping:70,delay:0,mass:.1,stiffness:470,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"phone Cloud\":\"Kvb4KhuoY\",\"phone edge\":\"yfGjx8Oy5\",\"Variant 1\":\"kMjm7RvXH\",\"Variant 2\":\"hZP9KPGdk\",\"Variant 4\":\"vpsQjGjxg\",\"Variant 7\":\"OeoWA3vlt\",\"Variant 8\":\"NnCAjkw5f\",ipad:\"IiDYk2Vbe\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"kMjm7RvXH\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"kMjm7RvXH\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"OeoWA3vlt\",\"NnCAjkw5f\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"OeoWA3vlt\",\"NnCAjkw5f\"].includes(baseVariant))return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({NnCAjkw5f:{value:transition2},OeoWA3vlt:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-fd733t\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"kMjm7RvXH\",ref:refBinding,style:{...style},...addPropertyOverrides({hZP9KPGdk:{\"data-framer-name\":\"Variant 2\"},IiDYk2Vbe:{\"data-framer-name\":\"ipad\"},Kvb4KhuoY:{\"data-framer-name\":\"phone Cloud\"},NnCAjkw5f:{\"data-framer-name\":\"Variant 8\"},OeoWA3vlt:{\"data-framer-name\":\"Variant 7\"},vpsQjGjxg:{\"data-framer-name\":\"Variant 4\"},yfGjx8Oy5:{\"data-framer-name\":\"phone edge\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-17m8y91\",layoutDependency:layoutDependency,layoutId:\"dj3pSbbE0\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({NnCAjkw5f:{height:225,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+5+(((componentViewport?.height||470)-10-460)/2+0+0)+0+0},OeoWA3vlt:{height:Math.max(0,(((componentViewport?.height||350)-10)*1-0-0)/1)*1,width:`max((${componentViewport?.width||\"100vw\"} - 10px) / 2, 1px)`,y:(componentViewport?.y||0)+(5+((componentViewport?.height||350)-10-((componentViewport?.height||350)-10)*1)/2)+0+((((componentViewport?.height||350)-10)*1-0-(Math.max(0,(((componentViewport?.height||350)-10)*1-0-0)/1)*1+0))/2+0+0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-xuhyze-container\",layoutDependency:layoutDependency,layoutId:\"CaSh3NZlu-container\",nodeId:\"CaSh3NZlu\",rendersWithMotion:true,scopeId:\"DeB1G79Gi\",children:/*#__PURE__*/_jsx(Ss,{height:\"100%\",id:\"CaSh3NZlu\",layoutId:\"CaSh3NZlu\",RTPrnvbCL:\"j7wk7r9IF\",style:{height:\"100%\",width:\"100%\"},variant:\"lTIERGtfj\",width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jdkzf3\",layoutDependency:layoutDependency,layoutId:\"Qlno3tFjc\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({NnCAjkw5f:{height:225,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+5+(((componentViewport?.height||470)-10-460)/2+225+10)+0+0},OeoWA3vlt:{height:Math.max(0,(((componentViewport?.height||350)-10)*1-0-0)/1)*1,width:`max((${componentViewport?.width||\"100vw\"} - 10px) / 2, 1px)`,y:(componentViewport?.y||0)+(5+((componentViewport?.height||350)-10-((componentViewport?.height||350)-10)*1)/2)+0+((((componentViewport?.height||350)-10)*1-0-(Math.max(0,(((componentViewport?.height||350)-10)*1-0-0)/1)*1+0))/2+0+0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-rzoyeo-container\",layoutDependency:layoutDependency,layoutId:\"NMb_pxeme-container\",nodeId:\"NMb_pxeme\",rendersWithMotion:true,scopeId:\"DeB1G79Gi\",children:/*#__PURE__*/_jsx(Ss,{height:\"100%\",id:\"NMb_pxeme\",layoutId:\"NMb_pxeme\",RTPrnvbCL:\"j7wk7r9IF\",style:{height:\"100%\",width:\"100%\"},variant:\"tVsUGhfWh\",width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ypeeq9\",\"data-framer-name\":\"Active Plan\",layoutDependency:layoutDependency,layoutId:\"UMV7KfuzC\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:408,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+5+(((componentViewport?.height||418)-10-408)/2+0+0)+0+0,...addPropertyOverrides({IiDYk2Vbe:{y:(componentViewport?.y||0)+5+(((componentViewport?.height||455.5)-10-408)/2+0+0)+0+0},Kvb4KhuoY:{y:(componentViewport?.y||0)+5+(((componentViewport?.height||802.5)-10-408)/2+0+0)+0+0},vpsQjGjxg:{y:(componentViewport?.y||0)+5+(((componentViewport?.height||431.5)-10-408)/2+0+0)+0+0},yfGjx8Oy5:{y:(componentViewport?.y||0)+5+(((componentViewport?.height||739.5)-10-408)/2+0+0)+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-vd1c0q-container\",layoutDependency:layoutDependency,layoutId:\"L8PMsDhTD-container\",nodeId:\"L8PMsDhTD\",rendersWithMotion:true,scopeId:\"DeB1G79Gi\",children:/*#__PURE__*/_jsx(PlanSimple,{height:\"100%\",id:\"L8PMsDhTD\",layoutId:\"L8PMsDhTD\",style:{width:\"100%\"},variant:\"pJOA9srfR\",width:\"100%\",Y2dCh1PjJ:\"24px 12px 24px 12px\",...addPropertyOverrides({hZP9KPGdk:{variant:\"pIm1FVfCg\"},IiDYk2Vbe:{variant:\"r4KhFPXkW\"},Kvb4KhuoY:{variant:\"Om1GKyMYK\"},vpsQjGjxg:{variant:\"sRMNcx9qk\"},yfGjx8Oy5:{variant:\"TUz4MGnBK\"}},baseVariant,gestureVariant)})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ZhCzl.framer-2fbnxu, .framer-ZhCzl .framer-2fbnxu { display: block; }\",\".framer-ZhCzl.framer-fd733t { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 5px 0px 5px 0px; position: relative; width: 1120px; }\",\".framer-ZhCzl .framer-17m8y91, .framer-ZhCzl .framer-1jdkzf3 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ZhCzl .framer-xuhyze-container, .framer-ZhCzl .framer-rzoyeo-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-ZhCzl .framer-1ypeeq9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ZhCzl .framer-vd1c0q-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ZhCzl.framer-fd733t, .framer-ZhCzl .framer-17m8y91, .framer-ZhCzl .framer-1jdkzf3, .framer-ZhCzl .framer-1ypeeq9 { gap: 0px; } .framer-ZhCzl.framer-fd733t > *, .framer-ZhCzl .framer-17m8y91 > *, .framer-ZhCzl .framer-1jdkzf3 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-ZhCzl.framer-fd733t > :first-child, .framer-ZhCzl .framer-17m8y91 > :first-child, .framer-ZhCzl .framer-1jdkzf3 > :first-child, .framer-ZhCzl .framer-1ypeeq9 > :first-child { margin-top: 0px; } .framer-ZhCzl.framer-fd733t > :last-child, .framer-ZhCzl .framer-17m8y91 > :last-child, .framer-ZhCzl .framer-1jdkzf3 > :last-child, .framer-ZhCzl .framer-1ypeeq9 > :last-child { margin-bottom: 0px; } .framer-ZhCzl .framer-1ypeeq9 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-ZhCzl.framer-v-1cohiwt.framer-fd733t, .framer-ZhCzl.framer-v-1m1y8wz.framer-fd733t { width: 770px; }\",\".framer-ZhCzl.framer-v-2kqxmx.framer-fd733t, .framer-ZhCzl.framer-v-1n7oiqv.framer-fd733t { width: 270px; }\",\".framer-ZhCzl.framer-v-ktevxn.framer-fd733t { flex-direction: row; height: 350px; }\",\".framer-ZhCzl.framer-v-ktevxn .framer-17m8y91, .framer-ZhCzl.framer-v-ktevxn .framer-1jdkzf3 { height: 100%; width: 1px; }\",\".framer-ZhCzl.framer-v-ktevxn .framer-xuhyze-container, .framer-ZhCzl.framer-v-ktevxn .framer-rzoyeo-container, .framer-ZhCzl.framer-v-hy4g9m .framer-xuhyze-container, .framer-ZhCzl.framer-v-hy4g9m .framer-rzoyeo-container { order: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ZhCzl.framer-v-ktevxn.framer-fd733t { gap: 0px; } .framer-ZhCzl.framer-v-ktevxn.framer-fd733t > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-ZhCzl.framer-v-ktevxn.framer-fd733t > :first-child { margin-left: 0px; } .framer-ZhCzl.framer-v-ktevxn.framer-fd733t > :last-child { margin-right: 0px; } }\",\".framer-ZhCzl.framer-v-hy4g9m .framer-17m8y91, .framer-ZhCzl.framer-v-hy4g9m .framer-1jdkzf3 { flex: none; height: 225px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 418\n * @framerIntrinsicWidth 1120\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"IiDYk2Vbe\":{\"layout\":[\"fixed\",\"auto\"]},\"Kvb4KhuoY\":{\"layout\":[\"fixed\",\"auto\"]},\"yfGjx8Oy5\":{\"layout\":[\"fixed\",\"auto\"]},\"hZP9KPGdk\":{\"layout\":[\"fixed\",\"auto\"]},\"vpsQjGjxg\":{\"layout\":[\"fixed\",\"auto\"]},\"OeoWA3vlt\":{\"layout\":[\"fixed\",\"fixed\"]},\"NnCAjkw5f\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerDeB1G79Gi=withCSS(Component,css,\"framer-ZhCzl\");export default FramerDeB1G79Gi;FramerDeB1G79Gi.displayName=\"sds\";FramerDeB1G79Gi.defaultProps={height:418,width:1120};addPropertyControls(FramerDeB1G79Gi,{variant:{options:[\"kMjm7RvXH\",\"IiDYk2Vbe\",\"Kvb4KhuoY\",\"yfGjx8Oy5\",\"hZP9KPGdk\",\"vpsQjGjxg\",\"OeoWA3vlt\",\"NnCAjkw5f\"],optionTitles:[\"Variant 1\",\"ipad\",\"phone Cloud\",\"phone edge\",\"Variant 2\",\"Variant 4\",\"Variant 7\",\"Variant 8\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerDeB1G79Gi,[{explicitInter:true,fonts:[]},...SsFonts,...PlanSimpleFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerDeB1G79Gi\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"418\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1120\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IiDYk2Vbe\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Kvb4KhuoY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"yfGjx8Oy5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hZP9KPGdk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vpsQjGjxg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"OeoWA3vlt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"NnCAjkw5f\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (9f1494d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"jbsuy_KlY\",\"BMO56Foqy\",\"sWyvjFylu\",\"fMYWU8N10\",\"g2YUq4ySq\"];const serializationHash=\"framer-1xFYs\";const variantClassNames={BMO56Foqy:\"framer-v-1u3wiis\",fMYWU8N10:\"framer-v-12nklr8\",g2YUq4ySq:\"framer-v-1rolyfw\",jbsuy_KlY:\"framer-v-bcgbl8\",sWyvjFylu:\"framer-v-15gkyia\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const transition2={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.03,skewX:0,skewY:0,transition:transition2};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"jbsuy_KlY\",\"Variant 2\":\"BMO56Foqy\",\"Variant 3\":\"sWyvjFylu\",\"Variant 4\":\"fMYWU8N10\",\"Variant 5\":\"g2YUq4ySq\"};const getProps=({height,id,link,link2,mouseEnter2,width,...props})=>{return{...props,fb11_Ntt8:link??props.fb11_Ntt8,mIY8w8Wh7:link2??props.mIY8w8Wh7,variant:humanReadableVariantMap[props.variant]??props.variant??\"jbsuy_KlY\",VUK6DAE9Z:mouseEnter2??props.VUK6DAE9Z};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,fb11_Ntt8,VUK6DAE9Z,mIY8w8Wh7,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"jbsuy_KlY\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter1awxbi3=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});if(VUK6DAE9Z){const res=await VUK6DAE9Z(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"sWyvjFylu\",\"g2YUq4ySq\"].includes(baseVariant))return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{motionChild:true,nodeId:\"jbsuy_KlY\",scopeId:\"l1KEtCO7J\",...addPropertyOverrides({BMO56Foqy:{href:fb11_Ntt8,smoothScroll:true},fMYWU8N10:{href:mIY8w8Wh7,smoothScroll:true},g2YUq4ySq:{href:fb11_Ntt8,smoothScroll:true},sWyvjFylu:{href:mIY8w8Wh7,smoothScroll:true}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-bcgbl8\",className,classNames)} framer-go8bue`,\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"jbsuy_KlY\",onMouseEnter:onMouseEnter1awxbi3,ref:refBinding,style:{...style},...addPropertyOverrides({BMO56Foqy:{\"data-framer-name\":\"Variant 2\"},fMYWU8N10:{\"data-framer-name\":\"Variant 4\"},g2YUq4ySq:{\"data-framer-name\":\"Variant 5\"},sWyvjFylu:{\"data-framer-name\":\"Variant 3\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1t4r2vf\",\"data-framer-name\":\"BUTTON\",layoutDependency:layoutDependency,layoutId:\"tdgofaW7Q\",whileHover:animation,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0JETyBHcm90ZXNrIExpZ2h0\",\"--framer-font-family\":'\"BDO Grotesk Light\", \"BDO Grotesk Light Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"Q1VTVE9NO0JETyBHcm90ZXNrIFZhcmlhYmxlVkY9SW5kbmFIUWlJRFl3TUE9PQ==\",\"--framer-font-family\":'\"BDO Grotesk Variable\", \"BDO Grotesk Placeholder\", sans-serif',\"--framer-font-variation-axes\":'var(--extracted-1asg273, \"wght\" 600)'},children:\"One\"}),/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"Q1VTVE9NO0JETyBHcm90ZXNrIFZhcmlhYmxlVkY9SW5kbmFIUWlJRE13TUE9PQ==\",\"--framer-font-family\":'\"BDO Grotesk Variable\", \"BDO Grotesk Placeholder\", sans-serif',\"--framer-font-variation-axes\":'var(--extracted-1kmg1v0, \"wght\" 300)'},children:\"View\"}),/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"Q1VTVE9NO0JETyBHcm90ZXNrIFZhcmlhYmxlVkY9SW5kbmFIUWlJRE0xTUE9PQ==\",\"--framer-font-family\":'\"BDO Grotesk Variable\", \"BDO Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-variation-axes\":'var(--extracted-mqncu7, \"wght\" 350)'},children:\" \"}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"17px\"},children:\"| \"}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-stroke-color\":\"var(--extracted-12e2oek, rgba(34, 57, 135, 0))\",\"--framer-text-stroke-width\":\"var(--extracted-f9yy3g, 0.1px)\"},children:\"Cloud\"})]})}),className:\"framer-qhjtba\",fonts:[\"CUSTOM;BDO Grotesk Light\",\"CUSTOM;BDO Grotesk Variable\"],layoutDependency:layoutDependency,layoutId:\"ciLMWBavH\",style:{\"--extracted-12e2oek\":\"rgba(34, 57, 135, 0)\",\"--extracted-1asg273\":'\"wght\" 600',\"--extracted-1kmg1v0\":'\"wght\" 300',\"--extracted-f9yy3g\":\"0.1px\",\"--extracted-mqncu7\":'\"wght\" 350',\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{fMYWU8N10:{\"--extracted-1ds9zyo\":\"initial\",\"--extracted-1kkmzbh\":\"0.1px\",\"--extracted-1nvstw5\":\"rgba(34, 57, 135, 0)\",\"--extracted-1yf6oqw\":\"initial\",\"--extracted-bh295w\":\"initial\",\"--extracted-eeaftq\":\"initial\",\"--extracted-rnhglu\":\"initial\",\"--extracted-sl7bqp\":\"initial\"},sWyvjFylu:{\"--extracted-1ds9zyo\":\"initial\",\"--extracted-1kkmzbh\":\"0.1px\",\"--extracted-1nvstw5\":\"rgba(34, 57, 135, 0)\",\"--extracted-1yf6oqw\":\"initial\",\"--extracted-bh295w\":\"initial\",\"--extracted-eeaftq\":\"initial\",\"--extracted-rnhglu\":\"initial\",\"--extracted-sl7bqp\":\"initial\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({fMYWU8N10:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0JETyBHcm90ZXNrIExpZ2h0\",\"--framer-font-family\":'\"BDO Grotesk Light\", \"BDO Grotesk Light Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",\"--framer-text-stroke-color\":\"var(--extracted-1nvstw5, rgba(34, 57, 135, 0))\",\"--framer-text-stroke-width\":\"var(--extracted-1kkmzbh, 0.1px)\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"Q1VTVE9NO0JETyBHcm90ZXNrIFZhcmlhYmxlVkY9SW5kbmFIUWlJRFl3TUE9PQ==\",\"--framer-font-family\":'\"BDO Grotesk Variable\", \"BDO Grotesk Placeholder\", sans-serif',\"--framer-font-variation-axes\":'var(--extracted-1asg273, \"wght\" 600)',\"--framer-text-stroke-color\":\"var(--extracted-1ds9zyo, initial)\",\"--framer-text-stroke-width\":\"var(--extracted-bh295w, initial)\"},children:\"One\"}),/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"Q1VTVE9NO0JETyBHcm90ZXNrIFZhcmlhYmxlVkY9SW5kbmFIUWlJRE13TUE9PQ==\",\"--framer-font-family\":'\"BDO Grotesk Variable\", \"BDO Grotesk Placeholder\", sans-serif',\"--framer-font-variation-axes\":'var(--extracted-1kmg1v0, \"wght\" 300)',\"--framer-text-stroke-color\":\"var(--extracted-rnhglu, initial)\",\"--framer-text-stroke-width\":\"var(--extracted-sl7bqp, initial)\"},children:\"View\"}),/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"Q1VTVE9NO0JETyBHcm90ZXNrIFZhcmlhYmxlVkY9SW5kbmFIUWlJRE0xTUE9PQ==\",\"--framer-font-family\":'\"BDO Grotesk Variable\", \"BDO Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-variation-axes\":'var(--extracted-mqncu7, \"wght\" 350)',\"--framer-text-stroke-color\":\"var(--extracted-1yf6oqw, initial)\",\"--framer-text-stroke-width\":\"var(--extracted-eeaftq, initial)\"},children:\" | \"}),\"Cloud + Edge\"]})})},sWyvjFylu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0JETyBHcm90ZXNrIExpZ2h0\",\"--framer-font-family\":'\"BDO Grotesk Light\", \"BDO Grotesk Light Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",\"--framer-text-stroke-color\":\"var(--extracted-1nvstw5, rgba(34, 57, 135, 0))\",\"--framer-text-stroke-width\":\"var(--extracted-1kkmzbh, 0.1px)\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"Q1VTVE9NO0JETyBHcm90ZXNrIFZhcmlhYmxlVkY9SW5kbmFIUWlJRFl3TUE9PQ==\",\"--framer-font-family\":'\"BDO Grotesk Variable\", \"BDO Grotesk Placeholder\", sans-serif',\"--framer-font-variation-axes\":'var(--extracted-1asg273, \"wght\" 600)',\"--framer-text-stroke-color\":\"var(--extracted-1ds9zyo, initial)\",\"--framer-text-stroke-width\":\"var(--extracted-bh295w, initial)\"},children:\"One\"}),/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"Q1VTVE9NO0JETyBHcm90ZXNrIFZhcmlhYmxlVkY9SW5kbmFIUWlJRE13TUE9PQ==\",\"--framer-font-family\":'\"BDO Grotesk Variable\", \"BDO Grotesk Placeholder\", sans-serif',\"--framer-font-variation-axes\":'var(--extracted-1kmg1v0, \"wght\" 300)',\"--framer-text-stroke-color\":\"var(--extracted-rnhglu, initial)\",\"--framer-text-stroke-width\":\"var(--extracted-sl7bqp, initial)\"},children:\"View\"}),/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"Q1VTVE9NO0JETyBHcm90ZXNrIFZhcmlhYmxlVkY9SW5kbmFIUWlJRE0xTUE9PQ==\",\"--framer-font-family\":'\"BDO Grotesk Variable\", \"BDO Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-variation-axes\":'var(--extracted-mqncu7, \"wght\" 350)',\"--framer-text-stroke-color\":\"var(--extracted-1yf6oqw, initial)\",\"--framer-text-stroke-width\":\"var(--extracted-eeaftq, initial)\"},children:\" | \"}),\"Cloud + Edge\"]})})}},baseVariant,gestureVariant)})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-gt1mgr\",layoutDependency:layoutDependency,layoutId:\"A5EP8zucK\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cx6xjy\",layoutDependency:layoutDependency,layoutId:\"pzf1HyY1h\",style:{backgroundColor:\"rgb(255, 255, 255)\"}})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-1xFYs.framer-go8bue, .framer-1xFYs .framer-go8bue { display: block; }\",\".framer-1xFYs.framer-bcgbl8 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-1xFYs .framer-1t4r2vf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 6px 0px 6px; position: relative; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-1xFYs .framer-qhjtba { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-1xFYs .framer-gt1mgr { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: auto; }\",\".framer-1xFYs .framer-1cx6xjy { flex: none; height: 2px; overflow: hidden; position: relative; width: 1%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-1xFYs.framer-bcgbl8, .framer-1xFYs .framer-1t4r2vf, .framer-1xFYs .framer-gt1mgr { gap: 0px; } .framer-1xFYs.framer-bcgbl8 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-1xFYs.framer-bcgbl8 > :first-child { margin-top: 0px; } .framer-1xFYs.framer-bcgbl8 > :last-child { margin-bottom: 0px; } .framer-1xFYs .framer-1t4r2vf > * { margin: 0px; margin-left: calc(3px / 2); margin-right: calc(3px / 2); } .framer-1xFYs .framer-1t4r2vf > :first-child, .framer-1xFYs .framer-gt1mgr > :first-child { margin-left: 0px; } .framer-1xFYs .framer-1t4r2vf > :last-child, .framer-1xFYs .framer-gt1mgr > :last-child { margin-right: 0px; } .framer-1xFYs .framer-gt1mgr > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-1xFYs.framer-v-1u3wiis.framer-bcgbl8, .framer-1xFYs.framer-v-15gkyia.framer-bcgbl8, .framer-1xFYs.framer-v-12nklr8.framer-bcgbl8, .framer-1xFYs.framer-v-1rolyfw.framer-bcgbl8 { text-decoration: none; }\",\".framer-1xFYs.framer-v-1u3wiis .framer-1cx6xjy { height: 100%; width: 100%; }\",\".framer-1xFYs.framer-v-12nklr8 .framer-1cx6xjy { width: 100%; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 25\n * @framerIntrinsicWidth 130\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"BMO56Foqy\":{\"layout\":[\"auto\",\"auto\"]},\"sWyvjFylu\":{\"layout\":[\"auto\",\"auto\"]},\"fMYWU8N10\":{\"layout\":[\"auto\",\"auto\"]},\"g2YUq4ySq\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"fb11_Ntt8\":\"link\",\"VUK6DAE9Z\":\"mouseEnter2\",\"mIY8w8Wh7\":\"link2\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerl1KEtCO7J=withCSS(Component,css,\"framer-1xFYs\");export default Framerl1KEtCO7J;Framerl1KEtCO7J.displayName=\"SS\";Framerl1KEtCO7J.defaultProps={height:25,width:130};addPropertyControls(Framerl1KEtCO7J,{variant:{options:[\"jbsuy_KlY\",\"BMO56Foqy\",\"sWyvjFylu\",\"fMYWU8N10\",\"g2YUq4ySq\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 4\",\"Variant 5\"],title:\"Variant\",type:ControlType.Enum},fb11_Ntt8:{title:\"Link\",type:ControlType.Link},VUK6DAE9Z:{title:\"Mouse Enter 2\",type:ControlType.EventHandler},mIY8w8Wh7:{title:\"Link 2\",type:ControlType.Link}});const variationAxes=[{defaultValue:400,maxValue:900,minValue:300,name:\"Weight\",tag:\"wght\"}];addFonts(Framerl1KEtCO7J,[{explicitInter:true,fonts:[{family:\"BDO Grotesk Light\",source:\"custom\",url:\"https://framerusercontent.com/assets/1ckXMZu4uTz2dyYp9ZsjtNajnT4.woff2\"},{family:\"BDO Grotesk Variable\",source:\"custom\",url:\"https://framerusercontent.com/assets/mUeFl3gzhwtV73WbOCuVHPAIaOU.woff2\",variationAxes}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerl1KEtCO7J\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"fb11_Ntt8\\\":\\\"link\\\",\\\"VUK6DAE9Z\\\":\\\"mouseEnter2\\\",\\\"mIY8w8Wh7\\\":\\\"link2\\\"}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"25\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"BMO56Foqy\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"sWyvjFylu\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"fMYWU8N10\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"g2YUq4ySq\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"130\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./l1KEtCO7J.map", "// Generated by Framer (47ebf4a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,ResolveLinks,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Sds from\"https://framerusercontent.com/modules/kCmIXLZs3c0J809GpyXb/5GNqZ42aXDYUoCb1uoej/DeB1G79Gi.js\";import Ss from\"https://framerusercontent.com/modules/Grcf3OdmgjDuh2myFrds/qpRbT2CFAsubcna1dCNE/iyaY1aNns.js\";import SS from\"https://framerusercontent.com/modules/qkjqICsBh1I5kLAWAHnl/8zVzxyiXuKTKwXFtpXfw/l1KEtCO7J.js\";import Button2 from\"https://framerusercontent.com/modules/ZcF6NFnn20GD7EElh1vb/1wBCoPiMTaeh0Pjmn0gh/uM1g3nJW0.js\";const SSFonts=getFonts(SS);const SdsFonts=getFonts(Sds);const SsFonts=getFonts(Ss);const Button2Fonts=getFonts(Button2);const cycleOrder=[\"iEh7IokWE\",\"QiYW5RJpF\",\"EOXiOHKe8\",\"ESLOuBkMV\",\"fIkKiovJq\",\"LeC_8Xvte\",\"a57FcE31b\",\"OSLb6sG_f\",\"PioM9QH5e\"];const serializationHash=\"framer-byQ6z\";const variantClassNames={a57FcE31b:\"framer-v-j1adpf\",EOXiOHKe8:\"framer-v-crqrxu\",ESLOuBkMV:\"framer-v-1leuczp\",fIkKiovJq:\"framer-v-1k2zgvq\",iEh7IokWE:\"framer-v-d8v5kn\",LeC_8Xvte:\"framer-v-1hixr73\",OSLb6sG_f:\"framer-v-l2yvl9\",PioM9QH5e:\"framer-v-90bgcm\",QiYW5RJpF:\"framer-v-1f4thic\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const transition2={delay:0,duration:.7,ease:[.5,0,.88,.77],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"phone Cloud\":\"fIkKiovJq\",\"phone edge\":\"LeC_8Xvte\",\"Variant 1\":\"iEh7IokWE\",\"Variant 2\":\"QiYW5RJpF\",\"Variant 4\":\"ESLOuBkMV\",\"Variant 7\":\"a57FcE31b\",\"Variant 8\":\"OSLb6sG_f\",\"Variant 9\":\"PioM9QH5e\",ipad:\"EOXiOHKe8\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"iEh7IokWE\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"iEh7IokWE\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const VUK6DAE9Z1c72c24=activeVariantCallback(async(...args)=>{setVariant(\"iEh7IokWE\");});const VUK6DAE9Zyjjip4=activeVariantCallback(async(...args)=>{setVariant(\"EOXiOHKe8\");});const VUK6DAE9Zq9losl=activeVariantCallback(async(...args)=>{setVariant(\"fIkKiovJq\");});const VUK6DAE9Z19o3sey=activeVariantCallback(async(...args)=>{setVariant(\"QiYW5RJpF\");});const VUK6DAE9Z147xm94=activeVariantCallback(async(...args)=>{setVariant(\"ESLOuBkMV\");});const VUK6DAE9Zzjnebj=activeVariantCallback(async(...args)=>{setVariant(\"LeC_8Xvte\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"a57FcE31b\",\"OSLb6sG_f\",\"PioM9QH5e\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"a57FcE31b\",\"OSLb6sG_f\",\"PioM9QH5e\"].includes(baseVariant))return true;return false;};const router=useRouter();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({a57FcE31b:{value:transition2},OSLb6sG_f:{value:transition2},PioM9QH5e:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-d8v5kn\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"iEh7IokWE\",ref:refBinding,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",background:\"linear-gradient(125deg, rgb(101, 138, 158) 0%, rgb(26, 89, 138) 100%)\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5,...style},variants:{a57FcE31b:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(37, 53, 71)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"dashed\",\"--border-top-width\":\"1px\",background:\"linear-gradient(125deg, rgb(37, 53, 71) 0%, rgb(37, 53, 71) 100%)\",backgroundColor:\"rgb(37, 53, 71)\"},fIkKiovJq:{background:\"linear-gradient(180deg, rgb(64, 115, 153) 0%, rgb(54, 81, 102) 100%)\"},LeC_8Xvte:{background:\"linear-gradient(180deg, rgb(64, 129, 153) 0%, rgb(54, 81, 102) 100%)\"},OSLb6sG_f:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(37, 53, 71)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"dashed\",\"--border-top-width\":\"1px\",background:\"linear-gradient(125deg, rgb(37, 53, 71) 0%, rgb(37, 53, 71) 100%)\",backgroundColor:\"rgb(37, 53, 71)\"},PioM9QH5e:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(37, 53, 71)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"dashed\",\"--border-top-width\":\"1px\",background:\"linear-gradient(125deg, rgb(37, 53, 71) 0%, rgb(37, 53, 71) 100%)\",backgroundColor:\"rgb(37, 53, 71)\"},QiYW5RJpF:{background:\"linear-gradient(180deg, rgb(64, 129, 153) 0%, rgb(54, 81, 102) 100%)\"}},...addPropertyOverrides({a57FcE31b:{\"data-border\":true,\"data-framer-name\":\"Variant 7\"},EOXiOHKe8:{\"data-framer-name\":\"ipad\"},ESLOuBkMV:{\"data-framer-name\":\"Variant 4\"},fIkKiovJq:{\"data-framer-name\":\"phone Cloud\"},LeC_8Xvte:{\"data-framer-name\":\"phone edge\"},OSLb6sG_f:{\"data-border\":true,\"data-framer-name\":\"Variant 8\"},PioM9QH5e:{\"data-border\":true,\"data-framer-name\":\"Variant 9\"},QiYW5RJpF:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-100bxjf\",layoutDependency:layoutDependency,layoutId:\"yZgyIkEYl\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-x9wxdt\",layoutDependency:layoutDependency,layoutId:\"G_HCQndac\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-q23yrz\",layoutDependency:layoutDependency,layoutId:\"XxHrdnQA9\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1414tjw\",layoutDependency:layoutDependency,layoutId:\"YlLJ9VWUl\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:415,intrinsicWidth:2164,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+34+(((componentViewport?.height||726)-54-715.5)/2+0+0)+0+0+0+0+0+0+18+0),pixelHeight:844,pixelWidth:4403,sizes:\"318px\",src:\"https://framerusercontent.com/images/kh9GsCiJJpYA6pOuxUZOxiroI.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/kh9GsCiJJpYA6pOuxUZOxiroI.png?scale-down-to=512 512w,https://framerusercontent.com/images/kh9GsCiJJpYA6pOuxUZOxiroI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kh9GsCiJJpYA6pOuxUZOxiroI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/kh9GsCiJJpYA6pOuxUZOxiroI.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/kh9GsCiJJpYA6pOuxUZOxiroI.png 4403w\"},className:\"framer-7xl30t\",\"data-framer-name\":\"OneView\",layoutDependency:layoutDependency,layoutId:\"tkTUmNnoH\",...addPropertyOverrides({EOXiOHKe8:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:415,intrinsicWidth:2164,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+34+(((componentViewport?.height||758)-54-715.5)/2+0+0)+0+0+0+0+0+0+18+0),pixelHeight:844,pixelWidth:4403,sizes:\"318px\",src:\"https://framerusercontent.com/images/kh9GsCiJJpYA6pOuxUZOxiroI.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/kh9GsCiJJpYA6pOuxUZOxiroI.png?scale-down-to=512 512w,https://framerusercontent.com/images/kh9GsCiJJpYA6pOuxUZOxiroI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kh9GsCiJJpYA6pOuxUZOxiroI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/kh9GsCiJJpYA6pOuxUZOxiroI.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/kh9GsCiJJpYA6pOuxUZOxiroI.png 4403w\"}},ESLOuBkMV:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:415,intrinsicWidth:2164,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+34+(((componentViewport?.height||734)-54-715.5)/2+0+0)+0+0+0+0+0+0+18+0),pixelHeight:844,pixelWidth:4403,sizes:\"318px\",src:\"https://framerusercontent.com/images/kh9GsCiJJpYA6pOuxUZOxiroI.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/kh9GsCiJJpYA6pOuxUZOxiroI.png?scale-down-to=512 512w,https://framerusercontent.com/images/kh9GsCiJJpYA6pOuxUZOxiroI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kh9GsCiJJpYA6pOuxUZOxiroI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/kh9GsCiJJpYA6pOuxUZOxiroI.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/kh9GsCiJJpYA6pOuxUZOxiroI.png 4403w\"}},fIkKiovJq:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:415,intrinsicWidth:2164,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+34+(((componentViewport?.height||1048.5)-44-740)/2+0+0)+0+0+0+0+0+0+18+0),pixelHeight:844,pixelWidth:4403,sizes:\"210px\",src:\"https://framerusercontent.com/images/kh9GsCiJJpYA6pOuxUZOxiroI.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/kh9GsCiJJpYA6pOuxUZOxiroI.png?scale-down-to=512 512w,https://framerusercontent.com/images/kh9GsCiJJpYA6pOuxUZOxiroI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kh9GsCiJJpYA6pOuxUZOxiroI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/kh9GsCiJJpYA6pOuxUZOxiroI.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/kh9GsCiJJpYA6pOuxUZOxiroI.png 4403w\"}},LeC_8Xvte:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:415,intrinsicWidth:2164,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+34+(((componentViewport?.height||1024.5)-44-740)/2+0+0)+0+0+0+0+0+0+18+0),pixelHeight:844,pixelWidth:4403,sizes:\"210px\",src:\"https://framerusercontent.com/images/kh9GsCiJJpYA6pOuxUZOxiroI.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/kh9GsCiJJpYA6pOuxUZOxiroI.png?scale-down-to=512 512w,https://framerusercontent.com/images/kh9GsCiJJpYA6pOuxUZOxiroI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kh9GsCiJJpYA6pOuxUZOxiroI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/kh9GsCiJJpYA6pOuxUZOxiroI.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/kh9GsCiJJpYA6pOuxUZOxiroI.png 4403w\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0JETyBHcm90ZXNrIFZhcmlhYmxlVkY9SW5kbmFIUWlJRE0yTUE9PQ==\",\"--framer-font-family\":'\"BDO Grotesk Variable\", \"BDO Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-variation-axes\":'var(--extracted-2gg91v, \"wght\" 360)',\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.8))\",\"--framer-text-transform\":\"inherit\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"Q1VTVE9NO0JETyBHcm90ZXNrIFZhcmlhYmxlVkY9SW5kbmFIUWlJRFl3TUE9PQ==\",\"--framer-font-variation-axes\":'var(--extracted-1asg273, \"wght\" 600)'},children:\"One\"}),\"View eliminates tradeoffs in vision AI implementation, providing a complete end-to-end platform for design, deployment, monitoring, and management\u2014requiring no specialized expertise while transforming a high-risk, high-cost initiative into a scalable, value-driven solution.\"]})}),className:\"framer-1mwrz7e\",fonts:[\"CUSTOM;BDO Grotesk Variable\"],layoutDependency:layoutDependency,layoutId:\"bg10lx7px\",style:{\"--extracted-1asg273\":'\"wght\" 600',\"--extracted-2gg91v\":'\"wght\" 360',\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.8)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{fIkKiovJq:{\"--extracted-2gg91v\":'\"wght\" 350'},LeC_8Xvte:{\"--extracted-2gg91v\":'\"wght\" 350'}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({fIkKiovJq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0JETyBHcm90ZXNrIFZhcmlhYmxlVkY9SW5kbmFIUWlJRE0xTUE9PQ==\",\"--framer-font-family\":'\"BDO Grotesk Variable\", \"BDO Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-variation-axes\":'var(--extracted-2gg91v, \"wght\" 350)',\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.8))\",\"--framer-text-transform\":\"inherit\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"Q1VTVE9NO0JETyBHcm90ZXNrIFZhcmlhYmxlVkY9SW5kbmFIUWlJRFl3TUE9PQ==\",\"--framer-font-variation-axes\":'var(--extracted-1asg273, \"wght\" 600)'},children:\"One\"}),\"View eliminates tradeoffs in vision AI implementation, providing a complete end-to-end platform for design, deployment, monitoring, and management\u2014requiring no specialized expertise while transforming a high-risk, high-cost initiative into a scalable, value-driven solution.\"]})})},LeC_8Xvte:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0JETyBHcm90ZXNrIFZhcmlhYmxlVkY9SW5kbmFIUWlJRE0xTUE9PQ==\",\"--framer-font-family\":'\"BDO Grotesk Variable\", \"BDO Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-variation-axes\":'var(--extracted-2gg91v, \"wght\" 350)',\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.8))\",\"--framer-text-transform\":\"inherit\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"Q1VTVE9NO0JETyBHcm90ZXNrIFZhcmlhYmxlVkY9SW5kbmFIUWlJRFl3TUE9PQ==\",\"--framer-font-variation-axes\":'var(--extracted-1asg273, \"wght\" 600)'},children:\"One\"}),\"View eliminates tradeoffs in vision AI implementation, providing a complete end-to-end platform for design, deployment, monitoring, and management\u2014requiring no specialized expertise while transforming a high-risk, high-cost initiative into a scalable, value-driven solution.\"]})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18uzr22\",layoutDependency:layoutDependency,layoutId:\"RitUrBSRv\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:25,y:(componentViewport?.y||0)+34+(((componentViewport?.height||726)-54-715.5)/2+0+0)+0+0+0+226.5+13,...addPropertyOverrides({EOXiOHKe8:{y:(componentViewport?.y||0)+34+(((componentViewport?.height||758)-54-715.5)/2+0+0)+0+0+0+226.5+13},ESLOuBkMV:{y:(componentViewport?.y||0)+34+(((componentViewport?.height||734)-54-715.5)/2+0+0)+0+0+0+226.5+13},fIkKiovJq:{y:(componentViewport?.y||0)+34+(((componentViewport?.height||1048.5)-44-740)/2+0+0)+0+0+0+206+13+0},LeC_8Xvte:{y:(componentViewport?.y||0)+34+(((componentViewport?.height||1024.5)-44-740)/2+0+0)+0+0+0+206+13+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-13dswdi-container\",layoutDependency:layoutDependency,layoutId:\"Pr2H2QHOZ-container\",nodeId:\"Pr2H2QHOZ\",rendersWithMotion:true,scopeId:\"MC2iiD4Yn\",children:/*#__PURE__*/_jsx(SS,{height:\"100%\",id:\"Pr2H2QHOZ\",layoutId:\"Pr2H2QHOZ\",variant:\"BMO56Foqy\",width:\"100%\",...addPropertyOverrides({ESLOuBkMV:{variant:\"g2YUq4ySq\",VUK6DAE9Z:VUK6DAE9Zyjjip4},LeC_8Xvte:{variant:\"g2YUq4ySq\",VUK6DAE9Z:VUK6DAE9Zq9losl},QiYW5RJpF:{variant:\"g2YUq4ySq\",VUK6DAE9Z:VUK6DAE9Z1c72c24}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:25,y:(componentViewport?.y||0)+34+(((componentViewport?.height||726)-54-715.5)/2+0+0)+0+0+0+226.5+13,...addPropertyOverrides({EOXiOHKe8:{y:(componentViewport?.y||0)+34+(((componentViewport?.height||758)-54-715.5)/2+0+0)+0+0+0+226.5+13},ESLOuBkMV:{y:(componentViewport?.y||0)+34+(((componentViewport?.height||734)-54-715.5)/2+0+0)+0+0+0+226.5+13},fIkKiovJq:{y:(componentViewport?.y||0)+34+(((componentViewport?.height||1048.5)-44-740)/2+0+0)+0+0+0+206+13+45},LeC_8Xvte:{y:(componentViewport?.y||0)+34+(((componentViewport?.height||1024.5)-44-740)/2+0+0)+0+0+0+206+13+45}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1o75yzo-container\",layoutDependency:layoutDependency,layoutId:\"qF5MLG8IM-container\",nodeId:\"qF5MLG8IM\",rendersWithMotion:true,scopeId:\"MC2iiD4Yn\",children:/*#__PURE__*/_jsx(SS,{height:\"100%\",id:\"qF5MLG8IM\",layoutId:\"qF5MLG8IM\",variant:\"sWyvjFylu\",VUK6DAE9Z:VUK6DAE9Z19o3sey,width:\"100%\",...addPropertyOverrides({EOXiOHKe8:{VUK6DAE9Z:VUK6DAE9Z147xm94},ESLOuBkMV:{variant:\"fMYWU8N10\",VUK6DAE9Z:undefined},fIkKiovJq:{VUK6DAE9Z:VUK6DAE9Zzjnebj},LeC_8Xvte:{variant:\"fMYWU8N10\",VUK6DAE9Z:undefined},QiYW5RJpF:{variant:\"fMYWU8N10\"}},baseVariant,gestureVariant)})})})]})]})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:418,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+34+(((componentViewport?.height||726)-54-715.5)/2+277.5+20),...addPropertyOverrides({EOXiOHKe8:{y:(componentViewport?.y||0)+34+(((componentViewport?.height||758)-54-715.5)/2+277.5+20)},ESLOuBkMV:{y:(componentViewport?.y||0)+34+(((componentViewport?.height||734)-54-715.5)/2+277.5+20)},fIkKiovJq:{width:`calc(${componentViewport?.width||\"100vw\"} - 20px)`,y:(componentViewport?.y||0)+34+(((componentViewport?.height||1048.5)-44-740)/2+302+20)},LeC_8Xvte:{width:`calc(${componentViewport?.width||\"100vw\"} - 20px)`,y:(componentViewport?.y||0)+34+(((componentViewport?.height||1024.5)-44-740)/2+302+20)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1txjcxh-container\",layoutDependency:layoutDependency,layoutId:\"hxTofCGBw-container\",nodeId:\"hxTofCGBw\",rendersWithMotion:true,scopeId:\"MC2iiD4Yn\",children:/*#__PURE__*/_jsx(Sds,{height:\"100%\",id:\"hxTofCGBw\",layoutId:\"hxTofCGBw\",style:{width:\"100%\"},variant:\"kMjm7RvXH\",width:\"100%\",...addPropertyOverrides({EOXiOHKe8:{variant:\"IiDYk2Vbe\"},ESLOuBkMV:{variant:\"vpsQjGjxg\"},fIkKiovJq:{variant:\"Kvb4KhuoY\"},LeC_8Xvte:{variant:\"yfGjx8Oy5\"},QiYW5RJpF:{variant:\"hZP9KPGdk\"}},baseVariant,gestureVariant)})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1beiyni\",layoutDependency:layoutDependency,layoutId:\"XebqQkcZL\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:350,...addPropertyOverrides({a57FcE31b:{width:`max((${componentViewport?.width||\"100vw\"} - 60px) / 2, 1px)`,y:(componentViewport?.y||0)+40+(((componentViewport?.height||623)-60-798)/2+408+40)+0},OSLb6sG_f:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+40+(((componentViewport?.height||1012)-60-1168)/2+408+40)+0+0},PioM9QH5e:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+40+(((componentViewport?.height||1069)-60-1168)/2+408+40)+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1cp43h7-container\",layoutDependency:layoutDependency,layoutId:\"vr9iBCFU_-container\",nodeId:\"vr9iBCFU_\",rendersWithMotion:true,scopeId:\"MC2iiD4Yn\",children:/*#__PURE__*/_jsx(Ss,{height:\"100%\",id:\"vr9iBCFU_\",layoutId:\"vr9iBCFU_\",style:{height:\"100%\",width:\"100%\"},variant:\"MHw3SLG5v\",width:\"100%\",...addPropertyOverrides({a57FcE31b:{n7k4R4QMa:undefined,variant:\"lTIERGtfj\"},OSLb6sG_f:{n7k4R4QMa:undefined,variant:\"lTIERGtfj\"},PioM9QH5e:{n7k4R4QMa:undefined,variant:\"lTIERGtfj\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:350,...addPropertyOverrides({a57FcE31b:{width:`max((${componentViewport?.width||\"100vw\"} - 60px) / 2, 1px)`,y:(componentViewport?.y||0)+40+(((componentViewport?.height||623)-60-798)/2+408+40)+0},OSLb6sG_f:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+40+(((componentViewport?.height||1012)-60-1168)/2+408+40)+0+370},PioM9QH5e:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+40+(((componentViewport?.height||1069)-60-1168)/2+408+40)+0+370}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-g2l2ic-container\",layoutDependency:layoutDependency,layoutId:\"RCYJKvV1b-container\",nodeId:\"RCYJKvV1b\",rendersWithMotion:true,scopeId:\"MC2iiD4Yn\",children:/*#__PURE__*/_jsx(Ss,{height:\"100%\",id:\"RCYJKvV1b\",layoutId:\"RCYJKvV1b\",style:{height:\"100%\",width:\"100%\"},variant:\"tes0asOXu\",width:\"100%\",...addPropertyOverrides({a57FcE31b:{n7k4R4QMa:undefined,variant:\"tVsUGhfWh\"},OSLb6sG_f:{n7k4R4QMa:undefined,variant:\"tVsUGhfWh\"},PioM9QH5e:{n7k4R4QMa:undefined,variant:\"tVsUGhfWh\"}},baseVariant,gestureVariant)})})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-roqi4\",layoutDependency:layoutDependency,layoutId:\"Mg3rlPMs0\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0JETyBHcm90ZXNrIFZhcmlhYmxlVkY9SW5kbmFIUWlJRE01TWc9PQ==\",\"--framer-font-family\":'\"BDO Grotesk Variable\", \"BDO Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-variation-axes\":'var(--extracted-2gg91v, \"wght\" 392)',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",\"--framer-text-stroke-color\":\"var(--extracted-1nvstw5, rgba(34, 57, 135, 0))\",\"--framer-text-stroke-width\":\"var(--extracted-1kkmzbh, 0px)\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"Q1VTVE9NO0JETyBHcm90ZXNrIFZhcmlhYmxlVkY9SW5kbmFIUWlJRFl3TUE9PQ==\",\"--framer-font-variation-axes\":'var(--extracted-1asg273, \"wght\" 600)'},children:\"One\"}),\"View\"]})}),className:\"framer-tmx4j7\",fonts:[\"CUSTOM;BDO Grotesk Variable\"],layoutDependency:layoutDependency,layoutId:\"OPkkEgRis\",style:{\"--extracted-1asg273\":'\"wght\" 600',\"--extracted-1kkmzbh\":\"0px\",\"--extracted-1nvstw5\":\"rgba(34, 57, 135, 0)\",\"--extracted-2gg91v\":'\"wght\" 392',\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pijvsd\",layoutDependency:layoutDependency,layoutId:\"ncjzlk2F9\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"DZm_0ZLKF\"},implicitPathVariables:undefined},{href:{webPageId:\"DZm_0ZLKF\"},implicitPathVariables:undefined},{href:{webPageId:\"DZm_0ZLKF\"},implicitPathVariables:undefined},{href:{webPageId:\"DZm_0ZLKF\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,...addPropertyOverrides({a57FcE31b:{y:(componentViewport?.y||0)+40+(((componentViewport?.height||623)-60-798)/2+0+0)+5+350+0+0},OSLb6sG_f:{y:(componentViewport?.y||0)+40+(((componentViewport?.height||1012)-60-1168)/2+0+0)+5+350+0+0},PioM9QH5e:{y:(componentViewport?.y||0)+40+(((componentViewport?.height||1069)-60-1168)/2+0+0)+5+350+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1t6kgmj-container\",layoutDependency:layoutDependency,layoutId:\"bOZmsZpqp-container\",nodeId:\"bOZmsZpqp\",rendersWithMotion:true,scopeId:\"MC2iiD4Yn\",children:/*#__PURE__*/_jsx(Button2,{H1OwzFIST:resolvedLinks[0],height:\"100%\",id:\"bOZmsZpqp\",iixlGbFnt:\"rgb(255, 255, 255)\",Iv2pqvfFl:\"rgb(79, 79, 79)\",jatexfj6_:\"5px 10px 5px 10px\",KXnAL3htq:\"Explore OneView Solutions\",layoutId:\"bOZmsZpqp\",Thov37CEA:13,variant:\"fvrfwp1Hj\",vhP0NWJuX:\"rgb(255, 255, 255)\",width:\"100%\",Xf6wAB0Lx:\"rgba(79, 79, 79, 0)\",...addPropertyOverrides({a57FcE31b:{H1OwzFIST:resolvedLinks[1]},OSLb6sG_f:{H1OwzFIST:resolvedLinks[2]},PioM9QH5e:{H1OwzFIST:resolvedLinks[3]}},baseVariant,gestureVariant)})})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0JETyBHcm90ZXNrIFZhcmlhYmxlVkY9SW5kbmFIUWlJRE0yTUE9PQ==\",\"--framer-font-family\":'\"BDO Grotesk Variable\", \"BDO Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-variation-axes\":'var(--extracted-2gg91v, \"wght\" 360)',\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",\"--framer-text-transform\":\"capitalize\"},children:\"OneView eliminates tradeoffs in vision AI implementation, providing a complete end-to-end platform for design, deployment, monitoring, and management\u2014requiring no specialized expertise while transforming a high-risk, high-cost initiative into a scalable, value-driven solution.\"})}),className:\"framer-6gv0vv\",fonts:[\"CUSTOM;BDO Grotesk Variable\"],layoutDependency:layoutDependency,layoutId:\"I0ypHvCpg\",style:{\"--extracted-2gg91v\":'\"wght\" 360',\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-byQ6z.framer-1g9vv2r, .framer-byQ6z .framer-1g9vv2r { display: block; }\",\".framer-byQ6z.framer-d8v5kn { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 34px 20px 20px 20px; position: relative; width: 1160px; }\",\".framer-byQ6z .framer-100bxjf, .framer-byQ6z .framer-q23yrz { 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; position: relative; width: 100%; }\",\".framer-byQ6z .framer-x9wxdt { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-byQ6z .framer-1414tjw { 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: 18px 0px 18px 0px; position: relative; width: 100%; }\",\".framer-byQ6z .framer-7xl30t { aspect-ratio: 5.214457831325301 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 61px); overflow: visible; position: relative; width: 318px; }\",\".framer-byQ6z .framer-1mwrz7e { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 70%; word-break: break-word; word-wrap: break-word; }\",\".framer-byQ6z .framer-18uzr22 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 13px 0px 13px 0px; position: relative; width: 100%; }\",\".framer-byQ6z .framer-13dswdi-container, .framer-byQ6z .framer-1o75yzo-container, .framer-byQ6z .framer-1t6kgmj-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-byQ6z .framer-1txjcxh-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-byQ6z .framer-1beiyni { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-byQ6z .framer-1cp43h7-container, .framer-byQ6z .framer-g2l2ic-container { flex: 1 0 0px; height: 350px; position: relative; width: 1px; }\",\".framer-byQ6z .framer-roqi4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 5px 0px 5px 0px; position: relative; width: 100%; }\",\".framer-byQ6z .framer-tmx4j7 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-byQ6z .framer-1pijvsd { 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-byQ6z .framer-6gv0vv { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 82%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-byQ6z.framer-d8v5kn, .framer-byQ6z .framer-100bxjf, .framer-byQ6z .framer-x9wxdt, .framer-byQ6z .framer-q23yrz, .framer-byQ6z .framer-1414tjw, .framer-byQ6z .framer-18uzr22, .framer-byQ6z .framer-1beiyni, .framer-byQ6z .framer-roqi4, .framer-byQ6z .framer-1pijvsd { gap: 0px; } .framer-byQ6z.framer-d8v5kn > *, .framer-byQ6z .framer-x9wxdt > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-byQ6z.framer-d8v5kn > :first-child, .framer-byQ6z .framer-100bxjf > :first-child, .framer-byQ6z .framer-x9wxdt > :first-child, .framer-byQ6z .framer-q23yrz > :first-child, .framer-byQ6z .framer-1414tjw > :first-child, .framer-byQ6z .framer-roqi4 > :first-child, .framer-byQ6z .framer-1pijvsd > :first-child { margin-top: 0px; } .framer-byQ6z.framer-d8v5kn > :last-child, .framer-byQ6z .framer-100bxjf > :last-child, .framer-byQ6z .framer-x9wxdt > :last-child, .framer-byQ6z .framer-q23yrz > :last-child, .framer-byQ6z .framer-1414tjw > :last-child, .framer-byQ6z .framer-roqi4 > :last-child, .framer-byQ6z .framer-1pijvsd > :last-child { margin-bottom: 0px; } .framer-byQ6z .framer-100bxjf > *, .framer-byQ6z .framer-q23yrz > *, .framer-byQ6z .framer-1414tjw > *, .framer-byQ6z .framer-1pijvsd > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-byQ6z .framer-18uzr22 > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-byQ6z .framer-18uzr22 > :first-child, .framer-byQ6z .framer-1beiyni > :first-child { margin-left: 0px; } .framer-byQ6z .framer-18uzr22 > :last-child, .framer-byQ6z .framer-1beiyni > :last-child { margin-right: 0px; } .framer-byQ6z .framer-1beiyni > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-byQ6z .framer-roqi4 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }\",\".framer-byQ6z.framer-v-crqrxu.framer-d8v5kn, .framer-byQ6z.framer-v-1leuczp.framer-d8v5kn { width: 810px; }\",\".framer-byQ6z.framer-v-crqrxu .framer-1mwrz7e, .framer-byQ6z.framer-v-1leuczp .framer-1mwrz7e { width: 90%; }\",\".framer-byQ6z.framer-v-1k2zgvq.framer-d8v5kn, .framer-byQ6z.framer-v-1hixr73.framer-d8v5kn { padding: 34px 10px 10px 10px; width: 310px; }\",\".framer-byQ6z.framer-v-1k2zgvq .framer-x9wxdt, .framer-byQ6z.framer-v-1hixr73 .framer-x9wxdt { gap: 40px; }\",\".framer-byQ6z.framer-v-1k2zgvq .framer-7xl30t, .framer-byQ6z.framer-v-1hixr73 .framer-7xl30t { height: var(--framer-aspect-ratio-supported, 41px); width: 210px; }\",\".framer-byQ6z.framer-v-1k2zgvq .framer-1mwrz7e, .framer-byQ6z.framer-v-1hixr73 .framer-1mwrz7e { width: 100%; }\",\".framer-byQ6z.framer-v-1k2zgvq .framer-18uzr22, .framer-byQ6z.framer-v-1hixr73 .framer-18uzr22 { flex-direction: column; gap: 20px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-byQ6z.framer-v-1k2zgvq .framer-x9wxdt, .framer-byQ6z.framer-v-1k2zgvq .framer-18uzr22 { gap: 0px; } .framer-byQ6z.framer-v-1k2zgvq .framer-x9wxdt > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-byQ6z.framer-v-1k2zgvq .framer-x9wxdt > :first-child, .framer-byQ6z.framer-v-1k2zgvq .framer-18uzr22 > :first-child { margin-top: 0px; } .framer-byQ6z.framer-v-1k2zgvq .framer-x9wxdt > :last-child, .framer-byQ6z.framer-v-1k2zgvq .framer-18uzr22 > :last-child { margin-bottom: 0px; } .framer-byQ6z.framer-v-1k2zgvq .framer-18uzr22 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-byQ6z.framer-v-1hixr73 .framer-x9wxdt, .framer-byQ6z.framer-v-1hixr73 .framer-18uzr22 { gap: 0px; } .framer-byQ6z.framer-v-1hixr73 .framer-x9wxdt > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-byQ6z.framer-v-1hixr73 .framer-x9wxdt > :first-child, .framer-byQ6z.framer-v-1hixr73 .framer-18uzr22 > :first-child { margin-top: 0px; } .framer-byQ6z.framer-v-1hixr73 .framer-x9wxdt > :last-child, .framer-byQ6z.framer-v-1hixr73 .framer-18uzr22 > :last-child { margin-bottom: 0px; } .framer-byQ6z.framer-v-1hixr73 .framer-18uzr22 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",\".framer-byQ6z.framer-v-j1adpf.framer-d8v5kn { gap: 40px; padding: 40px 20px 20px 20px; }\",\".framer-byQ6z.framer-v-j1adpf .framer-1beiyni { gap: 20px; order: 3; }\",\".framer-byQ6z.framer-v-j1adpf .framer-1cp43h7-container, .framer-byQ6z.framer-v-j1adpf .framer-tmx4j7, .framer-byQ6z.framer-v-l2yvl9 .framer-tmx4j7, .framer-byQ6z.framer-v-90bgcm .framer-tmx4j7 { order: 0; }\",\".framer-byQ6z.framer-v-j1adpf .framer-g2l2ic-container, .framer-byQ6z.framer-v-j1adpf .framer-roqi4, .framer-byQ6z.framer-v-j1adpf .framer-6gv0vv, .framer-byQ6z.framer-v-l2yvl9 .framer-roqi4, .framer-byQ6z.framer-v-l2yvl9 .framer-6gv0vv, .framer-byQ6z.framer-v-90bgcm .framer-roqi4 { order: 1; }\",\".framer-byQ6z.framer-v-j1adpf .framer-1pijvsd, .framer-byQ6z.framer-v-l2yvl9 .framer-1pijvsd, .framer-byQ6z.framer-v-90bgcm .framer-1pijvsd { order: 2; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-byQ6z.framer-v-j1adpf.framer-d8v5kn, .framer-byQ6z.framer-v-j1adpf .framer-1beiyni { gap: 0px; } .framer-byQ6z.framer-v-j1adpf.framer-d8v5kn > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-byQ6z.framer-v-j1adpf.framer-d8v5kn > :first-child { margin-top: 0px; } .framer-byQ6z.framer-v-j1adpf.framer-d8v5kn > :last-child { margin-bottom: 0px; } .framer-byQ6z.framer-v-j1adpf .framer-1beiyni > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-byQ6z.framer-v-j1adpf .framer-1beiyni > :first-child { margin-left: 0px; } .framer-byQ6z.framer-v-j1adpf .framer-1beiyni > :last-child { margin-right: 0px; } }\",\".framer-byQ6z.framer-v-l2yvl9.framer-d8v5kn { gap: 40px; padding: 40px 20px 20px 20px; width: 810px; }\",\".framer-byQ6z.framer-v-l2yvl9 .framer-1beiyni, .framer-byQ6z.framer-v-90bgcm .framer-1beiyni { flex-direction: column; gap: 20px; order: 3; }\",\".framer-byQ6z.framer-v-l2yvl9 .framer-1cp43h7-container, .framer-byQ6z.framer-v-90bgcm .framer-1cp43h7-container { flex: none; order: 0; width: 100%; }\",\".framer-byQ6z.framer-v-l2yvl9 .framer-g2l2ic-container, .framer-byQ6z.framer-v-90bgcm .framer-g2l2ic-container { flex: none; order: 1; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-byQ6z.framer-v-l2yvl9.framer-d8v5kn, .framer-byQ6z.framer-v-l2yvl9 .framer-1beiyni { gap: 0px; } .framer-byQ6z.framer-v-l2yvl9.framer-d8v5kn > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-byQ6z.framer-v-l2yvl9.framer-d8v5kn > :first-child, .framer-byQ6z.framer-v-l2yvl9 .framer-1beiyni > :first-child { margin-top: 0px; } .framer-byQ6z.framer-v-l2yvl9.framer-d8v5kn > :last-child, .framer-byQ6z.framer-v-l2yvl9 .framer-1beiyni > :last-child { margin-bottom: 0px; } .framer-byQ6z.framer-v-l2yvl9 .framer-1beiyni > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",\".framer-byQ6z.framer-v-90bgcm.framer-d8v5kn { gap: 40px; padding: 40px 20px 20px 20px; width: 390px; }\",\".framer-byQ6z.framer-v-90bgcm .framer-6gv0vv { order: 1; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-byQ6z.framer-v-90bgcm.framer-d8v5kn, .framer-byQ6z.framer-v-90bgcm .framer-1beiyni { gap: 0px; } .framer-byQ6z.framer-v-90bgcm.framer-d8v5kn > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-byQ6z.framer-v-90bgcm.framer-d8v5kn > :first-child, .framer-byQ6z.framer-v-90bgcm .framer-1beiyni > :first-child { margin-top: 0px; } .framer-byQ6z.framer-v-90bgcm.framer-d8v5kn > :last-child, .framer-byQ6z.framer-v-90bgcm .framer-1beiyni > :last-child { margin-bottom: 0px; } .framer-byQ6z.framer-v-90bgcm .framer-1beiyni > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",'.framer-byQ6z[data-border=\"true\"]::after, .framer-byQ6z [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 726\n * @framerIntrinsicWidth 1160\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"QiYW5RJpF\":{\"layout\":[\"fixed\",\"auto\"]},\"EOXiOHKe8\":{\"layout\":[\"fixed\",\"auto\"]},\"ESLOuBkMV\":{\"layout\":[\"fixed\",\"auto\"]},\"fIkKiovJq\":{\"layout\":[\"fixed\",\"auto\"]},\"LeC_8Xvte\":{\"layout\":[\"fixed\",\"auto\"]},\"a57FcE31b\":{\"layout\":[\"fixed\",\"auto\"]},\"OSLb6sG_f\":{\"layout\":[\"fixed\",\"auto\"]},\"PioM9QH5e\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerMC2iiD4Yn=withCSS(Component,css,\"framer-byQ6z\");export default FramerMC2iiD4Yn;FramerMC2iiD4Yn.displayName=\"one view\";FramerMC2iiD4Yn.defaultProps={height:726,width:1160};addPropertyControls(FramerMC2iiD4Yn,{variant:{options:[\"iEh7IokWE\",\"QiYW5RJpF\",\"EOXiOHKe8\",\"ESLOuBkMV\",\"fIkKiovJq\",\"LeC_8Xvte\",\"a57FcE31b\",\"OSLb6sG_f\",\"PioM9QH5e\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"ipad\",\"Variant 4\",\"phone Cloud\",\"phone edge\",\"Variant 7\",\"Variant 8\",\"Variant 9\"],title:\"Variant\",type:ControlType.Enum}});const variationAxes=[{defaultValue:400,maxValue:900,minValue:300,name:\"Weight\",tag:\"wght\"}];addFonts(FramerMC2iiD4Yn,[{explicitInter:true,fonts:[{family:\"BDO Grotesk Variable\",source:\"custom\",url:\"https://framerusercontent.com/assets/mUeFl3gzhwtV73WbOCuVHPAIaOU.woff2\",variationAxes}]},...SSFonts,...SdsFonts,...SsFonts,...Button2Fonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerMC2iiD4Yn\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"726\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QiYW5RJpF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"EOXiOHKe8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ESLOuBkMV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fIkKiovJq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LeC_8Xvte\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"a57FcE31b\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"OSLb6sG_f\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"PioM9QH5e\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1160\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f030ee3)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const enabledGestures={AazbkK51d:{hover:true}};const cycleOrder=[\"AazbkK51d\",\"HdNi7fi45\"];const serializationHash=\"framer-ZrilN\";const variantClassNames={AazbkK51d:\"framer-v-1hu0xxr\",HdNi7fi45:\"framer-v-nfyd5t\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Active:\"HdNi7fi45\",Default:\"AazbkK51d\"};const getProps=({click,click2,height,id,title,width,...props})=>{return{...props,eQPhB2fDh:click??props.eQPhB2fDh,HCK0l3cmP:title??props.HCK0l3cmP??\"Retail and E-Commerce\",K0OQ8atWf:click2??props.K0OQ8atWf,variant:humanReadableVariantMap[props.variant]??props.variant??\"AazbkK51d\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,eQPhB2fDh,K0OQ8atWf,HCK0l3cmP,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"AazbkK51d\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapcz0eoc=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(eQPhB2fDh){const res=await eQPhB2fDh(...args);if(res===false)return false;}if(K0OQ8atWf){const res=await K0OQ8atWf(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1hu0xxr\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"AazbkK51d\",onTap:onTapcz0eoc,ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(88, 138, 176, 0.75)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(255, 255, 255, 0)\",borderBottomLeftRadius:3,borderBottomRightRadius:3,borderTopLeftRadius:3,borderTopRightRadius:3,...style},variants:{\"AazbkK51d-hover\":{\"--border-color\":\"rgb(88, 138, 176)\",backgroundColor:\"rgba(0, 0, 0, 0)\"},HdNi7fi45:{\"--border-color\":\"rgb(70, 155, 219)\",backgroundColor:\"rgb(54, 81, 102)\"}},...addPropertyOverrides({\"AazbkK51d-hover\":{\"data-framer-name\":undefined},HdNi7fi45:{\"data-framer-name\":\"Active\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0JETyBHcm90ZXNrIFJlZ3VsYXI=\",\"--framer-font-family\":'\"BDO Grotesk Regular\", \"BDO Grotesk Regular Placeholder\", sans-serif',\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(49, 76, 97, 0.75))\"},children:\"Retail and E-Commerce\"})}),className:\"framer-x2licd\",\"data-framer-name\":\"Title\",fonts:[\"CUSTOM;BDO Grotesk Regular\"],layoutDependency:layoutDependency,layoutId:\"zEDllqCkd\",style:{\"--extracted-r6o4lv\":\"rgba(49, 76, 97, 0.75)\",\"--framer-paragraph-spacing\":\"0px\"},text:HCK0l3cmP,variants:{\"AazbkK51d-hover\":{\"--extracted-r6o4lv\":\"rgb(49, 76, 97)\"},HdNi7fi45:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"AazbkK51d-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0JETyBHcm90ZXNrIFJlZ3VsYXI=\",\"--framer-font-family\":'\"BDO Grotesk Regular\", \"BDO Grotesk Regular Placeholder\", sans-serif',\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(49, 76, 97))\"},children:\"Retail and E-Commerce\"})})},HdNi7fi45:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0JETyBHcm90ZXNrIFJlZ3VsYXI=\",\"--framer-font-family\":'\"BDO Grotesk Regular\", \"BDO Grotesk Regular Placeholder\", sans-serif',\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Retail and E-Commerce\"})})}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ZrilN.framer-11gusut, .framer-ZrilN .framer-11gusut { display: block; }\",\".framer-ZrilN.framer-1hu0xxr { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 18px 12px 18px 12px; position: relative; width: 346px; }\",\".framer-ZrilN .framer-x2licd { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ZrilN.framer-1hu0xxr { gap: 0px; } .framer-ZrilN.framer-1hu0xxr > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-ZrilN.framer-1hu0xxr > :first-child { margin-left: 0px; } .framer-ZrilN.framer-1hu0xxr > :last-child { margin-right: 0px; } }\",'.framer-ZrilN[data-border=\"true\"]::after, .framer-ZrilN [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 58.5\n * @framerIntrinsicWidth 346\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"HdNi7fi45\":{\"layout\":[\"fixed\",\"auto\"]},\"D0dNJ5YDm\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"eQPhB2fDh\":\"click\",\"K0OQ8atWf\":\"click2\",\"HCK0l3cmP\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameraMhIXt0uW=withCSS(Component,css,\"framer-ZrilN\");export default FrameraMhIXt0uW;FrameraMhIXt0uW.displayName=\"Tabs/Tab\";FrameraMhIXt0uW.defaultProps={height:58.5,width:346};addPropertyControls(FrameraMhIXt0uW,{variant:{options:[\"AazbkK51d\",\"HdNi7fi45\"],optionTitles:[\"Default\",\"Active\"],title:\"Variant\",type:ControlType.Enum},eQPhB2fDh:{title:\"Click\",type:ControlType.EventHandler},K0OQ8atWf:{title:\"Click 2\",type:ControlType.EventHandler},HCK0l3cmP:{defaultValue:\"Retail and E-Commerce\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(FrameraMhIXt0uW,[{explicitInter:true,fonts:[{family:\"BDO Grotesk Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/Sk82rOE9I0ck31H7NDDI3qwVY.woff2\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraMhIXt0uW\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"eQPhB2fDh\\\":\\\"click\\\",\\\"K0OQ8atWf\\\":\\\"click2\\\",\\\"HCK0l3cmP\\\":\\\"title\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"58.5\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"346\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"HdNi7fi45\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"D0dNJ5YDm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./aMhIXt0uW.map", "// Generated by Framer (9d598a4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,getPropertyControls,Image,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Material}from\"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";const MaterialFonts=getFonts(Material);const MaterialControls=getPropertyControls(Material);const cycleOrder=[\"Np7Iul_Kc\",\"ciOusV6AK\"];const serializationHash=\"framer-RzEsy\";const variantClassNames={ciOusV6AK:\"framer-v-1e3gldb\",Np7Iul_Kc:\"framer-v-15gz7k4\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const 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??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={Day:\"ciOusV6AK\",Night:\"Np7Iul_Kc\"};const getProps=({gap,height,icon,id,name1,text,title,width,...props})=>{return{...props,eK85FU2LU:text??props.eK85FU2LU??\"Comprehensive supplier auditing ensures that your entire supply chain upholds the highest standards of environmental responsibility.\",hl0mVYZYu:title??props.hl0mVYZYu??\"Automated Efficiency Analysis\",iz8MDozuX:gap??props.iz8MDozuX??18,SNnZQjaN_:icon??props.SNnZQjaN_,variant:humanReadableVariantMap[props.variant]??props.variant??\"Np7Iul_Kc\",vv3vXVh7v:name1??props.vv3vXVh7v??\"Home\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,SNnZQjaN_,hl0mVYZYu,eK85FU2LU,iz8MDozuX,vv3vXVh7v,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Np7Iul_Kc\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"ciOusV6AK\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"ciOusV6AK\")return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-15gz7k4\",className,classNames),\"data-framer-name\":\"Night\",layoutDependency:layoutDependency,layoutId:\"Np7Iul_Kc\",ref:refBinding,style:{\"--xlyfr\":iz8MDozuX,...style},...addPropertyOverrides({ciOusV6AK:{\"data-framer-name\":\"Day\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-nz8tjn\",layoutDependency:layoutDependency,layoutId:\"YmlrpdWgO\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-kvbz1o-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"J41bNvzwD-container\",nodeId:\"J41bNvzwD\",rendersWithMotion:true,scopeId:\"GU31Vqo7C\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(88, 138, 176)\",height:\"100%\",iconSearch:\"Home\",iconSelection:vv3vXVh7v,iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"J41bNvzwD\",layoutId:\"J41bNvzwD\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),sizes:\"48px\",...toResponsiveImage(SNnZQjaN_),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-14on7zr\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"OW6U40c95\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--font-selector\":\"Q1VTVE9NO0JETyBHcm90ZXNrIE1lZGl1bQ==\",\"--framer-font-family\":'\"BDO Grotesk Medium\", \"BDO Grotesk Medium Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-60b8256d-8ac8-433f-b6b8-cb9776d3a855, rgb(39, 43, 39)))\"},children:\"Automated Efficiency Analysis\"})}),className:\"framer-1n6zwhq\",\"data-framer-name\":\"Title\",fonts:[\"CUSTOM;BDO Grotesk Medium\"],layoutDependency:layoutDependency,layoutId:\"lP5dypDi1\",style:{\"--extracted-1eung3n\":\"var(--token-60b8256d-8ac8-433f-b6b8-cb9776d3a855, rgb(39, 43, 39))\",\"--framer-paragraph-spacing\":\"0px\"},text:hl0mVYZYu,variants:{ciOusV6AK:{\"--extracted-1eung3n\":\"rgb(49, 76, 97)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ciOusV6AK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--font-selector\":\"Q1VTVE9NO0JETyBHcm90ZXNrIE1lZGl1bQ==\",\"--framer-font-family\":'\"BDO Grotesk Medium\", \"BDO Grotesk Medium Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-1eung3n, rgb(49, 76, 97))\"},children:\"Automated Efficiency Analysis\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0JETyBHcm90ZXNrIFZhcmlhYmxlVkY9SW5kbmFIUWlJRE0zTUE9PQ==\",\"--framer-font-family\":'\"BDO Grotesk Variable\", \"BDO Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-variation-axes\":'var(--extracted-2gg91v, \"wght\" 370)',\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-60b8256d-8ac8-433f-b6b8-cb9776d3a855, rgb(39, 43, 39)))\"},children:\"Comprehensive supplier auditing ensures that your entire supply chain upholds the highest standards of environmental responsibility.\"})}),className:\"framer-5vahv0\",\"data-framer-name\":\"Text\",fonts:[\"CUSTOM;BDO Grotesk Variable\"],layoutDependency:layoutDependency,layoutId:\"LuKrwkxVi\",style:{\"--extracted-2gg91v\":'\"wght\" 370',\"--extracted-r6o4lv\":\"var(--token-60b8256d-8ac8-433f-b6b8-cb9776d3a855, rgb(39, 43, 39))\",\"--framer-paragraph-spacing\":\"0px\"},text:eK85FU2LU,variants:{ciOusV6AK:{\"--extracted-r6o4lv\":\"rgb(49, 76, 97)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ciOusV6AK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0JETyBHcm90ZXNrIFZhcmlhYmxlVkY9SW5kbmFIUWlJRE0zTUE9PQ==\",\"--framer-font-family\":'\"BDO Grotesk Variable\", \"BDO Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-variation-axes\":'var(--extracted-2gg91v, \"wght\" 370)',\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(49, 76, 97))\"},children:\"Comprehensive supplier auditing ensures that your entire supply chain upholds the highest standards of environmental responsibility.\"})})}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-RzEsy.framer-1psd479, .framer-RzEsy .framer-1psd479 { display: block; }\",\".framer-RzEsy.framer-15gz7k4 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: calc(max(0, var(--xlyfr)) * 1px); height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 247px; }\",\".framer-RzEsy .framer-nz8tjn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 31px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 34px; }\",\".framer-RzEsy .framer-kvbz1o-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-RzEsy .framer-14on7zr { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 48px); overflow: hidden; position: relative; width: 48px; }\",\".framer-RzEsy .framer-1n6zwhq, .framer-RzEsy .framer-5vahv0 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-RzEsy.framer-15gz7k4, .framer-RzEsy .framer-nz8tjn { gap: 0px; } .framer-RzEsy.framer-15gz7k4 > * { margin: 0px; margin-bottom: calc(calc(max(0, var(--xlyfr)) * 1px) / 2); margin-top: calc(calc(max(0, var(--xlyfr)) * 1px) / 2); } .framer-RzEsy.framer-15gz7k4 > :first-child { margin-top: 0px; } .framer-RzEsy.framer-15gz7k4 > :last-child { margin-bottom: 0px; } .framer-RzEsy .framer-nz8tjn > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-RzEsy .framer-nz8tjn > :first-child { margin-left: 0px; } .framer-RzEsy .framer-nz8tjn > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 213\n * @framerIntrinsicWidth 247\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ciOusV6AK\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"SNnZQjaN_\":\"icon\",\"hl0mVYZYu\":\"title\",\"eK85FU2LU\":\"text\",\"iz8MDozuX\":\"gap\",\"vv3vXVh7v\":\"name1\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerGU31Vqo7C=withCSS(Component,css,\"framer-RzEsy\");export default FramerGU31Vqo7C;FramerGU31Vqo7C.displayName=\"Small Icon Item\";FramerGU31Vqo7C.defaultProps={height:213,width:247};addPropertyControls(FramerGU31Vqo7C,{variant:{options:[\"Np7Iul_Kc\",\"ciOusV6AK\"],optionTitles:[\"Night\",\"Day\"],title:\"Variant\",type:ControlType.Enum},SNnZQjaN_:{title:\"Icon\",type:ControlType.ResponsiveImage},hl0mVYZYu:{defaultValue:\"Automated Efficiency Analysis\",displayTextArea:false,title:\"Title\",type:ControlType.String},eK85FU2LU:{defaultValue:\"Comprehensive supplier auditing ensures that your entire supply chain upholds the highest standards of environmental responsibility.\",displayTextArea:false,title:\"Text\",type:ControlType.String},iz8MDozuX:{defaultValue:18,min:0,title:\"Gap\",type:ControlType.Number},vv3vXVh7v:MaterialControls?.[\"iconSelection\"]&&{...MaterialControls[\"iconSelection\"],defaultValue:\"Home\",description:undefined,hidden:undefined,title:\"Name\"}});const variationAxes=[{defaultValue:400,maxValue:900,minValue:300,name:\"Weight\",tag:\"wght\"}];addFonts(FramerGU31Vqo7C,[{explicitInter:true,fonts:[{family:\"BDO Grotesk Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/IHGsSfg11OdfhvzTKQvoyshNQ.woff2\"},{family:\"BDO Grotesk Variable\",source:\"custom\",url:\"https://framerusercontent.com/assets/mUeFl3gzhwtV73WbOCuVHPAIaOU.woff2\",variationAxes}]},...MaterialFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerGU31Vqo7C\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"SNnZQjaN_\\\":\\\"icon\\\",\\\"hl0mVYZYu\\\":\\\"title\\\",\\\"eK85FU2LU\\\":\\\"text\\\",\\\"iz8MDozuX\\\":\\\"gap\\\",\\\"vv3vXVh7v\\\":\\\"name1\\\"}\",\"framerIntrinsicWidth\":\"247\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ciOusV6AK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"213\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./GU31Vqo7C.map", "// Generated by Framer (400c93f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import TabsTab from\"https://framerusercontent.com/modules/vOqbkrS0Yq39HtPv4vjT/uPF9ZdcbLLvrYQzQdB8b/aMhIXt0uW.js\";import SmallIconItem from\"https://framerusercontent.com/modules/gku3kXPXNigmsuqLq8Ai/ntWcYsVc5beHEgkGjXex/GU31Vqo7C.js\";const TabsTabFonts=getFonts(TabsTab);const SmallIconItemFonts=getFonts(SmallIconItem);const cycleOrder=[\"eNd4u19uT\",\"cqVPCDuLg\",\"LB3jgI772\",\"ArKIJTLL8\",\"S1k3JwtJV\",\"ubg2cFLVX\",\"IXZoiaIVl\",\"NpZj2rFzI\",\"cdtFCg9JZ\"];const serializationHash=\"framer-ceMTu\";const variantClassNames={ArKIJTLL8:\"framer-v-ww4ovc\",cdtFCg9JZ:\"framer-v-5ymd4\",cqVPCDuLg:\"framer-v-1d6qmlj\",eNd4u19uT:\"framer-v-y3v67x\",IXZoiaIVl:\"framer-v-pbd5sr\",LB3jgI772:\"framer-v-4cbs0f\",NpZj2rFzI:\"framer-v-r70w3a\",S1k3JwtJV:\"framer-v-1pbffjs\",ubg2cFLVX:\"framer-v-agfedw\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Ipad \u2022 Tab 1\":\"ArKIJTLL8\",\"Ipad \u2022 Tab 2\":\"S1k3JwtJV\",\"Ipad \u2022 Tab 3\":\"ubg2cFLVX\",\"Mobile \u2022 Tab 1\":\"IXZoiaIVl\",\"Mobile \u2022 Tab 2\":\"NpZj2rFzI\",\"Mobile \u2022 Tab 3\":\"cdtFCg9JZ\",\"Tab 1\":\"eNd4u19uT\",\"Tab 2\":\"cqVPCDuLg\",\"Tab 3\":\"LB3jgI772\"};const getProps=({contentGap,height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"eNd4u19uT\",Vm1DaRlZj:contentGap??props.Vm1DaRlZj??96};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,Vm1DaRlZj,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"eNd4u19uT\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const K0OQ8atWfigjke=activeVariantCallback(async(...args)=>{setVariant(\"eNd4u19uT\");});const eQPhB2fDhigjke=activeVariantCallback(async(...args)=>{setVariant(\"eNd4u19uT\");});const K0OQ8atWfu6iyps=activeVariantCallback(async(...args)=>{setVariant(\"ArKIJTLL8\");});const eQPhB2fDhu6iyps=activeVariantCallback(async(...args)=>{setVariant(\"ArKIJTLL8\");});const K0OQ8atWf1gl1fpw=activeVariantCallback(async(...args)=>{setVariant(\"IXZoiaIVl\");});const eQPhB2fDh1gl1fpw=activeVariantCallback(async(...args)=>{setVariant(\"IXZoiaIVl\");});const eQPhB2fDh1th1c9k=activeVariantCallback(async(...args)=>{setVariant(\"cqVPCDuLg\");});const eQPhB2fDh1ct65iq=activeVariantCallback(async(...args)=>{setVariant(\"S1k3JwtJV\");});const eQPhB2fDh11kgepk=activeVariantCallback(async(...args)=>{setVariant(\"NpZj2rFzI\");});const eQPhB2fDhkzd6f4=activeVariantCallback(async(...args)=>{setVariant(\"LB3jgI772\");});const eQPhB2fDh494lrv=activeVariantCallback(async(...args)=>{setVariant(\"ubg2cFLVX\");});const eQPhB2fDhvoyk43=activeVariantCallback(async(...args)=>{setVariant(\"cdtFCg9JZ\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"cqVPCDuLg\",\"S1k3JwtJV\",\"NpZj2rFzI\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"ubg2cFLVX\",\"cdtFCg9JZ\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if(baseVariant===\"ubg2cFLVX\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"cdtFCg9JZ\")return true;return false;};const isDisplayed4=()=>{if([\"cqVPCDuLg\",\"S1k3JwtJV\",\"NpZj2rFzI\"].includes(baseVariant))return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-y3v67x\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Tab 1\",layoutDependency:layoutDependency,layoutId:\"eNd4u19uT\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(0, 0, 0)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"dashed\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:3,borderBottomRightRadius:3,borderTopLeftRadius:3,borderTopRightRadius:3,...style},...addPropertyOverrides({ArKIJTLL8:{\"data-framer-name\":\"Ipad \u2022 Tab 1\"},cdtFCg9JZ:{\"data-framer-name\":\"Mobile \u2022 Tab 3\"},cqVPCDuLg:{\"data-framer-name\":\"Tab 2\"},IXZoiaIVl:{\"data-framer-name\":\"Mobile \u2022 Tab 1\"},LB3jgI772:{\"data-framer-name\":\"Tab 3\"},NpZj2rFzI:{\"data-framer-name\":\"Mobile \u2022 Tab 2\"},S1k3JwtJV:{\"data-framer-name\":\"Ipad \u2022 Tab 2\"},ubg2cFLVX:{\"data-framer-name\":\"Ipad \u2022 Tab 3\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bpm3y0\",\"data-framer-name\":\"Tabs\",layoutDependency:layoutDependency,layoutId:\"Nk4vFEZy6\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:58,width:`max((${componentViewport?.width||\"100vw\"} - 58px) / 3, 1px)`,...addPropertyOverrides({ArKIJTLL8:{y:(componentViewport?.y||0)+20+0+0},cdtFCg9JZ:{width:`calc(${componentViewport?.width||\"100vw\"} - 20px)`,y:(componentViewport?.y||0)+10+0+0+0},cqVPCDuLg:{y:(componentViewport?.y||0)+20+0+0},IXZoiaIVl:{width:`calc(${componentViewport?.width||\"100vw\"} - 20px)`,y:(componentViewport?.y||0)+10+0+0+0},NpZj2rFzI:{width:`calc(${componentViewport?.width||\"100vw\"} - 20px)`,y:(componentViewport?.y||0)+10+0+0+0},S1k3JwtJV:{y:(componentViewport?.y||0)+20+0+0},ubg2cFLVX:{y:(componentViewport?.y||0)+20+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1kasuek-container\",layoutDependency:layoutDependency,layoutId:\"IcXAZHgsx-container\",nodeId:\"IcXAZHgsx\",rendersWithMotion:true,scopeId:\"pag7V5EkB\",children:/*#__PURE__*/_jsx(TabsTab,{HCK0l3cmP:\"AI Vision Today\",height:\"100%\",id:\"IcXAZHgsx\",layoutId:\"IcXAZHgsx\",style:{width:\"100%\"},variant:\"HdNi7fi45\",width:\"100%\",...addPropertyOverrides({cdtFCg9JZ:{eQPhB2fDh:eQPhB2fDh1gl1fpw,variant:\"AazbkK51d\"},cqVPCDuLg:{K0OQ8atWf:K0OQ8atWfigjke,variant:\"AazbkK51d\"},LB3jgI772:{eQPhB2fDh:eQPhB2fDhigjke,variant:\"AazbkK51d\"},NpZj2rFzI:{K0OQ8atWf:K0OQ8atWf1gl1fpw,variant:\"AazbkK51d\"},S1k3JwtJV:{K0OQ8atWf:K0OQ8atWfu6iyps,variant:\"AazbkK51d\"},ubg2cFLVX:{eQPhB2fDh:eQPhB2fDhu6iyps,variant:\"AazbkK51d\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:58,width:`max((${componentViewport?.width||\"100vw\"} - 58px) / 3, 1px)`,...addPropertyOverrides({ArKIJTLL8:{y:(componentViewport?.y||0)+20+0+0},cdtFCg9JZ:{width:`calc(${componentViewport?.width||\"100vw\"} - 20px)`,y:(componentViewport?.y||0)+10+0+0+67},cqVPCDuLg:{y:(componentViewport?.y||0)+20+0+0},IXZoiaIVl:{width:`calc(${componentViewport?.width||\"100vw\"} - 20px)`,y:(componentViewport?.y||0)+10+0+0+67},NpZj2rFzI:{width:`calc(${componentViewport?.width||\"100vw\"} - 20px)`,y:(componentViewport?.y||0)+10+0+0+67},S1k3JwtJV:{y:(componentViewport?.y||0)+20+0+0},ubg2cFLVX:{y:(componentViewport?.y||0)+20+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1bcyr51-container\",layoutDependency:layoutDependency,layoutId:\"VvNsqI1_B-container\",nodeId:\"VvNsqI1_B\",rendersWithMotion:true,scopeId:\"pag7V5EkB\",children:/*#__PURE__*/_jsx(TabsTab,{eQPhB2fDh:eQPhB2fDh1th1c9k,HCK0l3cmP:\"How Eigen Solves for It\",height:\"100%\",id:\"VvNsqI1_B\",layoutId:\"VvNsqI1_B\",style:{width:\"100%\"},variant:\"AazbkK51d\",width:\"100%\",...addPropertyOverrides({ArKIJTLL8:{eQPhB2fDh:eQPhB2fDh1ct65iq},cdtFCg9JZ:{eQPhB2fDh:eQPhB2fDh11kgepk},cqVPCDuLg:{variant:\"HdNi7fi45\"},IXZoiaIVl:{eQPhB2fDh:eQPhB2fDh11kgepk},NpZj2rFzI:{eQPhB2fDh:undefined,variant:\"HdNi7fi45\"},S1k3JwtJV:{eQPhB2fDh:undefined,variant:\"HdNi7fi45\"},ubg2cFLVX:{eQPhB2fDh:eQPhB2fDh1ct65iq}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:58,width:`max((${componentViewport?.width||\"100vw\"} - 58px) / 3, 1px)`,...addPropertyOverrides({ArKIJTLL8:{y:(componentViewport?.y||0)+20+0+0},cdtFCg9JZ:{width:`calc(${componentViewport?.width||\"100vw\"} - 20px)`,y:(componentViewport?.y||0)+10+0+0+134},cqVPCDuLg:{y:(componentViewport?.y||0)+20+0+0},IXZoiaIVl:{width:`calc(${componentViewport?.width||\"100vw\"} - 20px)`,y:(componentViewport?.y||0)+10+0+0+134},NpZj2rFzI:{width:`calc(${componentViewport?.width||\"100vw\"} - 20px)`,y:(componentViewport?.y||0)+10+0+0+134},S1k3JwtJV:{y:(componentViewport?.y||0)+20+0+0},ubg2cFLVX:{y:(componentViewport?.y||0)+20+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-11ax5p-container\",layoutDependency:layoutDependency,layoutId:\"pQa4irGEt-container\",nodeId:\"pQa4irGEt\",rendersWithMotion:true,scopeId:\"pag7V5EkB\",children:/*#__PURE__*/_jsx(TabsTab,{eQPhB2fDh:eQPhB2fDhkzd6f4,HCK0l3cmP:\"How We\u2019re Different\",height:\"100%\",id:\"pQa4irGEt\",layoutId:\"pQa4irGEt\",style:{width:\"100%\"},variant:\"AazbkK51d\",width:\"100%\",...addPropertyOverrides({ArKIJTLL8:{eQPhB2fDh:eQPhB2fDh494lrv},cdtFCg9JZ:{eQPhB2fDh:undefined,variant:\"HdNi7fi45\"},IXZoiaIVl:{eQPhB2fDh:eQPhB2fDhvoyk43},LB3jgI772:{variant:\"HdNi7fi45\"},NpZj2rFzI:{eQPhB2fDh:eQPhB2fDhvoyk43},S1k3JwtJV:{eQPhB2fDh:eQPhB2fDh494lrv},ubg2cFLVX:{eQPhB2fDh:undefined,variant:\"HdNi7fi45\"}},baseVariant,gestureVariant)})})})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1k5cudi\",\"data-framer-name\":\"Tab Content 1\",layoutDependency:layoutDependency,layoutId:\"Czj7SApFX\",style:{\"--1mnhml4\":Vm1DaRlZj},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-9wv1wy\",\"data-framer-name\":\"Container - S\",layoutDependency:layoutDependency,layoutId:\"jLi1zQ_Q7\",style:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},variants:{cdtFCg9JZ:{borderBottomLeftRadius:3,borderBottomRightRadius:3,borderTopLeftRadius:3,borderTopRightRadius:3},IXZoiaIVl:{borderBottomLeftRadius:3,borderBottomRightRadius:3,borderTopLeftRadius:3,borderTopRightRadius:3}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1024,pixelWidth:1024,sizes:\"456px\",src:\"https://framerusercontent.com/images/qDhhFzQcjmecKSRoOQCWXntG3c.png\",srcSet:\"https://framerusercontent.com/images/qDhhFzQcjmecKSRoOQCWXntG3c.png?scale-down-to=512 512w,https://framerusercontent.com/images/qDhhFzQcjmecKSRoOQCWXntG3c.png 1024w\"},className:\"framer-13kt4jp\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"qdFwNHXiH\",style:{borderBottomLeftRadius:3,borderBottomRightRadius:3,borderTopLeftRadius:3,borderTopRightRadius:3},...addPropertyOverrides({ArKIJTLL8:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+20+130+0+498+0+0),pixelHeight:1024,pixelWidth:1024,sizes:\"456px\",src:\"https://framerusercontent.com/images/qDhhFzQcjmecKSRoOQCWXntG3c.png\",srcSet:\"https://framerusercontent.com/images/qDhhFzQcjmecKSRoOQCWXntG3c.png?scale-down-to=512 512w,https://framerusercontent.com/images/qDhhFzQcjmecKSRoOQCWXntG3c.png 1024w\"}},cdtFCg9JZ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+216+0+960+0+0),pixelHeight:1024,pixelWidth:1024,sizes:`calc(${componentViewport?.width||\"100vw\"} - 20px)`,src:\"https://framerusercontent.com/images/MJs4OSRrkUdKA5BDNSzVi7vmvw.png\",srcSet:\"https://framerusercontent.com/images/MJs4OSRrkUdKA5BDNSzVi7vmvw.png?scale-down-to=512 512w,https://framerusercontent.com/images/MJs4OSRrkUdKA5BDNSzVi7vmvw.png 1024w\"}},IXZoiaIVl:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+216+0+960+0+0),pixelHeight:1024,pixelWidth:1024,sizes:`calc(${componentViewport?.width||\"100vw\"} - 20px)`,src:\"https://framerusercontent.com/images/qDhhFzQcjmecKSRoOQCWXntG3c.png\",srcSet:\"https://framerusercontent.com/images/qDhhFzQcjmecKSRoOQCWXntG3c.png?scale-down-to=512 512w,https://framerusercontent.com/images/qDhhFzQcjmecKSRoOQCWXntG3c.png 1024w\"}},LB3jgI772:{background:{alt:\"\",fit:\"fill\",pixelHeight:1024,pixelWidth:1024,sizes:\"456px\",src:\"https://framerusercontent.com/images/MJs4OSRrkUdKA5BDNSzVi7vmvw.png\",srcSet:\"https://framerusercontent.com/images/MJs4OSRrkUdKA5BDNSzVi7vmvw.png?scale-down-to=512 512w,https://framerusercontent.com/images/MJs4OSRrkUdKA5BDNSzVi7vmvw.png 1024w\"}},ubg2cFLVX:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+20+130+0+498+0+0),pixelHeight:1024,pixelWidth:1024,sizes:\"456px\",src:\"https://framerusercontent.com/images/MJs4OSRrkUdKA5BDNSzVi7vmvw.png\",srcSet:\"https://framerusercontent.com/images/MJs4OSRrkUdKA5BDNSzVi7vmvw.png?scale-down-to=512 512w,https://framerusercontent.com/images/MJs4OSRrkUdKA5BDNSzVi7vmvw.png 1024w\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pwq6wh\",\"data-framer-name\":\"Small Icon Grid\",layoutDependency:layoutDependency,layoutId:\"H22PIulc3\",children:[isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qujd6\",\"data-framer-name\":\"Small Icon Grid Row\",layoutDependency:layoutDependency,layoutId:\"CuHQFLNM2\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:213,width:`max((${componentViewport?.width||\"100vw\"} - 88px) / 2, 1px)`,...addPropertyOverrides({ArKIJTLL8:{y:(componentViewport?.y||0)+20+130+0+0+0+0+0},IXZoiaIVl:{width:`calc(${componentViewport?.width||\"100vw\"} - 20px)`,y:(componentViewport?.y||0)+10+216+0+0+0+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1i992xd-container\",layoutDependency:layoutDependency,layoutId:\"KoqDT1v7H-container\",nodeId:\"KoqDT1v7H\",rendersWithMotion:true,scopeId:\"pag7V5EkB\",children:/*#__PURE__*/_jsx(SmallIconItem,{eK85FU2LU:\"AI vision solutions require specialized data science teams to implement and maintain.\",height:\"100%\",hl0mVYZYu:\"Expert Dependence\",id:\"KoqDT1v7H\",iz8MDozuX:18,layoutId:\"KoqDT1v7H\",style:{width:\"100%\"},variant:\"ciOusV6AK\",vv3vXVh7v:\"Groups\",width:\"100%\",...addPropertyOverrides({IXZoiaIVl:{iz8MDozuX:12},LB3jgI772:{eK85FU2LU:\"Integrate data from different sensor types and a suite of camera brands and types. \",hl0mVYZYu:\"Multi-Sensor/Multi-Camera Integration\",vv3vXVh7v:\"Sensors\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:213,width:`max((${componentViewport?.width||\"100vw\"} - 88px) / 2, 1px)`,...addPropertyOverrides({ArKIJTLL8:{y:(componentViewport?.y||0)+20+130+0+0+0+0+0},IXZoiaIVl:{width:`calc(${componentViewport?.width||\"100vw\"} - 20px)`,y:(componentViewport?.y||0)+10+216+0+0+0+0+0+249}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1azcpmn-container\",layoutDependency:layoutDependency,layoutId:\"EGsjWZ2A1-container\",nodeId:\"EGsjWZ2A1\",rendersWithMotion:true,scopeId:\"pag7V5EkB\",children:/*#__PURE__*/_jsx(SmallIconItem,{eK85FU2LU:\"Solutions force manufacturers to choose application-specific tools that don't scale.\",height:\"100%\",hl0mVYZYu:\"Scalability Barrier\",id:\"EGsjWZ2A1\",iz8MDozuX:18,layoutId:\"EGsjWZ2A1\",style:{width:\"100%\"},variant:\"ciOusV6AK\",vv3vXVh7v:\"TrendingDown\",width:\"100%\",...addPropertyOverrides({LB3jgI772:{eK85FU2LU:\"Remotely manage and scale AI vision across your factories in an unlimited # of applications.\",hl0mVYZYu:\"Remote Cloud-Edge Integration\",vv3vXVh7v:\"DeviceHub\"}},baseVariant,gestureVariant)})})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mltj62\",\"data-framer-name\":\"Small Icon Grid Row\",layoutDependency:layoutDependency,layoutId:\"wdssNsS_l\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:213,width:`max((${componentViewport?.width||\"100vw\"} - 88px) / 2, 1px)`,...addPropertyOverrides({ArKIJTLL8:{y:(componentViewport?.y||0)+20+130+0+0+0+285+0},IXZoiaIVl:{width:`calc(${componentViewport?.width||\"100vw\"} - 20px)`,y:(componentViewport?.y||0)+10+216+0+0+0+498+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-hbvb04-container\",layoutDependency:layoutDependency,layoutId:\"a1K8z9xDw-container\",nodeId:\"a1K8z9xDw\",rendersWithMotion:true,scopeId:\"pag7V5EkB\",children:/*#__PURE__*/_jsx(SmallIconItem,{eK85FU2LU:\"Solutions force manufacturers to choose  generic platforms missing critical workflow components.\",height:\"100%\",hl0mVYZYu:\"Workflow Gaps\",id:\"a1K8z9xDw\",iz8MDozuX:18,layoutId:\"a1K8z9xDw\",style:{width:\"100%\"},variant:\"ciOusV6AK\",vv3vXVh7v:\"Splitscreen\",width:\"100%\",...addPropertyOverrides({LB3jgI772:{eK85FU2LU:\"Leverage your teams\u2019 deep domain expertise. Operators use the tools to continuously improve the AI.\",hl0mVYZYu:\"Operator Knowledge\",vv3vXVh7v:\"School\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:213,width:`max((${componentViewport?.width||\"100vw\"} - 88px) / 2, 1px)`,...addPropertyOverrides({ArKIJTLL8:{y:(componentViewport?.y||0)+20+130+0+0+0+285+0},IXZoiaIVl:{width:`calc(${componentViewport?.width||\"100vw\"} - 20px)`,y:(componentViewport?.y||0)+10+216+0+0+0+498+0+249}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-131btjj-container\",layoutDependency:layoutDependency,layoutId:\"JwKViN3o5-container\",nodeId:\"JwKViN3o5\",rendersWithMotion:true,scopeId:\"pag7V5EkB\",children:/*#__PURE__*/_jsx(SmallIconItem,{eK85FU2LU:\"The time required to achieve ROI can be extensive.\",height:\"100%\",hl0mVYZYu:\"Delayed Returns\",id:\"JwKViN3o5\",iz8MDozuX:18,layoutId:\"JwKViN3o5\",style:{width:\"100%\"},variant:\"ciOusV6AK\",vv3vXVh7v:\"HourglassEmpty\",width:\"100%\",...addPropertyOverrides({LB3jgI772:{eK85FU2LU:\"Connect quality data with process data, delivering insights beyond defect detection.\",hl0mVYZYu:\"Process Integration\",vv3vXVh7v:\"SyncAlt\"}},baseVariant,gestureVariant)})})})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lzial\",\"data-framer-name\":\"Small Icon Grid\",layoutDependency:layoutDependency,layoutId:\"DEQI9EYzL\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-keh2mo\",\"data-framer-name\":\"Small Icon Grid Row\",layoutDependency:layoutDependency,layoutId:\"p9PmbegvQ\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:213,...addPropertyOverrides({ubg2cFLVX:{width:`max((${componentViewport?.width||\"100vw\"} - 88px) / 2, 1px)`,y:(componentViewport?.y||0)+20+130+0+0+0+0+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-2dset-container\",layoutDependency:layoutDependency,layoutId:\"uZNQdZTYD-container\",nodeId:\"uZNQdZTYD\",rendersWithMotion:true,scopeId:\"pag7V5EkB\",children:/*#__PURE__*/_jsx(SmallIconItem,{eK85FU2LU:\"Integrate  data from different sensor types and a suite of camera brands and types. \",height:\"100%\",hl0mVYZYu:\"Multi-Sensor/Multi-Camera Integration\",id:\"uZNQdZTYD\",iz8MDozuX:18,layoutId:\"uZNQdZTYD\",style:{width:\"100%\"},variant:\"ciOusV6AK\",vv3vXVh7v:\"Sensors\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:213,...addPropertyOverrides({ubg2cFLVX:{width:`max((${componentViewport?.width||\"100vw\"} - 88px) / 2, 1px)`,y:(componentViewport?.y||0)+20+130+0+0+0+0+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-zckyip-container\",layoutDependency:layoutDependency,layoutId:\"ZcQ5tg4Hu-container\",nodeId:\"ZcQ5tg4Hu\",rendersWithMotion:true,scopeId:\"pag7V5EkB\",children:/*#__PURE__*/_jsx(SmallIconItem,{eK85FU2LU:\"Remotely manage and scale AI vision across your factories in an unlimited # of applications.\",height:\"100%\",hl0mVYZYu:\"Remote Cloud-Edge Integration\",id:\"ZcQ5tg4Hu\",iz8MDozuX:18,layoutId:\"ZcQ5tg4Hu\",style:{width:\"100%\"},variant:\"ciOusV6AK\",vv3vXVh7v:\"DeviceHub\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1s3tvas\",\"data-framer-name\":\"Small Icon Grid Row\",layoutDependency:layoutDependency,layoutId:\"iWWq0SL0s\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:213,...addPropertyOverrides({ubg2cFLVX:{width:`max((${componentViewport?.width||\"100vw\"} - 88px) / 2, 1px)`,y:(componentViewport?.y||0)+20+130+0+0+0+0+0+285+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1avenov-container\",layoutDependency:layoutDependency,layoutId:\"HUAY14ehx-container\",nodeId:\"HUAY14ehx\",rendersWithMotion:true,scopeId:\"pag7V5EkB\",children:/*#__PURE__*/_jsx(SmallIconItem,{eK85FU2LU:\"Leverage your teams\u2019 deep domain expertise.   Operators use the tools to continuously improve the AI.\",height:\"100%\",hl0mVYZYu:\"Operator Knowledge\",id:\"HUAY14ehx\",iz8MDozuX:18,layoutId:\"HUAY14ehx\",style:{width:\"100%\"},variant:\"ciOusV6AK\",vv3vXVh7v:\"School\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:213,...addPropertyOverrides({ubg2cFLVX:{width:`max((${componentViewport?.width||\"100vw\"} - 88px) / 2, 1px)`,y:(componentViewport?.y||0)+20+130+0+0+0+0+0+285+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-16fqhc7-container\",layoutDependency:layoutDependency,layoutId:\"gf25mXwEh-container\",nodeId:\"gf25mXwEh\",rendersWithMotion:true,scopeId:\"pag7V5EkB\",children:/*#__PURE__*/_jsx(SmallIconItem,{eK85FU2LU:\"connect quality data with process data, delivering insights beyond defect detection.\",height:\"100%\",hl0mVYZYu:\"Process Integration\",id:\"gf25mXwEh\",iz8MDozuX:18,layoutId:\"gf25mXwEh\",style:{width:\"100%\"},variant:\"ciOusV6AK\",vv3vXVh7v:\"SyncAlt\",width:\"100%\"})})})]})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-equuop\",\"data-framer-name\":\"Small Icon Grid Row\",layoutDependency:layoutDependency,layoutId:\"OqMFjAaXl\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:213,...addPropertyOverrides({cdtFCg9JZ:{width:`calc(${componentViewport?.width||\"100vw\"} - 20px)`,y:(componentViewport?.y||0)+10+216+0+0+0+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-151w4u0-container\",layoutDependency:layoutDependency,layoutId:\"oCEJ5QTuK-container\",nodeId:\"oCEJ5QTuK\",rendersWithMotion:true,scopeId:\"pag7V5EkB\",children:/*#__PURE__*/_jsx(SmallIconItem,{eK85FU2LU:\"Integrate  data from different sensor types and a suite of camera brands and types. \",height:\"100%\",hl0mVYZYu:\"Multi-Sensor/Multi-Camera Integration\",id:\"oCEJ5QTuK\",iz8MDozuX:12,layoutId:\"oCEJ5QTuK\",style:{width:\"100%\"},variant:\"ciOusV6AK\",vv3vXVh7v:\"Sensors\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:213,...addPropertyOverrides({cdtFCg9JZ:{width:`calc(${componentViewport?.width||\"100vw\"} - 20px)`,y:(componentViewport?.y||0)+10+216+0+0+0+0+0+249}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1faw4fk-container\",layoutDependency:layoutDependency,layoutId:\"bfL7a7DSU-container\",nodeId:\"bfL7a7DSU\",rendersWithMotion:true,scopeId:\"pag7V5EkB\",children:/*#__PURE__*/_jsx(SmallIconItem,{eK85FU2LU:\"Remotely manage and scale AI vision across your factories in an unlimited # of applications.\",height:\"100%\",hl0mVYZYu:\"Remote Cloud-Edge Integration\",id:\"bfL7a7DSU\",iz8MDozuX:12,layoutId:\"bfL7a7DSU\",style:{width:\"100%\"},variant:\"ciOusV6AK\",vv3vXVh7v:\"DeviceHub\",width:\"100%\"})})})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9xqg9v\",\"data-framer-name\":\"Small Icon Grid Row\",layoutDependency:layoutDependency,layoutId:\"lo1aHZPax\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:213,...addPropertyOverrides({cdtFCg9JZ:{width:`calc(${componentViewport?.width||\"100vw\"} - 20px)`,y:(componentViewport?.y||0)+10+216+0+0+0+498+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-9oofl1-container\",layoutDependency:layoutDependency,layoutId:\"aPnKQRJ8A-container\",nodeId:\"aPnKQRJ8A\",rendersWithMotion:true,scopeId:\"pag7V5EkB\",children:/*#__PURE__*/_jsx(SmallIconItem,{eK85FU2LU:\"Leverage your teams\u2019 deep domain expertise.   Operators use the tools to continuously improve the AI.\",height:\"100%\",hl0mVYZYu:\"Operator Knowledge\",id:\"aPnKQRJ8A\",iz8MDozuX:12,layoutId:\"aPnKQRJ8A\",style:{width:\"100%\"},variant:\"ciOusV6AK\",vv3vXVh7v:\"School\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:213,...addPropertyOverrides({cdtFCg9JZ:{width:`calc(${componentViewport?.width||\"100vw\"} - 20px)`,y:(componentViewport?.y||0)+10+216+0+0+0+498+0+249}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-11r4drl-container\",layoutDependency:layoutDependency,layoutId:\"qpqheYJtL-container\",nodeId:\"qpqheYJtL\",rendersWithMotion:true,scopeId:\"pag7V5EkB\",children:/*#__PURE__*/_jsx(SmallIconItem,{eK85FU2LU:\"connect quality data with process data, delivering insights beyond defect detection.\",height:\"100%\",hl0mVYZYu:\"Process Integration\",id:\"qpqheYJtL\",iz8MDozuX:12,layoutId:\"qpqheYJtL\",style:{width:\"100%\"},variant:\"ciOusV6AK\",vv3vXVh7v:\"SyncAlt\",width:\"100%\"})})})]})]})]}),isDisplayed4()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-176lpii\",\"data-framer-name\":\"Tab Content 2\",layoutDependency:layoutDependency,layoutId:\"WJvPXSDHS\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wmg507\",\"data-framer-name\":\"Container - S\",layoutDependency:layoutDependency,layoutId:\"A1n823VuO\",style:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},variants:{NpZj2rFzI:{borderBottomLeftRadius:3,borderBottomRightRadius:3,borderTopLeftRadius:3,borderTopRightRadius:3}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:900,pixelWidth:1440,src:\"https://framerusercontent.com/images/m4m6HTjIYTzT7mLTZSX4khUXkLY.webp\",srcSet:\"https://framerusercontent.com/images/m4m6HTjIYTzT7mLTZSX4khUXkLY.webp?scale-down-to=512 512w,https://framerusercontent.com/images/m4m6HTjIYTzT7mLTZSX4khUXkLY.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/m4m6HTjIYTzT7mLTZSX4khUXkLY.webp 1440w\"},className:\"framer-kff99y\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"vOuom4rPF\",style:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},variants:{NpZj2rFzI:{borderBottomLeftRadius:3,borderBottomRightRadius:3,borderTopLeftRadius:3,borderTopRightRadius:3}},...addPropertyOverrides({cqVPCDuLg:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+20+130+0+0+0),pixelHeight:1024,pixelWidth:1024,sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 456px)`,src:\"https://framerusercontent.com/images/wocW0ipSig3AqvppaZXbjuHbk.png\",srcSet:\"https://framerusercontent.com/images/wocW0ipSig3AqvppaZXbjuHbk.png?scale-down-to=512 512w,https://framerusercontent.com/images/wocW0ipSig3AqvppaZXbjuHbk.png 1024w\"}},NpZj2rFzI:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+216+0+1056+0+0),pixelHeight:1024,pixelWidth:1024,sizes:`calc(${componentViewport?.width||\"100vw\"} - 20px)`,src:\"https://framerusercontent.com/images/wocW0ipSig3AqvppaZXbjuHbk.png\",srcSet:\"https://framerusercontent.com/images/wocW0ipSig3AqvppaZXbjuHbk.png?scale-down-to=512 512w,https://framerusercontent.com/images/wocW0ipSig3AqvppaZXbjuHbk.png 1024w\"}},S1k3JwtJV:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+20+130+0+594+0+0),pixelHeight:1024,pixelWidth:1024,sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 456px)`,src:\"https://framerusercontent.com/images/wocW0ipSig3AqvppaZXbjuHbk.png\",srcSet:\"https://framerusercontent.com/images/wocW0ipSig3AqvppaZXbjuHbk.png?scale-down-to=512 512w,https://framerusercontent.com/images/wocW0ipSig3AqvppaZXbjuHbk.png 1024w\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-uictz6\",\"data-framer-name\":\"Small Icon Grid\",layoutDependency:layoutDependency,layoutId:\"bgv9VFgDD\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5z6uou\",\"data-framer-name\":\"Small Icon Grid\",layoutDependency:layoutDependency,layoutId:\"XAaz26kM3\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-j0nix7\",\"data-framer-name\":\"Small Icon Grid Row\",layoutDependency:layoutDependency,layoutId:\"zRSxhqtLR\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:213,...addPropertyOverrides({cqVPCDuLg:{width:`max((max((${componentViewport?.width||\"100vw\"} - 40px) * 0 - 96px, 1px) - 48px) / 2, 1px)`,y:(componentViewport?.y||0)+20+130+0+0+0+0+0+0},NpZj2rFzI:{width:`calc(${componentViewport?.width||\"100vw\"} - 20px)`,y:(componentViewport?.y||0)+10+216+0+0+0+0+0+0+0+0},S1k3JwtJV:{width:`max((${componentViewport?.width||\"100vw\"} - 88px) / 2, 1px)`,y:(componentViewport?.y||0)+20+130+0+0+0+0+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ktnwly-container\",layoutDependency:layoutDependency,layoutId:\"kghhrV5Ow-container\",nodeId:\"kghhrV5Ow\",rendersWithMotion:true,scopeId:\"pag7V5EkB\",children:/*#__PURE__*/_jsx(SmallIconItem,{eK85FU2LU:\"We work with your current vision hardware, helping you extract more value from the data you already have.\",height:\"100%\",hl0mVYZYu:\"Data Maximization\",id:\"kghhrV5Ow\",iz8MDozuX:18,layoutId:\"kghhrV5Ow\",style:{width:\"100%\"},variant:\"ciOusV6AK\",vv3vXVh7v:\"Insights\",width:\"100%\",...addPropertyOverrides({cqVPCDuLg:{hl0mVYZYu:\"Accelerated ROI\"},NpZj2rFzI:{hl0mVYZYu:\"Accelerated ROI\",iz8MDozuX:12},S1k3JwtJV:{hl0mVYZYu:\"Accelerated ROI\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:213,...addPropertyOverrides({cqVPCDuLg:{width:`max((max((${componentViewport?.width||\"100vw\"} - 40px) * 0 - 96px, 1px) - 48px) / 2, 1px)`,y:(componentViewport?.y||0)+20+130+0+0+0+0+0+0},NpZj2rFzI:{width:`calc(${componentViewport?.width||\"100vw\"} - 20px)`,y:(componentViewport?.y||0)+10+216+0+0+0+0+0+0+0+249},S1k3JwtJV:{width:`max((${componentViewport?.width||\"100vw\"} - 88px) / 2, 1px)`,y:(componentViewport?.y||0)+20+130+0+0+0+0+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1s4uuqd-container\",layoutDependency:layoutDependency,layoutId:\"Xb0Jgnr8H-container\",nodeId:\"Xb0Jgnr8H\",rendersWithMotion:true,scopeId:\"pag7V5EkB\",children:/*#__PURE__*/_jsx(SmallIconItem,{eK85FU2LU:\"We help you test if AI can work in your production  without having to invest considerable time and money.\",height:\"100%\",hl0mVYZYu:\"AI Validation\",id:\"Xb0Jgnr8H\",iz8MDozuX:18,layoutId:\"Xb0Jgnr8H\",style:{width:\"100%\"},variant:\"ciOusV6AK\",vv3vXVh7v:\"TaskAlt\",width:\"100%\",...addPropertyOverrides({cqVPCDuLg:{hl0mVYZYu:\"Risk Free AI Introduction\"},NpZj2rFzI:{hl0mVYZYu:\"Risk Free AI Introduction\",iz8MDozuX:12},S1k3JwtJV:{hl0mVYZYu:\"Risk Free AI Introduction\"}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jlo4q7\",\"data-framer-name\":\"Small Icon Grid Row\",layoutDependency:layoutDependency,layoutId:\"FZ09JNZbc\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:213,...addPropertyOverrides({cqVPCDuLg:{width:`max((max((${componentViewport?.width||\"100vw\"} - 40px) * 0 - 96px, 1px) - 48px) / 2, 1px)`,y:(componentViewport?.y||0)+20+130+0+0+0+0+285+0},NpZj2rFzI:{width:`calc(${componentViewport?.width||\"100vw\"} - 20px)`,y:(componentViewport?.y||0)+10+216+0+0+0+0+0+498+0+0},S1k3JwtJV:{width:`max((${componentViewport?.width||\"100vw\"} - 88px) / 2, 1px)`,y:(componentViewport?.y||0)+20+130+0+0+0+0+0+285+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-o674n7-container\",layoutDependency:layoutDependency,layoutId:\"HvjgEm1wj-container\",nodeId:\"HvjgEm1wj\",rendersWithMotion:true,scopeId:\"pag7V5EkB\",children:/*#__PURE__*/_jsx(SmallIconItem,{eK85FU2LU:\"We help you apply AI where it solves real problems.\",height:\"100%\",hl0mVYZYu:\"Targeted AI\",id:\"HvjgEm1wj\",iz8MDozuX:18,layoutId:\"HvjgEm1wj\",style:{width:\"100%\"},variant:\"ciOusV6AK\",vv3vXVh7v:\"CenterFocusStrong\",width:\"100%\",...addPropertyOverrides({cqVPCDuLg:{hl0mVYZYu:\"Outcome Focused AI\"},NpZj2rFzI:{hl0mVYZYu:\"Outcome Focused AI\",iz8MDozuX:12},S1k3JwtJV:{hl0mVYZYu:\"Outcome Focused AI\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:213,...addPropertyOverrides({cqVPCDuLg:{width:`max((max((${componentViewport?.width||\"100vw\"} - 40px) * 0 - 96px, 1px) - 48px) / 2, 1px)`,y:(componentViewport?.y||0)+20+130+0+0+0+0+285+0},NpZj2rFzI:{width:`calc(${componentViewport?.width||\"100vw\"} - 20px)`,y:(componentViewport?.y||0)+10+216+0+0+0+0+0+498+0+249},S1k3JwtJV:{width:`max((${componentViewport?.width||\"100vw\"} - 88px) / 2, 1px)`,y:(componentViewport?.y||0)+20+130+0+0+0+0+0+285+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-jvrn4g-container\",layoutDependency:layoutDependency,layoutId:\"dYrfGoaNf-container\",nodeId:\"dYrfGoaNf\",rendersWithMotion:true,scopeId:\"pag7V5EkB\",children:/*#__PURE__*/_jsx(SmallIconItem,{eK85FU2LU:\"We give you tools to easily deploy and manage your AI at scale.\",height:\"100%\",hl0mVYZYu:\"AI Deployment\",id:\"dYrfGoaNf\",iz8MDozuX:18,layoutId:\"dYrfGoaNf\",style:{width:\"100%\"},variant:\"ciOusV6AK\",vv3vXVh7v:\"CloudDone\",width:\"100%\",...addPropertyOverrides({cqVPCDuLg:{hl0mVYZYu:\"Easy to Manage & Deploy\"},NpZj2rFzI:{hl0mVYZYu:\"Easy to Manage & Deploy\",iz8MDozuX:12},S1k3JwtJV:{hl0mVYZYu:\"Easy to Manage & Deploy\"}},baseVariant,gestureVariant)})})})]})]})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ceMTu.framer-ovet9w, .framer-ceMTu .framer-ovet9w { display: block; }\",\".framer-ceMTu.framer-y3v67x { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 72px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px; position: relative; width: 1152px; }\",\".framer-ceMTu .framer-bpm3y0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 9px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ceMTu .framer-1kasuek-container, .framer-ceMTu .framer-1bcyr51-container, .framer-ceMTu .framer-11ax5p-container, .framer-ceMTu .framer-1i992xd-container, .framer-ceMTu .framer-1azcpmn-container, .framer-ceMTu .framer-hbvb04-container, .framer-ceMTu .framer-131btjj-container, .framer-ceMTu .framer-2dset-container, .framer-ceMTu .framer-zckyip-container, .framer-ceMTu .framer-1avenov-container, .framer-ceMTu .framer-16fqhc7-container, .framer-ceMTu .framer-ktnwly-container, .framer-ceMTu .framer-1s4uuqd-container, .framer-ceMTu .framer-o674n7-container, .framer-ceMTu .framer-jvrn4g-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-ceMTu .framer-1k5cudi { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: calc(max(0, var(--1mnhml4)) * 1px); height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ceMTu .framer-9wv1wy { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 456px; justify-content: flex-start; max-width: 456px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-ceMTu .framer-13kt4jp { aspect-ratio: 1 / 1; flex: 1 0 0px; height: 1px; position: relative; width: var(--framer-aspect-ratio-supported, 456px); }\",\".framer-ceMTu .framer-pwq6wh, .framer-ceMTu .framer-uictz6 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 72px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-ceMTu .framer-qujd6, .framer-ceMTu .framer-1mltj62, .framer-ceMTu .framer-keh2mo, .framer-ceMTu .framer-1s3tvas, .framer-ceMTu .framer-j0nix7, .framer-ceMTu .framer-jlo4q7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ceMTu .framer-lzial, .framer-ceMTu .framer-5z6uou { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 72px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ceMTu .framer-equuop, .framer-ceMTu .framer-9xqg9v { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ceMTu .framer-151w4u0-container, .framer-ceMTu .framer-1faw4fk-container, .framer-ceMTu .framer-9oofl1-container, .framer-ceMTu .framer-11r4drl-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-ceMTu .framer-176lpii { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 96px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ceMTu .framer-1wmg507 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 456px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ceMTu .framer-kff99y { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 200px); position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ceMTu.framer-y3v67x, .framer-ceMTu .framer-bpm3y0, .framer-ceMTu .framer-1k5cudi, .framer-ceMTu .framer-9wv1wy, .framer-ceMTu .framer-pwq6wh, .framer-ceMTu .framer-qujd6, .framer-ceMTu .framer-1mltj62, .framer-ceMTu .framer-lzial, .framer-ceMTu .framer-keh2mo, .framer-ceMTu .framer-1s3tvas, .framer-ceMTu .framer-equuop, .framer-ceMTu .framer-9xqg9v, .framer-ceMTu .framer-176lpii, .framer-ceMTu .framer-1wmg507, .framer-ceMTu .framer-uictz6, .framer-ceMTu .framer-5z6uou, .framer-ceMTu .framer-j0nix7, .framer-ceMTu .framer-jlo4q7 { gap: 0px; } .framer-ceMTu.framer-y3v67x > *, .framer-ceMTu .framer-pwq6wh > *, .framer-ceMTu .framer-lzial > *, .framer-ceMTu .framer-uictz6 > *, .framer-ceMTu .framer-5z6uou > * { margin: 0px; margin-bottom: calc(72px / 2); margin-top: calc(72px / 2); } .framer-ceMTu.framer-y3v67x > :first-child, .framer-ceMTu .framer-9wv1wy > :first-child, .framer-ceMTu .framer-pwq6wh > :first-child, .framer-ceMTu .framer-lzial > :first-child, .framer-ceMTu .framer-equuop > :first-child, .framer-ceMTu .framer-9xqg9v > :first-child, .framer-ceMTu .framer-1wmg507 > :first-child, .framer-ceMTu .framer-uictz6 > :first-child, .framer-ceMTu .framer-5z6uou > :first-child { margin-top: 0px; } .framer-ceMTu.framer-y3v67x > :last-child, .framer-ceMTu .framer-9wv1wy > :last-child, .framer-ceMTu .framer-pwq6wh > :last-child, .framer-ceMTu .framer-lzial > :last-child, .framer-ceMTu .framer-equuop > :last-child, .framer-ceMTu .framer-9xqg9v > :last-child, .framer-ceMTu .framer-1wmg507 > :last-child, .framer-ceMTu .framer-uictz6 > :last-child, .framer-ceMTu .framer-5z6uou > :last-child { margin-bottom: 0px; } .framer-ceMTu .framer-bpm3y0 > * { margin: 0px; margin-left: calc(9px / 2); margin-right: calc(9px / 2); } .framer-ceMTu .framer-bpm3y0 > :first-child, .framer-ceMTu .framer-1k5cudi > :first-child, .framer-ceMTu .framer-qujd6 > :first-child, .framer-ceMTu .framer-1mltj62 > :first-child, .framer-ceMTu .framer-keh2mo > :first-child, .framer-ceMTu .framer-1s3tvas > :first-child, .framer-ceMTu .framer-176lpii > :first-child, .framer-ceMTu .framer-j0nix7 > :first-child, .framer-ceMTu .framer-jlo4q7 > :first-child { margin-left: 0px; } .framer-ceMTu .framer-bpm3y0 > :last-child, .framer-ceMTu .framer-1k5cudi > :last-child, .framer-ceMTu .framer-qujd6 > :last-child, .framer-ceMTu .framer-1mltj62 > :last-child, .framer-ceMTu .framer-keh2mo > :last-child, .framer-ceMTu .framer-1s3tvas > :last-child, .framer-ceMTu .framer-176lpii > :last-child, .framer-ceMTu .framer-j0nix7 > :last-child, .framer-ceMTu .framer-jlo4q7 > :last-child { margin-right: 0px; } .framer-ceMTu .framer-1k5cudi > * { margin: 0px; margin-left: calc(calc(max(0, var(--1mnhml4)) * 1px) / 2); margin-right: calc(calc(max(0, var(--1mnhml4)) * 1px) / 2); } .framer-ceMTu .framer-9wv1wy > *, .framer-ceMTu .framer-1wmg507 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-ceMTu .framer-qujd6 > *, .framer-ceMTu .framer-1mltj62 > *, .framer-ceMTu .framer-keh2mo > *, .framer-ceMTu .framer-1s3tvas > *, .framer-ceMTu .framer-j0nix7 > *, .framer-ceMTu .framer-jlo4q7 > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-ceMTu .framer-equuop > *, .framer-ceMTu .framer-9xqg9v > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-ceMTu .framer-176lpii > * { margin: 0px; margin-left: calc(96px / 2); margin-right: calc(96px / 2); } }\",\".framer-ceMTu.framer-v-1d6qmlj .framer-kff99y, .framer-ceMTu.framer-v-1pbffjs .framer-kff99y { height: var(--framer-aspect-ratio-supported, 456px); }\",\".framer-ceMTu.framer-v-ww4ovc.framer-y3v67x, .framer-ceMTu.framer-v-1pbffjs.framer-y3v67x, .framer-ceMTu.framer-v-agfedw.framer-y3v67x { width: 810px; }\",\".framer-ceMTu.framer-v-ww4ovc .framer-1k5cudi, .framer-ceMTu.framer-v-1pbffjs .framer-176lpii, .framer-ceMTu.framer-v-agfedw .framer-1k5cudi, .framer-ceMTu.framer-v-pbd5sr .framer-bpm3y0, .framer-ceMTu.framer-v-pbd5sr .framer-1k5cudi, .framer-ceMTu.framer-v-r70w3a .framer-bpm3y0, .framer-ceMTu.framer-v-r70w3a .framer-176lpii, .framer-ceMTu.framer-v-5ymd4 .framer-bpm3y0 { flex-direction: column; }\",\".framer-ceMTu.framer-v-ww4ovc .framer-9wv1wy, .framer-ceMTu.framer-v-agfedw .framer-9wv1wy { flex: none; order: 1; width: 100%; }\",\".framer-ceMTu.framer-v-ww4ovc .framer-pwq6wh, .framer-ceMTu.framer-v-1pbffjs .framer-uictz6, .framer-ceMTu.framer-v-agfedw .framer-pwq6wh { flex: none; order: 0; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ceMTu.framer-v-ww4ovc .framer-1k5cudi { gap: 0px; } .framer-ceMTu.framer-v-ww4ovc .framer-1k5cudi > * { margin: 0px; margin-bottom: calc(calc(max(0, var(--1mnhml4)) * 1px) / 2); margin-top: calc(calc(max(0, var(--1mnhml4)) * 1px) / 2); } .framer-ceMTu.framer-v-ww4ovc .framer-1k5cudi > :first-child { margin-top: 0px; } .framer-ceMTu.framer-v-ww4ovc .framer-1k5cudi > :last-child { margin-bottom: 0px; } }\",\".framer-ceMTu.framer-v-1pbffjs .framer-1wmg507, .framer-ceMTu.framer-v-5ymd4 .framer-1faw4fk-container { order: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ceMTu.framer-v-1pbffjs .framer-176lpii { gap: 0px; } .framer-ceMTu.framer-v-1pbffjs .framer-176lpii > * { margin: 0px; margin-bottom: calc(96px / 2); margin-top: calc(96px / 2); } .framer-ceMTu.framer-v-1pbffjs .framer-176lpii > :first-child { margin-top: 0px; } .framer-ceMTu.framer-v-1pbffjs .framer-176lpii > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ceMTu.framer-v-agfedw .framer-1k5cudi { gap: 0px; } .framer-ceMTu.framer-v-agfedw .framer-1k5cudi > * { margin: 0px; margin-bottom: calc(calc(max(0, var(--1mnhml4)) * 1px) / 2); margin-top: calc(calc(max(0, var(--1mnhml4)) * 1px) / 2); } .framer-ceMTu.framer-v-agfedw .framer-1k5cudi > :first-child { margin-top: 0px; } .framer-ceMTu.framer-v-agfedw .framer-1k5cudi > :last-child { margin-bottom: 0px; } }\",\".framer-ceMTu.framer-v-pbd5sr.framer-y3v67x, .framer-ceMTu.framer-v-r70w3a.framer-y3v67x, .framer-ceMTu.framer-v-5ymd4.framer-y3v67x { gap: 24px; padding: 10px; width: 390px; }\",\".framer-ceMTu.framer-v-pbd5sr .framer-1kasuek-container, .framer-ceMTu.framer-v-pbd5sr .framer-1bcyr51-container, .framer-ceMTu.framer-v-pbd5sr .framer-11ax5p-container, .framer-ceMTu.framer-v-pbd5sr .framer-1i992xd-container, .framer-ceMTu.framer-v-pbd5sr .framer-1azcpmn-container, .framer-ceMTu.framer-v-pbd5sr .framer-hbvb04-container, .framer-ceMTu.framer-v-pbd5sr .framer-131btjj-container, .framer-ceMTu.framer-v-r70w3a .framer-1kasuek-container, .framer-ceMTu.framer-v-r70w3a .framer-1bcyr51-container, .framer-ceMTu.framer-v-r70w3a .framer-11ax5p-container, .framer-ceMTu.framer-v-r70w3a .framer-ktnwly-container, .framer-ceMTu.framer-v-r70w3a .framer-1s4uuqd-container, .framer-ceMTu.framer-v-r70w3a .framer-o674n7-container, .framer-ceMTu.framer-v-r70w3a .framer-jvrn4g-container, .framer-ceMTu.framer-v-5ymd4 .framer-1kasuek-container, .framer-ceMTu.framer-v-5ymd4 .framer-1bcyr51-container, .framer-ceMTu.framer-v-5ymd4 .framer-11ax5p-container { flex: none; width: 100%; }\",\".framer-ceMTu.framer-v-pbd5sr .framer-9wv1wy { flex: none; max-width: unset; order: 1; width: 100%; }\",\".framer-ceMTu.framer-v-pbd5sr .framer-13kt4jp, .framer-ceMTu.framer-v-5ymd4 .framer-13kt4jp { aspect-ratio: unset; width: 100%; }\",\".framer-ceMTu.framer-v-pbd5sr .framer-pwq6wh, .framer-ceMTu.framer-v-r70w3a .framer-uictz6, .framer-ceMTu.framer-v-5ymd4 .framer-pwq6wh { flex: none; gap: 36px; order: 0; width: 100%; }\",\".framer-ceMTu.framer-v-pbd5sr .framer-qujd6, .framer-ceMTu.framer-v-pbd5sr .framer-1mltj62, .framer-ceMTu.framer-v-r70w3a .framer-j0nix7, .framer-ceMTu.framer-v-r70w3a .framer-jlo4q7 { flex-direction: column; gap: 36px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ceMTu.framer-v-pbd5sr.framer-y3v67x, .framer-ceMTu.framer-v-pbd5sr .framer-bpm3y0, .framer-ceMTu.framer-v-pbd5sr .framer-1k5cudi, .framer-ceMTu.framer-v-pbd5sr .framer-pwq6wh, .framer-ceMTu.framer-v-pbd5sr .framer-qujd6, .framer-ceMTu.framer-v-pbd5sr .framer-1mltj62 { gap: 0px; } .framer-ceMTu.framer-v-pbd5sr.framer-y3v67x > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-ceMTu.framer-v-pbd5sr.framer-y3v67x > :first-child, .framer-ceMTu.framer-v-pbd5sr .framer-bpm3y0 > :first-child, .framer-ceMTu.framer-v-pbd5sr .framer-1k5cudi > :first-child, .framer-ceMTu.framer-v-pbd5sr .framer-pwq6wh > :first-child, .framer-ceMTu.framer-v-pbd5sr .framer-qujd6 > :first-child, .framer-ceMTu.framer-v-pbd5sr .framer-1mltj62 > :first-child { margin-top: 0px; } .framer-ceMTu.framer-v-pbd5sr.framer-y3v67x > :last-child, .framer-ceMTu.framer-v-pbd5sr .framer-bpm3y0 > :last-child, .framer-ceMTu.framer-v-pbd5sr .framer-1k5cudi > :last-child, .framer-ceMTu.framer-v-pbd5sr .framer-pwq6wh > :last-child, .framer-ceMTu.framer-v-pbd5sr .framer-qujd6 > :last-child, .framer-ceMTu.framer-v-pbd5sr .framer-1mltj62 > :last-child { margin-bottom: 0px; } .framer-ceMTu.framer-v-pbd5sr .framer-bpm3y0 > * { margin: 0px; margin-bottom: calc(9px / 2); margin-top: calc(9px / 2); } .framer-ceMTu.framer-v-pbd5sr .framer-1k5cudi > * { margin: 0px; margin-bottom: calc(calc(max(0, var(--1mnhml4)) * 1px) / 2); margin-top: calc(calc(max(0, var(--1mnhml4)) * 1px) / 2); } .framer-ceMTu.framer-v-pbd5sr .framer-pwq6wh > *, .framer-ceMTu.framer-v-pbd5sr .framer-qujd6 > *, .framer-ceMTu.framer-v-pbd5sr .framer-1mltj62 > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } }\",\".framer-ceMTu.framer-v-r70w3a .framer-1wmg507 { height: 456px; max-width: unset; order: 1; }\",\".framer-ceMTu.framer-v-r70w3a .framer-kff99y { aspect-ratio: unset; flex: 1 0 0px; height: 1px; order: 0; }\",\".framer-ceMTu.framer-v-r70w3a .framer-5z6uou { gap: 36px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ceMTu.framer-v-r70w3a.framer-y3v67x, .framer-ceMTu.framer-v-r70w3a .framer-bpm3y0, .framer-ceMTu.framer-v-r70w3a .framer-176lpii, .framer-ceMTu.framer-v-r70w3a .framer-uictz6, .framer-ceMTu.framer-v-r70w3a .framer-5z6uou, .framer-ceMTu.framer-v-r70w3a .framer-j0nix7, .framer-ceMTu.framer-v-r70w3a .framer-jlo4q7 { gap: 0px; } .framer-ceMTu.framer-v-r70w3a.framer-y3v67x > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-ceMTu.framer-v-r70w3a.framer-y3v67x > :first-child, .framer-ceMTu.framer-v-r70w3a .framer-bpm3y0 > :first-child, .framer-ceMTu.framer-v-r70w3a .framer-176lpii > :first-child, .framer-ceMTu.framer-v-r70w3a .framer-uictz6 > :first-child, .framer-ceMTu.framer-v-r70w3a .framer-5z6uou > :first-child, .framer-ceMTu.framer-v-r70w3a .framer-j0nix7 > :first-child, .framer-ceMTu.framer-v-r70w3a .framer-jlo4q7 > :first-child { margin-top: 0px; } .framer-ceMTu.framer-v-r70w3a.framer-y3v67x > :last-child, .framer-ceMTu.framer-v-r70w3a .framer-bpm3y0 > :last-child, .framer-ceMTu.framer-v-r70w3a .framer-176lpii > :last-child, .framer-ceMTu.framer-v-r70w3a .framer-uictz6 > :last-child, .framer-ceMTu.framer-v-r70w3a .framer-5z6uou > :last-child, .framer-ceMTu.framer-v-r70w3a .framer-j0nix7 > :last-child, .framer-ceMTu.framer-v-r70w3a .framer-jlo4q7 > :last-child { margin-bottom: 0px; } .framer-ceMTu.framer-v-r70w3a .framer-bpm3y0 > * { margin: 0px; margin-bottom: calc(9px / 2); margin-top: calc(9px / 2); } .framer-ceMTu.framer-v-r70w3a .framer-176lpii > * { margin: 0px; margin-bottom: calc(96px / 2); margin-top: calc(96px / 2); } .framer-ceMTu.framer-v-r70w3a .framer-uictz6 > *, .framer-ceMTu.framer-v-r70w3a .framer-5z6uou > *, .framer-ceMTu.framer-v-r70w3a .framer-j0nix7 > *, .framer-ceMTu.framer-v-r70w3a .framer-jlo4q7 > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } }\",\".framer-ceMTu.framer-v-5ymd4 .framer-1k5cudi { flex-direction: column; height: 1202px; }\",\".framer-ceMTu.framer-v-5ymd4 .framer-9wv1wy { height: 1px; max-width: unset; order: 1; width: 100%; }\",\".framer-ceMTu.framer-v-5ymd4 .framer-equuop, .framer-ceMTu.framer-v-5ymd4 .framer-151w4u0-container { order: 0; }\",\".framer-ceMTu.framer-v-5ymd4 .framer-9xqg9v { order: 4; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ceMTu.framer-v-5ymd4.framer-y3v67x, .framer-ceMTu.framer-v-5ymd4 .framer-bpm3y0, .framer-ceMTu.framer-v-5ymd4 .framer-1k5cudi, .framer-ceMTu.framer-v-5ymd4 .framer-pwq6wh { gap: 0px; } .framer-ceMTu.framer-v-5ymd4.framer-y3v67x > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-ceMTu.framer-v-5ymd4.framer-y3v67x > :first-child, .framer-ceMTu.framer-v-5ymd4 .framer-bpm3y0 > :first-child, .framer-ceMTu.framer-v-5ymd4 .framer-1k5cudi > :first-child, .framer-ceMTu.framer-v-5ymd4 .framer-pwq6wh > :first-child { margin-top: 0px; } .framer-ceMTu.framer-v-5ymd4.framer-y3v67x > :last-child, .framer-ceMTu.framer-v-5ymd4 .framer-bpm3y0 > :last-child, .framer-ceMTu.framer-v-5ymd4 .framer-1k5cudi > :last-child, .framer-ceMTu.framer-v-5ymd4 .framer-pwq6wh > :last-child { margin-bottom: 0px; } .framer-ceMTu.framer-v-5ymd4 .framer-bpm3y0 > * { margin: 0px; margin-bottom: calc(9px / 2); margin-top: calc(9px / 2); } .framer-ceMTu.framer-v-5ymd4 .framer-1k5cudi > * { margin: 0px; margin-bottom: calc(calc(max(0, var(--1mnhml4)) * 1px) / 2); margin-top: calc(calc(max(0, var(--1mnhml4)) * 1px) / 2); } .framer-ceMTu.framer-v-5ymd4 .framer-pwq6wh > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } }\",'.framer-ceMTu[data-border=\"true\"]::after, .framer-ceMTu [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 626\n * @framerIntrinsicWidth 1152\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"cqVPCDuLg\":{\"layout\":[\"fixed\",\"auto\"]},\"LB3jgI772\":{\"layout\":[\"fixed\",\"auto\"]},\"ArKIJTLL8\":{\"layout\":[\"fixed\",\"auto\"]},\"S1k3JwtJV\":{\"layout\":[\"fixed\",\"auto\"]},\"ubg2cFLVX\":{\"layout\":[\"fixed\",\"auto\"]},\"IXZoiaIVl\":{\"layout\":[\"fixed\",\"auto\"]},\"NpZj2rFzI\":{\"layout\":[\"fixed\",\"auto\"]},\"cdtFCg9JZ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"Vm1DaRlZj\":\"contentGap\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Framerpag7V5EkB=withCSS(Component,css,\"framer-ceMTu\");export default Framerpag7V5EkB;Framerpag7V5EkB.displayName=\"Tabs/Content\";Framerpag7V5EkB.defaultProps={height:626,width:1152};addPropertyControls(Framerpag7V5EkB,{variant:{options:[\"eNd4u19uT\",\"cqVPCDuLg\",\"LB3jgI772\",\"ArKIJTLL8\",\"S1k3JwtJV\",\"ubg2cFLVX\",\"IXZoiaIVl\",\"NpZj2rFzI\",\"cdtFCg9JZ\"],optionTitles:[\"Tab 1\",\"Tab 2\",\"Tab 3\",\"Ipad \u2022 Tab 1\",\"Ipad \u2022 Tab 2\",\"Ipad \u2022 Tab 3\",\"Mobile \u2022 Tab 1\",\"Mobile \u2022 Tab 2\",\"Mobile \u2022 Tab 3\"],title:\"Variant\",type:ControlType.Enum},Vm1DaRlZj:{defaultValue:96,min:0,title:\"Content Gap\",type:ControlType.Number}});addFonts(Framerpag7V5EkB,[{explicitInter:true,fonts:[]},...TabsTabFonts,...SmallIconItemFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerpag7V5EkB\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1152\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"626\",\"framerVariables\":\"{\\\"Vm1DaRlZj\\\":\\\"contentGap\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"cqVPCDuLg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LB3jgI772\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ArKIJTLL8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"S1k3JwtJV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ubg2cFLVX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IXZoiaIVl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NpZj2rFzI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"cdtFCg9JZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./pag7V5EkB.map", "// Generated by Framer (9f1494d)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-eDUvc .framer-styles-preset-kyguwl:not(.rich-text-wrapper), .framer-eDUvc .framer-styles-preset-kyguwl.rich-text-wrapper a { --framer-link-current-text-color: #111111; --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: #dbfbff; --framer-link-hover-text-decoration: underline; --framer-link-text-color: #ffffff; --framer-link-text-decoration: underline; }\"];export const className=\"framer-eDUvc\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (47ebf4a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCSS,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/LHz3bw67SqHRmnCKTlE6/Ticker.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/gveXKR6bwXNSCLv12kr3/SlideShow.js\";import Footer4 from\"#framer/local/canvasComponent/c6IJbU3Ad/c6IJbU3Ad.js\";import Solutions from\"#framer/local/canvasComponent/gAzCZb4NN/gAzCZb4NN.js\";import Gsgs from\"#framer/local/canvasComponent/jiReBlm1J/jiReBlm1J.js\";import OneView from\"#framer/local/canvasComponent/MC2iiD4Yn/MC2iiD4Yn.js\";import ARROWCURSORS from\"#framer/local/canvasComponent/mDQb2IT55/mDQb2IT55.js\";import TabsContent from\"#framer/local/canvasComponent/pag7V5EkB/pag7V5EkB.js\";import Button2 from\"#framer/local/canvasComponent/uM1g3nJW0/uM1g3nJW0.js\";import NavSiteNav3 from\"#framer/local/canvasComponent/YMdpURw26/YMdpURw26.js\";import*as sharedStyle from\"#framer/local/css/W5JNhDchF/W5JNhDchF.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const ImageWithOptimizedAppearEffect=withOptimizedAppearEffect(Image);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const TabsContentFonts=getFonts(TabsContent);const GsgsFonts=getFonts(Gsgs);const OneViewFonts=getFonts(OneView);const Button2Fonts=getFonts(Button2);const SolutionsFonts=getFonts(Solutions);const SolutionsWithVariantAppearEffect=withVariantAppearEffect(Solutions);const SlideshowFonts=getFonts(Slideshow);const TickerFonts=getFonts(Ticker);const Footer4Fonts=getFonts(Footer4);const NavSiteNav3Fonts=getFonts(NavSiteNav3);const NavSiteNav3WithVariantAppearEffect=withVariantAppearEffect(NavSiteNav3);const ARROWCURSORSFonts=getFonts(ARROWCURSORS);const breakpoints={GOGgnO2a1:\"(max-width: 809px)\",P2z1YUs5o:\"(min-width: 810px) and (max-width: 1199px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-xAwlO\";const variantClassNames={GOGgnO2a1:\"framer-v-1h377n9\",P2z1YUs5o:\"framer-v-1qv7fnn\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={delay:0,duration:1,ease:[.44,0,.33,.99],type:\"tween\"};const animation={opacity:.7,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.1,skewX:0,skewY:0,x:0,y:0};const transition2={delay:.4,duration:.9,ease:[.44,0,.47,1.01],type:\"tween\"};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:0};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"GOGgnO2a1\",Tablet:\"P2z1YUs5o\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const transition3={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const cursor={component:ARROWCURSORS,transition:transition3,variant:\"GCzD_VcHs\"};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,dFVXJhBb7a6O7vlQbh,bHS0JIpata6O7vlQbh,j0YLt8w2wa6O7vlQbh,...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];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"M769sPu_B\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"zMCMWqZS9\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"GmaAY9a2F\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"cKn05ukHS\");const ref4=React.useRef(null);const router=useRouter();const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"GOGgnO2a1\")return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"GOGgnO2a1\")return false;return true;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"P2z1YUs5o\")return true;return false;};const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"P2z1YUs5o\")return false;return true;};useCustomCursors({\"1sm9dp8\":cursor});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(31, 67, 89); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1832i3w\",\"data-framer-name\":\"Hero\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0),pixelHeight:1232,pixelWidth:928,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/kasd24hUb1km9hsG3JIUkhkQeg.png\",srcSet:\"https://framerusercontent.com/images/kasd24hUb1km9hsG3JIUkhkQeg.png?scale-down-to=1024 771w,https://framerusercontent.com/images/kasd24hUb1km9hsG3JIUkhkQeg.png 928w\"},className:\"framer-6grjry\",\"data-framer-appear-id\":\"6grjry\",\"data-framer-name\":\"Image\",initial:animation1,optimized:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-rc5c0z\",\"data-framer-name\":\"Gradient\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-bpc5dt\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation2,className:\"framer-i3sh7e\",\"data-framer-appear-id\":\"i3sh7e\",\"data-framer-name\":\"Heading Wrapper\",initial:animation3,optimized:true,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i7o8oy\",\"data-framer-name\":\"Title Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GOGgnO2a1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0JETyBHcm90ZXNrIFJlZ3VsYXI=\",\"--framer-font-family\":'\"BDO Grotesk Regular\", \"BDO Grotesk Regular Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--token-350e638f-adb3-4bff-9aff-42231f5b33fc, rgb(255, 255, 255))\"},children:[\"AI Powered Vision\",/*#__PURE__*/_jsx(\"br\",{}),\"Seeing Beyond Defects\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0JETyBHcm90ZXNrIFJlZ3VsYXI=\",\"--framer-font-family\":'\"BDO Grotesk Regular\", \"BDO Grotesk Regular Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--token-350e638f-adb3-4bff-9aff-42231f5b33fc, rgb(255, 255, 255))\"},children:[\"AI Powered Vision\",/*#__PURE__*/_jsx(\"br\",{}),\"Seeing Beyond Defects\"]})}),className:\"framer-5pbi9f\",\"data-framer-name\":\"Heading\",fonts:[\"CUSTOM;BDO Grotesk Regular\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6ovji2\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GOGgnO2a1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JETyBHcm90ZXNrIFJlZ3VsYXI=\",\"--framer-font-family\":'\"BDO Grotesk Regular\", \"BDO Grotesk Regular Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-350e638f-adb3-4bff-9aff-42231f5b33fc, rgb(255, 255, 255))\"},children:\"Eigen combines imaging and AI to detect issues traditional vision systems miss, revolutionizing quality inspection.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JETyBHcm90ZXNrIFJlZ3VsYXI=\",\"--framer-font-family\":'\"BDO Grotesk Regular\", \"BDO Grotesk Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-350e638f-adb3-4bff-9aff-42231f5b33fc, rgb(255, 255, 255))\"},children:\"Eigen combines imaging and AI to detect issues traditional vision systems miss, revolutionizing quality inspection.\"})}),className:\"framer-8bbobh\",\"data-framer-name\":\"Text\",fonts:[\"CUSTOM;BDO Grotesk Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-rlkmhm\",\"data-framer-name\":\"NavTrigger\",id:elementId1,ref:ref2})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jjy4e0\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-pfmgim\",\"data-framer-name\":\"thermal\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kbzxjd\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GOGgnO2a1:{width:`calc(${componentViewport?.width||\"100vw\"} - 20px)`,y:(componentViewport?.y||0)+0+520+30+0+0+0+0+0},P2z1YUs5o:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+591+0+0+0+0+30+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:626,width:`calc(${componentViewport?.width||\"100vw\"} - 60px)`,y:(componentViewport?.y||0)+0+520+0+0+0+0+30+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-16klh2p-container\",id:elementId2,nodeId:\"GmaAY9a2F\",ref:ref3,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GOGgnO2a1:{variant:\"IXZoiaIVl\"},P2z1YUs5o:{variant:\"ArKIJTLL8\"}},children:/*#__PURE__*/_jsx(TabsContent,{height:\"100%\",id:\"GmaAY9a2F\",layoutId:\"GmaAY9a2F\",style:{width:\"100%\"},variant:\"eNd4u19uT\",Vm1DaRlZj:96,width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GOGgnO2a1:{width:`calc(${componentViewport?.width||\"100vw\"} - 20px)`,y:(componentViewport?.y||0)+0+520+30+0+0+0+0+636},P2z1YUs5o:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+591+0+0+0+0+30+656}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:182,width:`calc(${componentViewport?.width||\"100vw\"} - 60px)`,y:(componentViewport?.y||0)+0+520+0+0+0+0+30+656,children:/*#__PURE__*/_jsx(Container,{className:\"framer-163ar3x-container\",nodeId:\"oNXuwramZ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GOGgnO2a1:{variant:\"opYvpZYj8\"},P2z1YUs5o:{variant:\"iDpTd8FDW\"}},children:/*#__PURE__*/_jsx(Gsgs,{height:\"100%\",id:\"oNXuwramZ\",layoutId:\"oNXuwramZ\",style:{width:\"100%\"},variant:\"B8gyZGvfX\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GOGgnO2a1:{width:`calc(${componentViewport?.width||\"100vw\"} - 20px)`,y:(componentViewport?.y||0)+0+520+30+0+0+0+0+828},P2z1YUs5o:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+591+0+0+0+0+30+868}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:726,width:`calc(${componentViewport?.width||\"100vw\"} - 60px)`,y:(componentViewport?.y||0)+0+520+0+0+0+0+30+868,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fdi78o-container\",id:elementId3,nodeId:\"cKn05ukHS\",ref:ref4,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GOGgnO2a1:{variant:\"fIkKiovJq\"},P2z1YUs5o:{variant:\"EOXiOHKe8\"}},children:/*#__PURE__*/_jsx(OneView,{height:\"100%\",id:\"cKn05ukHS\",layoutId:\"cKn05ukHS\",style:{width:\"100%\"},variant:\"iEh7IokWE\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oj86y9\",\"data-border\":true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hkijfq\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GOGgnO2a1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JETyBHcm90ZXNrIFZhcmlhYmxlVkY9SW5kbmFIUWlJRE01TWc9PQ==\",\"--framer-font-family\":'\"BDO Grotesk Variable\", \"BDO Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-variation-axes\":'\"wght\" 392',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-stroke-color\":\"rgba(34, 57, 135, 0)\",\"--framer-text-stroke-width\":\"0px\"},children:\"Thermal Vision Applications\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JETyBHcm90ZXNrIFZhcmlhYmxlVkY9SW5kbmFIUWlJRE01TWc9PQ==\",\"--framer-font-family\":'\"BDO Grotesk Variable\", \"BDO Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-variation-axes\":'\"wght\" 392',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(31, 67, 89)\",\"--framer-text-stroke-color\":\"rgba(34, 57, 135, 0)\",\"--framer-text-stroke-width\":\"0px\"},children:\"Thermal Vision Applications\"})}),className:\"framer-po9qpo\",fonts:[\"CUSTOM;BDO Grotesk Variable\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-a70zx9\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GOGgnO2a1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JETyBHcm90ZXNrIFZhcmlhYmxlVkY9SW5kbmFIUWlJRFF3TUE9PQ==\",\"--framer-font-family\":'\"BDO Grotesk Variable\", \"BDO Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-variation-axes\":'\"wght\" 400',\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"capitalize\"},children:\"Eigen specializes in combining thermal imaging with advanced AI to detect issues that traditional systems miss, enabling a new era of quality inspection for heat-critical manufacturing processes\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JETyBHcm90ZXNrIFZhcmlhYmxlVkY9SW5kbmFIUWlJRE0yTUE9PQ==\",\"--framer-font-family\":'\"BDO Grotesk Variable\", \"BDO Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-variation-axes\":'\"wght\" 360',\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(31, 67, 89)\",\"--framer-text-transform\":\"capitalize\"},children:\"Eigen specializes in combining thermal imaging with advanced AI to detect issues that traditional systems miss, enabling a new era of quality inspection for heat-critical manufacturing processes\"})}),className:\"framer-4087ft\",fonts:[\"CUSTOM;BDO Grotesk Variable\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1k7f8wh\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"DZm_0ZLKF\"},implicitPathVariables:undefined},{href:{webPageId:\"DZm_0ZLKF\"},implicitPathVariables:undefined},{href:{webPageId:\"DZm_0ZLKF\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GOGgnO2a1:{y:(componentViewport?.y||0)+0+520+30+0+0+0+0+1564+20+0+5+303+0},P2z1YUs5o:{y:(componentViewport?.y||0)+0+591+0+0+0+0+30+1624+20+0+5+350+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+0+520+0+0+0+0+30+1624+20+0+5+350+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1scvblu-container\",nodeId:\"R1buaNlQ0\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GOGgnO2a1:{H1OwzFIST:resolvedLinks[2],iixlGbFnt:\"rgb(255, 255, 255)\",Thov37CEA:12,vhP0NWJuX:\"rgb(255, 255, 255)\"},P2z1YUs5o:{H1OwzFIST:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(Button2,{H1OwzFIST:resolvedLinks[0],height:\"100%\",id:\"R1buaNlQ0\",iixlGbFnt:\"rgb(37, 54, 64)\",Iv2pqvfFl:\"rgb(79, 79, 79)\",jatexfj6_:\"5px 10px 5px 10px\",KXnAL3htq:\"Explore Thermal Solutions\",layoutId:\"R1buaNlQ0\",Thov37CEA:13,variant:\"fvrfwp1Hj\",vhP0NWJuX:\"rgb(37, 54, 64)\",width:\"100%\",Xf6wAB0Lx:\"rgba(79, 79, 79, 0)\"})})})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GOGgnO2a1:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+520+30+0+0+0+0+1564+20+381},P2z1YUs5o:{width:`calc(${componentViewport?.width||\"100vw\"} - 60px)`,y:(componentViewport?.y||0)+0+591+0+0+0+0+30+1624+20+448}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:408,width:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,y:(componentViewport?.y||0)+0+520+0+0+0+0+30+1624+20+448,children:/*#__PURE__*/_jsx(Container,{className:\"framer-dgm19k-container\",nodeId:\"jIa12QcSQ\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GOGgnO2a1:{variant:\"EqBT1f53V\"}},children:/*#__PURE__*/_jsx(SolutionsWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:dFVXJhBb7a6O7vlQbh,target:\"ZujH9h2C8\"},{ref:bHS0JIpata6O7vlQbh,target:\"KZIrchxO4\"},{ref:j0YLt8w2wa6O7vlQbh,target:\"YKpytHNvQ\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"jIa12QcSQ\",layoutId:\"jIa12QcSQ\",rnq6bTrPv:\"column\",style:{width:\"100%\"},variant:\"Ucta9h9Zs\",width:\"100%\"})})})})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vhy6d0\",\"data-framer-name\":\"dd\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sfq838\",\"data-border\":true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kx482d\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-c33gdt-container hidden-72rtr7 hidden-1qv7fnn\",isModuleExternal:true,nodeId:\"uvmQImu0D\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Slideshow,{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:false},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:.4,effectsPerspective:613,effectsRotate:10,effectsScale:.8,playOffscreen:false},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:79,fadeWidth:25,overflow:true},gap:0,height:\"100%\",id:\"uvmQImu0D\",intervalControl:2.5,itemAmount:1,layoutId:\"uvmQImu0D\",padding:20,paddingBottom:0,paddingLeft:40,paddingPerSide:true,paddingRight:40,paddingTop:20,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hanezp\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:549,intrinsicWidth:490,pixelHeight:1098,pixelWidth:980,sizes:\"233px\",src:\"https://framerusercontent.com/images/lMci5uz4HKHEdVqJyP9AIjWGg.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/lMci5uz4HKHEdVqJyP9AIjWGg.png?scale-down-to=1024 913w,https://framerusercontent.com/images/lMci5uz4HKHEdVqJyP9AIjWGg.png 980w\"},className:\"framer-1004ebq\",\"data-framer-name\":\"Screenshot 2025-03-24 at 3.20.53\\xe2\\x80\\xafPM\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-82vbdg\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:549,intrinsicWidth:490,pixelHeight:1098,pixelWidth:980,sizes:\"233px\",src:\"https://framerusercontent.com/images/rN8IbtOeMOgNe053AYlp9fRnKI.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/rN8IbtOeMOgNe053AYlp9fRnKI.png?scale-down-to=1024 913w,https://framerusercontent.com/images/rN8IbtOeMOgNe053AYlp9fRnKI.png 980w\"},className:\"framer-butrq0\",\"data-framer-name\":\"Screenshot 2025-03-24 at 3.21.01\\xe2\\x80\\xafPM\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tbson0\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:549,intrinsicWidth:490,pixelHeight:1098,pixelWidth:980,sizes:\"233px\",src:\"https://framerusercontent.com/images/gW8IbMXc7QPndwAx9gW8ubTvWYg.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/gW8IbMXc7QPndwAx9gW8ubTvWYg.png?scale-down-to=1024 913w,https://framerusercontent.com/images/gW8IbMXc7QPndwAx9gW8ubTvWYg.png 980w\"},className:\"framer-1ppboun\",\"data-framer-name\":\"Screenshot 2025-03-24 at 3.21.06\\xe2\\x80\\xafPM\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-l4uf44\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:549,intrinsicWidth:490,pixelHeight:1098,pixelWidth:980,sizes:\"233px\",src:\"https://framerusercontent.com/images/ripv7y8D8DaYUC8Yr7re9QyI2E.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/ripv7y8D8DaYUC8Yr7re9QyI2E.png?scale-down-to=1024 913w,https://framerusercontent.com/images/ripv7y8D8DaYUC8Yr7re9QyI2E.png 980w\"},className:\"framer-18o8yyq\",\"data-framer-name\":\"Screenshot 2025-03-24 at 3.21.11\\xe2\\x80\\xafPM\"})})],startFrom:1,style:{height:\"100%\",width:\"100%\"},transitionControl:{delay:0,duration:.6,ease:[.44,0,.56,1],type:\"tween\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1er8jfo-container hidden-1h377n9\",isModuleExternal:true,nodeId:\"XCczSbJBj\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Slideshow,{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:false},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:.4,effectsPerspective:613,effectsRotate:10,effectsScale:.8,playOffscreen:false},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:79,fadeWidth:25,overflow:true},gap:0,height:\"100%\",id:\"XCczSbJBj\",intervalControl:2.5,itemAmount:1,layoutId:\"XCczSbJBj\",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:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(Link,{href:{pathVariables:{wSd72OGQh:\"thermal-drywall-panel-inspection\"},unresolvedPathSlugs:{wSd72OGQh:{collectionId:\"IgqCP906L\",collectionItemId:\"qT0VJoCYc\"}},webPageId:\"sIYIJpj2X\"},motionChild:true,nodeId:\"xgas2EcfX\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-4ew1ge framer-lux5qc\",\"data-framer-cursor\":\"1sm9dp8\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:549,intrinsicWidth:490,pixelHeight:1098,pixelWidth:980,sizes:\"344px\",src:\"https://framerusercontent.com/images/lMci5uz4HKHEdVqJyP9AIjWGg.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/lMci5uz4HKHEdVqJyP9AIjWGg.png?scale-down-to=1024 913w,https://framerusercontent.com/images/lMci5uz4HKHEdVqJyP9AIjWGg.png 980w\"},className:\"framer-1j65sdc\",\"data-framer-name\":\"Screenshot 2025-03-24 at 3.20.53\\xe2\\x80\\xafPM\"})})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{wSd72OGQh:\"injection-molding\"},unresolvedPathSlugs:{wSd72OGQh:{collectionId:\"IgqCP906L\",collectionItemId:\"n9THxD4yD\"}},webPageId:\"sIYIJpj2X\"},motionChild:true,nodeId:\"HySQp98aE\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1s13bg0 framer-lux5qc\",\"data-framer-cursor\":\"1sm9dp8\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:549,intrinsicWidth:490,pixelHeight:1098,pixelWidth:980,sizes:\"344px\",src:\"https://framerusercontent.com/images/rN8IbtOeMOgNe053AYlp9fRnKI.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/rN8IbtOeMOgNe053AYlp9fRnKI.png?scale-down-to=1024 913w,https://framerusercontent.com/images/rN8IbtOeMOgNe053AYlp9fRnKI.png 980w\"},className:\"framer-14qc606\",\"data-framer-name\":\"Screenshot 2025-03-24 at 3.21.01\\xe2\\x80\\xafPM\"})})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{wSd72OGQh:\"nucor-metal-welding-inspection\"},unresolvedPathSlugs:{wSd72OGQh:{collectionId:\"IgqCP906L\",collectionItemId:\"B64025KC6\"}},webPageId:\"sIYIJpj2X\"},motionChild:true,nodeId:\"vVIq8YQzV\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-2muzo0 framer-lux5qc\",\"data-framer-cursor\":\"1sm9dp8\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:549,intrinsicWidth:490,pixelHeight:1098,pixelWidth:980,sizes:\"344px\",src:\"https://framerusercontent.com/images/gW8IbMXc7QPndwAx9gW8ubTvWYg.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/gW8IbMXc7QPndwAx9gW8ubTvWYg.png?scale-down-to=1024 913w,https://framerusercontent.com/images/gW8IbMXc7QPndwAx9gW8ubTvWYg.png 980w\"},className:\"framer-167ea5y\",\"data-framer-name\":\"Screenshot 2025-03-24 at 3.21.06\\xe2\\x80\\xafPM\"})})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{wSd72OGQh:\"sappi-speciality-paper-inspection\"},unresolvedPathSlugs:{wSd72OGQh:{collectionId:\"IgqCP906L\",collectionItemId:\"Iosc3lAkW\"}},webPageId:\"sIYIJpj2X\"},motionChild:true,nodeId:\"fJLL0lQN_\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-80572g framer-lux5qc\",\"data-framer-cursor\":\"1sm9dp8\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:549,intrinsicWidth:490,pixelHeight:1098,pixelWidth:980,sizes:\"344px\",src:\"https://framerusercontent.com/images/ripv7y8D8DaYUC8Yr7re9QyI2E.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/ripv7y8D8DaYUC8Yr7re9QyI2E.png?scale-down-to=1024 913w,https://framerusercontent.com/images/ripv7y8D8DaYUC8Yr7re9QyI2E.png 980w\"},className:\"framer-1xmx308\",\"data-framer-name\":\"Screenshot 2025-03-24 at 3.21.11\\xe2\\x80\\xafPM\"})})})],startFrom:1,style:{height:\"100%\",width:\"100%\"},transitionControl:{delay:0,duration:.6,ease:[.44,0,.56,1],type:\"tween\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-moyrw8\",\"data-framer-name\":\"content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-u8grcf\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tcppil\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1h16ea9\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GOGgnO2a1:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JETyBHcm90ZXNrIFZhcmlhYmxlVkY9SW5kbmFIUWlJRE0yTWc9PQ==\",\"--framer-font-family\":'\"BDO Grotesk Variable\", \"BDO Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-variation-axes\":'\"wght\" 362',\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(36, 56, 71, 0.5)\",\"--framer-text-stroke-color\":\"rgba(34, 57, 135, 0)\",\"--framer-text-stroke-width\":\"0.1px\"},children:\"Explore\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JETyBHcm90ZXNrIFZhcmlhYmxlVkY9SW5kbmFIUWlJRE0yTWc9PQ==\",\"--framer-font-family\":'\"BDO Grotesk Variable\", \"BDO Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-variation-axes\":'\"wght\" 362',\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(36, 56, 71)\",\"--framer-text-stroke-color\":\"rgba(34, 57, 135, 0)\",\"--framer-text-stroke-width\":\"0.1px\"},children:\"Case Studies\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JETyBHcm90ZXNrIFZhcmlhYmxlVkY9SW5kbmFIUWlJRE0yTWc9PQ==\",\"--framer-font-family\":'\"BDO Grotesk Variable\", \"BDO Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-variation-axes\":'\"wght\" 362',\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(36, 56, 71)\",\"--framer-text-stroke-color\":\"rgba(34, 57, 135, 0)\",\"--framer-text-stroke-width\":\"0.1px\"},children:\"Explore\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JETyBHcm90ZXNrIFZhcmlhYmxlVkY9SW5kbmFIUWlJRE0yTWc9PQ==\",\"--framer-font-family\":'\"BDO Grotesk Variable\", \"BDO Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-variation-axes\":'\"wght\" 362',\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(36, 56, 71)\",\"--framer-text-stroke-color\":\"rgba(34, 57, 135, 0)\",\"--framer-text-stroke-width\":\"0.1px\"},children:\"Case Studies\"})]}),className:\"framer-17u93k7\",fonts:[\"CUSTOM;BDO Grotesk Variable\"],verticalAlignment:\"top\",withExternalLayout:true})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1oirien\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-duwe83\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Jg295d4dk\"},implicitPathVariables:undefined},{href:{webPageId:\"Jg295d4dk\"},implicitPathVariables:undefined},{href:{webPageId:\"Jg295d4dk\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GOGgnO2a1:{y:(componentViewport?.y||0)+0+520+30+2403+0+0+10+0+10+119+0+0},P2z1YUs5o:{y:(componentViewport?.y||0)+0+591+0+2570+0+0+10+0+20+60+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+0+520+0+2570+0+0+10+20+300+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gi66we-container\",nodeId:\"naJ987nKo\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GOGgnO2a1:{H1OwzFIST:resolvedLinks1[2],Thov37CEA:12},P2z1YUs5o:{H1OwzFIST:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(Button2,{H1OwzFIST:resolvedLinks1[0],height:\"100%\",id:\"naJ987nKo\",iixlGbFnt:\"rgb(37, 54, 64)\",Iv2pqvfFl:\"rgb(79, 79, 79)\",jatexfj6_:\"5px 10px 5px 10px\",KXnAL3htq:\"Case Studies\",layoutId:\"naJ987nKo\",Thov37CEA:13,variant:\"fvrfwp1Hj\",vhP0NWJuX:\"rgb(37, 54, 64)\",width:\"100%\",Xf6wAB0Lx:\"rgba(79, 79, 79, 0)\"})})})})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1etgl9p\",\"data-border\":true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ajjn0d\",\"data-framer-name\":\"content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-p6p8lg\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1i9oouw\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ufhagv\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JETyBHcm90ZXNrIFZhcmlhYmxlVkY9SW5kbmFIUWlJRE0yTWc9PQ==\",\"--framer-font-family\":'\"BDO Grotesk Variable\", \"BDO Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-variation-axes\":'\"wght\" 362',\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(36, 56, 71)\",\"--framer-text-stroke-color\":\"rgba(34, 57, 135, 0)\",\"--framer-text-stroke-width\":\"0.1px\"},children:\"Get Started\"})}),className:\"framer-z0fosa\",fonts:[\"CUSTOM;BDO Grotesk Variable\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GOGgnO2a1:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JETyBHcm90ZXNrIFZhcmlhYmxlVkY9SW5kbmFIUWlJRE0xTUE9PQ==\",\"--framer-font-family\":'\"BDO Grotesk Variable\", \"BDO Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-variation-axes\":'\"wght\" 350',\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(37, 68, 92)\",\"--framer-text-stroke-color\":\"rgba(34, 57, 135, 0)\",\"--framer-text-stroke-width\":\"0.1px\"},children:[\"Get started with Eigen \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0JETyBHcm90ZXNrIFZhcmlhYmxlVkY9SW5kbmFIUWlJRFl3TUE9PQ==\",\"--framer-font-variation-axes\":'\"wght\" 600'},children:\"One\"}),\"View | Cloud\"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JETyBHcm90ZXNrIFZhcmlhYmxlVkY9SW5kbmFIUWlJRE0xTUE9PQ==\",\"--framer-font-family\":'\"BDO Grotesk Variable\", \"BDO Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-variation-axes\":'\"wght\" 350',\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(37, 68, 92)\",\"--framer-text-stroke-color\":\"rgba(34, 57, 135, 0)\",\"--framer-text-stroke-width\":\"0.1px\"},children:\"Now available for a free trial. Book today!\"})]})},P2z1YUs5o:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JETyBHcm90ZXNrIExpZ2h0VkY9SW5kbmFIUWlJRFF3TUE9PQ==\",\"--framer-font-family\":'\"BDO Grotesk Light\", \"BDO Grotesk Light Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-variation-axes\":'\"wght\" 400',\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.9)\",\"--framer-text-stroke-color\":\"rgba(34, 57, 135, 0)\",\"--framer-text-stroke-width\":\"0.1px\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0JETyBHcm90ZXNrIExpZ2h0\",\"--framer-font-variation-axes\":\"normal\"},children:\"Our \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0JETyBHcm90ZXNrIFZhcmlhYmxlVkY9SW5kbmFIUWlJRFl3TUE9PQ==\",\"--framer-font-family\":'\"BDO Grotesk Variable\", \"BDO Grotesk Placeholder\", sans-serif',\"--framer-font-variation-axes\":'\"wght\" 600',\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-stroke-color\":\"initial\",\"--framer-text-stroke-width\":\"initial\"},children:\"One\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0JETyBHcm90ZXNrIFZhcmlhYmxlVkY9SW5kbmFIUWlJRE0xTUE9PQ==\",\"--framer-font-family\":'\"BDO Grotesk Variable\", \"BDO Grotesk Placeholder\", sans-serif',\"--framer-font-variation-axes\":'\"wght\" 350',\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-stroke-color\":\"initial\",\"--framer-text-stroke-width\":\"initial\"},children:\"View | Cloud \"}),\"Free Trial is currently available for booking. \"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JETyBHcm90ZXNrIExpZ2h0VkY9SW5kbmFIUWlJRFF3TUE9PQ==\",\"--framer-font-family\":'\"BDO Grotesk Light\", \"BDO Grotesk Light Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-variation-axes\":'\"wght\" 400',\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.9)\",\"--framer-text-stroke-color\":\"rgba(34, 57, 135, 0)\",\"--framer-text-stroke-width\":\"0.1px\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JETyBHcm90ZXNrIExpZ2h0VkY9SW5kbmFIUWlJRFF3TUE9PQ==\",\"--framer-font-family\":'\"BDO Grotesk Light\", \"BDO Grotesk Light Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-variation-axes\":'\"wght\" 400',\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.9)\",\"--framer-text-stroke-color\":\"rgba(34, 57, 135, 0)\",\"--framer-text-stroke-width\":\"0.1px\"},children:[\"Learn more  on our \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"lVFIDK1X5\"},motionChild:true,nodeId:\"wZE98zreB\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-styles-preset-kyguwl\",\"data-styles-preset\":\"W5JNhDchF\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0JETyBHcm90ZXNrIFZhcmlhYmxlVkY9SW5kbmFIUWlJRFl3TUE9PQ==\",\"--framer-font-family\":'\"BDO Grotesk Variable\", \"BDO Grotesk Placeholder\", sans-serif',\"--framer-font-variation-axes\":'\"wght\" 600',\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-stroke-color\":\"initial\",\"--framer-text-stroke-width\":\"initial\"},children:\"One\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0JETyBHcm90ZXNrIFZhcmlhYmxlVkY9SW5kbmFIUWlJRE0xTUE9PQ==\",\"--framer-font-family\":'\"BDO Grotesk Variable\", \"BDO Grotesk Placeholder\", sans-serif',\"--framer-font-variation-axes\":'\"wght\" 350',\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-stroke-color\":\"initial\",\"--framer-text-stroke-width\":\"initial\"},children:\"View\"})]})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0JETyBHcm90ZXNrIFZhcmlhYmxlVkY9SW5kbmFIUWlJRE0xTUE9PQ==\",\"--framer-font-family\":'\"BDO Grotesk Variable\", \"BDO Grotesk Placeholder\", sans-serif',\"--framer-font-variation-axes\":'\"wght\" 350',\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-stroke-color\":\"initial\",\"--framer-text-stroke-width\":\"initial\"},children:\" page.\"})]})]}),fonts:[\"CUSTOM;BDO Grotesk Light\",\"CUSTOM;BDO Grotesk Variable\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0JETyBHcm90ZXNrIFZhcmlhYmxlVkY9SW5kbmFIUWlJRE16TUE9PQ==\",\"--framer-font-family\":'\"BDO Grotesk Variable\", \"BDO Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-variation-axes\":'\"wght\" 330',\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(41, 65, 83)\"},children:[\"Get started with \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-stroke-color\":\"rgba(34, 57, 135, 0)\",\"--framer-text-stroke-width\":\"0.1px\"},children:\" Eigen \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0JETyBHcm90ZXNrIFZhcmlhYmxlVkY9SW5kbmFIUWlJRFl3TUE9PQ==\",\"--framer-font-variation-axes\":'\"wght\" 600'},children:\"One\"}),\"View | Cloud\u2014now available for a free trial. Book today!\"]})}),className:\"framer-r4kswx\",fonts:[\"CUSTOM;BDO Grotesk Variable\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1el567w\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ja8q1i\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"lzLIApbuo\"},implicitPathVariables:undefined},{href:{webPageId:\"lzLIApbuo\"},implicitPathVariables:undefined},{href:{webPageId:\"lzLIApbuo\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GOGgnO2a1:{y:(componentViewport?.y||0)+0+520+30+2403+0+572+10+0+20+99+0+0},P2z1YUs5o:{y:(componentViewport?.y||0)+0+591+0+2570+0+586+10+0+20+60+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+0+520+0+2570+0+438+10+20+300+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-140majg-container\",nodeId:\"LPVT5qCvK\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GOGgnO2a1:{H1OwzFIST:resolvedLinks2[2],Thov37CEA:12},P2z1YUs5o:{H1OwzFIST:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(Button2,{H1OwzFIST:resolvedLinks2[0],height:\"100%\",id:\"LPVT5qCvK\",iixlGbFnt:\"rgb(37, 54, 64)\",Iv2pqvfFl:\"rgb(79, 79, 79)\",jatexfj6_:\"5px 10px 5px 10px\",KXnAL3htq:\"Book A Demo\",layoutId:\"LPVT5qCvK\",Thov37CEA:13,variant:\"fvrfwp1Hj\",vhP0NWJuX:\"rgb(37, 54, 64)\",width:\"100%\",Xf6wAB0Lx:\"rgba(79, 79, 79, 0)\"})})})})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GOGgnO2a1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+520+30+2403+0+572+10+197),pixelHeight:816,pixelWidth:1456,positionX:\"center\",positionY:\"bottom\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,src:\"https://framerusercontent.com/images/TaNmYXujU9LqivHLnRe5uKMFU.png\",srcSet:\"https://framerusercontent.com/images/TaNmYXujU9LqivHLnRe5uKMFU.png?scale-down-to=512 512w,https://framerusercontent.com/images/TaNmYXujU9LqivHLnRe5uKMFU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/TaNmYXujU9LqivHLnRe5uKMFU.png 1456w\"}},P2z1YUs5o:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+591+0+2570+0+586+10+148),pixelHeight:816,pixelWidth:1456,positionX:\"center\",positionY:\"bottom\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 20px)`,src:\"https://framerusercontent.com/images/TaNmYXujU9LqivHLnRe5uKMFU.png\",srcSet:\"https://framerusercontent.com/images/TaNmYXujU9LqivHLnRe5uKMFU.png?scale-down-to=512 512w,https://framerusercontent.com/images/TaNmYXujU9LqivHLnRe5uKMFU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/TaNmYXujU9LqivHLnRe5uKMFU.png 1456w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+520+0+2570+0+438+10),pixelHeight:816,pixelWidth:1456,positionX:\"center\",positionY:\"bottom\",sizes:`max((${componentViewport?.width||\"100vw\"} - 80px) * 0.7, 1px)`,src:\"https://framerusercontent.com/images/TaNmYXujU9LqivHLnRe5uKMFU.png\",srcSet:\"https://framerusercontent.com/images/TaNmYXujU9LqivHLnRe5uKMFU.png?scale-down-to=512 512w,https://framerusercontent.com/images/TaNmYXujU9LqivHLnRe5uKMFU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/TaNmYXujU9LqivHLnRe5uKMFU.png 1456w\"},className:\"framer-5fdz2g\"})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1v7ujiz hidden-72rtr7 hidden-1qv7fnn\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gub43m-container\",isModuleExternal:true,nodeId:\"q5TRvGrEq\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:150,height:\"100%\",hoverFactor:1,id:\"q5TRvGrEq\",layoutId:\"q5TRvGrEq\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:162.5,intrinsicWidth:800.5,pixelHeight:329,pixelWidth:1607,sizes:\"113.3015px\",src:\"https://framerusercontent.com/images/0gzh2m9AfqRTGgnXhkwyGdth5zM.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/0gzh2m9AfqRTGgnXhkwyGdth5zM.png?scale-down-to=512 512w,https://framerusercontent.com/images/0gzh2m9AfqRTGgnXhkwyGdth5zM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0gzh2m9AfqRTGgnXhkwyGdth5zM.png 1607w\"},className:\"framer-10b63rj\",\"data-framer-name\":\"Asset 20@4x\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:320.5,intrinsicWidth:800.5,pixelHeight:442,pixelWidth:1552,sizes:\"130.1167px\",src:\"https://framerusercontent.com/images/NRG147OOi3wfYDbxbBUPnoQGTew.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/NRG147OOi3wfYDbxbBUPnoQGTew.png?scale-down-to=512 512w,https://framerusercontent.com/images/NRG147OOi3wfYDbxbBUPnoQGTew.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NRG147OOi3wfYDbxbBUPnoQGTew.png 1552w\"},className:\"framer-83oqqu\",\"data-framer-name\":\"Asset 22@4x\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:449,intrinsicWidth:4031,pixelHeight:572,pixelWidth:1605,sizes:\"70.7547px\",src:\"https://framerusercontent.com/images/45tXZpg5T8MRti8tBpcf9b4M.png\",srcSet:\"https://framerusercontent.com/images/45tXZpg5T8MRti8tBpcf9b4M.png?scale-down-to=512 512w,https://framerusercontent.com/images/45tXZpg5T8MRti8tBpcf9b4M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/45tXZpg5T8MRti8tBpcf9b4M.png 1605w\"},className:\"framer-ap4l54\",\"data-framer-name\":\"Asset 10@4x\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:101.5,intrinsicWidth:800.5,pixelHeight:207,pixelWidth:1605,sizes:\"118.3005px\",src:\"https://framerusercontent.com/images/mtYr4bNXkkKpQgiyEyDuZNxTxHA.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/mtYr4bNXkkKpQgiyEyDuZNxTxHA.png?scale-down-to=512 512w,https://framerusercontent.com/images/mtYr4bNXkkKpQgiyEyDuZNxTxHA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mtYr4bNXkkKpQgiyEyDuZNxTxHA.png 1605w\"},className:\"framer-g0fu1g\",\"data-framer-name\":\"Asset 21@4x\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:445.5,intrinsicWidth:800.5,pixelHeight:894,pixelWidth:1614,sizes:\"80.8586px\",src:\"https://framerusercontent.com/images/p8XpcrYsJEd5u0gwnkBCL0cy8.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/p8XpcrYsJEd5u0gwnkBCL0cy8.png?scale-down-to=512 512w,https://framerusercontent.com/images/p8XpcrYsJEd5u0gwnkBCL0cy8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/p8XpcrYsJEd5u0gwnkBCL0cy8.png 1614w\"},className:\"framer-9vlqf9\",\"data-framer-name\":\"Asset 23@4x\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:449,intrinsicWidth:4031,pixelHeight:170,pixelWidth:1543,sizes:\"116.7105px\",src:\"https://framerusercontent.com/images/IZqySCxwnN9QhQ5Zm0QTnoj1lo.png\",srcSet:\"https://framerusercontent.com/images/IZqySCxwnN9QhQ5Zm0QTnoj1lo.png?scale-down-to=512 512w,https://framerusercontent.com/images/IZqySCxwnN9QhQ5Zm0QTnoj1lo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IZqySCxwnN9QhQ5Zm0QTnoj1lo.png 1543w\"},className:\"framer-1n6ov9l\",\"data-framer-name\":\"Asset 10@4x\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:445,intrinsicWidth:594,pixelHeight:890,pixelWidth:1188,sizes:\"68.0764px\",src:\"https://framerusercontent.com/images/nJVtVaJunYiF9lDMGOysWiHPQ.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/nJVtVaJunYiF9lDMGOysWiHPQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/nJVtVaJunYiF9lDMGOysWiHPQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/nJVtVaJunYiF9lDMGOysWiHPQ.png 1188w\"},className:\"framer-802uai\",\"data-framer-name\":\"Asset 86@4x\"})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-9qg266 hidden-1h377n9\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1n2fvnv-container\",isModuleExternal:true,nodeId:\"yeq7rv9Ox\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:200,height:\"100%\",hoverFactor:1,id:\"yeq7rv9Ox\",layoutId:\"yeq7rv9Ox\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:162.5,intrinsicWidth:800.5,pixelHeight:325,pixelWidth:1601,sizes:\"113.3015px\",src:\"https://framerusercontent.com/images/d0xwIv925i0v5OIJJ5Fbv55mI.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/d0xwIv925i0v5OIJJ5Fbv55mI.png?scale-down-to=512 512w,https://framerusercontent.com/images/d0xwIv925i0v5OIJJ5Fbv55mI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/d0xwIv925i0v5OIJJ5Fbv55mI.png 1601w\"},className:\"framer-1ci2tqp\",\"data-framer-name\":\"Asset 20@4x\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:320.5,intrinsicWidth:800.5,pixelHeight:438,pixelWidth:1547,sizes:\"130.1167px\",src:\"https://framerusercontent.com/images/pxuZv5WtWj5hUwisibnincnSejo.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/pxuZv5WtWj5hUwisibnincnSejo.png?scale-down-to=512 512w,https://framerusercontent.com/images/pxuZv5WtWj5hUwisibnincnSejo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/pxuZv5WtWj5hUwisibnincnSejo.png 1547w\"},className:\"framer-wgh7pq\",\"data-framer-name\":\"Asset 22@4x\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:449,intrinsicWidth:4031,pixelHeight:568,pixelWidth:1601,sizes:\"70.7547px\",src:\"https://framerusercontent.com/images/wVKAJEUV3F4fpZlptapFCBUYYi0.png\",srcSet:\"https://framerusercontent.com/images/wVKAJEUV3F4fpZlptapFCBUYYi0.png?scale-down-to=512 512w,https://framerusercontent.com/images/wVKAJEUV3F4fpZlptapFCBUYYi0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wVKAJEUV3F4fpZlptapFCBUYYi0.png 1601w\"},className:\"framer-e3eyzf\",\"data-framer-name\":\"Asset 10@4x\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:101.5,intrinsicWidth:800.5,pixelHeight:203,pixelWidth:1601,sizes:\"118.3005px\",src:\"https://framerusercontent.com/images/kA0eCW9ZfAzbJ79sGrkOdd9czU4.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/kA0eCW9ZfAzbJ79sGrkOdd9czU4.png?scale-down-to=512 512w,https://framerusercontent.com/images/kA0eCW9ZfAzbJ79sGrkOdd9czU4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kA0eCW9ZfAzbJ79sGrkOdd9czU4.png 1601w\"},className:\"framer-gjpcq\",\"data-framer-name\":\"Asset 21@4x\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:449,intrinsicWidth:4031,pixelHeight:167,pixelWidth:1539,sizes:\"122px\",src:\"https://framerusercontent.com/images/9Fg2sH21m5zcb40b6FYGEhGyN8U.png\",srcSet:\"https://framerusercontent.com/images/9Fg2sH21m5zcb40b6FYGEhGyN8U.png?scale-down-to=512 512w,https://framerusercontent.com/images/9Fg2sH21m5zcb40b6FYGEhGyN8U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9Fg2sH21m5zcb40b6FYGEhGyN8U.png 1539w\"},className:\"framer-dwjrze\",\"data-framer-name\":\"Asset 10@4x\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:445.5,intrinsicWidth:800.5,pixelHeight:890,pixelWidth:1610,sizes:\"80.8586px\",src:\"https://framerusercontent.com/images/z0q06ENfhKJh8yVO61ExCtHXqfs.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/z0q06ENfhKJh8yVO61ExCtHXqfs.png?scale-down-to=512 512w,https://framerusercontent.com/images/z0q06ENfhKJh8yVO61ExCtHXqfs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/z0q06ENfhKJh8yVO61ExCtHXqfs.png 1610w\"},className:\"framer-v62o4j\",\"data-framer-name\":\"Asset 23@4x\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:445,intrinsicWidth:594,pixelHeight:890,pixelWidth:1188,sizes:\"68.0764px\",src:\"https://framerusercontent.com/images/eseE7mpuRf18qyCICGDD7Fp6cT0.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/eseE7mpuRf18qyCICGDD7Fp6cT0.png?scale-down-to=512 512w,https://framerusercontent.com/images/eseE7mpuRf18qyCICGDD7Fp6cT0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/eseE7mpuRf18qyCICGDD7Fp6cT0.png 1188w\"},className:\"framer-wogcx2\",\"data-framer-name\":\"Asset 86@4x\"})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})]}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P2z1YUs5o:{height:489,width:\"810px\",y:(componentViewport?.y||0)+0+4461.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1w7k0nw-container hidden-72rtr7 hidden-1h377n9\",nodeId:\"lEqlO3p5R\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Footer4,{height:\"100%\",id:\"lEqlO3p5R\",JLWNgXkNz:\"rgb(0, 0, 0)\",layoutId:\"lEqlO3p5R\",QxepaSapI:\"rgb(255, 255, 255)\",style:{width:\"100%\"},variant:\"f7JLpycT9\",width:\"100%\",X6V62UDKC:\"rgb(0, 0, 0)\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:85,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-7jgpaj-container\",layoutScroll:true,nodeId:\"piCNb_b4n\",rendersWithMotion:true,scopeId:\"augiA20Il\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GOGgnO2a1:{__framer__variantAppearEffectEnabled:undefined,cG5J_G7rD:\"rgb(133, 66, 66)\",T2lmFOEP8:\"rgba(38, 63, 82, 0.85)\",variant:\"ei1h1Yhms\"},P2z1YUs5o:{__framer__variantAppearEffectEnabled:undefined,cG5J_G7rD:\"rgb(133, 66, 66)\",T2lmFOEP8:\"rgba(38, 63, 82, 0.85)\",variant:\"ei1h1Yhms\"}},children:/*#__PURE__*/_jsx(NavSiteNav3WithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref3,target:\"KpfYqMGfp\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,cG5J_G7rD:\"rgb(255, 255, 255)\",height:\"100%\",HwV5VGN7P:\"rgba(31, 67, 89, 0.85)\",id:\"piCNb_b4n\",layoutId:\"piCNb_b4n\",style:{width:\"100%\"},T2lmFOEP8:\"rgb(56, 56, 56)\",variant:\"HItPH0U8L\",width:\"100%\"})})})}),isDisplayed3()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GOGgnO2a1:{y:(componentViewport?.y||0)+0+4270.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:489,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+4094.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-11ntw7e-container hidden-1qv7fnn\",nodeId:\"QkzXirFNx\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GOGgnO2a1:{variant:\"q0ZLhX7pG\"}},children:/*#__PURE__*/_jsx(Footer4,{height:\"100%\",id:\"QkzXirFNx\",JLWNgXkNz:\"rgb(0, 0, 0)\",layoutId:\"QkzXirFNx\",QxepaSapI:\"rgb(255, 255, 255)\",style:{width:\"100%\"},variant:\"ZnhPGeMhr\",width:\"100%\",X6V62UDKC:\"rgb(0, 0, 0)\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-xAwlO.framer-lux5qc, .framer-xAwlO .framer-lux5qc { display: block; }\",\".framer-xAwlO.framer-72rtr7 { align-content: center; align-items: center; background-color: #1f4359; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-xAwlO .framer-1832i3w { align-content: center; align-items: center; aspect-ratio: 1.3710843373493975 / 1; background-color: #000000; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 640px); justify-content: center; max-height: 80vh; min-height: 520px; overflow: hidden; padding: 82px 0px 48px 0px; position: relative; width: 100%; }\",\".framer-xAwlO .framer-6grjry { -webkit-filter: grayscale(0); filter: grayscale(0); flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); opacity: 0.7; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-xAwlO .framer-rc5c0z { aspect-ratio: 3.6144578313253013 / 1; background: linear-gradient(180deg, rgba(0, 0, 0, 0.01) 0%, rgb(0, 0, 0) 100%); bottom: 0px; flex: none; height: var(--framer-aspect-ratio-supported, 332px); left: 0px; opacity: 0.3; position: absolute; width: 100%; z-index: 1; }\",\".framer-xAwlO .framer-bpc5dt { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 1px; justify-content: space-between; max-width: 1452px; overflow: visible; padding: 0px 24px 0px 24px; position: relative; width: 100%; z-index: 2; }\",\".framer-xAwlO .framer-i3sh7e { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: 1px; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-xAwlO .framer-i7o8oy { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-xAwlO .framer-5pbi9f { --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-xAwlO .framer-6ovji2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 50%; }\",\".framer-xAwlO .framer-8bbobh { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-xAwlO .framer-rlkmhm { background-color: #000000; bottom: 0px; flex: none; height: 2px; left: calc(50.00000000000002% - 100% / 2); opacity: 0.29; overflow: hidden; position: absolute; width: 100%; z-index: 1; }\",\".framer-xAwlO .framer-1jjy4e0 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-xAwlO .framer-pfmgim { align-content: center; align-items: center; border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px 30px 0px 30px; position: relative; width: 100%; }\",\".framer-xAwlO .framer-1kbzxjd { 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: 30px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-xAwlO .framer-16klh2p-container, .framer-xAwlO .framer-163ar3x-container, .framer-xAwlO .framer-dgm19k-container, .framer-xAwlO .framer-11ntw7e-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-xAwlO .framer-1fdi78o-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\".framer-xAwlO .framer-1oj86y9 { --border-bottom-width: 1px; --border-color: #214359; --border-left-width: 1px; --border-right-width: 1px; --border-style: dashed; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 20px 10px 10px 10px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-xAwlO .framer-hkijfq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 5px 0px 5px 0px; position: relative; width: 100%; }\",\".framer-xAwlO .framer-po9qpo { --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-xAwlO .framer-a70zx9, .framer-xAwlO .framer-9qg266 { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-xAwlO .framer-4087ft { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 70%; word-break: break-word; word-wrap: break-word; }\",\".framer-xAwlO .framer-1k7f8wh { 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-xAwlO .framer-1scvblu-container, .framer-xAwlO .framer-1gi66we-container, .framer-xAwlO .framer-140majg-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-xAwlO .framer-1vhy6d0 { align-content: center; align-items: center; border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; border-top-left-radius: 3px; border-top-right-radius: 3px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 30px 0px 30px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-xAwlO .framer-1sfq838, .framer-xAwlO .framer-1etgl9p { --border-bottom-width: 1px; --border-color: #1f4359; --border-left-width: 1px; --border-right-width: 1px; --border-style: dashed; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; border-top-left-radius: 3px; border-top-right-radius: 3px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 10px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-xAwlO .framer-kx482d { align-content: center; align-items: center; background-color: #25445c; border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; border-top-left-radius: 3px; border-top-right-radius: 3px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 388px; justify-content: center; overflow: hidden; padding: 10px 10px 0px 10px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-xAwlO .framer-c33gdt-container { aspect-ratio: 0.9259259259259259 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 353px); position: relative; width: 327px; }\",\".framer-xAwlO .framer-1hanezp, .framer-xAwlO .framer-82vbdg, .framer-xAwlO .framer-1tbson0, .framer-xAwlO .framer-l4uf44 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 10px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-xAwlO .framer-1004ebq { aspect-ratio: 0.8923476005188068 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 261px); overflow: visible; position: relative; width: 233px; }\",\".framer-xAwlO .framer-butrq0, .framer-xAwlO .framer-1ppboun, .framer-xAwlO .framer-18o8yyq { aspect-ratio: 0.8925318761384335 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 261px); overflow: visible; position: relative; width: 233px; }\",\".framer-xAwlO .framer-1er8jfo-container { flex: none; height: 378px; position: relative; width: 407px; }\",\".framer-xAwlO .framer-4ew1ge, .framer-xAwlO .framer-1s13bg0, .framer-xAwlO .framer-2muzo0, .framer-xAwlO .framer-80572g { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 378px; justify-content: flex-start; overflow: hidden; padding: 20px 0px 0px 0px; position: relative; text-decoration: none; width: 370px; }\",\".framer-xAwlO .framer-1j65sdc, .framer-xAwlO .framer-14qc606, .framer-xAwlO .framer-167ea5y { aspect-ratio: 0.8925318761384335 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 385px); overflow: visible; position: relative; width: 344px; }\",\".framer-xAwlO .framer-1xmx308 { aspect-ratio: 0.8925318761384335 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 386px); overflow: visible; position: relative; width: 344px; }\",\".framer-xAwlO .framer-moyrw8, .framer-xAwlO .framer-1ajjn0d { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: auto; justify-content: space-between; overflow: visible; padding: 20px; position: relative; width: 30%; }\",\".framer-xAwlO .framer-u8grcf, .framer-xAwlO .framer-duwe83, .framer-xAwlO .framer-p6p8lg, .framer-xAwlO .framer-ja8q1i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-xAwlO .framer-1tcppil, .framer-xAwlO .framer-1i9oouw { 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; position: relative; width: min-content; }\",\".framer-xAwlO .framer-1h16ea9, .framer-xAwlO .framer-1ufhagv { 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: 0px; position: relative; width: min-content; }\",\".framer-xAwlO .framer-17u93k7, .framer-xAwlO .framer-z0fosa { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-xAwlO .framer-1oirien, .framer-xAwlO .framer-1el567w { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-xAwlO .framer-r4kswx { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-xAwlO .framer-5fdz2g { align-content: center; align-items: center; border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; border-top-left-radius: 3px; border-top-right-radius: 3px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 388px; justify-content: center; overflow: hidden; padding: 10px 10px 0px 10px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-xAwlO .framer-1v7ujiz { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-xAwlO .framer-1gub43m-container { flex: 1 0 0px; height: 111px; position: relative; width: 1px; }\",\".framer-xAwlO .framer-10b63rj, .framer-xAwlO .framer-1ci2tqp { aspect-ratio: 4.926153846153846 / 1; height: var(--framer-aspect-ratio-supported, 23px); overflow: visible; position: relative; width: 110px; }\",\".framer-xAwlO .framer-83oqqu, .framer-xAwlO .framer-wgh7pq { aspect-ratio: 3.5166666666666666 / 1; height: var(--framer-aspect-ratio-supported, 37px); overflow: visible; position: relative; width: 130px; }\",\".framer-xAwlO .framer-ap4l54, .framer-xAwlO .framer-e3eyzf { aspect-ratio: 2.830188679245283 / 1; height: var(--framer-aspect-ratio-supported, 25px); overflow: visible; position: relative; width: 70px; }\",\".framer-xAwlO .framer-g0fu1g, .framer-xAwlO .framer-gjpcq { aspect-ratio: 7.886699507389163 / 1; height: var(--framer-aspect-ratio-supported, 15px); overflow: visible; position: relative; width: 120px; }\",\".framer-xAwlO .framer-9vlqf9, .framer-xAwlO .framer-v62o4j { aspect-ratio: 1.7968574635241301 / 1; height: var(--framer-aspect-ratio-supported, 45px); overflow: visible; position: relative; width: 80px; }\",\".framer-xAwlO .framer-1n6ov9l { aspect-ratio: 8.977728285077951 / 1; height: var(--framer-aspect-ratio-supported, 13px); overflow: visible; position: relative; width: 110px; }\",\".framer-xAwlO .framer-802uai, .framer-xAwlO .framer-wogcx2 { aspect-ratio: 1.3348314606741574 / 1; height: var(--framer-aspect-ratio-supported, 51px); overflow: visible; position: relative; width: 68px; }\",\".framer-xAwlO .framer-1n2fvnv-container { aspect-ratio: 8.260504201680673 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 138px); position: relative; width: 100%; }\",\".framer-xAwlO .framer-dwjrze { aspect-ratio: 9.384615384615385 / 1; height: var(--framer-aspect-ratio-supported, 13px); overflow: visible; position: relative; width: 122px; }\",\".framer-xAwlO .framer-1w7k0nw-container { flex: none; height: auto; position: relative; width: 810px; }\",\".framer-xAwlO .framer-7jgpaj-container { cursor: pointer; flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-xAwlO.framer-72rtr7, .framer-xAwlO .framer-1832i3w, .framer-xAwlO .framer-i7o8oy, .framer-xAwlO .framer-6ovji2, .framer-xAwlO .framer-1jjy4e0, .framer-xAwlO .framer-pfmgim, .framer-xAwlO .framer-1kbzxjd, .framer-xAwlO .framer-1oj86y9, .framer-xAwlO .framer-hkijfq, .framer-xAwlO .framer-a70zx9, .framer-xAwlO .framer-1k7f8wh, .framer-xAwlO .framer-1vhy6d0, .framer-xAwlO .framer-kx482d, .framer-xAwlO .framer-1hanezp, .framer-xAwlO .framer-82vbdg, .framer-xAwlO .framer-1tbson0, .framer-xAwlO .framer-l4uf44, .framer-xAwlO .framer-4ew1ge, .framer-xAwlO .framer-1s13bg0, .framer-xAwlO .framer-2muzo0, .framer-xAwlO .framer-80572g, .framer-xAwlO .framer-u8grcf, .framer-xAwlO .framer-1tcppil, .framer-xAwlO .framer-1h16ea9, .framer-xAwlO .framer-1oirien, .framer-xAwlO .framer-duwe83, .framer-xAwlO .framer-p6p8lg, .framer-xAwlO .framer-1i9oouw, .framer-xAwlO .framer-1ufhagv, .framer-xAwlO .framer-1el567w, .framer-xAwlO .framer-ja8q1i, .framer-xAwlO .framer-5fdz2g, .framer-xAwlO .framer-1v7ujiz, .framer-xAwlO .framer-9qg266 { gap: 0px; } .framer-xAwlO.framer-72rtr7 > *, .framer-xAwlO .framer-1832i3w > *, .framer-xAwlO .framer-pfmgim > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-xAwlO.framer-72rtr7 > :first-child, .framer-xAwlO .framer-1832i3w > :first-child, .framer-xAwlO .framer-i7o8oy > :first-child, .framer-xAwlO .framer-1jjy4e0 > :first-child, .framer-xAwlO .framer-pfmgim > :first-child, .framer-xAwlO .framer-1kbzxjd > :first-child, .framer-xAwlO .framer-1oj86y9 > :first-child, .framer-xAwlO .framer-hkijfq > :first-child, .framer-xAwlO .framer-a70zx9 > :first-child, .framer-xAwlO .framer-1k7f8wh > :first-child, .framer-xAwlO .framer-1vhy6d0 > :first-child, .framer-xAwlO .framer-4ew1ge > :first-child, .framer-xAwlO .framer-1s13bg0 > :first-child, .framer-xAwlO .framer-2muzo0 > :first-child, .framer-xAwlO .framer-80572g > :first-child, .framer-xAwlO .framer-1tcppil > :first-child, .framer-xAwlO .framer-1i9oouw > :first-child, .framer-xAwlO .framer-9qg266 > :first-child { margin-top: 0px; } .framer-xAwlO.framer-72rtr7 > :last-child, .framer-xAwlO .framer-1832i3w > :last-child, .framer-xAwlO .framer-i7o8oy > :last-child, .framer-xAwlO .framer-1jjy4e0 > :last-child, .framer-xAwlO .framer-pfmgim > :last-child, .framer-xAwlO .framer-1kbzxjd > :last-child, .framer-xAwlO .framer-1oj86y9 > :last-child, .framer-xAwlO .framer-hkijfq > :last-child, .framer-xAwlO .framer-a70zx9 > :last-child, .framer-xAwlO .framer-1k7f8wh > :last-child, .framer-xAwlO .framer-1vhy6d0 > :last-child, .framer-xAwlO .framer-4ew1ge > :last-child, .framer-xAwlO .framer-1s13bg0 > :last-child, .framer-xAwlO .framer-2muzo0 > :last-child, .framer-xAwlO .framer-80572g > :last-child, .framer-xAwlO .framer-1tcppil > :last-child, .framer-xAwlO .framer-1i9oouw > :last-child, .framer-xAwlO .framer-9qg266 > :last-child { margin-bottom: 0px; } .framer-xAwlO .framer-i7o8oy > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-xAwlO .framer-6ovji2 > *, .framer-xAwlO .framer-kx482d > *, .framer-xAwlO .framer-1hanezp > *, .framer-xAwlO .framer-82vbdg > *, .framer-xAwlO .framer-1tbson0 > *, .framer-xAwlO .framer-l4uf44 > *, .framer-xAwlO .framer-u8grcf > *, .framer-xAwlO .framer-1h16ea9 > *, .framer-xAwlO .framer-1oirien > *, .framer-xAwlO .framer-duwe83 > *, .framer-xAwlO .framer-p6p8lg > *, .framer-xAwlO .framer-1ufhagv > *, .framer-xAwlO .framer-1el567w > *, .framer-xAwlO .framer-ja8q1i > *, .framer-xAwlO .framer-5fdz2g > *, .framer-xAwlO .framer-1v7ujiz > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-xAwlO .framer-6ovji2 > :first-child, .framer-xAwlO .framer-kx482d > :first-child, .framer-xAwlO .framer-1hanezp > :first-child, .framer-xAwlO .framer-82vbdg > :first-child, .framer-xAwlO .framer-1tbson0 > :first-child, .framer-xAwlO .framer-l4uf44 > :first-child, .framer-xAwlO .framer-u8grcf > :first-child, .framer-xAwlO .framer-1h16ea9 > :first-child, .framer-xAwlO .framer-1oirien > :first-child, .framer-xAwlO .framer-duwe83 > :first-child, .framer-xAwlO .framer-p6p8lg > :first-child, .framer-xAwlO .framer-1ufhagv > :first-child, .framer-xAwlO .framer-1el567w > :first-child, .framer-xAwlO .framer-ja8q1i > :first-child, .framer-xAwlO .framer-5fdz2g > :first-child, .framer-xAwlO .framer-1v7ujiz > :first-child { margin-left: 0px; } .framer-xAwlO .framer-6ovji2 > :last-child, .framer-xAwlO .framer-kx482d > :last-child, .framer-xAwlO .framer-1hanezp > :last-child, .framer-xAwlO .framer-82vbdg > :last-child, .framer-xAwlO .framer-1tbson0 > :last-child, .framer-xAwlO .framer-l4uf44 > :last-child, .framer-xAwlO .framer-u8grcf > :last-child, .framer-xAwlO .framer-1h16ea9 > :last-child, .framer-xAwlO .framer-1oirien > :last-child, .framer-xAwlO .framer-duwe83 > :last-child, .framer-xAwlO .framer-p6p8lg > :last-child, .framer-xAwlO .framer-1ufhagv > :last-child, .framer-xAwlO .framer-1el567w > :last-child, .framer-xAwlO .framer-ja8q1i > :last-child, .framer-xAwlO .framer-5fdz2g > :last-child, .framer-xAwlO .framer-1v7ujiz > :last-child { margin-right: 0px; } .framer-xAwlO .framer-1jjy4e0 > *, .framer-xAwlO .framer-1kbzxjd > *, .framer-xAwlO .framer-hkijfq > *, .framer-xAwlO .framer-a70zx9 > *, .framer-xAwlO .framer-1vhy6d0 > *, .framer-xAwlO .framer-9qg266 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-xAwlO .framer-1oj86y9 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-xAwlO .framer-1k7f8wh > *, .framer-xAwlO .framer-4ew1ge > *, .framer-xAwlO .framer-1s13bg0 > *, .framer-xAwlO .framer-2muzo0 > *, .framer-xAwlO .framer-80572g > *, .framer-xAwlO .framer-1tcppil > *, .framer-xAwlO .framer-1i9oouw > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",...sharedStyle.css,'.framer-xAwlO[data-border=\"true\"]::after, .framer-xAwlO [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: 1199px) { .framer-xAwlO.framer-72rtr7 { width: 810px; } .framer-xAwlO .framer-1832i3w { aspect-ratio: 1.3705583756345177 / 1; height: var(--framer-aspect-ratio-supported, 591px); max-height: 90vh; min-height: 420px; order: 0; padding: 48px 0px 48px 0px; } .framer-xAwlO .framer-rc5c0z { height: var(--framer-aspect-ratio-supported, 224px); } .framer-xAwlO .framer-i7o8oy { gap: 40px; } .framer-xAwlO .framer-6ovji2 { width: 70%; } .framer-xAwlO .framer-1jjy4e0, .framer-xAwlO .framer-163ar3x-container { order: 1; } .framer-xAwlO .framer-pfmgim { padding: 0px 20px 0px 20px; } .framer-xAwlO .framer-16klh2p-container { order: 0; } .framer-xAwlO .framer-1fdi78o-container, .framer-xAwlO .framer-1w7k0nw-container { order: 2; } .framer-xAwlO .framer-1oj86y9, .framer-xAwlO .framer-7jgpaj-container { order: 3; } .framer-xAwlO .framer-1vhy6d0 { padding: 0px; } .framer-xAwlO .framer-1sfq838, .framer-xAwlO .framer-1etgl9p { flex-direction: column; } .framer-xAwlO .framer-kx482d, .framer-xAwlO .framer-5fdz2g { flex: none; order: 1; width: 100%; } .framer-xAwlO .framer-moyrw8, .framer-xAwlO .framer-1ajjn0d { align-self: unset; height: 148px; order: 0; width: 100%; } .framer-xAwlO .framer-duwe83, .framer-xAwlO .framer-ja8q1i { flex: 1 0 0px; justify-content: flex-end; width: 1px; } .framer-xAwlO .framer-1n2fvnv-container { height: var(--framer-aspect-ratio-supported, 98px); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-xAwlO .framer-i7o8oy, .framer-xAwlO .framer-1sfq838, .framer-xAwlO .framer-1etgl9p { gap: 0px; } .framer-xAwlO .framer-i7o8oy > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-xAwlO .framer-i7o8oy > :first-child { margin-top: 0px; } .framer-xAwlO .framer-i7o8oy > :last-child { margin-bottom: 0px; } .framer-xAwlO .framer-1sfq838 > *, .framer-xAwlO .framer-1sfq838 > :first-child, .framer-xAwlO .framer-1sfq838 > :last-child, .framer-xAwlO .framer-1etgl9p > *, .framer-xAwlO .framer-1etgl9p > :first-child, .framer-xAwlO .framer-1etgl9p > :last-child { margin: 0px; } }}\",\"@media (max-width: 809px) { .framer-xAwlO.framer-72rtr7 { width: 390px; } .framer-xAwlO .framer-1832i3w { height: var(--framer-aspect-ratio-supported, 520px); padding: 24px 0px 24px 0px; } .framer-xAwlO .framer-rc5c0z { height: var(--framer-aspect-ratio-supported, 108px); } .framer-xAwlO .framer-i3sh7e { flex-direction: column; gap: 24px; justify-content: flex-end; } .framer-xAwlO .framer-i7o8oy { flex: none; gap: 30px; padding: 24px 0px 24px 0px; width: 100%; } .framer-xAwlO .framer-6ovji2, .framer-xAwlO .framer-4087ft { width: 100%; } .framer-xAwlO .framer-1jjy4e0 { gap: 10px; padding: 30px 10px 20px 10px; } .framer-xAwlO .framer-pfmgim { padding: 0px; } .framer-xAwlO .framer-1kbzxjd { gap: 10px; padding: 0px; } .framer-xAwlO .framer-1oj86y9 { --border-bottom-width: unset; --border-left-width: unset; --border-right-width: unset; --border-top-width: unset; background-color: #365166; gap: 20px; padding: 20px 10px 20px 10px; } .framer-xAwlO .framer-hkijfq { padding: 5px 10px 5px 10px; } .framer-xAwlO .framer-1k7f8wh { flex-direction: row; justify-content: flex-end; } .framer-xAwlO .framer-1vhy6d0 { gap: 12px; padding: 0px; } .framer-xAwlO .framer-1sfq838 { --border-color: rgba(37, 68, 92, 0.7); flex-direction: column; } .framer-xAwlO .framer-kx482d { background-color: #214359; flex: none; flex-direction: column; height: 353px; justify-content: flex-end; order: 1; padding: 0px; width: 100%; } .framer-xAwlO .framer-c33gdt-container { height: var(--framer-aspect-ratio-supported, 355px); } .framer-xAwlO .framer-moyrw8 { align-self: unset; height: 187px; order: 0; padding: 10px; width: 100%; } .framer-xAwlO .framer-1oirien, .framer-xAwlO .framer-1el567w { justify-content: flex-end; } .framer-xAwlO .framer-1etgl9p { --border-color: #222222; flex-direction: column; gap: 10px; justify-content: flex-start; } .framer-xAwlO .framer-1ajjn0d { align-self: unset; height: 187px; order: 0; width: 100%; } .framer-xAwlO .framer-5fdz2g { flex: none; order: 1; padding: 0px; width: 100%; } .framer-xAwlO .framer-1v7ujiz { flex: none; flex-direction: column; order: 2; width: 100%; } .framer-xAwlO .framer-1gub43m-container { flex: none; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-xAwlO .framer-i3sh7e, .framer-xAwlO .framer-i7o8oy, .framer-xAwlO .framer-1jjy4e0, .framer-xAwlO .framer-1kbzxjd, .framer-xAwlO .framer-1oj86y9, .framer-xAwlO .framer-1k7f8wh, .framer-xAwlO .framer-1vhy6d0, .framer-xAwlO .framer-1sfq838, .framer-xAwlO .framer-kx482d, .framer-xAwlO .framer-1etgl9p, .framer-xAwlO .framer-1v7ujiz { gap: 0px; } .framer-xAwlO .framer-i3sh7e > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-xAwlO .framer-i3sh7e > :first-child, .framer-xAwlO .framer-i7o8oy > :first-child, .framer-xAwlO .framer-1jjy4e0 > :first-child, .framer-xAwlO .framer-1kbzxjd > :first-child, .framer-xAwlO .framer-1oj86y9 > :first-child, .framer-xAwlO .framer-1vhy6d0 > :first-child, .framer-xAwlO .framer-kx482d > :first-child, .framer-xAwlO .framer-1etgl9p > :first-child, .framer-xAwlO .framer-1v7ujiz > :first-child { margin-top: 0px; } .framer-xAwlO .framer-i3sh7e > :last-child, .framer-xAwlO .framer-i7o8oy > :last-child, .framer-xAwlO .framer-1jjy4e0 > :last-child, .framer-xAwlO .framer-1kbzxjd > :last-child, .framer-xAwlO .framer-1oj86y9 > :last-child, .framer-xAwlO .framer-1vhy6d0 > :last-child, .framer-xAwlO .framer-kx482d > :last-child, .framer-xAwlO .framer-1etgl9p > :last-child, .framer-xAwlO .framer-1v7ujiz > :last-child { margin-bottom: 0px; } .framer-xAwlO .framer-i7o8oy > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-xAwlO .framer-1jjy4e0 > *, .framer-xAwlO .framer-1kbzxjd > *, .framer-xAwlO .framer-kx482d > *, .framer-xAwlO .framer-1etgl9p > *, .framer-xAwlO .framer-1v7ujiz > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-xAwlO .framer-1oj86y9 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-xAwlO .framer-1k7f8wh > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-xAwlO .framer-1k7f8wh > :first-child { margin-left: 0px; } .framer-xAwlO .framer-1k7f8wh > :last-child { margin-right: 0px; } .framer-xAwlO .framer-1vhy6d0 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-xAwlO .framer-1sfq838 > *, .framer-xAwlO .framer-1sfq838 > :first-child, .framer-xAwlO .framer-1sfq838 > :last-child { margin: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4477\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"P2z1YUs5o\":{\"layout\":[\"fixed\",\"auto\"]},\"GOGgnO2a1\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"M769sPu_B\":{\"pattern\":\":M769sPu_B\",\"name\":\"hero\"},\"zMCMWqZS9\":{\"pattern\":\":zMCMWqZS9\",\"name\":\"navchange\"},\"GmaAY9a2F\":{\"pattern\":\":GmaAY9a2F\",\"name\":\"one-view-change\"},\"cKn05ukHS\":{\"pattern\":\":cKn05ukHS\",\"name\":\"one-view\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-xAwlO\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:4477,width:1200};const variationAxes=[{defaultValue:400,maxValue:900,minValue:300,name:\"Weight\",tag:\"wght\"}];addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"BDO Grotesk Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/Sk82rOE9I0ck31H7NDDI3qwVY.woff2\"},{family:\"BDO Grotesk Variable\",source:\"custom\",url:\"https://framerusercontent.com/assets/mUeFl3gzhwtV73WbOCuVHPAIaOU.woff2\",variationAxes},{family:\"BDO Grotesk Light\",source:\"custom\",url:\"https://framerusercontent.com/assets/1ckXMZu4uTz2dyYp9ZsjtNajnT4.woff2\"}]},...TabsContentFonts,...GsgsFonts,...OneViewFonts,...Button2Fonts,...SolutionsFonts,...SlideshowFonts,...TickerFonts,...Footer4Fonts,...NavSiteNav3Fonts,...ARROWCURSORSFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerResponsiveScreen\":\"\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"4477\",\"framerImmutableVariables\":\"true\",\"framerScrollSections\":\"{\\\"M769sPu_B\\\":{\\\"pattern\\\":\\\":M769sPu_B\\\",\\\"name\\\":\\\"hero\\\"},\\\"zMCMWqZS9\\\":{\\\"pattern\\\":\\\":zMCMWqZS9\\\",\\\"name\\\":\\\"navchange\\\"},\\\"GmaAY9a2F\\\":{\\\"pattern\\\":\\\":GmaAY9a2F\\\",\\\"name\\\":\\\"one-view-change\\\"},\\\"cKn05ukHS\\\":{\\\"pattern\\\":\\\":cKn05ukHS\\\",\\\"name\\\":\\\"one-view\\\"}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"P2z1YUs5o\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GOGgnO2a1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAcceptsLayoutTemplate\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["isBrowser", "usePageVisibility", "isVisible", "setIsVisible", "ye", "ue", "onVisibilityChange", "awaitRefCallback", "element", "controller", "refCallbackResolve", "refCallbackPromise", "resolve", "reject", "current", "node", "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", "playOffscreen", "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", "filteredSlots", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "firstChild", "lastChild", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "viewportLength", "window", "Z", "scheduleMeasure", "frame", "fe", "initialResize", "ue", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "visibilityRef", "isInView", "useInView", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "item", "setDelta", "delta", "transition", "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", "slideKey", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "visibility", "mix", "LayoutGroup", "q", "selectedOpacity", "total", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "text", "text2", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "vw6krL0ow", "DoQ90NtLv", "sF1GbxxZW", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "RichText2", "css", "FramerQpaBBUtli", "withCSS", "QpaBBUtli_default", "addPropertyControls", "ControlType", "variationAxes", "addFonts", "MetricCircleFonts", "getFonts", "QpaBBUtli_default", "SmartComponentScopedContainerWithFX", "withFX", "SmartComponentScopedContainer", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "animation1", "transition3", "animation2", "transition4", "animation3", "transition5", "animation4", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "ComponentViewportProvider", "css", "FramerjiReBlm1J", "withCSS", "jiReBlm1J_default", "addPropertyControls", "ControlType", "addFonts", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "background", "color", "fontSize", "height", "id", "title", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "l0hw1garg", "eJA1D3mLK", "UvahNivIK", "kkneNr6XY", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "RichText2", "css", "FramerZv64KJFib", "withCSS", "Zv64KJFib_default", "addPropertyControls", "ControlType", "variationAxes", "addFonts", "BulletPoint2Fonts", "getFonts", "Zv64KJFib_default", "Option1Fonts", "xlmSdvenh_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "numberToPixelString", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "featuresPadding", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "Y2dCh1PjJ", "Q86JkECvG", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "RoK3PVlbk3a1evk", "args", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "router", "useRouter", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "ResolveLinks", "resolvedLinks", "css", "FramereB84KWUf8", "withCSS", "eB84KWUf8_default", "addPropertyControls", "ControlType", "variationAxes", "addFonts", "SsFonts", "getFonts", "iyaY1aNns_default", "PlanSimpleFonts", "eB84KWUf8_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerDeB1G79Gi", "withCSS", "DeB1G79Gi_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "link", "link2", "mouseEnter2", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "fb11_Ntt8", "VUK6DAE9Z", "mIY8w8Wh7", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnter1awxbi3", "args", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "Link", "u", "RichText2", "css", "Framerl1KEtCO7J", "withCSS", "l1KEtCO7J_default", "addPropertyControls", "ControlType", "variationAxes", "addFonts", "SSFonts", "getFonts", "l1KEtCO7J_default", "SdsFonts", "DeB1G79Gi_default", "SsFonts", "iyaY1aNns_default", "Button2Fonts", "uM1g3nJW0_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "VUK6DAE9Z1c72c24", "args", "VUK6DAE9Zyjjip4", "VUK6DAE9Zq9losl", "VUK6DAE9Z19o3sey", "VUK6DAE9Z147xm94", "VUK6DAE9Zzjnebj", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "router", "useRouter", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "ResolveLinks", "resolvedLinks", "css", "FramerMC2iiD4Yn", "withCSS", "MC2iiD4Yn_default", "addPropertyControls", "ControlType", "variationAxes", "addFonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "click2", "height", "id", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "eQPhB2fDh", "K0OQ8atWf", "HCK0l3cmP", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapcz0eoc", "args", "scopingClassNames", "cx", "LayoutGroup", "RichText2", "css", "FrameraMhIXt0uW", "withCSS", "aMhIXt0uW_default", "addPropertyControls", "ControlType", "addFonts", "MaterialFonts", "getFonts", "Icon", "MaterialControls", "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", "gap", "height", "icon", "id", "name1", "text", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "SNnZQjaN_", "hl0mVYZYu", "eK85FU2LU", "iz8MDozuX", "vv3vXVh7v", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "FramerGU31Vqo7C", "withCSS", "GU31Vqo7C_default", "addPropertyControls", "ControlType", "variationAxes", "addFonts", "TabsTabFonts", "getFonts", "aMhIXt0uW_default", "SmallIconItemFonts", "GU31Vqo7C_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "contentGap", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "Vm1DaRlZj", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "K0OQ8atWfigjke", "args", "eQPhB2fDhigjke", "K0OQ8atWfu6iyps", "eQPhB2fDhu6iyps", "K0OQ8atWf1gl1fpw", "eQPhB2fDh1gl1fpw", "eQPhB2fDh1th1c9k", "eQPhB2fDh1ct65iq", "eQPhB2fDh11kgepk", "eQPhB2fDhkzd6f4", "eQPhB2fDh494lrv", "eQPhB2fDhvoyk43", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "Image2", "getLoadingLazyAtYPosition", "css", "Framerpag7V5EkB", "withCSS", "pag7V5EkB_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "ImageWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Image2", "MotionDivWithOptimizedAppearEffect", "motion", "TabsContentFonts", "getFonts", "pag7V5EkB_default", "GsgsFonts", "jiReBlm1J_default", "OneViewFonts", "MC2iiD4Yn_default", "Button2Fonts", "uM1g3nJW0_default", "SolutionsFonts", "gAzCZb4NN_default", "SolutionsWithVariantAppearEffect", "withVariantAppearEffect", "SlideshowFonts", "Slideshow", "TickerFonts", "Ticker", "Footer4Fonts", "c6IJbU3Ad_default", "NavSiteNav3Fonts", "YMdpURw26_default", "NavSiteNav3WithVariantAppearEffect", "ARROWCURSORSFonts", "mDQb2IT55_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "transformTemplate1", "_", "t", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "transition3", "cursor", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "dFVXJhBb7a6O7vlQbh", "bHS0JIpata6O7vlQbh", "j0YLt8w2wa6O7vlQbh", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "elementId2", "ref3", "elementId3", "ref4", "router", "useRouter", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "getLoadingLazyAtYPosition", "PropertyOverrides2", "x", "RichText2", "ComponentViewportProvider", "Container", "ResolveLinks", "resolvedLinks", "Link", "resolvedLinks1", "resolvedLinks2", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "variationAxes", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
