{"version":3,"file":"I-F3cwcWHFcA-HHcRXAa2OJC10EsORtfrZFPTmaE-xk.OLWHW0pc.mjs","names":["progress","start","end","isSelected","dotStyle","React","addPropertyOverrides","enabledGestures","serializationHash","variantClassNames","transition1","Transition","Variants","getProps","createLayoutDependency","Component","className","css","__FramerMetadata__","addPropertyOverrides","serializationHash","variantClassNames","transition1","Transition","Variants","humanReadableVariantMap","getProps","createLayoutDependency","Component","className","css","serializationHash","variantClassNames","transition1","getProps","Component","className","css","fonts","css","className","Navbar","RotateBorder","InnerBox","Button_price","Button_priceInfo","Iconoir","Card_Testimonials","Title","Button_features","CompareItems","Accordion3","TermiusFooterLight","metadata","className","PropertyOverrides","Image","css"],"sources":["https:/framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/w90zR0qzeh1mgaDSvD54/Carousel.js","https:/framer.com/m/iconoir-icons/Home.js@0.0.11","https:/framerusercontent.com/modules/zL9598C4KbEbqUGvSR14/rI8sPHpnG9XGcCPc0vU4/Iconoir.js","https:/framerusercontent.com/modules/taEwXmkzvMrGAumrLZ8W/aX0sychqATSznsBeiWxs/dgxPN1Hgj.js","https:/framerusercontent.com/modules/9Px9ARalEr2iwXrJnKFd/CA5FQ9A4Fk1H0Nev1lB2/PFCVrIM90.js","https:/framerusercontent.com/modules/yB99NylYlAFCUO8Xua5J/091qYAcn9ELzth6rfyyd/pS1rMbzTR.js","https:/framerusercontent.com/modules/0zGz2lofCTGo7R3vTDVD/26BCPOackxUJrn2SyB5L/IHKyzxX1D.js","https:/framerusercontent.com/modules/GU3nKhg2nHXtZUxlBnjF/9zhrZvy2ybiC69gngJDN/Jo1uvVDev.js"],"sourcesContent":["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useCallback,useLayoutEffect,useEffect,useState,useRef,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{scroll,resize}from\"@motionone/dom\";import{clamp,progress}from\"@motionone/utils\";import{animate,motion,useMotionValue,useTransform,useReducedMotion}from\"framer-motion\";import{usePadding,paddingControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * Calculate the width of the fade mask. Fade width and inset are provided\n * as percentages. There's a fade on the left and the right, so we return\n * a maximum of 50%.\n */ function calcMaskWidth([inset,width]){return inset+(100-inset)*(width/100)*.5;}/**\n * Use media queries to determine if this device uses a mouse as\n * the primary input.\n */ function useIsMouse(){const[isMouseDevice,setIsMouseDevice]=useState(false);useLayoutEffect(()=>{setIsMouseDevice(window.matchMedia(\"(pointer:fine)\").matches);},[]);return isMouseDevice;}/**\n * This checks a scroll position against the available scrollable\n * range. If we have hit an edge, start/end, we fade out the pagination\n * controls and mask. Likewise if we've just moved away from an edge we\n * fade them back in.\n */ function checkLimit(progress,target,{edgeOpacity,moreItems,buttonRef},transition){if(moreItems.current&&progress===target){moreItems.current=false;animate(edgeOpacity,1,transition);buttonRef.current.setAttribute(\"disabled\",\"\");}else if(!moreItems.current&&progress!==target){moreItems.current=true;animate(edgeOpacity,0,transition);buttonRef.current.removeAttribute(\"disabled\");}}function useGUI(initialMoreItems,initialAlpha){const moreItems=useRef(initialMoreItems);const edgeOpacity=useMotionValue(moreItems.current?0:1);const fadeOpacity=useTransform(edgeOpacity,[0,1],[initialAlpha||0,1]);const buttonOpacity=useTransform(edgeOpacity,v=>1-v);const buttonRef=useRef(null);/**\n     * Returns a pointer-events CSS value for a given opacity.\n     * The threshold here is arbitrary, the theory being we\n     * should only enable pointer-events when the button is\n     * somewhat visible.\n     */ const pointerEvents=useTransform(buttonOpacity,v=>v>.2?\"auto\":\"none\");/**\n     * Returns a cursor CSS value for a given pointer-events value.\n     * So only indicate\n     */ const cursor=useTransform(pointerEvents,v=>v===\"auto\"?\"pointer\":\"default\");const buttonStyle={...baseButtonStyles,opacity:buttonOpacity,pointerEvents,cursor};return{moreItems,fadeOpacity,edgeOpacity,buttonStyle,buttonRef};}function setAriaVisible({element}){element.setAttribute(\"aria-hidden\",false);}function useScrollLimits(container,axis,scrollInfo,updateCurrentScroll,targetScroll,checkLimits,measureItems){useEffect(()=>{if(!container.current)return;const updateScrollInfo=info=>{scrollInfo.current=info[axis];/**\n             * If we've reached our target scroll, delete it.\n             * This way we know when to make calculations based on the\n             * actual current scroll or the target scroll.\n             */ if(info[axis].current===targetScroll.current){targetScroll.current=undefined;}updateCurrentScroll(info[axis].current);checkLimits();};const stopScroll=scroll(updateScrollInfo,{container:container.current,axis});const stopResize=resize(container.current,()=>{measureItems();checkLimits();});return()=>{stopScroll();stopResize();};},[checkLimits,measureItems]);}/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */ export default function Carousel({slots,gap,axis,align,sizingObject,fadeObject,arrowObject,snapObject,progressObject,ariaLabel,borderRadius,effectsObject,...props}){const numItems=Children.count(slots);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const padding=usePadding(props);const axisLabel=axis?\"x\":\"y\";const{fadeContent,fadeWidth,fadeInset,fadeTransition,fadeAlpha}=fadeObject;const{snap,snapEdge,fluid}=snapObject;const{widthType,widthInset,widthColumns,heightType,heightInset,heightRows}=sizingObject;const{showScrollbar,showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressObject;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowPadding}=arrowObject;/**\n     * The latest scroll info on the scrollable axis as reported by Motion One.\n     */ const scrollInfo=useRef(undefined);/**\n     * The target scroll we're currently animating to, calculated when\n     * a user presses a pagination button.\n     */ const targetScroll=useRef(undefined);/**\n     * If we're performing a scroll animation, return the target scroll instead\n     * of the latest scroll position. This will help users paginate through\n     * a carousel much quicker.\n     */ const currentScroll=useMotionValue(0);const updateCurrentScroll=newScroll=>{currentScroll.set(targetScroll.current!==undefined?targetScroll.current:newScroll);};/**\n     * We only want to display pagination buttons if the user has enabled the setting\n     * and this is actually a mouse device.\n     */ const isMouseDevice=useIsMouse();/**\n     * Create all the motion values for the GUI at each end of the carousel.\n     */ const start=useGUI(false,fadeAlpha);const end=useGUI(true,fadeAlpha);const startMaskInset=useMotionValue(fadeInset*.5);const endMaskInset=useTransform(startMaskInset,v=>100-v);const baseWidth=useMotionValue(fadeWidth);const startMaskWidth=useTransform([startMaskInset,baseWidth],calcMaskWidth);const endMaskWidth=useTransform(startMaskWidth,v=>100-v);const direction=useMotionValue(axis?\"right\":\"bottom\");const mask=useTransform([direction,start.fadeOpacity,startMaskInset,startMaskWidth,end.fadeOpacity,endMaskInset,endMaskWidth,],latest=>{return`linear-gradient(to ${latest[0]}, rgb(0, 0, 0, ${latest[1]}) ${latest[2]}%, rgb(0, 0, 0, 1) ${latest[3]}%, rgba(0, 0, 0, 1) ${latest[6]}%, rgb(0, 0, 0, ${latest[4]}) ${latest[5]}%)`;});const carouselRef=useRef(null);/**\n     * Dots state\n     */ const[numPages,setNumPages]=useState(isCanvas?4:1);/**\n     * Generate styles for components.\n     */ const itemStyle={scrollSnapAlign:snapEdge,flexShrink:0};const childStyle={};if(align===\"stretch\"){if(axis){childStyle.height=\"100%\";itemStyle.height=\"auto\";}else{childStyle.width=\"100%\";itemStyle.width=\"auto\";}}if(!fluid){itemStyle.scrollSnapStop=\"always\";}if(widthType===\"stretch\"){itemStyle.width=`calc(100% - ${widthInset||0}px)`;childStyle.width=\"100%\";}else if(widthType===\"columns\"){itemStyle.width=`calc(${100/widthColumns}% - ${gap}px + ${gap/widthColumns}px)`;childStyle.width=\"100%\";}if(heightType===\"stretch\"){itemStyle.height=`calc(100% - ${heightInset||0}px)`;childStyle.height=\"100%\";}else if(heightType===\"rows\"){itemStyle.height=`calc(${100/heightRows}% - ${gap}px + ${gap/heightRows}px)`;childStyle.height=\"100%\";}const scrollOverflow=isCanvas?\"hidden\":\"auto\";const containerStyle={...baseContainerStyle,padding};const carouselStyle={...baseCarouselStyle,gap,alignItems:align,flexDirection:axis?\"row\":\"column\",overflowX:axis?scrollOverflow:\"hidden\",overflowY:axis?\"hidden\":scrollOverflow,scrollSnapType:snap?`${axisLabel} mandatory`:undefined,WebkitOverflowScrolling:\"touch\",WebkitMaskImage:fadeContent?mask:undefined,MozMaskImage:fadeContent?mask:undefined,maskImage:fadeContent?mask:undefined,borderRadius};const carouselA11y={[\"aria-roledescription\"]:\"carousel\"};if(ariaLabel){carouselA11y[\"aria-title\"]=ariaLabel;}const itemA11y={};if(align===\"stretch\"){itemA11y[\"aria-role\"]=\"group\";itemA11y[\"aria-roledescription\"]=\"slide\";}if(!isCanvas){const itemSizes=useRef([]);useScrollLimits(carouselRef,axisLabel,scrollInfo,updateCurrentScroll,targetScroll,useCallback(()=>{if(!scrollInfo.current)return;const{targetLength,containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();if(!targetLength&&!containerLength)return;if(targetLength>containerLength){checkLimit(current,0,start,fadeTransition);checkLimit(current,scrollLength,end,fadeTransition);for(let i=0;i<itemSizes.current.length;i++){const{element,start:start1,end:end1}=itemSizes.current[i];if(end1<current||start1>current+containerLength){element.setAttribute(\"aria-hidden\",true);}else{element.setAttribute(\"aria-hidden\",false);}}}else{checkLimit(0,0,start,fadeTransition);checkLimit(1,1,end,fadeTransition);itemSizes.current.forEach(setAriaVisible);}// This used to be Math.ceil, which would round 3.05 to 4.\n// This now uses Math.round to ensure people get a perfect amount of dots\n// when using Columns or Rows — Benjamin\n/**\n                 * Update by Matt: changing back to ceil, might break dots but round was incorrectly\n                 * paginating for all widths - overshooting items at shorter viewports and\n                 * not paginating at all for wide.\n                 */ let newNumPages=Math.ceil(targetLength/containerLength);if(!isNaN(newNumPages)){// If the number of dots is 65% of the number of items, make it 100%\nif(newNumPages/numItems>.65)newNumPages=numItems;if(newNumPages!==numPages)setNumPages(newNumPages);}},[numPages]),useCallback(()=>{if(!carouselRef.current)return;itemSizes.current=Array.from(carouselRef.current.children).map(element=>{return axis?{element,start:element.offsetLeft,end:element.offsetLeft+element.offsetWidth}:{element,start:element.offsetTop,end:element.offsetTop+element.offsetHeight};});},[]));}/**\n     * On the canvas, we want to keep the motion values updated\n     * with the latest props. Outside of the canvas these will never\n     * update.\n     */ if(isCanvas){useEffect(()=>{baseWidth.set(fadeWidth);},[fadeWidth]);useEffect(()=>{startMaskInset.set(fadeInset*.5);},[fadeInset]);useEffect(()=>{direction.set(axis?\"right\":\"bottom\");},[axis]);}const findNextItem=(delta,target)=>{if(!scrollInfo.current)return;const{current}=scrollInfo.current;const{children}=carouselRef.current;let scrollTarget;let i=delta===1?0:children.length-1;while(scrollTarget===undefined){const item=children[i];const start=axis?item.offsetLeft:item.offsetTop;const length=axis?item.offsetWidth:item.offsetHeight;const end=start+length;const threshold=.05;if(delta===1){const visibility=progress(start,end,target);if(visibility<1-threshold){scrollTarget=start;}else if(i===children.length-1){scrollTarget=end;}}else if(delta===-1){const visibility1=progress(start,end,target);if(visibility1>threshold){scrollTarget=end;}else if(i===0){scrollTarget=start;}}i+=delta;}return scrollTarget;};const isReducedMotion=useReducedMotion();const goto=scrollTo=>{targetScroll.current=scrollTo;const options=axis?{left:scrollTo}:{top:scrollTo};carouselRef.current.scrollTo({...options,behavior:isReducedMotion?\"auto\":\"smooth\"});};const gotoPage=page=>{if(!scrollInfo.current)return;const{scrollLength}=scrollInfo.current;goto(page*(scrollLength/(numPages-1)));};const gotoDelta=delta=>()=>{if(!scrollInfo.current)return;const{containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();const pageLength=scrollLength/numPages;const currentPage=clamp(0,numPages-1,Math.floor(current/pageLength));gotoPage(currentPage+delta);};/**\n     * Return placeholder if no children\n     */ if(numItems===0){return /*#__PURE__*/ _jsx(Placeholder,{});}const dots=[];const dotsBlurStyle={};if(numPages>1&&showProgressDots&&!showScrollbar){for(let i=0;i<numPages;i++){const isSelected=isCanvas&&!i||false;dots.push(/*#__PURE__*/ _jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,isSelected:isSelected,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>gotoPage(i),currentScroll:currentScroll,scrollInfo:scrollInfo,total:numPages,index:i,gap:dotsGap,padding:dotsPadding,axis:axis}));}if(dotsBlur){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}return /*#__PURE__*/ _jsxs(\"section\",{style:containerStyle,...carouselA11y,children:[/*#__PURE__*/ _jsx(motion.ul,{ref:carouselRef,style:carouselStyle,className:\"framer--carousel\",\"data-show-scrollbar\":showScrollbar,\"aria-atomic\":\"false\",\"aria-live\":\"polite\",onWheel:()=>targetScroll.current=undefined,children:Children.map(slots,(child,index)=>{var ref;/*#__PURE__*/ return _jsx(\"li\",{style:itemStyle,...itemA11y,\"aria-label\":`${index+1} of ${numItems}`,children:/*#__PURE__*/ cloneElement(child,{...child.props,style:{...(ref=child.props)===null||ref===void 0?void 0:ref.style,...childStyle}})});})}),/*#__PURE__*/ _jsxs(\"fieldset\",{style:{...controlsStyles,padding:arrowPadding,display:\"flex\",flexDirection:axis?\"row\":\"column\"},\"aria-label\":\"Carousel pagination controls\",className:\"framer--carousel-controls\",\"data-show-mouse-controls\":showMouseControls,children:[/*#__PURE__*/ _jsx(motion.button,{ref:start.buttonRef,type:\"button\",style:{...start.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/ _jsx(\"img\",{alt:\"\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\"})}),/*#__PURE__*/ _jsx(motion.button,{ref:end.buttonRef,type:\"button\",style:{...end.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/ _jsx(\"img\",{alt:\"\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\"})}),dots.length>1?/*#__PURE__*/ _jsx(\"div\",{style:{...dotsContainerStyle,left:axis?\"50%\":dotsInset,top:!axis?\"50%\":\"unset\",transform:axis?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:axis?\"row\":\"column\",bottom:axis?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,...dotsBlurStyle},children:dots}):null]}),/*#__PURE__*/ _jsx(MouseStyles,{})]});};/* Default Properties */ Carousel.defaultProps={gap:10,padding:10,progressObject:{showScrollbar:false,showProgressDots:false},sizingObject:{widthType:\"auto\",widthOffset:0,widthColumns:2,heightType:\"auto\",heightOffset:0,heightRows:2},borderRadius:0};/* Property Controls */ addPropertyControls(Carousel,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},axis:{type:ControlType.Enum,title:\"Direction\",options:[true,false],optionIcons:[\"direction-horizontal\",\"direction-vertical\"],displaySegmentedControl:true},align:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{axis:{true:[\"align-top\",\"align-middle\",\"align-bottom\"],false:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},...paddingControl,sizingObject:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Enum,title:\"Width\",options:[\"auto\",\"stretch\",\"columns\"],optionTitles:[\"Auto\",\"Stretch\",\"Columns\"],defaultValue:\"auto\"},widthInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.widthType!==\"stretch\"},widthColumns:{type:ControlType.Number,title:\"Columns\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.widthType!==\"columns\"},heightType:{type:ControlType.Enum,title:\"Height\",options:[\"auto\",\"stretch\",\"rows\"],optionTitles:[\"Auto\",\"Stretch\",\"Rows\"],defaultValue:\"auto\"},heightInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.heightType!==\"stretch\"},heightRows:{type:ControlType.Number,title:\"Rows\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.heightType!==\"rows\"}}},snapObject:{type:ControlType.Object,title:\"Snapping\",controls:{snap:{type:ControlType.Boolean,title:\"Enable\"},snapEdge:{type:ControlType.Enum,title:\"Edge\",options:[\"start\",\"center\",\"end\"],optionTitles:[\"Left\",\"Center\",\"Right\"],defaultValue:\"center\",hidden:props=>!props.snap},fluid:{type:ControlType.Boolean,title:\"Fluid\",defaultValue:false,hidden:props=>!props.snap}}},fadeObject:{type:ControlType.Object,title:\"Fading\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Enable\",defaultValue:false},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",hidden:props=>!props.fadeContent,min:0,max:1,step:.05,defaultValue:0},fadeTransition:{type:ControlType.Transition,title:\"Transition\",hidden:props=>!props.fadeContent}}},progressObject:{type:ControlType.Object,title:\"Progress\",controls:{showScrollbar:{type:ControlType.Boolean,title:\"Scroll Bar\",defaultValue:false},showProgressDots:{type:ControlType.Boolean,title:\"Dots\",defaultValue:false,hidden:props=>props.showScrollbar},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:4,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}},arrowObject:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:true},arrowFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showMouseControls},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:40,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls}}},ariaLabel:{type:ControlType.String,title:\"Aria Label\",placeholder:\"Movies...\"},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0}});function Dot({currentScroll,scrollInfo,isSelected,selectedOpacity,opacity:unselectedOpacity,total,index,dotStyle,buttonStyle,gap,padding,axis,...props}){const opacity=useTransform(currentScroll,v=>{var ref,ref1;if(!((ref=scrollInfo.current)===null||ref===void 0?void 0:ref.scrollLength)){return index===0?selectedOpacity:unselectedOpacity;}const pageLength=((ref1=scrollInfo.current)===null||ref1===void 0?void 0:ref1.scrollLength)/total;const minScroll=pageLength*index;const maxScroll=minScroll+pageLength;const isSelected=v>=minScroll&&(index<total-1?v<maxScroll:index===total-1);return isSelected?selectedOpacity:unselectedOpacity;});const inlinePadding=gap/2;let top=!axis&&index>0?inlinePadding:padding;let bottom=!axis&&index!==total-1?inlinePadding:padding;let right=axis&&index!==total-1?inlinePadding:padding;let left=axis&&index>0?inlinePadding:padding;return /*#__PURE__*/ _jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/ _jsx(motion.div,{style:{...dotStyle,opacity}})});}function Placeholder(){return /*#__PURE__*/ _jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/ _jsx(\"div\",{style:emojiStyles,children:\"✨\"}),/*#__PURE__*/ _jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/ _jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to swipe between.\"})]});}function MouseStyles(){return /*#__PURE__*/ _jsx(\"div\",{dangerouslySetInnerHTML:{__html:`<style>@media (pointer: fine) {\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar {\n                    display: none;\n                    -webkit-appearance: none;\n                    width: 0;\n                    height: 0;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar-thumb {\n                    display: none;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"] {\n                    scrollbar-width: none;\n                    scrollbar-height: none;\n                }\n            }</style>`}});}/* Styles */ const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:130,lineHeight:1.5,textAlign:\"center\"};const labelStyle={clip:\"rect(0 0 0 0)\",WebkitClipPath:\"inset(50%)\",clipPath:\"inset(50%)\",height:1,width:1,margin:-1,padding:0,overflow:\"hidden\",position:\"absolute\",whiteSpace:\"nowrap\"};/**\n * GUI styles\n */ const baseContainerStyle={display:\"flex\",overflow:\"hidden\",width:\"100%\",height:\"100%\",position:\"relative\"};const baseCarouselStyle={padding:0,margin:0,listStyle:\"none\",position:\"relative\",display:\"flex\",flex:\"1 1 100%\",width:\"100%\",height:\"100%\"};const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",top:0,left:0,right:0,bottom:0,pointerEvents:\"none\",border:0,padding:0,margin:0};/**\n * Dot styles\n */ const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Carousel\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.map","let e;var f=r=>{if(!e){let o=function(t,n){return r.createElement(\"svg\",{width:\"100%\",height:\"1.5em\",strokeWidth:1.5,viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http://www.w3.org/2000/svg\",color:\"currentColor\",ref:n,...t},r.createElement(\"path\",{d:\"M3 9.5L12 4l9 5.5M19 13v6.4a.6.6 0 01-.6.6H5.6a.6.6 0 01-.6-.6V13\",stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}))};e=r.forwardRef(o)}return e};export{f as default};\n","import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{useState,useEffect,useRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{NullState}from\"https://framer.com/m/framer/icon-nullstate.js@0.7.0\";import HomeFactory from\"https://framer.com/m/iconoir-icons/Home.js@0.0.11\";import{defaultEvents,useIconSelection}from\"https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js\";export const iconKeys=[\"Accessibility\",\"AccessibilitySign\",\"AccessibilityTech\",\"Activity\",\"AddCircledOutline\",\"AddDatabaseScript\",\"AddFolder\",\"AddFrame\",\"AddHexagon\",\"AddKeyframe\",\"AddKeyframeAlt\",\"AddKeyframes\",\"AddLens\",\"AddPage\",\"AddPinAlt\",\"AddSelection\",\"AddSquare\",\"AddToCart\",\"AddUser\",\"Airplane\",\"AirplaneHelix\",\"AirplaneHelix45Deg\",\"AirplaneOff\",\"AirplaneRotation\",\"Airplay\",\"Alarm\",\"Album\",\"AlbumCarousel\",\"AlbumList\",\"AlbumOpen\",\"AlignBottomBox\",\"AlignCenter\",\"AlignJustify\",\"AlignLeft\",\"AlignLeftBox\",\"AlignRight\",\"AlignRightBox\",\"AlignTopBox\",\"Antenna\",\"AntennaOff\",\"AntennaSignal\",\"AppNotification\",\"Apple\",\"AppleHalf\",\"AppleHalfAlt\",\"AppleImac2021\",\"AppleImac2021Side\",\"AppleSwift\",\"ArSymbol\",\"Archery\",\"Archive\",\"AreaSearch\",\"ArrowArchery\",\"ArrowDown\",\"ArrowDownCircled\",\"ArrowLeft\",\"ArrowLeftCircled\",\"ArrowRight\",\"ArrowRightCircled\",\"ArrowSeparate\",\"ArrowUnion\",\"ArrowUnionVertical\",\"ArrowUp\",\"ArrowUpCircled\",\"Asana\",\"Attachment\",\"AutoFlash\",\"Bag\",\"BasketBall\",\"BasketBallAlt\",\"BasketballField\",\"Battery25\",\"Battery50\",\"Battery75\",\"BatteryCharging\",\"BatteryEmpty\",\"BatteryFull\",\"BatteryIndicator\",\"BatteryWarning\",\"BeachBag\",\"BeachBagBig\",\"Bell\",\"BellNotification\",\"BellOff\",\"Bicycle\",\"Bin\",\"BinAdd\",\"BinFull\",\"BinHalf\",\"BinMinus\",\"Bluetooth\",\"Bold\",\"BoldSquareOutline\",\"BookmarkCircled\",\"BookmarkEmpty\",\"BorderBl\",\"BorderBottom\",\"BorderBr\",\"BorderInner\",\"BorderLeft\",\"BorderOut\",\"BorderRight\",\"BorderTl\",\"BorderTop\",\"BorderTr\",\"BounceLeft\",\"BounceRight\",\"BowlingBall\",\"Box\",\"BoxIso\",\"BoxingGlove\",\"BubbleDownload\",\"BubbleError\",\"BubbleIncome\",\"BubbleOutcome\",\"BubbleSearch\",\"BubbleStar\",\"BubbleUpload\",\"BubbleWarning\",\"Building\",\"BusOutline\",\"BusStop\",\"Calculator\",\"Calendar\",\"Camera\",\"Cancel\",\"CarOutline\",\"Cart\",\"CartAlt\",\"Cash\",\"Cell4X4\",\"CenterAlign\",\"ChatAdd\",\"ChatBubble\",\"ChatBubbleCheck\",\"ChatBubbleCheck1\",\"ChatBubbleEmpty\",\"ChatBubbleError\",\"ChatBubbleQuestion\",\"ChatBubbleTranslate\",\"ChatBubbleWarning\",\"ChatLines\",\"ChatRemove\",\"Check\",\"CheckCircledOutline\",\"Chocolate\",\"Chromecast\",\"ChromecastActive\",\"Church\",\"ChurchAlt\",\"CinemaOld\",\"Circle\",\"City\",\"ClockOutline\",\"Closet\",\"Cloud\",\"CloudBookAlt\",\"CloudCheck\",\"CloudDesync\",\"CloudDownload\",\"CloudError\",\"CloudSunny\",\"CloudSync\",\"CloudUpload\",\"Code\",\"Codepen\",\"Coin\",\"CollageFrame\",\"Collapse\",\"ColorFilter\",\"ColorPicker\",\"ColorPickerEmpty\",\"Combine\",\"CompactDisc\",\"Compress\",\"CompressLines\",\"Computer\",\"ControlSlider\",\"Copy\",\"Copyright\",\"CornerBottomLeft\",\"CornerBottomRight\",\"CornerTopLeft\",\"CornerTopRight\",\"Cpu\",\"CpuWarning\",\"CrackedEgg\",\"CreativeCommons\",\"CreditCard\",\"CreditCard2\",\"Crop\",\"CropRotateBl\",\"CropRotateBr\",\"CropRotateTl\",\"CropRotateTr\",\"Css3\",\"CursorPointer\",\"Cut\",\"CutAlt\",\"Cycling\",\"DashFlag\",\"Dashboard\",\"DashboardDots\",\"DashboardSpeed\",\"DataTransferBoth\",\"DataTransferCheck\",\"DataTransferDown\",\"DataTransferUp\",\"DataTransferWarning\",\"DatabaseBackup\",\"DatabaseExport\",\"DatabaseMonitor\",\"DatabaseRestore\",\"DatabaseScript\",\"DatabaseSettings\",\"DatabaseStar\",\"DatabaseStats\",\"Db\",\"DbCheck\",\"DbError\",\"DbSearch\",\"DbStar\",\"DbWarning\",\"DeCompress\",\"DeleteCircledOutline\",\"DesignPencil\",\"Dialpad\",\"Display4K\",\"DivideSelection1\",\"DivideSelection2\",\"DocSearch\",\"DocSearchAlt\",\"DocStar\",\"DocStarAlt\",\"Dollar\",\"DomoticIssue\",\"Donate\",\"DoubleCheck\",\"DownRoundArrow\",\"Download\",\"DragHandGesture\",\"Drawer\",\"Dribbble\",\"Droplet\",\"DropletHalf\",\"EaseIn\",\"EaseInControlPoint\",\"EaseInOut\",\"EaseOut\",\"EaseOutControlPoint\",\"Edit\",\"EditPencil\",\"Egg\",\"Eject\",\"ElectronicsChip\",\"Emoji\",\"EmojiBall\",\"EmojiBlinkLeft\",\"EmojiBlinkRight\",\"EmojiLookBottom\",\"EmojiLookLeft\",\"EmojiLookRight\",\"EmojiLookTop\",\"EmojiQuite\",\"EmojiReally\",\"EmojiSad\",\"EmojiSatisfied\",\"EmojiSingLeft\",\"EmojiSingLeftNote\",\"EmojiSingRight\",\"EmojiSingRightNote\",\"EmojiSurprise\",\"EmojiSurpriseAlt\",\"EmojiTalkingAngry\",\"EmojiTalkingHappy\",\"EmojiThinkLeft\",\"EmojiThinkRight\",\"EmptyPage\",\"Enlarge\",\"EnlargeRoundArrow\",\"Euro\",\"EuroSquare\",\"EvCharge\",\"EvChargeAlt\",\"EvPlug\",\"EvPlugCharging\",\"EvPlugError\",\"EvStation\",\"Exclude\",\"Expand\",\"ExpandLines\",\"EyeAlt\",\"EyeClose\",\"EyeEmpty\",\"EyeOff\",\"FaceId\",\"Facebook\",\"FacebookSquared\",\"Farm\",\"FastArrowDown\",\"FastArrowDownBox\",\"FastArrowLeft\",\"FastArrowLeftBox\",\"FastArrowRight\",\"FastArrowRightBox\",\"FastArrowTop\",\"FastArrowUpBox\",\"FastBottomCircle\",\"FastLeftCircle\",\"FastRightCircle\",\"FastTopCircle\",\"Female\",\"Figma\",\"FileNotFound\",\"Filter\",\"FilterAlt\",\"Finder\",\"Fingerprint\",\"FingerprintCircled\",\"FingerprintCircledOk\",\"FingerprintPhone\",\"FingerprintScan\",\"FingerprintSquared\",\"Fishing\",\"Flare\",\"Flash\",\"FlashOff\",\"Flip\",\"FlipReverse\",\"Flower\",\"Fog\",\"Folder\",\"FolderAlert\",\"FontSize\",\"Football\",\"FootballBall\",\"ForwardOutline\",\"Frame\",\"FrameAlt\",\"FrameAltEmpty\",\"FrameSelect\",\"FrameSimple\",\"FrameTool\",\"Fridge\",\"Fx\",\"Garage\",\"Gas\",\"GasTank\",\"GasTankDrop\",\"Gift\",\"GitBranch\",\"GitCommit\",\"GitHub\",\"GitHubOutline\",\"GitLabFull\",\"GitMerge\",\"GlassEmpty\",\"GlassHalf\",\"GlassHalfAlt\",\"Glasses\",\"Golf\",\"Google\",\"GoogleCircled\",\"GoogleDocs\",\"GoogleDrive\",\"GoogleDriveCheck\",\"GoogleDriveSync\",\"GoogleDriveWarning\",\"GoogleHome\",\"GoogleOne\",\"Gps\",\"GraphDown\",\"GraphUp\",\"GridAdd\",\"GridMinus\",\"GridRemove\",\"Group\",\"Gym\",\"HalfMoon\",\"HandBrake\",\"Handbag\",\"HardDrive\",\"Hat\",\"Hd\",\"Hdr\",\"Headset\",\"HeadsetCharge\",\"HeadsetHelp\",\"HeadsetIssue\",\"HealthShield\",\"Healthcare\",\"Heart\",\"HeavyRain\",\"Heptagon\",\"HerSlips\",\"HesaWarningOutline\",\"Hexagon\",\"HexagonAlt\",\"HighPriority\",\"HistoricShield\",\"HistoricShieldAlt\",\"Home\",\"HomeAlt\",\"HomeAltSlim\",\"HomeAltSlimHoriz\",\"HomeHospital\",\"HomeSimple\",\"HomeSimpleDoor\",\"HomeUser\",\"Hospital\",\"HospitalSign\",\"Hourglass\",\"Html5\",\"Iconoir\",\"Import\",\"Industry\",\"InfoEmpty\",\"InputField\",\"InputSearch\",\"Instagram\",\"Intersect\",\"IntersectAlt\",\"IosSettings\",\"IrisScan\",\"Italic\",\"ItalicSquareOutline\",\"Journal\",\"JournalPage\",\"KeyAlt\",\"KeyAltBack\",\"KeyAltMinus\",\"KeyAltPlus\",\"KeyAltRemove\",\"Keyframe\",\"KeyframeAlignCenter\",\"KeyframePosition\",\"Keyframes\",\"KeyframesCouple\",\"LabelOutline\",\"Lamp\",\"Language\",\"Laptop\",\"LaptopCharging\",\"LaptopFix\",\"LaptopIssue\",\"LargeSuitcase\",\"LayoutLeft\",\"LayoutRight\",\"Leaderboard\",\"LeaderboardStar\",\"LeftRoundArrow\",\"Lens\",\"Lifebelt\",\"LightBulb\",\"LightBulbOff\",\"LightBulbOn\",\"LineSpace\",\"Linear\",\"Link\",\"LinkedIn\",\"List\",\"LoadActionFloppy\",\"Lock\",\"LockKey\",\"LogDenied\",\"LogIn\",\"LogOut\",\"LongArrowDownLeft\",\"LongArrowDownRight\",\"LongArrowLeftDown\",\"LongArrowLeftUp\",\"LongArrowRightDown\",\"LongArrowRightUp\",\"LongArrowRightUp1\",\"LongArrowUpLeft\",\"LongArrowUpRight\",\"LotOfCash\",\"MacControlKey\",\"MacDock\",\"MacOptionKey\",\"MacOsWindow\",\"Mail\",\"MailOpened\",\"Male\",\"Map\",\"MapIssue\",\"MapsArrow\",\"MapsArrowDiagonal\",\"MapsArrowIssue\",\"MapsGoStraight\",\"MapsTurnBack\",\"MapsTurnLeft\",\"MapsTurnRight\",\"MaskSquare\",\"Maximize\",\"Medal\",\"Medal1St\",\"Medium\",\"Megaphone\",\"Menu\",\"MenuScale\",\"Message\",\"MessageAlert\",\"MessageText\",\"Metro\",\"Mic\",\"MicAdd\",\"MicCheck\",\"MicMute\",\"MicRemove\",\"MicSpeaking\",\"MicWarning\",\"Minus\",\"Minus1\",\"MinusHexagon\",\"MinusPinAlt\",\"MinusSquare\",\"MissingFont\",\"ModernTv\",\"ModernTv4K\",\"MoneySquare\",\"MoonSat\",\"MoreHoriz\",\"MoreVert\",\"MouseButtonLeft\",\"MouseButtonRight\",\"MouseScrollWheel\",\"MoveDown\",\"MoveLeft\",\"MoveRight\",\"MoveRuler\",\"MoveUp\",\"Movie\",\"MultiBubble\",\"MultiMacOsWindow\",\"MultiWindow\",\"MultiplePages\",\"MultiplePagesAdd\",\"MultiplePagesDelete\",\"MultiplePagesEmpty\",\"MultiplePagesRemove\",\"Music1\",\"Music1Add\",\"Music2\",\"Music2Add\",\"NavArrowDown\",\"NavArrowLeft\",\"NavArrowRight\",\"NavArrowUp\",\"Navigator\",\"NavigatorAlt\",\"Network\",\"NetworkAlt\",\"NetworkLeft\",\"NetworkRight\",\"NoBattery\",\"NoCoin\",\"NoCreditCard\",\"NoLock\",\"NoSmoking\",\"Notes\",\"Octagon\",\"OilIndustry\",\"OpenInBrowser\",\"OpenInWindow\",\"OpenVpn\",\"OrangeHalf\",\"OrangeSlice\",\"OrangeSliceAlt\",\"Page\",\"PageFlip\",\"PageSearch\",\"PageStar\",\"Palette\",\"PanoramaEnlarge\",\"PanoramaReduce\",\"Pants\",\"PantsAlt\",\"PasswordCursor\",\"PasswordError\",\"PasswordPass\",\"PauseOutline\",\"PcMouse\",\"PenConnectBluetooth\",\"PenConnectWifi\",\"PenTablet\",\"PenTabletConnectUsb\",\"PenTabletConnectWifi\",\"Pentagon\",\"Percentage\",\"PercentageRound\",\"PercentageSquare\",\"PharmacyCircledCross\",\"PharmacySquaredCross\",\"Phone\",\"PhoneAdd\",\"PhoneDelete\",\"PhoneDisabled\",\"PhoneIncome\",\"PhoneOutcome\",\"PhonePaused\",\"PhoneRemove\",\"Pin\",\"PinAlt\",\"PizzaSlice\",\"Planet\",\"PlanetAlt\",\"PlanetSat\",\"PlayOutline\",\"Playlist\",\"PlaylistAdd\",\"PlaylistPlay\",\"PlugTypeA\",\"PlugTypeC\",\"PlugTypeG\",\"PlugTypeL\",\"Plus\",\"Pocket\",\"Position\",\"PositionAlign\",\"Pound\",\"PrecisionTool\",\"Printer\",\"PrinterAlt\",\"PrintingPage\",\"PriorityDown\",\"PriorityUp\",\"ProfileCircled\",\"Prohibition\",\"QuestionMark\",\"QuestionMarkCircle\",\"Rain\",\"ReceiveDollars\",\"ReceiveEuros\",\"ReceivePounds\",\"ReceiveYens\",\"Redo\",\"RedoAction\",\"RedoCircle\",\"Reduce\",\"ReduceRoundArrow\",\"Refresh\",\"RefreshCircular\",\"RefreshDouble\",\"ReminderHandGesture\",\"RemoveDatabaseScript\",\"RemoveEmpty\",\"RemoveFolder\",\"RemoveFrame\",\"RemoveFromCart\",\"RemoveKeyframe\",\"RemoveKeyframeAlt\",\"RemoveKeyframes\",\"RemovePage\",\"RemovePinAlt\",\"RemoveSelection\",\"RemoveSquare\",\"RemoveUser\",\"Repeat\",\"RepeatOnce\",\"ReportColumns\",\"Reports\",\"RewindOutline\",\"Rhombus\",\"RightRoundArrow\",\"Rings\",\"RotateCameraLeft\",\"RotateCameraRight\",\"RssFeed\",\"RssFeedSquared\",\"Ruler\",\"RulerAdd\",\"RulerCombine\",\"RulerRemove\",\"Running\",\"Sandals\",\"SaveActionFloppy\",\"SaveFloppyDisk\",\"ScaleFrameEnlarge\",\"ScaleFrameReduce\",\"Scanning\",\"Scarf\",\"Scissor\",\"ScissorAlt\",\"SeaAndSun\",\"SeaWaves\",\"Search\",\"SearchFont\",\"SecurityPass\",\"Selection\",\"SelectiveTool\",\"SendDollars\",\"SendEuros\",\"SendPounds\",\"SendYens\",\"Server\",\"ServerConnection\",\"Settings\",\"SettingsCloud\",\"SettingsProfiles\",\"ShareAndroid\",\"ShareIos\",\"Shield\",\"ShieldAdd\",\"ShieldAlert\",\"ShieldAlt\",\"ShieldBroken\",\"ShieldCheck\",\"ShieldCross\",\"ShieldDownload\",\"ShieldEye\",\"ShieldLoading\",\"ShieldMinus\",\"ShieldQuestion\",\"ShieldSearch\",\"ShieldUpload\",\"Shop\",\"ShopAlt\",\"ShoppingBag\",\"ShoppingBagAdd\",\"ShoppingBagAlt\",\"ShoppingBagArrowDown\",\"ShoppingBagArrowUp\",\"ShoppingBagCheck\",\"ShoppingBagIssue\",\"ShoppingBagRemove\",\"ShoppingCode\",\"ShoppingCodeCheck\",\"ShoppingCodeError\",\"ShortPants\",\"ShortPantsAlt\",\"Shuffle\",\"SimpleCart\",\"SingleTapGesture\",\"Skateboard\",\"Skateboarding\",\"SkipNextOutline\",\"SkipPrevOutline\",\"SmallShop\",\"SmallShopAlt\",\"SmartphoneDevice\",\"Smoking\",\"Snow\",\"SnowFlake\",\"Soap\",\"SoccerBall\",\"SortDown\",\"SortUp\",\"SoundHigh\",\"SoundLow\",\"SoundMin\",\"SoundOff\",\"SpockHandGesture\",\"Square\",\"StarDashed\",\"StarHalfDashed\",\"StarOutline\",\"StatDown\",\"StatUp\",\"StatsReport\",\"StatsSquareDown\",\"StatsSquareUp\",\"Stretching\",\"StyleBorder\",\"Substract\",\"Suggestion\",\"SunLight\",\"Swimming\",\"SwipeDownGesture\",\"SwipeLeftGesture\",\"SwipeRightGesture\",\"SwipeUpGesture\",\"SwitchOffOutline\",\"SwitchOnOutline\",\"SystemRestart\",\"SystemShut\",\"Table\",\"Table2Columns\",\"TableRows\",\"Telegram\",\"TelegramCircled\",\"TennisBall\",\"TennisBallAlt\",\"TerminalOutline\",\"TerminalSimple\",\"Text\",\"TextAlt\",\"TextSize\",\"ThreeStars\",\"Thunderstorm\",\"TikTok\",\"Timer\",\"TimerOff\",\"Tower\",\"TowerCheck\",\"TowerNoAccess\",\"TowerWarning\",\"Trademark\",\"TrainOutline\",\"Tram\",\"TransitionBottom\",\"TransitionLeft\",\"TransitionRight\",\"TransitionTop\",\"Translate\",\"Trash\",\"Treadmill\",\"Trekking\",\"Trello\",\"Triangle\",\"TriangleFlag\",\"TriangleFlagCircle\",\"TriangleFlagFull\",\"Trophy\",\"Tunnel\",\"Tv\",\"TvFix\",\"TvIssue\",\"Twitter\",\"TwitterVerifiedBadge\",\"Type\",\"UmbrellaFull\",\"Underline\",\"Undo\",\"UndoAction\",\"UndoCircle\",\"Union\",\"UnionAlt\",\"UnionHorizAlt\",\"Unity\",\"Unity5\",\"UpRoundArrow\",\"Upload\",\"UploadSquareOutline\",\"Usb\",\"User\",\"UserBag\",\"UserCart\",\"UserCircleAlt\",\"UserScan\",\"UserSquareAlt\",\"VerifiedBadge\",\"VerifiedUser\",\"VideoCamera\",\"VideoCameraOff\",\"ViewColumns2\",\"ViewColumns3\",\"ViewGrid\",\"ViewStructureDown\",\"ViewStructureUp\",\"Voice\",\"VoiceCircled\",\"VoiceCircledLock\",\"VoiceError\",\"VoiceOk\",\"VoicePhone\",\"VoiceScan\",\"VoiceSquared\",\"VrSymbol\",\"Waist\",\"Walking\",\"WarningSquareOutline\",\"WebWindow\",\"WebWindowClose\",\"Weight\",\"WeightAlt\",\"WhiteFlag\",\"Wifi\",\"WifiIssue\",\"WifiOff\",\"WifiSignalNone\",\"Wind\",\"WrapText\",\"Wristwatch\",\"Yen\",\"YenSquare\",\"Yoga\",\"YouTube\",\"ZoomIn\",\"ZoomOut\",];const moduleBaseUrl=\"https://framer.com/m/iconoir-icons/\";const lowercaseIconKeyPairs=iconKeys.reduce((res,key)=>{res[key.toLowerCase()]=key;return res;},{});/**\n * ICONOIR\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export function Icon(props){const{color,selectByList,iconSearch,iconSelection,onClick,onMouseDown,onMouseUp,onMouseEnter,onMouseLeave,mirrored}=props;const isMounted=useRef(false);const iconKey=useIconSelection(iconKeys,selectByList,iconSearch,iconSelection,lowercaseIconKeyPairs);// Selected Icon Module\nconst[SelectedIcon,setSelectedIcon]=useState(iconKey===\"Home\"?HomeFactory(React):null);// Import the selected module or reset so null state\nasync function importModule(){// Get the selected module\ntry{const iconModuleUrl=`${moduleBaseUrl}${iconKey}.js@0.0.11`;const module=await import(/* webpackIgnore: true */ iconModuleUrl);if(isMounted.current)setSelectedIcon(module.default(React));}catch{if(isMounted.current)setSelectedIcon(null);}}// Import module when new style or icon is selected\nuseEffect(()=>{isMounted.current=true;importModule();return()=>{isMounted.current=false;};},[iconKey]);const isOnCanvas=RenderTarget.current()===RenderTarget.canvas;const emptyState=isOnCanvas?/*#__PURE__*/ _jsx(NullState,{}):null;return /*#__PURE__*/ _jsx(\"div\",{style:{display:\"contents\"},onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,children:SelectedIcon?/*#__PURE__*/ _jsx(SelectedIcon,{size:\"100$%\",style:{width:\"100%\",height:\"100%\",transform:mirrored?\"scale(-1, 1)\":undefined},color:color}):emptyState});}Icon.displayName=\"Iconoir\";Icon.defaultProps={width:24,height:24,iconSelection:\"Home\",iconSearch:\"Home\",color:\"#66F\",selectByList:true,mirrored:false};addPropertyControls(Icon,{selectByList:{type:ControlType.Boolean,title:\"Select\",enabledTitle:\"List\",disabledTitle:\"Search\",defaultValue:Icon.defaultProps.selectByList},iconSelection:{type:ControlType.Enum,options:iconKeys,defaultValue:Icon.defaultProps.iconSelection,title:\"Name\",hidden:({selectByList})=>!selectByList,description:\"Find every icon name on the [Iconoir site](https://iconoir.com/)\"},iconSearch:{type:ControlType.String,title:\"Name\",placeholder:\"Menu, Wifi, Box…\",hidden:({selectByList})=>selectByList},mirrored:{type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",defaultValue:Icon.defaultProps.mirrored},color:{type:ControlType.Color,title:\"Color\",defaultValue:Icon.defaultProps.color},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"iconKeys\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"IconProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Icon\":{\"type\":\"reactComponent\",\"name\":\"Icon\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"24\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"24\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Iconoir.map","// Generated by Framer (af04cc1)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={CRfaW1dB_:{hover:true}};const serializationHash=\"framer-Lclnv\";const variantClassNames={CRfaW1dB_:\"framer-v-vqj9vc\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({background,backgroundHover,border,button,colorText,height,id,link,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4;return{...props,C09TEJmUG:(_ref=background!==null&&background!==void 0?background:props.C09TEJmUG)!==null&&_ref!==void 0?_ref:\"var(--token-40aa793d-ac43-4b91-b3f0-5bb2c4c96af8, rgb(141, 145, 165))\",F9I9OMkVZ:link!==null&&link!==void 0?link:props.F9I9OMkVZ,R_fMrBGrP:(_ref1=backgroundHover!==null&&backgroundHover!==void 0?backgroundHover:props.R_fMrBGrP)!==null&&_ref1!==void 0?_ref1:\"var(--token-40aa793d-ac43-4b91-b3f0-5bb2c4c96af8, rgb(141, 145, 165))\",Sm5BlG1qn:(_ref2=colorText!==null&&colorText!==void 0?colorText:props.Sm5BlG1qn)!==null&&_ref2!==void 0?_ref2:\"var(--token-ec4ce52f-33cb-4ed4-bfe6-1e35ee3404e7, rgb(255, 255, 255))\",ZGUR3SYXK:(_ref3=button!==null&&button!==void 0?button:props.ZGUR3SYXK)!==null&&_ref3!==void 0?_ref3:\"Sign Up\",Zomm9GGGd:(_ref4=border!==null&&border!==void 0?border:props.Zomm9GGGd)!==null&&_ref4!==void 0?_ref4:{borderColor:\"rgb(0, 0, 0)\",borderStyle:\"solid\",borderWidth:2}};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,C09TEJmUG,R_fMrBGrP,Zomm9GGGd,Sm5BlG1qn,F9I9OMkVZ,ZGUR3SYXK,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"CRfaW1dB_\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();var _Zomm9GGGd_borderBottomWidth,_Zomm9GGGd_borderLeftWidth,_Zomm9GGGd_borderRightWidth,_Zomm9GGGd_borderTopWidth;return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:F9I9OMkVZ,nodeId:\"CRfaW1dB_\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-vqj9vc\",className,classNames)} framer-1e6p0mb`,\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"CRfaW1dB_\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":`${(_Zomm9GGGd_borderBottomWidth=Zomm9GGGd.borderBottomWidth)!==null&&_Zomm9GGGd_borderBottomWidth!==void 0?_Zomm9GGGd_borderBottomWidth:Zomm9GGGd.borderWidth}px`,\"--border-color\":Zomm9GGGd.borderColor,\"--border-left-width\":`${(_Zomm9GGGd_borderLeftWidth=Zomm9GGGd.borderLeftWidth)!==null&&_Zomm9GGGd_borderLeftWidth!==void 0?_Zomm9GGGd_borderLeftWidth:Zomm9GGGd.borderWidth}px`,\"--border-right-width\":`${(_Zomm9GGGd_borderRightWidth=Zomm9GGGd.borderRightWidth)!==null&&_Zomm9GGGd_borderRightWidth!==void 0?_Zomm9GGGd_borderRightWidth:Zomm9GGGd.borderWidth}px`,\"--border-style\":Zomm9GGGd.borderStyle,\"--border-top-width\":`${(_Zomm9GGGd_borderTopWidth=Zomm9GGGd.borderTopWidth)!==null&&_Zomm9GGGd_borderTopWidth!==void 0?_Zomm9GGGd_borderTopWidth:Zomm9GGGd.borderWidth}px`,backgroundColor:C09TEJmUG,borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},variants:{\"CRfaW1dB_-hover\":{backgroundColor:R_fMrBGrP}},...addPropertyOverrides({\"CRfaW1dB_-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NpcmN1bGFyWFggTWVkaXVt\",\"--framer-font-family\":'\"CircularXX Medium\", \"CircularXX Medium Placeholder\", sans-serif',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-Sm5BlG1qn-dgxPN1Hgj))\"},children:\"Sign Up\"})}),className:\"framer-12nv3jf\",\"data-framer-name\":\"Label\",fonts:[\"CUSTOM;CircularXX Medium\"],layoutDependency:layoutDependency,layoutId:\"xB0w5xAHk\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-Sm5BlG1qn-dgxPN1Hgj)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-Sm5BlG1qn-dgxPN1Hgj\":Sm5BlG1qn},text:ZGUR3SYXK,verticalAlignment:\"bottom\",withExternalLayout:true})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Lclnv.framer-1e6p0mb, .framer-Lclnv .framer-1e6p0mb { display: block; }\",\".framer-Lclnv.framer-vqj9vc { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 46px; justify-content: center; overflow: visible; padding: 11px 16px 11px 16px; position: relative; text-decoration: none; width: 162px; }\",\".framer-Lclnv .framer-12nv3jf { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Lclnv.framer-vqj9vc { gap: 0px; } .framer-Lclnv.framer-vqj9vc > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Lclnv.framer-vqj9vc > :first-child { margin-top: 0px; } .framer-Lclnv.framer-vqj9vc > :last-child { margin-bottom: 0px; } }\",'.framer-Lclnv[data-border=\"true\"]::after, .framer-Lclnv [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 46\n * @framerIntrinsicWidth 162\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"ViNxS6DnT\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"C09TEJmUG\":\"background\",\"R_fMrBGrP\":\"backgroundHover\",\"Zomm9GGGd\":\"border\",\"Sm5BlG1qn\":\"colorText\",\"F9I9OMkVZ\":\"link\",\"ZGUR3SYXK\":\"button\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerdgxPN1Hgj=withCSS(Component,css,\"framer-Lclnv\");export default FramerdgxPN1Hgj;FramerdgxPN1Hgj.displayName=\"Button_price\";FramerdgxPN1Hgj.defaultProps={height:46,width:162};addPropertyControls(FramerdgxPN1Hgj,{C09TEJmUG:{defaultValue:'var(--token-40aa793d-ac43-4b91-b3f0-5bb2c4c96af8, rgb(141, 145, 165)) /* {\"name\":\"Text Secondary Dark\"} */',title:\"Background\",type:ControlType.Color},R_fMrBGrP:{defaultValue:'var(--token-40aa793d-ac43-4b91-b3f0-5bb2c4c96af8, rgb(141, 145, 165)) /* {\"name\":\"Text Secondary Dark\"} */',title:\"Background_Hover\",type:ControlType.Color},Zomm9GGGd:{defaultValue:{borderColor:\"rgb(0, 0, 0)\",borderStyle:\"solid\",borderWidth:2},title:\"Border\",type:ControlType.Border},Sm5BlG1qn:{defaultValue:\"var(--token-ec4ce52f-33cb-4ed4-bfe6-1e35ee3404e7, rgb(255, 255, 255))\",title:\"Color_text\",type:ControlType.Color},F9I9OMkVZ:{title:\"Link\",type:ControlType.Link},ZGUR3SYXK:{defaultValue:\"Sign Up\",displayTextArea:false,title:\"Button\",type:ControlType.String}});addFonts(FramerdgxPN1Hgj,[{explicitInter:true,fonts:[{family:\"CircularXX Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/TTvL8Svp39d18oxdBvHyiOhV60.otf\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerdgxPN1Hgj\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"162\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ViNxS6DnT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"C09TEJmUG\\\":\\\"background\\\",\\\"R_fMrBGrP\\\":\\\"backgroundHover\\\",\\\"Zomm9GGGd\\\":\\\"border\\\",\\\"Sm5BlG1qn\\\":\\\"colorText\\\",\\\"F9I9OMkVZ\\\":\\\"link\\\",\\\"ZGUR3SYXK\\\":\\\"button\\\"}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"46\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./dgxPN1Hgj.map","// Generated by Framer (4307032)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/GPoCsVj3DKs0LTtQNSMl/EiE36KQPgvP08SeXYzL0/wY_XBD17s.js\";const cycleOrder=[\"BtQ9yd78f\",\"wyyXnfK5J\",\"hQq5qV_gm\",\"uezdqN8GU\"];const serializationHash=\"framer-AEJ8E\";const variantClassNames={BtQ9yd78f:\"framer-v-14579w6\",hQq5qV_gm:\"framer-v-gydyf0\",uezdqN8GU:\"framer-v-1nort0\",wyyXnfK5J:\"framer-v-1fu8jsf\"};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 numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};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 color\":\"wyyXnfK5J\",Desktop:\"BtQ9yd78f\",Mobile:\"uezdqN8GU\",Tablet:\"hQq5qV_gm\"};const getProps=({businessNo2,feature,height,id,padding,pro,proNo,proYes,starter,starterNo,starterYes,team,teamNo,teamYes,width,...props})=>{return{...props,FRqZTfh9n:starterYes??props.FRqZTfh9n,HL1ROBLNa:padding??props.HL1ROBLNa??\"0px 0px 0px 20px\",Hpvclh9CR:proYes??props.Hpvclh9CR,IeBHLqE7v:feature??props.IeBHLqE7v??\"Users\",IXX3gTcNY:starter??props.IXX3gTcNY??\"1 user\",pdNT_pvgD:businessNo2??props.pdNT_pvgD,SOTD9PKE2:teamNo??props.SOTD9PKE2,uDYaKy4JE:pro??props.uDYaKy4JE??\"1 user\",uEX3RrV09:proNo??props.uEX3RrV09,variant:humanReadableVariantMap[props.variant]??props.variant??\"BtQ9yd78f\",vgvJWZQpf:team??props.vgvJWZQpf??\"1 user\",YiRorK0jT:teamYes??props.YiRorK0jT,Zkbpv3NVJ:starterNo??props.Zkbpv3NVJ};};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,IeBHLqE7v,IXX3gTcNY,uDYaKy4JE,vgvJWZQpf,FRqZTfh9n,Zkbpv3NVJ,Hpvclh9CR,uEX3RrV09,YiRorK0jT,SOTD9PKE2,pdNT_pvgD,HL1ROBLNa,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"BtQ9yd78f\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const visible=isSet(IXX3gTcNY);const visible1=isSet(uDYaKy4JE);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-14579w6\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"BtQ9yd78f\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(127, 144, 219, 0.2)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\",...style},variants:{hQq5qV_gm:{backgroundColor:\"rgba(0, 0, 0, 0)\"},uezdqN8GU:{backgroundColor:\"rgba(0, 0, 0, 0)\"},wyyXnfK5J:{backgroundColor:\"rgba(127, 144, 219, 0)\"}},...addPropertyOverrides({hQq5qV_gm:{\"data-framer-name\":\"Tablet\"},uezdqN8GU:{\"data-framer-name\":\"Mobile\"},wyyXnfK5J:{\"data-framer-name\":\"Desktop color\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-gpctcs\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"t3BD1k7K3\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(58, 64, 96, 0.7)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-t00skt\",layoutDependency:layoutDependency,layoutId:\"MxMU8KN38\",style:{\"--1njv7qm\":numberToPixelString(HL1ROBLNa)},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1h1sdz0\",\"data-styles-preset\":\"wY_XBD17s\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ec4ce52f-33cb-4ed4-bfe6-1e35ee3404e7, rgb(255, 255, 255)))\"},children:\"Users\"})}),className:\"framer-1b02dtb\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"cbxOF8m5F\",style:{\"--extracted-r6o4lv\":\"var(--token-ec4ce52f-33cb-4ed4-bfe6-1e35ee3404e7, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:IeBHLqE7v,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({uezdqN8GU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NpcmN1bGFyWFggQm9vaw==\",\"--framer-font-family\":'\"CircularXX Book\", \"CircularXX Book Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ec4ce52f-33cb-4ed4-bfe6-1e35ee3404e7, rgb(255, 255, 255)))\"},children:\"Users\"})}),fonts:[\"CUSTOM;CircularXX Book\"]}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bzkkkz\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"FicOnRekJ\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(58, 64, 96, 0.7)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:[visible&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1h1sdz0\",\"data-styles-preset\":\"wY_XBD17s\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ec4ce52f-33cb-4ed4-bfe6-1e35ee3404e7, rgb(255, 255, 255)))\"},children:\"1 user\"})}),className:\"framer-zx5l3o\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"rorHI3Iil\",style:{\"--extracted-r6o4lv\":\"var(--token-ec4ce52f-33cb-4ed4-bfe6-1e35ee3404e7, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:IXX3gTcNY,verticalAlignment:\"top\",withExternalLayout:true}),FRqZTfh9n&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hg7o1s\",layoutDependency:layoutDependency,layoutId:\"S9L2F9I_3\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1rqet08\",\"data-framer-name\":\"Graphic\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"xOXnPZh_p\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14 13\"><path d=\"M 0.14 6.5 C 0.14 2.91 3.149 0 6.86 0 C 10.571 0 13.58 2.91 13.58 6.5 C 13.58 10.09 10.571 13 6.86 13 C 3.149 13 0.14 10.09 0.14 6.5 Z M 10.326 4.892 C 10.542 4.684 10.547 4.348 10.337 4.135 C 10.126 3.921 9.778 3.91 9.554 4.109 L 5.834 7.543 L 4.167 6.005 C 4.023 5.866 3.813 5.814 3.618 5.867 C 3.423 5.921 3.273 6.073 3.226 6.264 C 3.18 6.455 3.244 6.656 3.394 6.788 L 5.834 9.041 L 10.327 4.892 Z\" fill=\"var(--token-40aa793d-ac43-4b91-b3f0-5bb2c4c96af8, rgb(141, 145, 165))\"></path></svg>',svgContentId:12400670895,withExternalLayout:true})}),Zkbpv3NVJ&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1popi3y\",layoutDependency:layoutDependency,layoutId:\"o8l5noJ13\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1th73yl\",\"data-framer-name\":\"Graphic\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"cWPQsX_FY\",opacity:.5,style:{opacity:.5},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14 13\"><path d=\"M 0.7 6.5 C 0.7 3.209 3.458 0.542 6.86 0.542 C 10.262 0.542 13.02 3.209 13.02 6.5 C 13.02 9.791 10.262 12.458 6.86 12.458 C 3.458 12.458 0.7 9.791 0.7 6.5 Z\" fill=\"transparent\" stroke-width=\"1.12\" stroke=\"var(--token-40aa793d-ac43-4b91-b3f0-5bb2c4c96af8, rgb(141, 145, 165))\" stroke-miterlimit=\"10\"></path><path d=\"M 3.895 4.397 C 3.677 4.186 3.5 4.015 3.5 4.015 L 4.291 3.25 C 4.291 3.25 4.468 3.421 4.686 3.632 L 9.825 8.603 C 10.043 8.814 10.22 8.985 10.22 8.985 L 9.429 9.75 C 9.429 9.75 9.252 9.579 9.034 9.368 Z\" fill=\"var(--token-40aa793d-ac43-4b91-b3f0-5bb2c4c96af8, rgb(141, 145, 165))\"></path><path d=\"M 3.895 9.368 C 3.677 9.156 3.5 8.985 3.5 8.985 L 9.429 3.25 C 9.429 3.25 9.606 3.421 9.824 3.632 L 9.825 3.633 C 10.043 3.844 10.22 4.015 10.22 4.015 L 4.291 9.75 C 4.291 9.75 4.114 9.579 3.895 9.368 Z\" fill=\"var(--token-40aa793d-ac43-4b91-b3f0-5bb2c4c96af8, rgb(141, 145, 165))\"></path></svg>',svgContentId:12760652250,withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-i6am22\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"rVvGb0ADH\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(58, 64, 96, 0.7)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:[visible1&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1h1sdz0\",\"data-styles-preset\":\"wY_XBD17s\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ec4ce52f-33cb-4ed4-bfe6-1e35ee3404e7, rgb(255, 255, 255)))\"},children:\"1 user\"})}),className:\"framer-diumxf\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"FwIvj9xJ7\",style:{\"--extracted-r6o4lv\":\"var(--token-ec4ce52f-33cb-4ed4-bfe6-1e35ee3404e7, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:uDYaKy4JE,verticalAlignment:\"top\",withExternalLayout:true}),Hpvclh9CR&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-suh6q5\",layoutDependency:layoutDependency,layoutId:\"qCFWQpU1H\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1nmzt5u\",\"data-framer-name\":\"Graphic\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"W5dfEZjsr\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14 13\"><path d=\"M 0.14 6.5 C 0.14 2.91 3.149 0 6.86 0 C 10.571 0 13.58 2.91 13.58 6.5 C 13.58 10.09 10.571 13 6.86 13 C 3.149 13 0.14 10.09 0.14 6.5 Z M 10.326 4.892 C 10.542 4.684 10.547 4.348 10.337 4.135 C 10.126 3.921 9.778 3.91 9.554 4.109 L 5.834 7.543 L 4.167 6.005 C 4.023 5.866 3.813 5.814 3.618 5.867 C 3.423 5.921 3.273 6.073 3.226 6.264 C 3.18 6.455 3.244 6.656 3.394 6.788 L 5.834 9.041 L 10.327 4.892 Z\" fill=\"rgb(33,181,104)\"></path></svg>',svgContentId:10652122265,withExternalLayout:true,...addPropertyOverrides({hQq5qV_gm:{svgContentId:12053417895},uezdqN8GU:{svgContentId:12053417895}},baseVariant,gestureVariant)})}),uEX3RrV09&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-d9booz\",layoutDependency:layoutDependency,layoutId:\"S2X9uWf5c\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1a41ts8\",\"data-framer-name\":\"Graphic\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"gl_5Yy37L\",opacity:.5,style:{opacity:.5},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14 13\"><path d=\"M 0.7 6.5 C 0.7 3.209 3.458 0.542 6.86 0.542 C 10.262 0.542 13.02 3.209 13.02 6.5 C 13.02 9.791 10.262 12.458 6.86 12.458 C 3.458 12.458 0.7 9.791 0.7 6.5 Z\" fill=\"transparent\" stroke-width=\"1.12\" stroke=\"var(--token-d6eceb5f-c0c1-403a-8356-fe616ea60d0b, rgb(33, 181, 104))\" stroke-miterlimit=\"10\"></path><path d=\"M 3.895 4.397 C 3.677 4.186 3.5 4.015 3.5 4.015 L 4.291 3.25 C 4.291 3.25 4.468 3.421 4.686 3.632 L 9.825 8.603 C 10.043 8.814 10.22 8.985 10.22 8.985 L 9.429 9.75 C 9.429 9.75 9.252 9.579 9.034 9.368 Z\" fill=\"var(--token-d6eceb5f-c0c1-403a-8356-fe616ea60d0b, rgb(33, 181, 104))\"></path><path d=\"M 3.895 9.368 C 3.677 9.156 3.5 8.985 3.5 8.985 L 9.429 3.25 C 9.429 3.25 9.606 3.421 9.824 3.632 L 9.825 3.633 C 10.043 3.844 10.22 4.015 10.22 4.015 L 4.291 9.75 C 4.291 9.75 4.114 9.579 3.895 9.368 Z\" fill=\"rgb(35, 181, 104)\"></path></svg>',svgContentId:11322174933,withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-231zkp\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"r4XUW8lyr\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(58, 64, 96, 0.7)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:[visible1&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1h1sdz0\",\"data-styles-preset\":\"wY_XBD17s\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ec4ce52f-33cb-4ed4-bfe6-1e35ee3404e7, rgb(255, 255, 255)))\"},children:\"1 user\"})}),className:\"framer-118x17t\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Hdtt9DisX\",style:{\"--extracted-r6o4lv\":\"var(--token-ec4ce52f-33cb-4ed4-bfe6-1e35ee3404e7, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:vgvJWZQpf,verticalAlignment:\"top\",withExternalLayout:true}),YiRorK0jT&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-yqhujj\",layoutDependency:layoutDependency,layoutId:\"oUcNg44Mk\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-oio21b\",\"data-framer-name\":\"Graphic\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"cMlcpAPX_\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14 13\"><path d=\"M 0.14 6.5 C 0.14 2.91 3.149 0 6.86 0 C 10.571 0 13.58 2.91 13.58 6.5 C 13.58 10.09 10.571 13 6.86 13 C 3.149 13 0.14 10.09 0.14 6.5 Z M 10.326 4.892 C 10.542 4.684 10.547 4.348 10.337 4.135 C 10.126 3.921 9.778 3.91 9.554 4.109 L 5.834 7.543 L 4.167 6.005 C 4.023 5.866 3.813 5.814 3.618 5.867 C 3.423 5.921 3.273 6.073 3.226 6.264 C 3.18 6.455 3.244 6.656 3.394 6.788 L 5.834 9.041 L 10.327 4.892 Z\" fill=\"var(--token-c54d9db5-a509-438e-807d-0ce938cf337e, rgb(32, 145, 246))\"></path></svg>',svgContentId:12414222705,withExternalLayout:true})}),SOTD9PKE2&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-xdznr1\",layoutDependency:layoutDependency,layoutId:\"FxtDIG1m8\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1h5fwq9\",\"data-framer-name\":\"Graphic\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"MPOfXCwDZ\",opacity:.5,style:{opacity:.5},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14 13\"><path d=\"M 0.7 6.5 C 0.7 3.209 3.458 0.542 6.86 0.542 C 10.262 0.542 13.02 3.209 13.02 6.5 C 13.02 9.791 10.262 12.458 6.86 12.458 C 3.458 12.458 0.7 9.791 0.7 6.5 Z\" fill=\"transparent\" stroke-width=\"1.12\" stroke=\"var(--token-c54d9db5-a509-438e-807d-0ce938cf337e, rgb(32, 145, 246))\" stroke-miterlimit=\"10\"></path><path d=\"M 3.895 4.397 C 3.677 4.186 3.5 4.015 3.5 4.015 L 4.291 3.25 C 4.291 3.25 4.468 3.421 4.686 3.632 L 9.825 8.603 C 10.043 8.814 10.22 8.985 10.22 8.985 L 9.429 9.75 C 9.429 9.75 9.252 9.579 9.034 9.368 Z\" fill=\"var(--token-c54d9db5-a509-438e-807d-0ce938cf337e, rgb(32, 145, 246))\"></path><path d=\"M 3.895 9.368 C 3.677 9.156 3.5 8.985 3.5 8.985 L 9.429 3.25 C 9.429 3.25 9.606 3.421 9.824 3.632 L 9.825 3.633 C 10.043 3.844 10.22 4.015 10.22 4.015 L 4.291 9.75 C 4.291 9.75 4.114 9.579 3.895 9.368 Z\" fill=\"var(--token-c54d9db5-a509-438e-807d-0ce938cf337e, rgb(32, 145, 246))\"></path></svg>',svgContentId:12805197743,withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1a8g0i\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"Pigd4l8dw\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(58, 64, 96, 0.7)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:[visible1&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1h1sdz0\",\"data-styles-preset\":\"wY_XBD17s\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ec4ce52f-33cb-4ed4-bfe6-1e35ee3404e7, rgb(255, 255, 255)))\"},children:\"1 user\"})}),className:\"framer-1481673\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Z_yWBNyKW\",style:{\"--extracted-r6o4lv\":\"var(--token-ec4ce52f-33cb-4ed4-bfe6-1e35ee3404e7, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:vgvJWZQpf,verticalAlignment:\"top\",withExternalLayout:true}),pdNT_pvgD&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-pntkxd\",layoutDependency:layoutDependency,layoutId:\"p_fVxtnyo\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-h67nxh\",\"data-framer-name\":\"Graphic\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"SRsJ5gxAL\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14 13\"><path d=\"M 0.14 6.5 C 0.14 2.91 3.149 0 6.86 0 C 10.571 0 13.58 2.91 13.58 6.5 C 13.58 10.09 10.571 13 6.86 13 C 3.149 13 0.14 10.09 0.14 6.5 Z M 10.326 4.892 C 10.542 4.684 10.547 4.348 10.337 4.135 C 10.126 3.921 9.778 3.91 9.554 4.109 L 5.834 7.543 L 4.167 6.005 C 4.023 5.866 3.813 5.814 3.618 5.867 C 3.423 5.921 3.273 6.073 3.226 6.264 C 3.18 6.455 3.244 6.656 3.394 6.788 L 5.834 9.041 L 10.327 4.892 Z\" fill=\"var(--token-2a2645bd-13b5-4327-b6f5-fc7a44895e92, rgb(102, 102, 210))\"></path></svg>',svgContentId:11923630085,withExternalLayout:true})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-AEJ8E.framer-2uqulq, .framer-AEJ8E .framer-2uqulq { display: block; }\",\".framer-AEJ8E.framer-14579w6 { align-content: center; align-items: center; cursor: default; display: flex; flex-direction: row; flex-wrap: nowrap; height: 60px; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 700px; }\",\".framer-AEJ8E .framer-gpctcs { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-AEJ8E .framer-t00skt { 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: visible; padding: 0px 0px 0px 20px; position: relative; width: 1px; }\",\".framer-AEJ8E .framer-1b02dtb { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-AEJ8E .framer-1bzkkkz, .framer-AEJ8E .framer-i6am22, .framer-AEJ8E .framer-231zkp, .framer-AEJ8E .framer-1a8g0i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: hidden; padding: 0px 0px 1px 0px; position: relative; width: 130px; }\",\".framer-AEJ8E .framer-zx5l3o, .framer-AEJ8E .framer-diumxf, .framer-AEJ8E .framer-118x17t, .framer-AEJ8E .framer-1481673 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-AEJ8E .framer-1hg7o1s, .framer-AEJ8E .framer-1popi3y, .framer-AEJ8E .framer-suh6q5, .framer-AEJ8E .framer-d9booz, .framer-AEJ8E .framer-yqhujj, .framer-AEJ8E .framer-xdznr1, .framer-AEJ8E .framer-pntkxd { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-AEJ8E .framer-1rqet08, .framer-AEJ8E .framer-1th73yl, .framer-AEJ8E .framer-1nmzt5u, .framer-AEJ8E .framer-1a41ts8, .framer-AEJ8E .framer-oio21b, .framer-AEJ8E .framer-1h5fwq9, .framer-AEJ8E .framer-h67nxh { flex: none; height: 13px; position: relative; width: 14px; }\",\".framer-AEJ8E.framer-v-gydyf0.framer-14579w6 { height: 70px; }\",\".framer-AEJ8E.framer-v-gydyf0 .framer-t00skt { padding: var(--1njv7qm); }\",\".framer-AEJ8E.framer-v-gydyf0 .framer-1bzkkkz, .framer-AEJ8E.framer-v-gydyf0 .framer-i6am22, .framer-AEJ8E.framer-v-gydyf0 .framer-231zkp, .framer-AEJ8E.framer-v-gydyf0 .framer-1a8g0i { width: 100px; }\",\".framer-AEJ8E.framer-v-1nort0.framer-14579w6 { width: 320px; }\",\".framer-AEJ8E.framer-v-1nort0 .framer-t00skt { padding: 0px; }\",\".framer-AEJ8E.framer-v-1nort0 .framer-1bzkkkz, .framer-AEJ8E.framer-v-1nort0 .framer-i6am22, .framer-AEJ8E.framer-v-1nort0 .framer-231zkp, .framer-AEJ8E.framer-v-1nort0 .framer-1a8g0i { width: 60px; }\",...sharedStyle.css,'.framer-AEJ8E[data-border=\"true\"]::after, .framer-AEJ8E [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 60\n * @framerIntrinsicWidth 700\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"wyyXnfK5J\":{\"layout\":[\"fixed\",\"fixed\"]},\"hQq5qV_gm\":{\"layout\":[\"fixed\",\"fixed\"]},\"uezdqN8GU\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"IeBHLqE7v\":\"feature\",\"IXX3gTcNY\":\"starter\",\"uDYaKy4JE\":\"pro\",\"vgvJWZQpf\":\"team\",\"FRqZTfh9n\":\"starterYes\",\"Zkbpv3NVJ\":\"starterNo\",\"Hpvclh9CR\":\"proYes\",\"uEX3RrV09\":\"proNo\",\"YiRorK0jT\":\"teamYes\",\"SOTD9PKE2\":\"teamNo\",\"pdNT_pvgD\":\"businessNo2\",\"HL1ROBLNa\":\"padding\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerPFCVrIM90=withCSS(Component,css,\"framer-AEJ8E\");export default FramerPFCVrIM90;FramerPFCVrIM90.displayName=\"Compare items\";FramerPFCVrIM90.defaultProps={height:60,width:700};addPropertyControls(FramerPFCVrIM90,{variant:{options:[\"BtQ9yd78f\",\"wyyXnfK5J\",\"hQq5qV_gm\",\"uezdqN8GU\"],optionTitles:[\"Desktop\",\"Desktop color\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},IeBHLqE7v:{defaultValue:\"Users\",displayTextArea:false,title:\"Feature\",type:ControlType.String},IXX3gTcNY:{defaultValue:\"1 user\",displayTextArea:false,title:\"Starter\",type:ControlType.String},uDYaKy4JE:{defaultValue:\"1 user\",displayTextArea:false,title:\"Pro\",type:ControlType.String},vgvJWZQpf:{defaultValue:\"1 user\",displayTextArea:false,title:\"Team\",type:ControlType.String},FRqZTfh9n:{defaultValue:false,title:\"Starter/Yes\",type:ControlType.Boolean},Zkbpv3NVJ:{defaultValue:false,title:\"Starter/No\",type:ControlType.Boolean},Hpvclh9CR:{defaultValue:false,title:\"Pro/Yes\",type:ControlType.Boolean},uEX3RrV09:{defaultValue:false,title:\"Pro/No\",type:ControlType.Boolean},YiRorK0jT:{defaultValue:false,title:\"Team/Yes\",type:ControlType.Boolean},SOTD9PKE2:{defaultValue:false,title:\"Team/No\",type:ControlType.Boolean},pdNT_pvgD:{defaultValue:false,title:\"Business/No 2\",type:ControlType.Boolean},HL1ROBLNa:{defaultValue:\"0px 0px 0px 20px\",title:\"Padding\",type:ControlType.Padding}});addFonts(FramerPFCVrIM90,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"CircularXX Book\",source:\"custom\",url:\"https://framerusercontent.com/assets/mWXivPNFMZ3QBk4y7YqIlG6Us.otf\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerPFCVrIM90\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"IeBHLqE7v\\\":\\\"feature\\\",\\\"IXX3gTcNY\\\":\\\"starter\\\",\\\"uDYaKy4JE\\\":\\\"pro\\\",\\\"vgvJWZQpf\\\":\\\"team\\\",\\\"FRqZTfh9n\\\":\\\"starterYes\\\",\\\"Zkbpv3NVJ\\\":\\\"starterNo\\\",\\\"Hpvclh9CR\\\":\\\"proYes\\\",\\\"uEX3RrV09\\\":\\\"proNo\\\",\\\"YiRorK0jT\\\":\\\"teamYes\\\",\\\"SOTD9PKE2\\\":\\\"teamNo\\\",\\\"pdNT_pvgD\\\":\\\"businessNo2\\\",\\\"HL1ROBLNa\\\":\\\"padding\\\"}\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"700\",\"framerIntrinsicHeight\":\"60\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"wyyXnfK5J\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"hQq5qV_gm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"uezdqN8GU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (4307032)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const enabledGestures={f3n82hLiE:{hover:true}};const serializationHash=\"framer-O0Sqz\";const variantClassNames={f3n82hLiE:\"framer-v-1hayj4u\"};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 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,colorTxt,fontSize,height,id,plan,width,...props})=>{return{...props,H0mGskiVB:colorTxt??props.H0mGskiVB??\"rgb(0, 0, 0)\",I_bbdQq0q:fontSize??props.I_bbdQq0q??20,QjWrcHNdB:plan??props.QjWrcHNdB??\"Starter\",zf2E19zj2:background??props.zf2E19zj2??\"rgba(141, 145, 165, 0.4)\"};};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,QjWrcHNdB,zf2E19zj2,H0mGskiVB,I_bbdQq0q,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"f3n82hLiE\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:{hash:\":b8JY_SEou\",webPageId:\"Jo1uvVDev\"},motionChild:true,nodeId:\"f3n82hLiE\",openInNewTab:false,scopeId:\"pS1rMbzTR\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1hayj4u\",className,classNames)} framer-ihpdce`,\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"f3n82hLiE\",ref:refBinding,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(141, 145, 165, 0.4)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(141, 145, 165, 0)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},variants:{\"f3n82hLiE-hover\":{backgroundColor:zf2E19zj2}},...addPropertyOverrides({\"f3n82hLiE-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"Q1VTVE9NO0NpcmN1bGFyWFggQm9sZA==\",\"--framer-font-family\":'\"CircularXX Bold\", \"CircularXX Bold Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-I_bbdQq0q-pS1rMbzTR) * 1px)\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--variable-reference-H0mGskiVB-pS1rMbzTR))\"},children:\"Starter\"})}),className:\"framer-1tbmifl\",\"data-framer-name\":\"Label\",fonts:[\"CUSTOM;CircularXX Bold\"],layoutDependency:layoutDependency,layoutId:\"th88obIBO\",style:{\"--extracted-1lwpl3i\":\"var(--variable-reference-H0mGskiVB-pS1rMbzTR)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-H0mGskiVB-pS1rMbzTR\":H0mGskiVB,\"--variable-reference-I_bbdQq0q-pS1rMbzTR\":I_bbdQq0q},text:QjWrcHNdB,verticalAlignment:\"bottom\",withExternalLayout:true})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-O0Sqz.framer-ihpdce, .framer-O0Sqz .framer-ihpdce { display: block; }\",\".framer-O0Sqz.framer-1hayj4u { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 50px; justify-content: center; overflow: visible; padding: 11px 16px 11px 16px; position: relative; text-decoration: none; width: 190px; }\",\".framer-O0Sqz .framer-1tbmifl { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",'.framer-O0Sqz[data-border=\"true\"]::after, .framer-O0Sqz [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 50\n * @framerIntrinsicWidth 190\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"jpW3rXGhe\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"QjWrcHNdB\":\"plan\",\"zf2E19zj2\":\"background\",\"H0mGskiVB\":\"colorTxt\",\"I_bbdQq0q\":\"fontSize\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerpS1rMbzTR=withCSS(Component,css,\"framer-O0Sqz\");export default FramerpS1rMbzTR;FramerpS1rMbzTR.displayName=\"Button_features\";FramerpS1rMbzTR.defaultProps={height:50,width:190};addPropertyControls(FramerpS1rMbzTR,{QjWrcHNdB:{defaultValue:\"Starter\",displayTextArea:false,title:\"Plan\",type:ControlType.String},zf2E19zj2:{defaultValue:\"rgba(141, 145, 165, 0.4)\",title:\"Background\",type:ControlType.Color},H0mGskiVB:{defaultValue:\"rgb(0, 0, 0)\",title:\"Color_txt\",type:ControlType.Color},I_bbdQq0q:{defaultValue:20,title:\"Font Size\",type:ControlType.Number}});addFonts(FramerpS1rMbzTR,[{explicitInter:true,fonts:[{family:\"CircularXX Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/AGkNBOYWzLi5AX3Ezgjv6MhXE.otf\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerpS1rMbzTR\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"190\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"jpW3rXGhe\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"QjWrcHNdB\\\":\\\"plan\\\",\\\"zf2E19zj2\\\":\\\"background\\\",\\\"H0mGskiVB\\\":\\\"colorTxt\\\",\\\"I_bbdQq0q\\\":\\\"fontSize\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicHeight\":\"50\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./pS1rMbzTR.map","// Generated by Framer (dbba614)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-KPbp9 .framer-styles-preset-1ygs76k:not(.rich-text-wrapper), .framer-KPbp9 .framer-styles-preset-1ygs76k.rich-text-wrapper a { --framer-link-current-text-color: #6666d2; --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: #5c5ce6; --framer-link-hover-text-decoration: underline; --framer-link-text-color: #6666d2; --framer-link-text-decoration: underline; }\"];export const className=\"framer-KPbp9\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (4307032)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useMetadata,useRouteElementId,withCodeBoundaryForOverrides,withCSS,withFX,withMappedReactProps}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/w90zR0qzeh1mgaDSvD54/Carousel.js\";import{Icon as Iconoir}from\"https://framerusercontent.com/modules/zL9598C4KbEbqUGvSR14/rI8sPHpnG9XGcCPc0vU4/Iconoir.js\";import InnerBox from\"#framer/local/canvasComponent/D1p6456fH/D1p6456fH.js\";import Button_price,*as Button_priceInfo from\"#framer/local/canvasComponent/dgxPN1Hgj/dgxPN1Hgj.js\";import RotateBorder from\"#framer/local/canvasComponent/EZHAGI4fH/EZHAGI4fH.js\";import TermiusFooterLight from\"#framer/local/canvasComponent/gGCEPKC3Q/gGCEPKC3Q.js\";import Title from\"#framer/local/canvasComponent/IwvcgD9pM/IwvcgD9pM.js\";import Navbar from\"#framer/local/canvasComponent/OM4QVwxNi/OM4QVwxNi.js\";import CompareItems from\"#framer/local/canvasComponent/PFCVrIM90/PFCVrIM90.js\";import Button_features from\"#framer/local/canvasComponent/pS1rMbzTR/pS1rMbzTR.js\";import Accordion3 from\"#framer/local/canvasComponent/PS2HcCCHr/PS2HcCCHr.js\";import Card_Testimonials from\"#framer/local/canvasComponent/uXTSAHIQQ/uXTSAHIQQ.js\";import{withTrackGetQuoteInHeader,withTrackSignUpViaBusinessInHero,withTrackSignUpViaProInHero,withTrackSignUpViaStarterInHero,withTrackSignUpViaTeamInHero}from\"#framer/local/codeFile/xTXpUla/CTAButton.js\";import*as sharedStyle6 from\"#framer/local/css/dJWK8eaLw/dJWK8eaLw.js\";import*as sharedStyle5 from\"#framer/local/css/IHKyzxX1D/IHKyzxX1D.js\";import*as sharedStyle from\"#framer/local/css/Kyz_Zj1BC/Kyz_Zj1BC.js\";import*as sharedStyle1 from\"#framer/local/css/lp44_zQ3_/lp44_zQ3_.js\";import*as sharedStyle3 from\"#framer/local/css/OOqQw_MMN/OOqQw_MMN.js\";import*as sharedStyle4 from\"#framer/local/css/Rm8n8FvoD/Rm8n8FvoD.js\";import*as sharedStyle2 from\"#framer/local/css/T6ddxQNYr/T6ddxQNYr.js\";import*as sharedStyle7 from\"#framer/local/css/wY_XBD17s/wY_XBD17s.js\";import metadataProvider from\"#framer/local/webPageMetadata/Jo1uvVDev/Jo1uvVDev.js\";const NavbarFonts=getFonts(Navbar);const RotateBorderFonts=getFonts(RotateBorder);const InnerBoxFonts=getFonts(InnerBox);const MotionDivWithFX=withFX(motion.div);const RichTextWithFX=withFX(RichText);const Button_priceFonts=getFonts(Button_price);const Button_priceWithTrackSignUpViaStarterInHero16d0avpWithMappedReactProps56lkc6=withMappedReactProps(withCodeBoundaryForOverrides(Button_price,{nodeId:\"wVHON9L6E\",override:withTrackSignUpViaStarterInHero,scopeId:\"Jo1uvVDev\"}),Button_priceInfo);const IconoirFonts=getFonts(Iconoir);const Button_priceWithTrackSignUpViaProInHero12vkks2WithMappedReactProps56lkc6=withMappedReactProps(withCodeBoundaryForOverrides(Button_price,{nodeId:\"IR_o_QZoz\",override:withTrackSignUpViaProInHero,scopeId:\"Jo1uvVDev\"}),Button_priceInfo);const Button_priceWithTrackSignUpViaTeamInHero1yr9dbjWithMappedReactProps56lkc6=withMappedReactProps(withCodeBoundaryForOverrides(Button_price,{nodeId:\"Bs0EHeWxR\",override:withTrackSignUpViaTeamInHero,scopeId:\"Jo1uvVDev\"}),Button_priceInfo);const RichTextWithTrackGetQuoteInHeader1sxd1oo=withCodeBoundaryForOverrides(RichText,{nodeId:\"QqOgFpXDP\",override:withTrackGetQuoteInHeader,scopeId:\"Jo1uvVDev\"});const Button_priceWithTrackSignUpViaBusinessInHerojvh0wjWithMappedReactProps56lkc6=withMappedReactProps(withCodeBoundaryForOverrides(Button_price,{nodeId:\"NtU3B0mi8\",override:withTrackSignUpViaBusinessInHero,scopeId:\"Jo1uvVDev\"}),Button_priceInfo);const RichTextWithTrackGetQuoteInHeaderr33l4y=withCodeBoundaryForOverrides(RichText,{nodeId:\"vvLJEvmiS\",override:withTrackGetQuoteInHeader,scopeId:\"Jo1uvVDev\"});const Card_TestimonialsFonts=getFonts(Card_Testimonials);const CarouselFonts=getFonts(Carousel);const TitleFonts=getFonts(Title);const Button_featuresFonts=getFonts(Button_features);const CompareItemsFonts=getFonts(CompareItems);const Accordion3Fonts=getFonts(Accordion3);const TermiusFooterLightFonts=getFonts(TermiusFooterLight);const breakpoints={bNAIMtQ6a:\"(max-width: 639px)\",eLiq7c59t:\"(min-width: 1200px)\",Gqtd3rM7G:\"(min-width: 810px) and (max-width: 1199px)\",LNYyHxZQI:\"(min-width: 640px) and (max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-KSOQ7\";const variantClassNames={bNAIMtQ6a:\"framer-v-wvpuzr\",eLiq7c59t:\"framer-v-1gzyep0\",Gqtd3rM7G:\"framer-v-70esdy\",LNYyHxZQI:\"framer-v-16xyyh6\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-86};const transition1={damping:30,delay:.3,mass:1,stiffness:400,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:-86};const transition2={damping:30,delay:.1,mass:1,stiffness:400,type:\"spring\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:-86};const transition3={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.05,skewX:0,skewY:0,transition:transition3};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Tablet 2\":\"Gqtd3rM7G\",\"Tablet 3\":\"LNYyHxZQI\",Desktop:\"eLiq7c59t\",Phone:\"bNAIMtQ6a\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"eLiq7c59t\"};};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 metadata=React.useMemo(()=>metadataProvider(undefined,activeLocale),[undefined,activeLocale]);useMetadata(metadata);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"b8JY_SEou\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"X1hXOH8me\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"dwJA5nW6H\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"AWeCwKqts\");const ref4=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"eLiq7c59t\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-bdb63b94-f736-465f-b80b-6171bbc78231, rgb(5, 9, 28)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1gzyep0\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1iep413-container\",layoutScroll:true,nodeId:\"vsMVqQnzY\",scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{variant:\"kIo2kPczK\"},Gqtd3rM7G:{variant:\"WPhFdDgB0\"},LNYyHxZQI:{variant:\"WPhFdDgB0\"}},children:/*#__PURE__*/_jsx(Navbar,{Ac1c9K52s:0,Ft7EGzC5q:\"\",height:\"100%\",id:\"vsMVqQnzY\",layoutId:\"vsMVqQnzY\",q6RSFTzzR:false,style:{width:\"100%\"},variant:\"xxIrNOVns\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b3vvqs\",\"data-framer-name\":\"Hero Background\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1865hfb\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-znzdgz\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nywge5\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-40w0uf\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1keirvq\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ec9bet\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jcg8hp\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19xpaof\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-d3yt3p\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1h1c0ih\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8na1nn\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-9i2pcc\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-454rul\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-yeroyb\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qiuwa5\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1e31ac3\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1j2v0im\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1oxbmih\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1egag3f\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qlvqkz\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cga7ls\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-d1uyxm\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-q9ihi0\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1oaawc8\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-n7t4nc\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1f12t9l\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1b078bc\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-vtr90x\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-i1kdu4\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6lq83r\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-9qqg41\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-tcfq6u\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-40gup8\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-75paw0\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xhvile\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gtqzcx\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-x2dsdp\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-mw1tvv\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-uuixvv\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1y38960\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ayh36z\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-izx18x\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mcrp4x\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-177tfb3\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19tyzwg\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-dy95y5\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-wnqzme\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19sjanm\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1h0hq0\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ymddrf\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1blj8jg\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jkc9rs\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-g830\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qzsyex\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-a9vn41\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-u33ug2\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-w8ui9r\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1trrnbo\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-p8e2ne\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pvw03x\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-n653x5\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xjgvot\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bvi1ex\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gh7v53\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-tplweu\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1m4rj9q\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-3q8frd\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14qz2j6\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1oubfmx\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14re84s\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1r8wqxq\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jbsk8g\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16gdsa5\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bzpnws\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-y7r08q\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15j1qi7\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ghieyd\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-96eg04\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8k9s2q\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-nzthio\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ua1axt\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jh4kul\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1db8avl\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mxe95u\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8re1ki\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1z6spx\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-bcbhw1\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1n8zatg\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11mkrui\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-3n48lb\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-k3m7w2\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1t59bgt\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-n4313j\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pchid5\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ybeegn\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-sno15z\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-zit8sq\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-52j65j\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xsccbv\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-53mecc\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1q5u4ad\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xht32n\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-aa3xae\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1odyzvl\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ixsajc\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gdr5a2\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1n0a5aq\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1av04zj\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-185aqp6\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-kd2t1r\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1njmpey\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nbriah\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-pmu9ke\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4wjx4t\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1196xd2\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-l9movk\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12re2wx\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1o57x4g\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19yo4ud\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1drl12l\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-kpxdkh\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-gvkv1u\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1chb63n\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1q8kyd3\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1riel8v\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ljc6e4\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-h5deip\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yykc44\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rqg4ds\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-q1k6vc\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-u9txbx\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ger4wu\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-176x002\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15m1hca\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1aqlavt\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-r1etlf\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-40325m\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xrholp\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1b1mkxa\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1syr5s1\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1r735z6\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-o15vw8\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-24dl43\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12jdwvh\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10n0mwf\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11n0awc\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-84jhuh\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-wbxoh\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-l8e3hq\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vtalt6\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gpqkzs\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-d71vlb\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1s5dkuo\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mbkn0j\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1j98on4\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-u3mkla\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19ts5se\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-fgpphc\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19b6w1b\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vwid0i\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1r0d7r0\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gxysyt\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-48s1vh\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10ws1dx\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2rcftq\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1agqogw\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6f94fy\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-mtuupl\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ose1hr\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-nc0llc\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yfsx0k\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1anw0sw\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2j316b\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1u34xg8\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-d9oxad\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-gcmjon\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-9o83ha\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1v1xa4n\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lxp7kz\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qda1np\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-pv92en\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-cpzr5v\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-lnojio\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uwkjef\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ndsyc7\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1djndxy\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1klvvvx\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xvqk6m\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ee0bzj\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-sd3jbh\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1g3qvhr\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hik1ax\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-voo3ub\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2rtx5p\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-183yzp5\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ckevl9\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ej759z\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cfwftd\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-bwq8hw\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1v8gjxb\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4djc1b\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gladp8\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-9q34m8\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-i16wfr\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2l5ypz\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2qi0e5\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ks947e\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-x0q6ko\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ufnkri\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wgbu6a\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1us2aq7\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sdbm9q\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-f52z73\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-lz1b4n\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-zf633h\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-kzf0ms\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2htu5c\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wnmbtu\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-jkky55\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jo6pv9\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1al4dgn\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1f8pvj9\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-dkt9gm\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8epjhl\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xyinan\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hcl89y\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-17nk4o1\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-bmquju\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16q91n7\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-p02vun\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-128cmpr\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-thiwf1\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rcwnz3\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1j7qaul\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-hvzy6e\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1imppi3\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xmsqpx\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-eck186\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-39h1b9\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-yhggfr\",\"data-border\":true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x47ymi\",\"data-framer-name\":\"1\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xnep7y\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{__framer__styleAppearEffectEnabled:undefined},Gqtd3rM7G:{__framer__styleAppearEffectEnabled:undefined},LNYyHxZQI:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1f7vxsm\",\"data-framer-name\":\"Mask\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{height:124.4043,y:(componentViewport?.y||0)+0+0+140+0+0+0+-37.4172}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:123.9249,y:(componentViewport?.y||0)+0+0+180+0+0+0+-37.1775,children:/*#__PURE__*/_jsx(Container,{className:\"framer-hquo37-container\",nodeId:\"AnyD3vfOV\",scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(RotateBorder,{height:\"100%\",id:\"AnyD3vfOV\",layoutId:\"AnyD3vfOV\",style:{height:\"100%\",width:\"100%\"},variant:\"LzU4GATkD\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{width:\"305px\",y:(componentViewport?.y||0)+0+0+140+0+0+0+1+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,y:(componentViewport?.y||0)+0+0+180+0+0+0+1+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-19on7ko-container\",nodeId:\"a_IiBCEmM\",scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(InnerBox,{bQN2609Ks:\"Free to try. No credit card required\",height:\"100%\",id:\"a_IiBCEmM\",layoutId:\"a_IiBCEmM\",variant:\"gY7pBD1Sf\",width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{__framer__styleAppearEffectEnabled:undefined,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0NpcmN1bGFyWFggTWVkaXVt\",\"--framer-font-family\":'\"CircularXX Medium\", \"CircularXX Medium Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(141, 145, 165)\",\"--framer-text-transform\":\"inherit\"},children:/*#__PURE__*/_jsxs(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(7593deg, var(--token-ccf3963b-4862-4431-840b-397a90c2f3c9, rgb(90, 94, 115)) -23%, rgb(237, 241, 242) 62%)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"48px\"},children:\"Plans That Scale\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"48px\"},children:\"with Your Team\"})]})})}),fonts:[\"CUSTOM;CircularXX Medium\"]},Gqtd3rM7G:{__framer__styleAppearEffectEnabled:undefined},LNYyHxZQI:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1bsmzg7\",\"data-styles-preset\":\"Kyz_Zj1BC\",children:/*#__PURE__*/_jsxs(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(7593deg, var(--token-ccf3963b-4862-4431-840b-397a90c2f3c9, rgb(90, 94, 115)) -23%, rgb(237, 241, 242) 62%)\"},children:[\"Plans That Scale\",/*#__PURE__*/_jsx(\"br\",{}),\"with Your Team\"]})})}),className:\"framer-xhpsig\",\"data-framer-name\":\"Infrastructure Browser For Dev teams\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18qsdd\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-6k5cxj\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1c7j12o\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{whileHover:undefined},Gqtd3rM7G:{whileHover:undefined},LNYyHxZQI:{whileHover:undefined}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1oeha2d\",\"data-border\":true,\"data-framer-name\":\"New card\",whileHover:animation3,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qtlbp2\",\"data-framer-name\":\"Frame 485\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-g7tzsr\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rfimqc\",\"data-framer-name\":\"Price\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-2kpkyk\",\"data-framer-name\":\"Frame 3481\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-12uxjpt\",\"data-styles-preset\":\"lp44_zQ3_\",style:{\"--framer-text-color\":\"rgb(170, 173, 189)\"},children:\"Starter\"})}),className:\"framer-4f81ft\",\"data-framer-name\":\"Premium\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-50jdeu\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-144c91w\",\"data-styles-preset\":\"T6ddxQNYr\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"FREE\"})})})},Gqtd3rM7G:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-144c91w\",\"data-styles-preset\":\"T6ddxQNYr\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"FREE\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-144c91w\",\"data-styles-preset\":\"T6ddxQNYr\",style:{\"--framer-text-color\":\"var(--token-ec4ce52f-33cb-4ed4-bfe6-1e35ee3404e7, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"FREE\"})})}),className:\"framer-yze08d\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hunwm\",\"data-styles-preset\":\"OOqQw_MMN\",style:{\"--framer-text-color\":\"var(--token-40aa793d-ac43-4b91-b3f0-5bb2c4c96af8, rgb(141, 145, 165))\"},children:\"available for commercial usage\"})}),className:\"framer-ssa9ww\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LNYyHxZQI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1hunwm\",\"data-styles-preset\":\"OOqQw_MMN\",style:{\"--framer-text-color\":\"var(--token-ec4ce52f-33cb-4ed4-bfe6-1e35ee3404e7, rgb(255, 255, 255))\"},children:[\"For home lab enthusiasts seeking a modern SSH client.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hunwm\",\"data-styles-preset\":\"OOqQw_MMN\",style:{\"--framer-text-color\":\"var(--token-ec4ce52f-33cb-4ed4-bfe6-1e35ee3404e7, rgb(255, 255, 255))\"},children:\"For home lab enthusiasts seeking a modern SSH client.\"})}),className:\"framer-xz2vwy\",\"data-framer-name\":\"Ad-free\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 90px)`,y:(componentViewport?.y||0)+0+0+140+198.6+0+0+25+0+0+0+0+444.8},Gqtd3rM7G:{width:`max(max(max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 90px) / 2, 50px), 300px) - 40px, 300px)`,y:(componentViewport?.y||0)+0+0+180+198+90+0+20+0+0+0+0+366.4},LNYyHxZQI:{width:`calc(max(max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 90px) / 2, 50px), 200px) - 40px)`,y:(componentViewport?.y||0)+0+0+180+198+90+0+20+0+0+0+0+424.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,width:`calc(max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 220px) / 4, 1px) - 40px)`,y:(componentViewport?.y||0)+0+0+180+198+90+20+0+0+0+0+277.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-16d0avp-container\",nodeId:\"wVHON9L6E\",rendersWithMotion:true,scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{C09TEJmUG:\"rgb(141, 145, 165)\"},Gqtd3rM7G:{C09TEJmUG:\"rgb(141, 145, 165)\"},LNYyHxZQI:{C09TEJmUG:\"rgb(141, 145, 165)\"}},children:/*#__PURE__*/_jsx(Button_priceWithTrackSignUpViaStarterInHero16d0avpWithMappedReactProps56lkc6,{C09TEJmUG:\"var(--token-40aa793d-ac43-4b91-b3f0-5bb2c4c96af8, rgb(141, 145, 165))\",F9I9OMkVZ:\"https://account.termius.com/sign-up\",height:\"100%\",id:\"wVHON9L6E\",layoutId:\"wVHON9L6E\",R_fMrBGrP:\"rgba(141, 145, 165, 0.6)\",Sm5BlG1qn:\"var(--token-ec4ce52f-33cb-4ed4-bfe6-1e35ee3404e7, rgb(255, 255, 255))\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",ZGUR3SYXK:\"Get Started\",Zomm9GGGd:{borderColor:\"rgba(141, 145, 165, 0.4)\",borderStyle:\"solid\",borderWidth:2}})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16o93cy\",\"data-framer-name\":\"Features\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tv5a3f\",\"data-framer-name\":\"Frame 164\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wmcozz-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"qb9czJsA7\",scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-40aa793d-ac43-4b91-b3f0-5bb2c4c96af8, rgb(141, 145, 165))\",height:\"100%\",iconSearch:\"check\",iconSelection:\"Home\",id:\"qb9czJsA7\",layoutId:\"qb9czJsA7\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hunwm\",\"data-styles-preset\":\"OOqQw_MMN\",style:{\"--framer-text-color\":\"var(--token-ec4ce52f-33cb-4ed4-bfe6-1e35ee3404e7, rgb(255, 255, 255))\"},children:\"SSH and SFTP\"})}),className:\"framer-13coh95\",\"data-framer-name\":\"Ad-free\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2wcc9g\",\"data-framer-name\":\"Frame 163\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1v7w30w-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"WS1UviodC\",scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-40aa793d-ac43-4b91-b3f0-5bb2c4c96af8, rgb(141, 145, 165))\",height:\"100%\",iconSearch:\"check\",iconSelection:\"Home\",id:\"WS1UviodC\",layoutId:\"WS1UviodC\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hunwm\",\"data-styles-preset\":\"OOqQw_MMN\",style:{\"--framer-text-color\":\"var(--token-ec4ce52f-33cb-4ed4-bfe6-1e35ee3404e7, rgb(255, 255, 255))\"},children:\"Local vault\"})}),className:\"framer-971vdb\",\"data-framer-name\":\"Ad-free\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10iglgg\",\"data-framer-name\":\"Frame 176\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-5igydk-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"q4VQXamzp\",scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-40aa793d-ac43-4b91-b3f0-5bb2c4c96af8, rgb(141, 145, 165))\",height:\"100%\",iconSearch:\"check\",iconSelection:\"Home\",id:\"q4VQXamzp\",layoutId:\"q4VQXamzp\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hunwm\",\"data-styles-preset\":\"OOqQw_MMN\",style:{\"--framer-text-color\":\"var(--token-ec4ce52f-33cb-4ed4-bfe6-1e35ee3404e7, rgb(255, 255, 255))\"},children:\"AI-powered autocomplete\"})}),className:\"framer-19m6sc8\",\"data-framer-name\":\"Ad-free\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sb7gkt\",\"data-framer-name\":\"Frame 177\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-18q1wz8-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"kBKfYSPC6\",scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-40aa793d-ac43-4b91-b3f0-5bb2c4c96af8, rgb(141, 145, 165))\",height:\"100%\",iconSearch:\"check\",iconSelection:\"Home\",id:\"kBKfYSPC6\",layoutId:\"kBKfYSPC6\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hunwm\",\"data-styles-preset\":\"OOqQw_MMN\",style:{\"--framer-text-color\":\"var(--token-ec4ce52f-33cb-4ed4-bfe6-1e35ee3404e7, rgb(255, 255, 255))\"},children:\"Port Forwarding\"})}),className:\"framer-1lq2g3m\",\"data-framer-name\":\"Ad-free\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})]})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{whileHover:undefined},Gqtd3rM7G:{whileHover:undefined},LNYyHxZQI:{whileHover:undefined}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-xq6scy\",\"data-border\":true,\"data-framer-name\":\"New card\",whileHover:animation3,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fiocig\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rpf4na\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ke4pja\",\"data-framer-name\":\"Price\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-mtb1ft\",\"data-framer-name\":\"Frame 3481\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-12uxjpt\",\"data-styles-preset\":\"lp44_zQ3_\",style:{\"--framer-text-color\":\"var(--token-d6eceb5f-c0c1-403a-8356-fe616ea60d0b, rgb(33, 181, 104))\"},children:\"Pro\"})}),className:\"framer-1i3c3m7\",\"data-framer-name\":\"Premium\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ntx1ym\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-7esvei\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-144c91w\",\"data-styles-preset\":\"T6ddxQNYr\",style:{\"--framer-text-color\":\"var(--token-ec4ce52f-33cb-4ed4-bfe6-1e35ee3404e7, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"US$10 \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-40aa793d-ac43-4b91-b3f0-5bb2c4c96af8, rgb(141, 145, 165))\"},children:\"month\"})]})}),className:\"framer-k9acxc\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hunwm\",\"data-styles-preset\":\"OOqQw_MMN\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-40aa793d-ac43-4b91-b3f0-5bb2c4c96af8, rgb(141, 145, 165))\"},children:\"when paid annually\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hunwm\",\"data-styles-preset\":\"OOqQw_MMN\",style:{\"--framer-text-color\":\"var(--token-40aa793d-ac43-4b91-b3f0-5bb2c4c96af8, rgb(141, 145, 165))\"},children:\"when paid annually\"})}),className:\"framer-1lno7b0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hunwm\",\"data-styles-preset\":\"OOqQw_MMN\",style:{\"--framer-text-color\":\"var(--token-ec4ce52f-33cb-4ed4-bfe6-1e35ee3404e7, rgb(255, 255, 255))\"},children:\"For individuals responsible for keeping the infrastructure up and running 24/7.\"})}),className:\"framer-1evkgjd\",\"data-framer-name\":\"Ad-free\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 90px)`,y:(componentViewport?.y||0)+0+0+140+198.6+0+997.8+25+0+0+0+0+346.8},Gqtd3rM7G:{width:`calc(max(max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 90px) / 2, 50px), 300px) - 40px)`,y:(componentViewport?.y||0)+0+0+180+198+90+0+20+0+0+0+0+366.4},LNYyHxZQI:{width:`calc(max(max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 90px) / 2, 50px), 200px) - 40px)`,y:(componentViewport?.y||0)+0+0+180+198+90+0+20+0+0+0+0+424.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,width:`calc(max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 220px) / 4, 1px) - 40px)`,y:(componentViewport?.y||0)+0+0+180+198+90+20+0+0+0+0+406.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-12vkks2-container\",nodeId:\"IR_o_QZoz\",rendersWithMotion:true,scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{C09TEJmUG:\"rgb(33, 181, 104)\"},Gqtd3rM7G:{C09TEJmUG:\"rgb(33, 181, 104)\"},LNYyHxZQI:{C09TEJmUG:\"rgb(33, 181, 104)\"}},children:/*#__PURE__*/_jsx(Button_priceWithTrackSignUpViaProInHero12vkks2WithMappedReactProps56lkc6,{C09TEJmUG:\"var(--token-d6eceb5f-c0c1-403a-8356-fe616ea60d0b, rgb(33, 181, 104))\",F9I9OMkVZ:\"https://account.termius.com/sign-up\",height:\"100%\",id:\"IR_o_QZoz\",layoutId:\"IR_o_QZoz\",R_fMrBGrP:\"rgba(33, 181, 104, 0.6)\",Sm5BlG1qn:\"var(--token-ec4ce52f-33cb-4ed4-bfe6-1e35ee3404e7, rgb(255, 255, 255))\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",ZGUR3SYXK:\"Try for Free\",Zomm9GGGd:{borderColor:\"rgba(33, 181, 104, 0.4)\",borderStyle:\"solid\",borderWidth:2}})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17xw0sg\",\"data-framer-name\":\"Features\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vcyk1l\",\"data-framer-name\":\"Frame 164\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kibqm9-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"xCf0eyO4A\",scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-d6eceb5f-c0c1-403a-8356-fe616ea60d0b, rgb(33, 181, 104))\",height:\"100%\",iconSearch:\"check\",iconSelection:\"Home\",id:\"xCf0eyO4A\",layoutId:\"xCf0eyO4A\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hunwm\",\"data-styles-preset\":\"OOqQw_MMN\",style:{\"--framer-text-color\":\"var(--token-ec4ce52f-33cb-4ed4-bfe6-1e35ee3404e7, rgb(255, 255, 255))\"},children:\"All Starter features\"})}),className:\"framer-1ra1xvy\",\"data-framer-name\":\"Ad-free\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14pjg79\",\"data-framer-name\":\"Frame 163\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1p5ajh5-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"aV0Wk1n6b\",scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-d6eceb5f-c0c1-403a-8356-fe616ea60d0b, rgb(33, 181, 104))\",height:\"100%\",iconSearch:\"check\",iconSelection:\"Home\",id:\"aV0Wk1n6b\",layoutId:\"aV0Wk1n6b\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hunwm\",\"data-styles-preset\":\"OOqQw_MMN\",style:{\"--framer-text-color\":\"var(--token-ec4ce52f-33cb-4ed4-bfe6-1e35ee3404e7, rgb(255, 255, 255))\"},children:\"Personal vault\"})}),className:\"framer-hsbdr1\",\"data-framer-name\":\"Ad-free\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-r86ai4\",\"data-framer-name\":\"Frame 176\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-33h2km-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"uv3p_eGgL\",scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-d6eceb5f-c0c1-403a-8356-fe616ea60d0b, rgb(33, 181, 104))\",height:\"100%\",iconSearch:\"check\",iconSelection:\"Home\",id:\"uv3p_eGgL\",layoutId:\"uv3p_eGgL\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hunwm\",\"data-styles-preset\":\"OOqQw_MMN\",style:{\"--framer-text-color\":\"var(--token-ec4ce52f-33cb-4ed4-bfe6-1e35ee3404e7, rgb(255, 255, 255))\"},children:\"Sync across mobile and desktop\"})}),className:\"framer-uwonvm\",\"data-framer-name\":\"Ad-free\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n51gxw\",\"data-framer-name\":\"Frame 177\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1g8sjgq-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ZNHN0_0H8\",scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-d6eceb5f-c0c1-403a-8356-fe616ea60d0b, rgb(33, 181, 104))\",height:\"100%\",iconSearch:\"check\",iconSelection:\"Home\",id:\"ZNHN0_0H8\",layoutId:\"ZNHN0_0H8\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hunwm\",\"data-styles-preset\":\"OOqQw_MMN\",style:{\"--framer-text-color\":\"var(--token-ec4ce52f-33cb-4ed4-bfe6-1e35ee3404e7, rgb(255, 255, 255))\"},children:\"Snippets Automation\"})}),className:\"framer-pprwd1\",\"data-framer-name\":\"Ad-free\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})]})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{whileHover:undefined},Gqtd3rM7G:{whileHover:undefined},LNYyHxZQI:{whileHover:undefined}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vo4irt\",\"data-border\":true,\"data-framer-name\":\"New card\",whileHover:animation3,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oqffdf\",\"data-framer-name\":\"Frame 485\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hzccm7\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pw3ejg\",\"data-framer-name\":\"Price\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19ms1sc\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wkph5i\",\"data-framer-name\":\"Frame 3481\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-12uxjpt\",\"data-styles-preset\":\"lp44_zQ3_\",style:{\"--framer-text-color\":\"var(--token-c54d9db5-a509-438e-807d-0ce938cf337e, rgb(32, 145, 246))\"},children:\"Team\"})}),className:\"framer-1y5n012\",\"data-framer-name\":\"Premium\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w09icr\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-jc6z70\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-144c91w\",\"data-styles-preset\":\"T6ddxQNYr\",style:{\"--framer-text-color\":\"var(--token-40aa793d-ac43-4b91-b3f0-5bb2c4c96af8, rgb(141, 145, 165))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-ec4ce52f-33cb-4ed4-bfe6-1e35ee3404e7, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"US$20 \"})}),\"user/month\"]})}),className:\"framer-7078xn\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hunwm\",\"data-styles-preset\":\"OOqQw_MMN\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-40aa793d-ac43-4b91-b3f0-5bb2c4c96af8, rgb(141, 145, 165))\"},children:\"when paid annually\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hunwm\",\"data-styles-preset\":\"OOqQw_MMN\",style:{\"--framer-text-color\":\"var(--token-40aa793d-ac43-4b91-b3f0-5bb2c4c96af8, rgb(141, 145, 165))\"},children:\"when paid annually\"})}),className:\"framer-1t8nqi9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hunwm\",\"data-styles-preset\":\"OOqQw_MMN\",style:{\"--framer-text-color\":\"var(--token-ec4ce52f-33cb-4ed4-bfe6-1e35ee3404e7, rgb(255, 255, 255))\"},children:\"For teams that need to manage infrastructure together and stay on the same page.\"})}),className:\"framer-tebicv\",\"data-framer-name\":\"Ad-free\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-frf9g3\",\"data-framer-name\":\"Frame 3469\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 90px)`,y:(componentViewport?.y||0)+0+0+140+198.6+0+1897.6+25+0+0+0+0+346.8+0+0},Gqtd3rM7G:{width:`calc(max(max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 90px) / 2, 50px), 300px) - 40px)`,y:(componentViewport?.y||0)+0+0+180+198+90+1017.4+20+0+0+0+0+356.4+0+0},LNYyHxZQI:{width:`calc(max(max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 90px) / 2, 50px), 200px) - 40px)`,y:(componentViewport?.y||0)+0+0+180+198+90+967.8+20+0+0+0+0+444.8+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,width:`calc(max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 220px) / 4, 1px) - 40px)`,y:(componentViewport?.y||0)+0+0+180+198+90+20+0+0+0+0+406.8+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yr9dbj-container\",nodeId:\"Bs0EHeWxR\",rendersWithMotion:true,scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(Button_priceWithTrackSignUpViaTeamInHero1yr9dbjWithMappedReactProps56lkc6,{C09TEJmUG:\"var(--token-c54d9db5-a509-438e-807d-0ce938cf337e, rgb(32, 145, 246))\",F9I9OMkVZ:\"https://account.termius.com/team-trial\",height:\"100%\",id:\"Bs0EHeWxR\",layoutId:\"Bs0EHeWxR\",R_fMrBGrP:\"rgba(32, 145, 246, 0.6)\",Sm5BlG1qn:\"var(--token-ec4ce52f-33cb-4ed4-bfe6-1e35ee3404e7, rgb(255, 255, 255))\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",ZGUR3SYXK:\"Try for Free\",Zomm9GGGd:{borderColor:\"rgba(32, 145, 246, 0.4)\",borderStyle:\"solid\",borderWidth:2}})})})}),/*#__PURE__*/_jsx(RichTextWithTrackGetQuoteInHeader1sxd1oo,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1hunwm\",\"data-styles-preset\":\"OOqQw_MMN\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ec4ce52f-33cb-4ed4-bfe6-1e35ee3404e7, rgb(255, 255, 255))\"},children:[\"or \",/*#__PURE__*/_jsx(Link,{href:\"https://account.termius.com/billing/quotes?plan=team\",motionChild:true,nodeId:\"QqOgFpXDP\",openInNewTab:true,relValues:[],scopeId:\"Jo1uvVDev\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-9hrdhr\",\"data-styles-preset\":\"Rm8n8FvoD\",children:\"get a quote\"})})]})}),className:\"framer-1sxd1oo\",\"data-framer-name\":\"Ad-free\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ficbrc\",\"data-framer-name\":\"Features\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h9uy1u\",\"data-framer-name\":\"Frame 164\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ltwwg5-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Ns7NfTrOu\",scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-c54d9db5-a509-438e-807d-0ce938cf337e, rgb(32, 145, 246))\",height:\"100%\",iconSearch:\"check\",iconSelection:\"Home\",id:\"Ns7NfTrOu\",layoutId:\"Ns7NfTrOu\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hunwm\",\"data-styles-preset\":\"OOqQw_MMN\",style:{\"--framer-text-color\":\"var(--token-ec4ce52f-33cb-4ed4-bfe6-1e35ee3404e7, rgb(255, 255, 255))\"},children:\"All Pro features\"})}),className:\"framer-n5puxt\",\"data-framer-name\":\"Ad-free\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-udik0k\",\"data-framer-name\":\"Frame 163\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-n9ukce-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Mp366JNlS\",scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-c54d9db5-a509-438e-807d-0ce938cf337e, rgb(32, 145, 246))\",height:\"100%\",iconSearch:\"check\",iconSelection:\"Home\",id:\"Mp366JNlS\",layoutId:\"Mp366JNlS\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hunwm\",\"data-styles-preset\":\"OOqQw_MMN\",style:{\"--framer-text-color\":\"var(--token-ec4ce52f-33cb-4ed4-bfe6-1e35ee3404e7, rgb(255, 255, 255))\"},children:\"Team vault for simple, secure sharing\"})}),className:\"framer-1nfqfdl\",\"data-framer-name\":\"Ad-free\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dbdeot\",\"data-framer-name\":\"Frame 176\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-8tntmn-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"xaxYqi4rU\",scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-c54d9db5-a509-438e-807d-0ce938cf337e, rgb(32, 145, 246))\",height:\"100%\",iconSearch:\"check\",iconSelection:\"Home\",id:\"xaxYqi4rU\",layoutId:\"xaxYqi4rU\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hunwm\",\"data-styles-preset\":\"OOqQw_MMN\",style:{\"--framer-text-color\":\"var(--token-ec4ce52f-33cb-4ed4-bfe6-1e35ee3404e7, rgb(255, 255, 255))\"},children:\"Real-time collaboration\"})}),className:\"framer-yj7wzj\",\"data-framer-name\":\"Ad-free\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-etzzty\",\"data-framer-name\":\"Frame 177\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-dnrqyj-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"J4zjpQqGx\",scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-c54d9db5-a509-438e-807d-0ce938cf337e, rgb(32, 145, 246))\",height:\"100%\",iconSearch:\"check\",iconSelection:\"Home\",id:\"J4zjpQqGx\",layoutId:\"J4zjpQqGx\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hunwm\",\"data-styles-preset\":\"OOqQw_MMN\",style:{\"--framer-text-color\":\"var(--token-ec4ce52f-33cb-4ed4-bfe6-1e35ee3404e7, rgb(255, 255, 255))\"},children:\"Consolidated billing\"})}),className:\"framer-1vws354\",\"data-framer-name\":\"Ad-free\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})]})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{whileHover:undefined},Gqtd3rM7G:{whileHover:undefined},LNYyHxZQI:{whileHover:undefined}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-qaukvm\",\"data-border\":true,\"data-framer-name\":\"New card\",whileHover:animation3,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ag7tq5\",\"data-framer-name\":\"Frame 485\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1msojzv\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dh3jnw\",\"data-framer-name\":\"Price\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kxjaap\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-wug8zq\",\"data-framer-name\":\"Frame 3481\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-12uxjpt\",\"data-styles-preset\":\"lp44_zQ3_\",style:{\"--framer-text-color\":\"rgb(102, 102, 210)\"},children:\"Business\"})}),className:\"framer-3bnxia\",\"data-framer-name\":\"Premium\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-id5x1u\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-hrho6b\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-144c91w\",\"data-styles-preset\":\"T6ddxQNYr\",style:{\"--framer-text-color\":\"var(--token-40aa793d-ac43-4b91-b3f0-5bb2c4c96af8, rgb(141, 145, 165))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-ec4ce52f-33cb-4ed4-bfe6-1e35ee3404e7, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"US$30 \"})}),\"user/month\"]})}),className:\"framer-6rcxl0\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hunwm\",\"data-styles-preset\":\"OOqQw_MMN\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-40aa793d-ac43-4b91-b3f0-5bb2c4c96af8, rgb(141, 145, 165))\"},children:\"when paid annually\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hunwm\",\"data-styles-preset\":\"OOqQw_MMN\",style:{\"--framer-text-color\":\"var(--token-40aa793d-ac43-4b91-b3f0-5bb2c4c96af8, rgb(141, 145, 165))\"},children:\"when paid annually\"})}),className:\"framer-pe3300\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hunwm\",\"data-styles-preset\":\"OOqQw_MMN\",style:{\"--framer-text-color\":\"var(--token-ec4ce52f-33cb-4ed4-bfe6-1e35ee3404e7, rgb(255, 255, 255))\"},children:\"For companies requiring access control and advanced security.\"})}),className:\"framer-1xfqpv1\",\"data-framer-name\":\"Ad-free\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1txdadf\",\"data-framer-name\":\"Frame 3469\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px)`,y:(componentViewport?.y||0)+0+0+140+198.6+0+2905.4+20+0+0+0+0+346.8+0+0},Gqtd3rM7G:{width:`calc(max(max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 90px) / 2, 50px), 300px) - 40px)`,y:(componentViewport?.y||0)+0+0+180+198+90+1017.4+20+0+0+0+0+366.4+0+0},LNYyHxZQI:{width:`calc(max(max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 90px) / 2, 50px), 200px) - 40px)`,y:(componentViewport?.y||0)+0+0+180+198+90+967.8+20+0+0+0+0+444.8+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,width:`calc(max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 220px) / 4, 1px) - 40px)`,y:(componentViewport?.y||0)+0+0+180+198+90+20+0+0+0+0+406.8+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-jvh0wj-container\",nodeId:\"NtU3B0mi8\",rendersWithMotion:true,scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{C09TEJmUG:\"rgb(102, 102, 210)\"},Gqtd3rM7G:{C09TEJmUG:\"rgb(102, 102, 210)\"},LNYyHxZQI:{C09TEJmUG:\"rgb(102, 102, 210)\"}},children:/*#__PURE__*/_jsx(Button_priceWithTrackSignUpViaBusinessInHerojvh0wjWithMappedReactProps56lkc6,{C09TEJmUG:\"var(--token-2a2645bd-13b5-4327-b6f5-fc7a44895e92, rgb(102, 102, 210))\",F9I9OMkVZ:\"https://account.termius.com/team-trial\",height:\"100%\",id:\"NtU3B0mi8\",layoutId:\"NtU3B0mi8\",R_fMrBGrP:\"rgba(102, 102, 210, 0.6)\",Sm5BlG1qn:\"var(--token-ec4ce52f-33cb-4ed4-bfe6-1e35ee3404e7, rgb(255, 255, 255))\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",ZGUR3SYXK:\"Try for Free\",Zomm9GGGd:{borderColor:\"rgba(102, 102, 210, 0.4)\",borderStyle:\"solid\",borderWidth:2}})})})})}),/*#__PURE__*/_jsx(RichTextWithTrackGetQuoteInHeaderr33l4y,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1hunwm\",\"data-styles-preset\":\"OOqQw_MMN\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ec4ce52f-33cb-4ed4-bfe6-1e35ee3404e7, rgb(255, 255, 255))\"},children:[\"or \",/*#__PURE__*/_jsx(Link,{href:\"https://account.termius.com/billing/quotes?plan=business\",motionChild:true,nodeId:\"vvLJEvmiS\",openInNewTab:true,relValues:[],scopeId:\"Jo1uvVDev\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1ygs76k\",\"data-styles-preset\":\"IHKyzxX1D\",children:\"get a quote\"})})]})}),className:\"framer-r33l4y\",\"data-framer-name\":\"Ad-free\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fo06f\",\"data-framer-name\":\"Features\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d9ra6l\",\"data-framer-name\":\"Frame 164\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-oiqghl-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"EJxQ4teFs\",scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-2a2645bd-13b5-4327-b6f5-fc7a44895e92, rgb(102, 102, 210))\",height:\"100%\",iconSearch:\"check\",iconSelection:\"Home\",id:\"EJxQ4teFs\",layoutId:\"EJxQ4teFs\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hunwm\",\"data-styles-preset\":\"OOqQw_MMN\",style:{\"--framer-text-color\":\"var(--token-ec4ce52f-33cb-4ed4-bfe6-1e35ee3404e7, rgb(255, 255, 255))\"},children:\"All Team features\"})}),className:\"framer-486abl\",\"data-framer-name\":\"Ad-free\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gxbgre\",\"data-framer-name\":\"Frame 163\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-174yyn0-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"tFAJSPkoh\",scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-2a2645bd-13b5-4327-b6f5-fc7a44895e92, rgb(102, 102, 210))\",height:\"100%\",iconSearch:\"check\",iconSelection:\"Home\",id:\"tFAJSPkoh\",layoutId:\"tFAJSPkoh\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hunwm\",\"data-styles-preset\":\"OOqQw_MMN\",style:{\"--framer-text-color\":\"var(--token-ec4ce52f-33cb-4ed4-bfe6-1e35ee3404e7, rgb(255, 255, 255))\"},children:\"Multiple vaults with granular permissions\"})}),className:\"framer-13d2zbd\",\"data-framer-name\":\"Ad-free\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4d2z2l\",\"data-framer-name\":\"Frame 176\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fxgi9m-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"YKNdgbDNW\",scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-2a2645bd-13b5-4327-b6f5-fc7a44895e92, rgb(102, 102, 210))\",height:\"100%\",iconSearch:\"check\",iconSelection:\"Home\",id:\"YKNdgbDNW\",layoutId:\"YKNdgbDNW\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hunwm\",\"data-styles-preset\":\"OOqQw_MMN\",style:{\"--framer-text-color\":\"var(--token-ec4ce52f-33cb-4ed4-bfe6-1e35ee3404e7, rgb(255, 255, 255))\"},children:\"Enterprise SSO\"})}),className:\"framer-pdd9hy\",\"data-framer-name\":\"Ad-free\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4nlabj\",\"data-framer-name\":\"Frame 177\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-iz9fnx-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"LNkLBCs4h\",scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-2a2645bd-13b5-4327-b6f5-fc7a44895e92, rgb(102, 102, 210))\",height:\"100%\",iconSearch:\"check\",iconSelection:\"Home\",id:\"LNkLBCs4h\",layoutId:\"LNkLBCs4h\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hunwm\",\"data-styles-preset\":\"OOqQw_MMN\",style:{\"--framer-text-color\":\"var(--token-ec4ce52f-33cb-4ed4-bfe6-1e35ee3404e7, rgb(255, 255, 255))\"},children:\"SOC2 Type II report\"})}),className:\"framer-14kfn16\",\"data-framer-name\":\"Ad-free\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})]})]})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4281.8),pixelHeight:630,pixelWidth:1200,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"}, 1200px)`,src:\"https://framerusercontent.com/images/rXmFGlWWW64N5buu76dHTcX4OQs.png\",srcSet:\"https://framerusercontent.com/images/rXmFGlWWW64N5buu76dHTcX4OQs.png?scale-down-to=512 512w,https://framerusercontent.com/images/rXmFGlWWW64N5buu76dHTcX4OQs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/rXmFGlWWW64N5buu76dHTcX4OQs.png 1200w\"}},Gqtd3rM7G:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2542.8),pixelHeight:630,pixelWidth:1200,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"}, 1200px)`,src:\"https://framerusercontent.com/images/rXmFGlWWW64N5buu76dHTcX4OQs.png\",srcSet:\"https://framerusercontent.com/images/rXmFGlWWW64N5buu76dHTcX4OQs.png?scale-down-to=512 512w,https://framerusercontent.com/images/rXmFGlWWW64N5buu76dHTcX4OQs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/rXmFGlWWW64N5buu76dHTcX4OQs.png 1200w\"}},LNYyHxZQI:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1352.5),pixelHeight:630,pixelWidth:1200,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"}, 1200px)`,src:\"https://framerusercontent.com/images/rXmFGlWWW64N5buu76dHTcX4OQs.png\",srcSet:\"https://framerusercontent.com/images/rXmFGlWWW64N5buu76dHTcX4OQs.png?scale-down-to=512 512w,https://framerusercontent.com/images/rXmFGlWWW64N5buu76dHTcX4OQs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/rXmFGlWWW64N5buu76dHTcX4OQs.png 1200w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1565.8),pixelHeight:630,pixelWidth:1200,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"}, 1200px)`,src:\"https://framerusercontent.com/images/rXmFGlWWW64N5buu76dHTcX4OQs.png\",srcSet:\"https://framerusercontent.com/images/rXmFGlWWW64N5buu76dHTcX4OQs.png?scale-down-to=512 512w,https://framerusercontent.com/images/rXmFGlWWW64N5buu76dHTcX4OQs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/rXmFGlWWW64N5buu76dHTcX4OQs.png 1200w\"},className:\"framer-civ0nu\",\"data-framer-name\":\"Trusted\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yn5zxe-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"BnWoGzvLG\",scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{arrowObject:{arrowFill:\"var(--token-36c9cccc-a21d-4a4f-b15b-9ff86cb85774, rgb(20, 23, 41))\",arrowPadding:0,arrowRadius:32,arrowSize:42,showMouseControls:false},gap:0},Gqtd3rM7G:{arrowObject:{arrowFill:\"var(--token-36c9cccc-a21d-4a4f-b15b-9ff86cb85774, rgb(20, 23, 41))\",arrowPadding:0,arrowRadius:32,arrowSize:32,showMouseControls:false}},LNYyHxZQI:{arrowObject:{arrowFill:\"var(--token-36c9cccc-a21d-4a4f-b15b-9ff86cb85774, rgb(20, 23, 41))\",arrowPadding:0,arrowRadius:32,arrowSize:32,showMouseControls:false},progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(20, 23, 41, 0)\",dotsBlur:4,dotsFill:\"var(--token-f1cc95b3-98e2-498a-b10e-b46018e13dcc, rgb(121, 140, 148))\",dotsGap:10,dotsInset:20,dotSize:10,dotsOpacity:.5,dotsPadding:7,dotsRadius:50,showProgressDots:true,showScrollbar:false}}},children:/*#__PURE__*/_jsx(Carousel,{align:\"flex-start\",ariaLabel:\"\",arrowObject:{arrowFill:\"var(--token-36c9cccc-a21d-4a4f-b15b-9ff86cb85774, rgb(20, 23, 41))\",arrowPadding:0,arrowRadius:32,arrowSize:32,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeTransition:{damping:100,delay:0,mass:1,stiffness:410,type:\"spring\"},fadeWidth:10},gap:20,height:\"100%\",id:\"BnWoGzvLG\",layoutId:\"BnWoGzvLG\",padding:60,paddingBottom:0,paddingLeft:0,paddingPerSide:true,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(20, 23, 41, 0)\",dotsBlur:4,dotsFill:\"var(--token-f1cc95b3-98e2-498a-b10e-b46018e13dcc, rgb(121, 140, 148))\",dotsGap:10,dotsInset:30,dotSize:10,dotsOpacity:.5,dotsPadding:7,dotsRadius:50,showProgressDots:true,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:1,widthInset:100,widthType:\"columns\"},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gw3szj\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:327,width:\"773.1px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-yqpj02-container\",inComponentSlot:true,nodeId:\"PA9vGUXxF\",rendersWithMotion:true,scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(Card_Testimonials,{EfD5Hha07:\"Best sysadmin software ever\",height:\"100%\",id:\"PA9vGUXxF\",layoutId:\"PA9vGUXxF\",rh9mu93sp:\" Diego V.\",style:{width:\"100%\"},UhpiFkGyS:\"I've never found so many desirable features in a single software. Centralized credentials? Check. SFTP? Check. SSH? Check. Command snippets!? I didn't even knew that I needed it before Termius. This piece of software has improved my job quality and reduced the tediousness of managing multiple across multiple providers.  I've been using this software daily for the last two and half years, and I will keep using it and paying the annual plan, it's worth every penny.  I've used multiple softwares before, and this one came to replace all of them with incredible ease. It was a joy to implement Termius in my job tech stack.\",vpZhucdEl:addImageAlt({pixelHeight:1001,pixelWidth:1001,src:\"https://framerusercontent.com/images/ALedMZq9AD6sP4Zys4K0Ot4AHeU.png\",srcSet:\"https://framerusercontent.com/images/ALedMZq9AD6sP4Zys4K0Ot4AHeU.png?scale-down-to=512 512w,https://framerusercontent.com/images/ALedMZq9AD6sP4Zys4K0Ot4AHeU.png 1001w\"},\"\"),width:\"100%\",xDTlFaPh2:\"Oct 29, 2024\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-19f37o7\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:327,width:\"674.1px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-9qa1nw-container\",inComponentSlot:true,nodeId:\"hqa7A_X_2\",rendersWithMotion:true,scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(Card_Testimonials,{EfD5Hha07:\"The best SSH client for business\",height:\"100%\",id:\"hqa7A_X_2\",layoutId:\"hqa7A_X_2\",rh9mu93sp:\"Michael A.\",style:{width:\"100%\"},UhpiFkGyS:\"For many years I was using various SSH clients with a standard terminal interface and host groupings. I was manually syncing saved hosts by storing data files in things like OneDrive, it wasn't reliable, and slowed me down when I needed to quickly access systems for important reasons. Despite the cost, Terminus with its sync feature has worked flawlessly for me for a few years now and I'd never go back to any other SSH client. It has many features but I don't use them all. The Terminus terminal looks great and is super functional with many hotkey settings.\",vpZhucdEl:addImageAlt({pixelHeight:1001,pixelWidth:1001,src:\"https://framerusercontent.com/images/ALedMZq9AD6sP4Zys4K0Ot4AHeU.png\",srcSet:\"https://framerusercontent.com/images/ALedMZq9AD6sP4Zys4K0Ot4AHeU.png?scale-down-to=512 512w,https://framerusercontent.com/images/ALedMZq9AD6sP4Zys4K0Ot4AHeU.png 1001w\"},\"\"),width:\"100%\",xDTlFaPh2:\"Sep 05, 2024\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-19z7f92\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:327,width:\"674.1px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yr311s-container\",inComponentSlot:true,nodeId:\"MBR8lAve3\",rendersWithMotion:true,scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(Card_Testimonials,{EfD5Hha07:\"Termius is an essential tool for administrators, whether at the office or on the go\",height:\"100%\",id:\"MBR8lAve3\",layoutId:\"MBR8lAve3\",rh9mu93sp:\"Sascha B.\",style:{width:\"100%\"},UhpiFkGyS:'What I best like is it\\'s sleek interface and the extended features of Termius: The \"snippets\" is my favorite one, I could not live without it anymore. 1. The snippet feature is a game-changer for efficiency. It allows users to save and reuse command sequences, significantly reducing repetitive tasks. 2. The \"Termius mobile app\" is a powerful extension of its desktop counterpart. It enables administrators to manage servers remotely via VPN, ensuring that they can respond to issues promptly, regardless of their location.  3. \"SFTP\" feature for file transfers between hosts and clients. This capability simplifies the process of managing files across different systems, making it a hassle-free experience.',vpZhucdEl:addImageAlt({pixelHeight:1001,pixelWidth:1001,src:\"https://framerusercontent.com/images/ALedMZq9AD6sP4Zys4K0Ot4AHeU.png\",srcSet:\"https://framerusercontent.com/images/ALedMZq9AD6sP4Zys4K0Ot4AHeU.png?scale-down-to=512 512w,https://framerusercontent.com/images/ALedMZq9AD6sP4Zys4K0Ot4AHeU.png 1001w\"},\"\"),width:\"100%\",xDTlFaPh2:\"Aug 14, 2024\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-16fm0m1\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:327,width:\"674.1px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-fuhvb0-container\",inComponentSlot:true,nodeId:\"J9u4davuS\",rendersWithMotion:true,scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(Card_Testimonials,{EfD5Hha07:\"Great Tool to keep all your Remote VMs at one place\",height:\"100%\",id:\"J9u4davuS\",layoutId:\"J9u4davuS\",rh9mu93sp:\" HakYoung K.\",style:{width:\"100%\"},UhpiFkGyS:\"One of the standout features of Termius is its seamless and efficient remote UAT server access capabilities. With Termius, managing and accessing remote servers becomes a breeze. The software offers a user-friendly interface that is both intuitive and visually appealing. Navigating through different servers and executing commands is a smooth and hassle-free experience.   Termius excels in providing secure and encrypted connections, ensuring the safety of sensitive data during remote server access. The software supports many protocols, including SSH, Mosh, and Telnet, allowing users to connect to various types of servers easily.\",vpZhucdEl:addImageAlt({pixelHeight:1001,pixelWidth:1001,src:\"https://framerusercontent.com/images/ALedMZq9AD6sP4Zys4K0Ot4AHeU.png\",srcSet:\"https://framerusercontent.com/images/ALedMZq9AD6sP4Zys4K0Ot4AHeU.png?scale-down-to=512 512w,https://framerusercontent.com/images/ALedMZq9AD6sP4Zys4K0Ot4AHeU.png 1001w\"},\"\"),width:\"100%\",xDTlFaPh2:\"Dec 04, 2023\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ys55f1\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:327,width:\"674.1px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-16y52j9-container\",inComponentSlot:true,nodeId:\"sszcEt2L0\",rendersWithMotion:true,scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(Card_Testimonials,{EfD5Hha07:\"Very polished experience\",height:\"100%\",id:\"sszcEt2L0\",layoutId:\"sszcEt2L0\",rh9mu93sp:\" Silver P.\",style:{width:\"100%\"},UhpiFkGyS:\"Grouping of servers and searching are a big plus for me since I have too many servers to find from a simple list. Clients for all major operating systems are really great (iOS, Android, MacOS, Windows, Linux). Syncing between devices work great. It was really easy to get started. When i configured my first server it saved my credentials and when I add another server it lets me select the same credentials. I was using Putty for close to 15 years. It's great when I did not have too many servers but when I started to have close to 100 servers it became a problem with finding the correct server. Termius fixed that issue with grouping, search and tags. Those 3 thing make a huge difference to my workflow.\",vpZhucdEl:addImageAlt({pixelHeight:1001,pixelWidth:1001,src:\"https://framerusercontent.com/images/ALedMZq9AD6sP4Zys4K0Ot4AHeU.png\",srcSet:\"https://framerusercontent.com/images/ALedMZq9AD6sP4Zys4K0Ot4AHeU.png?scale-down-to=512 512w,https://framerusercontent.com/images/ALedMZq9AD6sP4Zys4K0Ot4AHeU.png 1001w\"},\"\"),width:\"100%\",xDTlFaPh2:\"Aug 14, 2024\"})})})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qz450x\"})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15iwafc\",\"data-framer-name\":\"Compare Features\",id:elementId3,ref:ref4,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px)`,y:(componentViewport?.y||0)+0+4513.8+100+0},Gqtd3rM7G:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px)`,y:(componentViewport?.y||0)+0+2944.8+150+0},LNYyHxZQI:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px)`,y:(componentViewport?.y||0)+0+1754.5+100+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:108,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px)`,y:(componentViewport?.y||0)+0+1967.8+150+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-m88ltj-container\",nodeId:\"gpNRdrTuI\",scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(Title,{height:\"100%\",id:\"gpNRdrTuI\",layoutId:\"gpNRdrTuI\",qkhmfHSqI:\"\",style:{width:\"100%\"},variant:\"fQdwhKCQP\",vbiYeY1pJ:\"Compare plans and features\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d0t4iv\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9eqi8x\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xhgrjp\",\"data-framer-name\":\"epmty\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-y38vio\",\"data-framer-name\":\"Frame 3481\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"Q1VTVE9NO0NpcmN1bGFyWFggQm9sZA==\",\"--framer-font-family\":'\"CircularXX Bold\", \"CircularXX Bold Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-ec4ce52f-33cb-4ed4-bfe6-1e35ee3404e7, rgb(255, 255, 255))\"},children:\"Features\"})}),fonts:[\"CUSTOM;CircularXX Bold\"]},LNYyHxZQI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"Q1VTVE9NO0NpcmN1bGFyWFggQm9sZA==\",\"--framer-font-family\":'\"CircularXX Bold\", \"CircularXX Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-ec4ce52f-33cb-4ed4-bfe6-1e35ee3404e7, rgb(255, 255, 255))\"},children:\"Features\"})}),fonts:[\"CUSTOM;CircularXX Bold\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-is8l88\",\"data-styles-preset\":\"dJWK8eaLw\",style:{\"--framer-text-color\":\"var(--token-ec4ce52f-33cb-4ed4-bfe6-1e35ee3404e7, rgb(255, 255, 255))\"},children:\"Features\"})}),className:\"framer-kzpf1b\",\"data-framer-name\":\"Premium\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16zlo4e\",\"data-framer-name\":\"Price\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{height:30,width:\"60px\",y:(componentViewport?.y||0)+0+4513.8+100+128+20+0+0+0+0},Gqtd3rM7G:{y:(componentViewport?.y||0)+0+2944.8+150+108+40+0+0+0+0},LNYyHxZQI:{width:\"100px\",y:(componentViewport?.y||0)+0+1754.5+100+128+30+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"130px\",y:(componentViewport?.y||0)+0+1967.8+150+108+60+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1t04f1-container\",nodeId:\"TnrJZpxGx\",scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{I_bbdQq0q:15},LNYyHxZQI:{I_bbdQq0q:18}},children:/*#__PURE__*/_jsx(Button_features,{H0mGskiVB:\"var(--token-40aa793d-ac43-4b91-b3f0-5bb2c4c96af8, rgb(141, 145, 165))\",height:\"100%\",I_bbdQq0q:20,id:\"TnrJZpxGx\",layoutId:\"TnrJZpxGx\",QjWrcHNdB:\"Starter\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",zf2E19zj2:\"rgba(141, 145, 165, 0.4)\"})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-nk5z6p\",\"data-framer-name\":\"Price\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{height:30,width:\"60px\",y:(componentViewport?.y||0)+0+4513.8+100+128+20+0+0+0+0},Gqtd3rM7G:{y:(componentViewport?.y||0)+0+2944.8+150+108+40+0+0+0+0},LNYyHxZQI:{width:\"100px\",y:(componentViewport?.y||0)+0+1754.5+100+128+30+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"130px\",y:(componentViewport?.y||0)+0+1967.8+150+108+60+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yenq6c-container\",nodeId:\"lkXK_BJGz\",scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{I_bbdQq0q:15},LNYyHxZQI:{I_bbdQq0q:18}},children:/*#__PURE__*/_jsx(Button_features,{H0mGskiVB:\"var(--token-d6eceb5f-c0c1-403a-8356-fe616ea60d0b, rgb(33, 181, 104))\",height:\"100%\",I_bbdQq0q:20,id:\"lkXK_BJGz\",layoutId:\"lkXK_BJGz\",QjWrcHNdB:\"Pro\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",zf2E19zj2:\"rgba(33, 181, 104, 0.4)\"})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wdea5v\",\"data-framer-name\":\"Price\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{height:30,width:\"60px\",y:(componentViewport?.y||0)+0+4513.8+100+128+20+0+0+0+0},Gqtd3rM7G:{y:(componentViewport?.y||0)+0+2944.8+150+108+40+0+0+0+0},LNYyHxZQI:{width:\"100px\",y:(componentViewport?.y||0)+0+1754.5+100+128+30+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"130px\",y:(componentViewport?.y||0)+0+1967.8+150+108+60+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dez5pc-container\",nodeId:\"xnvM4NFc0\",scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{I_bbdQq0q:15},LNYyHxZQI:{I_bbdQq0q:18}},children:/*#__PURE__*/_jsx(Button_features,{H0mGskiVB:\"var(--token-c54d9db5-a509-438e-807d-0ce938cf337e, rgb(32, 145, 246))\",height:\"100%\",I_bbdQq0q:20,id:\"xnvM4NFc0\",layoutId:\"xnvM4NFc0\",QjWrcHNdB:\"Team\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",zf2E19zj2:\"rgba(32, 145, 246, 0.4)\"})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1s1pvw7\",\"data-framer-name\":\"Price\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{height:30,width:\"60px\",y:(componentViewport?.y||0)+0+4513.8+100+128+20+0+0+0+0},Gqtd3rM7G:{y:(componentViewport?.y||0)+0+2944.8+150+108+40+0+0+0+0},LNYyHxZQI:{width:\"100px\",y:(componentViewport?.y||0)+0+1754.5+100+128+30+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"130px\",y:(componentViewport?.y||0)+0+1967.8+150+108+60+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-idsezo-container\",nodeId:\"uPksQJUsS\",scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{I_bbdQq0q:15},LNYyHxZQI:{I_bbdQq0q:18}},children:/*#__PURE__*/_jsx(Button_features,{H0mGskiVB:\"var(--token-2a2645bd-13b5-4327-b6f5-fc7a44895e92, rgb(102, 102, 210))\",height:\"100%\",I_bbdQq0q:20,id:\"uPksQJUsS\",layoutId:\"uPksQJUsS\",QjWrcHNdB:\"Business\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",zf2E19zj2:\"rgba(102, 102, 210, 0.4)\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-j0t84g\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tj853j\",\"data-framer-name\":\"Desktop\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15f7ydz\",\"data-framer-name\":\"Termius Core\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-17gynv7\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NpcmN1bGFyWFggQm9sZA==\",\"--framer-font-family\":'\"CircularXX Bold\", \"CircularXX Bold Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-40aa793d-ac43-4b91-b3f0-5bb2c4c96af8, rgb(141, 145, 165))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Protocols\"})})}),fonts:[\"CUSTOM;CircularXX Bold\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1h1sdz0\",\"data-styles-preset\":\"wY_XBD17s\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-40aa793d-ac43-4b91-b3f0-5bb2c4c96af8, rgb(141, 145, 165))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Protocols\"})})}),className:\"framer-7rz9wx\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c6bk0r\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px, 1200px)`,y:(componentViewport?.y||0)+0+4513.8+100+219+0+0+0+50+0+0},Gqtd3rM7G:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+2944.8+150+219+0+0+0+35.6+0+0},LNYyHxZQI:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+1754.5+100+249+0+0+0+60+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px, 1200px) - 300px)`,y:(componentViewport?.y||0)+0+1967.8+150+239+0+0+0+45.6+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-zxxjue-container\",nodeId:\"iJpdi_0ZC\",scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{HL1ROBLNa:\"0px 0px 0px 0px\",variant:\"uezdqN8GU\"},LNYyHxZQI:{variant:\"hQq5qV_gm\"}},children:/*#__PURE__*/_jsx(CompareItems,{FRqZTfh9n:true,height:\"100%\",HL1ROBLNa:\"0px 0px 0px 20px\",Hpvclh9CR:true,id:\"iJpdi_0ZC\",IeBHLqE7v:\"SSH\",IXX3gTcNY:\"\",layoutId:\"iJpdi_0ZC\",pdNT_pvgD:true,SOTD9PKE2:false,style:{width:\"100%\"},uDYaKy4JE:\"\",uEX3RrV09:false,variant:\"BtQ9yd78f\",vgvJWZQpf:\"\",width:\"100%\",YiRorK0jT:true,Zkbpv3NVJ:false})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px, 1200px)`,y:(componentViewport?.y||0)+0+4513.8+100+219+0+0+0+50+0+60},Gqtd3rM7G:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+2944.8+150+219+0+0+0+35.6+0+60},LNYyHxZQI:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+1754.5+100+249+0+0+0+60+0+60}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px, 1200px) - 300px)`,y:(componentViewport?.y||0)+0+1967.8+150+239+0+0+0+45.6+0+60,children:/*#__PURE__*/_jsx(Container,{className:\"framer-19sjjws-container\",nodeId:\"VyN6bfdL6\",scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{HL1ROBLNa:\"0px 0px 0px 0px\",variant:\"uezdqN8GU\"},LNYyHxZQI:{variant:\"hQq5qV_gm\"}},children:/*#__PURE__*/_jsx(CompareItems,{FRqZTfh9n:true,height:\"100%\",HL1ROBLNa:\"0px 0px 0px 20px\",Hpvclh9CR:true,id:\"VyN6bfdL6\",IeBHLqE7v:\"SFTP\",IXX3gTcNY:\"\",layoutId:\"VyN6bfdL6\",pdNT_pvgD:true,SOTD9PKE2:false,style:{width:\"100%\"},uDYaKy4JE:\"\",uEX3RrV09:false,variant:\"wyyXnfK5J\",vgvJWZQpf:\"\",width:\"100%\",YiRorK0jT:true,Zkbpv3NVJ:false})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px, 1200px)`,y:(componentViewport?.y||0)+0+4513.8+100+219+0+0+0+50+0+120},Gqtd3rM7G:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+2944.8+150+219+0+0+0+35.6+0+120},LNYyHxZQI:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+1754.5+100+249+0+0+0+60+0+120}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px, 1200px) - 300px)`,y:(componentViewport?.y||0)+0+1967.8+150+239+0+0+0+45.6+0+120,children:/*#__PURE__*/_jsx(Container,{className:\"framer-24oy9d-container\",nodeId:\"GcYGEvQHV\",scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{HL1ROBLNa:\"0px 0px 0px 0px\",variant:\"uezdqN8GU\"},LNYyHxZQI:{variant:\"hQq5qV_gm\"}},children:/*#__PURE__*/_jsx(CompareItems,{FRqZTfh9n:true,height:\"100%\",HL1ROBLNa:\"0px 0px 0px 20px\",Hpvclh9CR:true,id:\"GcYGEvQHV\",IeBHLqE7v:\"Telnet\",IXX3gTcNY:\"\",layoutId:\"GcYGEvQHV\",pdNT_pvgD:true,SOTD9PKE2:false,style:{width:\"100%\"},uDYaKy4JE:\"\",uEX3RrV09:false,variant:\"BtQ9yd78f\",vgvJWZQpf:\"\",width:\"100%\",YiRorK0jT:true,Zkbpv3NVJ:false})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px, 1200px)`,y:(componentViewport?.y||0)+0+4513.8+100+219+0+0+0+50+0+180},Gqtd3rM7G:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+2944.8+150+219+0+0+0+35.6+0+180},LNYyHxZQI:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+1754.5+100+249+0+0+0+60+0+180}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px, 1200px) - 300px)`,y:(componentViewport?.y||0)+0+1967.8+150+239+0+0+0+45.6+0+180,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1l3bhh-container\",nodeId:\"R6fpkS6E_\",scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{HL1ROBLNa:\"0px 0px 0px 0px\",variant:\"uezdqN8GU\"},LNYyHxZQI:{variant:\"hQq5qV_gm\"}},children:/*#__PURE__*/_jsx(CompareItems,{FRqZTfh9n:false,height:\"100%\",HL1ROBLNa:\"0px 0px 0px 20px\",Hpvclh9CR:true,id:\"R6fpkS6E_\",IeBHLqE7v:\"Serial\",IXX3gTcNY:\"\",layoutId:\"R6fpkS6E_\",pdNT_pvgD:true,SOTD9PKE2:false,style:{width:\"100%\"},uDYaKy4JE:\"\",uEX3RrV09:false,variant:\"wyyXnfK5J\",vgvJWZQpf:\"\",width:\"100%\",YiRorK0jT:true,Zkbpv3NVJ:true})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19ecunw\",\"data-framer-name\":\"Productivity tools\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-rfj4xs\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NpcmN1bGFyWFggQm9sZA==\",\"--framer-font-family\":'\"CircularXX Bold\", \"CircularXX Bold Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-40aa793d-ac43-4b91-b3f0-5bb2c4c96af8, rgb(141, 145, 165))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Sync & Sharing\"})})}),fonts:[\"CUSTOM;CircularXX Bold\"]},LNYyHxZQI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1h1sdz0\",\"data-styles-preset\":\"wY_XBD17s\",style:{\"--framer-text-color\":\"var(--token-40aa793d-ac43-4b91-b3f0-5bb2c4c96af8, rgb(141, 145, 165))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Sync & Sharing\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1h1sdz0\",\"data-styles-preset\":\"wY_XBD17s\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-40aa793d-ac43-4b91-b3f0-5bb2c4c96af8, rgb(141, 145, 165))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Sync & Sharing\"})})}),className:\"framer-t3wxuu\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pr3fbw\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px, 1200px)`,y:(componentViewport?.y||0)+0+4513.8+100+219+0+340+0+50+0+0},Gqtd3rM7G:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+2944.8+150+219+0+325.6+0+35.6+0+0},LNYyHxZQI:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+1754.5+100+249+0+350+0+60+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px, 1200px) - 300px)`,y:(componentViewport?.y||0)+0+1967.8+150+239+0+335.6+0+45.6+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1oddkip-container\",nodeId:\"ga7hsMUgx\",scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{variant:\"uezdqN8GU\"},LNYyHxZQI:{variant:\"hQq5qV_gm\"}},children:/*#__PURE__*/_jsx(CompareItems,{FRqZTfh9n:true,height:\"100%\",HL1ROBLNa:\"0px 0px 0px 20px\",Hpvclh9CR:true,id:\"ga7hsMUgx\",IeBHLqE7v:\"Local Vault\",IXX3gTcNY:\"\",layoutId:\"ga7hsMUgx\",pdNT_pvgD:true,SOTD9PKE2:false,style:{width:\"100%\"},uDYaKy4JE:\"\",uEX3RrV09:false,variant:\"BtQ9yd78f\",vgvJWZQpf:\"\",width:\"100%\",YiRorK0jT:true,Zkbpv3NVJ:false})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px, 1200px)`,y:(componentViewport?.y||0)+0+4513.8+100+219+0+340+0+50+0+60},Gqtd3rM7G:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+2944.8+150+219+0+325.6+0+35.6+0+60},LNYyHxZQI:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+1754.5+100+249+0+350+0+60+0+60}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px, 1200px) - 300px)`,y:(componentViewport?.y||0)+0+1967.8+150+239+0+335.6+0+45.6+0+60,children:/*#__PURE__*/_jsx(Container,{className:\"framer-112s3os-container\",nodeId:\"j_HK8rq7u\",scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{variant:\"uezdqN8GU\"},LNYyHxZQI:{variant:\"hQq5qV_gm\"}},children:/*#__PURE__*/_jsx(CompareItems,{FRqZTfh9n:false,height:\"100%\",HL1ROBLNa:\"0px 0px 0px 20px\",Hpvclh9CR:true,id:\"j_HK8rq7u\",IeBHLqE7v:\"Personal Vault\",IXX3gTcNY:\"\",layoutId:\"j_HK8rq7u\",pdNT_pvgD:true,SOTD9PKE2:false,style:{width:\"100%\"},uDYaKy4JE:\"\",uEX3RrV09:false,variant:\"wyyXnfK5J\",vgvJWZQpf:\"\",width:\"100%\",YiRorK0jT:true,Zkbpv3NVJ:true})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px, 1200px)`,y:(componentViewport?.y||0)+0+4513.8+100+219+0+340+0+50+0+120},Gqtd3rM7G:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+2944.8+150+219+0+325.6+0+35.6+0+120},LNYyHxZQI:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+1754.5+100+249+0+350+0+60+0+120}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px, 1200px) - 300px)`,y:(componentViewport?.y||0)+0+1967.8+150+239+0+335.6+0+45.6+0+120,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1j8olxf-container\",nodeId:\"XADdcy8vZ\",scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{variant:\"uezdqN8GU\"},LNYyHxZQI:{variant:\"hQq5qV_gm\"}},children:/*#__PURE__*/_jsx(CompareItems,{FRqZTfh9n:false,height:\"100%\",HL1ROBLNa:\"0px 0px 0px 20px\",Hpvclh9CR:false,id:\"XADdcy8vZ\",IeBHLqE7v:\"Team Vault\",IXX3gTcNY:\"\",layoutId:\"XADdcy8vZ\",pdNT_pvgD:true,SOTD9PKE2:false,style:{width:\"100%\"},uDYaKy4JE:\"\",uEX3RrV09:true,variant:\"BtQ9yd78f\",vgvJWZQpf:\"\",width:\"100%\",YiRorK0jT:true,Zkbpv3NVJ:true})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px, 1200px)`,y:(componentViewport?.y||0)+0+4513.8+100+219+0+340+0+50+0+180},Gqtd3rM7G:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+2944.8+150+219+0+325.6+0+35.6+0+180},LNYyHxZQI:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+1754.5+100+249+0+350+0+60+0+180}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px, 1200px) - 300px)`,y:(componentViewport?.y||0)+0+1967.8+150+239+0+335.6+0+45.6+0+180,children:/*#__PURE__*/_jsx(Container,{className:\"framer-y6aysn-container\",nodeId:\"ymx34x2GE\",scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{variant:\"uezdqN8GU\"},LNYyHxZQI:{variant:\"hQq5qV_gm\"}},children:/*#__PURE__*/_jsx(CompareItems,{FRqZTfh9n:false,height:\"100%\",HL1ROBLNa:\"0px 0px 0px 20px\",Hpvclh9CR:false,id:\"ymx34x2GE\",IeBHLqE7v:\"Shared Vaults\",IXX3gTcNY:\"\",layoutId:\"ymx34x2GE\",pdNT_pvgD:true,SOTD9PKE2:true,style:{width:\"100%\"},uDYaKy4JE:\"\",uEX3RrV09:true,variant:\"wyyXnfK5J\",vgvJWZQpf:\"\",width:\"100%\",YiRorK0jT:false,Zkbpv3NVJ:true})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hcgoqk\",\"data-framer-name\":\"Productivity tools\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-125gvx7\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NpcmN1bGFyWFggQm9sZA==\",\"--framer-font-family\":'\"CircularXX Bold\", \"CircularXX Bold Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-40aa793d-ac43-4b91-b3f0-5bb2c4c96af8, rgb(141, 145, 165))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Integrations\"})})}),fonts:[\"CUSTOM;CircularXX Bold\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1h1sdz0\",\"data-styles-preset\":\"wY_XBD17s\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-40aa793d-ac43-4b91-b3f0-5bb2c4c96af8, rgb(141, 145, 165))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Integrations\"})})}),className:\"framer-ubcmh0\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1g3mr5j\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px, 1200px)`,y:(componentViewport?.y||0)+0+4513.8+100+219+0+680+0+50+0+0},Gqtd3rM7G:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+2944.8+150+219+0+651.2+0+35.6+0+0},LNYyHxZQI:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+1754.5+100+249+0+700+0+60+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px, 1200px) - 300px)`,y:(componentViewport?.y||0)+0+1967.8+150+239+0+671.2+0+45.6+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-3lcrfr-container\",nodeId:\"tMkkNM_2H\",scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{variant:\"uezdqN8GU\"},LNYyHxZQI:{variant:\"hQq5qV_gm\"}},children:/*#__PURE__*/_jsx(CompareItems,{FRqZTfh9n:false,height:\"100%\",HL1ROBLNa:\"0px 0px 0px 20px\",Hpvclh9CR:true,id:\"tMkkNM_2H\",IeBHLqE7v:\"AWS\",IXX3gTcNY:\"\",layoutId:\"tMkkNM_2H\",pdNT_pvgD:true,SOTD9PKE2:false,style:{width:\"100%\"},uDYaKy4JE:\"\",uEX3RrV09:false,variant:\"BtQ9yd78f\",vgvJWZQpf:\"\",width:\"100%\",YiRorK0jT:true,Zkbpv3NVJ:true})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px, 1200px)`,y:(componentViewport?.y||0)+0+4513.8+100+219+0+680+0+50+0+60},Gqtd3rM7G:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+2944.8+150+219+0+651.2+0+35.6+0+60},LNYyHxZQI:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+1754.5+100+249+0+700+0+60+0+60}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px, 1200px) - 300px)`,y:(componentViewport?.y||0)+0+1967.8+150+239+0+671.2+0+45.6+0+60,children:/*#__PURE__*/_jsx(Container,{className:\"framer-145omkh-container\",nodeId:\"n4EwfCLjt\",scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{variant:\"uezdqN8GU\"},LNYyHxZQI:{variant:\"hQq5qV_gm\"}},children:/*#__PURE__*/_jsx(CompareItems,{FRqZTfh9n:false,height:\"100%\",HL1ROBLNa:\"0px 0px 0px 20px\",Hpvclh9CR:true,id:\"n4EwfCLjt\",IeBHLqE7v:\"DigitalOcean\",IXX3gTcNY:\"\",layoutId:\"n4EwfCLjt\",pdNT_pvgD:true,SOTD9PKE2:false,style:{width:\"100%\"},uDYaKy4JE:\"\",uEX3RrV09:false,variant:\"wyyXnfK5J\",vgvJWZQpf:\"\",width:\"100%\",YiRorK0jT:true,Zkbpv3NVJ:true})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px, 1200px)`,y:(componentViewport?.y||0)+0+4513.8+100+219+0+680+0+50+0+120},Gqtd3rM7G:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+2944.8+150+219+0+651.2+0+35.6+0+120},LNYyHxZQI:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+1754.5+100+249+0+700+0+60+0+120}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px, 1200px) - 300px)`,y:(componentViewport?.y||0)+0+1967.8+150+239+0+671.2+0+45.6+0+120,children:/*#__PURE__*/_jsx(Container,{className:\"framer-nxsxte-container\",nodeId:\"ia_4BsUeI\",scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{variant:\"uezdqN8GU\"},LNYyHxZQI:{variant:\"hQq5qV_gm\"}},children:/*#__PURE__*/_jsx(CompareItems,{FRqZTfh9n:false,height:\"100%\",HL1ROBLNa:\"0px 0px 0px 20px\",Hpvclh9CR:true,id:\"ia_4BsUeI\",IeBHLqE7v:\"Azure\",IXX3gTcNY:\"\",layoutId:\"ia_4BsUeI\",pdNT_pvgD:true,SOTD9PKE2:false,style:{width:\"100%\"},uDYaKy4JE:\"\",uEX3RrV09:false,variant:\"BtQ9yd78f\",vgvJWZQpf:\"\",width:\"100%\",YiRorK0jT:true,Zkbpv3NVJ:true})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px, 1200px)`,y:(componentViewport?.y||0)+0+4513.8+100+219+0+680+0+50+0+180},Gqtd3rM7G:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+2944.8+150+219+0+651.2+0+35.6+0+180},LNYyHxZQI:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+1754.5+100+249+0+700+0+60+0+180}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px, 1200px) - 300px)`,y:(componentViewport?.y||0)+0+1967.8+150+239+0+671.2+0+45.6+0+180,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13sgylc-container\",nodeId:\"plcU2edUI\",scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{variant:\"uezdqN8GU\"},LNYyHxZQI:{variant:\"hQq5qV_gm\"}},children:/*#__PURE__*/_jsx(CompareItems,{FRqZTfh9n:false,height:\"100%\",HL1ROBLNa:\"0px 0px 0px 20px\",Hpvclh9CR:false,id:\"plcU2edUI\",IeBHLqE7v:\"API Bridge\",IXX3gTcNY:\"\",layoutId:\"plcU2edUI\",pdNT_pvgD:true,SOTD9PKE2:false,style:{width:\"100%\"},uDYaKy4JE:\"\",uEX3RrV09:true,variant:\"BtQ9yd78f\",vgvJWZQpf:\"\",width:\"100%\",YiRorK0jT:true,Zkbpv3NVJ:true})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px, 1200px)`,y:(componentViewport?.y||0)+0+4513.8+100+219+0+680+0+50+0+240},Gqtd3rM7G:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+2944.8+150+219+0+651.2+0+35.6+0+240},LNYyHxZQI:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+1754.5+100+249+0+700+0+60+0+240}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px, 1200px) - 300px)`,y:(componentViewport?.y||0)+0+1967.8+150+239+0+671.2+0+45.6+0+240,children:/*#__PURE__*/_jsx(Container,{className:\"framer-iuou46-container\",nodeId:\"XvQU209xq\",scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{variant:\"uezdqN8GU\"},LNYyHxZQI:{variant:\"hQq5qV_gm\"}},children:/*#__PURE__*/_jsx(CompareItems,{FRqZTfh9n:false,height:\"100%\",HL1ROBLNa:\"0px 0px 0px 20px\",Hpvclh9CR:false,id:\"XvQU209xq\",IeBHLqE7v:\"Ansible\",IXX3gTcNY:\"\",layoutId:\"XvQU209xq\",pdNT_pvgD:true,SOTD9PKE2:false,style:{width:\"100%\"},uDYaKy4JE:\"\",uEX3RrV09:true,variant:\"BtQ9yd78f\",vgvJWZQpf:\"\",width:\"100%\",YiRorK0jT:true,Zkbpv3NVJ:true})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px, 1200px)`,y:(componentViewport?.y||0)+0+4513.8+100+219+0+680+0+50+0+300},Gqtd3rM7G:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+2944.8+150+219+0+651.2+0+35.6+0+300},LNYyHxZQI:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+1754.5+100+249+0+700+0+60+0+300}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px, 1200px) - 300px)`,y:(componentViewport?.y||0)+0+1967.8+150+239+0+671.2+0+45.6+0+300,children:/*#__PURE__*/_jsx(Container,{className:\"framer-v0zjf8-container\",nodeId:\"UvXOwRASS\",scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{variant:\"uezdqN8GU\"},LNYyHxZQI:{variant:\"hQq5qV_gm\"}},children:/*#__PURE__*/_jsx(CompareItems,{FRqZTfh9n:false,height:\"100%\",HL1ROBLNa:\"0px 0px 0px 20px\",Hpvclh9CR:false,id:\"UvXOwRASS\",IeBHLqE7v:\"Vanta\",IXX3gTcNY:\"\",layoutId:\"UvXOwRASS\",pdNT_pvgD:true,SOTD9PKE2:true,style:{width:\"100%\"},uDYaKy4JE:\"\",uEX3RrV09:true,variant:\"BtQ9yd78f\",vgvJWZQpf:\"\",width:\"100%\",YiRorK0jT:false,Zkbpv3NVJ:true})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t4uas9\",\"data-framer-name\":\"Productivity tools\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wihctd\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NpcmN1bGFyWFggQm9sZA==\",\"--framer-font-family\":'\"CircularXX Bold\", \"CircularXX Bold Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-40aa793d-ac43-4b91-b3f0-5bb2c4c96af8, rgb(141, 145, 165))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Security\"})})}),fonts:[\"CUSTOM;CircularXX Bold\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1h1sdz0\",\"data-styles-preset\":\"wY_XBD17s\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-40aa793d-ac43-4b91-b3f0-5bb2c4c96af8, rgb(141, 145, 165))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Security\"})})}),className:\"framer-l8yei2\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vrvsvx\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px, 1200px)`,y:(componentViewport?.y||0)+0+4513.8+100+219+0+1140+0+50+0+0},Gqtd3rM7G:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+2944.8+150+219+0+1096.8+0+35.6+0+0},LNYyHxZQI:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+1754.5+100+249+0+1170+0+60+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px, 1200px) - 300px)`,y:(componentViewport?.y||0)+0+1967.8+150+239+0+1126.8+0+45.6+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-j7jydp-container\",nodeId:\"QAFo8xiPb\",scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{variant:\"uezdqN8GU\"},LNYyHxZQI:{variant:\"hQq5qV_gm\"}},children:/*#__PURE__*/_jsx(CompareItems,{FRqZTfh9n:true,height:\"100%\",HL1ROBLNa:\"0px 0px 0px 20px\",Hpvclh9CR:true,id:\"QAFo8xiPb\",IeBHLqE7v:\"Session Logs\",IXX3gTcNY:\"\",layoutId:\"QAFo8xiPb\",pdNT_pvgD:true,SOTD9PKE2:false,style:{width:\"100%\"},uDYaKy4JE:\"\",uEX3RrV09:false,variant:\"BtQ9yd78f\",vgvJWZQpf:\"\",width:\"100%\",YiRorK0jT:true,Zkbpv3NVJ:false})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px, 1200px)`,y:(componentViewport?.y||0)+0+4513.8+100+219+0+1140+0+50+0+60},Gqtd3rM7G:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+2944.8+150+219+0+1096.8+0+35.6+0+60},LNYyHxZQI:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+1754.5+100+249+0+1170+0+60+0+60}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px, 1200px) - 300px)`,y:(componentViewport?.y||0)+0+1967.8+150+239+0+1126.8+0+45.6+0+60,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kugv03-container\",nodeId:\"HDQ1n7XA2\",scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{variant:\"uezdqN8GU\"},LNYyHxZQI:{variant:\"hQq5qV_gm\"}},children:/*#__PURE__*/_jsx(CompareItems,{FRqZTfh9n:true,height:\"100%\",HL1ROBLNa:\"0px 0px 0px 20px\",Hpvclh9CR:true,id:\"HDQ1n7XA2\",IeBHLqE7v:\"PIN-lock\",IXX3gTcNY:\"\",layoutId:\"HDQ1n7XA2\",pdNT_pvgD:true,SOTD9PKE2:false,style:{width:\"100%\"},uDYaKy4JE:\"\",uEX3RrV09:false,variant:\"wyyXnfK5J\",vgvJWZQpf:\"\",width:\"100%\",YiRorK0jT:true,Zkbpv3NVJ:false})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px, 1200px)`,y:(componentViewport?.y||0)+0+4513.8+100+219+0+1140+0+50+0+120},Gqtd3rM7G:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+2944.8+150+219+0+1096.8+0+35.6+0+120},LNYyHxZQI:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+1754.5+100+249+0+1170+0+60+0+120}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px, 1200px) - 300px)`,y:(componentViewport?.y||0)+0+1967.8+150+239+0+1126.8+0+45.6+0+120,children:/*#__PURE__*/_jsx(Container,{className:\"framer-15qu10a-container\",nodeId:\"KyePMhJlQ\",scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{variant:\"uezdqN8GU\"},LNYyHxZQI:{variant:\"hQq5qV_gm\"}},children:/*#__PURE__*/_jsx(CompareItems,{FRqZTfh9n:true,height:\"100%\",HL1ROBLNa:\"0px 0px 0px 20px\",Hpvclh9CR:true,id:\"KyePMhJlQ\",IeBHLqE7v:\"Biometric Keys\",IXX3gTcNY:\"\",layoutId:\"KyePMhJlQ\",pdNT_pvgD:true,SOTD9PKE2:false,style:{width:\"100%\"},uDYaKy4JE:\"\",uEX3RrV09:false,variant:\"BtQ9yd78f\",vgvJWZQpf:\"\",width:\"100%\",YiRorK0jT:true,Zkbpv3NVJ:false})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px, 1200px)`,y:(componentViewport?.y||0)+0+4513.8+100+219+0+1140+0+50+0+180},Gqtd3rM7G:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+2944.8+150+219+0+1096.8+0+35.6+0+180},LNYyHxZQI:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+1754.5+100+249+0+1170+0+60+0+180}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px, 1200px) - 300px)`,y:(componentViewport?.y||0)+0+1967.8+150+239+0+1126.8+0+45.6+0+180,children:/*#__PURE__*/_jsx(Container,{className:\"framer-185rrrp-container\",nodeId:\"n0TVJJIdv\",scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{variant:\"uezdqN8GU\"},LNYyHxZQI:{variant:\"hQq5qV_gm\"}},children:/*#__PURE__*/_jsx(CompareItems,{FRqZTfh9n:true,height:\"100%\",HL1ROBLNa:\"0px 0px 0px 20px\",Hpvclh9CR:true,id:\"n0TVJJIdv\",IeBHLqE7v:\"TouchID / FaceID\",IXX3gTcNY:\"\",layoutId:\"n0TVJJIdv\",pdNT_pvgD:true,SOTD9PKE2:false,style:{width:\"100%\"},uDYaKy4JE:\"\",uEX3RrV09:false,variant:\"wyyXnfK5J\",vgvJWZQpf:\"\",width:\"100%\",YiRorK0jT:true,Zkbpv3NVJ:false})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px, 1200px)`,y:(componentViewport?.y||0)+0+4513.8+100+219+0+1140+0+50+0+240},Gqtd3rM7G:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+2944.8+150+219+0+1096.8+0+35.6+0+240},LNYyHxZQI:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+1754.5+100+249+0+1170+0+60+0+240}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px, 1200px) - 300px)`,y:(componentViewport?.y||0)+0+1967.8+150+239+0+1126.8+0+45.6+0+240,children:/*#__PURE__*/_jsx(Container,{className:\"framer-c69wgn-container\",nodeId:\"tvKJNpm57\",scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{variant:\"uezdqN8GU\"},LNYyHxZQI:{variant:\"hQq5qV_gm\"}},children:/*#__PURE__*/_jsx(CompareItems,{FRqZTfh9n:true,height:\"100%\",HL1ROBLNa:\"0px 0px 0px 20px\",Hpvclh9CR:true,id:\"tvKJNpm57\",IeBHLqE7v:\"FIDO2\",IXX3gTcNY:\"\",layoutId:\"tvKJNpm57\",pdNT_pvgD:true,SOTD9PKE2:false,style:{width:\"100%\"},uDYaKy4JE:\"\",uEX3RrV09:false,variant:\"wyyXnfK5J\",vgvJWZQpf:\"\",width:\"100%\",YiRorK0jT:true,Zkbpv3NVJ:false})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px, 1200px)`,y:(componentViewport?.y||0)+0+4513.8+100+219+0+1140+0+50+0+300},Gqtd3rM7G:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+2944.8+150+219+0+1096.8+0+35.6+0+300},LNYyHxZQI:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+1754.5+100+249+0+1170+0+60+0+300}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px, 1200px) - 300px)`,y:(componentViewport?.y||0)+0+1967.8+150+239+0+1126.8+0+45.6+0+300,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13xctki-container\",nodeId:\"DAujXRf_C\",scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{variant:\"uezdqN8GU\"},LNYyHxZQI:{variant:\"hQq5qV_gm\"}},children:/*#__PURE__*/_jsx(CompareItems,{FRqZTfh9n:false,height:\"100%\",HL1ROBLNa:\"0px 0px 0px 20px\",Hpvclh9CR:true,id:\"DAujXRf_C\",IeBHLqE7v:\"SSH Certificates\",IXX3gTcNY:\"\",layoutId:\"DAujXRf_C\",pdNT_pvgD:true,SOTD9PKE2:false,style:{width:\"100%\"},uDYaKy4JE:\"\",uEX3RrV09:false,variant:\"BtQ9yd78f\",vgvJWZQpf:\"\",width:\"100%\",YiRorK0jT:true,Zkbpv3NVJ:true})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px, 1200px)`,y:(componentViewport?.y||0)+0+4513.8+100+219+0+1140+0+50+0+360},Gqtd3rM7G:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+2944.8+150+219+0+1096.8+0+35.6+0+360},LNYyHxZQI:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+1754.5+100+249+0+1170+0+60+0+360}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px, 1200px) - 300px)`,y:(componentViewport?.y||0)+0+1967.8+150+239+0+1126.8+0+45.6+0+360,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1exee2n-container\",nodeId:\"cLvBTgf8J\",scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{variant:\"uezdqN8GU\"},LNYyHxZQI:{variant:\"hQq5qV_gm\"}},children:/*#__PURE__*/_jsx(CompareItems,{FRqZTfh9n:false,height:\"100%\",HL1ROBLNa:\"0px 0px 0px 20px\",Hpvclh9CR:false,id:\"cLvBTgf8J\",IeBHLqE7v:\"SSO\",IXX3gTcNY:\"\",layoutId:\"cLvBTgf8J\",pdNT_pvgD:true,SOTD9PKE2:true,style:{width:\"100%\"},uDYaKy4JE:\"\",uEX3RrV09:true,variant:\"BtQ9yd78f\",vgvJWZQpf:\"\",width:\"100%\",YiRorK0jT:false,Zkbpv3NVJ:true})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ditlot\",\"data-framer-name\":\"Productivity tools\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nbpu5u\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NpcmN1bGFyWFggQm9sZA==\",\"--framer-font-family\":'\"CircularXX Bold\", \"CircularXX Bold Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-40aa793d-ac43-4b91-b3f0-5bb2c4c96af8, rgb(141, 145, 165))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Automation\"})})}),fonts:[\"CUSTOM;CircularXX Bold\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1h1sdz0\",\"data-styles-preset\":\"wY_XBD17s\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-40aa793d-ac43-4b91-b3f0-5bb2c4c96af8, rgb(141, 145, 165))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Automation\"})})}),className:\"framer-1uibh8o\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oi9n0j\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px, 1200px)`,y:(componentViewport?.y||0)+0+4513.8+100+219+0+1660+0+50+0+0},Gqtd3rM7G:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+2944.8+150+219+0+1602.4+0+35.6+0+0},LNYyHxZQI:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+1754.5+100+249+0+1700+0+60+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px, 1200px) - 300px)`,y:(componentViewport?.y||0)+0+1967.8+150+239+0+1642.4+0+45.6+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-kw1adn-container\",nodeId:\"Aq2B71lQH\",scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{variant:\"uezdqN8GU\"},LNYyHxZQI:{variant:\"hQq5qV_gm\"}},children:/*#__PURE__*/_jsx(CompareItems,{FRqZTfh9n:true,height:\"100%\",HL1ROBLNa:\"0px 0px 0px 20px\",Hpvclh9CR:true,id:\"Aq2B71lQH\",IeBHLqE7v:\"Snippets\",IXX3gTcNY:\"\",layoutId:\"Aq2B71lQH\",pdNT_pvgD:true,SOTD9PKE2:false,style:{width:\"100%\"},uDYaKy4JE:\"\",uEX3RrV09:false,variant:\"BtQ9yd78f\",vgvJWZQpf:\"\",width:\"100%\",YiRorK0jT:true,Zkbpv3NVJ:false})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px, 1200px)`,y:(componentViewport?.y||0)+0+4513.8+100+219+0+1660+0+50+0+60},Gqtd3rM7G:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+2944.8+150+219+0+1602.4+0+35.6+0+60},LNYyHxZQI:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+1754.5+100+249+0+1700+0+60+0+60}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px, 1200px) - 300px)`,y:(componentViewport?.y||0)+0+1967.8+150+239+0+1642.4+0+45.6+0+60,children:/*#__PURE__*/_jsx(Container,{className:\"framer-f7vx6u-container\",nodeId:\"ranUrxbkE\",scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{variant:\"uezdqN8GU\"},LNYyHxZQI:{variant:\"hQq5qV_gm\"}},children:/*#__PURE__*/_jsx(CompareItems,{FRqZTfh9n:true,height:\"100%\",HL1ROBLNa:\"0px 0px 0px 20px\",Hpvclh9CR:true,id:\"ranUrxbkE\",IeBHLqE7v:\"Shell Command History\",IXX3gTcNY:\"\",layoutId:\"ranUrxbkE\",pdNT_pvgD:true,SOTD9PKE2:false,style:{width:\"100%\"},uDYaKy4JE:\"\",uEX3RrV09:false,variant:\"wyyXnfK5J\",vgvJWZQpf:\"\",width:\"100%\",YiRorK0jT:true,Zkbpv3NVJ:false})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px, 1200px)`,y:(componentViewport?.y||0)+0+4513.8+100+219+0+1660+0+50+0+120},Gqtd3rM7G:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+2944.8+150+219+0+1602.4+0+35.6+0+120},LNYyHxZQI:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+1754.5+100+249+0+1700+0+60+0+120}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px, 1200px) - 300px)`,y:(componentViewport?.y||0)+0+1967.8+150+239+0+1642.4+0+45.6+0+120,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mmxrrg-container\",nodeId:\"HQ1GPnhD5\",scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{variant:\"uezdqN8GU\"},LNYyHxZQI:{variant:\"hQq5qV_gm\"}},children:/*#__PURE__*/_jsx(CompareItems,{FRqZTfh9n:true,height:\"100%\",HL1ROBLNa:\"0px 0px 0px 20px\",Hpvclh9CR:true,id:\"HQ1GPnhD5\",IeBHLqE7v:\"Autocomplete\",IXX3gTcNY:\"\",layoutId:\"HQ1GPnhD5\",pdNT_pvgD:true,SOTD9PKE2:false,style:{width:\"100%\"},uDYaKy4JE:\"\",uEX3RrV09:false,variant:\"BtQ9yd78f\",vgvJWZQpf:\"\",width:\"100%\",YiRorK0jT:true,Zkbpv3NVJ:false})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px, 1200px)`,y:(componentViewport?.y||0)+0+4513.8+100+219+0+1660+0+50+0+180},Gqtd3rM7G:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+2944.8+150+219+0+1602.4+0+35.6+0+180},LNYyHxZQI:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+1754.5+100+249+0+1700+0+60+0+180}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px, 1200px) - 300px)`,y:(componentViewport?.y||0)+0+1967.8+150+239+0+1642.4+0+45.6+0+180,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1s6ymu4-container\",nodeId:\"NkT_jmZ6h\",scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{variant:\"uezdqN8GU\"},LNYyHxZQI:{variant:\"hQq5qV_gm\"}},children:/*#__PURE__*/_jsx(CompareItems,{FRqZTfh9n:false,height:\"100%\",HL1ROBLNa:\"0px 0px 0px 20px\",Hpvclh9CR:true,id:\"NkT_jmZ6h\",IeBHLqE7v:\"Startup Snippets\",IXX3gTcNY:\"\",layoutId:\"NkT_jmZ6h\",pdNT_pvgD:true,SOTD9PKE2:false,style:{width:\"100%\"},uDYaKy4JE:\"\",uEX3RrV09:false,variant:\"wyyXnfK5J\",vgvJWZQpf:\"\",width:\"100%\",YiRorK0jT:true,Zkbpv3NVJ:true})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px, 1200px)`,y:(componentViewport?.y||0)+0+4513.8+100+219+0+1660+0+50+0+240},Gqtd3rM7G:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+2944.8+150+219+0+1602.4+0+35.6+0+240},LNYyHxZQI:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+1754.5+100+249+0+1700+0+60+0+240}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px, 1200px) - 300px)`,y:(componentViewport?.y||0)+0+1967.8+150+239+0+1642.4+0+45.6+0+240,children:/*#__PURE__*/_jsx(Container,{className:\"framer-wk8g1t-container\",nodeId:\"Ys5s7DDRk\",scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{variant:\"uezdqN8GU\"},LNYyHxZQI:{variant:\"hQq5qV_gm\"}},children:/*#__PURE__*/_jsx(CompareItems,{FRqZTfh9n:false,height:\"100%\",HL1ROBLNa:\"0px 0px 0px 20px\",Hpvclh9CR:true,id:\"Ys5s7DDRk\",IeBHLqE7v:\"Snippet Multi-Execution\",IXX3gTcNY:\"\",layoutId:\"Ys5s7DDRk\",pdNT_pvgD:true,SOTD9PKE2:false,style:{width:\"100%\"},uDYaKy4JE:\"\",uEX3RrV09:false,variant:\"BtQ9yd78f\",vgvJWZQpf:\"\",width:\"100%\",YiRorK0jT:true,Zkbpv3NVJ:true})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px, 1200px)`,y:(componentViewport?.y||0)+0+4513.8+100+219+0+1660+0+50+0+300},Gqtd3rM7G:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+2944.8+150+219+0+1602.4+0+35.6+0+300},LNYyHxZQI:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+1754.5+100+249+0+1700+0+60+0+300}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px, 1200px) - 300px)`,y:(componentViewport?.y||0)+0+1967.8+150+239+0+1642.4+0+45.6+0+300,children:/*#__PURE__*/_jsx(Container,{className:\"framer-vdi03c-container\",nodeId:\"jGlA8w7nq\",scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{variant:\"uezdqN8GU\"},LNYyHxZQI:{variant:\"hQq5qV_gm\"}},children:/*#__PURE__*/_jsx(CompareItems,{FRqZTfh9n:false,height:\"100%\",HL1ROBLNa:\"0px 0px 0px 20px\",Hpvclh9CR:true,id:\"jGlA8w7nq\",IeBHLqE7v:\"Environment Variables\",IXX3gTcNY:\"\",layoutId:\"jGlA8w7nq\",pdNT_pvgD:true,SOTD9PKE2:false,style:{width:\"100%\"},uDYaKy4JE:\"\",uEX3RrV09:false,variant:\"wyyXnfK5J\",vgvJWZQpf:\"\",width:\"100%\",YiRorK0jT:true,Zkbpv3NVJ:true})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nta5d0\",\"data-framer-name\":\"Productivity tools\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xzwdnm\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NpcmN1bGFyWFggQm9sZA==\",\"--framer-font-family\":'\"CircularXX Bold\", \"CircularXX Bold Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-40aa793d-ac43-4b91-b3f0-5bb2c4c96af8, rgb(141, 145, 165))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Tunneling\"})})}),fonts:[\"CUSTOM;CircularXX Bold\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1h1sdz0\",\"data-styles-preset\":\"wY_XBD17s\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-40aa793d-ac43-4b91-b3f0-5bb2c4c96af8, rgb(141, 145, 165))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Tunneling\"})})}),className:\"framer-1fjss3\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-slzaai\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px, 1200px)`,y:(componentViewport?.y||0)+0+4513.8+100+219+0+2120+0+50+0+0},Gqtd3rM7G:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+2944.8+150+219+0+2048+0+35.6+0+0},LNYyHxZQI:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+1754.5+100+249+0+2170+0+60+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px, 1200px) - 300px)`,y:(componentViewport?.y||0)+0+1967.8+150+239+0+2098+0+45.6+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-tchdfr-container\",nodeId:\"CIDU5ylLt\",scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{variant:\"uezdqN8GU\"},LNYyHxZQI:{variant:\"hQq5qV_gm\"}},children:/*#__PURE__*/_jsx(CompareItems,{FRqZTfh9n:true,height:\"100%\",HL1ROBLNa:\"0px 0px 0px 20px\",Hpvclh9CR:true,id:\"CIDU5ylLt\",IeBHLqE7v:\"Port Forwarding\",IXX3gTcNY:\"\",layoutId:\"CIDU5ylLt\",pdNT_pvgD:true,SOTD9PKE2:false,style:{width:\"100%\"},uDYaKy4JE:\"\",uEX3RrV09:false,variant:\"BtQ9yd78f\",vgvJWZQpf:\"\",width:\"100%\",YiRorK0jT:true,Zkbpv3NVJ:false})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px, 1200px)`,y:(componentViewport?.y||0)+0+4513.8+100+219+0+2120+0+50+0+60},Gqtd3rM7G:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+2944.8+150+219+0+2048+0+35.6+0+60},LNYyHxZQI:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+1754.5+100+249+0+2170+0+60+0+60}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px, 1200px) - 300px)`,y:(componentViewport?.y||0)+0+1967.8+150+239+0+2098+0+45.6+0+60,children:/*#__PURE__*/_jsx(Container,{className:\"framer-yw1dtx-container\",nodeId:\"QKR9xS80D\",scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{variant:\"uezdqN8GU\"},LNYyHxZQI:{variant:\"hQq5qV_gm\"}},children:/*#__PURE__*/_jsx(CompareItems,{FRqZTfh9n:false,height:\"100%\",HL1ROBLNa:\"0px 0px 0px 20px\",Hpvclh9CR:true,id:\"QKR9xS80D\",IeBHLqE7v:\"SOCKS Proxy\",IXX3gTcNY:\"\",layoutId:\"QKR9xS80D\",pdNT_pvgD:true,SOTD9PKE2:false,style:{width:\"100%\"},uDYaKy4JE:\"\",uEX3RrV09:false,variant:\"wyyXnfK5J\",vgvJWZQpf:\"\",width:\"100%\",YiRorK0jT:true,Zkbpv3NVJ:true})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px, 1200px)`,y:(componentViewport?.y||0)+0+4513.8+100+219+0+2120+0+50+0+120},Gqtd3rM7G:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+2944.8+150+219+0+2048+0+35.6+0+120},LNYyHxZQI:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+1754.5+100+249+0+2170+0+60+0+120}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px, 1200px) - 300px)`,y:(componentViewport?.y||0)+0+1967.8+150+239+0+2098+0+45.6+0+120,children:/*#__PURE__*/_jsx(Container,{className:\"framer-zgob4k-container\",nodeId:\"hA140cUYP\",scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{variant:\"uezdqN8GU\"},LNYyHxZQI:{variant:\"hQq5qV_gm\"}},children:/*#__PURE__*/_jsx(CompareItems,{FRqZTfh9n:false,height:\"100%\",HL1ROBLNa:\"0px 0px 0px 20px\",Hpvclh9CR:true,id:\"hA140cUYP\",IeBHLqE7v:\"HTTP Proxy\",IXX3gTcNY:\"\",layoutId:\"hA140cUYP\",pdNT_pvgD:true,SOTD9PKE2:false,style:{width:\"100%\"},uDYaKy4JE:\"\",uEX3RrV09:false,variant:\"BtQ9yd78f\",vgvJWZQpf:\"\",width:\"100%\",YiRorK0jT:true,Zkbpv3NVJ:true})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px, 1200px)`,y:(componentViewport?.y||0)+0+4513.8+100+219+0+2120+0+50+0+180},Gqtd3rM7G:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+2944.8+150+219+0+2048+0+35.6+0+180},LNYyHxZQI:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+1754.5+100+249+0+2170+0+60+0+180}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px, 1200px) - 300px)`,y:(componentViewport?.y||0)+0+1967.8+150+239+0+2098+0+45.6+0+180,children:/*#__PURE__*/_jsx(Container,{className:\"framer-pf57ua-container\",nodeId:\"BalpxQe_V\",scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{variant:\"uezdqN8GU\"},LNYyHxZQI:{variant:\"hQq5qV_gm\"}},children:/*#__PURE__*/_jsx(CompareItems,{FRqZTfh9n:false,height:\"100%\",HL1ROBLNa:\"0px 0px 0px 20px\",Hpvclh9CR:true,id:\"BalpxQe_V\",IeBHLqE7v:\"Jump Host / Host Chain\",IXX3gTcNY:\"\",layoutId:\"BalpxQe_V\",pdNT_pvgD:true,SOTD9PKE2:false,style:{width:\"100%\"},uDYaKy4JE:\"\",uEX3RrV09:false,variant:\"wyyXnfK5J\",vgvJWZQpf:\"\",width:\"100%\",YiRorK0jT:true,Zkbpv3NVJ:true})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px, 1200px)`,y:(componentViewport?.y||0)+0+4513.8+100+219+0+2120+0+50+0+240},Gqtd3rM7G:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+2944.8+150+219+0+2048+0+35.6+0+240},LNYyHxZQI:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+1754.5+100+249+0+2170+0+60+0+240}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px, 1200px) - 300px)`,y:(componentViewport?.y||0)+0+1967.8+150+239+0+2098+0+45.6+0+240,children:/*#__PURE__*/_jsx(Container,{className:\"framer-lzfupq-container\",nodeId:\"r6RModnjp\",scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{variant:\"uezdqN8GU\"},LNYyHxZQI:{variant:\"hQq5qV_gm\"}},children:/*#__PURE__*/_jsx(CompareItems,{FRqZTfh9n:false,height:\"100%\",HL1ROBLNa:\"0px 0px 0px 20px\",Hpvclh9CR:true,id:\"r6RModnjp\",IeBHLqE7v:\"Agent Forwarding\",IXX3gTcNY:\"\",layoutId:\"r6RModnjp\",pdNT_pvgD:true,SOTD9PKE2:false,style:{width:\"100%\"},uDYaKy4JE:\"\",uEX3RrV09:false,variant:\"BtQ9yd78f\",vgvJWZQpf:\"\",width:\"100%\",YiRorK0jT:true,Zkbpv3NVJ:true})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12wp4bi\",\"data-framer-name\":\"Productivity tools\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-14c2cya\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NpcmN1bGFyWFggQm9sZA==\",\"--framer-font-family\":'\"CircularXX Bold\", \"CircularXX Bold Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-40aa793d-ac43-4b91-b3f0-5bb2c4c96af8, rgb(141, 145, 165))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Collaboration\"})})}),fonts:[\"CUSTOM;CircularXX Bold\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1h1sdz0\",\"data-styles-preset\":\"wY_XBD17s\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-40aa793d-ac43-4b91-b3f0-5bb2c4c96af8, rgb(141, 145, 165))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Collaboration\"})})}),className:\"framer-1lvitzg\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1iisf79\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px, 1200px)`,y:(componentViewport?.y||0)+0+4513.8+100+219+0+2520+0+50+0+0},Gqtd3rM7G:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+2944.8+150+219+0+2433.6+0+35.6+0+0},LNYyHxZQI:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+1754.5+100+249+0+2580+0+60+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px, 1200px) - 300px)`,y:(componentViewport?.y||0)+0+1967.8+150+239+0+2493.6+0+45.6+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-3s7fms-container\",nodeId:\"p2JCKWgsk\",scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{variant:\"uezdqN8GU\"},LNYyHxZQI:{variant:\"hQq5qV_gm\"}},children:/*#__PURE__*/_jsx(CompareItems,{FRqZTfh9n:true,height:\"100%\",HL1ROBLNa:\"0px 0px 0px 20px\",Hpvclh9CR:true,id:\"p2JCKWgsk\",IeBHLqE7v:\"Terminal Sharing via Link\",IXX3gTcNY:\"\",layoutId:\"p2JCKWgsk\",pdNT_pvgD:true,SOTD9PKE2:false,style:{width:\"100%\"},uDYaKy4JE:\"\",uEX3RrV09:false,variant:\"BtQ9yd78f\",vgvJWZQpf:\"\",width:\"100%\",YiRorK0jT:true,Zkbpv3NVJ:false})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px, 1200px)`,y:(componentViewport?.y||0)+0+4513.8+100+219+0+2520+0+50+0+60},Gqtd3rM7G:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+2944.8+150+219+0+2433.6+0+35.6+0+60},LNYyHxZQI:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+1754.5+100+249+0+2580+0+60+0+60}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px, 1200px) - 300px)`,y:(componentViewport?.y||0)+0+1967.8+150+239+0+2493.6+0+45.6+0+60,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xyhykd-container\",nodeId:\"TempFEdcL\",scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{variant:\"uezdqN8GU\"},LNYyHxZQI:{variant:\"hQq5qV_gm\"}},children:/*#__PURE__*/_jsx(CompareItems,{FRqZTfh9n:false,height:\"100%\",HL1ROBLNa:\"0px 0px 0px 20px\",Hpvclh9CR:false,id:\"TempFEdcL\",IeBHLqE7v:\"Real-time Collaboration\",IXX3gTcNY:\"\",layoutId:\"TempFEdcL\",pdNT_pvgD:true,SOTD9PKE2:false,style:{width:\"100%\"},uDYaKy4JE:\"\",uEX3RrV09:true,variant:\"wyyXnfK5J\",vgvJWZQpf:\"\",width:\"100%\",YiRorK0jT:true,Zkbpv3NVJ:true})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1l1ybdk\",\"data-framer-name\":\"Productivity tools\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rjrgcn\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NpcmN1bGFyWFggQm9sZA==\",\"--framer-font-family\":'\"CircularXX Bold\", \"CircularXX Bold Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-40aa793d-ac43-4b91-b3f0-5bb2c4c96af8, rgb(141, 145, 165))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Admin\"})})}),fonts:[\"CUSTOM;CircularXX Bold\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1h1sdz0\",\"data-styles-preset\":\"wY_XBD17s\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-40aa793d-ac43-4b91-b3f0-5bb2c4c96af8, rgb(141, 145, 165))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Admin\"})})}),className:\"framer-1nqilhj\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-57oe1z\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px, 1200px)`,y:(componentViewport?.y||0)+0+4513.8+100+219+0+2740+0+50+0+0},Gqtd3rM7G:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+2944.8+150+219+0+2639.2+0+35.6+0+0},LNYyHxZQI:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+1754.5+100+249+0+2810+0+60+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px, 1200px) - 300px)`,y:(componentViewport?.y||0)+0+1967.8+150+239+0+2709.2+0+45.6+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jjomtj-container\",nodeId:\"GLOXVafBU\",scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{variant:\"uezdqN8GU\"},LNYyHxZQI:{variant:\"hQq5qV_gm\"}},children:/*#__PURE__*/_jsx(CompareItems,{FRqZTfh9n:false,height:\"100%\",HL1ROBLNa:\"0px 0px 0px 20px\",Hpvclh9CR:false,id:\"GLOXVafBU\",IeBHLqE7v:\"Consolidated Billing\",IXX3gTcNY:\"\",layoutId:\"GLOXVafBU\",pdNT_pvgD:true,SOTD9PKE2:false,style:{width:\"100%\"},uDYaKy4JE:\"\",uEX3RrV09:true,variant:\"BtQ9yd78f\",vgvJWZQpf:\"\",width:\"100%\",YiRorK0jT:true,Zkbpv3NVJ:true})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px, 1200px)`,y:(componentViewport?.y||0)+0+4513.8+100+219+0+2740+0+50+0+60},Gqtd3rM7G:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+2944.8+150+219+0+2639.2+0+35.6+0+60},LNYyHxZQI:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+1754.5+100+249+0+2810+0+60+0+60}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px, 1200px) - 300px)`,y:(componentViewport?.y||0)+0+1967.8+150+239+0+2709.2+0+45.6+0+60,children:/*#__PURE__*/_jsx(Container,{className:\"framer-12zm0f4-container\",nodeId:\"AlHCSjSzo\",scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{variant:\"uezdqN8GU\"},LNYyHxZQI:{variant:\"hQq5qV_gm\"}},children:/*#__PURE__*/_jsx(CompareItems,{FRqZTfh9n:false,height:\"100%\",HL1ROBLNa:\"0px 0px 0px 20px\",Hpvclh9CR:false,id:\"AlHCSjSzo\",IeBHLqE7v:\"Purchase Order\",IXX3gTcNY:\"\",layoutId:\"AlHCSjSzo\",pdNT_pvgD:true,SOTD9PKE2:false,style:{width:\"100%\"},uDYaKy4JE:\"\",uEX3RrV09:true,variant:\"wyyXnfK5J\",vgvJWZQpf:\"\",width:\"100%\",YiRorK0jT:true,Zkbpv3NVJ:true})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px, 1200px)`,y:(componentViewport?.y||0)+0+4513.8+100+219+0+2740+0+50+0+120},Gqtd3rM7G:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+2944.8+150+219+0+2639.2+0+35.6+0+120},LNYyHxZQI:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+1754.5+100+249+0+2810+0+60+0+120}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px, 1200px) - 300px)`,y:(componentViewport?.y||0)+0+1967.8+150+239+0+2709.2+0+45.6+0+120,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pzyoi1-container\",nodeId:\"k0g48qS27\",scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{variant:\"uezdqN8GU\"},LNYyHxZQI:{variant:\"hQq5qV_gm\"}},children:/*#__PURE__*/_jsx(CompareItems,{FRqZTfh9n:false,height:\"100%\",HL1ROBLNa:\"0px 0px 0px 20px\",Hpvclh9CR:false,id:\"k0g48qS27\",IeBHLqE7v:\"Payment by Bank Transfer\",IXX3gTcNY:\"\",layoutId:\"k0g48qS27\",pdNT_pvgD:true,SOTD9PKE2:false,style:{width:\"100%\"},uDYaKy4JE:\"\",uEX3RrV09:true,variant:\"BtQ9yd78f\",vgvJWZQpf:\"\",width:\"100%\",YiRorK0jT:true,Zkbpv3NVJ:true})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px, 1200px)`,y:(componentViewport?.y||0)+0+4513.8+100+219+0+2740+0+50+0+180},Gqtd3rM7G:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+2944.8+150+219+0+2639.2+0+35.6+0+180},LNYyHxZQI:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+1754.5+100+249+0+2810+0+60+0+180}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px, 1200px) - 300px)`,y:(componentViewport?.y||0)+0+1967.8+150+239+0+2709.2+0+45.6+0+180,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1onc9bi-container\",nodeId:\"rZylhg0ao\",scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{variant:\"uezdqN8GU\"},LNYyHxZQI:{variant:\"hQq5qV_gm\"}},children:/*#__PURE__*/_jsx(CompareItems,{FRqZTfh9n:false,height:\"100%\",HL1ROBLNa:\"0px 0px 0px 20px\",Hpvclh9CR:false,id:\"rZylhg0ao\",IeBHLqE7v:\"Dedicated Success Manager\",IXX3gTcNY:\"\",layoutId:\"rZylhg0ao\",pdNT_pvgD:true,SOTD9PKE2:true,style:{width:\"100%\"},uDYaKy4JE:\"\",uEX3RrV09:true,variant:\"wyyXnfK5J\",vgvJWZQpf:\"\",width:\"100%\",YiRorK0jT:false,Zkbpv3NVJ:true})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px, 1200px)`,y:(componentViewport?.y||0)+0+4513.8+100+219+0+2740+0+50+0+240},Gqtd3rM7G:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+2944.8+150+219+0+2639.2+0+35.6+0+240},LNYyHxZQI:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1200px)`,y:(componentViewport?.y||0)+0+1754.5+100+249+0+2810+0+60+0+240}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px, 1200px) - 300px)`,y:(componentViewport?.y||0)+0+1967.8+150+239+0+2709.2+0+45.6+0+240,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1g08gmj-container\",nodeId:\"shI0DokXM\",scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{variant:\"uezdqN8GU\"},LNYyHxZQI:{variant:\"hQq5qV_gm\"}},children:/*#__PURE__*/_jsx(CompareItems,{FRqZTfh9n:false,height:\"100%\",HL1ROBLNa:\"0px 0px 0px 20px\",Hpvclh9CR:false,id:\"shI0DokXM\",IeBHLqE7v:\"SOC2 Type II Report\",IXX3gTcNY:\"\",layoutId:\"shI0DokXM\",pdNT_pvgD:true,SOTD9PKE2:true,style:{width:\"100%\"},uDYaKy4JE:\"\",uEX3RrV09:true,variant:\"BtQ9yd78f\",vgvJWZQpf:\"\",width:\"100%\",YiRorK0jT:false,Zkbpv3NVJ:true})})})})})]})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1948n5t\",\"data-framer-name\":\"FAQ\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px)`,y:(componentViewport?.y||0)+0+8072.8+0+0},Gqtd3rM7G:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px)`,y:(componentViewport?.y||0)+0+6488.6+0+0},LNYyHxZQI:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px)`,y:(componentViewport?.y||0)+0+5473.5+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:108,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px)`,y:(componentViewport?.y||0)+0+5611.6+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1iy5frz-container\",nodeId:\"FiE4bbqiF\",scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(Title,{height:\"100%\",id:\"FiE4bbqiF\",layoutId:\"FiE4bbqiF\",qkhmfHSqI:\"\",style:{width:\"100%\"},variant:\"fQdwhKCQP\",vbiYeY1pJ:\"Frequently asked questions\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-q0fzr5\",\"data-framer-name\":\"Column\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px, 1px)`,y:(componentViewport?.y||0)+0+8072.8+0+168+0},Gqtd3rM7G:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1px)`,y:(componentViewport?.y||0)+0+6488.6+0+148+0},LNYyHxZQI:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1px)`,y:(componentViewport?.y||0)+0+5473.5+0+148+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:339,width:`max(min(${componentViewport?.width||\"100vw\"}, 1200px) - 420px, 1px)`,y:(componentViewport?.y||0)+0+5611.6+0+148+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-60bsri-container\",nodeId:\"kEzotRCwM\",scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(Accordion3,{height:\"100%\",id:\"kEzotRCwM\",layoutId:\"kEzotRCwM\",style:{width:\"100%\"},variant:\"S6pfcEovr\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{y:(componentViewport?.y||0)+0+8729.8},Gqtd3rM7G:{y:(componentViewport?.y||0)+0+7175.6},LNYyHxZQI:{y:(componentViewport?.y||0)+0+6160.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:420,width:`min(${componentViewport?.width||\"100vw\"}, 1200px)`,y:(componentViewport?.y||0)+0+6298.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-xpwvgp-container\",nodeId:\"lY4D00V6H\",scopeId:\"Jo1uvVDev\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bNAIMtQ6a:{variant:\"oK0OaNszP\"},Gqtd3rM7G:{variant:\"ZS_GqJG3A\"},LNYyHxZQI:{variant:\"ZS_GqJG3A\"}},children:/*#__PURE__*/_jsx(TermiusFooterLight,{ADP15Q_X2:\"termius.com\",height:\"100%\",id:\"lY4D00V6H\",layoutId:\"lY4D00V6H\",style:{maxWidth:\"100%\",width:\"100%\"},uL6RLR1V0:\"var(--token-bdb63b94-f736-465f-b80b-6171bbc78231, rgb(5, 9, 28))\",variant:\"c3TqxEtKv\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-KSOQ7.framer-m7lle8, .framer-KSOQ7 .framer-m7lle8 { display: block; }\",\".framer-KSOQ7.framer-1gzyep0 { align-content: center; align-items: center; background-color: var(--token-bdb63b94-f736-465f-b80b-6171bbc78231, #05091c); 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-KSOQ7 .framer-1iep413-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-KSOQ7 .framer-1b3vvqs { -webkit-mask: radial-gradient(57.99999999999999% 64% at 52% 44.6%, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 66%, rgb(0, 0, 0) 78%, rgba(0, 0, 0, 0.94595) 86%, rgba(0, 0, 0, 0) 100%) add; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 0px; height: 100vh; justify-content: flex-start; left: calc(50.00000000000002% - min(1200px, 100%) / 2); mask: radial-gradient(57.99999999999999% 64% at 52% 44.6%, rgba(0,0,0,0) 0%, rgb(0, 0, 0) 66%, rgb(0, 0, 0) 78%, rgba(0, 0, 0, 0.94595) 86%, rgba(0, 0, 0, 0) 100%) add; max-width: 1200px; opacity: 0.5; overflow: hidden; padding: 0px; position: absolute; top: -2px; width: 100%; z-index: 0; }\",\".framer-KSOQ7 .framer-1865hfb, .framer-KSOQ7 .framer-znzdgz, .framer-KSOQ7 .framer-1nywge5, .framer-KSOQ7 .framer-40w0uf, .framer-KSOQ7 .framer-1keirvq, .framer-KSOQ7 .framer-ec9bet, .framer-KSOQ7 .framer-1jcg8hp, .framer-KSOQ7 .framer-19xpaof, .framer-KSOQ7 .framer-d3yt3p, .framer-KSOQ7 .framer-1h1c0ih, .framer-KSOQ7 .framer-8na1nn, .framer-KSOQ7 .framer-9i2pcc, .framer-KSOQ7 .framer-454rul, .framer-KSOQ7 .framer-yeroyb, .framer-KSOQ7 .framer-1qiuwa5, .framer-KSOQ7 .framer-1e31ac3, .framer-KSOQ7 .framer-1j2v0im, .framer-KSOQ7 .framer-1oxbmih, .framer-KSOQ7 .framer-1egag3f, .framer-KSOQ7 .framer-qlvqkz, .framer-KSOQ7 .framer-1cga7ls, .framer-KSOQ7 .framer-d1uyxm, .framer-KSOQ7 .framer-q9ihi0, .framer-KSOQ7 .framer-1oaawc8, .framer-KSOQ7 .framer-n7t4nc, .framer-KSOQ7 .framer-1f12t9l, .framer-KSOQ7 .framer-1b078bc, .framer-KSOQ7 .framer-vtr90x, .framer-KSOQ7 .framer-i1kdu4, .framer-KSOQ7 .framer-6lq83r, .framer-KSOQ7 .framer-9qqg41, .framer-KSOQ7 .framer-tcfq6u, .framer-KSOQ7 .framer-40gup8, .framer-KSOQ7 .framer-75paw0, .framer-KSOQ7 .framer-1xhvile, .framer-KSOQ7 .framer-1gtqzcx, .framer-KSOQ7 .framer-x2dsdp, .framer-KSOQ7 .framer-mw1tvv, .framer-KSOQ7 .framer-uuixvv, .framer-KSOQ7 .framer-1y38960, .framer-KSOQ7 .framer-ayh36z, .framer-KSOQ7 .framer-izx18x, .framer-KSOQ7 .framer-1mcrp4x, .framer-KSOQ7 .framer-177tfb3, .framer-KSOQ7 .framer-19tyzwg, .framer-KSOQ7 .framer-dy95y5, .framer-KSOQ7 .framer-wnqzme, .framer-KSOQ7 .framer-19sjanm, .framer-KSOQ7 .framer-1h0hq0, .framer-KSOQ7 .framer-ymddrf, .framer-KSOQ7 .framer-1blj8jg, .framer-KSOQ7 .framer-1jkc9rs, .framer-KSOQ7 .framer-g830, .framer-KSOQ7 .framer-qzsyex, .framer-KSOQ7 .framer-a9vn41, .framer-KSOQ7 .framer-u33ug2, .framer-KSOQ7 .framer-w8ui9r, .framer-KSOQ7 .framer-1trrnbo, .framer-KSOQ7 .framer-p8e2ne, .framer-KSOQ7 .framer-1pvw03x, .framer-KSOQ7 .framer-n653x5, .framer-KSOQ7 .framer-1xjgvot, .framer-KSOQ7 .framer-1bvi1ex, .framer-KSOQ7 .framer-1gh7v53, .framer-KSOQ7 .framer-tplweu, .framer-KSOQ7 .framer-1m4rj9q, .framer-KSOQ7 .framer-3q8frd, .framer-KSOQ7 .framer-14qz2j6, .framer-KSOQ7 .framer-1oubfmx, .framer-KSOQ7 .framer-14re84s, .framer-KSOQ7 .framer-1r8wqxq, .framer-KSOQ7 .framer-1jbsk8g, .framer-KSOQ7 .framer-16gdsa5, .framer-KSOQ7 .framer-1bzpnws, .framer-KSOQ7 .framer-y7r08q, .framer-KSOQ7 .framer-15j1qi7, .framer-KSOQ7 .framer-1ghieyd, .framer-KSOQ7 .framer-96eg04, .framer-KSOQ7 .framer-8k9s2q, .framer-KSOQ7 .framer-nzthio, .framer-KSOQ7 .framer-1ua1axt, .framer-KSOQ7 .framer-1jh4kul, .framer-KSOQ7 .framer-1db8avl, .framer-KSOQ7 .framer-1mxe95u, .framer-KSOQ7 .framer-8re1ki, .framer-KSOQ7 .framer-1z6spx, .framer-KSOQ7 .framer-bcbhw1, .framer-KSOQ7 .framer-1n8zatg, .framer-KSOQ7 .framer-11mkrui, .framer-KSOQ7 .framer-3n48lb, .framer-KSOQ7 .framer-k3m7w2, .framer-KSOQ7 .framer-1t59bgt, .framer-KSOQ7 .framer-n4313j, .framer-KSOQ7 .framer-1pchid5, .framer-KSOQ7 .framer-1ybeegn, .framer-KSOQ7 .framer-zit8sq, .framer-KSOQ7 .framer-52j65j, .framer-KSOQ7 .framer-xsccbv, .framer-KSOQ7 .framer-53mecc, .framer-KSOQ7 .framer-1q5u4ad, .framer-KSOQ7 .framer-xht32n, .framer-KSOQ7 .framer-aa3xae, .framer-KSOQ7 .framer-1odyzvl, .framer-KSOQ7 .framer-ixsajc, .framer-KSOQ7 .framer-1gdr5a2, .framer-KSOQ7 .framer-1n0a5aq, .framer-KSOQ7 .framer-1av04zj, .framer-KSOQ7 .framer-185aqp6, .framer-KSOQ7 .framer-kd2t1r, .framer-KSOQ7 .framer-1njmpey, .framer-KSOQ7 .framer-1nbriah, .framer-KSOQ7 .framer-pmu9ke, .framer-KSOQ7 .framer-4wjx4t, .framer-KSOQ7 .framer-1196xd2, .framer-KSOQ7 .framer-l9movk, .framer-KSOQ7 .framer-12re2wx, .framer-KSOQ7 .framer-1o57x4g, .framer-KSOQ7 .framer-19yo4ud, .framer-KSOQ7 .framer-1drl12l, .framer-KSOQ7 .framer-kpxdkh, .framer-KSOQ7 .framer-gvkv1u, .framer-KSOQ7 .framer-1chb63n, .framer-KSOQ7 .framer-1q8kyd3, .framer-KSOQ7 .framer-1riel8v, .framer-KSOQ7 .framer-1ljc6e4, .framer-KSOQ7 .framer-h5deip, .framer-KSOQ7 .framer-1yykc44, .framer-KSOQ7 .framer-1rqg4ds, .framer-KSOQ7 .framer-q1k6vc, .framer-KSOQ7 .framer-u9txbx, .framer-KSOQ7 .framer-ger4wu, .framer-KSOQ7 .framer-176x002, .framer-KSOQ7 .framer-15m1hca, .framer-KSOQ7 .framer-1aqlavt, .framer-KSOQ7 .framer-r1etlf, .framer-KSOQ7 .framer-40325m, .framer-KSOQ7 .framer-1xrholp, .framer-KSOQ7 .framer-1b1mkxa, .framer-KSOQ7 .framer-1syr5s1, .framer-KSOQ7 .framer-1r735z6, .framer-KSOQ7 .framer-o15vw8, .framer-KSOQ7 .framer-24dl43, .framer-KSOQ7 .framer-12jdwvh, .framer-KSOQ7 .framer-10n0mwf, .framer-KSOQ7 .framer-11n0awc, .framer-KSOQ7 .framer-84jhuh, .framer-KSOQ7 .framer-wbxoh, .framer-KSOQ7 .framer-l8e3hq, .framer-KSOQ7 .framer-1vtalt6, .framer-KSOQ7 .framer-1gpqkzs, .framer-KSOQ7 .framer-d71vlb, .framer-KSOQ7 .framer-1s5dkuo, .framer-KSOQ7 .framer-1mbkn0j, .framer-KSOQ7 .framer-1j98on4, .framer-KSOQ7 .framer-u3mkla, .framer-KSOQ7 .framer-19ts5se, .framer-KSOQ7 .framer-fgpphc, .framer-KSOQ7 .framer-19b6w1b, .framer-KSOQ7 .framer-1vwid0i, .framer-KSOQ7 .framer-1r0d7r0, .framer-KSOQ7 .framer-1gxysyt, .framer-KSOQ7 .framer-48s1vh, .framer-KSOQ7 .framer-10ws1dx, .framer-KSOQ7 .framer-2rcftq, .framer-KSOQ7 .framer-1agqogw, .framer-KSOQ7 .framer-6f94fy, .framer-KSOQ7 .framer-mtuupl, .framer-KSOQ7 .framer-ose1hr, .framer-KSOQ7 .framer-nc0llc, .framer-KSOQ7 .framer-1yfsx0k, .framer-KSOQ7 .framer-1anw0sw, .framer-KSOQ7 .framer-2j316b, .framer-KSOQ7 .framer-1u34xg8, .framer-KSOQ7 .framer-d9oxad, .framer-KSOQ7 .framer-gcmjon, .framer-KSOQ7 .framer-9o83ha, .framer-KSOQ7 .framer-1v1xa4n, .framer-KSOQ7 .framer-1lxp7kz, .framer-KSOQ7 .framer-qda1np, .framer-KSOQ7 .framer-pv92en, .framer-KSOQ7 .framer-cpzr5v, .framer-KSOQ7 .framer-lnojio, .framer-KSOQ7 .framer-1uwkjef, .framer-KSOQ7 .framer-1ndsyc7, .framer-KSOQ7 .framer-1djndxy, .framer-KSOQ7 .framer-1klvvvx, .framer-KSOQ7 .framer-xvqk6m, .framer-KSOQ7 .framer-ee0bzj, .framer-KSOQ7 .framer-sd3jbh, .framer-KSOQ7 .framer-1g3qvhr, .framer-KSOQ7 .framer-1hik1ax, .framer-KSOQ7 .framer-voo3ub, .framer-KSOQ7 .framer-2rtx5p, .framer-KSOQ7 .framer-183yzp5, .framer-KSOQ7 .framer-1ckevl9, .framer-KSOQ7 .framer-1ej759z, .framer-KSOQ7 .framer-1cfwftd, .framer-KSOQ7 .framer-bwq8hw, .framer-KSOQ7 .framer-1v8gjxb, .framer-KSOQ7 .framer-4djc1b, .framer-KSOQ7 .framer-1gladp8, .framer-KSOQ7 .framer-9q34m8, .framer-KSOQ7 .framer-i16wfr, .framer-KSOQ7 .framer-2l5ypz, .framer-KSOQ7 .framer-2qi0e5, .framer-KSOQ7 .framer-ks947e, .framer-KSOQ7 .framer-x0q6ko, .framer-KSOQ7 .framer-1ufnkri, .framer-KSOQ7 .framer-1wgbu6a, .framer-KSOQ7 .framer-1us2aq7, .framer-KSOQ7 .framer-1sdbm9q, .framer-KSOQ7 .framer-f52z73, .framer-KSOQ7 .framer-lz1b4n, .framer-KSOQ7 .framer-zf633h, .framer-KSOQ7 .framer-kzf0ms, .framer-KSOQ7 .framer-2htu5c, .framer-KSOQ7 .framer-1wnmbtu, .framer-KSOQ7 .framer-jkky55, .framer-KSOQ7 .framer-1jo6pv9, .framer-KSOQ7 .framer-1al4dgn, .framer-KSOQ7 .framer-1f8pvj9, .framer-KSOQ7 .framer-dkt9gm, .framer-KSOQ7 .framer-8epjhl, .framer-KSOQ7 .framer-1xyinan, .framer-KSOQ7 .framer-1hcl89y, .framer-KSOQ7 .framer-17nk4o1, .framer-KSOQ7 .framer-16q91n7, .framer-KSOQ7 .framer-p02vun, .framer-KSOQ7 .framer-128cmpr, .framer-KSOQ7 .framer-thiwf1, .framer-KSOQ7 .framer-1rcwnz3, .framer-KSOQ7 .framer-1j7qaul, .framer-KSOQ7 .framer-hvzy6e, .framer-KSOQ7 .framer-1imppi3, .framer-KSOQ7 .framer-1xmsqpx, .framer-KSOQ7 .framer-eck186, .framer-KSOQ7 .framer-39h1b9, .framer-KSOQ7 .framer-yhggfr { --border-bottom-width: 1px; --border-color: var(--token-668db465-a1c1-444c-8617-667fdb29c700, rgba(255, 255, 255, 0.04)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1.0714285714285714 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 70px); overflow: hidden; position: relative; width: 75px; }\",\".framer-KSOQ7 .framer-sno15z { --border-bottom-width: 1px; --border-color: var(--token-668db465-a1c1-444c-8617-667fdb29c700, rgba(255, 255, 255, 0.04)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1.0714285714285714 / 1; background-color: var(--token-bdb63b94-f736-465f-b80b-6171bbc78231, #05091c); flex: none; height: var(--framer-aspect-ratio-supported, 70px); opacity: 0; overflow: hidden; position: relative; width: 75px; }\",\".framer-KSOQ7 .framer-bmquju { --border-bottom-width: 1px; --border-color: var(--token-668db465-a1c1-444c-8617-667fdb29c700, rgba(255, 255, 255, 0.04)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1.0714285714285714 / 1; background-color: var(--token-bdb63b94-f736-465f-b80b-6171bbc78231, #05091c); flex: none; height: var(--framer-aspect-ratio-supported, 70px); overflow: hidden; position: relative; width: 75px; }\",\".framer-KSOQ7 .framer-1x47ymi { 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; max-width: 1200px; overflow: hidden; padding: 180px 80px 20px 80px; position: relative; width: 100%; z-index: 1; }\",\".framer-KSOQ7 .framer-xnep7y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-KSOQ7 .framer-1f7vxsm { align-content: center; align-items: center; background: linear-gradient(112deg, rgba(106, 115, 163, 0.7) 0%, rgba(61, 65, 89, 0.3) 100%); border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 1px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-KSOQ7 .framer-hquo37-container { flex: none; height: 243%; position: absolute; right: 0px; top: calc(48.59813084112152% - 242.99065420560746% / 2); width: 100%; z-index: 0; }\",\".framer-KSOQ7 .framer-19on7ko-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-KSOQ7 .framer-xhpsig { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-KSOQ7 .framer-18qsdd { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 90px 0px 30px 0px; position: relative; width: 100%; }\",\".framer-KSOQ7 .framer-6k5cxj { -webkit-filter: blur(100px); background-color: rgba(127, 144, 219, 0.4); border-bottom-left-radius: 10000px; border-bottom-right-radius: 10000px; border-top-left-radius: 10000px; border-top-right-radius: 10000px; bottom: -563px; filter: blur(100px); flex: none; height: 1000px; left: calc(50.00000000000002% - 1170px / 2); overflow: visible; position: absolute; width: 1170px; z-index: 0; }\",\".framer-KSOQ7 .framer-1c7j12o { -webkit-filter: blur(0px); background: linear-gradient(180deg, rgba(5, 9, 27, 0) 0%, rgb(5, 9, 26) 51%, rgb(5, 11, 25) 100%); bottom: -20px; filter: blur(0px); flex: none; height: 510px; left: calc(50.00000000000002% - 125% / 2); overflow: hidden; position: absolute; width: 125%; z-index: 0; }\",\".framer-KSOQ7 .framer-1oeha2d { --border-bottom-width: 2px; --border-color: rgba(58, 64, 96, 0.6); --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: flex-start; align-items: flex-start; align-self: stretch; background-color: var(--token-bdb63b94-f736-465f-b80b-6171bbc78231, #05091c); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; cursor: pointer; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: auto; justify-content: flex-start; overflow: hidden; padding: 20px; position: relative; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-KSOQ7 .framer-1qtlbp2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 45px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-KSOQ7 .framer-g7tzsr, .framer-KSOQ7 .framer-1rpf4na, .framer-KSOQ7 .framer-hzccm7, .framer-KSOQ7 .framer-1msojzv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-KSOQ7 .framer-rfimqc, .framer-KSOQ7 .framer-50jdeu, .framer-KSOQ7 .framer-ke4pja { 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; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-KSOQ7 .framer-2kpkyk, .framer-KSOQ7 .framer-mtb1ft, .framer-KSOQ7 .framer-wug8zq { 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-KSOQ7 .framer-4f81ft, .framer-KSOQ7 .framer-1i3c3m7, .framer-KSOQ7 .framer-1y5n012, .framer-KSOQ7 .framer-3bnxia { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-KSOQ7 .framer-yze08d, .framer-KSOQ7 .framer-7rz9wx, .framer-KSOQ7 .framer-t3wxuu, .framer-KSOQ7 .framer-ubcmh0, .framer-KSOQ7 .framer-l8yei2, .framer-KSOQ7 .framer-1uibh8o, .framer-KSOQ7 .framer-1fjss3, .framer-KSOQ7 .framer-1lvitzg, .framer-KSOQ7 .framer-1nqilhj { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-KSOQ7 .framer-ssa9ww, .framer-KSOQ7 .framer-1lno7b0, .framer-KSOQ7 .framer-1t8nqi9, .framer-KSOQ7 .framer-pe3300 { --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-KSOQ7 .framer-xz2vwy, .framer-KSOQ7 .framer-1evkgjd, .framer-KSOQ7 .framer-tebicv, .framer-KSOQ7 .framer-1xfqpv1 { --framer-paragraph-spacing: 0px; flex: none; height: 60px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-KSOQ7 .framer-16d0avp-container, .framer-KSOQ7 .framer-12vkks2-container, .framer-KSOQ7 .framer-1yr9dbj-container, .framer-KSOQ7 .framer-jvh0wj-container { flex: none; height: 46px; position: relative; width: 100%; }\",\".framer-KSOQ7 .framer-16o93cy, .framer-KSOQ7 .framer-17xw0sg, .framer-KSOQ7 .framer-frf9g3, .framer-KSOQ7 .framer-ficbrc, .framer-KSOQ7 .framer-1txdadf, .framer-KSOQ7 .framer-fo06f { 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-KSOQ7 .framer-tv5a3f, .framer-KSOQ7 .framer-2wcc9g, .framer-KSOQ7 .framer-10iglgg, .framer-KSOQ7 .framer-sb7gkt, .framer-KSOQ7 .framer-1vcyk1l, .framer-KSOQ7 .framer-14pjg79, .framer-KSOQ7 .framer-r86ai4, .framer-KSOQ7 .framer-1n51gxw, .framer-KSOQ7 .framer-1h9uy1u, .framer-KSOQ7 .framer-udik0k, .framer-KSOQ7 .framer-dbdeot, .framer-KSOQ7 .framer-etzzty, .framer-KSOQ7 .framer-1d9ra6l, .framer-KSOQ7 .framer-1gxbgre, .framer-KSOQ7 .framer-4d2z2l, .framer-KSOQ7 .framer-4nlabj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-KSOQ7 .framer-1wmcozz-container, .framer-KSOQ7 .framer-1v7w30w-container, .framer-KSOQ7 .framer-5igydk-container, .framer-KSOQ7 .framer-18q1wz8-container, .framer-KSOQ7 .framer-1kibqm9-container, .framer-KSOQ7 .framer-1p5ajh5-container, .framer-KSOQ7 .framer-33h2km-container, .framer-KSOQ7 .framer-1g8sjgq-container, .framer-KSOQ7 .framer-ltwwg5-container, .framer-KSOQ7 .framer-n9ukce-container, .framer-KSOQ7 .framer-8tntmn-container, .framer-KSOQ7 .framer-dnrqyj-container, .framer-KSOQ7 .framer-oiqghl-container, .framer-KSOQ7 .framer-174yyn0-container, .framer-KSOQ7 .framer-1fxgi9m-container, .framer-KSOQ7 .framer-iz9fnx-container { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-KSOQ7 .framer-13coh95, .framer-KSOQ7 .framer-971vdb, .framer-KSOQ7 .framer-19m6sc8, .framer-KSOQ7 .framer-1lq2g3m, .framer-KSOQ7 .framer-1ra1xvy, .framer-KSOQ7 .framer-hsbdr1, .framer-KSOQ7 .framer-uwonvm, .framer-KSOQ7 .framer-pprwd1, .framer-KSOQ7 .framer-n5puxt, .framer-KSOQ7 .framer-1nfqfdl, .framer-KSOQ7 .framer-yj7wzj, .framer-KSOQ7 .framer-1vws354, .framer-KSOQ7 .framer-486abl, .framer-KSOQ7 .framer-13d2zbd, .framer-KSOQ7 .framer-pdd9hy, .framer-KSOQ7 .framer-14kfn16, .framer-KSOQ7 .framer-kzpf1b { --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-KSOQ7 .framer-xq6scy { --border-bottom-width: 2px; --border-color: rgba(58, 64, 96, 0.6); --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: flex-start; align-items: flex-start; align-self: stretch; background-color: var(--token-bdb63b94-f736-465f-b80b-6171bbc78231, #05091c); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; cursor: pointer; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: auto; justify-content: space-between; overflow: hidden; padding: 20px; position: relative; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-KSOQ7 .framer-fiocig { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 45px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-KSOQ7 .framer-ntx1ym, .framer-KSOQ7 .framer-1w09icr, .framer-KSOQ7 .framer-id5x1u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-KSOQ7 .framer-7esvei, .framer-KSOQ7 .framer-jc6z70, .framer-KSOQ7 .framer-hrho6b, .framer-KSOQ7 .framer-9eqi8x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-KSOQ7 .framer-k9acxc, .framer-KSOQ7 .framer-7078xn, .framer-KSOQ7 .framer-6rcxl0 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-KSOQ7 .framer-1vo4irt { --border-bottom-width: 2px; --border-color: rgba(58, 64, 96, 0.6); --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: center; align-items: center; background-color: var(--token-bdb63b94-f736-465f-b80b-6171bbc78231, #05091c); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; cursor: pointer; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 20px; position: relative; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-KSOQ7 .framer-oqffdf, .framer-KSOQ7 .framer-1ag7tq5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-KSOQ7 .framer-pw3ejg, .framer-KSOQ7 .framer-dh3jnw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-KSOQ7 .framer-19ms1sc, .framer-KSOQ7 .framer-kxjaap { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-KSOQ7 .framer-1wkph5i { 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-KSOQ7 .framer-1sxd1oo, .framer-KSOQ7 .framer-r33l4y { --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-KSOQ7 .framer-qaukvm { --border-bottom-width: 2px; --border-color: rgba(58, 64, 96, 0.6); --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: flex-start; align-items: flex-start; align-self: stretch; background-color: var(--token-bdb63b94-f736-465f-b80b-6171bbc78231, #05091c); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; cursor: pointer; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: auto; justify-content: flex-start; overflow: hidden; padding: 20px; position: relative; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-KSOQ7 .framer-civ0nu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 100px 80px 0px 80px; position: relative; width: 100%; z-index: 1; }\",\".framer-KSOQ7 .framer-1yn5zxe-container, .framer-KSOQ7 .framer-m88ltj-container, .framer-KSOQ7 .framer-zxxjue-container, .framer-KSOQ7 .framer-19sjjws-container, .framer-KSOQ7 .framer-24oy9d-container, .framer-KSOQ7 .framer-1l3bhh-container, .framer-KSOQ7 .framer-1oddkip-container, .framer-KSOQ7 .framer-112s3os-container, .framer-KSOQ7 .framer-1j8olxf-container, .framer-KSOQ7 .framer-y6aysn-container, .framer-KSOQ7 .framer-3lcrfr-container, .framer-KSOQ7 .framer-145omkh-container, .framer-KSOQ7 .framer-nxsxte-container, .framer-KSOQ7 .framer-13sgylc-container, .framer-KSOQ7 .framer-iuou46-container, .framer-KSOQ7 .framer-v0zjf8-container, .framer-KSOQ7 .framer-j7jydp-container, .framer-KSOQ7 .framer-1kugv03-container, .framer-KSOQ7 .framer-15qu10a-container, .framer-KSOQ7 .framer-185rrrp-container, .framer-KSOQ7 .framer-c69wgn-container, .framer-KSOQ7 .framer-13xctki-container, .framer-KSOQ7 .framer-1exee2n-container, .framer-KSOQ7 .framer-kw1adn-container, .framer-KSOQ7 .framer-f7vx6u-container, .framer-KSOQ7 .framer-1mmxrrg-container, .framer-KSOQ7 .framer-1s6ymu4-container, .framer-KSOQ7 .framer-wk8g1t-container, .framer-KSOQ7 .framer-vdi03c-container, .framer-KSOQ7 .framer-tchdfr-container, .framer-KSOQ7 .framer-yw1dtx-container, .framer-KSOQ7 .framer-zgob4k-container, .framer-KSOQ7 .framer-pf57ua-container, .framer-KSOQ7 .framer-lzfupq-container, .framer-KSOQ7 .framer-3s7fms-container, .framer-KSOQ7 .framer-1xyhykd-container, .framer-KSOQ7 .framer-1jjomtj-container, .framer-KSOQ7 .framer-12zm0f4-container, .framer-KSOQ7 .framer-1pzyoi1-container, .framer-KSOQ7 .framer-1onc9bi-container, .framer-KSOQ7 .framer-1g08gmj-container, .framer-KSOQ7 .framer-1iy5frz-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-KSOQ7 .framer-1gw3szj { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 90px 0px; position: relative; width: 859px; }\",\".framer-KSOQ7 .framer-yqpj02-container, .framer-KSOQ7 .framer-9qa1nw-container, .framer-KSOQ7 .framer-1yr311s-container, .framer-KSOQ7 .framer-fuhvb0-container, .framer-KSOQ7 .framer-16y52j9-container { flex: none; height: auto; position: relative; width: 90%; }\",\".framer-KSOQ7 .framer-19f37o7 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 60px 0px; position: relative; width: 749px; }\",\".framer-KSOQ7 .framer-19z7f92, .framer-KSOQ7 .framer-16fm0m1, .framer-KSOQ7 .framer-ys55f1 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 749px; }\",\".framer-KSOQ7 .framer-1qz450x { background: linear-gradient(90deg, rgba(32, 145, 246, 0) 0%, var(--token-c54d9db5-a509-438e-807d-0ce938cf337e, rgb(32, 145, 246)) 27.027027027027028%, var(--token-d6eceb5f-c0c1-403a-8356-fe616ea60d0b, rgb(33, 181, 104)) 49.0990990990991%, var(--token-c54d9db5-a509-438e-807d-0ce938cf337e, rgb(32, 145, 246)) 72.52252252252252%, rgba(32, 145, 246, 0) 100%); flex: none; height: 2px; overflow: hidden; position: relative; width: 115%; }\",\".framer-KSOQ7 .framer-15iwafc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 150px 60px 200px 60px; position: relative; width: 100%; }\",\".framer-KSOQ7 .framer-d0t4iv { align-content: center; align-items: center; background-color: var(--token-bdb63b94-f736-465f-b80b-6171bbc78231, #05091c); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: hidden; padding: 60px 150px 0px 150px; position: sticky; top: 40px; width: 100%; z-index: 2; }\",\".framer-KSOQ7 .framer-1xhgrjp { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-KSOQ7 .framer-y38vio { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 20px; position: relative; width: 100%; }\",\".framer-KSOQ7 .framer-16zlo4e, .framer-KSOQ7 .framer-nk5z6p, .framer-KSOQ7 .framer-1wdea5v, .framer-KSOQ7 .framer-1s1pvw7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 130px; }\",\".framer-KSOQ7 .framer-1t04f1-container, .framer-KSOQ7 .framer-1yenq6c-container, .framer-KSOQ7 .framer-1dez5pc-container, .framer-KSOQ7 .framer-idsezo-container { flex: none; height: 50px; position: relative; width: 100%; }\",\".framer-KSOQ7 .framer-j0t84g { background-color: rgba(127, 144, 219, 0.2); flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-KSOQ7 .framer-1tj853j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-KSOQ7 .framer-15f7ydz, .framer-KSOQ7 .framer-19ecunw, .framer-KSOQ7 .framer-hcgoqk, .framer-KSOQ7 .framer-ditlot, .framer-KSOQ7 .framer-1nta5d0, .framer-KSOQ7 .framer-12wp4bi, .framer-KSOQ7 .framer-1l1ybdk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 150px 0px 150px; position: relative; width: 100%; }\",\".framer-KSOQ7 .framer-17gynv7, .framer-KSOQ7 .framer-rfj4xs, .framer-KSOQ7 .framer-125gvx7, .framer-KSOQ7 .framer-1wihctd, .framer-KSOQ7 .framer-1nbpu5u, .framer-KSOQ7 .framer-1xzwdnm, .framer-KSOQ7 .framer-14c2cya, .framer-KSOQ7 .framer-1rjrgcn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 20px; position: relative; width: min-content; z-index: 1; }\",\".framer-KSOQ7 .framer-c6bk0r, .framer-KSOQ7 .framer-1pr3fbw, .framer-KSOQ7 .framer-1g3mr5j, .framer-KSOQ7 .framer-oi9n0j, .framer-KSOQ7 .framer-slzaai, .framer-KSOQ7 .framer-1iisf79, .framer-KSOQ7 .framer-57oe1z { 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-KSOQ7 .framer-t4uas9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 150px 0px 150px; position: relative; width: 100%; }\",\".framer-KSOQ7 .framer-vrvsvx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-KSOQ7 .framer-1948n5t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px 60px 200px 60px; position: relative; width: 100%; }\",\".framer-KSOQ7 .framer-q0fzr5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px 150px 0px 150px; position: relative; width: 100%; }\",\".framer-KSOQ7 .framer-60bsri-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; z-index: 2; }\",\".framer-KSOQ7 .framer-xpwvgp-container { flex: none; height: auto; max-width: 1200px; position: relative; width: 100%; z-index: 2; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,'.framer-KSOQ7[data-border=\"true\"]::after, .framer-KSOQ7 [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-KSOQ7.framer-1gzyep0 { width: 810px; } .framer-KSOQ7 .framer-1b3vvqs { height: 1000px; } .framer-KSOQ7 .framer-1x47ymi { padding: 180px 40px 20px 40px; } .framer-KSOQ7 .framer-18qsdd { align-content: unset; align-items: unset; display: grid; gap: 10px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); } .framer-KSOQ7 .framer-6k5cxj { height: 1379px; left: -33px; opacity: 0.4; right: -33px; width: unset; } .framer-KSOQ7 .framer-1c7j12o { bottom: -210px; left: -101px; right: -101px; width: unset; } .framer-KSOQ7 .framer-1oeha2d { align-self: start; flex: none; height: 1fr; justify-self: start; min-width: 300px; width: 100%; will-change: var(--framer-will-change-override, transform); } .framer-KSOQ7 .framer-1qtlbp2 { min-width: 300px; } .framer-KSOQ7 .framer-g7tzsr { order: 0; } .framer-KSOQ7 .framer-yze08d { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-KSOQ7 .framer-ssa9ww, .framer-KSOQ7 .framer-1lno7b0, .framer-KSOQ7 .framer-1t8nqi9, .framer-KSOQ7 .framer-pe3300 { white-space: pre; width: auto; } .framer-KSOQ7 .framer-xz2vwy, .framer-KSOQ7 .framer-1evkgjd, .framer-KSOQ7 .framer-tebicv, .framer-KSOQ7 .framer-1xfqpv1 { height: auto; } .framer-KSOQ7 .framer-16o93cy { order: 1; } .framer-KSOQ7 .framer-xq6scy { align-self: start; flex: none; gap: 0px; height: 1fr; justify-content: center; justify-self: start; min-width: 300px; width: 100%; will-change: var(--framer-will-change-override, transform); } .framer-KSOQ7 .framer-ntx1ym, .framer-KSOQ7 .framer-1w09icr, .framer-KSOQ7 .framer-id5x1u { align-content: flex-start; align-items: flex-start; } .framer-KSOQ7 .framer-1vo4irt, .framer-KSOQ7 .framer-qaukvm { align-self: start; flex: none; height: 100%; justify-self: start; min-width: 300px; width: 100%; will-change: var(--framer-will-change-override, transform); } .framer-KSOQ7 .framer-pw3ejg { gap: 10px; } .framer-KSOQ7 .framer-civ0nu { justify-content: center; padding: 100px 40px 0px 40px; } .framer-KSOQ7 .framer-15iwafc { padding: 150px 40px 200px 40px; } .framer-KSOQ7 .framer-d0t4iv { padding: 40px 0px 0px 0px; } .framer-KSOQ7 .framer-15f7ydz, .framer-KSOQ7 .framer-19ecunw, .framer-KSOQ7 .framer-hcgoqk, .framer-KSOQ7 .framer-t4uas9, .framer-KSOQ7 .framer-ditlot, .framer-KSOQ7 .framer-1nta5d0, .framer-KSOQ7 .framer-12wp4bi, .framer-KSOQ7 .framer-1l1ybdk { gap: 10px; padding: 0px; } .framer-KSOQ7 .framer-1948n5t { padding: 0px 40px 200px 40px; } .framer-KSOQ7 .framer-q0fzr5 { padding: 0px; }}\",\"@media (min-width: 640px) and (max-width: 809px) { .framer-KSOQ7.framer-1gzyep0 { width: 640px; } .framer-KSOQ7 .framer-1b3vvqs { height: 1000px; top: 190px; } .framer-KSOQ7 .framer-1x47ymi { padding: 180px 40px 20px 40px; } .framer-KSOQ7 .framer-18qsdd { align-content: unset; align-items: unset; display: grid; gap: 10px; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, min-content); height: 955px; justify-content: start; } .framer-KSOQ7 .framer-6k5cxj { height: 1379px; left: -33px; opacity: 0.4; right: -33px; width: unset; } .framer-KSOQ7 .framer-1c7j12o { bottom: -210px; left: -101px; right: -101px; width: unset; } .framer-KSOQ7 .framer-1oeha2d, .framer-KSOQ7 .framer-1vo4irt, .framer-KSOQ7 .framer-qaukvm { align-self: start; flex: none; height: 100%; justify-self: center; min-width: 200px; width: 100%; will-change: var(--framer-will-change-override, transform); } .framer-KSOQ7 .framer-1qtlbp2, .framer-KSOQ7 .framer-fiocig { gap: 25px; } .framer-KSOQ7 .framer-g7tzsr, .framer-KSOQ7 .framer-1rpf4na { gap: 10px; } .framer-KSOQ7 .framer-yze08d { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-KSOQ7 .framer-xz2vwy, .framer-KSOQ7 .framer-1evkgjd, .framer-KSOQ7 .framer-tebicv, .framer-KSOQ7 .framer-1xfqpv1 { height: auto; } .framer-KSOQ7 .framer-xq6scy { align-self: start; flex: none; gap: 0px; height: 100%; justify-content: flex-start; justify-self: center; min-width: 200px; width: 100%; will-change: var(--framer-will-change-override, transform); } .framer-KSOQ7 .framer-civ0nu { padding: 100px 40px 0px 40px; } .framer-KSOQ7 .framer-15iwafc { gap: 20px; padding: 100px 40px 200px 40px; } .framer-KSOQ7 .framer-d0t4iv { padding: 30px 0px 0px 0px; top: 80px; } .framer-KSOQ7 .framer-16zlo4e, .framer-KSOQ7 .framer-nk5z6p, .framer-KSOQ7 .framer-1wdea5v, .framer-KSOQ7 .framer-1s1pvw7 { width: 100px; } .framer-KSOQ7 .framer-15f7ydz, .framer-KSOQ7 .framer-19ecunw, .framer-KSOQ7 .framer-hcgoqk, .framer-KSOQ7 .framer-ditlot, .framer-KSOQ7 .framer-1nta5d0, .framer-KSOQ7 .framer-12wp4bi, .framer-KSOQ7 .framer-1l1ybdk { gap: 10px; padding: 0px; } .framer-KSOQ7 .framer-17gynv7, .framer-KSOQ7 .framer-rfj4xs, .framer-KSOQ7 .framer-125gvx7, .framer-KSOQ7 .framer-1wihctd, .framer-KSOQ7 .framer-1nbpu5u, .framer-KSOQ7 .framer-1xzwdnm, .framer-KSOQ7 .framer-14c2cya, .framer-KSOQ7 .framer-1rjrgcn { background-color: #050b19; height: 50px; position: sticky; top: 80px; width: 100%; } .framer-KSOQ7 .framer-7rz9wx { flex: 1 0 0px; min-width: 110px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-KSOQ7 .framer-t3wxuu, .framer-KSOQ7 .framer-ubcmh0, .framer-KSOQ7 .framer-l8yei2, .framer-KSOQ7 .framer-1uibh8o, .framer-KSOQ7 .framer-1fjss3, .framer-KSOQ7 .framer-1lvitzg, .framer-KSOQ7 .framer-1nqilhj { flex: 1 0 0px; min-width: 110px; order: 0; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-KSOQ7 .framer-t4uas9 { gap: 10px; overflow: visible; padding: 0px; } .framer-KSOQ7 .framer-1948n5t { padding: 0px 40px 200px 40px; } .framer-KSOQ7 .framer-q0fzr5 { padding: 0px; }}\",\"@media (max-width: 639px) { .framer-KSOQ7.framer-1gzyep0 { width: 390px; } .framer-KSOQ7 .framer-1b3vvqs { height: 800px; opacity: 0.8; top: 0px; } .framer-KSOQ7 .framer-1x47ymi { background: linear-gradient(180deg, rgba(5, 9, 28, 0.7) 3%, rgba(6, 8, 22, 0) 41%); gap: 60px; padding: 140px 20px 20px 20px; } .framer-KSOQ7 .framer-xnep7y { gap: 30px; } .framer-KSOQ7 .framer-1f7vxsm, .framer-KSOQ7 .framer-t3wxuu, .framer-KSOQ7 .framer-ubcmh0, .framer-KSOQ7 .framer-l8yei2, .framer-KSOQ7 .framer-1uibh8o, .framer-KSOQ7 .framer-1fjss3, .framer-KSOQ7 .framer-1lvitzg, .framer-KSOQ7 .framer-1nqilhj { order: 0; } .framer-KSOQ7 .framer-hquo37-container { height: 244%; left: -9px; right: -10px; top: calc(48.59813084112152% - 243.92523364485982% / 2); width: unset; } .framer-KSOQ7 .framer-19on7ko-container { width: 305px; } .framer-KSOQ7 .framer-xhpsig { order: 1; } .framer-KSOQ7 .framer-18qsdd { flex-direction: column; flex-wrap: wrap; gap: 10px; padding: 0px 0px 30px 0px; } .framer-KSOQ7 .framer-6k5cxj { height: 2165px; left: -33px; opacity: 0.4; right: -33px; width: unset; } .framer-KSOQ7 .framer-1c7j12o { bottom: -210px; left: -101px; right: -101px; width: unset; } .framer-KSOQ7 .framer-1oeha2d { align-self: unset; flex: none; height: min-content; padding: 25px; width: 100%; will-change: var(--framer-will-change-override, transform); } .framer-KSOQ7 .framer-1qtlbp2, .framer-KSOQ7 .framer-fiocig { gap: 25px; } .framer-KSOQ7 .framer-yze08d { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-KSOQ7 .framer-xz2vwy, .framer-KSOQ7 .framer-1evkgjd, .framer-KSOQ7 .framer-tebicv, .framer-KSOQ7 .framer-1xfqpv1 { height: auto; } .framer-KSOQ7 .framer-xq6scy { align-self: unset; flex: none; gap: 0px; height: min-content; justify-content: center; padding: 25px; width: 100%; will-change: var(--framer-will-change-override, transform); } .framer-KSOQ7 .framer-ntx1ym, .framer-KSOQ7 .framer-1w09icr, .framer-KSOQ7 .framer-id5x1u { align-content: flex-end; align-items: flex-end; flex-direction: row; } .framer-KSOQ7 .framer-7esvei, .framer-KSOQ7 .framer-1lno7b0, .framer-KSOQ7 .framer-jc6z70, .framer-KSOQ7 .framer-1t8nqi9, .framer-KSOQ7 .framer-hrho6b, .framer-KSOQ7 .framer-pe3300 { flex: 1 0 0px; width: 1px; } .framer-KSOQ7 .framer-1vo4irt { flex: none; padding: 25px; width: 100%; will-change: var(--framer-will-change-override, transform); } .framer-KSOQ7 .framer-qaukvm { align-self: unset; flex: none; height: min-content; width: 100%; will-change: var(--framer-will-change-override, transform); } .framer-KSOQ7 .framer-civ0nu { gap: 30px; overflow: hidden; padding: 0px 20px 0px 20px; } .framer-KSOQ7 .framer-1qz450x { width: 145%; } .framer-KSOQ7 .framer-15iwafc { gap: 20px; padding: 100px 20px 150px 20px; } .framer-KSOQ7 .framer-d0t4iv { padding: 20px 0px 0px 0px; top: 80px; } .framer-KSOQ7 .framer-y38vio, .framer-KSOQ7 .framer-q0fzr5 { padding: 0px; } .framer-KSOQ7 .framer-16zlo4e, .framer-KSOQ7 .framer-nk5z6p, .framer-KSOQ7 .framer-1wdea5v, .framer-KSOQ7 .framer-1s1pvw7 { height: 30px; width: 60px; } .framer-KSOQ7 .framer-1t04f1-container, .framer-KSOQ7 .framer-1yenq6c-container, .framer-KSOQ7 .framer-1dez5pc-container, .framer-KSOQ7 .framer-idsezo-container { flex: 1 0 0px; height: 1px; } .framer-KSOQ7 .framer-15f7ydz, .framer-KSOQ7 .framer-19ecunw, .framer-KSOQ7 .framer-hcgoqk, .framer-KSOQ7 .framer-ditlot, .framer-KSOQ7 .framer-1nta5d0, .framer-KSOQ7 .framer-12wp4bi, .framer-KSOQ7 .framer-1l1ybdk { gap: 0px; padding: 0px; } .framer-KSOQ7 .framer-17gynv7 { background-color: #050b19; gap: 20px; height: 50px; justify-content: flex-start; padding: 0px; position: sticky; top: 80px; width: 100%; } .framer-KSOQ7 .framer-rfj4xs, .framer-KSOQ7 .framer-125gvx7, .framer-KSOQ7 .framer-1wihctd, .framer-KSOQ7 .framer-1nbpu5u, .framer-KSOQ7 .framer-1xzwdnm, .framer-KSOQ7 .framer-14c2cya, .framer-KSOQ7 .framer-1rjrgcn { background-color: #050b19; height: 50px; padding: 0px; position: sticky; top: 80px; } .framer-KSOQ7 .framer-t4uas9 { gap: 0px; overflow: visible; padding: 0px; } .framer-KSOQ7 .framer-1948n5t { gap: 60px; padding: 0px 20px 150px 20px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6285.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Gqtd3rM7G\":{\"layout\":[\"fixed\",\"auto\"]},\"LNYyHxZQI\":{\"layout\":[\"fixed\",\"auto\"]},\"bNAIMtQ6a\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"b8JY_SEou\":{\"pattern\":\":b8JY_SEou\",\"name\":\"hero\"},\"X1hXOH8me\":{\"pattern\":\":X1hXOH8me\",\"name\":\"plans\"},\"dwJA5nW6H\":{\"pattern\":\":dwJA5nW6H\",\"name\":\"trusted\"},\"AWeCwKqts\":{\"pattern\":\":AWeCwKqts\",\"name\":\"compare\"}}\n * @framerResponsiveScreen\n */const FramerJo1uvVDev=withCSS(Component,css,\"framer-KSOQ7\");export default FramerJo1uvVDev;FramerJo1uvVDev.displayName=\"Page\";FramerJo1uvVDev.defaultProps={height:6285.5,width:1200};addFonts(FramerJo1uvVDev,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"CircularXX Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/TTvL8Svp39d18oxdBvHyiOhV60.otf\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"CircularXX Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/AGkNBOYWzLi5AX3Ezgjv6MhXE.otf\"}]},...NavbarFonts,...RotateBorderFonts,...InnerBoxFonts,...Button_priceFonts,...IconoirFonts,...Card_TestimonialsFonts,...CarouselFonts,...TitleFonts,...Button_featuresFonts,...CompareItemsFonts,...Accordion3Fonts,...TermiusFooterLightFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerJo1uvVDev\",\"slots\":[],\"annotations\":{\"framerScrollSections\":\"{\\\"b8JY_SEou\\\":{\\\"pattern\\\":\\\":b8JY_SEou\\\",\\\"name\\\":\\\"hero\\\"},\\\"X1hXOH8me\\\":{\\\"pattern\\\":\\\":X1hXOH8me\\\",\\\"name\\\":\\\"plans\\\"},\\\"dwJA5nW6H\\\":{\\\"pattern\\\":\\\":dwJA5nW6H\\\",\\\"name\\\":\\\"trusted\\\"},\\\"AWeCwKqts\\\":{\\\"pattern\\\":\\\":AWeCwKqts\\\",\\\"name\\\":\\\"compare\\\"}}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Gqtd3rM7G\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LNYyHxZQI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"bNAIMtQ6a\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerResponsiveScreen\":\"\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"6285.5\",\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\",\"framerColorSyntax\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],"mappings":"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"}