{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/7BYkgMowqPPlrVEjs7N3/ozQzi0xhCS2V8RtqcpFB/Counter.js", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js", "ssg:https://framerusercontent.com/modules/jEPK0MXM5Gk0RRLKvZqw/GSKWNGtb9OwMWw3PudNw/cH8AiB6P_.js", "ssg:https://framerusercontent.com/modules/gVMTDYjTQivAtALhkjmI/atFUJmewZddV6Msbwxzy/IheBVLkdP.js", "ssg:https://framer.com/m/Utils-Component-Message-ZVoG.js", "ssg:https://framerusercontent.com/modules/IT2yoWfYkMOUw1y7WouH/cLHux5WXn78o6KzYK382/SVGPathShimmer_Prod.js", "ssg:https://framerusercontent.com/modules/PSmevZ6jCxWiaWWgv4mn/hvYg5TZQCK2nlnljHvjM/pdnK4tFIz.js", "ssg:https://framerusercontent.com/modules/qn0gBaIEW8nejTPGCpKL/OOfsXm3ayYXnxrspWbBc/lkRgZeUOs.js", "ssg:https://framerusercontent.com/modules/Gt7mY67XFfJA6BpDQpqg/zzaGzbYYkvIz0sTtj1sV/BUykMJh4m.js", "ssg:https://framerusercontent.com/modules/LQCxSmq2LnernMt3BkD7/EqY3asLtdLLUP1eZOkMr/PANkcS6iS.js", "ssg:https://ga.jspm.io/npm:phenomenon@1.6.0/dist/phenomenon.mjs", "ssg:https://ga.jspm.io/npm:cobe@0.6.0/dist/index.esm.js", "ssg:https://framerusercontent.com/modules/xFhv3ETdRBLjJusGaZ1P/SY4EOdo4KxEvLISnWiR3/Globe.js", "ssg:https://framerusercontent.com/modules/Xq0utQLutgXFBMpINBlq/B07PvCcVObfAJX2N2zZU/sAN7MCV5h.js", "ssg:https://framerusercontent.com/modules/ZKKgcm9Gi0stfMfDVpWS/9lx29E95BlmuJ2pHrXVK/WD2WFdvXQ.js", "ssg:https://framerusercontent.com/modules/IdLO5ib6arvZuYU808e0/YPsBO9BJy4fixasOe6py/RAiJrmR1B.js", "ssg:https://framerusercontent.com/modules/7jFt2eKO4L4XiQLCARJk/Kl72Lwjs2Nv6eMLNVHgE/BUykMJh4m.js", "ssg:https://framerusercontent.com/modules/9UwSc8MHKepE37qsVXtI/CPYoC03UW5VGw6gnnjhL/PANkcS6iS.js", "ssg:https://framerusercontent.com/modules/oGzyl8Rd1ZJvlSnE4FDk/2KjVq6JdN3vKts7kwRqb/WD2WFdvXQ.js", "ssg:https://framerusercontent.com/modules/ipeHh0NVf2oXhnItpJaD/p6xQGf5GDze3BNkOLtVt/xTBHZsT14.js", "ssg:https://framerusercontent.com/modules/T5xJQCT3Kv95NTGAbR6s/zprn280GjGmqpinBvFHJ/WZ0xCCJS_.js", "ssg:https://framerusercontent.com/modules/R75U3bUlv9IAYZfZeREJ/zj9EoQnq789VbnaqLg4y/Y_U1JhsT5.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{animate,motion,useInView,useMotionValue,useTransform}from\"framer-motion\";import{useEffect,useRef}from\"react\";import{addPropertyControls,ControlType}from\"framer\";// ==================\n// Added formatNumberWithCommas function\n// ==================\nfunction formatNumberWithCommas(number){return number.toString().replace(/\\B(?=(\\d{3})+(?!\\d))/g,\",\");}// ==================\nfunction AnimatedCounter({from,to,duration,fontFamily,fontSize,color,lineHeight}){const count=useMotionValue(from);// ==================\n// Modified useTransform hook to use formatNumberWithCommas\n// ==================\nconst rounded=useTransform(count,latest=>{return formatNumberWithCommas(Math.round(latest));});// ==================\nconst ref=useRef(null);const inView=useInView(ref);// while in view animate the count\nuseEffect(()=>{if(inView){animate(count,to,{duration});}},[count,inView,to,duration]);return /*#__PURE__*/_jsx(motion.span,{ref:ref,style:{fontFamily,fontSize,color,lineHeight},children:rounded});}AnimatedCounter.defaultProps={from:0,to:15,duration:2.5,fontFamily:\"Arial\",fontSize:24,color:\"#000000\",lineHeight:1.5};addPropertyControls(AnimatedCounter,{from:{type:ControlType.Number,title:\"From\",defaultValue:0,min:0,step:1},to:{type:ControlType.Number,title:\"To\",defaultValue:15,min:0,step:1},duration:{type:ControlType.Number,title:\"Duration\",defaultValue:2.5,min:0,step:.1,displayStepper:true},fontFamily:{type:ControlType.String,title:\"Font Family\",defaultValue:\"Arial\"},fontSize:{type:ControlType.Number,title:\"Font Size\",defaultValue:24,min:12,max:72,step:1},color:{type:ControlType.Color,title:\"Color\",defaultValue:\"#000000\"},lineHeight:{// Added lineHeight property control\ntype:ControlType.Number,title:\"Line Height\",defaultValue:1.5,min:0,step:.1,displayStepper:true}});export default AnimatedCounter;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"AnimatedCounter\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Counter.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots=[],gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const currentTarget=RenderTarget.current();const isCanvas=currentTarget===RenderTarget.canvas||currentTarget===RenderTarget.export;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[{current:null},{current:null}];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=null;let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useLayoutEffect(()=>{frame.read(measure,false,true);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure,false,true);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...child.props?.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},child.props?.children)})});});}const isInView=isCanvas?true:useInView(parentRef);if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",willChange:!isInView?undefined:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...child.props?.style,width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},child.props?.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}));}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);const playOrPause=useCallback(()=>{if(!animationRef.current)return;const hidden=document.hidden;if(isInView&&!hidden&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if((!isInView||hidden)&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);useEffect(()=>{playOrPause();},[isInView,hoverFactor,animateToValue,speed]);useEffect(()=>{document.addEventListener(\"visibilitychange\",playOrPause);return()=>{document.removeEventListener(\"visibilitychange\",playOrPause);};},[playOrPause]);}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas||!isInView?\"auto\":\"transform\",transform:transformer(0)},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* 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:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (e010222)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"}]}];export const css=['.framer-BseNh .framer-styles-preset-1khckfh:not(.rich-text-wrapper), .framer-BseNh .framer-styles-preset-1khckfh.rich-text-wrapper p { --framer-font-family: \"Inter\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 150%; --framer-paragraph-spacing: 20px; --framer-text-alignment: center; --framer-text-color: var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, #16101e); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-BseNh .framer-styles-preset-1khckfh:not(.rich-text-wrapper), .framer-BseNh .framer-styles-preset-1khckfh.rich-text-wrapper p { --framer-font-family: \"Inter\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 150%; --framer-paragraph-spacing: 20px; --framer-text-alignment: center; --framer-text-color: var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, #16101e); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-BseNh .framer-styles-preset-1khckfh:not(.rich-text-wrapper), .framer-BseNh .framer-styles-preset-1khckfh.rich-text-wrapper p { --framer-font-family: \"Inter\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 150%; --framer-paragraph-spacing: 20px; --framer-text-alignment: center; --framer-text-color: var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, #16101e); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-BseNh\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (e010222)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/jEPK0MXM5Gk0RRLKvZqw/GSKWNGtb9OwMWw3PudNw/cH8AiB6P_.js\";const serializationHash=\"framer-Jow5Z\";const variantClassNames={e9d0VXo0E:\"framer-v-yn665m\"};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=({height,id,title,width,...props})=>{var _ref;return{...props,ovJvdDBRs:(_ref=title!==null&&title!==void 0?title:props.ovJvdDBRs)!==null&&_ref!==void 0?_ref:\"Access to Emails\"};};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,ovJvdDBRs,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"e9d0VXo0E\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-yn665m\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"e9d0VXo0E\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-781d11f5-bf5d-4746-9aec-b794f5ae2c6e, rgb(216, 223, 229))\",borderBottomLeftRadius:228,borderBottomRightRadius:228,borderTopLeftRadius:228,borderTopRightRadius:228,...style},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1khckfh\",\"data-styles-preset\":\"cH8AiB6P_\",children:\"Access to Emails\"})}),className:\"framer-bpezph\",\"data-framer-name\":\"Help With Cold Email\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"VMzz6Y2sb\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:ovJvdDBRs,verticalAlignment:\"center\",withExternalLayout:true})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Jow5Z.framer-1ehdv5r, .framer-Jow5Z .framer-1ehdv5r { display: block; }\",\".framer-Jow5Z.framer-yn665m { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 12px 24px 12px 24px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-Jow5Z .framer-bpezph { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Jow5Z.framer-yn665m { gap: 0px; } .framer-Jow5Z.framer-yn665m > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Jow5Z.framer-yn665m > :first-child { margin-top: 0px; } .framer-Jow5Z.framer-yn665m > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 48\n * @framerIntrinsicWidth 176\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"ovJvdDBRs\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerIheBVLkdP=withCSS(Component,css,\"framer-Jow5Z\");export default FramerIheBVLkdP;FramerIheBVLkdP.displayName=\"Elements / Advantage\";FramerIheBVLkdP.defaultProps={height:48,width:176};addPropertyControls(FramerIheBVLkdP,{ovJvdDBRs:{defaultValue:\"Access to Emails\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(FramerIheBVLkdP,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerIheBVLkdP\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"ovJvdDBRs\\\":\\\"title\\\"}\",\"framerIntrinsicWidth\":\"176\",\"framerIntrinsicHeight\":\"48\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (1bcc82d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const serializationHash=\"framer-ZpfHZ\";const variantClassNames={XvqTw0Be9:\"framer-v-jjcw9a\"};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=({height,id,subtitle,title,width,...props})=>{return{...props,WuF2iG84P:subtitle??props.WuF2iG84P??\"Set up the component by adding background and bouncer elements to the component properties.\",yeAnKbEUZ:title??props.yeAnKbEUZ??\"Screen Saver\"};};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,yeAnKbEUZ,WuF2iG84P,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"XvqTw0Be9\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-jjcw9a\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"XvqTw0Be9\",ref:refBinding,style:{backgroundColor:\"rgba(136, 85, 255, 0.1)\",...style},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-uh2i08\",layoutDependency:layoutDependency,layoutId:\"aM7oiNoFL\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-flw0dh\",\"data-framer-name\":\"Logo\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"GthLmGmBt\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 28\"><g><path d=\"M 0 0 L 28 0 L 28 28 L 0 28 Z\" fill=\"transparent\"></path><path d=\"M 21 7.113 C 21 7.041 21.029 6.971 21.079 6.921 L 27.534 0.465 C 27.613 0.388 27.73 0.365 27.831 0.407 C 27.933 0.449 28 0.548 28 0.658 L 28 13.888 C 28 13.96 27.971 14.028 27.921 14.079 L 21 21 Z M 7 21 L 7 7.658 C 7 7.548 6.933 7.449 6.831 7.407 C 6.73 7.365 6.613 7.388 6.534 7.465 L 0.079 13.921 C 0.028 13.972 0 14.041 0 14.113 L 0 27.728 C 0 27.877 0.122 28 0.273 28 L 13.888 28 C 13.96 28 14.028 27.971 14.079 27.921 L 21 21 Z\" fill=\"rgb(153, 102, 255)\"></path></g></svg>',svgContentId:11036020200,withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-k3ullq\",layoutDependency:layoutDependency,layoutId:\"E3DQBYSAf\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(153, 102, 255))\"},children:\"Screen Saver\"})}),className:\"framer-q0gs4u\",\"data-framer-name\":\"Title\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"UqJwZqJjg\",style:{\"--extracted-r6o4lv\":\"rgb(153, 102, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:yeAnKbEUZ,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"11px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(153, 102, 255, 0.7))\"},children:\"Set up the component by adding background and bouncer elements to the component properties.\"})}),className:\"framer-g5dqhc\",\"data-framer-name\":\"Subtitle\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"RJ7UF99m8\",style:{\"--extracted-r6o4lv\":\"rgba(153, 102, 255, 0.7)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:WuF2iG84P,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ZpfHZ.framer-qanqo2, .framer-ZpfHZ .framer-qanqo2 { display: block; }\",\".framer-ZpfHZ.framer-jjcw9a { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 200px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 400px; }\",\".framer-ZpfHZ .framer-uh2i08 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 20px 0px 20px; position: relative; width: 1px; }\",\".framer-ZpfHZ .framer-flw0dh { flex: none; height: 28px; position: relative; width: 28px; }\",\".framer-ZpfHZ .framer-k3ullq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; max-width: 200px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ZpfHZ .framer-q0gs4u, .framer-ZpfHZ .framer-g5dqhc { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 200\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"yeAnKbEUZ\":\"title\",\"WuF2iG84P\":\"subtitle\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerW7oLCU4_B=withCSS(Component,css,\"framer-ZpfHZ\");export default FramerW7oLCU4_B;FramerW7oLCU4_B.displayName=\"Utils/Component Message\";FramerW7oLCU4_B.defaultProps={height:200,width:400};addPropertyControls(FramerW7oLCU4_B,{yeAnKbEUZ:{defaultValue:\"Screen Saver\",displayTextArea:false,title:\"Title\",type:ControlType.String},WuF2iG84P:{defaultValue:\"Set up the component by adding background and bouncer elements to the component properties.\",displayTextArea:false,title:\"Subtitle\",type:ControlType.String}});addFonts(FramerW7oLCU4_B,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerW7oLCU4_B\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerVariables\":\"{\\\"yeAnKbEUZ\\\":\\\"title\\\",\\\"WuF2iG84P\\\":\\\"subtitle\\\"}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerColorSyntax\":\"true\",\"framerAutoSizeImages\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./W7oLCU4_B.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{Children,useEffect,useState,useMemo,useRef,cloneElement}from\"react\";import{motion,useInView,animate,useMotionValue,useTransform}from\"framer-motion\";import UtilsComponentMessage from\"https://framer.com/m/Utils-Component-Message-ZVoG.js\";var Mode;(function(Mode){Mode[\"Layer\"]=\"layer\";Mode[\"SVG\"]=\"svg\";})(Mode||(Mode={}));var SVGType;(function(SVGType){SVGType[\"Image\"]=\"image\";SVGType[\"File\"]=\"file\";})(SVGType||(SVGType={}));/**\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n *\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 200\n */export default function SVGPathShimmer({mode,layer,svgType,svgImage,svgFile,baseColor,shimmerColor,length,transition,direction,loopMode,loopDelay,trigger,replay,style}){const isCanvas=RenderTarget.current()===RenderTarget.canvas;const hasChildren=mode===\"layer\"?Children.count(layer)>0:false;const reverse=direction===\"reverse\";const loop=loopMode!==\"once\";const shapeTransition={...transition,repeat:loop?Infinity:0,repeatType:loopMode===\"mirror\"?\"reverse\":loopMode,repeatDelay:loop?loopDelay:0};const[svgContent,setSvgContent]=useState(null);const[isLoading,setIsLoading]=useState(false);const[loadingError,setLoadingError]=useState(null);const[currentAnimation,setCurrentAnimation]=useState(null);const ref=useRef(null);const isInView=useInView(ref,{once:!replay&&!loop,amount:\"some\"});const progressMotionValue=useMotionValue(0);const[scale,setScale]=useState(1);const[padding,setPadding]=useState({horizontal:0,vertical:0});const[originalSize,setOriginalSize]=useState({width:0,height:0});const containerRef=useRef(null);const hasSvg=mode===\"svg\"?!!svgContent:hasChildren;const runAnimation=()=>{if(isCanvas)return;if(currentAnimation){currentAnimation.stop();}setCurrentAnimation(animate(0,1,{...shapeTransition,onUpdate:latest=>{progressMotionValue.set(latest);}}));};useEffect(()=>{async function fetchSVG(){if(mode!==\"svg\")return;setIsLoading(true);setLoadingError(null);setSvgContent(null);const url=svgType===\"image\"?svgImage?.src:svgFile;if(!url){setIsLoading(false);return;}const content=await loadAndValidateSVG(url);if(!content){setLoadingError(true);setIsLoading(false);return;}setSvgContent(content);setIsLoading(false);}fetchSVG();},[mode,svgType,svgType===\"image\"?svgImage?.src:svgFile]);useEffect(()=>{if(trigger===\"appear\"){runAnimation();}// Add cleanup function\nreturn()=>{if(currentAnimation){currentAnimation.stop();}};},[trigger,hasSvg]);useEffect(()=>{if(trigger===\"layerInView\"){if(isInView&&hasSvg){runAnimation();}else{if(currentAnimation){currentAnimation.stop();}progressMotionValue.set(0);}}},[isInView,trigger,hasSvg]);// First effect to capture original SVG size once ref is available\nuseEffect(()=>{if(!isCanvas||mode!==\"layer\"||!hasChildren)return;// Use rAF to ensure we measure after the ref is attached\nconst measureSvg=()=>{const svg=containerRef.current?.querySelector(\"div:has(> svg)\");if(!svg){requestAnimationFrame(measureSvg);return;}setOriginalSize({width:svg.offsetWidth,height:svg.offsetHeight});};requestAnimationFrame(measureSvg);},[isCanvas,mode,hasChildren]);// Second effect to handle resize observation\nuseEffect(()=>{if(!isCanvas||mode!==\"layer\"||!hasChildren||!containerRef.current)return;const container=containerRef.current;const updateScale=()=>{const containerWidth=container.offsetWidth;const containerHeight=container.offsetHeight;let newScale=1;const newPadding={horizontal:0,vertical:0};// Only proceed with scaling if we have the dimensions we need\nif(style?.width&&style?.height){if(originalSize.width&&originalSize.height){newScale=Math.min(containerWidth/originalSize.width,containerHeight/originalSize.height);}}else if(style?.width){if(originalSize.width){newScale=containerWidth/originalSize.width;newPadding.vertical=(containerHeight*newScale-containerHeight)/2;}}else if(style?.height){if(originalSize.height){newScale=containerHeight/originalSize.height;newPadding.horizontal=(containerWidth*newScale-containerWidth)/2;}}setScale(newScale);setPadding(newPadding);};const resizeObserver=new ResizeObserver(updateScale);resizeObserver.observe(container);updateScale()// Initial calculation\n;return()=>{resizeObserver.disconnect();};},[isCanvas,mode,hasChildren,originalSize.width,originalSize.height,style?.width,style?.height]);let svgElement=null;let svgContents=null;let svgViewbox=\"\";let viewboxWidth=0;let viewboxHeight=0;const start=100+length+length;const end=length;const parsedSvgData=useMemo(()=>{if(mode!==\"svg\"||!svgContent||isLoading){return null;}const parser=new DOMParser;const doc=parser.parseFromString(svgContent,\"image/svg+xml\");const svg=doc.querySelector(\"svg\");const path=doc.querySelector(\"path\");if(!svg||!path){return null;}const width=parseFloat(svg.getAttribute(\"width\")||\"100\");const height=parseFloat(svg.getAttribute(\"height\")||\"100\");const viewBox=svg.getAttribute(\"viewBox\")||`0 0 ${width} ${height}`;const pathD=path.getAttribute(\"d\")||\"\";const stroke=path.getAttribute(\"stroke\")||\"transparent\";const strokeWidth=path.getAttribute(\"stroke-width\")||\"1\";const strokeLinecap=path.getAttribute(\"stroke-linecap\")||\"round\";const strokeLinejoin=path.getAttribute(\"stroke-linejoin\")||\"round\";return{width,height,viewBox,pathD,stroke,strokeWidth,strokeLinecap,strokeLinejoin};},[mode,svgContent,isLoading]);const parsedLayerData=useMemo(()=>{if(mode!==\"layer\"||!hasChildren||isCanvas){return null;}const firstChild=getFirstChild(layer);const svgChild=getFirstChild(firstChild?.props?.svg);if(!svgChild){return null;}const attributes=svgChild.match(/[\\w-]+=\"[^\"]*\"/g);let pathD;let stroke;let strokeWidth;let strokeLinecap;let strokeLinejoin;for(const element of attributes){if(element.startsWith(\"d=\")){pathD=splitAndReplace(element);}if(element.startsWith(\"stroke=\")){stroke=splitAndReplace(element);}if(element.startsWith(\"stroke-width=\")){strokeWidth=splitAndReplace(element);}if(element.startsWith(\"stroke-linecap=\")){strokeLinecap=splitAndReplace(element);}if(element.startsWith(\"stroke-linejoin=\")){strokeLinejoin=splitAndReplace(element);}}const viewBoxMatch=svgChild.split(\"viewBox=\")[1];const viewBox=viewBoxMatch.split(\">\")[0].replace(/^\"(.+(?=\"$))\"$/,\"$1\");const viewBoxWidth=parseFloat(viewBox.split(\" \")[2]);const viewBoxHeight=parseFloat(viewBox.split(\" \")[3]);return{pathD,stroke,strokeWidth,strokeLinecap,strokeLinejoin,viewBox,viewBoxWidth,viewBoxHeight};},[mode,layer,hasChildren,isCanvas]);const opacity=useTransform(progressMotionValue,value=>{const strokeLinecap=mode===\"svg\"?parsedSvgData?.strokeLinecap:parsedLayerData?.strokeLinecap;if(strokeLinecap===\"round\"||strokeLinecap===\"square\"){return transformOpacity(value);}return 1;});const strokeDashoffsetTransform=useTransform(progressMotionValue,[0,1],reverse?[end,start]:[start,end]);if(mode===\"svg\"){if(!isLoading&&svgContent&&parsedSvgData){const{width,height,viewBox,pathD,stroke,strokeWidth,strokeLinecap,strokeLinejoin}=parsedSvgData;viewboxWidth=width;viewboxHeight=height;svgViewbox=viewBox;svgContents=[/*#__PURE__*/_jsx(\"path\",{d:pathD,stroke:baseColor||stroke,strokeWidth:strokeWidth,strokeLinejoin:strokeLinejoin,strokeLinecap:strokeLinecap,fill:\"transparent\"}),/*#__PURE__*/_jsx(motion.path,{style:{strokeDashoffset:strokeDashoffsetTransform},strokeDasharray:`${length} 100`,d:pathD,stroke:shimmerColor,strokeWidth:strokeWidth,strokeLinejoin:strokeLinejoin,strokeLinecap:strokeLinecap,fill:\"transparent\",pathLength:100,opacity:opacity})];}}else if(hasChildren){if(isCanvas){svgElement=getFirstChild(layer);}else if(parsedLayerData){const{pathD,stroke,strokeWidth,strokeLinecap,strokeLinejoin,viewBox,viewBoxWidth,viewBoxHeight}=parsedLayerData;svgViewbox=viewBox;viewboxWidth=viewBoxWidth;viewboxHeight=viewBoxHeight;svgContents=[/*#__PURE__*/_jsx(\"path\",{d:pathD,stroke:stroke,strokeWidth:strokeWidth,strokeLinejoin:strokeLinejoin,strokeLinecap:strokeLinecap,fill:\"transparent\"}),/*#__PURE__*/_jsx(motion.path,{style:{strokeDashoffset:strokeDashoffsetTransform},strokeDasharray:`${length} 100`,d:pathD,stroke:shimmerColor,strokeWidth:strokeWidth,strokeLinejoin:strokeLinejoin,strokeLinecap:strokeLinecap,fill:\"transparent\",pathLength:100,opacity:opacity})];}}// Apply the scale and padding after they're calculated\nif(svgElement&&isCanvas){svgElement=/*#__PURE__*/cloneElement(svgElement,{style:{transform:`scale(${scale})`,transformOrigin:\"center\",...svgElement.props.style}});}return svgElement||svgContents?/*#__PURE__*/_jsx(\"div\",{style:{display:\"flex\",placeContent:\"center\",placeItems:\"center\",backgroundColor:\"transparent\",overflow:\"hidden\",position:\"relative\",paddingLeft:padding.horizontal,paddingRight:padding.horizontal,paddingTop:padding.vertical,paddingBottom:padding.vertical,...style},children:/*#__PURE__*/_jsx(\"div\",{\"data-tag-here\":true,ref:containerRef,style:{display:\"flex\",placeContent:\"center\",placeItems:\"center\",backgroundColor:\"transparent\",position:\"relative\",...style},children:svgElement||/*#__PURE__*/_jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",viewBox:svgViewbox,style:{width:style?.width??(style?.height?\"auto\":viewboxWidth),height:style?.height??(style?.width?\"auto\":viewboxHeight)},children:svgContents})})}):mode===\"svg\"&&!isLoading&&!svgContent&&!(svgType===\"image\"?svgImage?.src:svgFile)||mode===\"layer\"&&!hasChildren?/*#__PURE__*/_jsx(\"div\",{ref:ref,style:style,children:/*#__PURE__*/_jsx(UtilsComponentMessage,{style:style,title:loadingError?\"Error loading SVG\":\"SVG Path Shimmer\",subtitle:loadingError?\"Invalid SVG file. Please provide a valid SVG.\":\"Connect a graphic layer using the handle or upload an SVG file.\"})}):/*#__PURE__*/_jsx(\"div\",{ref:ref,style:style});}SVGPathShimmer.displayName=\"SVG Path Shimmer\";addPropertyControls(SVGPathShimmer,{mode:{type:ControlType.Enum,defaultValue:\"layer\",options:[\"layer\",\"svg\"],optionTitles:[\"Graphic\",\"SVG\"],displaySegmentedControl:true},layer:{type:ControlType.ComponentInstance,description:\"Select a Graphic layer\",hidden:props=>props.mode!==\"layer\"},svgType:{type:ControlType.Enum,defaultValue:\"image\",options:[\"image\",\"file\"],optionTitles:[\"Image\",\"File\"],displaySegmentedControl:true,title:\"SVG Type\",hidden:props=>props.mode!==\"svg\"},svgImage:{type:ControlType.ResponsiveImage,title:\"SVG\",description:\"Must be an SVG file\",hidden:props=>props.mode!==\"svg\"||props.svgType!==\"image\"},svgFile:{type:ControlType.File,allowedFileTypes:[\"svg\"],title:\"SVG\",description:\"Must be an SVG file\",hidden:props=>props.mode!==\"svg\"||props.svgType!==\"file\"},baseColor:{type:ControlType.Color,optional:true,title:\"Color\",hidden:props=>props.mode!==\"svg\"},shimmerColor:{type:ControlType.Color,title:\"Shimmer\",defaultValue:\"#0099FF\"},length:{type:ControlType.Number,defaultValue:20,min:0,max:100,step:1,unit:\"%\"},transition:{type:ControlType.Transition,defaultValue:{type:\"tween\",ease:[0,0,1,1],duration:2,delay:0}},trigger:{type:ControlType.Enum,defaultValue:\"appear\",options:[\"appear\",\"layerInView\"],optionTitles:[\"Appear\",\"Layer in View\"],displaySegmentedControl:true,segmentedControlDirection:\"vertical\"},loopMode:{type:ControlType.Enum,defaultValue:\"loop\",options:[\"loop\",\"mirror\",\"once\"],optionTitles:[\"Loop\",\"Mirror\",\"Once\"],displaySegmentedControl:true,title:\"Animation\"},loopDelay:{type:ControlType.Number,defaultValue:0,min:0,max:60,step:.1,hidden:props=>props.loopMode===\"once\"},replay:{type:ControlType.Boolean,defaultValue:true,hidden:props=>props.trigger!==\"layerInView\"||props.loopMode!==\"once\"},direction:{type:ControlType.Enum,defaultValue:\"default\",options:[\"default\",\"reverse\"],optionTitles:[\"Default\",\"Reverse\"],displaySegmentedControl:true,description:\"More components at [Framer University](https://frameruni.link/cc).\"}});function getFirstChild(slots){let firstChild;Children.map(slots,child=>{if(firstChild===undefined){firstChild=child;}});return firstChild;}function splitAndReplace(string){return string.split(\"=\")[1].replace(/['\"]+/g,\"\");}async function loadAndValidateSVG(url){try{const response=await fetch(url);const text=await response.text();// Basic validation that it's an SVG\nif(!text.includes(\"<svg\")||!text.includes(\"</svg>\")){return null;}return text;}catch(error){console.error(\"Error loading SVG:\",error);return null;}}function transformOpacity(input){// Ensure input is within the valid range\nif(input<0||input>1){return 0;}const lowerThreshold=.01;const upperThreshold=1-lowerThreshold;if(input<=lowerThreshold){// Linear interpolation from 0 to 1 for inputs between 0 and 0.025\nreturn input/lowerThreshold;}else if(input>=upperThreshold){// Linear interpolation from 1 to 0 for inputs between 0.975 and 1\nreturn(1-input)/lowerThreshold;}else{// All values between 0.025 and 0.975 return 1\nreturn 1;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SVGPathShimmer\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SVGPathShimmer_Prod.map", "// Generated by Framer (e010222)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-Medium\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-MediumItalic\"]);export const fonts=[{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/khkJkwSL66WFg8SX6Wa726c.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/0E7IMbDzcGABpBwwqNEt60wU0w.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/NTJ0nQgIF0gcDelS14zQ9NR9Q.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/QrcNhgEPfRl0LS8qz5Ln8olanl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/JEXmejW8mXOYMtt0hyRg811kHac.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/ksvR4VsLksjpSwnC2fPgHRNMw.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/uy9s0iWuxiNnVt8EpTI3gzohpwo.woff2\",weight:\"500\"}]}];export const css=['.framer-KlF4h .framer-styles-preset-8b8zds:not(.rich-text-wrapper), .framer-KlF4h .framer-styles-preset-8b8zds.rich-text-wrapper h4 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0em; --framer-line-height: 150%; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, #16101e); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-KlF4h .framer-styles-preset-8b8zds:not(.rich-text-wrapper), .framer-KlF4h .framer-styles-preset-8b8zds.rich-text-wrapper h4 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0em; --framer-line-height: 150%; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, #16101e); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-KlF4h .framer-styles-preset-8b8zds:not(.rich-text-wrapper), .framer-KlF4h .framer-styles-preset-8b8zds.rich-text-wrapper h4 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0em; --framer-line-height: 150%; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, #16101e); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-KlF4h\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (e010222)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getPropertyControls,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import{Icon as Phosphor1}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/jEPK0MXM5Gk0RRLKvZqw/GSKWNGtb9OwMWw3PudNw/cH8AiB6P_.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/PSmevZ6jCxWiaWWgv4mn/hvYg5TZQCK2nlnljHvjM/pdnK4tFIz.js\";const PhosphorFonts=getFonts(Phosphor);const Phosphor1Controls=getPropertyControls(Phosphor1);const cycleOrder=[\"wzIzdQABf\",\"Yc883RX6d\"];const serializationHash=\"framer-mPkjn\";const variantClassNames={wzIzdQABf:\"framer-v-13qpo4o\",Yc883RX6d:\"framer-v-1vrol3m\"};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 humanReadableVariantMap={\"Variant 1\":\"wzIzdQABf\",\"Variant 2\":\"Yc883RX6d\"};const getProps=({height,icon,id,title,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1,_ref2;return{...props,NMnyt2y6k:(_ref=title!==null&&title!==void 0?title:props.NMnyt2y6k)!==null&&_ref!==void 0?_ref:\"Real-Time Insights\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"wzIzdQABf\",xdkOQuJsM:(_ref2=icon!==null&&icon!==void 0?icon:props.xdkOQuJsM)!==null&&_ref2!==void 0?_ref2:\"Pulse\"};};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,xdkOQuJsM,NMnyt2y6k,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"wzIzdQABf\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-13qpo4o\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"wzIzdQABf\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({Yc883RX6d:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ahhr2i-container\",layoutDependency:layoutDependency,layoutId:\"yPTdfej8L-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-e4409358-08fe-4ba3-8dc3-7989b447f0b6, rgb(119, 75, 229))\",height:\"100%\",iconSearch:\"House\",iconSelection:xdkOQuJsM,id:\"yPTdfej8L\",layoutId:\"yPTdfej8L\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\",...addPropertyOverrides({Yc883RX6d:{color:\"var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(14, 28, 41))\",weight:\"regular\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-8b8zds\",\"data-styles-preset\":\"pdnK4tFIz\",children:\"Real-Time Insights\"})}),className:\"framer-1e77uz\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"VlOReWFck\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:1},text:NMnyt2y6k,variants:{Yc883RX6d:{opacity:.8}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Yc883RX6d:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1khckfh\",\"data-styles-preset\":\"cH8AiB6P_\",children:\"Real-Time Insights\"})})}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-mPkjn.framer-ehl83r, .framer-mPkjn .framer-ehl83r { display: block; }\",\".framer-mPkjn.framer-13qpo4o { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-mPkjn .framer-1ahhr2i-container { flex: none; height: 32px; position: relative; width: 32px; }\",\".framer-mPkjn .framer-1e77uz { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-mPkjn.framer-13qpo4o { gap: 0px; } .framer-mPkjn.framer-13qpo4o > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-mPkjn.framer-13qpo4o > :first-child { margin-left: 0px; } .framer-mPkjn.framer-13qpo4o > :last-child { margin-right: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 36\n * @framerIntrinsicWidth 254\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"Yc883RX6d\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"xdkOQuJsM\":\"icon\",\"NMnyt2y6k\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerlkRgZeUOs=withCSS(Component,css,\"framer-mPkjn\");export default FramerlkRgZeUOs;FramerlkRgZeUOs.displayName=\"icon & text\";FramerlkRgZeUOs.defaultProps={height:36,width:254};addPropertyControls(FramerlkRgZeUOs,{variant:{options:[\"wzIzdQABf\",\"Yc883RX6d\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},xdkOQuJsM:(Phosphor1Controls===null||Phosphor1Controls===void 0?void 0:Phosphor1Controls[\"iconSelection\"])&&{...Phosphor1Controls[\"iconSelection\"],defaultValue:\"Pulse\",description:\"\",hidden:undefined,title:\"icon\"},NMnyt2y6k:{defaultValue:\"Real-Time Insights\",displayTextArea:false,title:\"title\",type:ControlType.String}});addFonts(FramerlkRgZeUOs,[{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\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerlkRgZeUOs\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"36\",\"framerIntrinsicWidth\":\"254\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"xdkOQuJsM\\\":\\\"icon\\\",\\\"NMnyt2y6k\\\":\\\"title\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Yc883RX6d\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (38f2e7f)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";const PhosphorFonts=getFonts(Phosphor);const PhosphorControls=getPropertyControls(Phosphor);const cycleOrder=[\"s7oSoGnCJ\",\"eHQ18xGTV\",\"Wqa1x0qiK\"];const serializationHash=\"framer-QuJfx\";const variantClassNames={eHQ18xGTV:\"framer-v-lcramb\",s7oSoGnCJ:\"framer-v-1azxv1u\",Wqa1x0qiK:\"framer-v-6t427x\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Default Hover\":\"eHQ18xGTV\",\"Tech Logos\":\"Wqa1x0qiK\",Default:\"s7oSoGnCJ\"};const getProps=({color,height,icon,iconColor,id,width,...props})=>{var _ref,_ref1,_ref2,_humanReadableVariantMap_props_variant,_ref3;return{...props,EoRzbrjsT:(_ref=icon!==null&&icon!==void 0?icon:props.EoRzbrjsT)!==null&&_ref!==void 0?_ref:\"Medal\",Nq_Rs3OxD:(_ref1=color!==null&&color!==void 0?color:props.Nq_Rs3OxD)!==null&&_ref1!==void 0?_ref1:\"var(--token-0267a0c5-75bb-463a-a014-9612ec56e85c, rgb(197, 51, 255))\",SJfRTtovi:(_ref2=iconColor!==null&&iconColor!==void 0?iconColor:props.SJfRTtovi)!==null&&_ref2!==void 0?_ref2:\"var(--token-ac66fc94-fc42-4186-9956-f4984338c966, rgb(255, 255, 255))\",variant:(_ref3=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref3!==void 0?_ref3:\"s7oSoGnCJ\"};};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,EoRzbrjsT,Nq_Rs3OxD,SJfRTtovi,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"s7oSoGnCJ\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1azxv1u\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"s7oSoGnCJ\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({eHQ18xGTV:{\"data-framer-name\":\"Default Hover\"},Wqa1x0qiK:{\"data-framer-name\":\"Tech Logos\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-cong5m\",layoutDependency:layoutDependency,layoutId:\"yKiXvWQhx\",style:{backgroundColor:Nq_Rs3OxD,borderBottomLeftRadius:96,borderBottomRightRadius:96,borderTopLeftRadius:96,borderTopRightRadius:96,boxShadow:\"0px 10px 20px 0px rgba(0, 0, 0, 0.05)\",scale:1},variants:{eHQ18xGTV:{scale:1.1}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1r0akvp-container\",layoutDependency:layoutDependency,layoutId:\"hqFrIMkRZ-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:SJfRTtovi,height:\"100%\",iconSearch:\"House\",iconSelection:EoRzbrjsT,id:\"hqFrIMkRZ\",layoutId:\"hqFrIMkRZ\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-QuJfx.framer-l17zu8, .framer-QuJfx .framer-l17zu8 { display: block; }\",\".framer-QuJfx.framer-1azxv1u { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: 48px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 48px; }\",\".framer-QuJfx .framer-cong5m { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: var(--framer-aspect-ratio-supported, 48px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-QuJfx .framer-1r0akvp-container { flex: none; height: 24px; position: relative; width: 24px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-QuJfx.framer-1azxv1u, .framer-QuJfx .framer-cong5m { gap: 0px; } .framer-QuJfx.framer-1azxv1u > *, .framer-QuJfx .framer-cong5m > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-QuJfx.framer-1azxv1u > :first-child, .framer-QuJfx .framer-cong5m > :first-child { margin-left: 0px; } .framer-QuJfx.framer-1azxv1u > :last-child, .framer-QuJfx .framer-cong5m > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 48\n * @framerIntrinsicWidth 48\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"eHQ18xGTV\":{\"layout\":[\"fixed\",\"fixed\"]},\"Wqa1x0qiK\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"EoRzbrjsT\":\"icon\",\"Nq_Rs3OxD\":\"color\",\"SJfRTtovi\":\"iconColor\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerBUykMJh4m=withCSS(Component,css,\"framer-QuJfx\");export default FramerBUykMJh4m;FramerBUykMJh4m.displayName=\"Features/SEO icons\";FramerBUykMJh4m.defaultProps={height:48,width:48};addPropertyControls(FramerBUykMJh4m,{variant:{options:[\"s7oSoGnCJ\",\"eHQ18xGTV\",\"Wqa1x0qiK\"],optionTitles:[\"Default\",\"Default Hover\",\"Tech Logos\"],title:\"Variant\",type:ControlType.Enum},EoRzbrjsT:(PhosphorControls===null||PhosphorControls===void 0?void 0:PhosphorControls[\"iconSelection\"])&&{...PhosphorControls[\"iconSelection\"],defaultValue:\"Medal\",description:undefined,hidden:undefined,title:\"Icon\"},Nq_Rs3OxD:{defaultValue:\"var(--token-0267a0c5-75bb-463a-a014-9612ec56e85c, rgb(197, 51, 255))\",title:\"Color\",type:ControlType.Color},SJfRTtovi:{defaultValue:'var(--token-ac66fc94-fc42-4186-9956-f4984338c966, rgb(255, 255, 255)) /* {\"name\":\"White\"} */',title:\"Icon Color\",type:ControlType.Color}});addFonts(FramerBUykMJh4m,[{explicitInter:true,fonts:[]},...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerBUykMJh4m\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"48\",\"framerIntrinsicWidth\":\"48\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"EoRzbrjsT\\\":\\\"icon\\\",\\\"Nq_Rs3OxD\\\":\\\"color\\\",\\\"SJfRTtovi\\\":\\\"iconColor\\\"}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"eHQ18xGTV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Wqa1x0qiK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./BUykMJh4m.map", "// Generated by Framer (8857874)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as localizedValues from\"./PANkcS6iS-0.js\";const PhosphorFonts=getFonts(Phosphor);const cycleOrder=[\"a8yvCfoiX\"];const serializationHash=\"framer-Vm0Jn\";const variantClassNames={a8yvCfoiX:\"framer-v-7uh43f\"};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 valuesByLocaleId={Ej4NyNWfn:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"a8yvCfoiX\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-7uh43f\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"a8yvCfoiX\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgba(255, 255, 255, 0.75)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"0px 0px 10px 0px rgba(0, 0, 0, 0.05)\",...style},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15bi93k\",\"data-framer-name\":\"Card Content\",layoutDependency:layoutDependency,layoutId:\"j_jq_4T0f\",style:{background:'linear-gradient(150deg, var(--token-31a65de1-0bdc-417c-8cef-dd9f23c4a095, rgb(255, 184, 51)) /* {\"name\":\"Orange/60\"} */ 0%, var(--token-0267a0c5-75bb-463a-a014-9612ec56e85c, rgb(197, 51, 255)) /* {\"name\":\"Purple/60\"} */ 100%)',borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bb5kmk\",layoutDependency:layoutDependency,layoutId:\"hdz3k4DZC\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RmFoa3dhbmctNzAw\",\"--framer-font-family\":'\"Fahkwang\", \"Fahkwang Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ac66fc94-fc42-4186-9956-f4984338c966, rgb(255, 255, 255)))\"},children:\"mybank\"})}),className:\"framer-1nvhh7l\",fonts:[\"GF;Fahkwang-700\"],layoutDependency:layoutDependency,layoutId:\"fUNiIeXqi\",style:{\"--extracted-r6o4lv\":\"var(--token-ac66fc94-fc42-4186-9956-f4984338c966, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-82vnxq\",layoutDependency:layoutDependency,layoutId:\"QoAWzBfT_\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gxzbdc-container\",layoutDependency:layoutDependency,layoutId:\"qqQo6WeSR-container\",style:{rotate:90},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-ac66fc94-fc42-4186-9956-f4984338c966, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"WifiHigh\",id:\"qqQo6WeSR\",layoutId:\"qqQo6WeSR\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1x61ran\",layoutDependency:layoutDependency,layoutId:\"tnBDcRLkl\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RmFoa3dhbmctcmVndWxhcg==\",\"--framer-font-family\":'\"Fahkwang\", \"Fahkwang Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ac66fc94-fc42-4186-9956-f4984338c966, rgb(255, 255, 255)))\"},children:\"Sony Wallace\"})}),className:\"framer-geks9x\",fonts:[\"GF;Fahkwang-regular\"],layoutDependency:layoutDependency,layoutId:\"jYpYj3TdT\",style:{\"--extracted-r6o4lv\":\"var(--token-ac66fc94-fc42-4186-9956-f4984338c966, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RmFoa3dhbmctcmVndWxhcg==\",\"--framer-font-family\":'\"Fahkwang\", \"Fahkwang Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ac66fc94-fc42-4186-9956-f4984338c966, rgb(255, 255, 255)))\"},children:\"08/25\"})}),className:\"framer-154s9yr\",fonts:[\"GF;Fahkwang-regular\"],layoutDependency:layoutDependency,layoutId:\"NhMnL11Pd\",style:{\"--extracted-r6o4lv\":\"var(--token-ac66fc94-fc42-4186-9956-f4984338c966, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Vm0Jn.framer-1mvjv40, .framer-Vm0Jn .framer-1mvjv40 { display: block; }\",\".framer-Vm0Jn.framer-7uh43f { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 4px; position: relative; width: min-content; }\",\".framer-Vm0Jn .framer-15bi93k { align-content: center; align-items: center; aspect-ratio: 1.5925925925925926 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: var(--framer-aspect-ratio-supported, 126px); justify-content: space-between; overflow: hidden; padding: 12px; position: relative; width: 200px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-Vm0Jn .framer-1bb5kmk, .framer-Vm0Jn .framer-1x61ran { 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-Vm0Jn .framer-1nvhh7l, .framer-Vm0Jn .framer-geks9x, .framer-Vm0Jn .framer-154s9yr { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Vm0Jn .framer-82vnxq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-Vm0Jn .framer-1gxzbdc-container { flex: none; height: 18px; position: relative; width: 18px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Vm0Jn.framer-7uh43f, .framer-Vm0Jn .framer-82vnxq { gap: 0px; } .framer-Vm0Jn.framer-7uh43f > *, .framer-Vm0Jn .framer-82vnxq > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-Vm0Jn.framer-7uh43f > :first-child, .framer-Vm0Jn .framer-82vnxq > :first-child { margin-left: 0px; } .framer-Vm0Jn.framer-7uh43f > :last-child, .framer-Vm0Jn .framer-82vnxq > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 134\n * @framerIntrinsicWidth 208\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerPANkcS6iS=withCSS(Component,css,\"framer-Vm0Jn\");export default FramerPANkcS6iS;FramerPANkcS6iS.displayName=\"Features/Card\";FramerPANkcS6iS.defaultProps={height:134,width:208};addFonts(FramerPANkcS6iS,[{explicitInter:true,fonts:[{family:\"Fahkwang\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/fahkwang/v16/Noa26Uj3zpmBOgbNpOIznZlUFipxkwjx.woff2\",weight:\"700\"},{family:\"Fahkwang\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/fahkwang/v16/Noax6Uj3zpmBOgbNpNqKsr1ZPTZ4.woff2\",weight:\"400\"}]},...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerPANkcS6iS\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"208\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"134\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./PANkcS6iS.map", "var t=[\"x\",\"y\",\"z\"],e=function(t){Object.assign(this,{uniforms:{},geometry:{vertices:[{x:0,y:0,z:0}]},mode:0,modifiers:{},attributes:[],multiplier:1,buffers:[]}),Object.assign(this,t),this.prepareProgram(),this.prepareUniforms(),this.prepareAttributes()};e.prototype.compileShader=function(t,r){var s=this.gl.createShader(t);return this.gl.shaderSource(s,r),this.gl.compileShader(s),s},e.prototype.prepareProgram=function(){var t=this.gl,r=this.vertex,s=this.fragment,n=t.createProgram();t.attachShader(n,this.compileShader(35633,r)),t.attachShader(n,this.compileShader(35632,s)),t.linkProgram(n),t.useProgram(n),this.program=n},e.prototype.prepareUniforms=function(){for(var t=Object.keys(this.uniforms),r=0;r<t.length;r+=1){var s=this.gl.getUniformLocation(this.program,t[r]);this.uniforms[t[r]].location=s}},e.prototype.prepareAttributes=function(){void 0!==this.geometry.vertices&&this.attributes.push({name:\"aPosition\",size:3}),void 0!==this.geometry.normal&&this.attributes.push({name:\"aNormal\",size:3}),this.attributeKeys=[];for(var t=0;t<this.attributes.length;t+=1)this.attributeKeys.push(this.attributes[t].name),this.prepareAttribute(this.attributes[t])},e.prototype.prepareAttribute=function(r){for(var s=this.geometry,n=this.multiplier,a=s.vertices,o=s.normal,h=new Float32Array(n*a.length*r.size),u=0;u<n;u+=1)for(var f=r.data&&r.data(u,n),c=u*a.length*r.size,l=0;l<a.length;l+=1)for(var p=0;p<r.size;p+=1){var m=this.modifiers[r.name];h[c]=void 0!==m?m(f,l,p,this):\"aPosition\"===r.name?a[l][t[p]]:\"aNormal\"===r.name?o[l][t[p]]:f[p],c+=1}this.attributes[this.attributeKeys.indexOf(r.name)].data=h,this.prepareBuffer(this.attributes[this.attributeKeys.indexOf(r.name)])},e.prototype.prepareBuffer=function(t){var r=t.data,s=t.name,n=t.size,a=this.gl.createBuffer();this.gl.bindBuffer(34962,a),this.gl.bufferData(34962,r,35044);var o=this.gl.getAttribLocation(this.program,s);this.gl.enableVertexAttribArray(o),this.gl.vertexAttribPointer(o,n,5126,!1,0,0),this.buffers[this.attributeKeys.indexOf(t.name)]={buffer:a,location:o,size:n}},e.prototype.render=function(t){var r=this,s=this.uniforms,n=this.multiplier,a=this.gl;a.useProgram(this.program);for(var o=0;o<this.buffers.length;o+=1){var h=this.buffers[o],u=h.location,f=h.buffer,c=h.size;a.enableVertexAttribArray(u),a.bindBuffer(34962,f),a.vertexAttribPointer(u,c,5126,!1,0,0)}Object.keys(t).forEach((function(r){s[r].value=t[r].value})),Object.keys(s).forEach((function(t){var n=s[t];r.uniformMap[n.type](n.location,n.value)})),a.drawArrays(this.mode,0,n*this.geometry.vertices.length),this.onRender&&this.onRender(this)},e.prototype.destroy=function(){for(var t=0;t<this.buffers.length;t+=1)this.gl.deleteBuffer(this.buffers[t].buffer);this.gl.deleteProgram(this.program),this.gl=null};var i=function(t){var r=this,s=t||{},n=s.canvas;void 0===n&&(n=document.querySelector(\"canvas\"));var a=s.context;void 0===a&&(a={});var o=s.contextType;void 0===o&&(o=\"experimental-webgl\");var h=s.settings;void 0===h&&(h={});var u=n.getContext(o,Object.assign({alpha:!1,antialias:!1},a));Object.assign(this,{gl:u,canvas:n,uniforms:{},instances:new Map,shouldRender:!0}),Object.assign(this,{devicePixelRatio:1,clearColor:[1,1,1,1],position:{x:0,y:0,z:2},clip:[.001,100]}),Object.assign(this,h),this.uniformMap={float:function(t,r){return u.uniform1f(t,r)},vec2:function(t,r){return u.uniform2fv(t,r)},vec3:function(t,r){return u.uniform3fv(t,r)},vec4:function(t,r){return u.uniform4fv(t,r)},mat2:function(t,r){return u.uniformMatrix2fv(t,!1,r)},mat3:function(t,r){return u.uniformMatrix3fv(t,!1,r)},mat4:function(t,r){return u.uniformMatrix4fv(t,!1,r)}},u.enable(u.DEPTH_TEST),u.depthFunc(u.LEQUAL),!1===u.getContextAttributes().alpha&&(u.clearColor.apply(u,this.clearColor),u.clearDepth(1)),this.onSetup&&this.onSetup(u),window.addEventListener(\"resize\",(function(){return r.resize()})),this.resize(),this.render()};i.prototype.resize=function(){var t=this.gl,r=this.canvas,s=this.devicePixelRatio,n=this.position;r.width=r.clientWidth*s,r.height=r.clientHeight*s;var a=t.drawingBufferWidth,o=t.drawingBufferHeight,h=a/o;t.viewport(0,0,a,o);var u=Math.tan(Math.PI/180*22.5),f=[1,0,0,0,0,1,0,0,0,0,1,0,n.x,n.y,(h<1?1:h)*-n.z,1];this.uniforms.uProjectionMatrix={type:\"mat4\",value:[.5/u,0,0,0,0,h/u*.5,0,0,0,0,-(this.clip[1]+this.clip[0])/(this.clip[1]-this.clip[0]),-1,0,0,-2*this.clip[1]*(this.clip[0]/(this.clip[1]-this.clip[0])),0]},this.uniforms.uViewMatrix={type:\"mat4\",value:[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1]},this.uniforms.uModelMatrix={type:\"mat4\",value:f}},i.prototype.toggle=function(t){t!==this.shouldRender&&(this.shouldRender=void 0!==t?t:!this.shouldRender,this.shouldRender&&this.render())},i.prototype.render=function(){var t=this;this.gl.clear(16640),this.instances.forEach((function(r){r.render(t.uniforms)})),this.onRender&&this.onRender(this),this.shouldRender&&requestAnimationFrame((function(){return t.render()}))},i.prototype.add=function(t,r){void 0===r&&(r={uniforms:{}}),void 0===r.uniforms&&(r.uniforms={}),Object.assign(r.uniforms,JSON.parse(JSON.stringify(this.uniforms))),Object.assign(r,{gl:this.gl,uniformMap:this.uniformMap});var s=new e(r);return this.instances.set(t,s),s},i.prototype.remove=function(t){var r=this.instances.get(t);void 0!==r&&(r.destroy(),this.instances.delete(t))},i.prototype.destroy=function(){var t=this;this.instances.forEach((function(r,s){r.destroy(),t.instances.delete(s)})),this.toggle(!1)};export default i;\n\n//# sourceMappingURL=phenomenon.mjs.map", "import e from\"phenomenon\";var a=\"phi\",o=\"theta\",t=\"mapSamples\",i=\"mapBrightness\",f=\"baseColor\",r=\"markerColor\",l=\"glowColor\",c=\"markers\",n=\"diffuse\",A=\"devicePixelRatio\",g=\"dark\",v=\"offset\",s=\"scale\",d={[a]:\"A\",[o]:\"B\",[t]:\"k\",[i]:\"E\",[f]:\"L\",[r]:\"M\",[l]:\"y\",[n]:\"F\",[g]:\"G\",[v]:\"x\",[s]:\"C\"},{PI:u,sin:m,cos:x}=Math,U=e=>[].concat(...e.map((e=>{let[a,o]=e.location;a=a*u/180,o=o*u/180-u;let t=x(a);return[-t*x(o),m(a),t*m(o),e.size]})),[0,0,0,0]),D=(u,m)=>{let _=(e,a,o)=>({type:e,value:\"undefined\"==typeof m[a]?o:m[a]}),x=u.getContext(\"webgl\")?\"webgl\":\"experimental-webgl\",y=new e({canvas:u,contextType:x,context:{alpha:!0,stencil:!1,antialias:!0,depth:!1,preserveDrawingBuffer:!1},settings:{[A]:m[A]||1,onSetup:e=>{let a=e.RGB,o=e.UNSIGNED_BYTE,t=e.TEXTURE_2D,i=e.createTexture();e.bindTexture(t,i),e.texImage2D(t,0,a,1,1,0,a,o,new Uint8Array([0,0,0,0]));let f=new Image;f.onload=()=>{e.bindTexture(t,i),e.texImage2D(t,0,a,a,o,f),e.generateMipmap(t);let r=e.getParameter(e.CURRENT_PROGRAM),l=e.getUniformLocation(r,\"H\");e.texParameteri(t,e.TEXTURE_MIN_FILTER,e.NEAREST),e.texParameteri(t,e.TEXTURE_MAG_FILTER,e.NEAREST),e.uniform1i(l,0)},f.src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAACAAQAAAADMzoqnAAAAAXNSR0IArs4c6QAABA5JREFUeNrV179uHEUAx/Hf3JpbF+E2VASBsmVKTBcpKJs3SMEDcDwBiVJAAewYEBUivIHT0uUBIt0YCovKD0CRjUC4QfHYh8hYXu+P25vZ2Zm9c66gMd/GJ/tz82d3bk8GN4SrByYF2366FNTACIAkivVAAazQdnf3MvAlbNUQfOPAdQDvSAimMWhwy4I2g4SU+Kp04ISLpPBAKLxPyic3O/CCi+Y7rUJbiodcpDOFY7CgxCEXmdYD2EYK2s5lApOx5pEDDYCUwM1XdJUwBV11QQMg59kePSCaPAASQMEL2hwo6TJFgxpg+TgC2ymXPbuvc40awr3D1QCFfbH9kcoqAOkZozpQo0aqAGQRKCog/+tjkgbNFEtg2FffBvBGlSxHoAaAa1u6X4PBAwDiR8FFsrQgeUhfJTSALaB9jy5NCybJPn1SVFiWk7ywN+KzhH1aKAuydhGkbEF4lWohLXDXavlyFgHY7LBnLRdlAP6BS5Cc8RfVDXbkwN/oIvmY+6obbNeBP0JwTuMGu9gTzy1Q4RS/cWpfzszeYwd+CAFrtBW/Hur0gLbJGlD+/OjVwe/drfBxkbbg63dndEDfiEBlAd7ac0BPe1D6Jd8dfbLH+RI0OzseFB5s01/M+gMdAeluLOCAuaUA9Lezo/vSgXoCX9rtEiXnp7Q1W/CNyWcd8DXoS6jH/YZ5vAJEWY2dXFQe2TUgaFaNejCzJ98g6HnlVrsE58sDcYqg+9XY75fPqdoh/kRQWiXKg8MWlJQxUFMPjqnyujhFBE7UxIMjyszk0QwQlFsezImsyvUYYYVED2pk6m0Tg8T04Fwjk2kdAwSACqlM6gRRt3vQYAFGX0Ah7Ebx1H+MDRI5ui0QldH4j7FGcm90XdxD2Jg1AOEAVAKhEFXSn4cKUELurIAKwJ3MArypPscQaLhJFICJ0ohjDySAdH8AhDtCiTuMycH8CXzhH9jUACAO5uMhoAwA5i+T6WAKmmAqnLy80wxHqIPFYpqCwxGaYLt4Dyievg5kEoVEUAhs6pqKgFtDQYOuaXypaWKQfIuwwoGSZgfLsu/XAtI8cGN+h7Cc1A5oLOMhwlIPXuhu48AIvsSBkvtV9wsJRKCyYLfq5lTrQMFd1a262oqBck9K1V0YjQg0iEYYgpS1A9GlXQV5cykwm4A7BzVsxQqo7E+zCegO7Ma7yKgsuOcfKbMBwLC8wvVNYDsANYalEpOAa6zpWjTeMKGwEwC1CiQewJc5EKfgy7GmRAZA4vUVGwE2dPM/g0xuAInE/yG5aZ8ISxWGfYigUVbdyBElTHh2uCwGdfCkOLGgQVBh3Ewp+/QK4CDlR5Ws/Zf7yhCf8pH7vinWAvoVCQ6zz0NX5V/6GkAVV+2/5qsJ/gU8bsxpM8IeAQAAAABJRU5ErkJggg==\"}}});return y.add(\"\",{vertex:\"attribute vec3 aPosition;uniform mat4 uProjectionMatrix;uniform mat4 uModelMatrix;uniform mat4 uViewMatrix;void main(){gl_Position=uProjectionMatrix*uModelMatrix*uViewMatrix*vec4(aPosition,1.);}\",fragment:\"precision highp float;uniform vec2 r,x;uniform vec3 L,M,y;uniform vec4 z[64];uniform float A,B,k,C,D,E,F,G;uniform sampler2D H;float I=1./k;mat3 J(float a,float b){float c=cos(a),d=cos(b),e=sin(a),f=sin(b);return mat3(d,f*e,-f*c,0.,c,e,f,d*-e,d*c);}vec3 v(vec3 c,out float w){c=c.xzy;float p=max(2.,floor(log2(2.236068*k*3.141593*(1.-c.z*c.z))*.72021));vec2 g=floor(pow(1.618034,p)/2.236068*vec2(1.,1.618034)+.5),d=fract((g+1.)*.618034)*6.283185-3.883222,e=-2.*g,f=vec2(atan(c.y,c.x),c.z-1.),q=floor(vec2(e.y*f.x-d.y*(f.y*k+1.),-e.x*f.x+d.x*(f.y*k+1.))/(d.x*e.y-e.x*d.y));float n=3.141593;vec3 s;for(float h=0.;h<4.;h+=1.){vec2 t=vec2(mod(h,2.),floor(h*.5));float j=dot(g,q+t);if(j>k)continue;float a=j,b=0.;if(a>=524288.)a-=524288.,b+=.803894;if(a>=262144.)a-=262144.,b+=.901947;if(a>=131072.)a-=131072.,b+=.950973;if(a>=65536.)a-=65536.,b+=.475487;if(a>=32768.)a-=32768.,b+=.737743;if(a>=16384.)a-=16384.,b+=.868872;if(a>=8192.)a-=8192.,b+=.934436;if(a>=4096.)a-=4096.,b+=.467218;if(a>=2048.)a-=2048.,b+=.733609;if(a>=1024.)a-=1024.,b+=.866804;if(a>=512.)a-=512.,b+=.433402;if(a>=256.)a-=256.,b+=.216701;if(a>=128.)a-=128.,b+=.108351;if(a>=64.)a-=64.,b+=.554175;if(a>=32.)a-=32.,b+=.777088;if(a>=16.)a-=16.,b+=.888544;if(a>=8.)a-=8.,b+=.944272;if(a>=4.)a-=4.,b+=.472136;if(a>=2.)a-=2.,b+=.236068;if(a>=1.)a-=1.,b+=.618034;float l=fract(b)*6.283185,i=1.-2.*j*I,m=sqrt(1.-i*i);vec3 o=vec3(cos(l)*m,sin(l)*m,i);float u=length(c-o);if(u<n)n=u,s=o;}w=n;return s.xzy;}void main(){vec2 a=(gl_FragCoord.xy/r*2.-1.)/C-x*vec2(1.,-1.)/r;a.x*=r.x/r.y;float c=dot(a,a),b;vec3 d=vec3(0.,0.,1.),e=normalize(vec3(a,sqrt(.64-c)));if(c<=.64){vec3 f=e*J(B,A),g=v(f,b);float j=asin(g.y),h=acos(-g.x/cos(j));h=g.z<0.?-h:h;float t=texture2D(H,vec2(h*.5/3.141593,-(j/3.141593+.5))).x,u=smoothstep(8e-3,0.,b),l=dot(e,d),s=pow(l,F)*E,m=t*u*s,N=mix((1.-m)*pow(l,.4),m,G)+.1;gl_FragColor=vec4(L*N,1.);int O=int(D);float n=0.;for(int i=0;i<64;i++){if(i>=O)break;vec4 o=z[i];vec3 p=o.xyz,w=p-f;float q=o.w;if(dot(w,w)>q*q*4.)continue;vec3 P=v(p,b);b=length(P-f),b<q?n+=smoothstep(q*.5,0.,b):0.;}n=min(1.,n*s),gl_FragColor.xyz=mix(gl_FragColor.xyz,M,n),gl_FragColor.xyz+=pow(1.-dot(e,d),4.)*y;}float K=pow(dot(normalize(vec3(-a,sqrt(1.-c))),d),4.)*smoothstep(.1,1.,.2/(c-.64));gl_FragColor+=vec4(K*y,K);}\",uniforms:{r:{type:\"vec2\",value:[m.width,m.height]},A:_(\"float\",a),B:_(\"float\",o),k:_(\"float\",t),E:_(\"float\",i),L:_(\"vec3\",f),M:_(\"vec3\",r),F:_(\"float\",n),y:_(\"vec3\",l),G:_(\"float\",g),z:{type:\"vec4\",value:U(m[c])},D:{type:\"float\",value:m[c].length},x:_(\"vec2\",v,[0,0]),C:_(\"float\",s,1)},mode:4,geometry:{vertices:[{x:-100,y:100,z:0},{x:-100,y:-100,z:0},{x:100,y:100,z:0},{x:100,y:-100,z:0},{x:-100,y:-100,z:0},{x:100,y:100,z:0}]},onRender:({uniforms:e})=>{let a={};if(m.onRender){m.onRender(a);for(let o in d)void 0!==a[o]&&(e[d[o]].value=a[o]);void 0!==a[c]&&(e.z.value=U(a[c]),e.D.value=a[c].length),a.width&&a.height&&(e.r.value=[a.width,a.height])}}}),y};export{D as default};\n\n//# sourceMappingURL=index.esm.js.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,Color}from\"framer\";import{useEffect,useRef}from\"react\";import createGlobe from\"cobe\";import{useSpring}from\"framer-motion\";import{useIsStaticRenderer}from\"framer\";/**\n * GLOBE FOR FRAMER\n * @framerIntrinsicWidth 300\n * @framerIntrinsicHeight 300\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Globe(props){const{background,baseColor,glowColor,isDraggable,dragOptions,speed,theta,phi,dark,diffuse,maxSamples,mapBrightness,markerSize,markerArray,markerColor,scale,alignment,maxWidth,offset}=props;const{offsetX,offsetY}=offset;const{stiffness,damping,mass}=dragOptions;const canvasRef=useRef();const pointerInteracting=useRef(null);const pointerInteractionMovement=useRef(0);const isCanvas=useIsStaticRenderer();const r=useSpring(0,{stiffness:stiffness,damping:damping,mass:mass,restDelta:1e-4,restSpeed:1e-4});const fadeMask=\"radial-gradient(circle at 50% 50%, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 70%)\";useEffect(()=>{let phiValue=phi;let width=0;const onResize=()=>{if(canvasRef.current&&(width=canvasRef.current.offsetWidth)){window.addEventListener(\"resize\",onResize);}};onResize();const baseConvert=convertRGB(baseColor);const glowConvert=convertRGB(glowColor);const markerConvert=convertRGB(markerColor);const globe=createGlobe(canvasRef.current,{devicePixelRatio:2,width:width*2,height:width*2,phi:phi,theta:theta,dark:dark,diffuse:diffuse,mapSamples:maxSamples,mapBrightness:mapBrightness,baseColor:[baseConvert.r,baseConvert.g,baseConvert.b],glowColor:[glowConvert.r,glowConvert.g,glowConvert.b],markerColor:[markerConvert.r,markerConvert.g,markerConvert.b],markers:markerArray.map(marker=>{return{location:[marker.latitude,marker.longitude],size:markerSize};}),scale:scale,offset:[offsetX,offsetY],onRender:state=>{if(!isCanvas){state.phi=phiValue+r.get();}state.width=width*2;state.height=width*2;if(!isCanvas){state.phi=phiValue+r.get();phiValue+=speed/200;}}});return()=>{globe.destroy();};},[props]);return /*#__PURE__*/_jsx(\"div\",{style:{...flexStyles,placeItems:alignment,background:background},children:/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",aspectRatio:\"1/1\",maxWidth:maxWidth,WebkitMaskImage:fadeMask,MozMaskImage:fadeMask,maskImage:fadeMask},children:/*#__PURE__*/_jsx(\"canvas\",{ref:canvasRef,style:{width:\"100%\",height:\"100%\",contain:\"layout paint size\",cursor:\"auto\",userSelect:\"none\"},onPointerDown:e=>{if(isDraggable){pointerInteracting.current=e.clientX-pointerInteractionMovement.current;canvasRef.current.style.cursor=\"grabbing\";}},onPointerUp:()=>{if(isDraggable){pointerInteracting.current=null;canvasRef.current.style.cursor=\"grab\";}},onPointerOver:()=>{if(isDraggable){canvasRef.current.style.cursor=\"grab\";}},onPointerOut:()=>{if(isDraggable){pointerInteracting.current=null;canvasRef.current.style.cursor=\"auto\";}},onMouseMove:e=>{if(isDraggable){if(pointerInteracting.current!==null){const delta=e.clientX-pointerInteracting.current;pointerInteractionMovement.current=delta;r.set(delta/100);}}},onTouchMove:e=>{if(pointerInteracting.current!==null&&e.touches[0]){const delta=e.touches[0].clientX-pointerInteracting.current;pointerInteractionMovement.current=delta;r.set(delta/100);}}})})});}/* Default properties */Globe.defaultProps={background:\"#000000\",baseColor:\"#333333\",glowColor:\"#ffffff\",markerColor:\"#ffffff\",isDraggable:true,dragOptions:{stiffness:200,damping:40,mass:1},speed:1,phi:0,theta:.3,dark:1,diffuse:2,mapBrightness:20,maxSamples:2e4,markerSize:.1,markerArray:{latitude:52.3676,longitude:4.9041},scale:1,alignment:\"center\",maxWidth:800,offset:{offsetX:0,offsetY:0}};Globe.displayName=\"Globe\";const dp=Globe.defaultProps;const dpOffset=Globe.defaultProps.offset;const dpDrag=Globe.defaultProps.dragOptions;addPropertyControls(Globe,{background:{type:ControlType.Color,title:\"Backdrop\",defaultValue:dp.background},baseColor:{type:ControlType.Color,title:\"Base\",defaultValue:dp.baseColor},glowColor:{type:ControlType.Color,title:\"Glow\",defaultValue:dp.glowColor},markerColor:{type:ControlType.Color,title:\"Marker\",defaultValue:dp.markerColor},isDraggable:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:dp.isDraggable},dragOptions:{type:ControlType.Object,title:\"Transition\",controls:{stiffness:{type:ControlType.Number,min:0,max:1e3,title:\"Stiffness\",defaultValue:dpDrag.stiffness},damping:{type:ControlType.Number,min:0,max:100,title:\"Damping\",defaultValue:dpDrag.damping},mass:{type:ControlType.Number,min:0,title:\"Mass\",displayStepper:true,defaultValue:dpDrag.mass}},hidden(props){return!props.isDraggable;}},speed:{type:ControlType.Number,min:0,step:.1,displayStepper:true,title:\"Speed\",defaultValue:dp.speed},phi:{type:ControlType.Number,min:0,max:6.28,step:.01,displayStepper:true,title:\"Phi\",defaultValue:dp.phi},theta:{type:ControlType.Number,min:-1.57,max:1.57,step:.01,title:\"Theta\",defaultValue:dp.theta},dark:{type:ControlType.Number,min:0,max:1,step:.1,displayStepper:true,title:\"Dark\",defaultValue:dp.dark},diffuse:{type:ControlType.Number,min:0,max:5,step:.01,title:\"Diffuse\",defaultValue:dp.diffuse},mapBrightness:{type:ControlType.Number,min:0,max:12,step:.01,title:\"Brightness\",defaultValue:dp.mapBrightness},maxSamples:{type:ControlType.Number,min:0,max:1e5,title:\"Samples\",defaultValue:dp.maxSamples},scale:{type:ControlType.Number,min:0,max:5,step:.025,displayStepper:true,title:\"Scale\",defaultValue:dp.scale},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:[\"align-top\",\"align-middle\",\"align-bottom\"],defaultValue:dp.alignment,displaySegmentedControl:true},maxWidth:{type:ControlType.Number,title:\"Max Width\",min:100,max:5e3,defaultValue:dp.maxWidth},offset:{type:ControlType.Object,title:\"Offset\",controls:{offsetX:{type:ControlType.Number,min:-5e3,max:5e3,title:\"X\",defaultValue:dpOffset.offsetX},offsetY:{type:ControlType.Number,min:-5e3,max:5e3,title:\"Y\",defaultValue:dpOffset.offsetY}}},markerSize:{type:ControlType.Number,min:0,max:1,step:.01,title:\"Markers\",defaultValue:dp.markerSize},markerArray:{type:ControlType.Array,title:\"Location\",// defaultValue: [{ latitude: 52.3676, longitude: 4.9041 }],\ncontrol:{type:ControlType.Object,title:\"Location\",controls:{latitude:{type:ControlType.Number,min:-90,max:90,title:\"Lat\",step:1e-4,defaultValue:dp.markerArray.latitude},longitude:{type:ControlType.Number,min:-180,max:180,title:\"Long\",step:1e-4,defaultValue:dp.markerArray.longitude}}}}});/* Styles */const flexStyles={width:\"100%\",height:\"100%\",display:\"flex\",placeItems:\"center\",placeContent:\"center\",overflow:\"visible\"};/* Functions */const convertRGB=color=>{return{r:Color(color).r/255,g:Color(color).g/255,b:Color(color).b/255};};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Globe\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"300\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"300\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Globe.map", "// Generated by Framer (38f2e7f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";const PhosphorFonts=getFonts(Phosphor);const cycleOrder=[\"mK5AzJA_U\",\"RQnhII3Ws\"];const serializationHash=\"framer-Rrly7\";const variantClassNames={mK5AzJA_U:\"framer-v-z77hw3\",RQnhII3Ws:\"framer-v-1g8um7e\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Default:\"mK5AzJA_U\",Wireframe:\"RQnhII3Ws\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"mK5AzJA_U\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"mK5AzJA_U\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"RQnhII3Ws\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"RQnhII3Ws\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-z77hw3\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"mK5AzJA_U\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-7e863056-5bee-4444-a43b-367cd97d6d18, rgb(0, 0, 0))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,boxShadow:\"none\",...style},variants:{RQnhII3Ws:{backgroundColor:\"var(--token-3eec1626-9e53-4873-8b58-5351e0ae78c0, rgb(250, 250, 250))\",boxShadow:\"0px 10px 20px 0px rgba(0, 0, 0, 0.05)\"}},...addPropertyOverrides({RQnhII3Ws:{\"data-framer-name\":\"Wireframe\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-iqf1v6\",\"data-framer-name\":\"Charts\",layoutDependency:layoutDependency,layoutId:\"J4hcXZHkd\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-herr\",layoutDependency:layoutDependency,layoutId:\"v7i_cRrCX\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1e2hp3o\",layoutDependency:layoutDependency,layoutId:\"rGm2a_fDi\",style:{backgroundColor:\"var(--token-de77b155-fe7f-40d9-a65d-e9a9ea6eea4b, rgb(38, 38, 38))\",borderBottomLeftRadius:48,borderBottomRightRadius:48,borderTopLeftRadius:48,borderTopRightRadius:48},variants:{RQnhII3Ws:{backgroundColor:\"var(--token-183c353c-1965-49b4-9a2c-01d599c21231, rgb(166, 166, 166))\"}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-uz8h9h\",layoutDependency:layoutDependency,layoutId:\"mYFeS1O8k\",style:{background:'linear-gradient(140deg, var(--token-f19c34c7-e8ef-4025-92c5-3484fcd0db88, rgb(51, 177, 255)) /* {\"name\":\"Blue/60\"} */ 0%, var(--token-0267a0c5-75bb-463a-a014-9612ec56e85c, rgb(197, 51, 255)) /* {\"name\":\"Purple/60\"} */ 100%)',backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:48,borderBottomRightRadius:48,borderTopLeftRadius:48,borderTopRightRadius:48},variants:{RQnhII3Ws:{background:\"linear-gradient(140deg, var(--token-62515677-32bd-4017-bcb9-5b3703fb3dd2, rgb(204, 204, 204)) 0%, var(--token-62515677-32bd-4017-bcb9-5b3703fb3dd2, rgb(204, 204, 204)) 100%)\",backgroundColor:\"var(--token-62515677-32bd-4017-bcb9-5b3703fb3dd2, rgb(204, 204, 204))\"}}})}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"7px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-62515677-32bd-4017-bcb9-5b3703fb3dd2, rgb(204, 204, 204)))\"},children:\"SUN\"})}),className:\"framer-1hybp31\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"XzCEFzz7S\",style:{\"--extracted-r6o4lv\":\"var(--token-62515677-32bd-4017-bcb9-5b3703fb3dd2, rgb(204, 204, 204))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-7y1wuk\",layoutDependency:layoutDependency,layoutId:\"i_x7ty8Nz\",style:{backgroundColor:\"var(--token-183c353c-1965-49b4-9a2c-01d599c21231, rgb(230, 230, 230))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vg9jmw\",layoutDependency:layoutDependency,layoutId:\"RtmiQxxeG\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ahhgys\",layoutDependency:layoutDependency,layoutId:\"kqcrnwCtr\",style:{backgroundColor:\"var(--token-de77b155-fe7f-40d9-a65d-e9a9ea6eea4b, rgb(38, 38, 38))\",borderBottomLeftRadius:48,borderBottomRightRadius:48,borderTopLeftRadius:48,borderTopRightRadius:48},variants:{RQnhII3Ws:{backgroundColor:\"var(--token-183c353c-1965-49b4-9a2c-01d599c21231, rgb(166, 166, 166))\"}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1i23a07\",layoutDependency:layoutDependency,layoutId:\"qYGFcn6Wp\",style:{background:'linear-gradient(140deg, var(--token-f19c34c7-e8ef-4025-92c5-3484fcd0db88, rgb(51, 177, 255)) /* {\"name\":\"Blue/60\"} */ 0%, var(--token-0267a0c5-75bb-463a-a014-9612ec56e85c, rgb(197, 51, 255)) /* {\"name\":\"Purple/60\"} */ 100%)',backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:48,borderBottomRightRadius:48,borderTopLeftRadius:48,borderTopRightRadius:48},variants:{RQnhII3Ws:{background:\"linear-gradient(140deg, var(--token-62515677-32bd-4017-bcb9-5b3703fb3dd2, rgb(204, 204, 204)) 0%, var(--token-62515677-32bd-4017-bcb9-5b3703fb3dd2, rgb(204, 204, 204)) 100%)\",backgroundColor:\"var(--token-62515677-32bd-4017-bcb9-5b3703fb3dd2, rgb(204, 204, 204))\"}}})}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"7px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-62515677-32bd-4017-bcb9-5b3703fb3dd2, rgb(204, 204, 204)))\"},children:\"MON\"})}),className:\"framer-1wxlltp\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"kAgeUHjim\",style:{\"--extracted-r6o4lv\":\"var(--token-62515677-32bd-4017-bcb9-5b3703fb3dd2, rgb(204, 204, 204))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-ujnopc\",layoutDependency:layoutDependency,layoutId:\"Ub4jrw2oE\",style:{backgroundColor:\"var(--token-183c353c-1965-49b4-9a2c-01d599c21231, rgb(230, 230, 230))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-myramv\",layoutDependency:layoutDependency,layoutId:\"Knl4SMjun\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-gwug95\",layoutDependency:layoutDependency,layoutId:\"u5Q6Jvlej\",style:{backgroundColor:\"var(--token-de77b155-fe7f-40d9-a65d-e9a9ea6eea4b, rgb(38, 38, 38))\",borderBottomLeftRadius:48,borderBottomRightRadius:48,borderTopLeftRadius:48,borderTopRightRadius:48},variants:{RQnhII3Ws:{backgroundColor:\"var(--token-183c353c-1965-49b4-9a2c-01d599c21231, rgb(166, 166, 166))\"}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-kpfvin\",layoutDependency:layoutDependency,layoutId:\"SnW3dorY8\",style:{background:'linear-gradient(140deg, var(--token-f19c34c7-e8ef-4025-92c5-3484fcd0db88, rgb(51, 177, 255)) /* {\"name\":\"Blue/60\"} */ 0%, var(--token-0267a0c5-75bb-463a-a014-9612ec56e85c, rgb(197, 51, 255)) /* {\"name\":\"Purple/60\"} */ 100%)',backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:48,borderBottomRightRadius:48,borderTopLeftRadius:48,borderTopRightRadius:48},variants:{RQnhII3Ws:{background:\"linear-gradient(140deg, var(--token-62515677-32bd-4017-bcb9-5b3703fb3dd2, rgb(204, 204, 204)) 0%, var(--token-62515677-32bd-4017-bcb9-5b3703fb3dd2, rgb(204, 204, 204)) 100%)\",backgroundColor:\"var(--token-62515677-32bd-4017-bcb9-5b3703fb3dd2, rgb(204, 204, 204))\"}}})}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"7px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-62515677-32bd-4017-bcb9-5b3703fb3dd2, rgb(204, 204, 204)))\"},children:\"TUE\"})}),className:\"framer-r0x6cg\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"GGLASIhLH\",style:{\"--extracted-r6o4lv\":\"var(--token-62515677-32bd-4017-bcb9-5b3703fb3dd2, rgb(204, 204, 204))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-vru63e\",layoutDependency:layoutDependency,layoutId:\"YXdp85Ays\",style:{backgroundColor:\"var(--token-183c353c-1965-49b4-9a2c-01d599c21231, rgb(230, 230, 230))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-s3l8cg\",layoutDependency:layoutDependency,layoutId:\"RswEqdV_c\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tfx0nf\",layoutDependency:layoutDependency,layoutId:\"PgAMNLNFe\",style:{backgroundColor:\"var(--token-de77b155-fe7f-40d9-a65d-e9a9ea6eea4b, rgb(38, 38, 38))\",borderBottomLeftRadius:48,borderBottomRightRadius:48,borderTopLeftRadius:48,borderTopRightRadius:48},variants:{RQnhII3Ws:{backgroundColor:\"var(--token-183c353c-1965-49b4-9a2c-01d599c21231, rgb(166, 166, 166))\"}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pf5lso\",layoutDependency:layoutDependency,layoutId:\"b3goDZFZk\",style:{background:'linear-gradient(140deg, var(--token-f19c34c7-e8ef-4025-92c5-3484fcd0db88, rgb(51, 177, 255)) /* {\"name\":\"Blue/60\"} */ 0%, var(--token-0267a0c5-75bb-463a-a014-9612ec56e85c, rgb(197, 51, 255)) /* {\"name\":\"Purple/60\"} */ 100%)',backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:48,borderBottomRightRadius:48,borderTopLeftRadius:48,borderTopRightRadius:48},variants:{RQnhII3Ws:{background:\"linear-gradient(140deg, var(--token-62515677-32bd-4017-bcb9-5b3703fb3dd2, rgb(204, 204, 204)) 0%, var(--token-62515677-32bd-4017-bcb9-5b3703fb3dd2, rgb(204, 204, 204)) 100%)\",backgroundColor:\"var(--token-62515677-32bd-4017-bcb9-5b3703fb3dd2, rgb(204, 204, 204))\"}}})}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"7px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-62515677-32bd-4017-bcb9-5b3703fb3dd2, rgb(204, 204, 204)))\"},children:\"WED\"})}),className:\"framer-115uml4\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"j8bHohmXC\",style:{\"--extracted-r6o4lv\":\"var(--token-62515677-32bd-4017-bcb9-5b3703fb3dd2, rgb(204, 204, 204))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-xprbfp\",layoutDependency:layoutDependency,layoutId:\"UsGY18XoO\",style:{backgroundColor:\"var(--token-183c353c-1965-49b4-9a2c-01d599c21231, rgb(230, 230, 230))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13ujxkv\",layoutDependency:layoutDependency,layoutId:\"GUNquZIEo\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-30bflb\",layoutDependency:layoutDependency,layoutId:\"yGsEzBXdP\",style:{backgroundColor:\"var(--token-de77b155-fe7f-40d9-a65d-e9a9ea6eea4b, rgb(38, 38, 38))\",borderBottomLeftRadius:48,borderBottomRightRadius:48,borderTopLeftRadius:48,borderTopRightRadius:48},variants:{RQnhII3Ws:{backgroundColor:\"var(--token-183c353c-1965-49b4-9a2c-01d599c21231, rgb(166, 166, 166))\"}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-iu0n7p\",layoutDependency:layoutDependency,layoutId:\"QjTAa1RL7\",style:{background:'linear-gradient(140deg, var(--token-f19c34c7-e8ef-4025-92c5-3484fcd0db88, rgb(51, 177, 255)) /* {\"name\":\"Blue/60\"} */ 0%, var(--token-0267a0c5-75bb-463a-a014-9612ec56e85c, rgb(197, 51, 255)) /* {\"name\":\"Purple/60\"} */ 100%)',backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:48,borderBottomRightRadius:48,borderTopLeftRadius:48,borderTopRightRadius:48},variants:{RQnhII3Ws:{background:\"linear-gradient(140deg, var(--token-62515677-32bd-4017-bcb9-5b3703fb3dd2, rgb(204, 204, 204)) 0%, var(--token-62515677-32bd-4017-bcb9-5b3703fb3dd2, rgb(204, 204, 204)) 100%)\",backgroundColor:\"var(--token-62515677-32bd-4017-bcb9-5b3703fb3dd2, rgb(204, 204, 204))\"}}})}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"7px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-62515677-32bd-4017-bcb9-5b3703fb3dd2, rgb(204, 204, 204)))\"},children:\"THU\"})}),className:\"framer-76loek\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"WqPcq2mRT\",style:{\"--extracted-r6o4lv\":\"var(--token-62515677-32bd-4017-bcb9-5b3703fb3dd2, rgb(204, 204, 204))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1aeubru\",layoutDependency:layoutDependency,layoutId:\"T31oDTNeI\",style:{backgroundColor:\"var(--token-183c353c-1965-49b4-9a2c-01d599c21231, rgb(230, 230, 230))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-blkn5u\",layoutDependency:layoutDependency,layoutId:\"kCPqur9ix\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bi8hjs\",layoutDependency:layoutDependency,layoutId:\"hIjVbwb9N\",style:{backgroundColor:\"var(--token-de77b155-fe7f-40d9-a65d-e9a9ea6eea4b, rgb(38, 38, 38))\",borderBottomLeftRadius:48,borderBottomRightRadius:48,borderTopLeftRadius:48,borderTopRightRadius:48},variants:{RQnhII3Ws:{backgroundColor:\"var(--token-183c353c-1965-49b4-9a2c-01d599c21231, rgb(166, 166, 166))\"}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1b549m1\",layoutDependency:layoutDependency,layoutId:\"Hm0t76GrJ\",style:{background:'linear-gradient(140deg, var(--token-f19c34c7-e8ef-4025-92c5-3484fcd0db88, rgb(51, 177, 255)) /* {\"name\":\"Blue/60\"} */ 0%, var(--token-0267a0c5-75bb-463a-a014-9612ec56e85c, rgb(197, 51, 255)) /* {\"name\":\"Purple/60\"} */ 100%)',backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:48,borderBottomRightRadius:48,borderTopLeftRadius:48,borderTopRightRadius:48},variants:{RQnhII3Ws:{background:\"linear-gradient(140deg, var(--token-62515677-32bd-4017-bcb9-5b3703fb3dd2, rgb(204, 204, 204)) 0%, var(--token-62515677-32bd-4017-bcb9-5b3703fb3dd2, rgb(204, 204, 204)) 100%)\",backgroundColor:\"var(--token-62515677-32bd-4017-bcb9-5b3703fb3dd2, rgb(204, 204, 204))\"}}})}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"7px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-62515677-32bd-4017-bcb9-5b3703fb3dd2, rgb(204, 204, 204)))\"},children:\"FRI\"})}),className:\"framer-72shvi\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"AlReTnjhp\",style:{\"--extracted-r6o4lv\":\"var(--token-62515677-32bd-4017-bcb9-5b3703fb3dd2, rgb(204, 204, 204))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mfem6\",layoutDependency:layoutDependency,layoutId:\"xhuOz8_OX\",style:{backgroundColor:\"var(--token-183c353c-1965-49b4-9a2c-01d599c21231, rgb(230, 230, 230))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ee4mqp\",layoutDependency:layoutDependency,layoutId:\"RyyJIs6AA\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mdc8dj\",layoutDependency:layoutDependency,layoutId:\"v6f3WkNnC\",style:{backgroundColor:\"var(--token-de77b155-fe7f-40d9-a65d-e9a9ea6eea4b, rgb(38, 38, 38))\",borderBottomLeftRadius:48,borderBottomRightRadius:48,borderTopLeftRadius:48,borderTopRightRadius:48},variants:{RQnhII3Ws:{backgroundColor:\"var(--token-183c353c-1965-49b4-9a2c-01d599c21231, rgb(166, 166, 166))\"}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-d5h8jt\",layoutDependency:layoutDependency,layoutId:\"p7EwLcPeq\",style:{background:'linear-gradient(140deg, var(--token-f19c34c7-e8ef-4025-92c5-3484fcd0db88, rgb(51, 177, 255)) /* {\"name\":\"Blue/60\"} */ 0%, var(--token-0267a0c5-75bb-463a-a014-9612ec56e85c, rgb(197, 51, 255)) /* {\"name\":\"Purple/60\"} */ 100%)',backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:48,borderBottomRightRadius:48,borderTopLeftRadius:48,borderTopRightRadius:48},variants:{RQnhII3Ws:{background:\"linear-gradient(140deg, var(--token-62515677-32bd-4017-bcb9-5b3703fb3dd2, rgb(204, 204, 204)) 0%, var(--token-62515677-32bd-4017-bcb9-5b3703fb3dd2, rgb(204, 204, 204)) 100%)\",backgroundColor:\"var(--token-62515677-32bd-4017-bcb9-5b3703fb3dd2, rgb(204, 204, 204))\"}}})}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"7px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-62515677-32bd-4017-bcb9-5b3703fb3dd2, rgb(204, 204, 204)))\"},children:\"SAT\"})}),className:\"framer-mrhvfc\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"aV1ZaZEWV\",style:{\"--extracted-r6o4lv\":\"var(--token-62515677-32bd-4017-bcb9-5b3703fb3dd2, rgb(204, 204, 204))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-j838uc\",layoutDependency:layoutDependency,layoutId:\"Y6aKKkvY6\",style:{backgroundColor:\"var(--token-183c353c-1965-49b4-9a2c-01d599c21231, rgb(230, 230, 230))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12}})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-q256sc\",layoutDependency:layoutDependency,layoutId:\"rVo5LVnTF\",style:{backgroundColor:\"var(--token-de77b155-fe7f-40d9-a65d-e9a9ea6eea4b, rgb(38, 38, 38))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},variants:{RQnhII3Ws:{backgroundColor:\"var(--token-183c353c-1965-49b4-9a2c-01d599c21231, rgb(166, 166, 166))\"}},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1r2qruk\",layoutDependency:layoutDependency,layoutId:\"wLfar6LUo\",children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-62515677-32bd-4017-bcb9-5b3703fb3dd2, rgb(204, 204, 204)))\"},children:\"This Week\"})}),className:\"framer-j2uyzg\",fonts:[\"Inter-Light\"],layoutDependency:layoutDependency,layoutId:\"PlGxOU0ij\",style:{\"--extracted-r6o4lv\":\"var(--token-62515677-32bd-4017-bcb9-5b3703fb3dd2, rgb(204, 204, 204))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ac66fc94-fc42-4186-9956-f4984338c966, rgb(255, 255, 255)))\"},children:\"$4,508.00\"})}),className:\"framer-1yuqaqf\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"vyGovvRkc\",style:{\"--extracted-r6o4lv\":\"var(--token-ac66fc94-fc42-4186-9956-f4984338c966, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1h6hgpp\",layoutDependency:layoutDependency,layoutId:\"bT7z0wqJ6\",style:{backgroundColor:\"var(--token-62515677-32bd-4017-bcb9-5b3703fb3dd2, rgb(204, 204, 204))\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4}}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-13x1ce4\",layoutDependency:layoutDependency,layoutId:\"LFYQzh3Ml\",style:{backgroundColor:\"var(--token-62515677-32bd-4017-bcb9-5b3703fb3dd2, rgb(204, 204, 204))\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4}})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kvcet\",layoutDependency:layoutDependency,layoutId:\"fFBXDVRmi\",style:{background:'linear-gradient(150deg, var(--token-f19c34c7-e8ef-4025-92c5-3484fcd0db88, rgb(51, 177, 255)) /* {\"name\":\"Blue/60\"} */ 0%, var(--token-0267a0c5-75bb-463a-a014-9612ec56e85c, rgb(197, 51, 255)) /* {\"name\":\"Purple/60\"} */ 100%)',borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-s1bw72-container\",layoutDependency:layoutDependency,layoutId:\"uGGk8D5UU-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-ac66fc94-fc42-4186-9956-f4984338c966, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"TrendUp\",id:\"uGGk8D5UU\",layoutId:\"uGGk8D5UU\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-vz4g83\",layoutDependency:layoutDependency,layoutId:\"acSgRKJSe\",style:{backgroundColor:\"var(--token-62515677-32bd-4017-bcb9-5b3703fb3dd2, rgb(204, 204, 204))\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4}})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Rrly7.framer-1l3m78u, .framer-Rrly7 .framer-1l3m78u { display: block; }\",\".framer-Rrly7.framer-z77hw3 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 24px 12px 12px 12px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-Rrly7 .framer-iqf1v6 { 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: min-content; }\",\".framer-Rrly7 .framer-herr, .framer-Rrly7 .framer-vg9jmw, .framer-Rrly7 .framer-myramv, .framer-Rrly7 .framer-s3l8cg, .framer-Rrly7 .framer-13ujxkv, .framer-Rrly7 .framer-blkn5u, .framer-Rrly7 .framer-ee4mqp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 36px; }\",\".framer-Rrly7 .framer-1e2hp3o, .framer-Rrly7 .framer-1ahhgys, .framer-Rrly7 .framer-gwug95, .framer-Rrly7 .framer-1tfx0nf, .framer-Rrly7 .framer-30bflb, .framer-Rrly7 .framer-1bi8hjs, .framer-Rrly7 .framer-1mdc8dj { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: 70px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 18px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Rrly7 .framer-uz8h9h { flex: 1 0 0px; height: 30%; overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Rrly7 .framer-1hybp31, .framer-Rrly7 .framer-1wxlltp, .framer-Rrly7 .framer-r0x6cg, .framer-Rrly7 .framer-115uml4, .framer-Rrly7 .framer-76loek, .framer-Rrly7 .framer-72shvi, .framer-Rrly7 .framer-mrhvfc, .framer-Rrly7 .framer-j2uyzg, .framer-Rrly7 .framer-1yuqaqf { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Rrly7 .framer-7y1wuk, .framer-Rrly7 .framer-ujnopc, .framer-Rrly7 .framer-vru63e, .framer-Rrly7 .framer-xprbfp, .framer-Rrly7 .framer-1aeubru, .framer-Rrly7 .framer-1mfem6, .framer-Rrly7 .framer-j838uc { flex: none; height: 8px; overflow: visible; position: relative; width: 18px; }\",\".framer-Rrly7 .framer-1i23a07 { flex: 1 0 0px; height: 45%; overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Rrly7 .framer-kpfvin { flex: 1 0 0px; height: 60%; overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Rrly7 .framer-1pf5lso { flex: 1 0 0px; height: 40%; overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Rrly7 .framer-iu0n7p { flex: 1 0 0px; height: 55%; overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Rrly7 .framer-1b549m1 { flex: 1 0 0px; height: 70%; overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Rrly7 .framer-d5h8jt { flex: 1 0 0px; height: 80%; overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Rrly7 .framer-q256sc { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 8px; position: relative; width: auto; will-change: var(--framer-will-change-override, transform); }\",\".framer-Rrly7 .framer-1r2qruk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 123px; }\",\".framer-Rrly7 .framer-1h6hgpp { flex: none; height: 10px; overflow: visible; position: relative; width: 48px; }\",\".framer-Rrly7 .framer-13x1ce4 { flex: none; height: 22px; overflow: visible; position: relative; width: 96px; }\",\".framer-Rrly7 .framer-1kvcet { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 6px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-Rrly7 .framer-s1bw72-container { flex: none; height: 12px; position: relative; width: 12px; }\",\".framer-Rrly7 .framer-vz4g83 { flex: none; height: 24px; overflow: visible; position: relative; width: 24px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Rrly7.framer-z77hw3, .framer-Rrly7 .framer-iqf1v6, .framer-Rrly7 .framer-herr, .framer-Rrly7 .framer-1e2hp3o, .framer-Rrly7 .framer-vg9jmw, .framer-Rrly7 .framer-1ahhgys, .framer-Rrly7 .framer-myramv, .framer-Rrly7 .framer-gwug95, .framer-Rrly7 .framer-s3l8cg, .framer-Rrly7 .framer-1tfx0nf, .framer-Rrly7 .framer-13ujxkv, .framer-Rrly7 .framer-30bflb, .framer-Rrly7 .framer-blkn5u, .framer-Rrly7 .framer-1bi8hjs, .framer-Rrly7 .framer-ee4mqp, .framer-Rrly7 .framer-1mdc8dj, .framer-Rrly7 .framer-1r2qruk, .framer-Rrly7 .framer-1kvcet { gap: 0px; } .framer-Rrly7.framer-z77hw3 > *, .framer-Rrly7 .framer-herr > *, .framer-Rrly7 .framer-vg9jmw > *, .framer-Rrly7 .framer-myramv > *, .framer-Rrly7 .framer-s3l8cg > *, .framer-Rrly7 .framer-13ujxkv > *, .framer-Rrly7 .framer-blkn5u > *, .framer-Rrly7 .framer-ee4mqp > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-Rrly7.framer-z77hw3 > :first-child, .framer-Rrly7 .framer-herr > :first-child, .framer-Rrly7 .framer-vg9jmw > :first-child, .framer-Rrly7 .framer-myramv > :first-child, .framer-Rrly7 .framer-s3l8cg > :first-child, .framer-Rrly7 .framer-13ujxkv > :first-child, .framer-Rrly7 .framer-blkn5u > :first-child, .framer-Rrly7 .framer-ee4mqp > :first-child, .framer-Rrly7 .framer-1r2qruk > :first-child { margin-top: 0px; } .framer-Rrly7.framer-z77hw3 > :last-child, .framer-Rrly7 .framer-herr > :last-child, .framer-Rrly7 .framer-vg9jmw > :last-child, .framer-Rrly7 .framer-myramv > :last-child, .framer-Rrly7 .framer-s3l8cg > :last-child, .framer-Rrly7 .framer-13ujxkv > :last-child, .framer-Rrly7 .framer-blkn5u > :last-child, .framer-Rrly7 .framer-ee4mqp > :last-child, .framer-Rrly7 .framer-1r2qruk > :last-child { margin-bottom: 0px; } .framer-Rrly7 .framer-iqf1v6 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-Rrly7 .framer-iqf1v6 > :first-child, .framer-Rrly7 .framer-1e2hp3o > :first-child, .framer-Rrly7 .framer-1ahhgys > :first-child, .framer-Rrly7 .framer-gwug95 > :first-child, .framer-Rrly7 .framer-1tfx0nf > :first-child, .framer-Rrly7 .framer-30bflb > :first-child, .framer-Rrly7 .framer-1bi8hjs > :first-child, .framer-Rrly7 .framer-1mdc8dj > :first-child, .framer-Rrly7 .framer-1kvcet > :first-child { margin-left: 0px; } .framer-Rrly7 .framer-iqf1v6 > :last-child, .framer-Rrly7 .framer-1e2hp3o > :last-child, .framer-Rrly7 .framer-1ahhgys > :last-child, .framer-Rrly7 .framer-gwug95 > :last-child, .framer-Rrly7 .framer-1tfx0nf > :last-child, .framer-Rrly7 .framer-30bflb > :last-child, .framer-Rrly7 .framer-1bi8hjs > :last-child, .framer-Rrly7 .framer-1mdc8dj > :last-child, .framer-Rrly7 .framer-1kvcet > :last-child { margin-right: 0px; } .framer-Rrly7 .framer-1e2hp3o > *, .framer-Rrly7 .framer-1ahhgys > *, .framer-Rrly7 .framer-gwug95 > *, .framer-Rrly7 .framer-1tfx0nf > *, .framer-Rrly7 .framer-30bflb > *, .framer-Rrly7 .framer-1bi8hjs > *, .framer-Rrly7 .framer-1mdc8dj > *, .framer-Rrly7 .framer-1kvcet > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-Rrly7 .framer-1r2qruk > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\",\".framer-Rrly7.framer-v-1g8um7e .framer-1h6hgpp { order: 0; }\",\".framer-Rrly7.framer-v-1g8um7e .framer-13x1ce4 { order: 3; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 192\n * @framerIntrinsicWidth 276\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"RQnhII3Ws\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramersAN7MCV5h=withCSS(Component,css,\"framer-Rrly7\");export default FramersAN7MCV5h;FramersAN7MCV5h.displayName=\"Features/Ui Component - Chart\";FramersAN7MCV5h.defaultProps={height:192,width:276};addPropertyControls(FramersAN7MCV5h,{variant:{options:[\"mK5AzJA_U\",\"RQnhII3Ws\"],optionTitles:[\"Default\",\"Wireframe\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramersAN7MCV5h,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/BkDpl4ghaqvMi1btKFyG2tdbec.woff2\",weight:\"300\"},{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/zAMK70AQRFSShJgUiaR5IiIhgzk.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/IETjvc5qzUaRoaruDpPSwCUM8.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/oLCoaT3ioA0fHdJnWR9W6k7NY.woff2\",weight:\"300\"},{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/Sj0PCHQSBjFmEp6NBWg6FNaKc.woff2\",weight:\"300\"},{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/v2q8JTTTs7McDMSEhnxAIBqd0.woff2\",weight:\"300\"},{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/H4TfENUY1rh8R9UaSD6vngjJP3M.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]},...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramersAN7MCV5h\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"192\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"276\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"RQnhII3Ws\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./sAN7MCV5h.map", "// Generated by Framer (38f2e7f)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,cx,getFonts,getPropertyControls,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";const PhosphorFonts=getFonts(Phosphor);const PhosphorControls=getPropertyControls(Phosphor);const serializationHash=\"framer-NhGCU\";const variantClassNames={hTQTZv6wi:\"framer-v-qz6lje\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,icon,id,width,...props})=>{var _ref;return{...props,tpuqJVjrB:(_ref=icon!==null&&icon!==void 0?icon:props.tpuqJVjrB)!==null&&_ref!==void 0?_ref:\"Cloud\"};};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,tpuqJVjrB,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"hTQTZv6wi\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-qz6lje\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"hTQTZv6wi\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-mizhit\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"w3TZ4DPn6\",style:{backgroundColor:\"var(--token-ac66fc94-fc42-4186-9956-f4984338c966, rgb(255, 255, 255))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,boxShadow:\"0px 10px 20px 0px rgba(0, 0, 0, 0.02)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-bky7hq-container\",layoutDependency:layoutDependency,layoutId:\"QbTWkIB0o-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-62515677-32bd-4017-bcb9-5b3703fb3dd2, rgb(204, 204, 204))\",height:\"100%\",iconSearch:\"House\",iconSelection:tpuqJVjrB,id:\"QbTWkIB0o\",layoutId:\"QbTWkIB0o\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-NhGCU.framer-184262l, .framer-NhGCU .framer-184262l { display: block; }\",\".framer-NhGCU.framer-qz6lje { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: 96px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 96px; }\",\".framer-NhGCU .framer-mizhit { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: var(--framer-aspect-ratio-supported, 96px); justify-content: center; overflow: hidden; padding: 24px; position: relative; width: 96px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-NhGCU .framer-bky7hq-container { flex: none; height: 36px; position: relative; width: 36px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-NhGCU.framer-qz6lje, .framer-NhGCU .framer-mizhit { gap: 0px; } .framer-NhGCU.framer-qz6lje > *, .framer-NhGCU .framer-mizhit > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-NhGCU.framer-qz6lje > :first-child, .framer-NhGCU .framer-mizhit > :first-child { margin-left: 0px; } .framer-NhGCU.framer-qz6lje > :last-child, .framer-NhGCU .framer-mizhit > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 96\n * @framerIntrinsicWidth 96\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"tpuqJVjrB\":\"icon\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerWD2WFdvXQ=withCSS(Component,css,\"framer-NhGCU\");export default FramerWD2WFdvXQ;FramerWD2WFdvXQ.displayName=\"Features/Maintenance Icon\";FramerWD2WFdvXQ.defaultProps={height:96,width:96};addPropertyControls(FramerWD2WFdvXQ,{tpuqJVjrB:(PhosphorControls===null||PhosphorControls===void 0?void 0:PhosphorControls[\"iconSelection\"])&&{...PhosphorControls[\"iconSelection\"],defaultValue:\"Cloud\",description:undefined,hidden:undefined,title:\"Icon\"}});addFonts(FramerWD2WFdvXQ,[{explicitInter:true,fonts:[]},...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerWD2WFdvXQ\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"96\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"tpuqJVjrB\\\":\\\"icon\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"96\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./WD2WFdvXQ.map", "// Generated by Framer (629c622)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,RichText,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import FeaturesSEOIcons from\"https://framerusercontent.com/modules/Gt7mY67XFfJA6BpDQpqg/zzaGzbYYkvIz0sTtj1sV/BUykMJh4m.js\";import FeaturesCard from\"https://framerusercontent.com/modules/LQCxSmq2LnernMt3BkD7/EqY3asLtdLLUP1eZOkMr/PANkcS6iS.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import Globe from\"https://framerusercontent.com/modules/xFhv3ETdRBLjJusGaZ1P/SY4EOdo4KxEvLISnWiR3/Globe.js\";import FeaturesUiComponentChart from\"https://framerusercontent.com/modules/Xq0utQLutgXFBMpINBlq/B07PvCcVObfAJX2N2zZU/sAN7MCV5h.js\";import FeaturesMaintenanceIcon from\"https://framerusercontent.com/modules/ZKKgcm9Gi0stfMfDVpWS/9lx29E95BlmuJ2pHrXVK/WD2WFdvXQ.js\";const FeaturesUiComponentChartFonts=getFonts(FeaturesUiComponentChart);const FeaturesMaintenanceIconFonts=getFonts(FeaturesMaintenanceIcon);const PhosphorFonts=getFonts(Phosphor);const FeaturesCardFonts=getFonts(FeaturesCard);const GlobeFonts=getFonts(Globe);const FeaturesSEOIconsFonts=getFonts(FeaturesSEOIcons);const SmartComponentScopedContainerWithFX=withFX(SmartComponentScopedContainer);const MotionDivWithFX=withFX(motion.div);const enabledGestures={amlBWV2w8:{hover:true},BW3Bp7_Ag:{hover:true},CHjyObuOO:{hover:true},KvoxHQYS7:{hover:true},NOno4EIbG:{hover:true},SwAevb1d5:{hover:true},WFA1U3MFk:{hover:true}};const cycleOrder=[\"SwAevb1d5\",\"dZUw05WNa\",\"amlBWV2w8\",\"iOPoM3co7\",\"BW3Bp7_Ag\",\"YyQ1nTvSs\",\"NOno4EIbG\",\"wNr5lNN71\",\"WFA1U3MFk\",\"jhO9FzTKB\",\"JhFPrvjM_\",\"CHjyObuOO\",\"Na_fQf1Hp\",\"KvoxHQYS7\",\"Uk2liJEhF\"];const serializationHash=\"framer-t44RR\";const variantClassNames={amlBWV2w8:\"framer-v-12h7v68\",BW3Bp7_Ag:\"framer-v-15v5ci8\",CHjyObuOO:\"framer-v-15k6twk\",dZUw05WNa:\"framer-v-orrqeh\",iOPoM3co7:\"framer-v-ysll2e\",JhFPrvjM_:\"framer-v-1keg9rf\",jhO9FzTKB:\"framer-v-1wobdlw\",KvoxHQYS7:\"framer-v-1cvydue\",Na_fQf1Hp:\"framer-v-1dzqp82\",NOno4EIbG:\"framer-v-rv849l\",SwAevb1d5:\"framer-v-xxjf4b\",Uk2liJEhF:\"framer-v-1yeg111\",WFA1U3MFk:\"framer-v-1ndy17a\",wNr5lNN71:\"framer-v-1yyvrq0\",YyQ1nTvSs:\"framer-v-10t4naj\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const transition2={delay:0,duration:96,ease:[0,0,1,1],type:\"tween\"};const animation={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const animation1={opacity:1,rotate:-360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};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={\"Branding & Identity - Mobile\":\"Uk2liJEhF\",\"Branding & Identity\":\"KvoxHQYS7\",\"Custom Web Design - Mobile\":\"dZUw05WNa\",\"Custom Web Design\":\"SwAevb1d5\",\"E-Commerce Solutions - Mobile\":\"iOPoM3co7\",\"E-Commerce Solutions\":\"amlBWV2w8\",\"Mobile App Development - Mobile\":\"YyQ1nTvSs\",\"Mobile App Development\":\"BW3Bp7_Ag\",\"SEO Optimization - Mobile\":\"wNr5lNN71\",\"SEO Optimization\":\"NOno4EIbG\",\"UX/UI Design - Mobile\":\"JhFPrvjM_\",\"UX/UI Design - Tablet\":\"jhO9FzTKB\",\"UX/UI Design\":\"WFA1U3MFk\",\"Website Maintenance - Mobile\":\"Na_fQf1Hp\",\"Website Maintenance\":\"CHjyObuOO\"};const getProps=({height,hoverRotation,id,width,...props})=>{return{...props,UehprujG9:hoverRotation??props.UehprujG9,variant:humanReadableVariantMap[props.variant]??props.variant??\"SwAevb1d5\"};};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,UehprujG9,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"SwAevb1d5\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(gestureVariant===\"WFA1U3MFk-hover\")return true;if([\"WFA1U3MFk\",\"jhO9FzTKB\",\"JhFPrvjM_\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if(gestureVariant===\"CHjyObuOO-hover\")return true;if([\"CHjyObuOO\",\"Na_fQf1Hp\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if(gestureVariant===\"CHjyObuOO-hover\")return false;return true;};const isDisplayed3=()=>{if(gestureVariant===\"amlBWV2w8-hover\")return true;if([\"amlBWV2w8\",\"iOPoM3co7\"].includes(baseVariant))return true;return false;};const isDisplayed4=()=>{if([\"amlBWV2w8-hover\",\"BW3Bp7_Ag-hover\",\"NOno4EIbG-hover\",\"WFA1U3MFk-hover\",\"CHjyObuOO-hover\",\"KvoxHQYS7-hover\"].includes(gestureVariant))return false;if([\"amlBWV2w8\",\"iOPoM3co7\",\"BW3Bp7_Ag\",\"YyQ1nTvSs\",\"NOno4EIbG\",\"wNr5lNN71\",\"WFA1U3MFk\",\"jhO9FzTKB\",\"JhFPrvjM_\",\"CHjyObuOO\",\"Na_fQf1Hp\",\"KvoxHQYS7\",\"Uk2liJEhF\"].includes(baseVariant))return false;return true;};const isDisplayed5=()=>{if(gestureVariant===\"KvoxHQYS7-hover\")return true;if([\"KvoxHQYS7\",\"Uk2liJEhF\"].includes(baseVariant))return true;return false;};const isDisplayed6=()=>{if(gestureVariant===\"NOno4EIbG-hover\")return true;if([\"NOno4EIbG\",\"wNr5lNN71\"].includes(baseVariant))return true;return false;};const isDisplayed7=()=>{if(gestureVariant===\"NOno4EIbG-hover\")return false;if(baseVariant===\"NOno4EIbG\")return true;return false;};const isDisplayed8=()=>{if(gestureVariant===\"BW3Bp7_Ag-hover\")return true;if([\"BW3Bp7_Ag\",\"YyQ1nTvSs\"].includes(baseVariant))return true;return false;};const isDisplayed9=()=>{if(gestureVariant===\"BW3Bp7_Ag-hover\")return false;if(baseVariant===\"BW3Bp7_Ag\")return false;return true;};const isDisplayed10=()=>{if([\"amlBWV2w8-hover\",\"CHjyObuOO-hover\"].includes(gestureVariant))return true;if([\"amlBWV2w8\",\"iOPoM3co7\",\"CHjyObuOO\",\"Na_fQf1Hp\"].includes(baseVariant))return true;return false;};const isDisplayed11=()=>{if([\"amlBWV2w8-hover\",\"NOno4EIbG-hover\"].includes(gestureVariant))return true;if([\"amlBWV2w8\",\"iOPoM3co7\",\"NOno4EIbG\",\"wNr5lNN71\"].includes(baseVariant))return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-xxjf4b\",className,classNames),\"data-framer-name\":\"Custom Web Design\",layoutDependency:layoutDependency,layoutId:\"SwAevb1d5\",ref:refBinding,style:{borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30,rotate:0,...style},variants:{\"amlBWV2w8-hover\":{rotate:UehprujG9},\"BW3Bp7_Ag-hover\":{rotate:UehprujG9},\"CHjyObuOO-hover\":{rotate:UehprujG9},\"KvoxHQYS7-hover\":{rotate:0},\"NOno4EIbG-hover\":{rotate:UehprujG9},\"SwAevb1d5-hover\":{rotate:UehprujG9},\"WFA1U3MFk-hover\":{rotate:UehprujG9}},...addPropertyOverrides({\"amlBWV2w8-hover\":{\"data-framer-name\":undefined},\"BW3Bp7_Ag-hover\":{\"data-framer-name\":undefined},\"CHjyObuOO-hover\":{\"data-framer-name\":undefined},\"KvoxHQYS7-hover\":{\"data-framer-name\":undefined},\"NOno4EIbG-hover\":{\"data-framer-name\":undefined},\"SwAevb1d5-hover\":{\"data-framer-name\":undefined},\"WFA1U3MFk-hover\":{\"data-framer-name\":undefined},amlBWV2w8:{\"data-framer-name\":\"E-Commerce Solutions\"},BW3Bp7_Ag:{\"data-framer-name\":\"Mobile App Development\"},CHjyObuOO:{\"data-framer-name\":\"Website Maintenance\"},dZUw05WNa:{\"data-framer-name\":\"Custom Web Design - Mobile\"},iOPoM3co7:{\"data-framer-name\":\"E-Commerce Solutions - Mobile\"},JhFPrvjM_:{\"data-framer-name\":\"UX/UI Design - Mobile\"},jhO9FzTKB:{\"data-framer-name\":\"UX/UI Design - Tablet\"},KvoxHQYS7:{\"data-framer-name\":\"Branding & Identity\"},Na_fQf1Hp:{\"data-framer-name\":\"Website Maintenance - Mobile\"},NOno4EIbG:{\"data-framer-name\":\"SEO Optimization\"},Uk2liJEhF:{\"data-framer-name\":\"Branding & Identity - Mobile\"},WFA1U3MFk:{\"data-framer-name\":\"UX/UI Design\"},wNr5lNN71:{\"data-framer-name\":\"SEO Optimization - Mobile\"},YyQ1nTvSs:{\"data-framer-name\":\"Mobile App Development - Mobile\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1scjs6u\",layoutDependency:layoutDependency,layoutId:\"L4WNAVDG9\",style:{backgroundColor:\"var(--token-ac66fc94-fc42-4186-9956-f4984338c966, rgb(255, 255, 255))\",borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30,boxShadow:\"0px 10px 20px 0px rgba(0, 0, 0, 0.05)\"},variants:{\"amlBWV2w8-hover\":{boxShadow:\"0px 10px 20px 0px rgba(0, 0, 0, 0.02)\"},\"BW3Bp7_Ag-hover\":{boxShadow:\"0px 10px 20px 0px rgba(0, 0, 0, 0.02)\"},\"CHjyObuOO-hover\":{boxShadow:\"0px 10px 20px 0px rgba(0, 0, 0, 0.02)\"},\"KvoxHQYS7-hover\":{boxShadow:\"0px 10px 20px 0px rgba(0, 0, 0, 0.02)\"},\"NOno4EIbG-hover\":{boxShadow:\"0px 10px 20px 0px rgba(0, 0, 0, 0.02)\"},\"SwAevb1d5-hover\":{boxShadow:\"0px 10px 20px 0px rgba(0, 0, 0, 0.02)\"},\"WFA1U3MFk-hover\":{boxShadow:\"0px 10px 20px 0px rgba(0, 0, 0, 0.02)\"},NOno4EIbG:{backgroundColor:\"rgb(252, 254, 255)\"},wNr5lNN71:{backgroundColor:\"rgb(252, 254, 255)\"}},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yrg4mn\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"egEIFkGRN\",children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-16kqv7h\",\"data-framer-name\":\"Ui Slide\",layoutDependency:layoutDependency,layoutId:\"meltqpWgL\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-r9wlrg\",\"data-framer-name\":\"Ui content\",layoutDependency:layoutDependency,layoutId:\"dvAriDYHj\",style:{scale:1},transformTemplate:transformTemplate1,variants:{\"WFA1U3MFk-hover\":{scale:1.02},JhFPrvjM_:{scale:1},jhO9FzTKB:{scale:.8}},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cgt0dt\",\"data-framer-name\":\"Wireframe\",layoutDependency:layoutDependency,layoutId:\"dcMznWBMt\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:192,...addPropertyOverrides({JhFPrvjM_:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+0+((Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1-0-24)/2+0+0)+24-194+0+1},jhO9FzTKB:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+0+((Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1-0-24)/2+0+0)+24-194+0+1},WFA1U3MFk:{height:194,y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+0+((Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1-0-24)/2+0+0)+24-194+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-wz0ivp-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"CBRTAt08L-container\",nodeId:\"CBRTAt08L\",rendersWithMotion:true,scopeId:\"RAiJrmR1B\",children:/*#__PURE__*/_jsx(FeaturesUiComponentChart,{height:\"100%\",id:\"CBRTAt08L\",layoutId:\"CBRTAt08L\",variant:\"RQnhII3Ws\",width:\"100%\",...addPropertyOverrides({WFA1U3MFk:{style:{height:\"100%\"}}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2600go\",\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"wevSq5_UI\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-vyq170\",\"data-framer-name\":\"Ui Stack\",layoutDependency:layoutDependency,layoutId:\"jy4mJKdEw\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ubv6d4\",\"data-framer-name\":\"Ui Content\",layoutDependency:layoutDependency,layoutId:\"zyFdD0Isj\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:192,...addPropertyOverrides({JhFPrvjM_:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+0+((Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1-0-24)/2+0+0)+24-194+0+0+0+1},jhO9FzTKB:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+0+((Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1-0-24)/2+0+0)+24-194+0+0+0+1},WFA1U3MFk:{height:194,y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+0+((Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1-0-24)/2+0+0)+24-194+0+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1odpmkg-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"txtw3mXyN-container\",nodeId:\"txtw3mXyN\",rendersWithMotion:true,scopeId:\"RAiJrmR1B\",children:/*#__PURE__*/_jsx(FeaturesUiComponentChart,{height:\"100%\",id:\"txtw3mXyN\",layoutId:\"txtw3mXyN\",variant:\"mK5AzJA_U\",width:\"100%\",...addPropertyOverrides({WFA1U3MFk:{style:{height:\"100%\"}}},baseVariant,gestureVariant)})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1aay02x\",\"data-framer-name\":\"Vertical Line\",layoutDependency:layoutDependency,layoutId:\"lvkewicFJ\",style:{background:\"linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, var(--token-7e863056-5bee-4444-a43b-367cd97d6d18, rgb(0, 0, 0)) 50%, rgba(0, 0, 0, 0) 100%)\",opacity:1},variants:{\"WFA1U3MFk-hover\":{opacity:0}}})]})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1x2tuz2\",\"data-framer-name\":\"Icons Stack\",layoutDependency:layoutDependency,layoutId:\"hW7xf21CQ\",transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6z04e1\",layoutDependency:layoutDependency,layoutId:\"CxJlR1SQ4\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:\"96px\",...addPropertyOverrides({CHjyObuOO:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1*.5019607843137257-84)+24+0+24},Na_fQf1Hp:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1*.5019607843137257-84)+24+0+24}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-mv3fau-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"fQLXUAL_r-container\",nodeId:\"fQLXUAL_r\",rendersWithMotion:true,scopeId:\"RAiJrmR1B\",children:/*#__PURE__*/_jsx(FeaturesMaintenanceIcon,{height:\"100%\",id:\"fQLXUAL_r\",layoutId:\"fQLXUAL_r\",style:{height:\"100%\",width:\"100%\"},tpuqJVjrB:\"Cloud\",width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:\"96px\",...addPropertyOverrides({CHjyObuOO:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1*.5019607843137257-84)+24+0+24},Na_fQf1Hp:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1*.5019607843137257-84)+24+0+24}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-25k1g2-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"HJfMeulUu-container\",nodeId:\"HJfMeulUu\",rendersWithMotion:true,scopeId:\"RAiJrmR1B\",children:/*#__PURE__*/_jsx(FeaturesMaintenanceIcon,{height:\"100%\",id:\"HJfMeulUu\",layoutId:\"HJfMeulUu\",style:{height:\"100%\",width:\"100%\"},tpuqJVjrB:\"Password\",width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:\"96px\",...addPropertyOverrides({CHjyObuOO:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1*.5019607843137257-84)+24+0+24},Na_fQf1Hp:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1*.5019607843137257-84)+24+0+24}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-3y0wws-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"xlAYsvmZM-container\",nodeId:\"xlAYsvmZM\",rendersWithMotion:true,scopeId:\"RAiJrmR1B\",children:/*#__PURE__*/_jsx(FeaturesMaintenanceIcon,{height:\"100%\",id:\"xlAYsvmZM\",layoutId:\"xlAYsvmZM\",style:{height:\"100%\",width:\"100%\"},tpuqJVjrB:\"FingerprintSimple\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:\"96px\",...addPropertyOverrides({CHjyObuOO:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1*.5019607843137257-84)+24+0+24},Na_fQf1Hp:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1*.5019607843137257-84)+24+0+24}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1vyd9y-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"kRxdkiOlL-container\",nodeId:\"kRxdkiOlL\",rendersWithMotion:true,scopeId:\"RAiJrmR1B\",children:/*#__PURE__*/_jsx(FeaturesMaintenanceIcon,{height:\"100%\",id:\"kRxdkiOlL\",layoutId:\"kRxdkiOlL\",style:{height:\"100%\",width:\"100%\"},tpuqJVjrB:\"Suitcase\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:\"96px\",...addPropertyOverrides({CHjyObuOO:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1*.5019607843137257-84)+24+0+24},Na_fQf1Hp:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1*.5019607843137257-84)+24+0+24}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-p1vnne-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"NTdCTbafv-container\",nodeId:\"NTdCTbafv\",rendersWithMotion:true,scopeId:\"RAiJrmR1B\",children:/*#__PURE__*/_jsx(FeaturesMaintenanceIcon,{height:\"100%\",id:\"NTdCTbafv\",layoutId:\"NTdCTbafv\",style:{height:\"100%\",width:\"100%\"},tpuqJVjrB:\"Toolbox\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:\"96px\",...addPropertyOverrides({CHjyObuOO:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1*.5019607843137257-84)+24+0+24},Na_fQf1Hp:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1*.5019607843137257-84)+24+0+24}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-8ogp04-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"z1LVHJGTq-container\",nodeId:\"z1LVHJGTq\",rendersWithMotion:true,scopeId:\"RAiJrmR1B\",children:/*#__PURE__*/_jsx(FeaturesMaintenanceIcon,{height:\"100%\",id:\"z1LVHJGTq\",layoutId:\"z1LVHJGTq\",style:{height:\"100%\",width:\"100%\"},tpuqJVjrB:\"Wrench\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:\"96px\",...addPropertyOverrides({CHjyObuOO:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1*.5019607843137257-84)+24+0+24},Na_fQf1Hp:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1*.5019607843137257-84)+24+0+24}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1hvlf7i-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"ysKJyW5MJ-container\",nodeId:\"ysKJyW5MJ\",rendersWithMotion:true,scopeId:\"RAiJrmR1B\",children:/*#__PURE__*/_jsx(FeaturesMaintenanceIcon,{height:\"100%\",id:\"ysKJyW5MJ\",layoutId:\"ysKJyW5MJ\",style:{height:\"100%\",width:\"100%\"},tpuqJVjrB:\"ShieldCheck\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:\"96px\",...addPropertyOverrides({CHjyObuOO:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1*.5019607843137257-84)+24+0+24},Na_fQf1Hp:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1*.5019607843137257-84)+24+0+24}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-uta8g-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"tj5oH2Tma-container\",nodeId:\"tj5oH2Tma\",rendersWithMotion:true,scopeId:\"RAiJrmR1B\",children:/*#__PURE__*/_jsx(FeaturesMaintenanceIcon,{height:\"100%\",id:\"tj5oH2Tma\",layoutId:\"tj5oH2Tma\",style:{height:\"100%\",width:\"100%\"},tpuqJVjrB:\"Pencil\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:\"96px\",...addPropertyOverrides({CHjyObuOO:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1*.5019607843137257-84)+24+0+24},Na_fQf1Hp:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1*.5019607843137257-84)+24+0+24}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-11gxuvd-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"IeUMl0FFh-container\",nodeId:\"IeUMl0FFh\",rendersWithMotion:true,scopeId:\"RAiJrmR1B\",children:/*#__PURE__*/_jsx(FeaturesMaintenanceIcon,{height:\"100%\",id:\"IeUMl0FFh\",layoutId:\"IeUMl0FFh\",style:{height:\"100%\",width:\"100%\"},tpuqJVjrB:\"Folder\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:\"96px\",...addPropertyOverrides({CHjyObuOO:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1*.5019607843137257-84)+24+0+24},Na_fQf1Hp:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1*.5019607843137257-84)+24+0+24}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1hwovfv-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"wd3WZrHq3-container\",nodeId:\"wd3WZrHq3\",rendersWithMotion:true,scopeId:\"RAiJrmR1B\",children:/*#__PURE__*/_jsx(FeaturesMaintenanceIcon,{height:\"100%\",id:\"wd3WZrHq3\",layoutId:\"wd3WZrHq3\",style:{height:\"100%\",width:\"100%\"},tpuqJVjrB:\"Detective\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:\"96px\",...addPropertyOverrides({CHjyObuOO:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1*.5019607843137257-84)+24+0+24},Na_fQf1Hp:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1*.5019607843137257-84)+24+0+24}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1l6otc9-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"MHkKDqUio-container\",nodeId:\"MHkKDqUio\",rendersWithMotion:true,scopeId:\"RAiJrmR1B\",children:/*#__PURE__*/_jsx(FeaturesMaintenanceIcon,{height:\"100%\",id:\"MHkKDqUio\",layoutId:\"MHkKDqUio\",style:{height:\"100%\",width:\"100%\"},tpuqJVjrB:\"ShieldCheckered\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:\"96px\",...addPropertyOverrides({CHjyObuOO:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1*.5019607843137257-84)+24+0+24},Na_fQf1Hp:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1*.5019607843137257-84)+24+0+24}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-8cq9l-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"dDpwBExOh-container\",nodeId:\"dDpwBExOh\",rendersWithMotion:true,scopeId:\"RAiJrmR1B\",children:/*#__PURE__*/_jsx(FeaturesMaintenanceIcon,{height:\"100%\",id:\"dDpwBExOh\",layoutId:\"dDpwBExOh\",style:{height:\"100%\",width:\"100%\"},tpuqJVjrB:\"Atom\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:\"96px\",...addPropertyOverrides({CHjyObuOO:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1*.5019607843137257-84)+24+0+24},Na_fQf1Hp:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1*.5019607843137257-84)+24+0+24}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-10mk2ql-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Cq7H51ZJZ-container\",nodeId:\"Cq7H51ZJZ\",rendersWithMotion:true,scopeId:\"RAiJrmR1B\",children:/*#__PURE__*/_jsx(FeaturesMaintenanceIcon,{height:\"100%\",id:\"Cq7H51ZJZ\",layoutId:\"Cq7H51ZJZ\",style:{height:\"100%\",width:\"100%\"},tpuqJVjrB:\"BoundingBox\",width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:\"96px\",...addPropertyOverrides({CHjyObuOO:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1*.5019607843137257-84)+24+0+24},Na_fQf1Hp:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1*.5019607843137257-84)+24+0+24}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-tedjp0-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Js8bNQkag-container\",nodeId:\"Js8bNQkag\",rendersWithMotion:true,scopeId:\"RAiJrmR1B\",children:/*#__PURE__*/_jsx(FeaturesMaintenanceIcon,{height:\"100%\",id:\"Js8bNQkag\",layoutId:\"Js8bNQkag\",style:{height:\"100%\",width:\"100%\"},tpuqJVjrB:\"BoundingBox\",width:\"100%\",...addPropertyOverrides({CHjyObuOO:{tpuqJVjrB:\"GoogleChromeLogo\"},Na_fQf1Hp:{tpuqJVjrB:\"GoogleChromeLogo\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:\"96px\",...addPropertyOverrides({CHjyObuOO:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1*.5019607843137257-84)+24+0+24},Na_fQf1Hp:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1*.5019607843137257-84)+24+0+24}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-18q2nsw-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"jxD32DZAv-container\",nodeId:\"jxD32DZAv\",rendersWithMotion:true,scopeId:\"RAiJrmR1B\",children:/*#__PURE__*/_jsx(FeaturesMaintenanceIcon,{height:\"100%\",id:\"jxD32DZAv\",layoutId:\"jxD32DZAv\",style:{height:\"100%\",width:\"100%\"},tpuqJVjrB:\"BoundingBox\",width:\"100%\",...addPropertyOverrides({CHjyObuOO:{tpuqJVjrB:\"Stack\"},Na_fQf1Hp:{tpuqJVjrB:\"Stack\"}},baseVariant,gestureVariant)})})})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1faasid\",\"data-framer-name\":\"Gears\",layoutDependency:layoutDependency,layoutId:\"AnoN6DKjz\",style:{scale:1},transformTemplate:transformTemplate2,variants:{\"CHjyObuOO-hover\":{scale:1.02}},children:isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-7u0rsb\",\"data-framer-name\":\"Gears Content\",layoutDependency:layoutDependency,layoutId:\"cQGM0yDws\",style:{background:\"linear-gradient(150deg, var(--token-f19c34c7-e8ef-4025-92c5-3484fcd0db88, rgb(51, 177, 255)) 0%, var(--token-0267a0c5-75bb-463a-a014-9612ec56e85c, rgb(197, 51, 255)) 100%)\",borderBottomLeftRadius:48,borderBottomRightRadius:48,borderTopLeftRadius:48,borderTopRightRadius:48,boxShadow:\"none\"},variants:{\"CHjyObuOO-hover\":{boxShadow:\"0px 10px 20px 0px rgba(0, 0, 0, 0.02)\"},CHjyObuOO:{boxShadow:\"0px 10px 20px 0px rgba(0, 0, 0, 0.05)\"},Na_fQf1Hp:{boxShadow:\"0px 10px 20px 0px rgba(0, 0, 0, 0.05)\"}},children:isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1sxhwzc\",\"data-framer-name\":\"Gears\",layoutDependency:layoutDependency,layoutId:\"nKHGBff7k\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-qdpui1-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"D8hwf_4f6-container\",nodeId:\"D8hwf_4f6\",rendersWithMotion:true,scopeId:\"RAiJrmR1B\",style:{rotate:0},variants:{\"CHjyObuOO-hover\":{rotate:120}},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-ac66fc94-fc42-4186-9956-f4984338c966, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"GearSix\",id:\"D8hwf_4f6\",layoutId:\"D8hwf_4f6\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-8ddzc3-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"ABig1pZKd-container\",nodeId:\"ABig1pZKd\",rendersWithMotion:true,scopeId:\"RAiJrmR1B\",style:{rotate:0},variants:{\"CHjyObuOO-hover\":{rotate:-120}},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-ac66fc94-fc42-4186-9956-f4984338c966, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"GearSix\",id:\"ABig1pZKd\",layoutId:\"ABig1pZKd\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})]})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({\"amlBWV2w8-hover\":{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1-158},amlBWV2w8:{height:134,y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1-106},iOPoM3co7:{height:134,y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1-106}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-11bsp8a-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Ah8pEahBo-container\",nodeId:\"Ah8pEahBo\",rendersWithMotion:true,scopeId:\"RAiJrmR1B\",style:{rotate:15,scale:.8},transformTemplate:transformTemplate1,variants:{\"amlBWV2w8-hover\":{rotate:0,scale:1}},children:/*#__PURE__*/_jsx(FeaturesCard,{height:\"100%\",id:\"Ah8pEahBo\",layoutId:\"Ah8pEahBo\",width:\"100%\"})})}),isDisplayed3()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2436.363583556878,intrinsicWidth:2350.90903995451,pixelHeight:2680,pixelWidth:2586,src:\"https://framerusercontent.com/images/b3BLsHGxFiGBMyUTd8NXKfVsXk.png\",srcSet:\"https://framerusercontent.com/images/b3BLsHGxFiGBMyUTd8NXKfVsXk.png?scale-down-to=1024 988w,https://framerusercontent.com/images/b3BLsHGxFiGBMyUTd8NXKfVsXk.png?scale-down-to=2048 1976w,https://framerusercontent.com/images/b3BLsHGxFiGBMyUTd8NXKfVsXk.png 2586w\"},className:\"framer-106dcwj\",\"data-framer-name\":\"Shoperz_screen\",layoutDependency:layoutDependency,layoutId:\"RUN11u7Sp\",style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"0px 0px 10px 0px rgba(0, 0, 0, 0.05)\"},variants:{amlBWV2w8:{boxShadow:\"0px 10px 20px 0px rgba(0, 0, 0, 0.05)\"}},...addPropertyOverrides({\"amlBWV2w8-hover\":{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2436.363583556878,intrinsicWidth:2350.90903995451,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+24),pixelHeight:2680,pixelWidth:2586,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/b3BLsHGxFiGBMyUTd8NXKfVsXk.png\",srcSet:\"https://framerusercontent.com/images/b3BLsHGxFiGBMyUTd8NXKfVsXk.png?scale-down-to=1024 988w,https://framerusercontent.com/images/b3BLsHGxFiGBMyUTd8NXKfVsXk.png?scale-down-to=2048 1976w,https://framerusercontent.com/images/b3BLsHGxFiGBMyUTd8NXKfVsXk.png 2586w\"}},amlBWV2w8:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2436.363583556878,intrinsicWidth:2350.90903995451,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+48),pixelHeight:2680,pixelWidth:2586,sizes:`calc(${componentViewport?.width||\"100vw\"} - 24px)`,src:\"https://framerusercontent.com/images/b3BLsHGxFiGBMyUTd8NXKfVsXk.png\",srcSet:\"https://framerusercontent.com/images/b3BLsHGxFiGBMyUTd8NXKfVsXk.png?scale-down-to=1024 988w,https://framerusercontent.com/images/b3BLsHGxFiGBMyUTd8NXKfVsXk.png?scale-down-to=2048 1976w,https://framerusercontent.com/images/b3BLsHGxFiGBMyUTd8NXKfVsXk.png 2586w\"}},iOPoM3co7:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2436.363583556878,intrinsicWidth:2350.90903995451,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+48),pixelHeight:2680,pixelWidth:2586,sizes:`calc(${componentViewport?.width||\"100vw\"} - 24px)`,src:\"https://framerusercontent.com/images/b3BLsHGxFiGBMyUTd8NXKfVsXk.png\",srcSet:\"https://framerusercontent.com/images/b3BLsHGxFiGBMyUTd8NXKfVsXk.png?scale-down-to=1024 988w,https://framerusercontent.com/images/b3BLsHGxFiGBMyUTd8NXKfVsXk.png?scale-down-to=2048 1976w,https://framerusercontent.com/images/b3BLsHGxFiGBMyUTd8NXKfVsXk.png 2586w\"}}},baseVariant,gestureVariant)}),isDisplayed4()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19j7wwm\",\"data-framer-name\":\"Screens Stack\",layoutDependency:layoutDependency,layoutId:\"LStKy3r7o\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Zenzap Screen\",fit:\"fill\",intrinsicHeight:2579.999944080007,intrinsicWidth:2690.9090325852085,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+0+60),pixelHeight:2838,pixelWidth:2960,sizes:\"240px\",src:\"https://framerusercontent.com/images/NuKtfwIigpvtFdYbzNf53JZAeM.png\",srcSet:\"https://framerusercontent.com/images/NuKtfwIigpvtFdYbzNf53JZAeM.png?scale-down-to=512 512w,https://framerusercontent.com/images/NuKtfwIigpvtFdYbzNf53JZAeM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NuKtfwIigpvtFdYbzNf53JZAeM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/NuKtfwIigpvtFdYbzNf53JZAeM.png 2960w\"},className:\"framer-1195y9y\",\"data-framer-name\":\"Zenzap Screen\",layoutDependency:layoutDependency,layoutId:\"pCDWzvxYV\",style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"0px 10px 20px 0px rgba(0, 0, 0, 0.05)\"},...addPropertyOverrides({\"SwAevb1d5-hover\":{background:{alt:\"Zenzap Screen\",fit:\"fill\",intrinsicHeight:2579.999944080007,intrinsicWidth:2690.9090325852085,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+0+36),pixelHeight:2838,pixelWidth:2960,sizes:\"240px\",src:\"https://framerusercontent.com/images/NuKtfwIigpvtFdYbzNf53JZAeM.png\",srcSet:\"https://framerusercontent.com/images/NuKtfwIigpvtFdYbzNf53JZAeM.png?scale-down-to=512 512w,https://framerusercontent.com/images/NuKtfwIigpvtFdYbzNf53JZAeM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NuKtfwIigpvtFdYbzNf53JZAeM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/NuKtfwIigpvtFdYbzNf53JZAeM.png 2960w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-hyj09r\",\"data-framer-name\":\"Teamwave\",layoutDependency:layoutDependency,layoutId:\"CsmTKezsz\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"tEAMwAVE sCREEN\",fit:\"fill\",intrinsicHeight:2370.9090395210214,intrinsicWidth:2356.363585290831,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+0+48+0),pixelHeight:2608,pixelWidth:2592,sizes:\"240px\",src:\"https://framerusercontent.com/images/lOFwNYZ4BIPRs5ulMTUq448UKA.png\",srcSet:\"https://framerusercontent.com/images/lOFwNYZ4BIPRs5ulMTUq448UKA.png?scale-down-to=1024 1017w,https://framerusercontent.com/images/lOFwNYZ4BIPRs5ulMTUq448UKA.png?scale-down-to=2048 2035w,https://framerusercontent.com/images/lOFwNYZ4BIPRs5ulMTUq448UKA.png 2592w\"},className:\"framer-irtddv\",\"data-framer-name\":\"Teamwave_1_\",layoutDependency:layoutDependency,layoutId:\"pxHkoicOC\",style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"0px 10px 20px 0px rgba(0, 0, 0, 0.05)\"},...addPropertyOverrides({\"SwAevb1d5-hover\":{background:{alt:\"tEAMwAVE sCREEN\",fit:\"fill\",intrinsicHeight:2370.9090395210214,intrinsicWidth:2356.363585290831,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+0+24+0),pixelHeight:2608,pixelWidth:2592,sizes:\"240px\",src:\"https://framerusercontent.com/images/lOFwNYZ4BIPRs5ulMTUq448UKA.png\",srcSet:\"https://framerusercontent.com/images/lOFwNYZ4BIPRs5ulMTUq448UKA.png?scale-down-to=1024 1017w,https://framerusercontent.com/images/lOFwNYZ4BIPRs5ulMTUq448UKA.png?scale-down-to=2048 2035w,https://framerusercontent.com/images/lOFwNYZ4BIPRs5ulMTUq448UKA.png 2592w\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1o9xfc5\",\"data-framer-name\":\"Gradient\",layoutDependency:layoutDependency,layoutId:\"K0VUGwrcz\",style:{background:\"linear-gradient(180deg, rgba(84, 84, 84, 0) 0%, var(--token-ac66fc94-fc42-4186-9956-f4984338c966, rgb(255, 255, 255)) 100%)\"}})]}),isDisplayed5()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1d0vtbr\",\"data-framer-name\":\"Branding Stack\",layoutDependency:layoutDependency,layoutId:\"bnkKfmU4v\",style:{scale:1},transformTemplate:transformTemplate2,variants:{\"KvoxHQYS7-hover\":{scale:1.02}},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-15uxitd\",\"data-framer-name\":\"Border Left\",layoutDependency:layoutDependency,layoutId:\"DOMcbOlnn\",style:{backgroundColor:\"var(--token-7e863056-5bee-4444-a43b-367cd97d6d18, rgb(0, 0, 0))\"},variants:{KvoxHQYS7:{backgroundColor:\"var(--token-eec563d0-579b-4ee4-bbbf-8d4ac1f3bfbf, rgb(102, 102, 102))\"}}}),isDisplayed5()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-yurhb2\",\"data-framer-name\":\"Reify Logo Area\",layoutDependency:layoutDependency,layoutId:\"XKqQhObsz\",children:isDisplayed5()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1a0f27t\",\"data-framer-name\":\"Reify Logo\",layoutDependency:layoutDependency,layoutId:\"jjdZ2Sshj\",style:{backgroundColor:\"var(--token-7e863056-5bee-4444-a43b-367cd97d6d18, rgb(0, 0, 0))\",boxShadow:\"none\"},variants:{KvoxHQYS7:{boxShadow:\"0px 10px 20px 0px rgba(0, 0, 0, 0.05)\"},Uk2liJEhF:{boxShadow:\"0px 0px 10px 0px rgba(0, 0, 0, 0.02)\"}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-bfyoo3\",\"data-framer-name\":\"Logo Reify\",layoutDependency:layoutDependency,layoutId:\"vjAGJKa7R\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-i2xxuu\",\"data-framer-name\":\"Logo\",fill:\"black\",intrinsicHeight:20,intrinsicWidth:108,layoutDependency:layoutDependency,layoutId:\"nCtQHyRcc\",svg:'<svg width=\"108\" height=\"20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m8.66 0-3 3 3 5 3-5-3-3Zm0 20 3-3-3-5-3 5 3 3Zm8.66-15-4.098-1.098L10.392 9l5.83.098L17.32 5ZM0 15l4.098 1.098L6.928 11l-5.83-.098L0 15Zm1.098-5.902L0 5l4.098-1.098L6.928 9l-5.83.098Zm15.124 1.804L17.32 15l-4.098 1.098L10.392 11l5.83-.098Z\" fill=\"#DBFF4D\"/><path d=\"M33.697 11.09h-2.675c-.814 0-1.714.01-2.701.027V16h-2V5.403c0-.503.103-.849.311-1.04.225-.19.589-.294 1.091-.311.26-.017.598-.026 1.013-.026h1.429c.52-.017 1.047-.026 1.584-.026h1.585a32.112 32.112 0 0 1 2.311.078c.9.087 1.559.39 1.974.909.416.502.624 1.255.624 2.26 0 .796-.113 1.428-.338 1.896a2.085 2.085 0 0 1-.961 1.039.601.601 0 0 1-.26.13 2.057 2.057 0 0 1-.337.026v.052h.441c.658.12 1.056.39 1.195.805.138.398.208.805.208 1.22v2.962c0 .173.017.32.052.441.034.104.06.165.078.182h-1.403c-.242 0-.433-.043-.572-.13-.138-.086-.207-.294-.207-.623v-2.754c0-.536-.122-.9-.364-1.09-.225-.208-.632-.312-1.22-.312h-.858ZM28.32 10c.243 0 .624.009 1.143.026h4.546c.571 0 1.073-.173 1.506-.52.45-.363.676-1.03.676-2 0-.658-.13-1.177-.39-1.558-.242-.398-.64-.632-1.195-.701a9.79 9.79 0 0 0-1.35-.078 26.609 26.609 0 0 0-1.663 0c-.571 0-1.1.008-1.584.026h-1.091c-.052 0-.165.034-.338.104-.173.052-.26.225-.26.52V10Zm18.823 6V4.883c0-.312.044-.528.13-.65.087-.12.277-.181.572-.181h10.311v1.143h-9.013v3.974h8.26v1.143h-8.26v4.545h9.013V16H47.143Zm19.349 0V4.883c0-.19.009-.338.026-.441a.546.546 0 0 1 .182-.286c.104-.07.268-.104.493-.104h1.299V16h-2Zm11.511 0V4.961c0-.225.008-.398.026-.52a.398.398 0 0 1 .181-.285c.104-.07.269-.104.494-.104h10.312v1.143h-9.013v3.974h8.26v1.143h-8.26V16h-2Zm22.209 0v-4.857L95.822 4.7l-.467-.649h2.65l3.636 5.688 3.688-5.688h1.818l-.571.727-4.39 6.364v3.948c.017.225 0 .407-.052.545a.59.59 0 0 1-.26.286c-.121.052-.311.078-.571.078h-1.091Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-19m4a71\",\"data-framer-name\":\"Border Right\",layoutDependency:layoutDependency,layoutId:\"gCR_Ktjpn\",style:{backgroundColor:\"var(--token-7e863056-5bee-4444-a43b-367cd97d6d18, rgb(0, 0, 0))\"},variants:{KvoxHQYS7:{backgroundColor:\"var(--token-eec563d0-579b-4ee4-bbbf-8d4ac1f3bfbf, rgb(102, 102, 102))\"}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-xhzes7\",\"data-framer-name\":\"Border Top\",layoutDependency:layoutDependency,layoutId:\"kv5O2duEj\",style:{backgroundColor:\"var(--token-7e863056-5bee-4444-a43b-367cd97d6d18, rgb(0, 0, 0))\"},variants:{KvoxHQYS7:{backgroundColor:\"var(--token-eec563d0-579b-4ee4-bbbf-8d4ac1f3bfbf, rgb(102, 102, 102))\"}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-oz1m4m\",\"data-framer-name\":\"Border Bottom\",layoutDependency:layoutDependency,layoutId:\"Ogz_mtjSu\",style:{backgroundColor:\"var(--token-7e863056-5bee-4444-a43b-367cd97d6d18, rgb(0, 0, 0))\"},variants:{KvoxHQYS7:{backgroundColor:\"var(--token-eec563d0-579b-4ee4-bbbf-8d4ac1f3bfbf, rgb(102, 102, 102))\"}}})]}),isDisplayed6()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-v28m94\",\"data-framer-name\":\"SeoGlobe\",layoutDependency:layoutDependency,layoutId:\"ezQS0lwvb\",children:[isDisplayed6()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-4r9akf-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"YNz_po1ac-container\",nodeId:\"YNz_po1ac\",rendersWithMotion:true,scopeId:\"RAiJrmR1B\",children:/*#__PURE__*/_jsx(Globe,{alignment:\"center\",background:\"rgba(255, 255, 255, 0)\",baseColor:\"rgb(255, 255, 255)\",dark:0,diffuse:5,dragOptions:{damping:40,mass:1,stiffness:200},glowColor:\"rgb(255, 255, 255)\",height:\"100%\",id:\"YNz_po1ac\",isDraggable:true,layoutId:\"YNz_po1ac\",mapBrightness:12,markerArray:[],markerColor:\"rgb(255, 255, 255)\",markerSize:.1,maxSamples:2e4,maxWidth:800,offset:{offsetX:0,offsetY:0},phi:4.2,scale:1,speed:0,style:{height:\"100%\",width:\"100%\"},theta:.3,width:\"100%\"})})}),isDisplayed7()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1h5n4j4\",\"data-framer-name\":\"Icons\",layoutDependency:layoutDependency,layoutId:\"xuf3kvZ7Q\",transformTemplate:transformTemplate2,...addPropertyOverrides({NOno4EIbG:{__framer__loopEffectEnabled:undefined,transformTemplate:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1serezz\",layoutDependency:layoutDependency,layoutId:\"aTfGjCdW1\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"48px\",...addPropertyOverrides({NOno4EIbG:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-119)/1)*1+95+24)+0+0)+0+36+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__loop:animation1,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-16xs51i-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"S3yebTrvN-container\",nodeId:\"S3yebTrvN\",rendersWithMotion:true,scopeId:\"RAiJrmR1B\",...addPropertyOverrides({NOno4EIbG:{__framer__loopEffectEnabled:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(FeaturesSEOIcons,{EoRzbrjsT:\"ListMagnifyingGlass\",height:\"100%\",id:\"S3yebTrvN\",layoutId:\"S3yebTrvN\",Nq_Rs3OxD:\"var(--token-0267a0c5-75bb-463a-a014-9612ec56e85c, rgb(197, 51, 255))\",SJfRTtovi:\"var(--token-ac66fc94-fc42-4186-9956-f4984338c966, rgb(255, 255, 255))\",style:{height:\"100%\",width:\"100%\"},variant:\"s7oSoGnCJ\",width:\"100%\",...addPropertyOverrides({NOno4EIbG:{Nq_Rs3OxD:\"rgb(94, 120, 143)\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"48px\",...addPropertyOverrides({NOno4EIbG:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-119)/1)*1+95+24)+0+0)+0+36+0+288-48}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__loop:animation1,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1js4a0w-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"NBIv27arY-container\",nodeId:\"NBIv27arY\",rendersWithMotion:true,scopeId:\"RAiJrmR1B\",...addPropertyOverrides({NOno4EIbG:{__framer__loopEffectEnabled:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(FeaturesSEOIcons,{EoRzbrjsT:\"ChartLineUp\",height:\"100%\",id:\"NBIv27arY\",layoutId:\"NBIv27arY\",Nq_Rs3OxD:\"var(--token-d0a5ae21-1de4-4f2d-a541-8c22f8545f4d, rgb(255, 51, 129))\",SJfRTtovi:\"var(--token-ac66fc94-fc42-4186-9956-f4984338c966, rgb(255, 255, 255))\",style:{height:\"100%\",width:\"100%\"},variant:\"s7oSoGnCJ\",width:\"100%\",...addPropertyOverrides({NOno4EIbG:{Nq_Rs3OxD:\"var(--token-8af11fbe-e7e5-4ff0-adc1-9c101e34bc41, rgb(133, 204, 0))\"}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fbapds\",layoutDependency:layoutDependency,layoutId:\"WCwq9aEQS\",style:{rotate:-45},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"48px\",...addPropertyOverrides({NOno4EIbG:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-119)/1)*1+95+24)+0+0)+0+36+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__loop:animation1,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-6bmnf8-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"POSDwDuKo-container\",nodeId:\"POSDwDuKo\",rendersWithMotion:true,scopeId:\"RAiJrmR1B\",style:{rotate:45},...addPropertyOverrides({NOno4EIbG:{__framer__loopEffectEnabled:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(FeaturesSEOIcons,{EoRzbrjsT:\"GoogleChromeLogo\",height:\"100%\",id:\"POSDwDuKo\",layoutId:\"POSDwDuKo\",Nq_Rs3OxD:\"var(--token-d0a5ae21-1de4-4f2d-a541-8c22f8545f4d, rgb(255, 51, 129))\",SJfRTtovi:\"var(--token-ac66fc94-fc42-4186-9956-f4984338c966, rgb(255, 255, 255))\",style:{height:\"100%\",width:\"100%\"},variant:\"s7oSoGnCJ\",width:\"100%\",...addPropertyOverrides({NOno4EIbG:{Nq_Rs3OxD:\"rgb(138, 167, 194)\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"48px\",...addPropertyOverrides({NOno4EIbG:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-119)/1)*1+95+24)+0+0)+0+36+0+288-48}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__loop:animation1,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-j887uv-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"pW4_DFDZL-container\",nodeId:\"pW4_DFDZL\",rendersWithMotion:true,scopeId:\"RAiJrmR1B\",style:{rotate:45},...addPropertyOverrides({NOno4EIbG:{__framer__loopEffectEnabled:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(FeaturesSEOIcons,{EoRzbrjsT:\"Gauge\",height:\"100%\",id:\"pW4_DFDZL\",layoutId:\"pW4_DFDZL\",Nq_Rs3OxD:\"var(--token-31a65de1-0bdc-417c-8cef-dd9f23c4a095, rgb(255, 184, 51))\",SJfRTtovi:\"var(--token-ac66fc94-fc42-4186-9956-f4984338c966, rgb(255, 255, 255))\",style:{height:\"100%\",width:\"100%\"},variant:\"s7oSoGnCJ\",width:\"100%\",...addPropertyOverrides({NOno4EIbG:{Nq_Rs3OxD:\"rgb(37, 65, 89)\"}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-r9jc25\",layoutDependency:layoutDependency,layoutId:\"KVD2Gv52k\",style:{rotate:45},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"48px\",...addPropertyOverrides({NOno4EIbG:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-119)/1)*1+95+24)+0+0)+0+36+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__loop:animation1,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-16uxtmg-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"mwO2xEyBz-container\",nodeId:\"mwO2xEyBz\",rendersWithMotion:true,scopeId:\"RAiJrmR1B\",style:{rotate:-45},...addPropertyOverrides({NOno4EIbG:{__framer__loopEffectEnabled:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(FeaturesSEOIcons,{EoRzbrjsT:\"Lightning\",height:\"100%\",id:\"mwO2xEyBz\",layoutId:\"mwO2xEyBz\",Nq_Rs3OxD:\"var(--token-8af11fbe-e7e5-4ff0-adc1-9c101e34bc41, rgb(133, 204, 0))\",SJfRTtovi:\"var(--token-ac66fc94-fc42-4186-9956-f4984338c966, rgb(255, 255, 255))\",style:{height:\"100%\",width:\"100%\"},variant:\"s7oSoGnCJ\",width:\"100%\",...addPropertyOverrides({NOno4EIbG:{Nq_Rs3OxD:\"rgba(94, 120, 143, 0.5)\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"48px\",...addPropertyOverrides({NOno4EIbG:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-119)/1)*1+95+24)+0+0)+0+36+0+288-48}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__loop:animation1,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1sp109a-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"A9Xq0IHVW-container\",nodeId:\"A9Xq0IHVW\",rendersWithMotion:true,scopeId:\"RAiJrmR1B\",style:{rotate:-45},...addPropertyOverrides({NOno4EIbG:{__framer__loopEffectEnabled:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(FeaturesSEOIcons,{EoRzbrjsT:\"ChartDonut\",height:\"100%\",id:\"A9Xq0IHVW\",layoutId:\"A9Xq0IHVW\",Nq_Rs3OxD:\"var(--token-f19c34c7-e8ef-4025-92c5-3484fcd0db88, rgb(51, 177, 255))\",SJfRTtovi:\"var(--token-ac66fc94-fc42-4186-9956-f4984338c966, rgb(255, 255, 255))\",style:{height:\"100%\",width:\"100%\"},variant:\"s7oSoGnCJ\",width:\"100%\",...addPropertyOverrides({NOno4EIbG:{Nq_Rs3OxD:\"rgb(55, 72, 87)\"}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4cuin\",layoutDependency:layoutDependency,layoutId:\"sAllJqRXb\",style:{rotate:90},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"48px\",...addPropertyOverrides({NOno4EIbG:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-119)/1)*1+95+24)+0+0)+0+36+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__loop:animation1,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-7gu1h3-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"qBisNwlkM-container\",nodeId:\"qBisNwlkM\",rendersWithMotion:true,scopeId:\"RAiJrmR1B\",style:{rotate:-90},...addPropertyOverrides({NOno4EIbG:{__framer__loopEffectEnabled:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(FeaturesSEOIcons,{EoRzbrjsT:\"TreeStructure\",height:\"100%\",id:\"qBisNwlkM\",layoutId:\"qBisNwlkM\",Nq_Rs3OxD:\"var(--token-f19c34c7-e8ef-4025-92c5-3484fcd0db88, rgb(51, 177, 255))\",SJfRTtovi:\"var(--token-ac66fc94-fc42-4186-9956-f4984338c966, rgb(255, 255, 255))\",style:{height:\"100%\",width:\"100%\"},variant:\"s7oSoGnCJ\",width:\"100%\",...addPropertyOverrides({NOno4EIbG:{Nq_Rs3OxD:\"rgb(17, 55, 79)\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"48px\",...addPropertyOverrides({NOno4EIbG:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-119)/1)*1+95+24)+0+0)+0+36+0+288-48}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__loop:animation1,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-6v1s6o-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Shtx51DcZ-container\",nodeId:\"Shtx51DcZ\",rendersWithMotion:true,scopeId:\"RAiJrmR1B\",style:{rotate:-90},...addPropertyOverrides({NOno4EIbG:{__framer__loopEffectEnabled:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(FeaturesSEOIcons,{EoRzbrjsT:\"ChartScatter\",height:\"100%\",id:\"Shtx51DcZ\",layoutId:\"Shtx51DcZ\",Nq_Rs3OxD:\"var(--token-31a65de1-0bdc-417c-8cef-dd9f23c4a095, rgb(255, 184, 51))\",SJfRTtovi:\"var(--token-ac66fc94-fc42-4186-9956-f4984338c966, rgb(255, 255, 255))\",style:{height:\"100%\",width:\"100%\"},variant:\"s7oSoGnCJ\",width:\"100%\",...addPropertyOverrides({NOno4EIbG:{Nq_Rs3OxD:\"rgb(94, 120, 143)\"}},baseVariant,gestureVariant)})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1r8v0f0\",\"data-framer-name\":\"Icons\",layoutDependency:layoutDependency,layoutId:\"wixe2qhie\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1cm6t2x\",layoutDependency:layoutDependency,layoutId:\"bKABVnYpA\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"48px\",...addPropertyOverrides({NOno4EIbG:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-119)/1)*1+95+24)+0+0)+0+36+0+0},wNr5lNN71:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-159)/1)*1+135+24)+0+0)+0+36+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1d1p0x4-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"RcbNJgE6A-container\",nodeId:\"RcbNJgE6A\",rendersWithMotion:true,scopeId:\"RAiJrmR1B\",children:/*#__PURE__*/_jsx(FeaturesSEOIcons,{EoRzbrjsT:\"ListMagnifyingGlass\",height:\"100%\",id:\"RcbNJgE6A\",layoutId:\"RcbNJgE6A\",Nq_Rs3OxD:\"rgb(94, 120, 143)\",SJfRTtovi:\"var(--token-ac66fc94-fc42-4186-9956-f4984338c966, rgb(255, 255, 255))\",style:{height:\"100%\",width:\"100%\"},variant:\"s7oSoGnCJ\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"48px\",...addPropertyOverrides({NOno4EIbG:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-119)/1)*1+95+24)+0+0)+0+36+0+288-48},wNr5lNN71:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-159)/1)*1+135+24)+0+0)+0+36+0+267-48}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-c9kj88-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"uUJ51uCKC-container\",nodeId:\"uUJ51uCKC\",rendersWithMotion:true,scopeId:\"RAiJrmR1B\",children:/*#__PURE__*/_jsx(FeaturesSEOIcons,{EoRzbrjsT:\"ChartLineUp\",height:\"100%\",id:\"uUJ51uCKC\",layoutId:\"uUJ51uCKC\",Nq_Rs3OxD:\"var(--token-8af11fbe-e7e5-4ff0-adc1-9c101e34bc41, rgb(133, 204, 0))\",SJfRTtovi:\"var(--token-ac66fc94-fc42-4186-9956-f4984338c966, rgb(255, 255, 255))\",style:{height:\"100%\",width:\"100%\"},variant:\"s7oSoGnCJ\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-io817i\",layoutDependency:layoutDependency,layoutId:\"Wo2700SLG\",style:{rotate:-45},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"48px\",...addPropertyOverrides({NOno4EIbG:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-119)/1)*1+95+24)+0+0)+0+36+0+0},wNr5lNN71:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-159)/1)*1+135+24)+0+0)+0+36+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-crh5oc-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"QQYsDLLwQ-container\",nodeId:\"QQYsDLLwQ\",rendersWithMotion:true,scopeId:\"RAiJrmR1B\",style:{rotate:45},children:/*#__PURE__*/_jsx(FeaturesSEOIcons,{EoRzbrjsT:\"GoogleChromeLogo\",height:\"100%\",id:\"QQYsDLLwQ\",layoutId:\"QQYsDLLwQ\",Nq_Rs3OxD:\"rgb(138, 167, 194)\",SJfRTtovi:\"var(--token-ac66fc94-fc42-4186-9956-f4984338c966, rgb(255, 255, 255))\",style:{height:\"100%\",width:\"100%\"},variant:\"s7oSoGnCJ\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"48px\",...addPropertyOverrides({NOno4EIbG:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-119)/1)*1+95+24)+0+0)+0+36+0+288-48},wNr5lNN71:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-159)/1)*1+135+24)+0+0)+0+36+0+267-48}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ew6ilk-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"C19IyGcYB-container\",nodeId:\"C19IyGcYB\",rendersWithMotion:true,scopeId:\"RAiJrmR1B\",style:{rotate:45},children:/*#__PURE__*/_jsx(FeaturesSEOIcons,{EoRzbrjsT:\"Gauge\",height:\"100%\",id:\"C19IyGcYB\",layoutId:\"C19IyGcYB\",Nq_Rs3OxD:\"rgb(37, 65, 89)\",SJfRTtovi:\"var(--token-ac66fc94-fc42-4186-9956-f4984338c966, rgb(255, 255, 255))\",style:{height:\"100%\",width:\"100%\"},variant:\"s7oSoGnCJ\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qp0zpw\",layoutDependency:layoutDependency,layoutId:\"O0JLpqC_s\",style:{rotate:45},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"48px\",...addPropertyOverrides({NOno4EIbG:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-119)/1)*1+95+24)+0+0)+0+36+0+0},wNr5lNN71:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-159)/1)*1+135+24)+0+0)+0+36+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-sjlamh-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"DAIAy_NHB-container\",nodeId:\"DAIAy_NHB\",rendersWithMotion:true,scopeId:\"RAiJrmR1B\",style:{rotate:-45},children:/*#__PURE__*/_jsx(FeaturesSEOIcons,{EoRzbrjsT:\"Lightning\",height:\"100%\",id:\"DAIAy_NHB\",layoutId:\"DAIAy_NHB\",Nq_Rs3OxD:\"rgba(94, 120, 143, 0.5)\",SJfRTtovi:\"var(--token-ac66fc94-fc42-4186-9956-f4984338c966, rgb(255, 255, 255))\",style:{height:\"100%\",width:\"100%\"},variant:\"s7oSoGnCJ\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"48px\",...addPropertyOverrides({NOno4EIbG:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-119)/1)*1+95+24)+0+0)+0+36+0+288-48},wNr5lNN71:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-159)/1)*1+135+24)+0+0)+0+36+0+267-48}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1rftbe0-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"PsGPVgcJL-container\",nodeId:\"PsGPVgcJL\",rendersWithMotion:true,scopeId:\"RAiJrmR1B\",style:{rotate:-45},children:/*#__PURE__*/_jsx(FeaturesSEOIcons,{EoRzbrjsT:\"ChartDonut\",height:\"100%\",id:\"PsGPVgcJL\",layoutId:\"PsGPVgcJL\",Nq_Rs3OxD:\"rgb(55, 72, 87)\",SJfRTtovi:\"var(--token-ac66fc94-fc42-4186-9956-f4984338c966, rgb(255, 255, 255))\",style:{height:\"100%\",width:\"100%\"},variant:\"s7oSoGnCJ\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gnu4i2\",layoutDependency:layoutDependency,layoutId:\"JvhTwOOGq\",style:{rotate:90},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"48px\",...addPropertyOverrides({NOno4EIbG:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-119)/1)*1+95+24)+0+0)+0+36+0+0},wNr5lNN71:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-159)/1)*1+135+24)+0+0)+0+36+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1mmim21-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"oGm4W2BAY-container\",nodeId:\"oGm4W2BAY\",rendersWithMotion:true,scopeId:\"RAiJrmR1B\",style:{rotate:-90},children:/*#__PURE__*/_jsx(FeaturesSEOIcons,{EoRzbrjsT:\"TreeStructure\",height:\"100%\",id:\"oGm4W2BAY\",layoutId:\"oGm4W2BAY\",Nq_Rs3OxD:\"rgb(17, 55, 79)\",SJfRTtovi:\"var(--token-ac66fc94-fc42-4186-9956-f4984338c966, rgb(255, 255, 255))\",style:{height:\"100%\",width:\"100%\"},variant:\"s7oSoGnCJ\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"48px\",...addPropertyOverrides({NOno4EIbG:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-119)/1)*1+95+24)+0+0)+0+36+0+288-48},wNr5lNN71:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-159)/1)*1+135+24)+0+0)+0+36+0+267-48}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-bg1m47-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"PlBuJAoPB-container\",nodeId:\"PlBuJAoPB\",rendersWithMotion:true,scopeId:\"RAiJrmR1B\",style:{rotate:-90},children:/*#__PURE__*/_jsx(FeaturesSEOIcons,{EoRzbrjsT:\"ChartScatter\",height:\"100%\",id:\"PlBuJAoPB\",layoutId:\"PlBuJAoPB\",Nq_Rs3OxD:\"rgb(94, 120, 143)\",SJfRTtovi:\"var(--token-ac66fc94-fc42-4186-9956-f4984338c966, rgb(255, 255, 255))\",style:{height:\"100%\",width:\"100%\"},variant:\"s7oSoGnCJ\",width:\"100%\"})})})]})]})]}),isDisplayed8()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xr6138\",\"data-framer-name\":\"App Screens Stack\",layoutDependency:layoutDependency,layoutId:\"wVlH8jtK_\",transformTemplate:transformTemplate1,...addPropertyOverrides({\"BW3Bp7_Ag-hover\":{transformTemplate:undefined},BW3Bp7_Ag:{transformTemplate:undefined},YyQ1nTvSs:{transformTemplate:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lz9rzz\",\"data-framer-name\":\"HealthWell_App_Screen_01 Stack\",layoutDependency:layoutDependency,layoutId:\"Tv9SUyRRD\",transformTemplate:transformTemplate1,...addPropertyOverrides({\"BW3Bp7_Ag-hover\":{transformTemplate:undefined}},baseVariant,gestureVariant),children:[isDisplayed8()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"HealthWell_App_Screen_01\",fit:\"fill\",intrinsicHeight:1864,intrinsicWidth:946,pixelHeight:1864,pixelWidth:946,src:\"https://framerusercontent.com/images/bm6ST2JsFJfQDPm40xaWe3kW0E8.png\",srcSet:\"https://framerusercontent.com/images/bm6ST2JsFJfQDPm40xaWe3kW0E8.png?scale-down-to=1024 519w,https://framerusercontent.com/images/bm6ST2JsFJfQDPm40xaWe3kW0E8.png 946w\"},className:\"framer-3j9zfh\",\"data-framer-name\":\"HealthWell_App_Screen_01\",layoutDependency:layoutDependency,layoutId:\"jCRYBJJ_f\",...addPropertyOverrides({\"BW3Bp7_Ag-hover\":{background:{alt:\"HealthWell_App_Screen_01\",fit:\"fill\",intrinsicHeight:1864,intrinsicWidth:946,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+0+24+0),pixelHeight:1864,pixelWidth:946,sizes:\"190px\",src:\"https://framerusercontent.com/images/bm6ST2JsFJfQDPm40xaWe3kW0E8.png\",srcSet:\"https://framerusercontent.com/images/bm6ST2JsFJfQDPm40xaWe3kW0E8.png?scale-down-to=1024 519w,https://framerusercontent.com/images/bm6ST2JsFJfQDPm40xaWe3kW0E8.png 946w\"}},BW3Bp7_Ag:{background:{alt:\"HealthWell_App_Screen_01\",fit:\"fill\",intrinsicHeight:1864,intrinsicWidth:946,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+0+36+0),pixelHeight:1864,pixelWidth:946,sizes:\"240px\",src:\"https://framerusercontent.com/images/bm6ST2JsFJfQDPm40xaWe3kW0E8.png\",srcSet:\"https://framerusercontent.com/images/bm6ST2JsFJfQDPm40xaWe3kW0E8.png?scale-down-to=1024 519w,https://framerusercontent.com/images/bm6ST2JsFJfQDPm40xaWe3kW0E8.png 946w\"}},YyQ1nTvSs:{background:{alt:\"HealthWell_App_Screen_01\",fit:\"fill\",intrinsicHeight:1864,intrinsicWidth:946,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+0+36+0),pixelHeight:1864,pixelWidth:946,sizes:\"240px\",src:\"https://framerusercontent.com/images/bm6ST2JsFJfQDPm40xaWe3kW0E8.png\",srcSet:\"https://framerusercontent.com/images/bm6ST2JsFJfQDPm40xaWe3kW0E8.png?scale-down-to=1024 519w,https://framerusercontent.com/images/bm6ST2JsFJfQDPm40xaWe3kW0E8.png 946w\"}}},baseVariant,gestureVariant)}),isDisplayed9()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-ev7zdv\",\"data-framer-name\":\"Shadow\",layoutDependency:layoutDependency,layoutId:\"sn_2vPLKX\",style:{backgroundColor:\"rgba(0, 0, 0, 0.1)\",borderBottomLeftRadius:96,borderBottomRightRadius:96,borderTopLeftRadius:96,borderTopRightRadius:96,filter:\"blur(8px)\",opacity:0,WebkitFilter:\"blur(8px)\"}})]}),isDisplayed8()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"HealthWell_App_Screen_02\",fit:\"fill\",intrinsicHeight:1864,intrinsicWidth:947,pixelHeight:1864,pixelWidth:947,src:\"https://framerusercontent.com/images/bhW8RU9rjm9SKgMhNU44A6U1WQ.png\",srcSet:\"https://framerusercontent.com/images/bhW8RU9rjm9SKgMhNU44A6U1WQ.png?scale-down-to=1024 520w,https://framerusercontent.com/images/bhW8RU9rjm9SKgMhNU44A6U1WQ.png 947w\"},className:\"framer-1im1ip5\",\"data-framer-name\":\"HealthWell_App_Screen_02\",layoutDependency:layoutDependency,layoutId:\"yuI4Tkn2L\",transformTemplate:transformTemplate1,...addPropertyOverrides({\"BW3Bp7_Ag-hover\":{background:{alt:\"HealthWell_App_Screen_02\",fit:\"fill\",intrinsicHeight:1864,intrinsicWidth:947,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+0+48),pixelHeight:1864,pixelWidth:947,sizes:\"163px\",src:\"https://framerusercontent.com/images/bhW8RU9rjm9SKgMhNU44A6U1WQ.png\",srcSet:\"https://framerusercontent.com/images/bhW8RU9rjm9SKgMhNU44A6U1WQ.png?scale-down-to=1024 520w,https://framerusercontent.com/images/bhW8RU9rjm9SKgMhNU44A6U1WQ.png 947w\"},transformTemplate:undefined},BW3Bp7_Ag:{background:{alt:\"HealthWell_App_Screen_02\",fit:\"fill\",intrinsicHeight:1864,intrinsicWidth:947,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+0+96),pixelHeight:1864,pixelWidth:947,sizes:\"122px\",src:\"https://framerusercontent.com/images/bhW8RU9rjm9SKgMhNU44A6U1WQ.png\",srcSet:\"https://framerusercontent.com/images/bhW8RU9rjm9SKgMhNU44A6U1WQ.png?scale-down-to=1024 520w,https://framerusercontent.com/images/bhW8RU9rjm9SKgMhNU44A6U1WQ.png 947w\"}},YyQ1nTvSs:{background:{alt:\"HealthWell_App_Screen_02\",fit:\"fill\",intrinsicHeight:1864,intrinsicWidth:947,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+0+96),pixelHeight:1864,pixelWidth:947,sizes:\"122px\",src:\"https://framerusercontent.com/images/bhW8RU9rjm9SKgMhNU44A6U1WQ.png\",srcSet:\"https://framerusercontent.com/images/bhW8RU9rjm9SKgMhNU44A6U1WQ.png?scale-down-to=1024 520w,https://framerusercontent.com/images/bhW8RU9rjm9SKgMhNU44A6U1WQ.png 947w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nqsx7o\",\"data-framer-name\":\"Gradient\",layoutDependency:layoutDependency,layoutId:\"FijcfZVzx\",style:{background:\"linear-gradient(180deg, rgba(84, 84, 84, 0) 0%, var(--token-ac66fc94-fc42-4186-9956-f4984338c966, rgb(255, 255, 255)) 100%)\"}})]}),isDisplayed10()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-jnxqhi\",\"data-framer-name\":\"Gradient\",layoutDependency:layoutDependency,layoutId:\"DkkwPDF6R\",style:{background:\"linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, var(--token-ac66fc94-fc42-4186-9956-f4984338c966, rgb(255, 255, 255)) 100%)\",borderTopRightRadius:0},variants:{amlBWV2w8:{borderTopRightRadius:30},CHjyObuOO:{borderTopRightRadius:30},iOPoM3co7:{borderTopRightRadius:30},Na_fQf1Hp:{borderTopRightRadius:30}}}),isDisplayed11()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-4v3io6\",\"data-framer-name\":\"Gradient\",layoutDependency:layoutDependency,layoutId:\"nn398M8hk\",style:{background:\"linear-gradient(180deg, rgba(84, 84, 84, 0) 0%, var(--token-ac66fc94-fc42-4186-9956-f4984338c966, rgb(255, 255, 255)) 100%)\"},variants:{amlBWV2w8:{background:\"linear-gradient(180deg, rgba(84, 84, 84, 0) 0%, var(--token-ac66fc94-fc42-4186-9956-f4984338c966, rgb(255, 255, 255)) 90%)\"},iOPoM3co7:{background:\"linear-gradient(180deg, rgba(84, 84, 84, 0) 0%, var(--token-ac66fc94-fc42-4186-9956-f4984338c966, rgb(255, 255, 255)) 90%)\"},NOno4EIbG:{background:\"linear-gradient(180deg, rgba(84, 84, 84, 0) 0%, var(--token-ac66fc94-fc42-4186-9956-f4984338c966, rgb(255, 255, 255)) 90%)\"}}}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1i8x35p\",\"data-framer-name\":\"Gradient\",layoutDependency:layoutDependency,layoutId:\"zBbFs7nvf\",style:{background:\"linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, var(--token-ac66fc94-fc42-4186-9956-f4984338c966, rgb(255, 255, 255)) 100%)\",borderTopLeftRadius:0},variants:{CHjyObuOO:{background:\"linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%)\",borderTopLeftRadius:30},Na_fQf1Hp:{background:\"linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%)\",borderTopLeftRadius:30}}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1st1gdi\",layoutDependency:layoutDependency,layoutId:\"KITlsdwzS\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-7e863056-5bee-4444-a43b-367cd97d6d18, rgb(0, 0, 0)))\"},children:\"Custom Web Design\"})}),className:\"framer-37d8fa\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"KCHMasntU\",style:{\"--extracted-a0htzi\":\"var(--token-7e863056-5bee-4444-a43b-367cd97d6d18, rgb(0, 0, 0))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"NOno4EIbG-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtYm9sZA==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-7e863056-5bee-4444-a43b-367cd97d6d18, rgb(0, 0, 0)))\"},children:\"The best courses, from the best minds\"})})},amlBWV2w8:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-7e863056-5bee-4444-a43b-367cd97d6d18, rgb(0, 0, 0)))\"},children:\"E-Commerce Solutions\"})})},BW3Bp7_Ag:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-7e863056-5bee-4444-a43b-367cd97d6d18, rgb(0, 0, 0)))\"},children:\"Mobile App Development\"})})},CHjyObuOO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-7e863056-5bee-4444-a43b-367cd97d6d18, rgb(0, 0, 0)))\"},children:\"Website Maintenance\"})})},iOPoM3co7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-7e863056-5bee-4444-a43b-367cd97d6d18, rgb(0, 0, 0)))\"},children:\"E-Commerce Solutions\"})})},JhFPrvjM_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-7e863056-5bee-4444-a43b-367cd97d6d18, rgb(0, 0, 0)))\"},children:\"UX/UI Design\"})})},jhO9FzTKB:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-7e863056-5bee-4444-a43b-367cd97d6d18, rgb(0, 0, 0)))\"},children:\"UX/UI Design\"})})},KvoxHQYS7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-7e863056-5bee-4444-a43b-367cd97d6d18, rgb(0, 0, 0)))\"},children:\"Branding & Identity\"})})},Na_fQf1Hp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-7e863056-5bee-4444-a43b-367cd97d6d18, rgb(0, 0, 0)))\"},children:\"Website Maintenance\"})})},NOno4EIbG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtYm9sZA==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-7e863056-5bee-4444-a43b-367cd97d6d18, rgb(0, 0, 0)))\"},children:\"Crack that Career Switch\"})}),fonts:[\"FS;Plus Jakarta Sans-bold\"]},Uk2liJEhF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-7e863056-5bee-4444-a43b-367cd97d6d18, rgb(0, 0, 0)))\"},children:\"Branding & Identity\"})})},WFA1U3MFk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-7e863056-5bee-4444-a43b-367cd97d6d18, rgb(0, 0, 0)))\"},children:\"UX/UI Design\"})})},wNr5lNN71:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtYm9sZA==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-7e863056-5bee-4444-a43b-367cd97d6d18, rgb(0, 0, 0)))\"},children:\"Crack that Career Switch\"})}),fonts:[\"FS;Plus Jakarta Sans-bold\"]},YyQ1nTvSs:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-7e863056-5bee-4444-a43b-367cd97d6d18, rgb(0, 0, 0)))\"},children:\"Mobile App Development\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-eec563d0-579b-4ee4-bbbf-8d4ac1f3bfbf, rgb(77, 77, 77)))\"},children:\"Crafting unique and engaging websites tailored to your brand.\"})}),className:\"framer-1vt8byf\",fonts:[\"Inter-Light\"],layoutDependency:layoutDependency,layoutId:\"r2okGNAx3\",style:{\"--extracted-r6o4lv\":\"var(--token-eec563d0-579b-4ee4-bbbf-8d4ac1f3bfbf, rgb(77, 77, 77))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:1},variants:{\"amlBWV2w8-hover\":{opacity:1},\"BW3Bp7_Ag-hover\":{opacity:1},\"NOno4EIbG-hover\":{opacity:1},\"SwAevb1d5-hover\":{opacity:1},CHjyObuOO:{opacity:1},JhFPrvjM_:{opacity:1},jhO9FzTKB:{opacity:1},KvoxHQYS7:{opacity:1},Na_fQf1Hp:{opacity:1},Uk2liJEhF:{opacity:1},WFA1U3MFk:{opacity:1},wNr5lNN71:{opacity:.8}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({amlBWV2w8:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-eec563d0-579b-4ee4-bbbf-8d4ac1f3bfbf, rgb(77, 77, 77)))\"},children:\"Building robust online stores to drive sales and enhance user experience.\"})})},BW3Bp7_Ag:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-eec563d0-579b-4ee4-bbbf-8d4ac1f3bfbf, rgb(77, 77, 77)))\"},children:\"Developing intuitive apps for iOS and Android platforms.\"})})},CHjyObuOO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-eec563d0-579b-4ee4-bbbf-8d4ac1f3bfbf, rgb(77, 77, 77)))\"},children:\"Ensuring your website remains up-to-date and secure.\"})})},iOPoM3co7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-eec563d0-579b-4ee4-bbbf-8d4ac1f3bfbf, rgb(77, 77, 77)))\"},children:\"Building robust online stores to drive sales and enhance user experience.\"})})},JhFPrvjM_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-eec563d0-579b-4ee4-bbbf-8d4ac1f3bfbf, rgb(77, 77, 77)))\"},children:\"Designing seamless and interactive user experiences.\"})})},jhO9FzTKB:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-eec563d0-579b-4ee4-bbbf-8d4ac1f3bfbf, rgb(77, 77, 77)))\"},children:\"Designing seamless and interactive user experiences.\"})})},KvoxHQYS7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-eec563d0-579b-4ee4-bbbf-8d4ac1f3bfbf, rgb(77, 77, 77)))\"},children:\"Creating cohesive and impactful brand identities.\"})})},Na_fQf1Hp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-eec563d0-579b-4ee4-bbbf-8d4ac1f3bfbf, rgb(77, 77, 77)))\"},children:\"Ensuring your website remains up-to-date and secure.\"})})},NOno4EIbG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-eec563d0-579b-4ee4-bbbf-8d4ac1f3bfbf, rgb(77, 77, 77)))\"},children:\"Tell Rivlon about your new career goals, and instantly get top learning resources from people who have already cracked it.\"})}),fonts:[\"FS;Plus Jakarta Sans-regular\"]},Uk2liJEhF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-eec563d0-579b-4ee4-bbbf-8d4ac1f3bfbf, rgb(77, 77, 77)))\"},children:\"Creating cohesive and impactful brand identities.\"})})},WFA1U3MFk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-eec563d0-579b-4ee4-bbbf-8d4ac1f3bfbf, rgb(77, 77, 77)))\"},children:\"Designing seamless and interactive user experiences.\"})})},wNr5lNN71:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-eec563d0-579b-4ee4-bbbf-8d4ac1f3bfbf, rgb(77, 77, 77)))\"},children:\"Tell Rivlon about your new career goals, and instantly get top learning resources from people who have already cracked it.\"})}),fonts:[\"FS;Plus Jakarta Sans-regular\"]},YyQ1nTvSs:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-eec563d0-579b-4ee4-bbbf-8d4ac1f3bfbf, rgb(77, 77, 77)))\"},children:\"Developing intuitive apps for iOS and Android platforms.\"})})}},baseVariant,gestureVariant)})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-t44RR.framer-1pqua0i, .framer-t44RR .framer-1pqua0i { display: block; }\",\".framer-t44RR.framer-xxjf4b { align-content: flex-start; align-items: flex-start; cursor: default; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 376px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 600px; }\",\".framer-t44RR .framer-1scjs6u { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 1px; justify-content: flex-end; overflow: visible; padding: 0px 0px 24px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-t44RR .framer-1yrg4mn { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-t44RR .framer-16kqv7h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; min-height: 221px; overflow: visible; padding: 24px 48px 0px 48px; position: relative; width: 100%; }\",\".framer-t44RR .framer-r9wlrg { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: 191px; justify-content: center; left: 50%; overflow: visible; padding: 0px; position: absolute; width: min-content; z-index: 1; }\",\".framer-t44RR .framer-1cgt0dt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: 191px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 276px; }\",\".framer-t44RR .framer-wz0ivp-container, .framer-t44RR .framer-1odpmkg-container { flex: none; height: auto; position: relative; width: auto; z-index: 1; }\",\".framer-t44RR .framer-2600go { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; justify-content: center; overflow: visible; padding: 0px; position: absolute; right: 0px; top: 0px; width: 138px; z-index: 1; }\",\".framer-t44RR .framer-vyq170 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: 191px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 138px; }\",\".framer-t44RR .framer-1ubv6d4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: 191px; justify-content: center; overflow: visible; padding: 0px; position: absolute; right: 0px; top: calc(49.73821989528798% - 191px / 2); width: 276px; z-index: 1; }\",\".framer-t44RR .framer-1aay02x { bottom: -48px; flex: none; left: 0px; overflow: hidden; position: absolute; top: -48px; width: 1px; z-index: 1; }\",\".framer-t44RR .framer-1x2tuz2 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 24px 0px 0px 0px; position: absolute; top: 50%; width: min-content; z-index: 1; }\",\".framer-t44RR .framer-6z04e1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: 144px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-t44RR .framer-mv3fau-container, .framer-t44RR .framer-25k1g2-container, .framer-t44RR .framer-3y0wws-container, .framer-t44RR .framer-1vyd9y-container, .framer-t44RR .framer-p1vnne-container, .framer-t44RR .framer-8ogp04-container, .framer-t44RR .framer-1hvlf7i-container, .framer-t44RR .framer-uta8g-container, .framer-t44RR .framer-11gxuvd-container, .framer-t44RR .framer-1hwovfv-container, .framer-t44RR .framer-1l6otc9-container, .framer-t44RR .framer-8cq9l-container, .framer-t44RR .framer-10mk2ql-container, .framer-t44RR .framer-tedjp0-container, .framer-t44RR .framer-18q2nsw-container { flex: none; height: 96px; position: relative; width: 96px; }\",\".framer-t44RR .framer-1faasid { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; left: 50%; min-height: 172px; min-width: 600px; overflow: visible; padding: 24px 0px 0px 0px; position: absolute; top: 50%; width: min-content; z-index: 1; }\",\".framer-t44RR .framer-7u0rsb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; min-height: 144px; min-width: 144px; overflow: visible; padding: 24px; position: relative; width: min-content; z-index: 1; }\",\".framer-t44RR .framer-1sxhwzc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: 96px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 96px; z-index: 1; }\",\".framer-t44RR .framer-qdpui1-container { flex: none; height: 72px; left: calc(50.00000000000002% - 72px / 2); position: absolute; top: calc(50.00000000000002% - 72px / 2); width: 72px; z-index: 1; }\",\".framer-t44RR .framer-8ddzc3-container { flex: none; height: 31px; position: absolute; right: 0px; top: 0px; width: 30px; z-index: 1; }\",\".framer-t44RR .framer-11bsp8a-container { bottom: -28px; flex: none; height: auto; left: 50%; position: absolute; width: auto; z-index: 2; }\",\".framer-t44RR .framer-106dcwj { aspect-ratio: 0.9649253731343284 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 609px); left: 48px; overflow: visible; position: absolute; right: -24px; top: 48px; z-index: 1; }\",\".framer-t44RR .framer-19j7wwm { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; justify-content: center; left: calc(50.00000000000002% - 520px / 2); overflow: visible; padding: 0px; position: absolute; top: 0px; width: 520px; z-index: 1; }\",\".framer-t44RR .framer-1195y9y { aspect-ratio: 1.042988019732206 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 230px); overflow: visible; position: absolute; right: 48px; top: 60px; width: 240px; z-index: 1; }\",\".framer-t44RR .framer-hyj09r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; left: 48px; overflow: visible; padding: 0px; position: absolute; top: 48px; width: min-content; z-index: 2; }\",\".framer-t44RR .framer-irtddv { aspect-ratio: 0.9938650306748466 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 242px); overflow: visible; position: relative; width: 240px; z-index: 2; }\",\".framer-t44RR .framer-1o9xfc5, .framer-t44RR .framer-1nqsx7o, .framer-t44RR .framer-4v3io6 { bottom: -1px; flex: none; height: 72px; left: 0px; overflow: hidden; pointer-events: none; position: absolute; right: 0px; z-index: 1; }\",\".framer-t44RR .framer-1d0vtbr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; left: 50%; min-height: 114px; min-width: 330px; overflow: visible; padding: 24px 0px 0px 0px; position: absolute; top: 50%; width: min-content; z-index: 1; }\",\".framer-t44RR .framer-15uxitd { flex: none; height: 144px; left: 0px; overflow: hidden; position: absolute; top: calc(60.00000000000002% - 144px / 2); width: 1px; z-index: 1; }\",\".framer-t44RR .framer-yurhb2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; min-height: 97px; min-width: 355px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-t44RR .framer-1a0f27t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 96px; justify-content: center; overflow: hidden; padding: 24px 48px 24px 48px; position: relative; width: 355px; z-index: 1; }\",\".framer-t44RR .framer-bfyoo3 { align-content: center; align-items: center; aspect-ratio: 5.4 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: var(--framer-aspect-ratio-supported, 48px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 259px; }\",\".framer-t44RR .framer-i2xxuu { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-t44RR .framer-19m4a71 { flex: none; height: 144px; overflow: hidden; position: absolute; right: 0px; top: calc(60.00000000000002% - 144px / 2); width: 1px; z-index: 1; }\",\".framer-t44RR .framer-xhzes7 { flex: none; height: 1px; left: calc(49.859154929577485% - 403px / 2); overflow: hidden; position: absolute; top: 24px; width: 403px; z-index: 1; }\",\".framer-t44RR .framer-oz1m4m { bottom: 0px; flex: none; height: 1px; left: calc(49.859154929577485% - 403px / 2); overflow: hidden; position: absolute; width: 403px; z-index: 1; }\",\".framer-t44RR .framer-v28m94 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: 360px; justify-content: center; left: calc(50.00000000000002% - 360px / 2); overflow: visible; padding: 0px; position: absolute; top: 0px; width: 360px; z-index: 1; }\",\".framer-t44RR .framer-4r9akf-container { flex: none; height: 220px; position: relative; width: 220px; z-index: 1; }\",\".framer-t44RR .framer-1h5n4j4 { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: var(--framer-aspect-ratio-supported, 300px); justify-content: center; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 50%; width: 300px; z-index: 1; }\",\".framer-t44RR .framer-1serezz, .framer-t44RR .framer-fbapds, .framer-t44RR .framer-r9jc25, .framer-t44RR .framer-4cuin, .framer-t44RR .framer-1cm6t2x, .framer-t44RR .framer-io817i, .framer-t44RR .framer-qp0zpw, .framer-t44RR .framer-gnu4i2 { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; justify-content: space-between; left: calc(50.00000000000002% - 48px / 2); overflow: visible; padding: 0px; position: absolute; top: 0px; width: 48px; z-index: 1; }\",\".framer-t44RR .framer-16xs51i-container, .framer-t44RR .framer-6bmnf8-container, .framer-t44RR .framer-16uxtmg-container, .framer-t44RR .framer-7gu1h3-container, .framer-t44RR .framer-1d1p0x4-container, .framer-t44RR .framer-crh5oc-container, .framer-t44RR .framer-sjlamh-container, .framer-t44RR .framer-1mmim21-container { flex: none; height: 48px; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-t44RR .framer-1js4a0w-container, .framer-t44RR .framer-j887uv-container, .framer-t44RR .framer-1sp109a-container, .framer-t44RR .framer-6v1s6o-container, .framer-t44RR .framer-c9kj88-container, .framer-t44RR .framer-ew6ilk-container, .framer-t44RR .framer-1rftbe0-container, .framer-t44RR .framer-bg1m47-container { bottom: 0px; flex: none; height: 48px; left: 0px; position: absolute; right: 0px; z-index: 1; }\",\".framer-t44RR .framer-1r8v0f0 { align-content: center; align-items: center; bottom: 36px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; justify-content: center; left: 36px; overflow: visible; padding: 0px; position: absolute; right: 36px; top: 36px; z-index: 1; }\",\".framer-t44RR .framer-1xr6138 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; left: 50%; min-height: 380px; overflow: visible; padding: 0px; position: absolute; top: 24px; width: 360px; z-index: 1; }\",\".framer-t44RR .framer-lz9rzz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; left: 50%; min-height: 472px; overflow: visible; padding: 0px; position: absolute; top: 0px; width: 240px; z-index: 2; }\",\".framer-t44RR .framer-3j9zfh { aspect-ratio: 0.5075107296137339 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 394px); overflow: visible; position: relative; width: 1px; z-index: 2; }\",\".framer-t44RR .framer-ev7zdv { bottom: 24px; flex: none; left: 120px; overflow: hidden; position: absolute; right: -6px; top: 24px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-t44RR .framer-1im1ip5 { aspect-ratio: 0.5080472103004292 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 240px); left: 50%; overflow: visible; position: absolute; top: 96px; width: 122px; z-index: 1; }\",\".framer-t44RR .framer-jnxqhi { bottom: 0px; flex: none; overflow: hidden; pointer-events: none; position: absolute; right: 0px; top: 0px; width: 75%; z-index: 1; }\",\".framer-t44RR .framer-1i8x35p { bottom: 0px; flex: none; left: 0px; overflow: hidden; pointer-events: none; position: absolute; top: 0px; width: 12%; z-index: 1; }\",\".framer-t44RR .framer-1st1gdi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 24px 0px 24px; position: relative; width: 100%; }\",\".framer-t44RR .framer-37d8fa { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-t44RR .framer-1vt8byf { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 300px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-t44RR.framer-v-orrqeh .framer-1vt8byf, .framer-t44RR.framer-v-ysll2e .framer-1vt8byf, .framer-t44RR.framer-v-10t4naj .framer-1vt8byf, .framer-t44RR.framer-v-1wobdlw .framer-1vt8byf, .framer-t44RR.framer-v-1keg9rf .framer-1vt8byf, .framer-t44RR.framer-v-1dzqp82 .framer-1vt8byf, .framer-t44RR.framer-v-1yeg111 .framer-1vt8byf { width: 100%; }\",\".framer-t44RR.framer-v-12h7v68 .framer-11bsp8a-container, .framer-t44RR.framer-v-ysll2e .framer-11bsp8a-container, .framer-t44RR.framer-v-15k6twk .framer-uta8g-container, .framer-t44RR.framer-v-1dzqp82 .framer-uta8g-container, .framer-t44RR.framer-v-12h7v68.hover .framer-jnxqhi { order: 8; }\",\".framer-t44RR.framer-v-12h7v68 .framer-106dcwj, .framer-t44RR.framer-v-ysll2e .framer-106dcwj { height: var(--framer-aspect-ratio-supported, 597px); order: 1; }\",\".framer-t44RR.framer-v-12h7v68 .framer-jnxqhi, .framer-t44RR.framer-v-ysll2e .framer-jnxqhi { order: 7; width: 35%; will-change: var(--framer-will-change-override, transform); }\",\".framer-t44RR.framer-v-12h7v68 .framer-4v3io6, .framer-t44RR.framer-v-ysll2e .framer-4v3io6 { bottom: -2px; height: 54px; order: 9; }\",\".framer-t44RR.framer-v-15v5ci8 .framer-1xr6138, .framer-t44RR.framer-v-10t4naj .framer-1xr6138 { bottom: 0px; flex-direction: column; height: unset; left: calc(50.00000000000002% - 360px / 2); min-height: unset; top: 0px; }\",\".framer-t44RR.framer-v-15v5ci8 .framer-lz9rzz { min-height: unset; order: 2; top: 36px; }\",\".framer-t44RR.framer-v-15v5ci8 .framer-3j9zfh, .framer-t44RR.framer-v-10t4naj .framer-3j9zfh { height: var(--framer-aspect-ratio-supported, 473px); order: 1; }\",\".framer-t44RR.framer-v-15v5ci8 .framer-1im1ip5, .framer-t44RR.framer-v-10t4naj .framer-ev7zdv, .framer-t44RR.framer-v-10t4naj .framer-1im1ip5, .framer-t44RR.framer-v-1ndy17a .framer-1aay02x, .framer-t44RR.framer-v-1wobdlw .framer-1aay02x, .framer-t44RR.framer-v-1keg9rf .framer-1aay02x, .framer-t44RR.framer-v-15k6twk .framer-tedjp0-container, .framer-t44RR.framer-v-1dzqp82 .framer-tedjp0-container { order: 0; }\",\".framer-t44RR.framer-v-15v5ci8 .framer-1nqsx7o, .framer-t44RR.framer-v-15k6twk .framer-1x2tuz2, .framer-t44RR.framer-v-15k6twk .framer-mv3fau-container, .framer-t44RR.framer-v-1dzqp82 .framer-mv3fau-container { order: 1; }\",\".framer-t44RR.framer-v-10t4naj .framer-lz9rzz { min-height: unset; order: 1; top: 36px; }\",\".framer-t44RR.framer-v-10t4naj .framer-1nqsx7o, .framer-t44RR.framer-v-15k6twk .framer-25k1g2-container, .framer-t44RR.framer-v-1dzqp82 .framer-25k1g2-container, .framer-t44RR.framer-v-15v5ci8.hover .framer-1nqsx7o { order: 2; }\",\".framer-t44RR.framer-v-rv849l .framer-v28m94 { flex-direction: column; order: 3; }\",\".framer-t44RR.framer-v-rv849l .framer-4r9akf-container, .framer-t44RR.framer-v-1yyvrq0 .framer-4r9akf-container { height: 190px; width: 190px; }\",\".framer-t44RR.framer-v-rv849l .framer-1h5n4j4 { aspect-ratio: unset; bottom: 36px; height: unset; left: 36px; right: 36px; top: 36px; width: unset; }\",\".framer-t44RR.framer-v-rv849l .framer-4v3io6 { height: 50%; order: 5; z-index: 2; }\",\".framer-t44RR.framer-v-rv849l .framer-1st1gdi { height: 95px; }\",\".framer-t44RR.framer-v-rv849l .framer-1vt8byf { height: 54%; width: 392px; }\",\".framer-t44RR.framer-v-1yyvrq0 .framer-v28m94 { flex-direction: column; height: 339px; order: 3; }\",\".framer-t44RR.framer-v-1yyvrq0 .framer-4v3io6, .framer-t44RR.framer-v-15k6twk .framer-p1vnne-container, .framer-t44RR.framer-v-1dzqp82 .framer-p1vnne-container { order: 5; }\",\".framer-t44RR.framer-v-1yyvrq0 .framer-1st1gdi { height: 135px; }\",\".framer-t44RR.framer-v-1yyvrq0 .framer-1vt8byf { height: 33%; width: 80%; }\",\".framer-t44RR.framer-v-1ndy17a .framer-1yrg4mn, .framer-t44RR.framer-v-1wobdlw .framer-1yrg4mn, .framer-t44RR.framer-v-1keg9rf .framer-1yrg4mn { overflow: visible; z-index: 1; }\",\".framer-t44RR.framer-v-1ndy17a .framer-r9wlrg, .framer-t44RR.framer-v-1ndy17a .framer-1cgt0dt, .framer-t44RR.framer-v-1ndy17a .framer-wz0ivp-container, .framer-t44RR.framer-v-1ndy17a .framer-1odpmkg-container, .framer-t44RR.framer-v-1wobdlw .framer-r9wlrg, .framer-t44RR.framer-v-1wobdlw .framer-1cgt0dt, .framer-t44RR.framer-v-1keg9rf .framer-r9wlrg, .framer-t44RR.framer-v-1keg9rf .framer-1cgt0dt { height: 194px; }\",\".framer-t44RR.framer-v-1ndy17a .framer-vyq170, .framer-t44RR.framer-v-1wobdlw .framer-vyq170, .framer-t44RR.framer-v-1keg9rf .framer-vyq170 { height: 194px; order: 1; z-index: 1; }\",\".framer-t44RR.framer-v-1ndy17a .framer-1ubv6d4, .framer-t44RR.framer-v-1wobdlw .framer-1ubv6d4, .framer-t44RR.framer-v-1keg9rf .framer-1ubv6d4 { bottom: 0px; height: unset; top: 0px; }\",\".framer-t44RR.framer-v-15k6twk .framer-3y0wws-container, .framer-t44RR.framer-v-1dzqp82 .framer-3y0wws-container { order: 3; }\",\".framer-t44RR.framer-v-15k6twk .framer-1vyd9y-container, .framer-t44RR.framer-v-1dzqp82 .framer-1vyd9y-container, .framer-t44RR.framer-v-rv849l.hover .framer-4v3io6 { order: 4; }\",\".framer-t44RR.framer-v-15k6twk .framer-8ogp04-container, .framer-t44RR.framer-v-1dzqp82 .framer-8ogp04-container, .framer-t44RR.framer-v-rv849l.hover .framer-v28m94 { order: 6; }\",\".framer-t44RR.framer-v-15k6twk .framer-1hvlf7i-container, .framer-t44RR.framer-v-1dzqp82 .framer-1hvlf7i-container { order: 7; }\",\".framer-t44RR.framer-v-15k6twk .framer-11gxuvd-container, .framer-t44RR.framer-v-1dzqp82 .framer-11gxuvd-container { order: 9; }\",\".framer-t44RR.framer-v-15k6twk .framer-1hwovfv-container, .framer-t44RR.framer-v-1dzqp82 .framer-1hwovfv-container { order: 10; }\",\".framer-t44RR.framer-v-15k6twk .framer-1l6otc9-container, .framer-t44RR.framer-v-1dzqp82 .framer-1l6otc9-container { order: 11; }\",\".framer-t44RR.framer-v-15k6twk .framer-8cq9l-container, .framer-t44RR.framer-v-1dzqp82 .framer-8cq9l-container { order: 12; }\",\".framer-t44RR.framer-v-15k6twk .framer-10mk2ql-container, .framer-t44RR.framer-v-1dzqp82 .framer-10mk2ql-container { order: 13; }\",\".framer-t44RR.framer-v-15k6twk .framer-18q2nsw-container, .framer-t44RR.framer-v-1dzqp82 .framer-18q2nsw-container { order: 14; }\",\".framer-t44RR.framer-v-15k6twk .framer-1faasid { min-height: unset; min-width: unset; order: 2; }\",\".framer-t44RR.framer-v-15k6twk .framer-7u0rsb { height: 144px; min-height: unset; min-width: unset; order: 0; width: 144px; }\",\".framer-t44RR.framer-v-15k6twk .framer-1sxhwzc { height: 94px; width: 94px; }\",\".framer-t44RR.framer-v-15k6twk .framer-8ddzc3-container, .framer-t44RR.framer-v-1dzqp82 .framer-8ddzc3-container { height: 30px; }\",\".framer-t44RR.framer-v-15k6twk .framer-jnxqhi { order: 10; width: 12%; will-change: var(--framer-will-change-override, transform); }\",\".framer-t44RR.framer-v-15k6twk .framer-1i8x35p { order: 11; will-change: var(--framer-will-change-override, transform); }\",\".framer-t44RR.framer-v-1dzqp82 .framer-1faasid, .framer-t44RR.framer-v-15k6twk.hover .framer-1faasid, .framer-t44RR.framer-v-15k6twk.hover .framer-7u0rsb, .framer-t44RR.framer-v-1cvydue.hover .framer-yurhb2 { min-height: unset; min-width: unset; }\",\".framer-t44RR.framer-v-1dzqp82 .framer-7u0rsb { min-height: unset; min-width: unset; order: 0; }\",\".framer-t44RR.framer-v-1dzqp82 .framer-jnxqhi { width: 12%; will-change: var(--framer-will-change-override, transform); }\",\".framer-t44RR.framer-v-1dzqp82 .framer-1i8x35p { will-change: var(--framer-will-change-override, transform); }\",\".framer-t44RR.framer-v-1cvydue .framer-1d0vtbr { flex-direction: column; min-height: unset; min-width: unset; order: 6; }\",\".framer-t44RR.framer-v-1cvydue .framer-15uxitd { height: 240px; order: 2; top: calc(57.14285714285716% - 240px / 2); }\",\".framer-t44RR.framer-v-1cvydue .framer-yurhb2 { flex-direction: row; min-height: unset; min-width: unset; order: 4; }\",\".framer-t44RR.framer-v-1cvydue .framer-1a0f27t { height: min-content; order: 0; padding: 48px; }\",\".framer-t44RR.framer-v-1cvydue .framer-19m4a71 { height: 240px; order: 3; top: calc(57.14285714285716% - 240px / 2); }\",\".framer-t44RR.framer-v-1cvydue .framer-xhzes7 { left: calc(50.14084507042256% - 451px / 2); order: 0; width: 451px; }\",\".framer-t44RR.framer-v-1cvydue .framer-oz1m4m { left: calc(50.14084507042256% - 451px / 2); order: 1; width: 451px; }\",\".framer-t44RR.framer-v-1yeg111 .framer-1d0vtbr { flex-direction: column; min-height: unset; min-width: unset; order: 8; }\",\".framer-t44RR.framer-v-1yeg111 .framer-15uxitd { bottom: -48px; height: unset; order: 2; top: -24px; }\",\".framer-t44RR.framer-v-1yeg111 .framer-yurhb2 { min-height: unset; min-width: unset; order: 4; }\",\".framer-t44RR.framer-v-1yeg111 .framer-1a0f27t { height: 132px; padding: 48px; width: 290px; }\",\".framer-t44RR.framer-v-1yeg111 .framer-bfyoo3 { height: var(--framer-aspect-ratio-supported, 36px); width: 194px; }\",\".framer-t44RR.framer-v-1yeg111 .framer-19m4a71 { bottom: -48px; height: unset; order: 3; top: -24px; }\",\".framer-t44RR.framer-v-1yeg111 .framer-xhzes7 { left: -48px; order: 0; right: -48px; width: unset; }\",\".framer-t44RR.framer-v-1yeg111 .framer-oz1m4m { left: -48px; order: 1; right: -48px; width: unset; }\",\".framer-t44RR.framer-v-xxjf4b.hover .framer-1195y9y { right: 24px; top: 36px; }\",\".framer-t44RR.framer-v-xxjf4b.hover .framer-hyj09r { left: 24px; top: 24px; }\",\".framer-t44RR.framer-v-12h7v68.hover .framer-11bsp8a-container { bottom: 24px; order: 3; }\",\".framer-t44RR.framer-v-12h7v68.hover .framer-106dcwj { height: var(--framer-aspect-ratio-supported, 622px); left: 24px; top: 24px; }\",\".framer-t44RR.framer-v-15v5ci8.hover .framer-1xr6138 { height: unset; min-height: unset; }\",\".framer-t44RR.framer-v-15v5ci8.hover .framer-lz9rzz { left: 20px; min-height: unset; order: 1; top: 24px; width: 190px; }\",\".framer-t44RR.framer-v-15v5ci8.hover .framer-3j9zfh { height: var(--framer-aspect-ratio-supported, 375px); }\",\".framer-t44RR.framer-v-15v5ci8.hover .framer-1im1ip5 { height: var(--framer-aspect-ratio-supported, 321px); left: unset; right: 20px; top: 48px; width: 163px; }\",\".framer-t44RR.framer-v-rv849l.hover .framer-4r9akf-container { height: 220px; width: 220px; }\",\".framer-t44RR.framer-v-1ndy17a.hover .framer-2600go { left: 0px; width: unset; }\",\".framer-t44RR.framer-v-1ndy17a.hover .framer-vyq170 { flex: 1 0 0px; width: 1px; }\",\".framer-t44RR.framer-v-1ndy17a.hover .framer-1ubv6d4 { height: unset; }\",\".framer-t44RR.framer-v-1ndy17a.hover .framer-1aay02x { bottom: 0px; top: 0px; }\",\".framer-t44RR.framer-v-1cvydue.hover .framer-1d0vtbr { min-height: unset; min-width: unset; order: 7; }\",\".framer-t44RR.framer-v-1cvydue.hover .framer-15uxitd { top: -480px; }\",\".framer-t44RR.framer-v-1cvydue.hover .framer-19m4a71 { bottom: -480px; top: unset; }\",\".framer-t44RR.framer-v-1cvydue.hover .framer-xhzes7 { left: unset; right: -1200px; }\",\".framer-t44RR.framer-v-1cvydue.hover .framer-oz1m4m { left: -1200px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 376\n * @framerIntrinsicWidth 600\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"dZUw05WNa\":{\"layout\":[\"fixed\",\"fixed\"]},\"amlBWV2w8\":{\"layout\":[\"fixed\",\"fixed\"]},\"iOPoM3co7\":{\"layout\":[\"fixed\",\"fixed\"]},\"BW3Bp7_Ag\":{\"layout\":[\"fixed\",\"fixed\"]},\"YyQ1nTvSs\":{\"layout\":[\"fixed\",\"fixed\"]},\"NOno4EIbG\":{\"layout\":[\"fixed\",\"fixed\"]},\"wNr5lNN71\":{\"layout\":[\"fixed\",\"fixed\"]},\"WFA1U3MFk\":{\"layout\":[\"fixed\",\"fixed\"]},\"jhO9FzTKB\":{\"layout\":[\"fixed\",\"fixed\"]},\"JhFPrvjM_\":{\"layout\":[\"fixed\",\"fixed\"]},\"CHjyObuOO\":{\"layout\":[\"fixed\",\"fixed\"]},\"Na_fQf1Hp\":{\"layout\":[\"fixed\",\"fixed\"]},\"KvoxHQYS7\":{\"layout\":[\"fixed\",\"fixed\"]},\"Uk2liJEhF\":{\"layout\":[\"fixed\",\"fixed\"]},\"sSVFu_IQk\":{\"layout\":[\"fixed\",\"fixed\"]},\"maG2lCWr_\":{\"layout\":[\"fixed\",\"fixed\"]},\"n4_lg2yAi\":{\"layout\":[\"fixed\",\"fixed\"]},\"mFPqRwryd\":{\"layout\":[\"fixed\",\"fixed\"]},\"QRUij9Rmk\":{\"layout\":[\"fixed\",\"fixed\"]},\"zgYwLQGEA\":{\"layout\":[\"fixed\",\"fixed\"]},\"WRFvLmsmg\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"UehprujG9\":\"hoverRotation\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerRAiJrmR1B=withCSS(Component,css,\"framer-t44RR\");export default FramerRAiJrmR1B;FramerRAiJrmR1B.displayName=\"Features/Features Card\";FramerRAiJrmR1B.defaultProps={height:376,width:600};addPropertyControls(FramerRAiJrmR1B,{variant:{options:[\"SwAevb1d5\",\"dZUw05WNa\",\"amlBWV2w8\",\"iOPoM3co7\",\"BW3Bp7_Ag\",\"YyQ1nTvSs\",\"NOno4EIbG\",\"wNr5lNN71\",\"WFA1U3MFk\",\"jhO9FzTKB\",\"JhFPrvjM_\",\"CHjyObuOO\",\"Na_fQf1Hp\",\"KvoxHQYS7\",\"Uk2liJEhF\"],optionTitles:[\"Custom Web Design\",\"Custom Web Design - Mobile\",\"E-Commerce Solutions\",\"E-Commerce Solutions - Mobile\",\"Mobile App Development\",\"Mobile App Development - Mobile\",\"SEO Optimization\",\"SEO Optimization - Mobile\",\"UX/UI Design\",\"UX/UI Design - Tablet\",\"UX/UI Design - Mobile\",\"Website Maintenance\",\"Website Maintenance - Mobile\",\"Branding & Identity\",\"Branding & Identity - Mobile\"],title:\"Variant\",type:ControlType.Enum},UehprujG9:{defaultValue:0,title:\"Hover Rotation\",type:ControlType.Number,unit:\"\\xb0\"}});addFonts(FramerRAiJrmR1B,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Plus Jakarta Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/AJVGEOXGB2ALQKAZEK2LDOLCVBCMCOIT/LDEP4R7SNNABDEG433DCQGM2A7YCBHLU/OWABOLGBAKFVLPZ756IYS6EKYKU54K3I.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/BkDpl4ghaqvMi1btKFyG2tdbec.woff2\",weight:\"300\"},{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/zAMK70AQRFSShJgUiaR5IiIhgzk.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/IETjvc5qzUaRoaruDpPSwCUM8.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/oLCoaT3ioA0fHdJnWR9W6k7NY.woff2\",weight:\"300\"},{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/Sj0PCHQSBjFmEp6NBWg6FNaKc.woff2\",weight:\"300\"},{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/v2q8JTTTs7McDMSEhnxAIBqd0.woff2\",weight:\"300\"},{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/H4TfENUY1rh8R9UaSD6vngjJP3M.woff2\",weight:\"300\"},{family:\"Plus Jakarta Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TX2N2Q6ZO2LBO34H72H5RVJTBQFGU4GV/ZICVNTLTT4V7CCIJPWNY363N6LIP2AET/OUUAK2X2MEGEKC6ULA4CFSBY4PE5EGPV.woff2\",weight:\"400\"}]},...FeaturesUiComponentChartFonts,...FeaturesMaintenanceIconFonts,...PhosphorFonts,...FeaturesCardFonts,...GlobeFonts,...FeaturesSEOIconsFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerRAiJrmR1B\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"dZUw05WNa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"amlBWV2w8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"iOPoM3co7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"BW3Bp7_Ag\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"YyQ1nTvSs\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"NOno4EIbG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"wNr5lNN71\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"WFA1U3MFk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"jhO9FzTKB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"JhFPrvjM_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"CHjyObuOO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Na_fQf1Hp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"KvoxHQYS7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Uk2liJEhF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"sSVFu_IQk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"maG2lCWr_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"n4_lg2yAi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"mFPqRwryd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"QRUij9Rmk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"zgYwLQGEA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"WRFvLmsmg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"UehprujG9\\\":\\\"hoverRotation\\\"}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"376\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"600\",\"framerAutoSizeImages\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./RAiJrmR1B.map", "// Generated by Framer (38f2e7f)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";const PhosphorFonts=getFonts(Phosphor);const PhosphorControls=getPropertyControls(Phosphor);const cycleOrder=[\"s7oSoGnCJ\",\"eHQ18xGTV\",\"Wqa1x0qiK\"];const serializationHash=\"framer-QuJfx\";const variantClassNames={eHQ18xGTV:\"framer-v-lcramb\",s7oSoGnCJ:\"framer-v-1azxv1u\",Wqa1x0qiK:\"framer-v-6t427x\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Default Hover\":\"eHQ18xGTV\",\"Tech Logos\":\"Wqa1x0qiK\",Default:\"s7oSoGnCJ\"};const getProps=({color,height,icon,iconColor,id,width,...props})=>{var _ref,_ref1,_ref2,_humanReadableVariantMap_props_variant,_ref3;return{...props,EoRzbrjsT:(_ref=icon!==null&&icon!==void 0?icon:props.EoRzbrjsT)!==null&&_ref!==void 0?_ref:\"Medal\",Nq_Rs3OxD:(_ref1=color!==null&&color!==void 0?color:props.Nq_Rs3OxD)!==null&&_ref1!==void 0?_ref1:\"var(--token-0267a0c5-75bb-463a-a014-9612ec56e85c, rgb(197, 51, 255))\",SJfRTtovi:(_ref2=iconColor!==null&&iconColor!==void 0?iconColor:props.SJfRTtovi)!==null&&_ref2!==void 0?_ref2:\"var(--token-ac66fc94-fc42-4186-9956-f4984338c966, rgb(255, 255, 255))\",variant:(_ref3=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref3!==void 0?_ref3:\"s7oSoGnCJ\"};};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,EoRzbrjsT,Nq_Rs3OxD,SJfRTtovi,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"s7oSoGnCJ\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1azxv1u\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"s7oSoGnCJ\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({eHQ18xGTV:{\"data-framer-name\":\"Default Hover\"},Wqa1x0qiK:{\"data-framer-name\":\"Tech Logos\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-cong5m\",layoutDependency:layoutDependency,layoutId:\"yKiXvWQhx\",style:{backgroundColor:Nq_Rs3OxD,borderBottomLeftRadius:96,borderBottomRightRadius:96,borderTopLeftRadius:96,borderTopRightRadius:96,boxShadow:\"0px 10px 20px 0px rgba(0, 0, 0, 0.05)\",scale:1},variants:{eHQ18xGTV:{scale:1.1}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1r0akvp-container\",layoutDependency:layoutDependency,layoutId:\"hqFrIMkRZ-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:SJfRTtovi,height:\"100%\",iconSearch:\"House\",iconSelection:EoRzbrjsT,id:\"hqFrIMkRZ\",layoutId:\"hqFrIMkRZ\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-QuJfx.framer-l17zu8, .framer-QuJfx .framer-l17zu8 { display: block; }\",\".framer-QuJfx.framer-1azxv1u { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: 48px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 48px; }\",\".framer-QuJfx .framer-cong5m { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: var(--framer-aspect-ratio-supported, 48px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-QuJfx .framer-1r0akvp-container { flex: none; height: 24px; position: relative; width: 24px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-QuJfx.framer-1azxv1u, .framer-QuJfx .framer-cong5m { gap: 0px; } .framer-QuJfx.framer-1azxv1u > *, .framer-QuJfx .framer-cong5m > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-QuJfx.framer-1azxv1u > :first-child, .framer-QuJfx .framer-cong5m > :first-child { margin-left: 0px; } .framer-QuJfx.framer-1azxv1u > :last-child, .framer-QuJfx .framer-cong5m > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 48\n * @framerIntrinsicWidth 48\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"eHQ18xGTV\":{\"layout\":[\"fixed\",\"fixed\"]},\"Wqa1x0qiK\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"EoRzbrjsT\":\"icon\",\"Nq_Rs3OxD\":\"color\",\"SJfRTtovi\":\"iconColor\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerBUykMJh4m=withCSS(Component,css,\"framer-QuJfx\");export default FramerBUykMJh4m;FramerBUykMJh4m.displayName=\"Features/SEO icons\";FramerBUykMJh4m.defaultProps={height:48,width:48};addPropertyControls(FramerBUykMJh4m,{variant:{options:[\"s7oSoGnCJ\",\"eHQ18xGTV\",\"Wqa1x0qiK\"],optionTitles:[\"Default\",\"Default Hover\",\"Tech Logos\"],title:\"Variant\",type:ControlType.Enum},EoRzbrjsT:(PhosphorControls===null||PhosphorControls===void 0?void 0:PhosphorControls[\"iconSelection\"])&&{...PhosphorControls[\"iconSelection\"],defaultValue:\"Medal\",description:undefined,hidden:undefined,title:\"Icon\"},Nq_Rs3OxD:{defaultValue:\"var(--token-0267a0c5-75bb-463a-a014-9612ec56e85c, rgb(197, 51, 255))\",title:\"Color\",type:ControlType.Color},SJfRTtovi:{defaultValue:'var(--token-ac66fc94-fc42-4186-9956-f4984338c966, rgb(255, 255, 255)) /* {\"name\":\"White\"} */',title:\"Icon Color\",type:ControlType.Color}});addFonts(FramerBUykMJh4m,[{explicitInter:true,fonts:[]},...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerBUykMJh4m\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"48\",\"framerIntrinsicWidth\":\"48\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"EoRzbrjsT\\\":\\\"icon\\\",\\\"Nq_Rs3OxD\\\":\\\"color\\\",\\\"SJfRTtovi\\\":\\\"iconColor\\\"}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"eHQ18xGTV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Wqa1x0qiK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./BUykMJh4m.map", "// Generated by Framer (8857874)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as localizedValues from\"./PANkcS6iS-0.js\";const PhosphorFonts=getFonts(Phosphor);const cycleOrder=[\"a8yvCfoiX\"];const serializationHash=\"framer-Vm0Jn\";const variantClassNames={a8yvCfoiX:\"framer-v-7uh43f\"};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 valuesByLocaleId={Ej4NyNWfn:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"a8yvCfoiX\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-7uh43f\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"a8yvCfoiX\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgba(255, 255, 255, 0.75)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"0px 0px 10px 0px rgba(0, 0, 0, 0.05)\",...style},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15bi93k\",\"data-framer-name\":\"Card Content\",layoutDependency:layoutDependency,layoutId:\"j_jq_4T0f\",style:{background:'linear-gradient(150deg, var(--token-31a65de1-0bdc-417c-8cef-dd9f23c4a095, rgb(255, 184, 51)) /* {\"name\":\"Orange/60\"} */ 0%, var(--token-0267a0c5-75bb-463a-a014-9612ec56e85c, rgb(197, 51, 255)) /* {\"name\":\"Purple/60\"} */ 100%)',borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bb5kmk\",layoutDependency:layoutDependency,layoutId:\"hdz3k4DZC\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RmFoa3dhbmctNzAw\",\"--framer-font-family\":'\"Fahkwang\", \"Fahkwang Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ac66fc94-fc42-4186-9956-f4984338c966, rgb(255, 255, 255)))\"},children:\"mybank\"})}),className:\"framer-1nvhh7l\",fonts:[\"GF;Fahkwang-700\"],layoutDependency:layoutDependency,layoutId:\"fUNiIeXqi\",style:{\"--extracted-r6o4lv\":\"var(--token-ac66fc94-fc42-4186-9956-f4984338c966, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-82vnxq\",layoutDependency:layoutDependency,layoutId:\"QoAWzBfT_\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gxzbdc-container\",layoutDependency:layoutDependency,layoutId:\"qqQo6WeSR-container\",style:{rotate:90},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-ac66fc94-fc42-4186-9956-f4984338c966, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"WifiHigh\",id:\"qqQo6WeSR\",layoutId:\"qqQo6WeSR\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1x61ran\",layoutDependency:layoutDependency,layoutId:\"tnBDcRLkl\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RmFoa3dhbmctcmVndWxhcg==\",\"--framer-font-family\":'\"Fahkwang\", \"Fahkwang Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ac66fc94-fc42-4186-9956-f4984338c966, rgb(255, 255, 255)))\"},children:\"Sony Wallace\"})}),className:\"framer-geks9x\",fonts:[\"GF;Fahkwang-regular\"],layoutDependency:layoutDependency,layoutId:\"jYpYj3TdT\",style:{\"--extracted-r6o4lv\":\"var(--token-ac66fc94-fc42-4186-9956-f4984338c966, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RmFoa3dhbmctcmVndWxhcg==\",\"--framer-font-family\":'\"Fahkwang\", \"Fahkwang Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ac66fc94-fc42-4186-9956-f4984338c966, rgb(255, 255, 255)))\"},children:\"08/25\"})}),className:\"framer-154s9yr\",fonts:[\"GF;Fahkwang-regular\"],layoutDependency:layoutDependency,layoutId:\"NhMnL11Pd\",style:{\"--extracted-r6o4lv\":\"var(--token-ac66fc94-fc42-4186-9956-f4984338c966, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Vm0Jn.framer-1mvjv40, .framer-Vm0Jn .framer-1mvjv40 { display: block; }\",\".framer-Vm0Jn.framer-7uh43f { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 4px; position: relative; width: min-content; }\",\".framer-Vm0Jn .framer-15bi93k { align-content: center; align-items: center; aspect-ratio: 1.5925925925925926 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: var(--framer-aspect-ratio-supported, 126px); justify-content: space-between; overflow: hidden; padding: 12px; position: relative; width: 200px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-Vm0Jn .framer-1bb5kmk, .framer-Vm0Jn .framer-1x61ran { 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-Vm0Jn .framer-1nvhh7l, .framer-Vm0Jn .framer-geks9x, .framer-Vm0Jn .framer-154s9yr { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Vm0Jn .framer-82vnxq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-Vm0Jn .framer-1gxzbdc-container { flex: none; height: 18px; position: relative; width: 18px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Vm0Jn.framer-7uh43f, .framer-Vm0Jn .framer-82vnxq { gap: 0px; } .framer-Vm0Jn.framer-7uh43f > *, .framer-Vm0Jn .framer-82vnxq > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-Vm0Jn.framer-7uh43f > :first-child, .framer-Vm0Jn .framer-82vnxq > :first-child { margin-left: 0px; } .framer-Vm0Jn.framer-7uh43f > :last-child, .framer-Vm0Jn .framer-82vnxq > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 134\n * @framerIntrinsicWidth 208\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerPANkcS6iS=withCSS(Component,css,\"framer-Vm0Jn\");export default FramerPANkcS6iS;FramerPANkcS6iS.displayName=\"Features/Card\";FramerPANkcS6iS.defaultProps={height:134,width:208};addFonts(FramerPANkcS6iS,[{explicitInter:true,fonts:[{family:\"Fahkwang\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/fahkwang/v16/Noa26Uj3zpmBOgbNpOIznZlUFipxkwjx.woff2\",weight:\"700\"},{family:\"Fahkwang\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/fahkwang/v16/Noax6Uj3zpmBOgbNpNqKsr1ZPTZ4.woff2\",weight:\"400\"}]},...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerPANkcS6iS\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"208\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"134\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./PANkcS6iS.map", "// Generated by Framer (38f2e7f)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,cx,getFonts,getPropertyControls,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";const PhosphorFonts=getFonts(Phosphor);const PhosphorControls=getPropertyControls(Phosphor);const serializationHash=\"framer-NhGCU\";const variantClassNames={hTQTZv6wi:\"framer-v-qz6lje\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,icon,id,width,...props})=>{var _ref;return{...props,tpuqJVjrB:(_ref=icon!==null&&icon!==void 0?icon:props.tpuqJVjrB)!==null&&_ref!==void 0?_ref:\"Cloud\"};};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,tpuqJVjrB,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"hTQTZv6wi\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-qz6lje\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"hTQTZv6wi\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-mizhit\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"w3TZ4DPn6\",style:{backgroundColor:\"var(--token-ac66fc94-fc42-4186-9956-f4984338c966, rgb(255, 255, 255))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,boxShadow:\"0px 10px 20px 0px rgba(0, 0, 0, 0.02)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-bky7hq-container\",layoutDependency:layoutDependency,layoutId:\"QbTWkIB0o-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-62515677-32bd-4017-bcb9-5b3703fb3dd2, rgb(204, 204, 204))\",height:\"100%\",iconSearch:\"House\",iconSelection:tpuqJVjrB,id:\"QbTWkIB0o\",layoutId:\"QbTWkIB0o\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-NhGCU.framer-184262l, .framer-NhGCU .framer-184262l { display: block; }\",\".framer-NhGCU.framer-qz6lje { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: 96px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 96px; }\",\".framer-NhGCU .framer-mizhit { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: var(--framer-aspect-ratio-supported, 96px); justify-content: center; overflow: hidden; padding: 24px; position: relative; width: 96px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-NhGCU .framer-bky7hq-container { flex: none; height: 36px; position: relative; width: 36px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-NhGCU.framer-qz6lje, .framer-NhGCU .framer-mizhit { gap: 0px; } .framer-NhGCU.framer-qz6lje > *, .framer-NhGCU .framer-mizhit > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-NhGCU.framer-qz6lje > :first-child, .framer-NhGCU .framer-mizhit > :first-child { margin-left: 0px; } .framer-NhGCU.framer-qz6lje > :last-child, .framer-NhGCU .framer-mizhit > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 96\n * @framerIntrinsicWidth 96\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"tpuqJVjrB\":\"icon\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerWD2WFdvXQ=withCSS(Component,css,\"framer-NhGCU\");export default FramerWD2WFdvXQ;FramerWD2WFdvXQ.displayName=\"Features/Maintenance Icon\";FramerWD2WFdvXQ.defaultProps={height:96,width:96};addPropertyControls(FramerWD2WFdvXQ,{tpuqJVjrB:(PhosphorControls===null||PhosphorControls===void 0?void 0:PhosphorControls[\"iconSelection\"])&&{...PhosphorControls[\"iconSelection\"],defaultValue:\"Cloud\",description:undefined,hidden:undefined,title:\"Icon\"}});addFonts(FramerWD2WFdvXQ,[{explicitInter:true,fonts:[]},...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerWD2WFdvXQ\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"96\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"tpuqJVjrB\\\":\\\"icon\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"96\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./WD2WFdvXQ.map", "// Generated by Framer (629c622)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,RichText,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import FeaturesSEOIcons from\"https://framerusercontent.com/modules/7jFt2eKO4L4XiQLCARJk/Kl72Lwjs2Nv6eMLNVHgE/BUykMJh4m.js\";import FeaturesCard from\"https://framerusercontent.com/modules/9UwSc8MHKepE37qsVXtI/CPYoC03UW5VGw6gnnjhL/PANkcS6iS.js\";import SVGPathShimmer from\"https://framerusercontent.com/modules/IT2yoWfYkMOUw1y7WouH/cLHux5WXn78o6KzYK382/SVGPathShimmer_Prod.js\";import FeaturesMaintenanceIcon from\"https://framerusercontent.com/modules/oGzyl8Rd1ZJvlSnE4FDk/2KjVq6JdN3vKts7kwRqb/WD2WFdvXQ.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import Globe from\"https://framerusercontent.com/modules/xFhv3ETdRBLjJusGaZ1P/SY4EOdo4KxEvLISnWiR3/Globe.js\";const SVGPathShimmerFonts=getFonts(SVGPathShimmer);const FeaturesMaintenanceIconFonts=getFonts(FeaturesMaintenanceIcon);const PhosphorFonts=getFonts(Phosphor);const FeaturesCardFonts=getFonts(FeaturesCard);const GlobeFonts=getFonts(Globe);const FeaturesSEOIconsFonts=getFonts(FeaturesSEOIcons);const SmartComponentScopedContainerWithFX=withFX(SmartComponentScopedContainer);const MotionDivWithFX=withFX(motion.div);const enabledGestures={EgNsUJzu3:{hover:true},hm2rPFvxz:{hover:true},nHGZSKaaX:{hover:true},pO7H6NYBJ:{hover:true},tAONlVjC_:{hover:true},vHpl50Bnr:{hover:true},ZyDqlx_yY:{hover:true}};const cycleOrder=[\"vHpl50Bnr\",\"tCsCDvLlm\",\"hm2rPFvxz\",\"SAuEYBV7b\",\"nHGZSKaaX\",\"hUt5QE3vn\",\"ZyDqlx_yY\",\"fStkfT74b\",\"pO7H6NYBJ\",\"x8w1pzgt4\",\"AOf5VMlDC\",\"EgNsUJzu3\",\"B5Mm4vGS5\",\"tAONlVjC_\",\"ylrzzaBvs\"];const serializationHash=\"framer-lBj7M\";const variantClassNames={AOf5VMlDC:\"framer-v-15of8qc\",B5Mm4vGS5:\"framer-v-1xj1m48\",EgNsUJzu3:\"framer-v-vvk3y\",fStkfT74b:\"framer-v-1mbwdgq\",hm2rPFvxz:\"framer-v-1iik29o\",hUt5QE3vn:\"framer-v-oux7bv\",nHGZSKaaX:\"framer-v-18awdm8\",pO7H6NYBJ:\"framer-v-1wm75jp\",SAuEYBV7b:\"framer-v-1cowp1g\",tAONlVjC_:\"framer-v-1whbpxj\",tCsCDvLlm:\"framer-v-12uw747\",vHpl50Bnr:\"framer-v-ytn5ix\",x8w1pzgt4:\"framer-v-1r1wxks\",ylrzzaBvs:\"framer-v-1kzer5o\",ZyDqlx_yY:\"framer-v-1cuvd7m\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transformTemplate2=(_,t)=>`translateX(-50%) ${t}`;const transition2={delay:0,duration:96,ease:[0,0,1,1],type:\"tween\"};const animation={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const animation1={opacity:1,rotate:-360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};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={\"Branding & Identity - Mobile\":\"ylrzzaBvs\",\"Branding & Identity\":\"tAONlVjC_\",\"Custom Web Design - Mobile\":\"tCsCDvLlm\",\"Custom Web Design\":\"vHpl50Bnr\",\"E-Commerce Solutions - Mobile\":\"SAuEYBV7b\",\"E-Commerce Solutions\":\"hm2rPFvxz\",\"Mobile App Development - Mobile\":\"hUt5QE3vn\",\"Mobile App Development\":\"nHGZSKaaX\",\"SEO Optimization - Mobile\":\"fStkfT74b\",\"SEO Optimization\":\"ZyDqlx_yY\",\"UX/UI Design - Mobile\":\"AOf5VMlDC\",\"UX/UI Design - Tablet\":\"x8w1pzgt4\",\"UX/UI Design\":\"pO7H6NYBJ\",\"Website Maintenance - Mobile\":\"B5Mm4vGS5\",\"Website Maintenance\":\"EgNsUJzu3\"};const getProps=({height,hoverRotation,id,width,...props})=>{return{...props,UehprujG9:hoverRotation??props.UehprujG9,variant:humanReadableVariantMap[props.variant]??props.variant??\"vHpl50Bnr\"};};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,UehprujG9,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"vHpl50Bnr\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(gestureVariant===\"pO7H6NYBJ-hover\")return true;if([\"pO7H6NYBJ\",\"x8w1pzgt4\",\"AOf5VMlDC\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if(gestureVariant===\"EgNsUJzu3-hover\")return true;if([\"EgNsUJzu3\",\"B5Mm4vGS5\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if(gestureVariant===\"EgNsUJzu3-hover\")return false;return true;};const isDisplayed3=()=>{if(gestureVariant===\"hm2rPFvxz-hover\")return true;if([\"hm2rPFvxz\",\"SAuEYBV7b\"].includes(baseVariant))return true;return false;};const isDisplayed4=()=>{if([\"hm2rPFvxz-hover\",\"nHGZSKaaX-hover\",\"ZyDqlx_yY-hover\",\"pO7H6NYBJ-hover\",\"EgNsUJzu3-hover\",\"tAONlVjC_-hover\"].includes(gestureVariant))return false;if([\"hm2rPFvxz\",\"SAuEYBV7b\",\"nHGZSKaaX\",\"hUt5QE3vn\",\"ZyDqlx_yY\",\"fStkfT74b\",\"pO7H6NYBJ\",\"x8w1pzgt4\",\"AOf5VMlDC\",\"EgNsUJzu3\",\"B5Mm4vGS5\",\"tAONlVjC_\",\"ylrzzaBvs\"].includes(baseVariant))return false;return true;};const isDisplayed5=()=>{if(gestureVariant===\"tAONlVjC_-hover\")return true;if([\"tAONlVjC_\",\"ylrzzaBvs\"].includes(baseVariant))return true;return false;};const isDisplayed6=()=>{if(gestureVariant===\"ZyDqlx_yY-hover\")return true;if([\"ZyDqlx_yY\",\"fStkfT74b\"].includes(baseVariant))return true;return false;};const isDisplayed7=()=>{if(gestureVariant===\"nHGZSKaaX-hover\")return true;if([\"nHGZSKaaX\",\"hUt5QE3vn\"].includes(baseVariant))return true;return false;};const isDisplayed8=()=>{if(gestureVariant===\"nHGZSKaaX-hover\")return false;if(baseVariant===\"nHGZSKaaX\")return false;return true;};const isDisplayed9=()=>{if([\"hm2rPFvxz-hover\",\"EgNsUJzu3-hover\"].includes(gestureVariant))return true;if([\"hm2rPFvxz\",\"SAuEYBV7b\",\"EgNsUJzu3\",\"B5Mm4vGS5\"].includes(baseVariant))return true;return false;};const isDisplayed10=()=>{if([\"hm2rPFvxz-hover\",\"ZyDqlx_yY-hover\"].includes(gestureVariant))return true;if([\"hm2rPFvxz\",\"SAuEYBV7b\",\"ZyDqlx_yY\",\"fStkfT74b\"].includes(baseVariant))return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-ytn5ix\",className,classNames),\"data-framer-name\":\"Custom Web Design\",layoutDependency:layoutDependency,layoutId:\"vHpl50Bnr\",ref:refBinding,style:{borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30,rotate:0,...style},variants:{\"EgNsUJzu3-hover\":{rotate:UehprujG9},\"hm2rPFvxz-hover\":{rotate:UehprujG9},\"nHGZSKaaX-hover\":{rotate:UehprujG9},\"pO7H6NYBJ-hover\":{rotate:UehprujG9},\"tAONlVjC_-hover\":{rotate:0},\"vHpl50Bnr-hover\":{rotate:UehprujG9},\"ZyDqlx_yY-hover\":{rotate:UehprujG9}},...addPropertyOverrides({\"EgNsUJzu3-hover\":{\"data-framer-name\":undefined},\"hm2rPFvxz-hover\":{\"data-framer-name\":undefined},\"nHGZSKaaX-hover\":{\"data-framer-name\":undefined},\"pO7H6NYBJ-hover\":{\"data-framer-name\":undefined},\"tAONlVjC_-hover\":{\"data-framer-name\":undefined},\"vHpl50Bnr-hover\":{\"data-framer-name\":undefined},\"ZyDqlx_yY-hover\":{\"data-framer-name\":undefined},AOf5VMlDC:{\"data-framer-name\":\"UX/UI Design - Mobile\"},B5Mm4vGS5:{\"data-framer-name\":\"Website Maintenance - Mobile\"},EgNsUJzu3:{\"data-framer-name\":\"Website Maintenance\"},fStkfT74b:{\"data-framer-name\":\"SEO Optimization - Mobile\"},hm2rPFvxz:{\"data-framer-name\":\"E-Commerce Solutions\"},hUt5QE3vn:{\"data-framer-name\":\"Mobile App Development - Mobile\"},nHGZSKaaX:{\"data-framer-name\":\"Mobile App Development\"},pO7H6NYBJ:{\"data-framer-name\":\"UX/UI Design\"},SAuEYBV7b:{\"data-framer-name\":\"E-Commerce Solutions - Mobile\"},tAONlVjC_:{\"data-framer-name\":\"Branding & Identity\"},tCsCDvLlm:{\"data-framer-name\":\"Custom Web Design - Mobile\"},x8w1pzgt4:{\"data-framer-name\":\"UX/UI Design - Tablet\"},ylrzzaBvs:{\"data-framer-name\":\"Branding & Identity - Mobile\"},ZyDqlx_yY:{\"data-framer-name\":\"SEO Optimization\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7ey3yz\",layoutDependency:layoutDependency,layoutId:\"Ld6X0Lyi0\",style:{backgroundColor:\"var(--token-ac66fc94-fc42-4186-9956-f4984338c966, rgb(255, 255, 255))\",borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30,boxShadow:\"0px 10px 20px 0px rgba(0, 0, 0, 0.05)\"},variants:{\"EgNsUJzu3-hover\":{boxShadow:\"0px 10px 20px 0px rgba(0, 0, 0, 0.02)\"},\"hm2rPFvxz-hover\":{boxShadow:\"0px 10px 20px 0px rgba(0, 0, 0, 0.02)\"},\"nHGZSKaaX-hover\":{boxShadow:\"0px 10px 20px 0px rgba(0, 0, 0, 0.02)\"},\"pO7H6NYBJ-hover\":{boxShadow:\"0px 10px 20px 0px rgba(0, 0, 0, 0.02)\"},\"tAONlVjC_-hover\":{boxShadow:\"0px 10px 20px 0px rgba(0, 0, 0, 0.02)\"},\"vHpl50Bnr-hover\":{boxShadow:\"0px 10px 20px 0px rgba(0, 0, 0, 0.02)\"},\"ZyDqlx_yY-hover\":{boxShadow:\"0px 10px 20px 0px rgba(0, 0, 0, 0.02)\"}},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-orl2tr\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"Jra5lNtHO\",children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1o45stq\",\"data-framer-name\":\"Ui Slide\",layoutDependency:layoutDependency,layoutId:\"DlSire0bW\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-g2w8p3\",\"data-framer-name\":\"Wrapper\",layoutDependency:layoutDependency,layoutId:\"IvqtL5Lgr\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ucthtm\",\"data-framer-name\":\"SVG Path\",layoutDependency:layoutDependency,layoutId:\"oQXCp7dps\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-103p8pl-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"EWzoLKb5Q-container\",nodeId:\"EWzoLKb5Q\",rendersWithMotion:true,scopeId:\"xTBHZsT14\",children:/*#__PURE__*/_jsx(SVGPathShimmer,{baseColor:\"rgba(94, 120, 143, 0.25)\",direction:\"default\",height:\"100%\",id:\"EWzoLKb5Q\",layer:[],layoutId:\"EWzoLKb5Q\",length:30,loopDelay:.3,loopMode:\"loop\",mode:\"svg\",replay:true,shimmerColor:\"var(--token-b982fb09-8d18-48f6-bec5-348af0252e01, rgb(8, 8, 8))\",style:{height:\"100%\",width:\"100%\"},svgFile:\"https://framerusercontent.com/assets/6NkkVQcDWJSAuhcggjC7jf46HU.svg\",svgType:\"file\",transition:{delay:0,duration:2,ease:[.95,.04,.44,1],type:\"tween\"},trigger:\"appear\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1k5pf66-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Yru2pYyum-container\",nodeId:\"Yru2pYyum\",rendersWithMotion:true,scopeId:\"xTBHZsT14\",children:/*#__PURE__*/_jsx(SVGPathShimmer,{baseColor:\"rgba(94, 120, 143, 0.25)\",direction:\"reverse\",height:\"100%\",id:\"Yru2pYyum\",layer:[],layoutId:\"Yru2pYyum\",length:30,loopDelay:.3,loopMode:\"loop\",mode:\"svg\",replay:true,shimmerColor:\"var(--token-b982fb09-8d18-48f6-bec5-348af0252e01, rgb(8, 8, 8))\",style:{height:\"100%\",width:\"100%\"},svgFile:\"https://framerusercontent.com/assets/Rq6dk3tZvSFdOdWVUHCqR9bbinw.svg\",svgType:\"file\",transition:{delay:0,duration:2,ease:[.95,.04,.44,1],type:\"tween\"},trigger:\"appear\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1euibos-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"OWrwORtLA-container\",nodeId:\"OWrwORtLA\",rendersWithMotion:true,scopeId:\"xTBHZsT14\",children:/*#__PURE__*/_jsx(SVGPathShimmer,{baseColor:\"rgba(94, 120, 143, 0.25)\",direction:\"reverse\",height:\"100%\",id:\"OWrwORtLA\",layer:[],layoutId:\"OWrwORtLA\",length:30,loopDelay:.3,loopMode:\"loop\",mode:\"svg\",replay:true,shimmerColor:\"var(--token-b982fb09-8d18-48f6-bec5-348af0252e01, rgb(8, 8, 8))\",style:{height:\"100%\",width:\"100%\"},svgFile:\"https://framerusercontent.com/assets/tY4igrqHQkt9DtMR5Wlz8d3iAA.svg\",svgType:\"file\",transition:{delay:0,duration:2,ease:[.95,.04,.44,1],type:\"tween\"},trigger:\"appear\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-f223yx-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"W7osITFQo-container\",nodeId:\"W7osITFQo\",rendersWithMotion:true,scopeId:\"xTBHZsT14\",children:/*#__PURE__*/_jsx(SVGPathShimmer,{baseColor:\"rgba(94, 120, 143, 0.25)\",direction:\"reverse\",height:\"100%\",id:\"W7osITFQo\",layer:[],layoutId:\"W7osITFQo\",length:30,loopDelay:.3,loopMode:\"loop\",mode:\"svg\",replay:true,shimmerColor:\"var(--token-b982fb09-8d18-48f6-bec5-348af0252e01, rgb(8, 8, 8))\",style:{height:\"100%\",width:\"100%\"},svgFile:\"https://framerusercontent.com/assets/juNnTJb4XhIwb2Zm1MqO2UMjhM.svg\",svgType:\"file\",transition:{delay:0,duration:2,ease:[.95,.04,.44,1],type:\"tween\"},trigger:\"appear\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1fnjejh-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"fKfvMoSuf-container\",nodeId:\"fKfvMoSuf\",rendersWithMotion:true,scopeId:\"xTBHZsT14\",children:/*#__PURE__*/_jsx(SVGPathShimmer,{baseColor:\"rgba(94, 120, 143, 0.25)\",direction:\"reverse\",height:\"100%\",id:\"fKfvMoSuf\",layer:[],layoutId:\"fKfvMoSuf\",length:30,loopDelay:.3,loopMode:\"loop\",mode:\"svg\",replay:true,shimmerColor:\"var(--token-b982fb09-8d18-48f6-bec5-348af0252e01, rgb(8, 8, 8))\",style:{height:\"100%\",width:\"100%\"},svgFile:\"https://framerusercontent.com/assets/UAjP2h0lT2nZg3OKnZgPEnLtc.svg\",svgType:\"file\",transition:{delay:0,duration:2,ease:[.95,.04,.44,1],type:\"tween\"},trigger:\"appear\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-xu18hm-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Ie4iZr_FJ-container\",nodeId:\"Ie4iZr_FJ\",rendersWithMotion:true,scopeId:\"xTBHZsT14\",children:/*#__PURE__*/_jsx(SVGPathShimmer,{baseColor:\"rgba(94, 120, 143, 0.25)\",direction:\"reverse\",height:\"100%\",id:\"Ie4iZr_FJ\",layer:[],layoutId:\"Ie4iZr_FJ\",length:30,loopDelay:.3,loopMode:\"loop\",mode:\"svg\",replay:true,shimmerColor:\"rgb(37, 42, 51)\",style:{height:\"100%\",width:\"100%\"},svgFile:\"https://framerusercontent.com/assets/cQtObXMqoOENBJFNHvGo8HO2w.svg\",svgType:\"file\",transition:{delay:0,duration:2,ease:[.95,.04,.44,1],type:\"tween\"},trigger:\"appear\",width:\"100%\"})})})]})})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nz20em\",\"data-framer-name\":\"Icons Stack\",layoutDependency:layoutDependency,layoutId:\"wFtaVLVAt\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1johfy4\",layoutDependency:layoutDependency,layoutId:\"YwqXGPXlP\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:\"96px\",...addPropertyOverrides({B5Mm4vGS5:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1*.5019607843137257-84)+24+0+24},EgNsUJzu3:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1*.5019607843137257-84)+24+0+24}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-h7d5sn-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"URwmV2YL2-container\",nodeId:\"URwmV2YL2\",rendersWithMotion:true,scopeId:\"xTBHZsT14\",children:/*#__PURE__*/_jsx(FeaturesMaintenanceIcon,{height:\"100%\",id:\"URwmV2YL2\",layoutId:\"URwmV2YL2\",style:{height:\"100%\",width:\"100%\"},tpuqJVjrB:\"Cloud\",width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:\"96px\",...addPropertyOverrides({B5Mm4vGS5:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1*.5019607843137257-84)+24+0+24},EgNsUJzu3:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1*.5019607843137257-84)+24+0+24}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-t2umg5-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"yk_FTJPDn-container\",nodeId:\"yk_FTJPDn\",rendersWithMotion:true,scopeId:\"xTBHZsT14\",children:/*#__PURE__*/_jsx(FeaturesMaintenanceIcon,{height:\"100%\",id:\"yk_FTJPDn\",layoutId:\"yk_FTJPDn\",style:{height:\"100%\",width:\"100%\"},tpuqJVjrB:\"Password\",width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:\"96px\",...addPropertyOverrides({B5Mm4vGS5:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1*.5019607843137257-84)+24+0+24},EgNsUJzu3:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1*.5019607843137257-84)+24+0+24}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1irq5ed-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"CxtT8BMGY-container\",nodeId:\"CxtT8BMGY\",rendersWithMotion:true,scopeId:\"xTBHZsT14\",children:/*#__PURE__*/_jsx(FeaturesMaintenanceIcon,{height:\"100%\",id:\"CxtT8BMGY\",layoutId:\"CxtT8BMGY\",style:{height:\"100%\",width:\"100%\"},tpuqJVjrB:\"FingerprintSimple\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:\"96px\",...addPropertyOverrides({B5Mm4vGS5:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1*.5019607843137257-84)+24+0+24},EgNsUJzu3:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1*.5019607843137257-84)+24+0+24}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ohkcn6-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"SxriUfFrc-container\",nodeId:\"SxriUfFrc\",rendersWithMotion:true,scopeId:\"xTBHZsT14\",children:/*#__PURE__*/_jsx(FeaturesMaintenanceIcon,{height:\"100%\",id:\"SxriUfFrc\",layoutId:\"SxriUfFrc\",style:{height:\"100%\",width:\"100%\"},tpuqJVjrB:\"Suitcase\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:\"96px\",...addPropertyOverrides({B5Mm4vGS5:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1*.5019607843137257-84)+24+0+24},EgNsUJzu3:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1*.5019607843137257-84)+24+0+24}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1qzlpq3-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"B5ZoeqtOs-container\",nodeId:\"B5ZoeqtOs\",rendersWithMotion:true,scopeId:\"xTBHZsT14\",children:/*#__PURE__*/_jsx(FeaturesMaintenanceIcon,{height:\"100%\",id:\"B5ZoeqtOs\",layoutId:\"B5ZoeqtOs\",style:{height:\"100%\",width:\"100%\"},tpuqJVjrB:\"Toolbox\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:\"96px\",...addPropertyOverrides({B5Mm4vGS5:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1*.5019607843137257-84)+24+0+24},EgNsUJzu3:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1*.5019607843137257-84)+24+0+24}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-lblab9-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"WEDm7Mwx3-container\",nodeId:\"WEDm7Mwx3\",rendersWithMotion:true,scopeId:\"xTBHZsT14\",children:/*#__PURE__*/_jsx(FeaturesMaintenanceIcon,{height:\"100%\",id:\"WEDm7Mwx3\",layoutId:\"WEDm7Mwx3\",style:{height:\"100%\",width:\"100%\"},tpuqJVjrB:\"Wrench\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:\"96px\",...addPropertyOverrides({B5Mm4vGS5:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1*.5019607843137257-84)+24+0+24},EgNsUJzu3:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1*.5019607843137257-84)+24+0+24}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-q7wgjn-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"e2FdgKoqZ-container\",nodeId:\"e2FdgKoqZ\",rendersWithMotion:true,scopeId:\"xTBHZsT14\",children:/*#__PURE__*/_jsx(FeaturesMaintenanceIcon,{height:\"100%\",id:\"e2FdgKoqZ\",layoutId:\"e2FdgKoqZ\",style:{height:\"100%\",width:\"100%\"},tpuqJVjrB:\"ShieldCheck\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:\"96px\",...addPropertyOverrides({B5Mm4vGS5:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1*.5019607843137257-84)+24+0+24},EgNsUJzu3:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1*.5019607843137257-84)+24+0+24}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1k3wyyr-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"zXvcFInP5-container\",nodeId:\"zXvcFInP5\",rendersWithMotion:true,scopeId:\"xTBHZsT14\",children:/*#__PURE__*/_jsx(FeaturesMaintenanceIcon,{height:\"100%\",id:\"zXvcFInP5\",layoutId:\"zXvcFInP5\",style:{height:\"100%\",width:\"100%\"},tpuqJVjrB:\"Pencil\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:\"96px\",...addPropertyOverrides({B5Mm4vGS5:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1*.5019607843137257-84)+24+0+24},EgNsUJzu3:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1*.5019607843137257-84)+24+0+24}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-hpvhtf-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"HzR0YAFNy-container\",nodeId:\"HzR0YAFNy\",rendersWithMotion:true,scopeId:\"xTBHZsT14\",children:/*#__PURE__*/_jsx(FeaturesMaintenanceIcon,{height:\"100%\",id:\"HzR0YAFNy\",layoutId:\"HzR0YAFNy\",style:{height:\"100%\",width:\"100%\"},tpuqJVjrB:\"Folder\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:\"96px\",...addPropertyOverrides({B5Mm4vGS5:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1*.5019607843137257-84)+24+0+24},EgNsUJzu3:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1*.5019607843137257-84)+24+0+24}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-5pj132-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"HXLkaYm98-container\",nodeId:\"HXLkaYm98\",rendersWithMotion:true,scopeId:\"xTBHZsT14\",children:/*#__PURE__*/_jsx(FeaturesMaintenanceIcon,{height:\"100%\",id:\"HXLkaYm98\",layoutId:\"HXLkaYm98\",style:{height:\"100%\",width:\"100%\"},tpuqJVjrB:\"Detective\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:\"96px\",...addPropertyOverrides({B5Mm4vGS5:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1*.5019607843137257-84)+24+0+24},EgNsUJzu3:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1*.5019607843137257-84)+24+0+24}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-19quewf-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"xT3wNeylN-container\",nodeId:\"xT3wNeylN\",rendersWithMotion:true,scopeId:\"xTBHZsT14\",children:/*#__PURE__*/_jsx(FeaturesMaintenanceIcon,{height:\"100%\",id:\"xT3wNeylN\",layoutId:\"xT3wNeylN\",style:{height:\"100%\",width:\"100%\"},tpuqJVjrB:\"ShieldCheckered\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:\"96px\",...addPropertyOverrides({B5Mm4vGS5:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1*.5019607843137257-84)+24+0+24},EgNsUJzu3:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1*.5019607843137257-84)+24+0+24}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-12kbqr-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"H1TkKt3yz-container\",nodeId:\"H1TkKt3yz\",rendersWithMotion:true,scopeId:\"xTBHZsT14\",children:/*#__PURE__*/_jsx(FeaturesMaintenanceIcon,{height:\"100%\",id:\"H1TkKt3yz\",layoutId:\"H1TkKt3yz\",style:{height:\"100%\",width:\"100%\"},tpuqJVjrB:\"Atom\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:\"96px\",...addPropertyOverrides({B5Mm4vGS5:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1*.5019607843137257-84)+24+0+24},EgNsUJzu3:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1*.5019607843137257-84)+24+0+24}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-16mi4ig-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"ZAjopEzTY-container\",nodeId:\"ZAjopEzTY\",rendersWithMotion:true,scopeId:\"xTBHZsT14\",children:/*#__PURE__*/_jsx(FeaturesMaintenanceIcon,{height:\"100%\",id:\"ZAjopEzTY\",layoutId:\"ZAjopEzTY\",style:{height:\"100%\",width:\"100%\"},tpuqJVjrB:\"BoundingBox\",width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:\"96px\",...addPropertyOverrides({B5Mm4vGS5:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1*.5019607843137257-84)+24+0+24},EgNsUJzu3:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1*.5019607843137257-84)+24+0+24}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ip486d-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"j2TbwAVj6-container\",nodeId:\"j2TbwAVj6\",rendersWithMotion:true,scopeId:\"xTBHZsT14\",children:/*#__PURE__*/_jsx(FeaturesMaintenanceIcon,{height:\"100%\",id:\"j2TbwAVj6\",layoutId:\"j2TbwAVj6\",style:{height:\"100%\",width:\"100%\"},tpuqJVjrB:\"BoundingBox\",width:\"100%\",...addPropertyOverrides({B5Mm4vGS5:{tpuqJVjrB:\"GoogleChromeLogo\"},EgNsUJzu3:{tpuqJVjrB:\"GoogleChromeLogo\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:\"96px\",...addPropertyOverrides({B5Mm4vGS5:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1*.5019607843137257-84)+24+0+24},EgNsUJzu3:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1*.5019607843137257-84)+24+0+24}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-rmfsne-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"zCl2seSOT-container\",nodeId:\"zCl2seSOT\",rendersWithMotion:true,scopeId:\"xTBHZsT14\",children:/*#__PURE__*/_jsx(FeaturesMaintenanceIcon,{height:\"100%\",id:\"zCl2seSOT\",layoutId:\"zCl2seSOT\",style:{height:\"100%\",width:\"100%\"},tpuqJVjrB:\"BoundingBox\",width:\"100%\",...addPropertyOverrides({B5Mm4vGS5:{tpuqJVjrB:\"Stack\"},EgNsUJzu3:{tpuqJVjrB:\"Stack\"}},baseVariant,gestureVariant)})})})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-iuxp8j\",\"data-framer-name\":\"Gears\",layoutDependency:layoutDependency,layoutId:\"zYwKbXkmx\",style:{scale:1},transformTemplate:transformTemplate1,variants:{\"EgNsUJzu3-hover\":{scale:1.02}},children:isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-phxnv3\",\"data-framer-name\":\"Gears Content\",layoutDependency:layoutDependency,layoutId:\"TKSNf40M1\",style:{background:\"linear-gradient(150deg, var(--token-f19c34c7-e8ef-4025-92c5-3484fcd0db88, rgb(51, 177, 255)) 0%, var(--token-0267a0c5-75bb-463a-a014-9612ec56e85c, rgb(197, 51, 255)) 100%)\",borderBottomLeftRadius:48,borderBottomRightRadius:48,borderTopLeftRadius:48,borderTopRightRadius:48,boxShadow:\"none\"},variants:{\"EgNsUJzu3-hover\":{boxShadow:\"0px 10px 20px 0px rgba(0, 0, 0, 0.02)\"},B5Mm4vGS5:{boxShadow:\"0px 10px 20px 0px rgba(0, 0, 0, 0.05)\"},EgNsUJzu3:{boxShadow:\"0px 10px 20px 0px rgba(0, 0, 0, 0.05)\"}},children:isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xhutve\",\"data-framer-name\":\"Gears\",layoutDependency:layoutDependency,layoutId:\"cQFlmFoJO\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-13gbnts-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Q4YHg3YUM-container\",nodeId:\"Q4YHg3YUM\",rendersWithMotion:true,scopeId:\"xTBHZsT14\",style:{rotate:0},variants:{\"EgNsUJzu3-hover\":{rotate:120}},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-ac66fc94-fc42-4186-9956-f4984338c966, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"GearSix\",id:\"Q4YHg3YUM\",layoutId:\"Q4YHg3YUM\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1vaeyh3-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"dBnggCInT-container\",nodeId:\"dBnggCInT\",rendersWithMotion:true,scopeId:\"xTBHZsT14\",style:{rotate:0},variants:{\"EgNsUJzu3-hover\":{rotate:-120}},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-ac66fc94-fc42-4186-9956-f4984338c966, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"GearSix\",id:\"dBnggCInT\",layoutId:\"dBnggCInT\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})]})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({\"hm2rPFvxz-hover\":{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1-158},hm2rPFvxz:{height:134,y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1-106},SAuEYBV7b:{height:134,y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1-106}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-zd4kpm-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"OWuo6iHnl-container\",nodeId:\"OWuo6iHnl\",rendersWithMotion:true,scopeId:\"xTBHZsT14\",style:{rotate:15,scale:.8},transformTemplate:transformTemplate2,variants:{\"hm2rPFvxz-hover\":{rotate:0,scale:1}},children:/*#__PURE__*/_jsx(FeaturesCard,{height:\"100%\",id:\"OWuo6iHnl\",layoutId:\"OWuo6iHnl\",width:\"100%\"})})}),isDisplayed3()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2436.363583556878,intrinsicWidth:2350.90903995451,pixelHeight:2680,pixelWidth:2586,src:\"https://framerusercontent.com/images/b3BLsHGxFiGBMyUTd8NXKfVsXk.png\",srcSet:\"https://framerusercontent.com/images/b3BLsHGxFiGBMyUTd8NXKfVsXk.png?scale-down-to=1024 988w,https://framerusercontent.com/images/b3BLsHGxFiGBMyUTd8NXKfVsXk.png?scale-down-to=2048 1976w,https://framerusercontent.com/images/b3BLsHGxFiGBMyUTd8NXKfVsXk.png 2586w\"},className:\"framer-g7b8k4\",\"data-framer-name\":\"Shoperz_screen\",layoutDependency:layoutDependency,layoutId:\"c41ir7Oe9\",style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"0px 0px 10px 0px rgba(0, 0, 0, 0.05)\"},variants:{hm2rPFvxz:{boxShadow:\"0px 10px 20px 0px rgba(0, 0, 0, 0.05)\"}},...addPropertyOverrides({\"hm2rPFvxz-hover\":{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2436.363583556878,intrinsicWidth:2350.90903995451,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+24),pixelHeight:2680,pixelWidth:2586,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/b3BLsHGxFiGBMyUTd8NXKfVsXk.png\",srcSet:\"https://framerusercontent.com/images/b3BLsHGxFiGBMyUTd8NXKfVsXk.png?scale-down-to=1024 988w,https://framerusercontent.com/images/b3BLsHGxFiGBMyUTd8NXKfVsXk.png?scale-down-to=2048 1976w,https://framerusercontent.com/images/b3BLsHGxFiGBMyUTd8NXKfVsXk.png 2586w\"}},hm2rPFvxz:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2436.363583556878,intrinsicWidth:2350.90903995451,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+48),pixelHeight:2680,pixelWidth:2586,sizes:`calc(${componentViewport?.width||\"100vw\"} - 24px)`,src:\"https://framerusercontent.com/images/b3BLsHGxFiGBMyUTd8NXKfVsXk.png\",srcSet:\"https://framerusercontent.com/images/b3BLsHGxFiGBMyUTd8NXKfVsXk.png?scale-down-to=1024 988w,https://framerusercontent.com/images/b3BLsHGxFiGBMyUTd8NXKfVsXk.png?scale-down-to=2048 1976w,https://framerusercontent.com/images/b3BLsHGxFiGBMyUTd8NXKfVsXk.png 2586w\"}},SAuEYBV7b:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2436.363583556878,intrinsicWidth:2350.90903995451,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+48),pixelHeight:2680,pixelWidth:2586,sizes:`calc(${componentViewport?.width||\"100vw\"} - 24px)`,src:\"https://framerusercontent.com/images/b3BLsHGxFiGBMyUTd8NXKfVsXk.png\",srcSet:\"https://framerusercontent.com/images/b3BLsHGxFiGBMyUTd8NXKfVsXk.png?scale-down-to=1024 988w,https://framerusercontent.com/images/b3BLsHGxFiGBMyUTd8NXKfVsXk.png?scale-down-to=2048 1976w,https://framerusercontent.com/images/b3BLsHGxFiGBMyUTd8NXKfVsXk.png 2586w\"}}},baseVariant,gestureVariant)}),isDisplayed4()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-egpbqp\",\"data-framer-name\":\"Screens Stack\",layoutDependency:layoutDependency,layoutId:\"xwXQxy7UP\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Zenzap Screen\",fit:\"fill\",intrinsicHeight:2579.999944080007,intrinsicWidth:2690.9090325852085,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+0+60),pixelHeight:2838,pixelWidth:2960,sizes:\"240px\",src:\"https://framerusercontent.com/images/NuKtfwIigpvtFdYbzNf53JZAeM.png\",srcSet:\"https://framerusercontent.com/images/NuKtfwIigpvtFdYbzNf53JZAeM.png?scale-down-to=512 512w,https://framerusercontent.com/images/NuKtfwIigpvtFdYbzNf53JZAeM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NuKtfwIigpvtFdYbzNf53JZAeM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/NuKtfwIigpvtFdYbzNf53JZAeM.png 2960w\"},className:\"framer-123zaz0\",\"data-framer-name\":\"Zenzap Screen\",layoutDependency:layoutDependency,layoutId:\"OXc1I9u8L\",style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"0px 10px 20px 0px rgba(0, 0, 0, 0.05)\"},...addPropertyOverrides({\"vHpl50Bnr-hover\":{background:{alt:\"Zenzap Screen\",fit:\"fill\",intrinsicHeight:2579.999944080007,intrinsicWidth:2690.9090325852085,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+0+36),pixelHeight:2838,pixelWidth:2960,sizes:\"240px\",src:\"https://framerusercontent.com/images/NuKtfwIigpvtFdYbzNf53JZAeM.png\",srcSet:\"https://framerusercontent.com/images/NuKtfwIigpvtFdYbzNf53JZAeM.png?scale-down-to=512 512w,https://framerusercontent.com/images/NuKtfwIigpvtFdYbzNf53JZAeM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NuKtfwIigpvtFdYbzNf53JZAeM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/NuKtfwIigpvtFdYbzNf53JZAeM.png 2960w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-2t8xs7\",\"data-framer-name\":\"Teamwave\",layoutDependency:layoutDependency,layoutId:\"pSGMOsKu3\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"tEAMwAVE sCREEN\",fit:\"fill\",intrinsicHeight:2370.9090395210214,intrinsicWidth:2356.363585290831,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+0+48+0),pixelHeight:2608,pixelWidth:2592,sizes:\"240px\",src:\"https://framerusercontent.com/images/lOFwNYZ4BIPRs5ulMTUq448UKA.png\",srcSet:\"https://framerusercontent.com/images/lOFwNYZ4BIPRs5ulMTUq448UKA.png?scale-down-to=1024 1017w,https://framerusercontent.com/images/lOFwNYZ4BIPRs5ulMTUq448UKA.png?scale-down-to=2048 2035w,https://framerusercontent.com/images/lOFwNYZ4BIPRs5ulMTUq448UKA.png 2592w\"},className:\"framer-1wdbp29\",\"data-framer-name\":\"Teamwave_1_\",layoutDependency:layoutDependency,layoutId:\"KRjrXGUoa\",style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"0px 10px 20px 0px rgba(0, 0, 0, 0.05)\"},...addPropertyOverrides({\"vHpl50Bnr-hover\":{background:{alt:\"tEAMwAVE sCREEN\",fit:\"fill\",intrinsicHeight:2370.9090395210214,intrinsicWidth:2356.363585290831,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+0+24+0),pixelHeight:2608,pixelWidth:2592,sizes:\"240px\",src:\"https://framerusercontent.com/images/lOFwNYZ4BIPRs5ulMTUq448UKA.png\",srcSet:\"https://framerusercontent.com/images/lOFwNYZ4BIPRs5ulMTUq448UKA.png?scale-down-to=1024 1017w,https://framerusercontent.com/images/lOFwNYZ4BIPRs5ulMTUq448UKA.png?scale-down-to=2048 2035w,https://framerusercontent.com/images/lOFwNYZ4BIPRs5ulMTUq448UKA.png 2592w\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nwizqi\",\"data-framer-name\":\"Gradient\",layoutDependency:layoutDependency,layoutId:\"aZd9Kz1JK\",style:{background:\"linear-gradient(180deg, rgba(84, 84, 84, 0) 0%, var(--token-ac66fc94-fc42-4186-9956-f4984338c966, rgb(255, 255, 255)) 100%)\"}})]}),isDisplayed5()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zp82ah\",\"data-framer-name\":\"Branding Stack\",layoutDependency:layoutDependency,layoutId:\"m_d9BWXev\",style:{scale:1},transformTemplate:transformTemplate1,variants:{\"tAONlVjC_-hover\":{scale:1.02}},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qdq7td\",\"data-framer-name\":\"Border Left\",layoutDependency:layoutDependency,layoutId:\"NDyxHl5dR\",style:{backgroundColor:\"var(--token-7e863056-5bee-4444-a43b-367cd97d6d18, rgb(0, 0, 0))\"},variants:{tAONlVjC_:{backgroundColor:\"var(--token-eec563d0-579b-4ee4-bbbf-8d4ac1f3bfbf, rgb(102, 102, 102))\"}}}),isDisplayed5()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1g0652p\",\"data-framer-name\":\"Reify Logo Area\",layoutDependency:layoutDependency,layoutId:\"NPkSxD2Ao\",children:isDisplayed5()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-prjxqi\",\"data-framer-name\":\"Reify Logo\",layoutDependency:layoutDependency,layoutId:\"L9gXbr2mg\",style:{backgroundColor:\"var(--token-7e863056-5bee-4444-a43b-367cd97d6d18, rgb(0, 0, 0))\",boxShadow:\"none\"},variants:{tAONlVjC_:{boxShadow:\"0px 10px 20px 0px rgba(0, 0, 0, 0.05)\"},ylrzzaBvs:{boxShadow:\"0px 0px 10px 0px rgba(0, 0, 0, 0.02)\"}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fqg35u\",\"data-framer-name\":\"Logo Reify\",layoutDependency:layoutDependency,layoutId:\"SSd7sVbvx\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1or3oa8\",\"data-framer-name\":\"Logo\",fill:\"black\",intrinsicHeight:20,intrinsicWidth:108,layoutDependency:layoutDependency,layoutId:\"Ky1VhqNG0\",svg:'<svg width=\"108\" height=\"20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m8.66 0-3 3 3 5 3-5-3-3Zm0 20 3-3-3-5-3 5 3 3Zm8.66-15-4.098-1.098L10.392 9l5.83.098L17.32 5ZM0 15l4.098 1.098L6.928 11l-5.83-.098L0 15Zm1.098-5.902L0 5l4.098-1.098L6.928 9l-5.83.098Zm15.124 1.804L17.32 15l-4.098 1.098L10.392 11l5.83-.098Z\" fill=\"#DBFF4D\"/><path d=\"M33.697 11.09h-2.675c-.814 0-1.714.01-2.701.027V16h-2V5.403c0-.503.103-.849.311-1.04.225-.19.589-.294 1.091-.311.26-.017.598-.026 1.013-.026h1.429c.52-.017 1.047-.026 1.584-.026h1.585a32.112 32.112 0 0 1 2.311.078c.9.087 1.559.39 1.974.909.416.502.624 1.255.624 2.26 0 .796-.113 1.428-.338 1.896a2.085 2.085 0 0 1-.961 1.039.601.601 0 0 1-.26.13 2.057 2.057 0 0 1-.337.026v.052h.441c.658.12 1.056.39 1.195.805.138.398.208.805.208 1.22v2.962c0 .173.017.32.052.441.034.104.06.165.078.182h-1.403c-.242 0-.433-.043-.572-.13-.138-.086-.207-.294-.207-.623v-2.754c0-.536-.122-.9-.364-1.09-.225-.208-.632-.312-1.22-.312h-.858ZM28.32 10c.243 0 .624.009 1.143.026h4.546c.571 0 1.073-.173 1.506-.52.45-.363.676-1.03.676-2 0-.658-.13-1.177-.39-1.558-.242-.398-.64-.632-1.195-.701a9.79 9.79 0 0 0-1.35-.078 26.609 26.609 0 0 0-1.663 0c-.571 0-1.1.008-1.584.026h-1.091c-.052 0-.165.034-.338.104-.173.052-.26.225-.26.52V10Zm18.823 6V4.883c0-.312.044-.528.13-.65.087-.12.277-.181.572-.181h10.311v1.143h-9.013v3.974h8.26v1.143h-8.26v4.545h9.013V16H47.143Zm19.349 0V4.883c0-.19.009-.338.026-.441a.546.546 0 0 1 .182-.286c.104-.07.268-.104.493-.104h1.299V16h-2Zm11.511 0V4.961c0-.225.008-.398.026-.52a.398.398 0 0 1 .181-.285c.104-.07.269-.104.494-.104h10.312v1.143h-9.013v3.974h8.26v1.143h-8.26V16h-2Zm22.209 0v-4.857L95.822 4.7l-.467-.649h2.65l3.636 5.688 3.688-5.688h1.818l-.571.727-4.39 6.364v3.948c.017.225 0 .407-.052.545a.59.59 0 0 1-.26.286c-.121.052-.311.078-.571.078h-1.091Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-12mg4hq\",\"data-framer-name\":\"Border Right\",layoutDependency:layoutDependency,layoutId:\"rNts2fxEQ\",style:{backgroundColor:\"var(--token-7e863056-5bee-4444-a43b-367cd97d6d18, rgb(0, 0, 0))\"},variants:{tAONlVjC_:{backgroundColor:\"var(--token-eec563d0-579b-4ee4-bbbf-8d4ac1f3bfbf, rgb(102, 102, 102))\"}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-jtf5xa\",\"data-framer-name\":\"Border Top\",layoutDependency:layoutDependency,layoutId:\"SMyUSQe_v\",style:{backgroundColor:\"var(--token-7e863056-5bee-4444-a43b-367cd97d6d18, rgb(0, 0, 0))\"},variants:{tAONlVjC_:{backgroundColor:\"var(--token-eec563d0-579b-4ee4-bbbf-8d4ac1f3bfbf, rgb(102, 102, 102))\"}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-191tvfz\",\"data-framer-name\":\"Border Bottom\",layoutDependency:layoutDependency,layoutId:\"sl597j8Nq\",style:{backgroundColor:\"var(--token-7e863056-5bee-4444-a43b-367cd97d6d18, rgb(0, 0, 0))\"},variants:{tAONlVjC_:{backgroundColor:\"var(--token-eec563d0-579b-4ee4-bbbf-8d4ac1f3bfbf, rgb(102, 102, 102))\"}}})]}),isDisplayed6()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nqnxyn\",\"data-framer-name\":\"SeoGlobe\",layoutDependency:layoutDependency,layoutId:\"kv9k_4Y9l\",children:[isDisplayed6()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1fchxyi-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"URCqdhown-container\",nodeId:\"URCqdhown\",rendersWithMotion:true,scopeId:\"xTBHZsT14\",children:/*#__PURE__*/_jsx(Globe,{alignment:\"center\",background:\"rgba(255, 255, 255, 0)\",baseColor:\"rgb(255, 255, 255)\",dark:0,diffuse:5,dragOptions:{damping:40,mass:1,stiffness:200},glowColor:\"rgb(255, 255, 255)\",height:\"100%\",id:\"URCqdhown\",isDraggable:true,layoutId:\"URCqdhown\",mapBrightness:12,markerArray:[],markerColor:\"rgb(255, 255, 255)\",markerSize:.1,maxSamples:2e4,maxWidth:800,offset:{offsetX:0,offsetY:0},phi:4.2,scale:1,speed:0,style:{height:\"100%\",width:\"100%\"},theta:.3,width:\"100%\"})})}),isDisplayed6()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-145n8dd\",\"data-framer-name\":\"Icons\",layoutDependency:layoutDependency,layoutId:\"x5rtdGNVy\",style:{rotate:0},transformTemplate:transformTemplate1,variants:{\"ZyDqlx_yY-hover\":{rotate:90}},...addPropertyOverrides({\"ZyDqlx_yY-hover\":{__framer__loopEffectEnabled:undefined,transformTemplate:undefined},fStkfT74b:{__framer__loopEffectEnabled:undefined,transformTemplate:undefined},ZyDqlx_yY:{__framer__loopEffectEnabled:undefined,transformTemplate:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11jsyi1\",layoutDependency:layoutDependency,layoutId:\"r44mZ14p7\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"48px\",...addPropertyOverrides({\"ZyDqlx_yY-hover\":{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+0+24+0+0},fStkfT74b:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+0+36+0+0},ZyDqlx_yY:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+0+36+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__loop:animation1,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-z6119y-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"yL3oRxlfx-container\",nodeId:\"yL3oRxlfx\",rendersWithMotion:true,scopeId:\"xTBHZsT14\",style:{rotate:0},variants:{\"ZyDqlx_yY-hover\":{rotate:-90}},...addPropertyOverrides({\"ZyDqlx_yY-hover\":{__framer__loopEffectEnabled:undefined},fStkfT74b:{__framer__loopEffectEnabled:undefined},ZyDqlx_yY:{__framer__loopEffectEnabled:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(FeaturesSEOIcons,{EoRzbrjsT:\"ListMagnifyingGlass\",height:\"100%\",id:\"yL3oRxlfx\",layoutId:\"yL3oRxlfx\",Nq_Rs3OxD:\"var(--token-0267a0c5-75bb-463a-a014-9612ec56e85c, rgb(197, 51, 255))\",SJfRTtovi:\"var(--token-ac66fc94-fc42-4186-9956-f4984338c966, rgb(255, 255, 255))\",style:{height:\"100%\",width:\"100%\"},variant:\"s7oSoGnCJ\",width:\"100%\",...addPropertyOverrides({\"ZyDqlx_yY-hover\":{variant:\"eHQ18xGTV\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"48px\",...addPropertyOverrides({\"ZyDqlx_yY-hover\":{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+0+24+0+312-48},fStkfT74b:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+0+36+0+288-48},ZyDqlx_yY:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+0+36+0+288-48}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__loop:animation1,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-3880u8-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"stpiv7rYs-container\",nodeId:\"stpiv7rYs\",rendersWithMotion:true,scopeId:\"xTBHZsT14\",style:{rotate:0},variants:{\"ZyDqlx_yY-hover\":{rotate:-90}},...addPropertyOverrides({\"ZyDqlx_yY-hover\":{__framer__loopEffectEnabled:undefined},fStkfT74b:{__framer__loopEffectEnabled:undefined},ZyDqlx_yY:{__framer__loopEffectEnabled:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(FeaturesSEOIcons,{EoRzbrjsT:\"ChartLineUp\",height:\"100%\",id:\"stpiv7rYs\",layoutId:\"stpiv7rYs\",Nq_Rs3OxD:\"var(--token-d0a5ae21-1de4-4f2d-a541-8c22f8545f4d, rgb(255, 51, 129))\",SJfRTtovi:\"var(--token-ac66fc94-fc42-4186-9956-f4984338c966, rgb(255, 255, 255))\",style:{height:\"100%\",width:\"100%\"},variant:\"s7oSoGnCJ\",width:\"100%\",...addPropertyOverrides({\"ZyDqlx_yY-hover\":{variant:\"eHQ18xGTV\"},fStkfT74b:{Nq_Rs3OxD:\"var(--token-8af11fbe-e7e5-4ff0-adc1-9c101e34bc41, rgb(133, 204, 0))\"},ZyDqlx_yY:{Nq_Rs3OxD:\"var(--token-8af11fbe-e7e5-4ff0-adc1-9c101e34bc41, rgb(133, 204, 0))\"}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1b5p5p1\",layoutDependency:layoutDependency,layoutId:\"mLmF7jGeq\",style:{rotate:-45},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"48px\",...addPropertyOverrides({\"ZyDqlx_yY-hover\":{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+0+24+0+0},fStkfT74b:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+0+36+0+0},ZyDqlx_yY:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+0+36+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__loop:animation1,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-18dvg4l-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"x1VvGWUnA-container\",nodeId:\"x1VvGWUnA\",rendersWithMotion:true,scopeId:\"xTBHZsT14\",style:{rotate:45},variants:{\"ZyDqlx_yY-hover\":{rotate:-45}},...addPropertyOverrides({\"ZyDqlx_yY-hover\":{__framer__loopEffectEnabled:undefined},fStkfT74b:{__framer__loopEffectEnabled:undefined},ZyDqlx_yY:{__framer__loopEffectEnabled:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(FeaturesSEOIcons,{EoRzbrjsT:\"GoogleChromeLogo\",height:\"100%\",id:\"x1VvGWUnA\",layoutId:\"x1VvGWUnA\",Nq_Rs3OxD:\"var(--token-d0a5ae21-1de4-4f2d-a541-8c22f8545f4d, rgb(255, 51, 129))\",SJfRTtovi:\"var(--token-ac66fc94-fc42-4186-9956-f4984338c966, rgb(255, 255, 255))\",style:{height:\"100%\",width:\"100%\"},variant:\"s7oSoGnCJ\",width:\"100%\",...addPropertyOverrides({\"ZyDqlx_yY-hover\":{variant:\"eHQ18xGTV\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"48px\",...addPropertyOverrides({\"ZyDqlx_yY-hover\":{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+0+24+0+312-48},fStkfT74b:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+0+36+0+288-48},ZyDqlx_yY:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+0+36+0+288-48}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__loop:animation1,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-u2d292-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"fvyQDxn2P-container\",nodeId:\"fvyQDxn2P\",rendersWithMotion:true,scopeId:\"xTBHZsT14\",style:{rotate:45},variants:{\"ZyDqlx_yY-hover\":{rotate:-45}},...addPropertyOverrides({\"ZyDqlx_yY-hover\":{__framer__loopEffectEnabled:undefined},fStkfT74b:{__framer__loopEffectEnabled:undefined},ZyDqlx_yY:{__framer__loopEffectEnabled:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(FeaturesSEOIcons,{EoRzbrjsT:\"Gauge\",height:\"100%\",id:\"fvyQDxn2P\",layoutId:\"fvyQDxn2P\",Nq_Rs3OxD:\"var(--token-31a65de1-0bdc-417c-8cef-dd9f23c4a095, rgb(255, 184, 51))\",SJfRTtovi:\"var(--token-ac66fc94-fc42-4186-9956-f4984338c966, rgb(255, 255, 255))\",style:{height:\"100%\",width:\"100%\"},variant:\"s7oSoGnCJ\",width:\"100%\",...addPropertyOverrides({\"ZyDqlx_yY-hover\":{variant:\"eHQ18xGTV\"}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ehpv8w\",layoutDependency:layoutDependency,layoutId:\"y5JBO00Ea\",style:{rotate:45},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"48px\",...addPropertyOverrides({\"ZyDqlx_yY-hover\":{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+0+24+0+0},fStkfT74b:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+0+36+0+0},ZyDqlx_yY:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+0+36+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__loop:animation1,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-rf8se9-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"hxjQpmOco-container\",nodeId:\"hxjQpmOco\",rendersWithMotion:true,scopeId:\"xTBHZsT14\",style:{rotate:-45},variants:{\"ZyDqlx_yY-hover\":{rotate:-135}},...addPropertyOverrides({\"ZyDqlx_yY-hover\":{__framer__loopEffectEnabled:undefined},fStkfT74b:{__framer__loopEffectEnabled:undefined},ZyDqlx_yY:{__framer__loopEffectEnabled:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(FeaturesSEOIcons,{EoRzbrjsT:\"Lightning\",height:\"100%\",id:\"hxjQpmOco\",layoutId:\"hxjQpmOco\",Nq_Rs3OxD:\"var(--token-8af11fbe-e7e5-4ff0-adc1-9c101e34bc41, rgb(133, 204, 0))\",SJfRTtovi:\"var(--token-ac66fc94-fc42-4186-9956-f4984338c966, rgb(255, 255, 255))\",style:{height:\"100%\",width:\"100%\"},variant:\"s7oSoGnCJ\",width:\"100%\",...addPropertyOverrides({\"ZyDqlx_yY-hover\":{variant:\"eHQ18xGTV\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"48px\",...addPropertyOverrides({\"ZyDqlx_yY-hover\":{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+0+24+0+312-48},fStkfT74b:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+0+36+0+288-48},ZyDqlx_yY:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+0+36+0+288-48}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__loop:animation1,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1roisjj-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"duWS60Y6T-container\",nodeId:\"duWS60Y6T\",rendersWithMotion:true,scopeId:\"xTBHZsT14\",style:{rotate:-45},variants:{\"ZyDqlx_yY-hover\":{rotate:-135}},...addPropertyOverrides({\"ZyDqlx_yY-hover\":{__framer__loopEffectEnabled:undefined},fStkfT74b:{__framer__loopEffectEnabled:undefined},ZyDqlx_yY:{__framer__loopEffectEnabled:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(FeaturesSEOIcons,{EoRzbrjsT:\"ChartDonut\",height:\"100%\",id:\"duWS60Y6T\",layoutId:\"duWS60Y6T\",Nq_Rs3OxD:\"var(--token-f19c34c7-e8ef-4025-92c5-3484fcd0db88, rgb(51, 177, 255))\",SJfRTtovi:\"var(--token-ac66fc94-fc42-4186-9956-f4984338c966, rgb(255, 255, 255))\",style:{height:\"100%\",width:\"100%\"},variant:\"s7oSoGnCJ\",width:\"100%\",...addPropertyOverrides({\"ZyDqlx_yY-hover\":{variant:\"eHQ18xGTV\"}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18jhhuo\",layoutDependency:layoutDependency,layoutId:\"fhwBuuYFT\",style:{rotate:90},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"48px\",...addPropertyOverrides({\"ZyDqlx_yY-hover\":{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+0+24+0+0},fStkfT74b:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+0+36+0+0},ZyDqlx_yY:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+0+36+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__loop:animation1,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-3kksdm-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"obWFt49Mz-container\",nodeId:\"obWFt49Mz\",rendersWithMotion:true,scopeId:\"xTBHZsT14\",style:{rotate:-90},variants:{\"ZyDqlx_yY-hover\":{rotate:-180}},...addPropertyOverrides({\"ZyDqlx_yY-hover\":{__framer__loopEffectEnabled:undefined},fStkfT74b:{__framer__loopEffectEnabled:undefined},ZyDqlx_yY:{__framer__loopEffectEnabled:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(FeaturesSEOIcons,{EoRzbrjsT:\"TreeStructure\",height:\"100%\",id:\"obWFt49Mz\",layoutId:\"obWFt49Mz\",Nq_Rs3OxD:\"var(--token-f19c34c7-e8ef-4025-92c5-3484fcd0db88, rgb(51, 177, 255))\",SJfRTtovi:\"var(--token-ac66fc94-fc42-4186-9956-f4984338c966, rgb(255, 255, 255))\",style:{height:\"100%\",width:\"100%\"},variant:\"s7oSoGnCJ\",width:\"100%\",...addPropertyOverrides({\"ZyDqlx_yY-hover\":{variant:\"eHQ18xGTV\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"48px\",...addPropertyOverrides({\"ZyDqlx_yY-hover\":{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+0+24+0+312-48},fStkfT74b:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+0+36+0+288-48},ZyDqlx_yY:{y:(componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+0+36+0+288-48}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__loop:animation1,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-unitd3-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"RtJ62RJmp-container\",nodeId:\"RtJ62RJmp\",rendersWithMotion:true,scopeId:\"xTBHZsT14\",style:{rotate:-90},variants:{\"ZyDqlx_yY-hover\":{rotate:-180}},...addPropertyOverrides({\"ZyDqlx_yY-hover\":{__framer__loopEffectEnabled:undefined},fStkfT74b:{__framer__loopEffectEnabled:undefined},ZyDqlx_yY:{__framer__loopEffectEnabled:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(FeaturesSEOIcons,{EoRzbrjsT:\"ChartScatter\",height:\"100%\",id:\"RtJ62RJmp\",layoutId:\"RtJ62RJmp\",Nq_Rs3OxD:\"var(--token-31a65de1-0bdc-417c-8cef-dd9f23c4a095, rgb(255, 184, 51))\",SJfRTtovi:\"var(--token-ac66fc94-fc42-4186-9956-f4984338c966, rgb(255, 255, 255))\",style:{height:\"100%\",width:\"100%\"},variant:\"s7oSoGnCJ\",width:\"100%\",...addPropertyOverrides({\"ZyDqlx_yY-hover\":{variant:\"eHQ18xGTV\"}},baseVariant,gestureVariant)})})})]})]})]}),isDisplayed7()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9cuy23\",\"data-framer-name\":\"App Screens Stack\",layoutDependency:layoutDependency,layoutId:\"XEqsl8bJn\",transformTemplate:transformTemplate2,...addPropertyOverrides({\"nHGZSKaaX-hover\":{transformTemplate:undefined},hUt5QE3vn:{transformTemplate:undefined},nHGZSKaaX:{transformTemplate:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-my4ct\",\"data-framer-name\":\"HealthWell_App_Screen_01 Stack\",layoutDependency:layoutDependency,layoutId:\"c3q2iZtkE\",transformTemplate:transformTemplate2,...addPropertyOverrides({\"nHGZSKaaX-hover\":{transformTemplate:undefined}},baseVariant,gestureVariant),children:[isDisplayed7()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"HealthWell_App_Screen_01\",fit:\"fill\",intrinsicHeight:1864,intrinsicWidth:946,pixelHeight:1864,pixelWidth:946,src:\"https://framerusercontent.com/images/bm6ST2JsFJfQDPm40xaWe3kW0E8.png\",srcSet:\"https://framerusercontent.com/images/bm6ST2JsFJfQDPm40xaWe3kW0E8.png?scale-down-to=1024 519w,https://framerusercontent.com/images/bm6ST2JsFJfQDPm40xaWe3kW0E8.png 946w\"},className:\"framer-lwp9td\",\"data-framer-name\":\"HealthWell_App_Screen_01\",layoutDependency:layoutDependency,layoutId:\"ZMDYBpgd8\",...addPropertyOverrides({\"nHGZSKaaX-hover\":{background:{alt:\"HealthWell_App_Screen_01\",fit:\"fill\",intrinsicHeight:1864,intrinsicWidth:946,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+0+24+0),pixelHeight:1864,pixelWidth:946,sizes:\"190px\",src:\"https://framerusercontent.com/images/bm6ST2JsFJfQDPm40xaWe3kW0E8.png\",srcSet:\"https://framerusercontent.com/images/bm6ST2JsFJfQDPm40xaWe3kW0E8.png?scale-down-to=1024 519w,https://framerusercontent.com/images/bm6ST2JsFJfQDPm40xaWe3kW0E8.png 946w\"}},hUt5QE3vn:{background:{alt:\"HealthWell_App_Screen_01\",fit:\"fill\",intrinsicHeight:1864,intrinsicWidth:946,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+0+36+0),pixelHeight:1864,pixelWidth:946,sizes:\"240px\",src:\"https://framerusercontent.com/images/bm6ST2JsFJfQDPm40xaWe3kW0E8.png\",srcSet:\"https://framerusercontent.com/images/bm6ST2JsFJfQDPm40xaWe3kW0E8.png?scale-down-to=1024 519w,https://framerusercontent.com/images/bm6ST2JsFJfQDPm40xaWe3kW0E8.png 946w\"}},nHGZSKaaX:{background:{alt:\"HealthWell_App_Screen_01\",fit:\"fill\",intrinsicHeight:1864,intrinsicWidth:946,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+0+36+0),pixelHeight:1864,pixelWidth:946,sizes:\"240px\",src:\"https://framerusercontent.com/images/bm6ST2JsFJfQDPm40xaWe3kW0E8.png\",srcSet:\"https://framerusercontent.com/images/bm6ST2JsFJfQDPm40xaWe3kW0E8.png?scale-down-to=1024 519w,https://framerusercontent.com/images/bm6ST2JsFJfQDPm40xaWe3kW0E8.png 946w\"}}},baseVariant,gestureVariant)}),isDisplayed8()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1871561\",\"data-framer-name\":\"Shadow\",layoutDependency:layoutDependency,layoutId:\"uobW8aZ0d\",style:{backgroundColor:\"rgba(0, 0, 0, 0.1)\",borderBottomLeftRadius:96,borderBottomRightRadius:96,borderTopLeftRadius:96,borderTopRightRadius:96,filter:\"blur(8px)\",opacity:0,WebkitFilter:\"blur(8px)\"}})]}),isDisplayed7()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"HealthWell_App_Screen_02\",fit:\"fill\",intrinsicHeight:1864,intrinsicWidth:947,pixelHeight:1864,pixelWidth:947,src:\"https://framerusercontent.com/images/bhW8RU9rjm9SKgMhNU44A6U1WQ.png\",srcSet:\"https://framerusercontent.com/images/bhW8RU9rjm9SKgMhNU44A6U1WQ.png?scale-down-to=1024 520w,https://framerusercontent.com/images/bhW8RU9rjm9SKgMhNU44A6U1WQ.png 947w\"},className:\"framer-6ylikb\",\"data-framer-name\":\"HealthWell_App_Screen_02\",layoutDependency:layoutDependency,layoutId:\"IlskrYinS\",transformTemplate:transformTemplate2,...addPropertyOverrides({\"nHGZSKaaX-hover\":{background:{alt:\"HealthWell_App_Screen_02\",fit:\"fill\",intrinsicHeight:1864,intrinsicWidth:947,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+0+48),pixelHeight:1864,pixelWidth:947,sizes:\"163px\",src:\"https://framerusercontent.com/images/bhW8RU9rjm9SKgMhNU44A6U1WQ.png\",srcSet:\"https://framerusercontent.com/images/bhW8RU9rjm9SKgMhNU44A6U1WQ.png?scale-down-to=1024 520w,https://framerusercontent.com/images/bhW8RU9rjm9SKgMhNU44A6U1WQ.png 947w\"},transformTemplate:undefined},hUt5QE3vn:{background:{alt:\"HealthWell_App_Screen_02\",fit:\"fill\",intrinsicHeight:1864,intrinsicWidth:947,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+0+96),pixelHeight:1864,pixelWidth:947,sizes:\"122px\",src:\"https://framerusercontent.com/images/bhW8RU9rjm9SKgMhNU44A6U1WQ.png\",srcSet:\"https://framerusercontent.com/images/bhW8RU9rjm9SKgMhNU44A6U1WQ.png?scale-down-to=1024 520w,https://framerusercontent.com/images/bhW8RU9rjm9SKgMhNU44A6U1WQ.png 947w\"}},nHGZSKaaX:{background:{alt:\"HealthWell_App_Screen_02\",fit:\"fill\",intrinsicHeight:1864,intrinsicWidth:947,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-(Math.max(0,(Math.max(0,((componentViewport?.height||376)-0-0)/1)*1-24-154.4)/1)*1+130.4+24)+0+0)+0+96),pixelHeight:1864,pixelWidth:947,sizes:\"122px\",src:\"https://framerusercontent.com/images/bhW8RU9rjm9SKgMhNU44A6U1WQ.png\",srcSet:\"https://framerusercontent.com/images/bhW8RU9rjm9SKgMhNU44A6U1WQ.png?scale-down-to=1024 520w,https://framerusercontent.com/images/bhW8RU9rjm9SKgMhNU44A6U1WQ.png 947w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nvn5u9\",\"data-framer-name\":\"Gradient\",layoutDependency:layoutDependency,layoutId:\"yFCm7wXHB\",style:{background:\"linear-gradient(180deg, rgba(84, 84, 84, 0) 0%, var(--token-ac66fc94-fc42-4186-9956-f4984338c966, rgb(255, 255, 255)) 100%)\"}})]}),isDisplayed9()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tweoak\",\"data-framer-name\":\"Gradient\",layoutDependency:layoutDependency,layoutId:\"v6dF7RqUS\",style:{background:\"linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, var(--token-ac66fc94-fc42-4186-9956-f4984338c966, rgb(255, 255, 255)) 100%)\",borderTopRightRadius:0},variants:{B5Mm4vGS5:{borderTopRightRadius:30},EgNsUJzu3:{borderTopRightRadius:30},hm2rPFvxz:{borderTopRightRadius:30},SAuEYBV7b:{borderTopRightRadius:30}}}),isDisplayed10()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-m0tlag\",\"data-framer-name\":\"Gradient\",layoutDependency:layoutDependency,layoutId:\"cr2fp9W2Y\",style:{background:\"linear-gradient(180deg, rgba(84, 84, 84, 0) 0%, var(--token-ac66fc94-fc42-4186-9956-f4984338c966, rgb(255, 255, 255)) 100%)\"},variants:{hm2rPFvxz:{background:\"linear-gradient(180deg, rgba(84, 84, 84, 0) 0%, var(--token-ac66fc94-fc42-4186-9956-f4984338c966, rgb(255, 255, 255)) 90%)\"},SAuEYBV7b:{background:\"linear-gradient(180deg, rgba(84, 84, 84, 0) 0%, var(--token-ac66fc94-fc42-4186-9956-f4984338c966, rgb(255, 255, 255)) 90%)\"},ZyDqlx_yY:{background:\"linear-gradient(180deg, rgba(84, 84, 84, 0) 0%, var(--token-ac66fc94-fc42-4186-9956-f4984338c966, rgb(255, 255, 255)) 90%)\"}}}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1252nh4\",\"data-framer-name\":\"Gradient\",layoutDependency:layoutDependency,layoutId:\"Tg2lUu3HS\",style:{background:\"linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, var(--token-ac66fc94-fc42-4186-9956-f4984338c966, rgb(255, 255, 255)) 100%)\",borderTopLeftRadius:0},variants:{B5Mm4vGS5:{background:\"linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%)\",borderTopLeftRadius:30},EgNsUJzu3:{background:\"linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%)\",borderTopLeftRadius:30}}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3ou8cy\",layoutDependency:layoutDependency,layoutId:\"WSc9l2Pka\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-7e863056-5bee-4444-a43b-367cd97d6d18, rgb(0, 0, 0)))\"},children:\"Custom Web Design\"})}),className:\"framer-vz7kdd\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"QeTs2g5Zp\",style:{\"--extracted-a0htzi\":\"var(--token-7e863056-5bee-4444-a43b-367cd97d6d18, rgb(0, 0, 0))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"pO7H6NYBJ-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtYm9sZA==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-7e863056-5bee-4444-a43b-367cd97d6d18, rgb(0, 0, 0)))\"},children:\"Personalised learning, at your own pace\"})})},AOf5VMlDC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h3,{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtYm9sZA==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-7e863056-5bee-4444-a43b-367cd97d6d18, rgb(0, 0, 0)))\"},children:[\"Personalised learning\",/*#__PURE__*/_jsx(motion.br,{}),\"at your own pace\"]})}),fonts:[\"FS;Plus Jakarta Sans-bold\"]},B5Mm4vGS5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-7e863056-5bee-4444-a43b-367cd97d6d18, rgb(0, 0, 0)))\"},children:\"Website Maintenance\"})})},EgNsUJzu3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-7e863056-5bee-4444-a43b-367cd97d6d18, rgb(0, 0, 0)))\"},children:\"Website Maintenance\"})})},fStkfT74b:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-7e863056-5bee-4444-a43b-367cd97d6d18, rgb(0, 0, 0)))\"},children:\"SEO Optimization\"})})},hm2rPFvxz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-7e863056-5bee-4444-a43b-367cd97d6d18, rgb(0, 0, 0)))\"},children:\"E-Commerce Solutions\"})})},hUt5QE3vn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-7e863056-5bee-4444-a43b-367cd97d6d18, rgb(0, 0, 0)))\"},children:\"Mobile App Development\"})})},nHGZSKaaX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-7e863056-5bee-4444-a43b-367cd97d6d18, rgb(0, 0, 0)))\"},children:\"Mobile App Development\"})})},pO7H6NYBJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtYm9sZA==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-7e863056-5bee-4444-a43b-367cd97d6d18, rgb(0, 0, 0)))\"},children:\"Find your Dream Job\"})}),fonts:[\"FS;Plus Jakarta Sans-bold\"]},SAuEYBV7b:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-7e863056-5bee-4444-a43b-367cd97d6d18, rgb(0, 0, 0)))\"},children:\"E-Commerce Solutions\"})})},tAONlVjC_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-7e863056-5bee-4444-a43b-367cd97d6d18, rgb(0, 0, 0)))\"},children:\"Branding & Identity\"})})},x8w1pzgt4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h3,{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtYm9sZA==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-7e863056-5bee-4444-a43b-367cd97d6d18, rgb(0, 0, 0)))\"},children:[\"Personalised learning\",/*#__PURE__*/_jsx(motion.br,{}),\"at your own pace\"]})}),fonts:[\"FS;Plus Jakarta Sans-bold\"]},ylrzzaBvs:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-7e863056-5bee-4444-a43b-367cd97d6d18, rgb(0, 0, 0)))\"},children:\"Branding & Identity\"})})},ZyDqlx_yY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-7e863056-5bee-4444-a43b-367cd97d6d18, rgb(0, 0, 0)))\"},children:\"SEO Optimization\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-eec563d0-579b-4ee4-bbbf-8d4ac1f3bfbf, rgb(77, 77, 77)))\"},children:\"Crafting unique and engaging websites tailored to your brand.\"})}),className:\"framer-ugir3d\",fonts:[\"Inter-Light\"],layoutDependency:layoutDependency,layoutId:\"wb6LxV935\",style:{\"--extracted-r6o4lv\":\"var(--token-eec563d0-579b-4ee4-bbbf-8d4ac1f3bfbf, rgb(77, 77, 77))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"pO7H6NYBJ-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-eec563d0-579b-4ee4-bbbf-8d4ac1f3bfbf, rgb(77, 77, 77)))\"},children:\"Rivlon will create learning paths based on your career goals, skills, learning style and schedule \u2014 updated periodically.\"})})},AOf5VMlDC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-eec563d0-579b-4ee4-bbbf-8d4ac1f3bfbf, rgb(77, 77, 77)))\"},children:\"Rivlon will create learning paths based on your career goals, skills, learning style and schedule \u2014 updated periodically.\"})}),fonts:[\"FS;Plus Jakarta Sans-regular\"]},B5Mm4vGS5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-eec563d0-579b-4ee4-bbbf-8d4ac1f3bfbf, rgb(77, 77, 77)))\"},children:\"Ensuring your website remains up-to-date and secure.\"})})},EgNsUJzu3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-eec563d0-579b-4ee4-bbbf-8d4ac1f3bfbf, rgb(77, 77, 77)))\"},children:\"Ensuring your website remains up-to-date and secure.\"})})},fStkfT74b:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-eec563d0-579b-4ee4-bbbf-8d4ac1f3bfbf, rgb(77, 77, 77)))\"},children:\"Boosting your website\u2019s search engine visibility.\"})})},hm2rPFvxz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-eec563d0-579b-4ee4-bbbf-8d4ac1f3bfbf, rgb(77, 77, 77)))\"},children:\"Building robust online stores to drive sales and enhance user experience.\"})})},hUt5QE3vn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-eec563d0-579b-4ee4-bbbf-8d4ac1f3bfbf, rgb(77, 77, 77)))\"},children:\"Developing intuitive apps for iOS and Android platforms.\"})})},nHGZSKaaX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-eec563d0-579b-4ee4-bbbf-8d4ac1f3bfbf, rgb(77, 77, 77)))\"},children:\"Developing intuitive apps for iOS and Android platforms.\"})})},pO7H6NYBJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-eec563d0-579b-4ee4-bbbf-8d4ac1f3bfbf, rgb(77, 77, 77)))\"},children:\"Upload your CV via whatsapp, and let Rivlon search through thousands of companies for the best  jobs and  help you get hired.\"})}),fonts:[\"FS;Plus Jakarta Sans-regular\"]},SAuEYBV7b:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-eec563d0-579b-4ee4-bbbf-8d4ac1f3bfbf, rgb(77, 77, 77)))\"},children:\"Building robust online stores to drive sales and enhance user experience.\"})})},tAONlVjC_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-eec563d0-579b-4ee4-bbbf-8d4ac1f3bfbf, rgb(77, 77, 77)))\"},children:\"Creating cohesive and impactful brand identities.\"})})},x8w1pzgt4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-eec563d0-579b-4ee4-bbbf-8d4ac1f3bfbf, rgb(77, 77, 77)))\"},children:\"Rivlon will create learning paths based on your career goals, skills, learning style and schedule \u2014 updated periodically.\"})}),fonts:[\"FS;Plus Jakarta Sans-regular\"]},ylrzzaBvs:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-eec563d0-579b-4ee4-bbbf-8d4ac1f3bfbf, rgb(77, 77, 77)))\"},children:\"Creating cohesive and impactful brand identities.\"})})},ZyDqlx_yY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-eec563d0-579b-4ee4-bbbf-8d4ac1f3bfbf, rgb(77, 77, 77)))\"},children:\"Boosting your website\u2019s search engine visibility.\"})})}},baseVariant,gestureVariant)})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-lBj7M.framer-1hzppci, .framer-lBj7M .framer-1hzppci { display: block; }\",\".framer-lBj7M.framer-ytn5ix { align-content: flex-start; align-items: flex-start; cursor: default; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 376px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 600px; }\",\".framer-lBj7M .framer-7ey3yz { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 1px; justify-content: flex-end; overflow: visible; padding: 0px 0px 24px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-lBj7M .framer-orl2tr { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-lBj7M .framer-1o45stq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 24px 48px 0px 48px; position: relative; width: 100%; }\",\".framer-lBj7M .framer-g2w8p3 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 20px 0px 20px; position: relative; width: 1px; }\",\".framer-lBj7M .framer-1ucthtm { 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; min-height: 320px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-lBj7M .framer-103p8pl-container, .framer-lBj7M .framer-1k5pf66-container, .framer-lBj7M .framer-1euibos-container, .framer-lBj7M .framer-f223yx-container, .framer-lBj7M .framer-1fnjejh-container, .framer-lBj7M .framer-xu18hm-container { aspect-ratio: 2.5 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 80px); left: 0px; position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-lBj7M .framer-1nz20em { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 24px 0px 0px 0px; position: absolute; top: 50%; width: min-content; z-index: 1; }\",\".framer-lBj7M .framer-1johfy4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: 144px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-lBj7M .framer-h7d5sn-container, .framer-lBj7M .framer-t2umg5-container, .framer-lBj7M .framer-1irq5ed-container, .framer-lBj7M .framer-ohkcn6-container, .framer-lBj7M .framer-1qzlpq3-container, .framer-lBj7M .framer-lblab9-container, .framer-lBj7M .framer-q7wgjn-container, .framer-lBj7M .framer-1k3wyyr-container, .framer-lBj7M .framer-hpvhtf-container, .framer-lBj7M .framer-5pj132-container, .framer-lBj7M .framer-19quewf-container, .framer-lBj7M .framer-12kbqr-container, .framer-lBj7M .framer-16mi4ig-container, .framer-lBj7M .framer-1ip486d-container, .framer-lBj7M .framer-rmfsne-container { flex: none; height: 96px; position: relative; width: 96px; }\",\".framer-lBj7M .framer-iuxp8j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; left: 50%; min-height: 172px; min-width: 600px; overflow: visible; padding: 24px 0px 0px 0px; position: absolute; top: 50%; width: min-content; z-index: 1; }\",\".framer-lBj7M .framer-phxnv3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; min-height: 144px; min-width: 144px; overflow: visible; padding: 24px; position: relative; width: min-content; z-index: 1; }\",\".framer-lBj7M .framer-xhutve { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: 96px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 96px; z-index: 1; }\",\".framer-lBj7M .framer-13gbnts-container { flex: none; height: 72px; left: calc(50.00000000000002% - 72px / 2); position: absolute; top: calc(50.00000000000002% - 72px / 2); width: 72px; z-index: 1; }\",\".framer-lBj7M .framer-1vaeyh3-container { flex: none; height: 31px; position: absolute; right: 0px; top: 0px; width: 30px; z-index: 1; }\",\".framer-lBj7M .framer-zd4kpm-container { bottom: -28px; flex: none; height: auto; left: 50%; position: absolute; width: auto; z-index: 2; }\",\".framer-lBj7M .framer-g7b8k4 { aspect-ratio: 0.9649253731343284 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 609px); left: 48px; overflow: visible; position: absolute; right: -24px; top: 48px; z-index: 1; }\",\".framer-lBj7M .framer-egpbqp { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; justify-content: center; left: calc(50.00000000000002% - 520px / 2); overflow: visible; padding: 0px; position: absolute; top: 0px; width: 520px; z-index: 1; }\",\".framer-lBj7M .framer-123zaz0 { aspect-ratio: 1.042988019732206 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 230px); overflow: visible; position: absolute; right: 48px; top: 60px; width: 240px; z-index: 1; }\",\".framer-lBj7M .framer-2t8xs7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; left: 48px; overflow: visible; padding: 0px; position: absolute; top: 48px; width: min-content; z-index: 2; }\",\".framer-lBj7M .framer-1wdbp29 { aspect-ratio: 0.9938650306748466 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 241px); overflow: visible; position: relative; width: 240px; z-index: 2; }\",\".framer-lBj7M .framer-1nwizqi, .framer-lBj7M .framer-1nvn5u9, .framer-lBj7M .framer-m0tlag { bottom: -1px; flex: none; height: 72px; left: 0px; overflow: hidden; pointer-events: none; position: absolute; right: 0px; z-index: 1; }\",\".framer-lBj7M .framer-zp82ah { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; left: 50%; min-height: 114px; min-width: 330px; overflow: visible; padding: 24px 0px 0px 0px; position: absolute; top: 50%; width: min-content; z-index: 1; }\",\".framer-lBj7M .framer-1qdq7td { flex: none; height: 144px; left: 0px; overflow: hidden; position: absolute; top: calc(60.00000000000002% - 144px / 2); width: 1px; z-index: 1; }\",\".framer-lBj7M .framer-1g0652p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; min-height: 97px; min-width: 355px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-lBj7M .framer-prjxqi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 96px; justify-content: center; overflow: hidden; padding: 24px 48px 24px 48px; position: relative; width: 355px; z-index: 1; }\",\".framer-lBj7M .framer-1fqg35u { align-content: center; align-items: center; aspect-ratio: 5.4 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: var(--framer-aspect-ratio-supported, 48px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 259px; }\",\".framer-lBj7M .framer-1or3oa8 { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-lBj7M .framer-12mg4hq { flex: none; height: 144px; overflow: hidden; position: absolute; right: 0px; top: calc(60.00000000000002% - 144px / 2); width: 1px; z-index: 1; }\",\".framer-lBj7M .framer-jtf5xa { flex: none; height: 1px; left: calc(49.859154929577485% - 403px / 2); overflow: hidden; position: absolute; top: 24px; width: 403px; z-index: 1; }\",\".framer-lBj7M .framer-191tvfz { bottom: 0px; flex: none; height: 1px; left: calc(49.859154929577485% - 403px / 2); overflow: hidden; position: absolute; width: 403px; z-index: 1; }\",\".framer-lBj7M .framer-nqnxyn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: 360px; justify-content: center; left: calc(50.00000000000002% - 360px / 2); overflow: visible; padding: 0px; position: absolute; top: 0px; width: 360px; z-index: 1; }\",\".framer-lBj7M .framer-1fchxyi-container { flex: none; height: 220px; position: relative; width: 220px; z-index: 1; }\",\".framer-lBj7M .framer-145n8dd { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: var(--framer-aspect-ratio-supported, 300px); justify-content: center; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 50%; width: 300px; z-index: 1; }\",\".framer-lBj7M .framer-11jsyi1, .framer-lBj7M .framer-1b5p5p1, .framer-lBj7M .framer-ehpv8w, .framer-lBj7M .framer-18jhhuo { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; justify-content: space-between; left: calc(50.00000000000002% - 48px / 2); overflow: visible; padding: 0px; position: absolute; top: 0px; width: 48px; z-index: 1; }\",\".framer-lBj7M .framer-z6119y-container, .framer-lBj7M .framer-18dvg4l-container, .framer-lBj7M .framer-rf8se9-container, .framer-lBj7M .framer-3kksdm-container { flex: none; height: 48px; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-lBj7M .framer-3880u8-container, .framer-lBj7M .framer-u2d292-container, .framer-lBj7M .framer-1roisjj-container, .framer-lBj7M .framer-unitd3-container { bottom: 0px; flex: none; height: 48px; left: 0px; position: absolute; right: 0px; z-index: 1; }\",\".framer-lBj7M .framer-9cuy23 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; left: 50%; min-height: 380px; overflow: visible; padding: 0px; position: absolute; top: 24px; width: 360px; z-index: 1; }\",\".framer-lBj7M .framer-my4ct { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; left: 50%; min-height: 472px; overflow: visible; padding: 0px; position: absolute; top: 0px; width: 240px; z-index: 2; }\",\".framer-lBj7M .framer-lwp9td { aspect-ratio: 0.5075107296137339 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 394px); overflow: visible; position: relative; width: 1px; z-index: 2; }\",\".framer-lBj7M .framer-1871561 { bottom: 24px; flex: none; left: 120px; overflow: hidden; position: absolute; right: -6px; top: 24px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-lBj7M .framer-6ylikb { aspect-ratio: 0.5080472103004292 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 240px); left: 50%; overflow: visible; position: absolute; top: 96px; width: 122px; z-index: 1; }\",\".framer-lBj7M .framer-1tweoak { bottom: 0px; flex: none; overflow: hidden; pointer-events: none; position: absolute; right: 0px; top: 0px; width: 75%; z-index: 1; }\",\".framer-lBj7M .framer-1252nh4 { bottom: 0px; flex: none; left: 0px; overflow: hidden; pointer-events: none; position: absolute; top: 0px; width: 12%; z-index: 1; }\",\".framer-lBj7M .framer-3ou8cy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 24px 0px 24px; position: relative; width: 100%; }\",\".framer-lBj7M .framer-vz7kdd { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-lBj7M .framer-ugir3d { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 300px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-lBj7M.framer-v-12uw747 .framer-ugir3d, .framer-lBj7M.framer-v-1cowp1g .framer-ugir3d, .framer-lBj7M.framer-v-oux7bv .framer-ugir3d, .framer-lBj7M.framer-v-1mbwdgq .framer-ugir3d, .framer-lBj7M.framer-v-1xj1m48 .framer-ugir3d, .framer-lBj7M.framer-v-1kzer5o .framer-ugir3d { width: 100%; }\",\".framer-lBj7M.framer-v-1iik29o .framer-zd4kpm-container, .framer-lBj7M.framer-v-1cowp1g .framer-zd4kpm-container, .framer-lBj7M.framer-v-vvk3y .framer-1k3wyyr-container, .framer-lBj7M.framer-v-1xj1m48 .framer-1k3wyyr-container, .framer-lBj7M.framer-v-1iik29o.hover .framer-1tweoak { order: 8; }\",\".framer-lBj7M.framer-v-1iik29o .framer-g7b8k4, .framer-lBj7M.framer-v-1cowp1g .framer-g7b8k4, .framer-lBj7M.framer-v-18awdm8 .framer-1nvn5u9, .framer-lBj7M.framer-v-vvk3y .framer-1nz20em, .framer-lBj7M.framer-v-vvk3y .framer-h7d5sn-container, .framer-lBj7M.framer-v-1xj1m48 .framer-h7d5sn-container { order: 1; }\",\".framer-lBj7M.framer-v-1iik29o .framer-1tweoak, .framer-lBj7M.framer-v-1cowp1g .framer-1tweoak { order: 7; width: 35%; will-change: var(--framer-will-change-override, transform); }\",\".framer-lBj7M.framer-v-1iik29o .framer-m0tlag, .framer-lBj7M.framer-v-1cowp1g .framer-m0tlag { bottom: -2px; height: 54px; order: 9; }\",\".framer-lBj7M.framer-v-18awdm8 .framer-9cuy23, .framer-lBj7M.framer-v-oux7bv .framer-9cuy23 { bottom: 0px; flex-direction: column; height: unset; left: calc(50.00000000000002% - 360px / 2); min-height: unset; top: 0px; }\",\".framer-lBj7M.framer-v-18awdm8 .framer-my4ct { min-height: unset; order: 2; top: 36px; }\",\".framer-lBj7M.framer-v-18awdm8 .framer-lwp9td, .framer-lBj7M.framer-v-oux7bv .framer-lwp9td { height: var(--framer-aspect-ratio-supported, 473px); order: 1; }\",\".framer-lBj7M.framer-v-18awdm8 .framer-6ylikb, .framer-lBj7M.framer-v-oux7bv .framer-1871561, .framer-lBj7M.framer-v-oux7bv .framer-6ylikb, .framer-lBj7M.framer-v-vvk3y .framer-1ip486d-container, .framer-lBj7M.framer-v-1xj1m48 .framer-1ip486d-container { order: 0; }\",\".framer-lBj7M.framer-v-oux7bv .framer-my4ct { min-height: unset; order: 1; top: 36px; }\",\".framer-lBj7M.framer-v-oux7bv .framer-1nvn5u9, .framer-lBj7M.framer-v-vvk3y .framer-t2umg5-container, .framer-lBj7M.framer-v-1xj1m48 .framer-t2umg5-container, .framer-lBj7M.framer-v-18awdm8.hover .framer-1nvn5u9 { order: 2; }\",\".framer-lBj7M.framer-v-1cuvd7m .framer-nqnxyn, .framer-lBj7M.framer-v-1mbwdgq .framer-nqnxyn { flex-direction: column; order: 3; }\",\".framer-lBj7M.framer-v-1cuvd7m .framer-1fchxyi-container, .framer-lBj7M.framer-v-1mbwdgq .framer-1fchxyi-container { height: 190px; width: 190px; }\",\".framer-lBj7M.framer-v-1cuvd7m .framer-145n8dd, .framer-lBj7M.framer-v-1mbwdgq .framer-145n8dd { aspect-ratio: unset; bottom: 36px; height: unset; left: 36px; right: 36px; top: 36px; width: unset; }\",\".framer-lBj7M.framer-v-1cuvd7m .framer-m0tlag { height: 50%; order: 5; z-index: 2; }\",\".framer-lBj7M.framer-v-1mbwdgq .framer-m0tlag, .framer-lBj7M.framer-v-vvk3y .framer-1qzlpq3-container, .framer-lBj7M.framer-v-1xj1m48 .framer-1qzlpq3-container { order: 5; }\",\".framer-lBj7M.framer-v-1wm75jp .framer-7ey3yz { padding: 0px 0px 60px 0px; }\",\".framer-lBj7M.framer-v-1wm75jp .framer-orl2tr { flex: none; height: 44%; overflow: visible; z-index: 1; }\",\".framer-lBj7M.framer-v-1wm75jp .framer-1o45stq { padding: 70px 48px 0px 48px; }\",\".framer-lBj7M.framer-v-1wm75jp .framer-103p8pl-container, .framer-lBj7M.framer-v-1wm75jp .framer-1k5pf66-container, .framer-lBj7M.framer-v-1wm75jp .framer-1euibos-container, .framer-lBj7M.framer-v-1wm75jp .framer-f223yx-container, .framer-lBj7M.framer-v-1wm75jp .framer-1fnjejh-container, .framer-lBj7M.framer-v-1wm75jp .framer-xu18hm-container, .framer-lBj7M.framer-v-1r1wxks .framer-103p8pl-container, .framer-lBj7M.framer-v-1r1wxks .framer-1k5pf66-container, .framer-lBj7M.framer-v-1r1wxks .framer-1euibos-container, .framer-lBj7M.framer-v-1r1wxks .framer-f223yx-container, .framer-lBj7M.framer-v-1r1wxks .framer-1fnjejh-container, .framer-lBj7M.framer-v-1r1wxks .framer-xu18hm-container, .framer-lBj7M.framer-v-15of8qc .framer-103p8pl-container, .framer-lBj7M.framer-v-15of8qc .framer-1k5pf66-container, .framer-lBj7M.framer-v-15of8qc .framer-1euibos-container, .framer-lBj7M.framer-v-15of8qc .framer-f223yx-container, .framer-lBj7M.framer-v-15of8qc .framer-1fnjejh-container, .framer-lBj7M.framer-v-15of8qc .framer-xu18hm-container { height: var(--framer-aspect-ratio-supported, 186px); }\",\".framer-lBj7M.framer-v-1wm75jp .framer-3ou8cy { height: 94px; }\",\".framer-lBj7M.framer-v-1wm75jp .framer-ugir3d { height: 63%; width: 376px; }\",\".framer-lBj7M.framer-v-1r1wxks .framer-orl2tr { overflow: visible; z-index: 1; }\",\".framer-lBj7M.framer-v-1r1wxks .framer-ugir3d { width: 76%; }\",\".framer-lBj7M.framer-v-15of8qc .framer-7ey3yz { gap: 15px; padding: 0px 0px 20px 0px; }\",\".framer-lBj7M.framer-v-15of8qc .framer-orl2tr { flex: none; gap: 0px; height: 32%; overflow: visible; z-index: 1; }\",\".framer-lBj7M.framer-v-15of8qc .framer-1o45stq { height: 341%; }\",\".framer-lBj7M.framer-v-15of8qc .framer-ugir3d { width: 78%; }\",\".framer-lBj7M.framer-v-vvk3y .framer-1irq5ed-container, .framer-lBj7M.framer-v-1xj1m48 .framer-1irq5ed-container { order: 3; }\",\".framer-lBj7M.framer-v-vvk3y .framer-ohkcn6-container, .framer-lBj7M.framer-v-1xj1m48 .framer-ohkcn6-container, .framer-lBj7M.framer-v-1cuvd7m.hover .framer-m0tlag { order: 4; }\",\".framer-lBj7M.framer-v-vvk3y .framer-lblab9-container, .framer-lBj7M.framer-v-1xj1m48 .framer-lblab9-container, .framer-lBj7M.framer-v-1cuvd7m.hover .framer-nqnxyn { order: 6; }\",\".framer-lBj7M.framer-v-vvk3y .framer-q7wgjn-container, .framer-lBj7M.framer-v-1xj1m48 .framer-q7wgjn-container { order: 7; }\",\".framer-lBj7M.framer-v-vvk3y .framer-hpvhtf-container, .framer-lBj7M.framer-v-1xj1m48 .framer-hpvhtf-container { order: 9; }\",\".framer-lBj7M.framer-v-vvk3y .framer-5pj132-container, .framer-lBj7M.framer-v-1xj1m48 .framer-5pj132-container { order: 10; }\",\".framer-lBj7M.framer-v-vvk3y .framer-19quewf-container, .framer-lBj7M.framer-v-1xj1m48 .framer-19quewf-container { order: 11; }\",\".framer-lBj7M.framer-v-vvk3y .framer-12kbqr-container, .framer-lBj7M.framer-v-1xj1m48 .framer-12kbqr-container { order: 12; }\",\".framer-lBj7M.framer-v-vvk3y .framer-16mi4ig-container, .framer-lBj7M.framer-v-1xj1m48 .framer-16mi4ig-container { order: 13; }\",\".framer-lBj7M.framer-v-vvk3y .framer-rmfsne-container, .framer-lBj7M.framer-v-1xj1m48 .framer-rmfsne-container { order: 14; }\",\".framer-lBj7M.framer-v-vvk3y .framer-iuxp8j { min-height: unset; min-width: unset; order: 2; }\",\".framer-lBj7M.framer-v-vvk3y .framer-phxnv3 { height: 144px; min-height: unset; min-width: unset; order: 0; width: 144px; }\",\".framer-lBj7M.framer-v-vvk3y .framer-xhutve { height: 94px; width: 94px; }\",\".framer-lBj7M.framer-v-vvk3y .framer-1vaeyh3-container, .framer-lBj7M.framer-v-1xj1m48 .framer-1vaeyh3-container { height: 30px; }\",\".framer-lBj7M.framer-v-vvk3y .framer-1tweoak { order: 10; width: 12%; will-change: var(--framer-will-change-override, transform); }\",\".framer-lBj7M.framer-v-vvk3y .framer-1252nh4 { order: 11; will-change: var(--framer-will-change-override, transform); }\",\".framer-lBj7M.framer-v-1xj1m48 .framer-iuxp8j, .framer-lBj7M.framer-v-vvk3y.hover .framer-iuxp8j, .framer-lBj7M.framer-v-vvk3y.hover .framer-phxnv3, .framer-lBj7M.framer-v-1whbpxj.hover .framer-1g0652p { min-height: unset; min-width: unset; }\",\".framer-lBj7M.framer-v-1xj1m48 .framer-phxnv3 { min-height: unset; min-width: unset; order: 0; }\",\".framer-lBj7M.framer-v-1xj1m48 .framer-1tweoak { width: 12%; will-change: var(--framer-will-change-override, transform); }\",\".framer-lBj7M.framer-v-1xj1m48 .framer-1252nh4 { will-change: var(--framer-will-change-override, transform); }\",\".framer-lBj7M.framer-v-1whbpxj .framer-zp82ah { flex-direction: column; min-height: unset; min-width: unset; order: 6; }\",\".framer-lBj7M.framer-v-1whbpxj .framer-1qdq7td { height: 240px; order: 2; top: calc(57.14285714285716% - 240px / 2); }\",\".framer-lBj7M.framer-v-1whbpxj .framer-1g0652p { flex-direction: row; min-height: unset; min-width: unset; order: 4; }\",\".framer-lBj7M.framer-v-1whbpxj .framer-prjxqi { height: min-content; order: 0; padding: 48px; }\",\".framer-lBj7M.framer-v-1whbpxj .framer-12mg4hq { height: 240px; order: 3; top: calc(57.14285714285716% - 240px / 2); }\",\".framer-lBj7M.framer-v-1whbpxj .framer-jtf5xa { left: calc(50.14084507042256% - 451px / 2); order: 0; width: 451px; }\",\".framer-lBj7M.framer-v-1whbpxj .framer-191tvfz { left: calc(50.14084507042256% - 451px / 2); order: 1; width: 451px; }\",\".framer-lBj7M.framer-v-1kzer5o .framer-zp82ah { flex-direction: column; min-height: unset; min-width: unset; order: 8; }\",\".framer-lBj7M.framer-v-1kzer5o .framer-1qdq7td { bottom: -48px; height: unset; order: 2; top: -24px; }\",\".framer-lBj7M.framer-v-1kzer5o .framer-1g0652p { min-height: unset; min-width: unset; order: 4; }\",\".framer-lBj7M.framer-v-1kzer5o .framer-prjxqi { height: 132px; padding: 48px; width: 290px; }\",\".framer-lBj7M.framer-v-1kzer5o .framer-1fqg35u { height: var(--framer-aspect-ratio-supported, 36px); width: 194px; }\",\".framer-lBj7M.framer-v-1kzer5o .framer-12mg4hq { bottom: -48px; height: unset; order: 3; top: -24px; }\",\".framer-lBj7M.framer-v-1kzer5o .framer-jtf5xa { left: -48px; order: 0; right: -48px; width: unset; }\",\".framer-lBj7M.framer-v-1kzer5o .framer-191tvfz { left: -48px; order: 1; right: -48px; width: unset; }\",\".framer-lBj7M.framer-v-ytn5ix.hover .framer-123zaz0 { right: 24px; top: 36px; }\",\".framer-lBj7M.framer-v-ytn5ix.hover .framer-2t8xs7, .framer-lBj7M.framer-v-1iik29o.hover .framer-g7b8k4 { left: 24px; top: 24px; }\",\".framer-lBj7M.framer-v-1iik29o.hover .framer-zd4kpm-container { bottom: 24px; order: 3; }\",\".framer-lBj7M.framer-v-18awdm8.hover .framer-9cuy23 { height: unset; min-height: unset; }\",\".framer-lBj7M.framer-v-18awdm8.hover .framer-my4ct { left: 20px; min-height: unset; order: 1; top: 24px; width: 190px; }\",\".framer-lBj7M.framer-v-18awdm8.hover .framer-lwp9td { height: var(--framer-aspect-ratio-supported, 375px); }\",\".framer-lBj7M.framer-v-18awdm8.hover .framer-6ylikb { height: var(--framer-aspect-ratio-supported, 321px); left: unset; right: 20px; top: 48px; width: 163px; }\",\".framer-lBj7M.framer-v-1cuvd7m.hover .framer-1fchxyi-container { height: 220px; width: 220px; }\",\".framer-lBj7M.framer-v-1cuvd7m.hover .framer-145n8dd { aspect-ratio: unset; bottom: 24px; height: unset; left: 24px; right: 24px; top: 24px; width: unset; }\",\".framer-lBj7M.framer-v-1whbpxj.hover .framer-zp82ah { min-height: unset; min-width: unset; order: 7; }\",\".framer-lBj7M.framer-v-1whbpxj.hover .framer-1qdq7td { top: -480px; }\",\".framer-lBj7M.framer-v-1whbpxj.hover .framer-12mg4hq { bottom: -480px; top: unset; }\",\".framer-lBj7M.framer-v-1whbpxj.hover .framer-jtf5xa { left: unset; right: -1200px; }\",\".framer-lBj7M.framer-v-1whbpxj.hover .framer-191tvfz { left: -1200px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 376\n * @framerIntrinsicWidth 600\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"tCsCDvLlm\":{\"layout\":[\"fixed\",\"fixed\"]},\"hm2rPFvxz\":{\"layout\":[\"fixed\",\"fixed\"]},\"SAuEYBV7b\":{\"layout\":[\"fixed\",\"fixed\"]},\"nHGZSKaaX\":{\"layout\":[\"fixed\",\"fixed\"]},\"hUt5QE3vn\":{\"layout\":[\"fixed\",\"fixed\"]},\"ZyDqlx_yY\":{\"layout\":[\"fixed\",\"fixed\"]},\"fStkfT74b\":{\"layout\":[\"fixed\",\"fixed\"]},\"pO7H6NYBJ\":{\"layout\":[\"fixed\",\"fixed\"]},\"x8w1pzgt4\":{\"layout\":[\"fixed\",\"fixed\"]},\"AOf5VMlDC\":{\"layout\":[\"fixed\",\"fixed\"]},\"EgNsUJzu3\":{\"layout\":[\"fixed\",\"fixed\"]},\"B5Mm4vGS5\":{\"layout\":[\"fixed\",\"fixed\"]},\"tAONlVjC_\":{\"layout\":[\"fixed\",\"fixed\"]},\"ylrzzaBvs\":{\"layout\":[\"fixed\",\"fixed\"]},\"MPEW7o8G_\":{\"layout\":[\"fixed\",\"fixed\"]},\"pnd4OclQw\":{\"layout\":[\"fixed\",\"fixed\"]},\"alRyP7Rd7\":{\"layout\":[\"fixed\",\"fixed\"]},\"CSiZyi2A_\":{\"layout\":[\"fixed\",\"fixed\"]},\"QW_8rrwIK\":{\"layout\":[\"fixed\",\"fixed\"]},\"KEkNo6c6M\":{\"layout\":[\"fixed\",\"fixed\"]},\"zVjxFTHs2\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"UehprujG9\":\"hoverRotation\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerxTBHZsT14=withCSS(Component,css,\"framer-lBj7M\");export default FramerxTBHZsT14;FramerxTBHZsT14.displayName=\"Features/Features Card 2\";FramerxTBHZsT14.defaultProps={height:376,width:600};addPropertyControls(FramerxTBHZsT14,{variant:{options:[\"vHpl50Bnr\",\"tCsCDvLlm\",\"hm2rPFvxz\",\"SAuEYBV7b\",\"nHGZSKaaX\",\"hUt5QE3vn\",\"ZyDqlx_yY\",\"fStkfT74b\",\"pO7H6NYBJ\",\"x8w1pzgt4\",\"AOf5VMlDC\",\"EgNsUJzu3\",\"B5Mm4vGS5\",\"tAONlVjC_\",\"ylrzzaBvs\"],optionTitles:[\"Custom Web Design\",\"Custom Web Design - Mobile\",\"E-Commerce Solutions\",\"E-Commerce Solutions - Mobile\",\"Mobile App Development\",\"Mobile App Development - Mobile\",\"SEO Optimization\",\"SEO Optimization - Mobile\",\"UX/UI Design\",\"UX/UI Design - Tablet\",\"UX/UI Design - Mobile\",\"Website Maintenance\",\"Website Maintenance - Mobile\",\"Branding & Identity\",\"Branding & Identity - Mobile\"],title:\"Variant\",type:ControlType.Enum},UehprujG9:{defaultValue:0,title:\"Hover Rotation\",type:ControlType.Number,unit:\"\\xb0\"}});addFonts(FramerxTBHZsT14,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Plus Jakarta Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/AJVGEOXGB2ALQKAZEK2LDOLCVBCMCOIT/LDEP4R7SNNABDEG433DCQGM2A7YCBHLU/OWABOLGBAKFVLPZ756IYS6EKYKU54K3I.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/BkDpl4ghaqvMi1btKFyG2tdbec.woff2\",weight:\"300\"},{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/zAMK70AQRFSShJgUiaR5IiIhgzk.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/IETjvc5qzUaRoaruDpPSwCUM8.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/oLCoaT3ioA0fHdJnWR9W6k7NY.woff2\",weight:\"300\"},{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/Sj0PCHQSBjFmEp6NBWg6FNaKc.woff2\",weight:\"300\"},{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/v2q8JTTTs7McDMSEhnxAIBqd0.woff2\",weight:\"300\"},{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/H4TfENUY1rh8R9UaSD6vngjJP3M.woff2\",weight:\"300\"},{family:\"Plus Jakarta Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TX2N2Q6ZO2LBO34H72H5RVJTBQFGU4GV/ZICVNTLTT4V7CCIJPWNY363N6LIP2AET/OUUAK2X2MEGEKC6ULA4CFSBY4PE5EGPV.woff2\",weight:\"400\"}]},...SVGPathShimmerFonts,...FeaturesMaintenanceIconFonts,...PhosphorFonts,...FeaturesCardFonts,...GlobeFonts,...FeaturesSEOIconsFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerxTBHZsT14\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"UehprujG9\\\":\\\"hoverRotation\\\"}\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"tCsCDvLlm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"hm2rPFvxz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"SAuEYBV7b\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"nHGZSKaaX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"hUt5QE3vn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ZyDqlx_yY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"fStkfT74b\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"pO7H6NYBJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"x8w1pzgt4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"AOf5VMlDC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"EgNsUJzu3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"B5Mm4vGS5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"tAONlVjC_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ylrzzaBvs\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"MPEW7o8G_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"pnd4OclQw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"alRyP7Rd7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"CSiZyi2A_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"QW_8rrwIK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"KEkNo6c6M\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"zVjxFTHs2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"600\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"376\",\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./xTBHZsT14.map", "// Generated by Framer (ee40135)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"B060CSaLH\",\"I2igylVdh\",\"Pk11ONu0i\",\"jByU8TuwC\"];const serializationHash=\"framer-vceko\";const variantClassNames={B060CSaLH:\"framer-v-10g8iez\",I2igylVdh:\"framer-v-1f3nmfj\",jByU8TuwC:\"framer-v-1v9anc\",Pk11ONu0i:\"framer-v-10j5i3i\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={duration:0,type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"monthly on-click\":\"Pk11ONu0i\",\"monthly primary\":\"B060CSaLH\",\"yearly on-click\":\"jByU8TuwC\",yearly:\"I2igylVdh\"};const getProps=({click2,height,id,width,...props})=>{return{...props,IE6sfFa7G:click2??props.IE6sfFa7G,variant:humanReadableVariantMap[props.variant]??props.variant??\"B060CSaLH\"};};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,IE6sfFa7G,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"B060CSaLH\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap14qqny9=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(IE6sfFa7G){const res=await IE6sfFa7G(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"I2igylVdh\",\"jByU8TuwC\"].includes(baseVariant))return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-10g8iez\",className,classNames),\"data-framer-name\":\"monthly primary\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"B060CSaLH\",onTap:onTap14qqny9,ref:refBinding,style:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6,...style},variants:{jByU8TuwC:{backgroundColor:\"var(--token-781d11f5-bf5d-4746-9aec-b794f5ae2c6e, rgb(216, 223, 229))\"},Pk11ONu0i:{backgroundColor:\"var(--token-781d11f5-bf5d-4746-9aec-b794f5ae2c6e, rgb(216, 223, 229))\"}},...addPropertyOverrides({I2igylVdh:{\"data-framer-name\":\"yearly\"},jByU8TuwC:{\"data-framer-name\":\"yearly on-click\"},Pk11ONu0i:{\"data-framer-name\":\"monthly on-click\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(14, 28, 41)))\"},children:\"Monthly \"})}),className:\"framer-ivsrcn\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"lDZdTAyvG\",style:{\"--extracted-r6o4lv\":\"var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(14, 28, 41))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.65},variants:{I2igylVdh:{\"--extracted-r6o4lv\":\"var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(22, 16, 30))\"},jByU8TuwC:{\"--extracted-r6o4lv\":\"var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(22, 16, 30))\",opacity:1},Pk11ONu0i:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({I2igylVdh:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(22, 16, 30)))\"},children:\"Yearly\"})}),fonts:[\"Inter\"]},jByU8TuwC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(22, 16, 30)))\"},children:\"Yearly\"})}),fonts:[\"Inter\"]}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-m34sff\",\"data-framer-name\":\"offer\",layoutDependency:layoutDependency,layoutId:\"l3646k_c7\",style:{backgroundColor:\"var(--token-aeb15aaf-db9c-447f-8383-662c7fda9c5a, rgba(240, 248, 255, 0.9))\",borderBottomLeftRadius:192,borderBottomRightRadius:192,borderTopLeftRadius:192,borderTopRightRadius:192},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(22, 16, 30)))\"},children:\"Save 20% \"})}),className:\"framer-m10s20\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"PyOuUJ7Tk\",style:{\"--extracted-r6o4lv\":\"var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(22, 16, 30))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-vceko.framer-7nybqv, .framer-vceko .framer-7nybqv { display: block; }\",\".framer-vceko.framer-10g8iez { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 38px; justify-content: center; overflow: visible; padding: 8px 10px 8px 10px; position: relative; width: min-content; }\",\".framer-vceko .framer-ivsrcn { flex: none; height: auto; pointer-events: none; position: relative; white-space: pre; width: auto; }\",\".framer-vceko .framer-m34sff { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 4px 10px 4px 10px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-vceko .framer-m10s20 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 38\n * @framerIntrinsicWidth 78\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"I2igylVdh\":{\"layout\":[\"auto\",\"fixed\"]},\"Pk11ONu0i\":{\"layout\":[\"auto\",\"fixed\"]},\"jByU8TuwC\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"IE6sfFa7G\":\"click2\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerWZ0xCCJS_=withCSS(Component,css,\"framer-vceko\");export default FramerWZ0xCCJS_;FramerWZ0xCCJS_.displayName=\"monthly & yearly 2\";FramerWZ0xCCJS_.defaultProps={height:38,width:78};addPropertyControls(FramerWZ0xCCJS_,{variant:{options:[\"B060CSaLH\",\"I2igylVdh\",\"Pk11ONu0i\",\"jByU8TuwC\"],optionTitles:[\"monthly primary\",\"yearly\",\"monthly on-click\",\"yearly on-click\"],title:\"Variant\",type:ControlType.Enum},IE6sfFa7G:{title:\"Click 2\",type:ControlType.EventHandler}});addFonts(FramerWZ0xCCJS_,[{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerWZ0xCCJS_\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"I2igylVdh\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"Pk11ONu0i\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"jByU8TuwC\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"38\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"IE6sfFa7G\\\":\\\"click2\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"78\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./WZ0xCCJS_.map", "// Generated by Framer (629c622)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import MonthlyYearly2 from\"https://framerusercontent.com/modules/T5xJQCT3Kv95NTGAbR6s/zprn280GjGmqpinBvFHJ/WZ0xCCJS_.js\";const MonthlyYearly2Fonts=getFonts(MonthlyYearly2);const MotionDivWithFX=withFX(motion.div);const PhosphorFonts=getFonts(Phosphor);const cycleOrder=[\"br6WLEtiq\",\"j4z9vEjI0\",\"JSOvWLQGA\",\"VNqZzVRyQ\"];const serializationHash=\"framer-eZQxp\";const variantClassNames={br6WLEtiq:\"framer-v-thszsq\",j4z9vEjI0:\"framer-v-1cdlbdp\",JSOvWLQGA:\"framer-v-9uvfiv\",VNqZzVRyQ:\"framer-v-bdr4lh\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:60};const transition2={bounce:.2,delay:0,duration:.6,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:60};const transition3={bounce:.2,delay:.1,duration:.6,type:\"spring\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:60};const transition4={bounce:.2,delay:.2,duration:.6,type:\"spring\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:60};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={\"mobile v1\":\"JSOvWLQGA\",\"mobile v2\":\"VNqZzVRyQ\",monthly:\"br6WLEtiq\",yearly:\"j4z9vEjI0\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"br6WLEtiq\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"br6WLEtiq\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const IE6sfFa7G1uhviix=activeVariantCallback(async(...args)=>{setVariant(\"br6WLEtiq\");});const IE6sfFa7Gw02hxw=activeVariantCallback(async(...args)=>{setVariant(\"JSOvWLQGA\");});const IE6sfFa7Go24f4y=activeVariantCallback(async(...args)=>{setVariant(\"j4z9vEjI0\");});const IE6sfFa7Gm2ugen=activeVariantCallback(async(...args)=>{setVariant(\"VNqZzVRyQ\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"j4z9vEjI0\",\"JSOvWLQGA\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"j4z9vEjI0\",\"JSOvWLQGA\",\"VNqZzVRyQ\"].includes(baseVariant))return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-thszsq\",className,classNames),\"data-framer-name\":\"monthly\",layoutDependency:layoutDependency,layoutId:\"br6WLEtiq\",ref:refBinding,style:{...style},...addPropertyOverrides({j4z9vEjI0:{\"data-framer-name\":\"yearly\"},JSOvWLQGA:{\"data-framer-name\":\"mobile v1\"},VNqZzVRyQ:{\"data-framer-name\":\"mobile v2\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-97tus4\",\"data-framer-name\":\"top bar\",layoutDependency:layoutDependency,layoutId:\"BdciavrTx\",style:{backgroundColor:\"var(--token-37699ec8-6f41-4363-9a8a-9e76d6ead784, rgb(246, 251, 255))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 0.7065919983928324px 0.7065919983928324px -0.5833333333333333px rgba(16, 49, 77, 0.21), 0px 1.8065619053231785px 1.8065619053231785px -1.1666666666666665px rgba(16, 49, 77, 0.2), 0px 3.6217592146567767px 3.6217592146567767px -1.75px rgba(16, 49, 77, 0.2), 0px 6.8655999097303715px 6.8655999097303715px -2.333333333333333px rgba(16, 49, 77, 0.18), 0px 13.646761411524492px 13.646761411524492px -2.916666666666667px rgba(16, 49, 77, 0.16), 0px 30px 30px -3.5px rgba(16, 49, 77, 0.09)\"},...addPropertyOverrides({VNqZzVRyQ:{__framer__styleAppearEffectEnabled:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,width:`calc(min(${componentViewport?.width||\"100vw\"}, 340px) - 8px)`,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-10prse-container\",layoutDependency:layoutDependency,layoutId:\"ghbtleFfe-container\",nodeId:\"ghbtleFfe\",rendersWithMotion:true,scopeId:\"Y_U1JhsT5\",children:/*#__PURE__*/_jsx(MonthlyYearly2,{height:\"100%\",id:\"ghbtleFfe\",IE6sfFa7G:IE6sfFa7G1uhviix,layoutId:\"ghbtleFfe\",style:{width:\"100%\"},variant:\"Pk11ONu0i\",width:\"100%\",...addPropertyOverrides({VNqZzVRyQ:{IE6sfFa7G:IE6sfFa7Gw02hxw,variant:\"B060CSaLH\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,width:`calc(min(${componentViewport?.width||\"100vw\"}, 340px) - 8px)`,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1njdqri-container\",layoutDependency:layoutDependency,layoutId:\"EmStRfmmd-container\",nodeId:\"EmStRfmmd\",rendersWithMotion:true,scopeId:\"Y_U1JhsT5\",children:/*#__PURE__*/_jsx(MonthlyYearly2,{height:\"100%\",id:\"EmStRfmmd\",IE6sfFa7G:IE6sfFa7Go24f4y,layoutId:\"EmStRfmmd\",style:{width:\"100%\"},variant:\"I2igylVdh\",width:\"100%\",...addPropertyOverrides({VNqZzVRyQ:{IE6sfFa7G:IE6sfFa7Gm2ugen,variant:\"jByU8TuwC\"}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-52ph64\",\"data-framer-name\":\"cards container\",layoutDependency:layoutDependency,layoutId:\"P2zRYRbBZ\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1hyouoe\",\"data-framer-name\":\"pricing card 3\",layoutDependency:layoutDependency,layoutId:\"EO84OxUIH\",style:{backgroundColor:\"var(--token-37699ec8-6f41-4363-9a8a-9e76d6ead784, rgb(246, 251, 255))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"0px 0.7065919983928324px 0.7065919983928324px -0.29166666666666663px rgba(16, 49, 77, 0.05), 0px 1.8065619053231785px 1.8065619053231785px -0.5833333333333333px rgba(16, 49, 77, 0.06), 0px 3.6217592146567767px 3.6217592146567767px -0.875px rgba(16, 49, 77, 0.06), 0px 6.8655999097303715px 6.8655999097303715px -1.1666666666666665px rgba(16, 49, 77, 0.06), 0px 13.646761411524492px 13.646761411524492px -1.4583333333333335px rgba(16, 49, 77, 0.07), 0px 30px 30px -1.75px rgba(16, 49, 77, 0.1)\"},...addPropertyOverrides({JSOvWLQGA:{__framer__styleAppearEffectEnabled:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-aqygsz\",\"data-framer-name\":\"plan name\",layoutDependency:layoutDependency,layoutId:\"Sr5mf7tvk\",children:isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(22, 16, 30)))\"},children:\"Starter\"})}),className:\"framer-1t6k7g0\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"uBP3pWptC\",style:{\"--extracted-r6o4lv\":\"var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(22, 16, 30))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1c8vsvc\",\"data-framer-name\":\"price\",layoutDependency:layoutDependency,layoutId:\"gmF6JWBLx\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(22, 16, 30)))\"},children:\"Free\"})}),className:\"framer-el6zbv\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"CiSCeRrnZ\",style:{\"--extracted-a0htzi\":\"var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(22, 16, 30))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({VNqZzVRyQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(22, 16, 30)))\"},children:\"Fee\"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"qINkHja2w\"},motionChild:true,nodeId:\"IILlR4l9M\",openInNewTab:false,scopeId:\"Y_U1JhsT5\",smoothScroll:true,...addPropertyOverrides({j4z9vEjI0:{href:{webPageId:\"V0vU3Ed7Q\"}},JSOvWLQGA:{href:{webPageId:\"V0vU3Ed7Q\"}},VNqZzVRyQ:{href:{webPageId:\"rWatvPU3l\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1tsrxwv framer-v5zw7l\",\"data-framer-name\":\"Buttons / Button\",layoutDependency:layoutDependency,layoutId:\"IILlR4l9M\",style:{background:\"linear-gradient(125deg, rgba(94, 120, 143, 0.5) -4%, rgba(240, 248, 255, 0.9) 100%)\",borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30,boxShadow:\"0px 1px 2px 0px rgba(0, 0, 0, 0.25), 0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.18), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.16), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.06)\"},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1f5mtt3\",\"data-framer-name\":\"icon & text\",layoutDependency:layoutDependency,layoutId:\"O2skYcZby\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"160%\"},children:\"Start Training\"})}),className:\"framer-4gsw1o\",\"data-framer-name\":\"Button\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"O7pGxG8Wk\",verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({j4z9vEjI0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"160%\"},children:\"Get Career Opportunities\"})})},JSOvWLQGA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"160%\"},children:\"Get Career Opportunities\"})})}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1e3p9jh\",\"data-border\":true,\"data-framer-name\":\"divider\",layoutDependency:layoutDependency,layoutId:\"zdLRoryG4\",style:{\"--border-bottom-width\":\"3px\",\"--border-color\":\"var(--token-c630804f-5e50-4893-b680-27b64d932590, rgba(94, 120, 143, 0.5))\",\"--border-left-width\":\"3px\",\"--border-right-width\":\"3px\",\"--border-style\":\"dotted\",\"--border-top-width\":\"3px\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,opacity:.5}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jt4jhm\",\"data-framer-name\":\"benefits\",layoutDependency:layoutDependency,layoutId:\"y9Q7NThzP\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(22, 16, 30)))\"},children:\"For Individuals who want to test Rivlon\"})}),className:\"framer-1fcxp5h\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"gmWUoUeIN\",style:{\"--extracted-r6o4lv\":\"var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(22, 16, 30))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({j4z9vEjI0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(22, 16, 30)))\"},children:\"For young professionals and Job seekers\"})})},JSOvWLQGA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(22, 16, 30)))\"},children:\"For young professionals and Job seekers\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-92mlbx\",\"data-framer-name\":\"point\",layoutDependency:layoutDependency,layoutId:\"lnau0HkXb\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-f7h180-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"CRvtJyxEq-container\",nodeId:\"CRvtJyxEq\",rendersWithMotion:true,scopeId:\"Y_U1JhsT5\",style:{opacity:.5},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(14, 28, 41))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Check\",id:\"CRvtJyxEq\",layoutId:\"CRvtJyxEq\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"160%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(22, 16, 30)))\"},children:\"10 AI coaching sessions per month\"})}),className:\"framer-14pnvrp\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"JOmKQmFAu\",style:{\"--extracted-r6o4lv\":\"var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(22, 16, 30))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.8},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({j4z9vEjI0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"160%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(22, 16, 30)))\"},children:\"Daily Opportunities on Whatsapp\"})})},JSOvWLQGA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"160%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(22, 16, 30)))\"},children:\"Daily Opportunities on Whatsapp\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9z9u5u\",\"data-framer-name\":\"point\",layoutDependency:layoutDependency,layoutId:\"g0uAVBPQx\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1h8gzvw-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Lb44uRLQA-container\",nodeId:\"Lb44uRLQA\",rendersWithMotion:true,scopeId:\"Y_U1JhsT5\",style:{opacity:.5},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(14, 28, 41))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Check\",id:\"Lb44uRLQA\",layoutId:\"Lb44uRLQA\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"160%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(22, 16, 30)))\"},children:\"1 career track (up to 10 courses)\"})}),className:\"framer-144ne1q\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"pETmkBR1L\",style:{\"--extracted-r6o4lv\":\"var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(22, 16, 30))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.8},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({j4z9vEjI0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"160%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(22, 16, 30)))\"},children:\"Free AI career coaching\"})})},JSOvWLQGA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"160%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(22, 16, 30)))\"},children:\"Free AI career coaching\"})})}},baseVariant,gestureVariant)})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1y9bzdd\",\"data-framer-name\":\"point\",layoutDependency:layoutDependency,layoutId:\"yv0nrDJVx\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1vtuuvm-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"dsKUCBB4T-container\",nodeId:\"dsKUCBB4T\",rendersWithMotion:true,scopeId:\"Y_U1JhsT5\",style:{opacity:.5},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(14, 28, 41))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Check\",id:\"dsKUCBB4T\",layoutId:\"dsKUCBB4T\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"160%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(22, 16, 30)))\"},children:\"Unlimited Performance tests\"})}),className:\"framer-zywnze\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Z4dN7DJkD\",style:{\"--extracted-r6o4lv\":\"var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(22, 16, 30))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.8},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-iemukm\",\"data-framer-name\":\"point\",layoutDependency:layoutDependency,layoutId:\"l2OXrPHLI\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1rpoac-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"hpNy1fYJX-container\",nodeId:\"hpNy1fYJX\",rendersWithMotion:true,scopeId:\"Y_U1JhsT5\",style:{opacity:.5},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(14, 28, 41))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Check\",id:\"hpNy1fYJX\",layoutId:\"hpNy1fYJX\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"160%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(22, 16, 30)))\"},children:\"one-on-one consultation (1-time)\"})}),className:\"framer-bl0eob\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"vxrFKb64C\",style:{\"--extracted-r6o4lv\":\"var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(22, 16, 30))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.8},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({j4z9vEjI0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"160%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(22, 16, 30)))\"},children:\"Access to +1 million career courses\"})})},JSOvWLQGA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"160%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(22, 16, 30)))\"},children:\"Access to +1 million career courses\"})})}},baseVariant,gestureVariant)})]})]})]}),isDisplayed()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1n4fs2z\",\"data-framer-name\":\"pricing card 4\",layoutDependency:layoutDependency,layoutId:\"Tx_E23n11\",style:{backgroundColor:\"var(--token-37699ec8-6f41-4363-9a8a-9e76d6ead784, rgb(246, 251, 255))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"0px 0.7065919983928324px 0.7065919983928324px -0.29166666666666663px rgba(16, 49, 77, 0.05), 0px 1.8065619053231785px 1.8065619053231785px -0.5833333333333333px rgba(16, 49, 77, 0.06), 0px 3.6217592146567767px 3.6217592146567767px -0.875px rgba(16, 49, 77, 0.06), 0px 6.8655999097303715px 6.8655999097303715px -1.1666666666666665px rgba(16, 49, 77, 0.06), 0px 13.646761411524492px 13.646761411524492px -1.4583333333333335px rgba(16, 49, 77, 0.07), 0px 30px 30px -1.75px rgba(16, 49, 77, 0.1)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14m2gnr\",\"data-framer-name\":\"plan name\",layoutDependency:layoutDependency,layoutId:\"HgUtpqaCf\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(22, 16, 30)))\"},children:\"Pro\"})}),className:\"framer-v1gok1\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"v3nYaRM1Z\",style:{\"--extracted-r6o4lv\":\"var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(22, 16, 30))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19azwvi\",\"data-border\":true,\"data-framer-name\":\"tag\",layoutDependency:layoutDependency,layoutId:\"YQZDAalXZ\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-c630804f-5e50-4893-b680-27b64d932590, rgba(94, 120, 143, 0.5))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(255, 255, 255, 0)\",borderBottomLeftRadius:22,borderBottomRightRadius:22,borderTopLeftRadius:22,borderTopRightRadius:22,boxShadow:\"0px 1px 8px 0px rgba(69, 127, 173, 0.5)\"},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-vof82z-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"AKlePTO68-container\",nodeId:\"AKlePTO68\",rendersWithMotion:true,scopeId:\"Y_U1JhsT5\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(0, 0, 0)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Fire\",id:\"AKlePTO68\",layoutId:\"AKlePTO68\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-16859c7d-1a37-4c0b-8cfe-b6f58e9d38df, rgb(26, 29, 33)))\"},children:\"Popular\"})}),className:\"framer-1cux39e\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"WlBcEGHM2\",style:{\"--extracted-r6o4lv\":\"var(--token-16859c7d-1a37-4c0b-8cfe-b6f58e9d38df, rgb(26, 29, 33))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19ux8v1\",\"data-framer-name\":\"price\",layoutDependency:layoutDependency,layoutId:\"x93dg7Ggf\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(22, 16, 30)))\"},children:\"$10\"})}),className:\"framer-132mbmk\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"xAw2jx1K9\",style:{\"--extracted-a0htzi\":\"var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(22, 16, 30))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({VNqZzVRyQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(22, 16, 30)))\"},children:\"$8\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(22, 16, 30)))\"},children:\"/month\"})}),className:\"framer-eiywq0\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"WGvQoZDSn\",style:{\"--extracted-r6o4lv\":\"var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(22, 16, 30))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.8},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"CMyme3XxZ\"},motionChild:true,nodeId:\"b2ZTRurXf\",openInNewTab:false,scopeId:\"Y_U1JhsT5\",smoothScroll:true,...addPropertyOverrides({VNqZzVRyQ:{href:{webPageId:\"uQXgkI85Z\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1byefgq framer-v5zw7l\",\"data-framer-name\":\"Buttons / Button\",layoutDependency:layoutDependency,layoutId:\"b2ZTRurXf\",style:{background:\"linear-gradient(125deg, rgb(37, 38, 38) -4%, rgb(54, 65, 77) 100%)\",borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30,boxShadow:\"inset 0px 1px 2px 0px rgb(24, 27, 31), 0px 0.7065919983928324px 0.7065919983928324px -0.5833333333333333px rgba(15, 28, 38, 0.35), 0px 1.8065619053231785px 1.8065619053231785px -1.1666666666666665px rgba(15, 28, 38, 0.34), 0px 3.6217592146567767px 3.6217592146567767px -1.75px rgba(15, 28, 38, 0.33), 0px 6.8655999097303715px 6.8655999097303715px -2.333333333333333px rgba(15, 28, 38, 0.3), 0px 13.646761411524492px 13.646761411524492px -2.916666666666667px rgba(15, 28, 38, 0.26), 0px 30px 30px -3.5px rgba(15, 28, 38, 0.15)\"},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-14v6drg\",\"data-framer-name\":\"icon & text\",layoutDependency:layoutDependency,layoutId:\"M07Eptcr0\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d4c0a0e6-8fba-45bc-8f6f-215e608cd0df, rgb(255, 255, 255)))\"},children:\"Start Training\"})}),className:\"framer-18smi9g\",\"data-framer-name\":\"Button\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"ytCHcb4_S\",style:{\"--extracted-r6o4lv\":\"var(--token-d4c0a0e6-8fba-45bc-8f6f-215e608cd0df, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-yqrbs5\",\"data-border\":true,\"data-framer-name\":\"divider\",layoutDependency:layoutDependency,layoutId:\"B30sS94Qj\",style:{\"--border-bottom-width\":\"3px\",\"--border-color\":\"var(--token-c630804f-5e50-4893-b680-27b64d932590, rgba(94, 120, 143, 0.5))\",\"--border-left-width\":\"3px\",\"--border-right-width\":\"3px\",\"--border-style\":\"dotted\",\"--border-top-width\":\"3px\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,opacity:.5}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4x0zly\",\"data-framer-name\":\"benefits\",layoutDependency:layoutDependency,layoutId:\"Di05gn1IE\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(22, 16, 30)))\"},children:\"For Professionals who want to Grow\"})}),className:\"framer-1ndw400\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"lVEH63HjX\",style:{\"--extracted-r6o4lv\":\"var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(22, 16, 30))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10aiyle\",\"data-framer-name\":\"point\",layoutDependency:layoutDependency,layoutId:\"mXylAvGlV\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1jzg4l6-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"smvQVhkqY-container\",nodeId:\"smvQVhkqY\",rendersWithMotion:true,scopeId:\"Y_U1JhsT5\",style:{opacity:.5},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(14, 28, 41))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Check\",id:\"smvQVhkqY\",layoutId:\"smvQVhkqY\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"160%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(22, 16, 30)))\"},children:\"Unlimited AI coaching sessions\"})}),className:\"framer-1w522v4\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"w3KEfQVl8\",style:{\"--extracted-r6o4lv\":\"var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(22, 16, 30))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.8},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-yndgql\",\"data-framer-name\":\"point\",layoutDependency:layoutDependency,layoutId:\"Mut7pteAR\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-18ip24z-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Fl_iYgfAq-container\",nodeId:\"Fl_iYgfAq\",rendersWithMotion:true,scopeId:\"Y_U1JhsT5\",style:{opacity:.5},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(14, 28, 41))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Check\",id:\"Fl_iYgfAq\",layoutId:\"Fl_iYgfAq\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"160%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(22, 16, 30)))\"},children:\"100k+ career tracks (1M+ courses)\"})}),className:\"framer-ieiolr\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"URYXcztdU\",style:{\"--extracted-r6o4lv\":\"var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(22, 16, 30))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.8},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zd7yno\",\"data-framer-name\":\"point\",layoutDependency:layoutDependency,layoutId:\"lsggl8Ffr\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-zpo0o3-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"XsW9hfrz9-container\",nodeId:\"XsW9hfrz9\",rendersWithMotion:true,scopeId:\"Y_U1JhsT5\",style:{opacity:.5},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(14, 28, 41))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Check\",id:\"XsW9hfrz9\",layoutId:\"XsW9hfrz9\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"160%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(22, 16, 30)))\"},children:\"Unlimited Performance tests\"})}),className:\"framer-1ldo65r\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ulvpfYGFc\",style:{\"--extracted-r6o4lv\":\"var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(22, 16, 30))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.8},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-190vppy\",\"data-framer-name\":\"point\",layoutDependency:layoutDependency,layoutId:\"l9niiYmS8\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-4bwfu7-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"KJV_b4RbM-container\",nodeId:\"KJV_b4RbM\",rendersWithMotion:true,scopeId:\"Y_U1JhsT5\",style:{opacity:.5},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(14, 28, 41))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Check\",id:\"KJV_b4RbM\",layoutId:\"KJV_b4RbM\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"160%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(22, 16, 30)))\"},children:\"one-on-one consultation (2 times/month)\"})}),className:\"framer-1rld7lt\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"zuzWGZIPf\",style:{\"--extracted-r6o4lv\":\"var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(22, 16, 30))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.8},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"t4q9UaJFs\"},motionChild:true,nodeId:\"D_aAtKMzN\",scopeId:\"Y_U1JhsT5\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-35b9n1 framer-v5zw7l\",\"data-framer-name\":\"section\",layoutDependency:layoutDependency,layoutId:\"D_aAtKMzN\",style:{backgroundColor:\"rgba(216, 223, 230, 0.7)\",borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1q5hoem-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"yJI0ZaFak-container\",nodeId:\"yJI0ZaFak\",rendersWithMotion:true,scopeId:\"Y_U1JhsT5\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(14, 28, 41))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Student\",id:\"yJI0ZaFak\",layoutId:\"yJI0ZaFak\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(22, 16, 30)))\"},children:\"Verified NYSC students get 50% off \"})}),className:\"framer-plcvc2\",fonts:[\"FS;Plus Jakarta Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"D9vmqzlHA\",style:{\"--extracted-r6o4lv\":\"var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(22, 16, 30))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1dpahc-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"BEdPlKwnN-container\",nodeId:\"BEdPlKwnN\",rendersWithMotion:true,scopeId:\"Y_U1JhsT5\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(14, 28, 41))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowRight\",id:\"BEdPlKwnN\",layoutId:\"BEdPlKwnN\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})]})})]}),isDisplayed()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-4iv1js\",\"data-framer-name\":\"pricing card 5\",layoutDependency:layoutDependency,layoutId:\"jlRs0VEnG\",style:{backgroundColor:\"var(--token-37699ec8-6f41-4363-9a8a-9e76d6ead784, rgb(246, 251, 255))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"0px 0.7065919983928324px 0.7065919983928324px -0.29166666666666663px rgba(16, 49, 77, 0.05), 0px 1.8065619053231785px 1.8065619053231785px -0.5833333333333333px rgba(16, 49, 77, 0.06), 0px 3.6217592146567767px 3.6217592146567767px -0.875px rgba(16, 49, 77, 0.06), 0px 6.8655999097303715px 6.8655999097303715px -1.1666666666666665px rgba(16, 49, 77, 0.06), 0px 13.646761411524492px 13.646761411524492px -1.4583333333333335px rgba(16, 49, 77, 0.07), 0px 30px 30px -1.75px rgba(16, 49, 77, 0.1)\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-15heho4\",\"data-framer-name\":\"plan name\",layoutDependency:layoutDependency,layoutId:\"qu2q8ypQl\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(22, 16, 30)))\"},children:\"Business\"})}),className:\"framer-xdsw75\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"pQxSO9O3i\",style:{\"--extracted-r6o4lv\":\"var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(22, 16, 30))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-l6cag0\",\"data-framer-name\":\"price\",layoutDependency:layoutDependency,layoutId:\"VMuWPDX5T\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(22, 16, 30)))\"},children:\"$15\"})}),className:\"framer-1qdd2jj\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"t6QMH1JPt\",style:{\"--extracted-a0htzi\":\"var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(22, 16, 30))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({VNqZzVRyQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(22, 16, 30)))\"},children:\"$12\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(22, 16, 30)))\"},children:\"/employee/month\"})}),className:\"framer-rmwdnk\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"e_64A4iHf\",style:{\"--extracted-r6o4lv\":\"var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(22, 16, 30))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.8},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"izO2s9bef\"},motionChild:true,nodeId:\"O73Z3HaY7\",openInNewTab:false,scopeId:\"Y_U1JhsT5\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1rr27ja framer-v5zw7l\",\"data-framer-name\":\"Buttons / Button\",layoutDependency:layoutDependency,layoutId:\"O73Z3HaY7\",style:{background:\"linear-gradient(125deg, rgba(94, 120, 143, 0.5) -4%, rgba(240, 248, 255, 0.9) 100%)\",borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30,boxShadow:\"0px 1px 2px 0px rgba(0, 0, 0, 0.25), 0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.18), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.16), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.06)\"},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fn9b19\",\"data-framer-name\":\"icon & text\",layoutDependency:layoutDependency,layoutId:\"tdW25hK4h\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"160%\"},children:\"Start Training\"})}),className:\"framer-11yedw3\",\"data-framer-name\":\"Button\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"t17pZBaF9\",verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-g56tj6\",\"data-border\":true,\"data-framer-name\":\"divider\",layoutDependency:layoutDependency,layoutId:\"UYRm7tl3S\",style:{\"--border-bottom-width\":\"3px\",\"--border-color\":\"var(--token-c630804f-5e50-4893-b680-27b64d932590, rgba(94, 120, 143, 0.5))\",\"--border-left-width\":\"3px\",\"--border-right-width\":\"3px\",\"--border-style\":\"dotted\",\"--border-top-width\":\"3px\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,opacity:.5}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wxs548\",\"data-framer-name\":\"benefits\",layoutDependency:layoutDependency,layoutId:\"dlilhaDHn\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(22, 16, 30)))\"},children:\"For Startups and Enterprises\"})}),className:\"framer-j82c58\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"DekWKAbx3\",style:{\"--extracted-r6o4lv\":\"var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(22, 16, 30))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-dddt53\",\"data-framer-name\":\"point\",layoutDependency:layoutDependency,layoutId:\"O5mpw6eRu\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-11i1mk8-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"G0e1B3eKh-container\",nodeId:\"G0e1B3eKh\",rendersWithMotion:true,scopeId:\"Y_U1JhsT5\",style:{opacity:.5},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(14, 28, 41))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Check\",id:\"G0e1B3eKh\",layoutId:\"G0e1B3eKh\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"160%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(22, 16, 30)))\"},children:\"Unlimited AI coaching sessions\"})}),className:\"framer-mw1ees\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"XJi43aIT_\",style:{\"--extracted-r6o4lv\":\"var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(22, 16, 30))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.8},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1s9g72\",\"data-framer-name\":\"point\",layoutDependency:layoutDependency,layoutId:\"feojWMIcO\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1lq4l1b-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"yeDDVPJL8-container\",nodeId:\"yeDDVPJL8\",rendersWithMotion:true,scopeId:\"Y_U1JhsT5\",style:{opacity:.5},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(14, 28, 41))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Check\",id:\"yeDDVPJL8\",layoutId:\"yeDDVPJL8\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"160%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(22, 16, 30)))\"},children:\"100k+ career tracks & 1M+ courses\"})}),className:\"framer-ts3flt\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ygrY0ayYo\",style:{\"--extracted-r6o4lv\":\"var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(22, 16, 30))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.8},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1dkt71n\",\"data-framer-name\":\"point\",layoutDependency:layoutDependency,layoutId:\"QlHvKpTWL\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1cxgvbo-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"BllcfwxuV-container\",nodeId:\"BllcfwxuV\",rendersWithMotion:true,scopeId:\"Y_U1JhsT5\",style:{opacity:.5},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(14, 28, 41))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Check\",id:\"BllcfwxuV\",layoutId:\"BllcfwxuV\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"160%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(22, 16, 30)))\"},children:\"Unlimited Performance tests\"})}),className:\"framer-wvxxu1\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"s7e419kaG\",style:{\"--extracted-r6o4lv\":\"var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(22, 16, 30))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.8},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11ql78i\",\"data-framer-name\":\"point\",layoutDependency:layoutDependency,layoutId:\"I_QS0OaS4\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-185l08p-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"WB1tB2S3f-container\",nodeId:\"WB1tB2S3f\",rendersWithMotion:true,scopeId:\"Y_U1JhsT5\",style:{opacity:.5},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(14, 28, 41))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Check\",id:\"WB1tB2S3f\",layoutId:\"WB1tB2S3f\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"160%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(22, 16, 30)))\"},children:\"one-on-one consultation (custom)\"})}),className:\"framer-1rqtbwb\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"pKJBaZK89\",style:{\"--extracted-r6o4lv\":\"var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(22, 16, 30))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.8},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18p52g2\",\"data-framer-name\":\"point\",layoutDependency:layoutDependency,layoutId:\"LjNXMB4uU\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-10shkah-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"eRvlGqe5A-container\",nodeId:\"eRvlGqe5A\",rendersWithMotion:true,scopeId:\"Y_U1JhsT5\",style:{opacity:.5},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(14, 28, 41))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Check\",id:\"eRvlGqe5A\",layoutId:\"eRvlGqe5A\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"160%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(22, 16, 30)))\"},children:\"Unlimited employees\"})}),className:\"framer-1p4uoye\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"yn8JKQPNQ\",style:{\"--extracted-r6o4lv\":\"var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(22, 16, 30))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.8},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-h9s6uw\",\"data-framer-name\":\"point\",layoutDependency:layoutDependency,layoutId:\"NaZKeTICF\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-iiqkcw-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"sJQk0cpwq-container\",nodeId:\"sJQk0cpwq\",rendersWithMotion:true,scopeId:\"Y_U1JhsT5\",style:{opacity:.5},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(14, 28, 41))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Check\",id:\"sJQk0cpwq\",layoutId:\"sJQk0cpwq\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"160%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(22, 16, 30)))\"},children:\"Performance insights & analytics\"})}),className:\"framer-1ptqrml\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"f1Nvpeb4s\",style:{\"--extracted-r6o4lv\":\"var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(22, 16, 30))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.8},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ujva8h\",\"data-framer-name\":\"point\",layoutDependency:layoutDependency,layoutId:\"PNRoVhNxB\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-yh8w3-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"OTKNVJrAe-container\",nodeId:\"OTKNVJrAe\",rendersWithMotion:true,scopeId:\"Y_U1JhsT5\",style:{opacity:.5},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(14, 28, 41))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Check\",id:\"OTKNVJrAe\",layoutId:\"OTKNVJrAe\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"160%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(22, 16, 30)))\"},children:\"HRIS integrations\"})}),className:\"framer-1eak0pi\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"tLLslcD6h\",style:{\"--extracted-r6o4lv\":\"var(--token-6396e7f2-0645-4f69-9a36-80e94f8ee015, rgb(22, 16, 30))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.8},verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-eZQxp.framer-v5zw7l, .framer-eZQxp .framer-v5zw7l { display: block; }\",\".framer-eZQxp.framer-thszsq { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1120px; }\",\".framer-eZQxp .framer-97tus4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; height: min-content; justify-content: space-between; max-width: 340px; overflow: hidden; padding: 4px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-eZQxp .framer-10prse-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-eZQxp .framer-1njdqri-container { flex: 1.5 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-eZQxp .framer-52ph64 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-eZQxp .framer-1hyouoe, .framer-eZQxp .framer-1n4fs2z, .framer-eZQxp .framer-4iv1js { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 440px; min-width: 280px; overflow: hidden; padding: 32px 24px 32px 24px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-eZQxp .framer-aqygsz, .framer-eZQxp .framer-14m2gnr, .framer-eZQxp .framer-15heho4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-eZQxp .framer-1t6k7g0, .framer-eZQxp .framer-el6zbv, .framer-eZQxp .framer-4gsw1o, .framer-eZQxp .framer-v1gok1, .framer-eZQxp .framer-1cux39e, .framer-eZQxp .framer-132mbmk, .framer-eZQxp .framer-eiywq0, .framer-eZQxp .framer-18smi9g, .framer-eZQxp .framer-plcvc2, .framer-eZQxp .framer-xdsw75, .framer-eZQxp .framer-1qdd2jj, .framer-eZQxp .framer-rmwdnk, .framer-eZQxp .framer-11yedw3 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-eZQxp .framer-1c8vsvc, .framer-eZQxp .framer-19ux8v1, .framer-eZQxp .framer-l6cag0 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-eZQxp .framer-1tsrxwv, .framer-eZQxp .framer-1byefgq, .framer-eZQxp .framer-1rr27ja { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: hidden; padding: 12px 24px 12px 24px; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 3; }\",\".framer-eZQxp .framer-1f5mtt3, .framer-eZQxp .framer-14v6drg, .framer-eZQxp .framer-1fn9b19 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-eZQxp .framer-1e3p9jh, .framer-eZQxp .framer-yqrbs5, .framer-eZQxp .framer-g56tj6 { flex: none; height: 2px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-eZQxp .framer-jt4jhm, .framer-eZQxp .framer-4x0zly, .framer-eZQxp .framer-wxs548 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-eZQxp .framer-1fcxp5h, .framer-eZQxp .framer-1ndw400, .framer-eZQxp .framer-j82c58 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-eZQxp .framer-92mlbx, .framer-eZQxp .framer-9z9u5u, .framer-eZQxp .framer-1y9bzdd, .framer-eZQxp .framer-iemukm, .framer-eZQxp .framer-10aiyle, .framer-eZQxp .framer-yndgql, .framer-eZQxp .framer-zd7yno, .framer-eZQxp .framer-190vppy, .framer-eZQxp .framer-dddt53, .framer-eZQxp .framer-1s9g72, .framer-eZQxp .framer-1dkt71n, .framer-eZQxp .framer-11ql78i, .framer-eZQxp .framer-18p52g2, .framer-eZQxp .framer-h9s6uw, .framer-eZQxp .framer-1ujva8h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-eZQxp .framer-f7h180-container, .framer-eZQxp .framer-1h8gzvw-container, .framer-eZQxp .framer-1vtuuvm-container, .framer-eZQxp .framer-1rpoac-container, .framer-eZQxp .framer-1jzg4l6-container, .framer-eZQxp .framer-18ip24z-container, .framer-eZQxp .framer-zpo0o3-container, .framer-eZQxp .framer-4bwfu7-container, .framer-eZQxp .framer-11i1mk8-container, .framer-eZQxp .framer-1lq4l1b-container, .framer-eZQxp .framer-1cxgvbo-container, .framer-eZQxp .framer-185l08p-container, .framer-eZQxp .framer-10shkah-container, .framer-eZQxp .framer-iiqkcw-container, .framer-eZQxp .framer-yh8w3-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 18px); position: relative; width: 15px; }\",\".framer-eZQxp .framer-14pnvrp, .framer-eZQxp .framer-144ne1q, .framer-eZQxp .framer-zywnze, .framer-eZQxp .framer-bl0eob, .framer-eZQxp .framer-1w522v4, .framer-eZQxp .framer-ieiolr, .framer-eZQxp .framer-1ldo65r, .framer-eZQxp .framer-1rld7lt, .framer-eZQxp .framer-mw1ees, .framer-eZQxp .framer-ts3flt, .framer-eZQxp .framer-wvxxu1, .framer-eZQxp .framer-1rqtbwb, .framer-eZQxp .framer-1p4uoye, .framer-eZQxp .framer-1ptqrml, .framer-eZQxp .framer-1eak0pi { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-eZQxp .framer-19azwvi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: hidden; padding: 5px 10px 6px 10px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-eZQxp .framer-vof82z-container { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-eZQxp .framer-35b9n1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 36px; justify-content: center; overflow: hidden; padding: 16px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-eZQxp .framer-1q5hoem-container, .framer-eZQxp .framer-1dpahc-container { flex: none; height: 19px; position: relative; width: 19px; }\",\".framer-eZQxp.framer-v-1cdlbdp .framer-aqygsz, .framer-eZQxp.framer-v-9uvfiv .framer-aqygsz { min-height: 24px; }\",\".framer-eZQxp.framer-v-1cdlbdp .framer-1tsrxwv { width: 63%; }\",\".framer-eZQxp.framer-v-9uvfiv .framer-1tsrxwv { width: 70%; }\",'.framer-eZQxp[data-border=\"true\"]::after, .framer-eZQxp [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 639\n * @framerIntrinsicWidth 1120\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"j4z9vEjI0\":{\"layout\":[\"fixed\",\"auto\"]},\"JSOvWLQGA\":{\"layout\":[\"fixed\",\"auto\"]},\"VNqZzVRyQ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerY_U1JhsT5=withCSS(Component,css,\"framer-eZQxp\");export default FramerY_U1JhsT5;FramerY_U1JhsT5.displayName=\"pricing 3\";FramerY_U1JhsT5.defaultProps={height:639,width:1120};addPropertyControls(FramerY_U1JhsT5,{variant:{options:[\"br6WLEtiq\",\"j4z9vEjI0\",\"JSOvWLQGA\",\"VNqZzVRyQ\"],optionTitles:[\"monthly\",\"yearly\",\"mobile v1\",\"mobile v2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerY_U1JhsT5,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{family:\"Plus Jakarta Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TX2N2Q6ZO2LBO34H72H5RVJTBQFGU4GV/ZICVNTLTT4V7CCIJPWNY363N6LIP2AET/OUUAK2X2MEGEKC6ULA4CFSBY4PE5EGPV.woff2\",weight:\"400\"}]},...MonthlyYearly2Fonts,...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerY_U1JhsT5\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1120\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"639\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"j4z9vEjI0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"JSOvWLQGA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"VNqZzVRyQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Y_U1JhsT5.map"],
  "mappings": "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",
  "names": ["formatNumberWithCommas", "number", "AnimatedCounter", "from", "to", "duration", "fontFamily", "fontSize", "color", "lineHeight", "count", "useMotionValue", "rounded", "useTransform", "latest", "ref", "pe", "inView", "useInView", "ue", "animate", "p", "motion", "addPropertyControls", "ControlType", "Counter_default", "MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "currentTarget", "RenderTarget", "isCanvas", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "fe", "frame", "resize", "contentSize", "child", "index", "ref", "p", "LayoutGroup", "q", "isInView", "useInView", "i", "childIndex", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "ue", "playOrPause", "hidden", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "fontStore", "fonts", "css", "className", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "title", "width", "props", "_ref", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "ovJvdDBRs", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "RichText", "css", "FramerIheBVLkdP", "withCSS", "IheBVLkdP_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "subtitle", "title", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "yeAnKbEUZ", "WuF2iG84P", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "SVG", "RichText", "css", "FramerW7oLCU4_B", "withCSS", "Utils_Component_Message_ZVoG_default", "addPropertyControls", "ControlType", "addFonts", "Mode", "SVGType", "SVGPathShimmer", "mode", "layer", "svgType", "svgImage", "svgFile", "baseColor", "shimmerColor", "length", "transition", "direction", "loopMode", "loopDelay", "trigger", "replay", "style", "isCanvas", "RenderTarget", "hasChildren", "j", "reverse", "loop", "shapeTransition", "svgContent", "setSvgContent", "ye", "isLoading", "setIsLoading", "loadingError", "setLoadingError", "currentAnimation", "setCurrentAnimation", "ref", "pe", "isInView", "useInView", "progressMotionValue", "useMotionValue", "scale", "setScale", "padding", "setPadding", "originalSize", "setOriginalSize", "containerRef", "hasSvg", "runAnimation", "animate", "latest", "ue", "fetchSVG", "url", "content", "loadAndValidateSVG", "measureSvg", "svg", "container", "updateScale", "containerWidth", "containerHeight", "newScale", "newPadding", "resizeObserver", "svgElement", "svgContents", "svgViewbox", "viewboxWidth", "viewboxHeight", "start", "end", "parsedSvgData", "se", "doc", "path", "width", "height", "viewBox", "pathD", "stroke", "strokeWidth", "strokeLinecap", "strokeLinejoin", "parsedLayerData", "firstChild", "getFirstChild", "svgChild", "attributes", "element", "splitAndReplace", "viewBoxWidth", "viewBoxHeight", "opacity", "useTransform", "value", "transformOpacity", "strokeDashoffsetTransform", "p", "motion", "q", "Utils_Component_Message_ZVoG_default", "addPropertyControls", "ControlType", "props", "slots", "child", "string", "text", "error", "input", "lowerThreshold", "upperThreshold", "fontStore", "fonts", "css", "className", "PhosphorFonts", "getFonts", "Icon", "Phosphor1Controls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "icon", "id", "title", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "xdkOQuJsM", "NMnyt2y6k", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "RichText", "css", "FramerlkRgZeUOs", "withCSS", "lkRgZeUOs_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "PhosphorFonts", "getFonts", "Icon", "PhosphorControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "color", "height", "icon", "iconColor", "id", "width", "props", "_ref", "_ref1", "_ref2", "_humanReadableVariantMap_props_variant", "_ref3", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "EoRzbrjsT", "Nq_Rs3OxD", "SJfRTtovi", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "ComponentViewportProvider", "css", "FramerBUykMJh4m", "withCSS", "BUykMJh4m_default", "addPropertyControls", "ControlType", "addFonts", "PhosphorFonts", "getFonts", "Icon", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "u", "RichText", "ComponentViewportProvider", "Icon", "css", "FramerPANkcS6iS", "withCSS", "PANkcS6iS_default", "addFonts", "PhosphorFonts", "t", "e", "r", "s", "n", "a", "o", "h", "f", "c", "l", "p", "m", "u", "i", "window", "phenomenon_default", "a", "o", "t", "i", "f", "r", "l", "c", "n", "A", "g", "v", "s", "d", "u", "m", "x", "U", "e", "D", "_", "y", "phenomenon_default", "Globe", "props", "background", "baseColor", "glowColor", "isDraggable", "dragOptions", "speed", "theta", "phi", "dark", "diffuse", "maxSamples", "mapBrightness", "markerSize", "markerArray", "markerColor", "scale", "alignment", "maxWidth", "offset", "offsetX", "offsetY", "stiffness", "damping", "mass", "canvasRef", "pe", "pointerInteracting", "pointerInteractionMovement", "isCanvas", "useIsStaticRenderer", "r", "useSpring", "fadeMask", "ue", "phiValue", "width", "onResize", "window", "baseConvert", "convertRGB", "glowConvert", "markerConvert", "globe", "D", "marker", "state", "p", "flexStyles", "e", "delta", "dp", "dpOffset", "dpDrag", "addPropertyControls", "ControlType", "color", "Color", "PhosphorFonts", "getFonts", "Icon", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText", "ComponentViewportProvider", "css", "FramersAN7MCV5h", "withCSS", "sAN7MCV5h_default", "addPropertyControls", "ControlType", "addFonts", "PhosphorFonts", "getFonts", "Icon", "PhosphorControls", "getPropertyControls", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "icon", "id", "width", "props", "_ref", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "tpuqJVjrB", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "ComponentViewportProvider", "Icon", "css", "FramerWD2WFdvXQ", "withCSS", "WD2WFdvXQ_default", "addPropertyControls", "PhosphorControls", "addFonts", "PhosphorFonts", "FeaturesUiComponentChartFonts", "getFonts", "sAN7MCV5h_default", "FeaturesMaintenanceIconFonts", "WD2WFdvXQ_default", "PhosphorFonts", "Icon", "FeaturesCardFonts", "PANkcS6iS_default", "GlobeFonts", "Globe", "FeaturesSEOIconsFonts", "BUykMJh4m_default", "SmartComponentScopedContainerWithFX", "withFX", "SmartComponentScopedContainer", "MotionDivWithFX", "motion", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "transformTemplate2", "transition2", "animation", "animation1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "hoverRotation", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "UehprujG9", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "isDisplayed8", "isDisplayed9", "isDisplayed10", "isDisplayed11", "LayoutGroup", "u", "ComponentViewportProvider", "Image2", "getLoadingLazyAtYPosition", "SVG", "RichText", "css", "FramerRAiJrmR1B", "withCSS", "RAiJrmR1B_default", "addPropertyControls", "ControlType", "addFonts", "PhosphorFonts", "getFonts", "Icon", "PhosphorControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "color", "height", "icon", "iconColor", "id", "width", "props", "_ref", "_ref1", "_ref2", "_humanReadableVariantMap_props_variant", "_ref3", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "EoRzbrjsT", "Nq_Rs3OxD", "SJfRTtovi", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "ComponentViewportProvider", "css", "FramerBUykMJh4m", "withCSS", "BUykMJh4m_default", "addPropertyControls", "ControlType", "addFonts", "PhosphorFonts", "getFonts", "Icon", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "u", "RichText", "ComponentViewportProvider", "Icon", "css", "FramerPANkcS6iS", "withCSS", "PANkcS6iS_default", "addFonts", "PhosphorFonts", "PhosphorFonts", "getFonts", "Icon", "PhosphorControls", "getPropertyControls", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "icon", "id", "width", "props", "_ref", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "tpuqJVjrB", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "ComponentViewportProvider", "Icon", "css", "FramerWD2WFdvXQ", "withCSS", "WD2WFdvXQ_default", "addPropertyControls", "PhosphorControls", "addFonts", "PhosphorFonts", "SVGPathShimmerFonts", "getFonts", "SVGPathShimmer", "FeaturesMaintenanceIconFonts", "WD2WFdvXQ_default", "PhosphorFonts", "Icon", "FeaturesCardFonts", "PANkcS6iS_default", "GlobeFonts", "Globe", "FeaturesSEOIconsFonts", "BUykMJh4m_default", "SmartComponentScopedContainerWithFX", "withFX", "SmartComponentScopedContainer", "MotionDivWithFX", "motion", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "transformTemplate2", "transition2", "animation", "animation1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "hoverRotation", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "UehprujG9", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "isDisplayed8", "isDisplayed9", "isDisplayed10", "LayoutGroup", "u", "ComponentViewportProvider", "Image2", "getLoadingLazyAtYPosition", "SVG", "RichText", "css", "FramerxTBHZsT14", "withCSS", "xTBHZsT14_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click2", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "IE6sfFa7G", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap14qqny9", "args", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "u", "RichText", "css", "FramerWZ0xCCJS_", "withCSS", "WZ0xCCJS_default", "addPropertyControls", "ControlType", "addFonts", "MonthlyYearly2Fonts", "getFonts", "WZ0xCCJS_default", "MotionDivWithFX", "withFX", "motion", "PhosphorFonts", "Icon", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "animation1", "transition3", "animation2", "transition4", "animation3", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "IE6sfFa7G1uhviix", "args", "IE6sfFa7Gw02hxw", "IE6sfFa7Go24f4y", "IE6sfFa7Gm2ugen", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText", "Link", "css", "FramerY_U1JhsT5", "withCSS", "Y_U1JhsT5_default", "addPropertyControls", "ControlType", "addFonts"]
}
