{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/LHz3bw67SqHRmnCKTlE6/Ticker.js", "ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js", "ssg:https://framerusercontent.com/modules/qpjhCcDm4G1NbFAlpMKV/mpBjgPy3BrkirNCk9tKH/AnimatedNumberCounter_Prod.js", "ssg:https://framerusercontent.com/modules/BXgrPlchHoiedtS0peDB/LeFmzj3iuw00d5eYQ1K8/VgAyvmOBq.js", "ssg:https://framerusercontent.com/modules/HOdHs6YWynG4ZGOuQpyK/ippyqoiG597byGlTjOS4/W6ylrvnyo.js", "ssg:https://framerusercontent.com/modules/HaVAWjlYfK3jBw19D3xI/c0uzTCyHXnKFtL8sgZO7/augiA20Il.js", "ssg:https://framerusercontent.com/modules/f871VLawgcRhYrO11vwh/ukVMkhFbpOlXIMyMsx1k/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,useCallback,cloneElement,startTransition}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;startTransition(()=>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);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}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]);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\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget,RenderTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius,useRenderTarget}from\"https://framerusercontent.com/modules/G4IfyjvwmaeSBpdb4TWu/OIjZRBmWDcIE2B6qgG1j/index.js\";// https://framer.com/m/framer/default-utils.js@^0.45.0\nimport{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));const defaultVideo=\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\";// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const isPlayingRef=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{// default props\nsrcType=\"URL\",srcUrl,srcFile=\"\",posterEnabled=false,controls=false,playing=true,loop=true,muted=true,playsinline=true,restartOnEnter=false,objectFit=\"cover\",backgroundColor=\"rgba(0,0,0,0)\",radius=0,volume=25,startTime:startTimeProp=0,poster,playing:playingProp,progress,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const renderTarget=useRenderTarget();const isStaticRenderer=isOnCanvas||renderTarget===RenderTarget.export;const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isStaticRenderer won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isStaticRenderer?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isStaticRenderer?true:useInView(videoRef);const isCloseToViewport=isStaticRenderer?false:useInView(videoRef,{margin:\"10%\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress,isPlaying}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isStaticRenderer)return;if(autoplayBehavior===\"on-viewport\")return;if(playingProp)play();else pause();},[autoplayBehavior,playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isStaticRenderer)return;// this also explicitly retries playing for videos that play on-mount, which could fail if they're not muted for example\nif(isInViewport&&playingProp&&autoplayBehavior!==\"no-autoplay\")play();if(autoplayBehavior!==\"on-viewport\")return;pause();},[autoplayBehavior,isInViewport,playingProp]);useEffect(()=>{if(!isOnCanvas||poster||posterEnabled||startTime||!videoRef.current)return;// forces a poster to show up when the video is in an iframe; this is needed when `poster` changes\nvideoRef.current.currentTime=.01;},[posterEnabled,poster,startTime]);/**\n     * The Video component has some effects that sync the video element with props\n     * like `startTime`, `progress`, etc. React calls these effects whenever these\n     * props change. However, it also calls them on the first mount, and this is\n     * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n     * the video was hydrated, the initial `useEffect` call will reset the video\n     * state. To avoid this, we use this flag.\n     */const isMountedAndReadyForProgressChanges=useRef(false);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges.current){isMountedAndReadyForProgressChanges.current=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress??0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue??0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime??0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isStaticRenderer\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume??0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime??0)*.01);if(// when the component updates (e.g. only srcFile/url changes), and the video was already playing, keep playing\nisPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport)play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked?.(e),onPause:e=>onPause?.(e),onPlay:e=>onPlay?.(e),onEnded:e=>onEnd?.(e),autoPlay:isPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport,preload:isPlaying.current?\"auto\":isStaticRenderer&&!poster?\"metadata\":autoplayBehavior!==\"on-mount\"&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled&&!srcFile&&srcUrl===defaultVideo?\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\":posterEnabled&&poster?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isStaticRenderer?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",defaultValue:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",hidden(props){return props.srcType===\"Upload\";}},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},...borderRadiusControl,posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\"Image\",hidden:({posterEnabled})=>!posterEnabled,description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted,defaultValue:25},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"112\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "import{jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useEffect,useState,useRef}from\"react\";import{motion,useMotionValue,animate,useInView}from\"framer-motion\";/**\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n *\n * @framerDisableUnlink\n */export default function AnimatedNumberCounter(props){const{mode,start,end,value,decimals,commas,color,animation}=props;const isCanvas=RenderTarget.current()===RenderTarget.canvas;const MotionTag=motion[props.tag];const isDefault=mode==\"default\";const initialValue=isDefault?start:value;const transition=isDefault?animation.transition:props.transition;const formatNumber=number=>{let numberString=number.toFixed(decimals);if(commas){numberString=numberString.replace(/\\B(?=(\\d{3})+(?!\\d))/g,\",\");}return numberString;};const[number,setNumber]=useState(initialValue);const[currentAnimation,setCurrentAnimation]=useState(null);const ref=useRef(null);const isInView=useInView(ref,{once:!props.animation.replay,amount:\"some\"});const motionValue=useMotionValue(value);const runAnimation=(from,to)=>{if(!isCanvas){if(currentAnimation){currentAnimation.stop();}setCurrentAnimation(animate(from,to,{...transition,onUpdate:latest=>{setNumber(latest);}}));}};useEffect(()=>{if(isDefault&&animation.trigger==\"appear\"){runAnimation(start,end);}},[]);useEffect(()=>{if(isDefault&&animation.trigger==\"layerInView\"){if(isInView){runAnimation(start,end);}else{if(currentAnimation){currentAnimation.stop();}setNumber(start);}}},[isInView]);useEffect(()=>{if(!isDefault){runAnimation(number,value);}},[value]);return /*#__PURE__*/_jsxs(MotionTag,{ref:ref,style:{userSelect:props.userSelect?\"auto\":\"none\",fontVariantNumeric:props.monospace?\"tabular-nums\":undefined,margin:0,...color.mode==\"solid\"?{color:color.color}:{WebkitBackgroundClip:\"text\",WebkitTextFillColor:\"transparent\",backgroundImage:`linear-gradient(${color.angle}deg, ${color.startColor}, ${color.endColor})`},...props.font,...props.style},children:[props.prefix,formatNumber(isCanvas?initialValue:number),props.suffix]});}AnimatedNumberCounter.displayName=\"Animated Number Counter\";addPropertyControls(AnimatedNumberCounter,{mode:{type:ControlType.Enum,options:[\"default\",\"variants\"],optionTitles:[\"Default\",\"Variants\"],displaySegmentedControl:true},value:{type:ControlType.Number,defaultValue:0,hidden:props=>props.mode!==\"variants\"},start:{type:ControlType.Number,defaultValue:0,hidden:props=>props.mode!==\"default\"},end:{type:ControlType.Number,defaultValue:100,hidden:props=>props.mode!==\"default\"},animation:{type:ControlType.Object,icon:\"effect\",hidden:props=>props.mode!==\"default\",controls:{trigger:{type:ControlType.Enum,defaultValue:\"layerInView\",options:[\"appear\",\"layerInView\"],optionTitles:[\"Appear\",\"Layer in View\"],displaySegmentedControl:true,segmentedControlDirection:\"vertical\"},replay:{type:ControlType.Boolean,defaultValue:true,hidden(props){return props.trigger!==\"layerInView\";}},transition:{type:ControlType.Transition,defaultValue:{type:\"spring\",duration:1,bounce:0}}}},transition:{type:ControlType.Transition,defaultValue:{type:\"spring\",duration:1,bounce:0},hidden:props=>props.mode!==\"variants\"},decimals:{type:ControlType.Enum,defaultValue:0,options:[0,1,2,3],optionTitles:[\"Off\",\"1\",\"2\",\"3\"],displaySegmentedControl:true},commas:{type:ControlType.Boolean,defaultValue:true},font:{type:\"font\",controls:\"extended\",defaultFontType:\"sans-serif\",defaultValue:{fontSize:16,lineHeight:1}},color:{type:ControlType.Object,controls:{mode:{type:ControlType.Enum,defaultValue:\"solid\",options:[\"solid\",\"gradient\"],optionTitles:[\"Solid\",\"Gradient\"],displaySegmentedControl:true},color:{type:ControlType.Color,defaultValue:\"#000\",hidden:props=>props.mode!==\"solid\"},startColor:{type:ControlType.Color,defaultValue:\"#000\",hidden:props=>props.mode!==\"gradient\"},endColor:{type:ControlType.Color,defaultValue:\"#FFF\",hidden:props=>props.mode!==\"gradient\"},angle:{type:ControlType.Number,defaultValue:180,min:-360,max:360,unit:\"\\xb0\",hidden:props=>props.mode!==\"gradient\"}}},prefix:{type:ControlType.String,placeholder:\"Prefix\"},suffix:{type:ControlType.String,placeholder:\"Suffix\"},userSelect:{type:ControlType.Boolean,defaultValue:true},tag:{type:ControlType.Enum,defaultValue:\"p\",displaySegmentedControl:true,options:[\"h1\",\"h2\",\"h3\",\"p\"],optionTitles:[\"H1\",\"H2\",\"H3\",\"P\"]},monospace:{type:ControlType.Boolean,defaultValue:false,description:\"More components at [Framer University](https://frameruni.link/cc).\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"AnimatedNumberCounter\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"\",\"framerSupportedLayoutHeight\":\"any\",\"framerSupportedLayoutWidth\":\"any\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./AnimatedNumberCounter_Prod.map", "// Generated by Framer (915daba)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion}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 enabledGestures={IJRXoY58B:{hover:true},K7rxHEOrK:{hover:true},TCDx5VVsk:{hover:true},z6UOyMM__:{hover:true}};const cycleOrder=[\"K7rxHEOrK\",\"JSD4x9ZCm\",\"z6UOyMM__\",\"XPJBJD3WK\",\"IJRXoY58B\",\"TCDx5VVsk\",\"PDOjitQaH\",\"SLycgFcGL\"];const serializationHash=\"framer-6lE2D\";const variantClassNames={IJRXoY58B:\"framer-v-11s5o9r\",JSD4x9ZCm:\"framer-v-16a2wtx\",K7rxHEOrK:\"framer-v-3ztc1b\",PDOjitQaH:\"framer-v-1dgc8s6\",SLycgFcGL:\"framer-v-1jqkoq0\",TCDx5VVsk:\"framer-v-158f70t\",XPJBJD3WK:\"framer-v-25v33l\",z6UOyMM__:\"framer-v-5xy246\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Default - Active\":\"JSD4x9ZCm\",\"Ghost - Active\":\"PDOjitQaH\",\"Line - Active\":\"SLycgFcGL\",\"Secondary - Active\":\"XPJBJD3WK\",Default:\"K7rxHEOrK\",Ghost:\"TCDx5VVsk\",Line:\"IJRXoY58B\",Secondary:\"z6UOyMM__\"};const getProps=({answer,height,id,question,width,...props})=>{return{...props,h1heBG4Sg:answer??props.h1heBG4Sg??\"Yes, you can cancel your subscription at any time directly from your account settings.\",uiuh9eI1i:question??props.uiuh9eI1i??\"Can I cancel my subscription at any time?\",variant:humanReadableVariantMap[props.variant]??props.variant??\"K7rxHEOrK\"};};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,uiuh9eI1i,h1heBG4Sg,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"K7rxHEOrK\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1oowyap=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"JSD4x9ZCm\");});const onTap1z10qkq=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"K7rxHEOrK\");});const onTape10id6=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"XPJBJD3WK\");});const onTapq9q1m5=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"z6UOyMM__\");});const onTapzio44j=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"SLycgFcGL\");});const onTap1gz8ate=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"PDOjitQaH\");});const onTap1fnxl7k=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"TCDx5VVsk\");});const onTap180naun=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"IJRXoY58B\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"JSD4x9ZCm\",\"XPJBJD3WK\",\"PDOjitQaH\",\"SLycgFcGL\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-3ztc1b\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"K7rxHEOrK\",onTap:onTap1oowyap,ref:ref??ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(48, 48, 48, 0.1)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-b5c62a71-77a1-42e5-bcdd-0d4c1275643b, rgb(255, 255, 255))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,boxShadow:\"inset 0px -0.5px 0px 0px rgba(0, 0, 0, 0.12), 0px 1px 4px -0.5px rgba(0, 0, 0, 0.1)\",...style},variants:{\"IJRXoY58B-hover\":{\"--border-bottom-width\":\"1.5px\",\"--border-color\":\"var(--token-368703de-4a5f-4bd1-ac7a-cd4ade1c1148, rgba(48, 48, 48, 0.16))\"},\"K7rxHEOrK-hover\":{backgroundColor:\"var(--token-b79f619a-2b43-4fd2-8103-f0e7cdde5721, rgb(249, 249, 249))\"},\"TCDx5VVsk-hover\":{backgroundColor:\"var(--token-d374bee8-16ef-40fb-b46b-135634db2b3c, rgba(48, 48, 48, 0.05))\"},\"z6UOyMM__-hover\":{backgroundColor:\"var(--token-d374bee8-16ef-40fb-b46b-135634db2b3c, rgba(48, 48, 48, 0.05))\"},IJRXoY58B:{\"--border-color\":\"var(--token-8a2c7487-cfb6-4eac-9328-a6ed46e07c06, rgba(48, 48, 48, 0.1))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(48, 48, 48, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,boxShadow:\"none\"},PDOjitQaH:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-cab84973-b902-45a1-b20c-027bc6012493, rgba(48, 48, 48, 0.03))\",boxShadow:\"none\"},SLycgFcGL:{\"--border-color\":\"var(--token-8a2c7487-cfb6-4eac-9328-a6ed46e07c06, rgba(48, 48, 48, 0.1))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(48, 48, 48, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,boxShadow:\"none\"},TCDx5VVsk:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(48, 48, 48, 0)\",boxShadow:\"none\"},XPJBJD3WK:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-cab84973-b902-45a1-b20c-027bc6012493, rgba(48, 48, 48, 0.03))\",boxShadow:\"none\"},z6UOyMM__:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-cab84973-b902-45a1-b20c-027bc6012493, rgba(48, 48, 48, 0.03))\",boxShadow:\"none\"}},...addPropertyOverrides({\"IJRXoY58B-hover\":{\"data-framer-name\":undefined},\"K7rxHEOrK-hover\":{\"data-framer-name\":undefined},\"TCDx5VVsk-hover\":{\"data-framer-name\":undefined},\"z6UOyMM__-hover\":{\"data-framer-name\":undefined},IJRXoY58B:{\"data-framer-name\":\"Line\",onTap:onTapzio44j},JSD4x9ZCm:{\"data-framer-name\":\"Default - Active\",onTap:onTap1z10qkq},PDOjitQaH:{\"data-framer-name\":\"Ghost - Active\",onTap:onTap1fnxl7k},SLycgFcGL:{\"data-framer-name\":\"Line - Active\",onTap:onTap180naun},TCDx5VVsk:{\"data-framer-name\":\"Ghost\",onTap:onTap1gz8ate},XPJBJD3WK:{\"data-framer-name\":\"Secondary - Active\",onTap:onTapq9q1m5},z6UOyMM__:{\"data-framer-name\":\"Secondary\",onTap:onTape10id6}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nh3mel\",layoutDependency:layoutDependency,layoutId:\"iulKcQdGP\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO09wZW4gUnVuZGUgU2VtaWJvbGQ=\",\"--framer-font-family\":'\"Open Runde Semibold\", \"Open Runde Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c3e4741f-c2b3-4d0b-8b90-76e3b1fc9bd9, rgb(23, 23, 23)))\"},children:\"Can I cancel my subscription at any time?\"})}),className:\"framer-tia4ju\",fonts:[\"CUSTOM;Open Runde Semibold\"],layoutDependency:layoutDependency,layoutId:\"NJloSKSuN\",style:{\"--extracted-r6o4lv\":\"var(--token-c3e4741f-c2b3-4d0b-8b90-76e3b1fc9bd9, rgb(23, 23, 23))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:uiuh9eI1i,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(23, 23, 23, 0.7))\"},children:\"Yes, you can cancel your subscription at any time directly from your account settings.\"})}),className:\"framer-1dnsujj\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Lgbw7RBaU\",style:{\"--extracted-r6o4lv\":\"rgba(23, 23, 23, 0.7)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:h1heBG4Sg,variants:{JSD4x9ZCm:{\"--extracted-r6o4lv\":\"rgba(48, 48, 48, 0.64)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({JSD4x9ZCm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO09wZW4gUnVuZGUgUmVndWxhcg==\",\"--framer-font-family\":'\"Open Runde Regular\", \"Open Runde Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(48, 48, 48, 0.64))\"},children:\"Yes, you can cancel your subscription at any time directly from your account settings.\"})}),fonts:[\"CUSTOM;Open Runde Regular\"]}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1h4eql6\",\"data-framer-name\":\"Icon Box\",layoutDependency:layoutDependency,layoutId:\"Azz3nbaVm\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1tcu9tm-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"d42lDQ1x1-container\",nodeId:\"d42lDQ1x1\",rendersWithMotion:true,scopeId:\"VgAyvmOBq\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 0, 79)\",height:\"100%\",iconSearch:\"plus\",iconSelection:\"House\",id:\"d42lDQ1x1\",layoutId:\"d42lDQ1x1\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\",...addPropertyOverrides({JSD4x9ZCm:{iconSearch:\"X\"},PDOjitQaH:{iconSearch:\"X\"},SLycgFcGL:{iconSearch:\"X\"},XPJBJD3WK:{iconSearch:\"X\"}},baseVariant,gestureVariant)})})})})]})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-6lE2D.framer-8oqjfc, .framer-6lE2D .framer-8oqjfc { display: block; }\",\".framer-6lE2D.framer-3ztc1b { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px; position: relative; width: 487px; }\",\".framer-6lE2D .framer-nh3mel { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-6lE2D .framer-tia4ju, .framer-6lE2D .framer-1dnsujj { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-6lE2D .framer-1h4eql6 { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 32px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 32px; }\",\".framer-6lE2D .framer-1tcu9tm-container { flex: none; height: 24px; position: relative; width: 24px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-6lE2D.framer-3ztc1b, .framer-6lE2D .framer-nh3mel, .framer-6lE2D .framer-1h4eql6 { gap: 0px; } .framer-6lE2D.framer-3ztc1b > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-6lE2D.framer-3ztc1b > :first-child, .framer-6lE2D .framer-1h4eql6 > :first-child { margin-left: 0px; } .framer-6lE2D.framer-3ztc1b > :last-child, .framer-6lE2D .framer-1h4eql6 > :last-child { margin-right: 0px; } .framer-6lE2D .framer-nh3mel > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-6lE2D .framer-nh3mel > :first-child { margin-top: 0px; } .framer-6lE2D .framer-nh3mel > :last-child { margin-bottom: 0px; } .framer-6lE2D .framer-1h4eql6 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",\".framer-6lE2D.framer-v-11s5o9r.framer-3ztc1b, .framer-6lE2D.framer-v-1jqkoq0.framer-3ztc1b { padding: 0px; }\",\".framer-6lE2D.framer-v-11s5o9r.hover .framer-1h4eql6 { height: var(--framer-aspect-ratio-supported, 31px); }\",'.framer-6lE2D[data-border=\"true\"]::after, .framer-6lE2D [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 72\n * @framerIntrinsicWidth 487\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"JSD4x9ZCm\":{\"layout\":[\"fixed\",\"auto\"]},\"z6UOyMM__\":{\"layout\":[\"fixed\",\"auto\"]},\"XPJBJD3WK\":{\"layout\":[\"fixed\",\"auto\"]},\"IJRXoY58B\":{\"layout\":[\"fixed\",\"auto\"]},\"TCDx5VVsk\":{\"layout\":[\"fixed\",\"auto\"]},\"PDOjitQaH\":{\"layout\":[\"fixed\",\"auto\"]},\"SLycgFcGL\":{\"layout\":[\"fixed\",\"auto\"]},\"UX_TGNJRw\":{\"layout\":[\"fixed\",\"auto\"]},\"XN9DhLAYv\":{\"layout\":[\"fixed\",\"auto\"]},\"O1dG7jJdp\":{\"layout\":[\"fixed\",\"auto\"]},\"BbSIGz6ub\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"uiuh9eI1i\":\"question\",\"h1heBG4Sg\":\"answer\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerVgAyvmOBq=withCSS(Component,css,\"framer-6lE2D\");export default FramerVgAyvmOBq;FramerVgAyvmOBq.displayName=\"Accordion / Items\";FramerVgAyvmOBq.defaultProps={height:72,width:487};addPropertyControls(FramerVgAyvmOBq,{variant:{options:[\"K7rxHEOrK\",\"JSD4x9ZCm\",\"z6UOyMM__\",\"XPJBJD3WK\",\"IJRXoY58B\",\"TCDx5VVsk\",\"PDOjitQaH\",\"SLycgFcGL\"],optionTitles:[\"Default\",\"Default - Active\",\"Secondary\",\"Secondary - Active\",\"Line\",\"Ghost\",\"Ghost - Active\",\"Line - Active\"],title:\"Variant\",type:ControlType.Enum},uiuh9eI1i:{defaultValue:\"Can I cancel my subscription at any time?\",displayTextArea:false,title:\"Question\",type:ControlType.String},h1heBG4Sg:{defaultValue:\"Yes, you can cancel your subscription at any time directly from your account settings.\",displayTextArea:false,title:\"Answer\",type:ControlType.String}});addFonts(FramerVgAyvmOBq,[{explicitInter:true,fonts:[{family:\"Open Runde Semibold\",source:\"custom\",url:\"https://framerusercontent.com/assets/hG3wmGmFwadB6X5XPVXkMlmLr8o.woff2\"},{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:\"Open Runde Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/3exmuO07FP19gMM08TQrpXl3BGQ.woff2\"}]},...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerVgAyvmOBq\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"uiuh9eI1i\\\":\\\"question\\\",\\\"h1heBG4Sg\\\":\\\"answer\\\"}\",\"framerIntrinsicWidth\":\"487\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"JSD4x9ZCm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"z6UOyMM__\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XPJBJD3WK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IJRXoY58B\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TCDx5VVsk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"PDOjitQaH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"SLycgFcGL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UX_TGNJRw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XN9DhLAYv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"O1dG7jJdp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"BbSIGz6ub\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"72\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./VgAyvmOBq.map", "// Generated by Framer (915daba)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import AccordionItems from\"https://framerusercontent.com/modules/BXgrPlchHoiedtS0peDB/LeFmzj3iuw00d5eYQ1K8/VgAyvmOBq.js\";const AccordionItemsFonts=getFonts(AccordionItems);const cycleOrder=[\"Gt2xmeD74\",\"LSoIOADid\",\"OIUEnbp_s\",\"esT8fxTrk\"];const serializationHash=\"framer-uoUnm\";const variantClassNames={esT8fxTrk:\"framer-v-oo0k0v\",Gt2xmeD74:\"framer-v-30tvzl\",LSoIOADid:\"framer-v-27xde8\",OIUEnbp_s:\"framer-v-3f614\"};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={Default:\"Gt2xmeD74\",Ghost:\"OIUEnbp_s\",Line:\"esT8fxTrk\",Secondary:\"LSoIOADid\"};const getProps=({_1,_10,_10Answer,_10Question,_11,_11Answer,_11Question,_12,_12Answer,_12Question,_13,_13Answer,_13Question,_14,_14Answer,_14Question,_15,_15Answer,_15Question,_1Answer,_1Question,_2,_2Answer,_2Question,_3,_3Answer,_3Question,_4,_4Answer,_4Question,_5,_5Answer,_5Question,_6,_6Answer,_6Question,_7,_7Answer,_7Question,_8,_8Answer,_8Question,_9,_9Answer,_9Question,height,id,width,...props})=>{return{...props,AeiBzzaLJ:_2??props.AeiBzzaLJ??true,aHgi0gzx9:_7Answer??props.aHgi0gzx9??\"If you exceed your plan\u2019s usage limits, we\u2019ll notify you and give you the option to upgrade your plan or purchase additional resources to accommodate your growing needs.\",BAK_kOWZJ:_13??props.BAK_kOWZJ??true,BawZqjMW_:_8??props.BawZqjMW_??true,bYcMEYk1C:_5Answer??props.bYcMEYk1C??\"Yes, you can upgrade or downgrade your plan at any time. Any changes will be reflected in your next billing cycle. If you upgrade, the new features will be available to you immediately.\",ci9Ei5h9k:_6Question??props.ci9Ei5h9k??\"What happens if I exceed my plan\u2019s usage limits?\",CLvOis_rh:_9??props.CLvOis_rh??true,DaWewJ6p3:_7Question??props.DaWewJ6p3??\"If you exceed your plan\u2019s usage limits, we\u2019ll notify you and give you the option to upgrade your plan or purchase additional resources to accommodate your growing needs.\",Dk7Ml8VIY:_15Question??props.Dk7Ml8VIY??\"If you exceed your plan\u2019s usage limits, we\u2019ll notify you and give you the option to upgrade your plan or purchase additional resources to accommodate your growing needs.\",DKl8Qtpoz:_11??props.DKl8Qtpoz??true,Dv4yYtEWJ:_1??props.Dv4yYtEWJ??true,EDlXvtl0q:_1Question??props.EDlXvtl0q??\"What is included in the free trial?\",EEB4zLMhq:_9Question??props.EEB4zLMhq??\"If you exceed your plan\u2019s usage limits, we\u2019ll notify you and give you the option to upgrade your plan or purchase additional resources to accommodate your growing needs.\",fbe_WnDs4:_6Answer??props.fbe_WnDs4??\"If you exceed your plan\u2019s usage limits, we\u2019ll notify you and give you the option to upgrade your plan or purchase additional resources to accommodate your growing needs.\",HPnSNKRsU:_1Answer??props.HPnSNKRsU??\"Our free trial gives you full access to all the core features of our platform for a limited time. You can explore templates, design systems, and customize projects, so you can get a hands-on experience of how our UI kit works.\",HRhZ8ueBk:_2Question??props.HRhZ8ueBk??\"Can I cancel my subscription at any time?\",jrajs1x8C:_10Question??props.jrajs1x8C??\"If you exceed your plan\u2019s usage limits, we\u2019ll notify you and give you the option to upgrade your plan or purchase additional resources to accommodate your growing needs.\",Kh7hV4ML5:_4Question??props.Kh7hV4ML5??\"Is my data secure on your platform?\",KVMQPFmNk:_10Answer??props.KVMQPFmNk??\"If you exceed your plan\u2019s usage limits, we\u2019ll notify you and give you the option to upgrade your plan or purchase additional resources to accommodate your growing needs.\",LkWlRCQ1I:_8Answer??props.LkWlRCQ1I??\"If you exceed your plan\u2019s usage limits, we\u2019ll notify you and give you the option to upgrade your plan or purchase additional resources to accommodate your growing needs.\",luFqtPdaN:_9Answer??props.luFqtPdaN??\"If you exceed your plan\u2019s usage limits, we\u2019ll notify you and give you the option to upgrade your plan or purchase additional resources to accommodate your growing needs.\",mx2lIBe7k:_15Answer??props.mx2lIBe7k??\"If you exceed your plan\u2019s usage limits, we\u2019ll notify you and give you the option to upgrade your plan or purchase additional resources to accommodate your growing needs.\",Nbhb7pogG:_12Answer??props.Nbhb7pogG??\"If you exceed your plan\u2019s usage limits, we\u2019ll notify you and give you the option to upgrade your plan or purchase additional resources to accommodate your growing needs.\",o3ayRfSa9:_12Question??props.o3ayRfSa9??\"If you exceed your plan\u2019s usage limits, we\u2019ll notify you and give you the option to upgrade your plan or purchase additional resources to accommodate your growing needs.\",p0GR7pFgP:_5??props.p0GR7pFgP??true,PqSsYFxw1:_13Answer??props.PqSsYFxw1??\"If you exceed your plan\u2019s usage limits, we\u2019ll notify you and give you the option to upgrade your plan or purchase additional resources to accommodate your growing needs.\",pwMKUypU8:_15??props.pwMKUypU8??true,pXkHgZpVU:_3??props.pXkHgZpVU??true,qjB2mrPEX:_10??props.qjB2mrPEX??true,QSD2lpBdw:_2Answer??props.QSD2lpBdw??\"Yes, you can cancel your subscription at any time directly from your account settings.\",reFw582jA:_4??props.reFw582jA??true,TewXXlTNy:_4Answer??props.TewXXlTNy??\"Absolutely. We take data security seriously and implement industry-standard encryption protocols to protect your information. Our platform is regularly updated to maintain the highest security standards.\",tyIi4Ndoa:_6??props.tyIi4Ndoa??true,UoAXo9lOi:_14??props.UoAXo9lOi??true,uwIhjj7kC:_7??props.uwIhjj7kC??true,variant:humanReadableVariantMap[props.variant]??props.variant??\"Gt2xmeD74\",vLPEIERlk:_5Question??props.vLPEIERlk??\"Can I change my plan after I\u2019ve subscribed?\",VsSi6MHrQ:_12??props.VsSi6MHrQ??true,vULFeElpH:_3Answer??props.vULFeElpH??\"Yes, we offer significant discounts when you choose an annual plan. This option allows you to save up to 20% compared to paying monthly. Check out our pricing page for more details on savings.\",VXu69WNlM:_13Question??props.VXu69WNlM??\"If you exceed your plan\u2019s usage limits, we\u2019ll notify you and give you the option to upgrade your plan or purchase additional resources to accommodate your growing needs.\",WI1MKGMsc:_14Answer??props.WI1MKGMsc??\"If you exceed your plan\u2019s usage limits, we\u2019ll notify you and give you the option to upgrade your plan or purchase additional resources to accommodate your growing needs.\",xj8LAh7JJ:_11Answer??props.xj8LAh7JJ??\"If you exceed your plan\u2019s usage limits, we\u2019ll notify you and give you the option to upgrade your plan or purchase additional resources to accommodate your growing needs.\",xu0dNnkaM:_8Question??props.xu0dNnkaM??\"If you exceed your plan\u2019s usage limits, we\u2019ll notify you and give you the option to upgrade your plan or purchase additional resources to accommodate your growing needs.\",ymlFqghLd:_14Question??props.ymlFqghLd??\"If you exceed your plan\u2019s usage limits, we\u2019ll notify you and give you the option to upgrade your plan or purchase additional resources to accommodate your growing needs.\",Z74elvuQq:_3Question??props.Z74elvuQq??\"Do you offer discounts for annual plans?\",ZUVgi7XMj:_11Question??props.ZUVgi7XMj??\"If you exceed your plan\u2019s usage limits, we\u2019ll notify you and give you the option to upgrade your plan or purchase additional resources to accommodate your growing needs.\"};};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,Dv4yYtEWJ,AeiBzzaLJ,pXkHgZpVU,reFw582jA,p0GR7pFgP,tyIi4Ndoa,uwIhjj7kC,BawZqjMW_,CLvOis_rh,qjB2mrPEX,DKl8Qtpoz,VsSi6MHrQ,BAK_kOWZJ,UoAXo9lOi,pwMKUypU8,EDlXvtl0q,HPnSNKRsU,HRhZ8ueBk,QSD2lpBdw,Z74elvuQq,vULFeElpH,Kh7hV4ML5,TewXXlTNy,vLPEIERlk,bYcMEYk1C,ci9Ei5h9k,fbe_WnDs4,DaWewJ6p3,aHgi0gzx9,xu0dNnkaM,LkWlRCQ1I,EEB4zLMhq,luFqtPdaN,jrajs1x8C,KVMQPFmNk,ZUVgi7XMj,xj8LAh7JJ,o3ayRfSa9,Nbhb7pogG,VXu69WNlM,PqSsYFxw1,ymlFqghLd,WI1MKGMsc,Dk7Ml8VIY,mx2lIBe7k,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Gt2xmeD74\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();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-30tvzl\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"Gt2xmeD74\",ref:ref??ref1,style:{...style},...addPropertyOverrides({esT8fxTrk:{\"data-framer-name\":\"Line\"},LSoIOADid:{\"data-framer-name\":\"Secondary\"},OIUEnbp_s:{\"data-framer-name\":\"Ghost\"}},baseVariant,gestureVariant),children:[Dv4yYtEWJ&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||1784)-0-1192)/2+0+0),...addPropertyOverrides({esT8fxTrk:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1632)-0-1080)/2+0+0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-eu5lm6-container\",layoutDependency:layoutDependency,layoutId:\"cGpaEUBRI-container\",nodeId:\"cGpaEUBRI\",rendersWithMotion:true,scopeId:\"W6ylrvnyo\",children:/*#__PURE__*/_jsx(AccordionItems,{h1heBG4Sg:HPnSNKRsU,height:\"100%\",id:\"cGpaEUBRI\",layoutId:\"cGpaEUBRI\",style:{width:\"100%\"},uiuh9eI1i:EDlXvtl0q,variant:\"K7rxHEOrK\",width:\"100%\",...addPropertyOverrides({esT8fxTrk:{variant:\"IJRXoY58B\"},LSoIOADid:{variant:\"z6UOyMM__\"},OIUEnbp_s:{variant:\"TCDx5VVsk\"}},baseVariant,gestureVariant)})})}),AeiBzzaLJ&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||1784)-0-1192)/2+72+8),...addPropertyOverrides({esT8fxTrk:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1632)-0-1080)/2+72+0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-k3xv7w-container\",layoutDependency:layoutDependency,layoutId:\"ZkoeUBcQ7-container\",nodeId:\"ZkoeUBcQ7\",rendersWithMotion:true,scopeId:\"W6ylrvnyo\",children:/*#__PURE__*/_jsx(AccordionItems,{h1heBG4Sg:QSD2lpBdw,height:\"100%\",id:\"ZkoeUBcQ7\",layoutId:\"ZkoeUBcQ7\",style:{width:\"100%\"},uiuh9eI1i:HRhZ8ueBk,variant:\"K7rxHEOrK\",width:\"100%\"})})}),pXkHgZpVU&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||1784)-0-1192)/2+144+16),...addPropertyOverrides({esT8fxTrk:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1632)-0-1080)/2+144+0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-67aoxr-container\",layoutDependency:layoutDependency,layoutId:\"pke4BXNB9-container\",nodeId:\"pke4BXNB9\",rendersWithMotion:true,scopeId:\"W6ylrvnyo\",children:/*#__PURE__*/_jsx(AccordionItems,{h1heBG4Sg:vULFeElpH,height:\"100%\",id:\"pke4BXNB9\",layoutId:\"pke4BXNB9\",style:{width:\"100%\"},uiuh9eI1i:Z74elvuQq,variant:\"K7rxHEOrK\",width:\"100%\"})})}),reFw582jA&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||1784)-0-1192)/2+216+24),...addPropertyOverrides({esT8fxTrk:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1632)-0-1080)/2+216+0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-4g1or9-container\",layoutDependency:layoutDependency,layoutId:\"YUPCJQISD-container\",nodeId:\"YUPCJQISD\",rendersWithMotion:true,scopeId:\"W6ylrvnyo\",children:/*#__PURE__*/_jsx(AccordionItems,{h1heBG4Sg:TewXXlTNy,height:\"100%\",id:\"YUPCJQISD\",layoutId:\"YUPCJQISD\",style:{width:\"100%\"},uiuh9eI1i:Kh7hV4ML5,variant:\"K7rxHEOrK\",width:\"100%\"})})}),p0GR7pFgP&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||1784)-0-1192)/2+288+32),...addPropertyOverrides({esT8fxTrk:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1632)-0-1080)/2+288+0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-joa184-container\",layoutDependency:layoutDependency,layoutId:\"hnApmteOG-container\",nodeId:\"hnApmteOG\",rendersWithMotion:true,scopeId:\"W6ylrvnyo\",children:/*#__PURE__*/_jsx(AccordionItems,{h1heBG4Sg:bYcMEYk1C,height:\"100%\",id:\"hnApmteOG\",layoutId:\"hnApmteOG\",style:{width:\"100%\"},uiuh9eI1i:vLPEIERlk,variant:\"K7rxHEOrK\",width:\"100%\"})})}),tyIi4Ndoa&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||1784)-0-1192)/2+360+40),...addPropertyOverrides({esT8fxTrk:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1632)-0-1080)/2+360+0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-xm3mvm-container\",layoutDependency:layoutDependency,layoutId:\"Xk1BgE5Jf-container\",nodeId:\"Xk1BgE5Jf\",rendersWithMotion:true,scopeId:\"W6ylrvnyo\",children:/*#__PURE__*/_jsx(AccordionItems,{h1heBG4Sg:fbe_WnDs4,height:\"100%\",id:\"Xk1BgE5Jf\",layoutId:\"Xk1BgE5Jf\",style:{width:\"100%\"},uiuh9eI1i:ci9Ei5h9k,variant:\"K7rxHEOrK\",width:\"100%\"})})}),uwIhjj7kC&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||1784)-0-1192)/2+432+48),...addPropertyOverrides({esT8fxTrk:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1632)-0-1080)/2+432+0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-a8h28-container\",layoutDependency:layoutDependency,layoutId:\"mDu_2C4Is-container\",nodeId:\"mDu_2C4Is\",rendersWithMotion:true,scopeId:\"W6ylrvnyo\",children:/*#__PURE__*/_jsx(AccordionItems,{h1heBG4Sg:aHgi0gzx9,height:\"100%\",id:\"mDu_2C4Is\",layoutId:\"mDu_2C4Is\",style:{width:\"100%\"},uiuh9eI1i:DaWewJ6p3,variant:\"K7rxHEOrK\",width:\"100%\"})})}),BawZqjMW_&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||1784)-0-1192)/2+504+56),...addPropertyOverrides({esT8fxTrk:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1632)-0-1080)/2+504+0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1hmry0x-container\",layoutDependency:layoutDependency,layoutId:\"VVU69Q4pa-container\",nodeId:\"VVU69Q4pa\",rendersWithMotion:true,scopeId:\"W6ylrvnyo\",children:/*#__PURE__*/_jsx(AccordionItems,{h1heBG4Sg:LkWlRCQ1I,height:\"100%\",id:\"VVU69Q4pa\",layoutId:\"VVU69Q4pa\",style:{width:\"100%\"},uiuh9eI1i:xu0dNnkaM,variant:\"K7rxHEOrK\",width:\"100%\"})})}),CLvOis_rh&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||1784)-0-1192)/2+576+64),...addPropertyOverrides({esT8fxTrk:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1632)-0-1080)/2+576+0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-quo711-container\",layoutDependency:layoutDependency,layoutId:\"Vbijksk5H-container\",nodeId:\"Vbijksk5H\",rendersWithMotion:true,scopeId:\"W6ylrvnyo\",children:/*#__PURE__*/_jsx(AccordionItems,{h1heBG4Sg:luFqtPdaN,height:\"100%\",id:\"Vbijksk5H\",layoutId:\"Vbijksk5H\",style:{width:\"100%\"},uiuh9eI1i:EEB4zLMhq,variant:\"K7rxHEOrK\",width:\"100%\"})})}),qjB2mrPEX&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||1784)-0-1192)/2+648+72),...addPropertyOverrides({esT8fxTrk:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1632)-0-1080)/2+648+0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ewpowf-container\",layoutDependency:layoutDependency,layoutId:\"JcPQYDjPQ-container\",nodeId:\"JcPQYDjPQ\",rendersWithMotion:true,scopeId:\"W6ylrvnyo\",children:/*#__PURE__*/_jsx(AccordionItems,{h1heBG4Sg:KVMQPFmNk,height:\"100%\",id:\"JcPQYDjPQ\",layoutId:\"JcPQYDjPQ\",style:{width:\"100%\"},uiuh9eI1i:jrajs1x8C,variant:\"K7rxHEOrK\",width:\"100%\"})})}),DKl8Qtpoz&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||1784)-0-1192)/2+720+80),...addPropertyOverrides({esT8fxTrk:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1632)-0-1080)/2+720+0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1upete5-container\",layoutDependency:layoutDependency,layoutId:\"GxEHlOYmG-container\",nodeId:\"GxEHlOYmG\",rendersWithMotion:true,scopeId:\"W6ylrvnyo\",children:/*#__PURE__*/_jsx(AccordionItems,{h1heBG4Sg:xj8LAh7JJ,height:\"100%\",id:\"GxEHlOYmG\",layoutId:\"GxEHlOYmG\",style:{width:\"100%\"},uiuh9eI1i:ZUVgi7XMj,variant:\"K7rxHEOrK\",width:\"100%\"})})}),VsSi6MHrQ&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||1784)-0-1192)/2+792+88),...addPropertyOverrides({esT8fxTrk:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1632)-0-1080)/2+792+0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-17xu6zv-container\",layoutDependency:layoutDependency,layoutId:\"qkrUaObuV-container\",nodeId:\"qkrUaObuV\",rendersWithMotion:true,scopeId:\"W6ylrvnyo\",children:/*#__PURE__*/_jsx(AccordionItems,{h1heBG4Sg:Nbhb7pogG,height:\"100%\",id:\"qkrUaObuV\",layoutId:\"qkrUaObuV\",style:{width:\"100%\"},uiuh9eI1i:o3ayRfSa9,variant:\"K7rxHEOrK\",width:\"100%\"})})}),BAK_kOWZJ&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||1784)-0-1192)/2+864+96),...addPropertyOverrides({esT8fxTrk:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1632)-0-1080)/2+864+0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-17ojlep-container\",layoutDependency:layoutDependency,layoutId:\"TtUUzHPW9-container\",nodeId:\"TtUUzHPW9\",rendersWithMotion:true,scopeId:\"W6ylrvnyo\",children:/*#__PURE__*/_jsx(AccordionItems,{h1heBG4Sg:PqSsYFxw1,height:\"100%\",id:\"TtUUzHPW9\",layoutId:\"TtUUzHPW9\",style:{width:\"100%\"},uiuh9eI1i:VXu69WNlM,variant:\"K7rxHEOrK\",width:\"100%\"})})}),UoAXo9lOi&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||1784)-0-1192)/2+936+104),...addPropertyOverrides({esT8fxTrk:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1632)-0-1080)/2+936+0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-6rcssd-container\",layoutDependency:layoutDependency,layoutId:\"wjPpykh_I-container\",nodeId:\"wjPpykh_I\",rendersWithMotion:true,scopeId:\"W6ylrvnyo\",children:/*#__PURE__*/_jsx(AccordionItems,{h1heBG4Sg:WI1MKGMsc,height:\"100%\",id:\"wjPpykh_I\",layoutId:\"wjPpykh_I\",style:{width:\"100%\"},uiuh9eI1i:ymlFqghLd,variant:\"K7rxHEOrK\",width:\"100%\"})})}),pwMKUypU8&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||1784)-0-1192)/2+1008+112),...addPropertyOverrides({esT8fxTrk:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1632)-0-1080)/2+1008+0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-onsoqj-container\",layoutDependency:layoutDependency,layoutId:\"YeboRLp_v-container\",nodeId:\"YeboRLp_v\",rendersWithMotion:true,scopeId:\"W6ylrvnyo\",children:/*#__PURE__*/_jsx(AccordionItems,{h1heBG4Sg:mx2lIBe7k,height:\"100%\",id:\"YeboRLp_v\",layoutId:\"YeboRLp_v\",style:{width:\"100%\"},uiuh9eI1i:Dk7Ml8VIY,variant:\"K7rxHEOrK\",width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-uoUnm.framer-1f0vaaz, .framer-uoUnm .framer-1f0vaaz { display: block; }\",\".framer-uoUnm.framer-30tvzl { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 480px; }\",\".framer-uoUnm .framer-eu5lm6-container, .framer-uoUnm .framer-k3xv7w-container, .framer-uoUnm .framer-67aoxr-container, .framer-uoUnm .framer-4g1or9-container, .framer-uoUnm .framer-joa184-container, .framer-uoUnm .framer-xm3mvm-container, .framer-uoUnm .framer-a8h28-container, .framer-uoUnm .framer-1hmry0x-container, .framer-uoUnm .framer-quo711-container, .framer-uoUnm .framer-1ewpowf-container, .framer-uoUnm .framer-1upete5-container, .framer-uoUnm .framer-17xu6zv-container, .framer-uoUnm .framer-17ojlep-container, .framer-uoUnm .framer-6rcssd-container, .framer-uoUnm .framer-onsoqj-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-uoUnm.framer-30tvzl { gap: 0px; } .framer-uoUnm.framer-30tvzl > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-uoUnm.framer-30tvzl > :first-child { margin-top: 0px; } .framer-uoUnm.framer-30tvzl > :last-child { margin-bottom: 0px; } }\",\".framer-uoUnm.framer-v-oo0k0v.framer-30tvzl { gap: 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-uoUnm.framer-v-oo0k0v.framer-30tvzl { gap: 0px; } .framer-uoUnm.framer-v-oo0k0v.framer-30tvzl > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-uoUnm.framer-v-oo0k0v.framer-30tvzl > :first-child { margin-top: 0px; } .framer-uoUnm.framer-v-oo0k0v.framer-30tvzl > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1784\n * @framerIntrinsicWidth 480\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"LSoIOADid\":{\"layout\":[\"fixed\",\"auto\"]},\"OIUEnbp_s\":{\"layout\":[\"fixed\",\"auto\"]},\"esT8fxTrk\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"Dv4yYtEWJ\":\"_1\",\"AeiBzzaLJ\":\"_2\",\"pXkHgZpVU\":\"_3\",\"reFw582jA\":\"_4\",\"p0GR7pFgP\":\"_5\",\"tyIi4Ndoa\":\"_6\",\"uwIhjj7kC\":\"_7\",\"BawZqjMW_\":\"_8\",\"CLvOis_rh\":\"_9\",\"qjB2mrPEX\":\"_10\",\"DKl8Qtpoz\":\"_11\",\"VsSi6MHrQ\":\"_12\",\"BAK_kOWZJ\":\"_13\",\"UoAXo9lOi\":\"_14\",\"pwMKUypU8\":\"_15\",\"EDlXvtl0q\":\"_1Question\",\"HPnSNKRsU\":\"_1Answer\",\"HRhZ8ueBk\":\"_2Question\",\"QSD2lpBdw\":\"_2Answer\",\"Z74elvuQq\":\"_3Question\",\"vULFeElpH\":\"_3Answer\",\"Kh7hV4ML5\":\"_4Question\",\"TewXXlTNy\":\"_4Answer\",\"vLPEIERlk\":\"_5Question\",\"bYcMEYk1C\":\"_5Answer\",\"ci9Ei5h9k\":\"_6Question\",\"fbe_WnDs4\":\"_6Answer\",\"DaWewJ6p3\":\"_7Question\",\"aHgi0gzx9\":\"_7Answer\",\"xu0dNnkaM\":\"_8Question\",\"LkWlRCQ1I\":\"_8Answer\",\"EEB4zLMhq\":\"_9Question\",\"luFqtPdaN\":\"_9Answer\",\"jrajs1x8C\":\"_10Question\",\"KVMQPFmNk\":\"_10Answer\",\"ZUVgi7XMj\":\"_11Question\",\"xj8LAh7JJ\":\"_11Answer\",\"o3ayRfSa9\":\"_12Question\",\"Nbhb7pogG\":\"_12Answer\",\"VXu69WNlM\":\"_13Question\",\"PqSsYFxw1\":\"_13Answer\",\"ymlFqghLd\":\"_14Question\",\"WI1MKGMsc\":\"_14Answer\",\"Dk7Ml8VIY\":\"_15Question\",\"mx2lIBe7k\":\"_15Answer\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerW6ylrvnyo=withCSS(Component,css,\"framer-uoUnm\");export default FramerW6ylrvnyo;FramerW6ylrvnyo.displayName=\"Accordion / Component\";FramerW6ylrvnyo.defaultProps={height:1784,width:480};addPropertyControls(FramerW6ylrvnyo,{variant:{options:[\"Gt2xmeD74\",\"LSoIOADid\",\"OIUEnbp_s\",\"esT8fxTrk\"],optionTitles:[\"Default\",\"Secondary\",\"Ghost\",\"Line\"],title:\"Variant\",type:ControlType.Enum},Dv4yYtEWJ:{defaultValue:true,title:\"1\",type:ControlType.Boolean},AeiBzzaLJ:{defaultValue:true,title:\"2\",type:ControlType.Boolean},pXkHgZpVU:{defaultValue:true,title:\"3\",type:ControlType.Boolean},reFw582jA:{defaultValue:true,title:\"4\",type:ControlType.Boolean},p0GR7pFgP:{defaultValue:true,title:\"5\",type:ControlType.Boolean},tyIi4Ndoa:{defaultValue:true,title:\"6\",type:ControlType.Boolean},uwIhjj7kC:{defaultValue:true,title:\"7\",type:ControlType.Boolean},BawZqjMW_:{defaultValue:true,title:\"8\",type:ControlType.Boolean},CLvOis_rh:{defaultValue:true,title:\"9\",type:ControlType.Boolean},qjB2mrPEX:{defaultValue:true,title:\"10\",type:ControlType.Boolean},DKl8Qtpoz:{defaultValue:true,title:\"11\",type:ControlType.Boolean},VsSi6MHrQ:{defaultValue:true,title:\"12\",type:ControlType.Boolean},BAK_kOWZJ:{defaultValue:true,title:\"13\",type:ControlType.Boolean},UoAXo9lOi:{defaultValue:true,title:\"14\",type:ControlType.Boolean},pwMKUypU8:{defaultValue:true,title:\"15\",type:ControlType.Boolean},EDlXvtl0q:{defaultValue:\"What is included in the free trial?\",displayTextArea:false,title:\"1 Question\",type:ControlType.String},HPnSNKRsU:{defaultValue:\"Our free trial gives you full access to all the core features of our platform for a limited time. You can explore templates, design systems, and customize projects, so you can get a hands-on experience of how our UI kit works.\",displayTextArea:false,title:\"1 Answer\",type:ControlType.String},HRhZ8ueBk:{defaultValue:\"Can I cancel my subscription at any time?\",displayTextArea:false,title:\"2 Question\",type:ControlType.String},QSD2lpBdw:{defaultValue:\"Yes, you can cancel your subscription at any time directly from your account settings.\",displayTextArea:false,title:\"2 Answer\",type:ControlType.String},Z74elvuQq:{defaultValue:\"Do you offer discounts for annual plans?\",displayTextArea:false,title:\"3 Question\",type:ControlType.String},vULFeElpH:{defaultValue:\"Yes, we offer significant discounts when you choose an annual plan. This option allows you to save up to 20% compared to paying monthly. Check out our pricing page for more details on savings.\",displayTextArea:false,title:\"3 Answer\",type:ControlType.String},Kh7hV4ML5:{defaultValue:\"Is my data secure on your platform?\",displayTextArea:false,title:\"4 Question\",type:ControlType.String},TewXXlTNy:{defaultValue:\"Absolutely. We take data security seriously and implement industry-standard encryption protocols to protect your information. Our platform is regularly updated to maintain the highest security standards.\",displayTextArea:false,title:\"4 Answer\",type:ControlType.String},vLPEIERlk:{defaultValue:\"Can I change my plan after I\u2019ve subscribed?\",displayTextArea:false,title:\"5 Question\",type:ControlType.String},bYcMEYk1C:{defaultValue:\"Yes, you can upgrade or downgrade your plan at any time. Any changes will be reflected in your next billing cycle. If you upgrade, the new features will be available to you immediately.\",displayTextArea:false,title:\"5 Answer\",type:ControlType.String},ci9Ei5h9k:{defaultValue:\"What happens if I exceed my plan\u2019s usage limits?\",displayTextArea:false,title:\"6 Question\",type:ControlType.String},fbe_WnDs4:{defaultValue:\"If you exceed your plan\u2019s usage limits, we\u2019ll notify you and give you the option to upgrade your plan or purchase additional resources to accommodate your growing needs.\",displayTextArea:false,title:\"6 Answer\",type:ControlType.String},DaWewJ6p3:{defaultValue:\"If you exceed your plan\u2019s usage limits, we\u2019ll notify you and give you the option to upgrade your plan or purchase additional resources to accommodate your growing needs.\",displayTextArea:false,title:\"7 Question\",type:ControlType.String},aHgi0gzx9:{defaultValue:\"If you exceed your plan\u2019s usage limits, we\u2019ll notify you and give you the option to upgrade your plan or purchase additional resources to accommodate your growing needs.\",displayTextArea:false,title:\"7 Answer\",type:ControlType.String},xu0dNnkaM:{defaultValue:\"If you exceed your plan\u2019s usage limits, we\u2019ll notify you and give you the option to upgrade your plan or purchase additional resources to accommodate your growing needs.\",displayTextArea:false,title:\"8 Question\",type:ControlType.String},LkWlRCQ1I:{defaultValue:\"If you exceed your plan\u2019s usage limits, we\u2019ll notify you and give you the option to upgrade your plan or purchase additional resources to accommodate your growing needs.\",displayTextArea:false,title:\"8 Answer\",type:ControlType.String},EEB4zLMhq:{defaultValue:\"If you exceed your plan\u2019s usage limits, we\u2019ll notify you and give you the option to upgrade your plan or purchase additional resources to accommodate your growing needs.\",displayTextArea:false,title:\"9 Question\",type:ControlType.String},luFqtPdaN:{defaultValue:\"If you exceed your plan\u2019s usage limits, we\u2019ll notify you and give you the option to upgrade your plan or purchase additional resources to accommodate your growing needs.\",displayTextArea:false,title:\"9 Answer\",type:ControlType.String},jrajs1x8C:{defaultValue:\"If you exceed your plan\u2019s usage limits, we\u2019ll notify you and give you the option to upgrade your plan or purchase additional resources to accommodate your growing needs.\",displayTextArea:false,title:\"10 Question\",type:ControlType.String},KVMQPFmNk:{defaultValue:\"If you exceed your plan\u2019s usage limits, we\u2019ll notify you and give you the option to upgrade your plan or purchase additional resources to accommodate your growing needs.\",displayTextArea:false,title:\"10 Answer\",type:ControlType.String},ZUVgi7XMj:{defaultValue:\"If you exceed your plan\u2019s usage limits, we\u2019ll notify you and give you the option to upgrade your plan or purchase additional resources to accommodate your growing needs.\",displayTextArea:false,title:\"11 Question\",type:ControlType.String},xj8LAh7JJ:{defaultValue:\"If you exceed your plan\u2019s usage limits, we\u2019ll notify you and give you the option to upgrade your plan or purchase additional resources to accommodate your growing needs.\",displayTextArea:false,title:\"11 Answer\",type:ControlType.String},o3ayRfSa9:{defaultValue:\"If you exceed your plan\u2019s usage limits, we\u2019ll notify you and give you the option to upgrade your plan or purchase additional resources to accommodate your growing needs.\",displayTextArea:false,title:\"12 Question\",type:ControlType.String},Nbhb7pogG:{defaultValue:\"If you exceed your plan\u2019s usage limits, we\u2019ll notify you and give you the option to upgrade your plan or purchase additional resources to accommodate your growing needs.\",displayTextArea:false,title:\"12 Answer\",type:ControlType.String},VXu69WNlM:{defaultValue:\"If you exceed your plan\u2019s usage limits, we\u2019ll notify you and give you the option to upgrade your plan or purchase additional resources to accommodate your growing needs.\",displayTextArea:false,title:\"13 Question\",type:ControlType.String},PqSsYFxw1:{defaultValue:\"If you exceed your plan\u2019s usage limits, we\u2019ll notify you and give you the option to upgrade your plan or purchase additional resources to accommodate your growing needs.\",displayTextArea:false,title:\"13 Answer\",type:ControlType.String},ymlFqghLd:{defaultValue:\"If you exceed your plan\u2019s usage limits, we\u2019ll notify you and give you the option to upgrade your plan or purchase additional resources to accommodate your growing needs.\",displayTextArea:false,title:\"14 Question\",type:ControlType.String},WI1MKGMsc:{defaultValue:\"If you exceed your plan\u2019s usage limits, we\u2019ll notify you and give you the option to upgrade your plan or purchase additional resources to accommodate your growing needs.\",displayTextArea:false,title:\"14 Answer\",type:ControlType.String},Dk7Ml8VIY:{defaultValue:\"If you exceed your plan\u2019s usage limits, we\u2019ll notify you and give you the option to upgrade your plan or purchase additional resources to accommodate your growing needs.\",displayTextArea:false,title:\"15 Question\",type:ControlType.String},mx2lIBe7k:{defaultValue:\"If you exceed your plan\u2019s usage limits, we\u2019ll notify you and give you the option to upgrade your plan or purchase additional resources to accommodate your growing needs.\",displayTextArea:false,title:\"15 Answer\",type:ControlType.String}});addFonts(FramerW6ylrvnyo,[{explicitInter:true,fonts:[]},...AccordionItemsFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerW6ylrvnyo\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"Dv4yYtEWJ\\\":\\\"_1\\\",\\\"AeiBzzaLJ\\\":\\\"_2\\\",\\\"pXkHgZpVU\\\":\\\"_3\\\",\\\"reFw582jA\\\":\\\"_4\\\",\\\"p0GR7pFgP\\\":\\\"_5\\\",\\\"tyIi4Ndoa\\\":\\\"_6\\\",\\\"uwIhjj7kC\\\":\\\"_7\\\",\\\"BawZqjMW_\\\":\\\"_8\\\",\\\"CLvOis_rh\\\":\\\"_9\\\",\\\"qjB2mrPEX\\\":\\\"_10\\\",\\\"DKl8Qtpoz\\\":\\\"_11\\\",\\\"VsSi6MHrQ\\\":\\\"_12\\\",\\\"BAK_kOWZJ\\\":\\\"_13\\\",\\\"UoAXo9lOi\\\":\\\"_14\\\",\\\"pwMKUypU8\\\":\\\"_15\\\",\\\"EDlXvtl0q\\\":\\\"_1Question\\\",\\\"HPnSNKRsU\\\":\\\"_1Answer\\\",\\\"HRhZ8ueBk\\\":\\\"_2Question\\\",\\\"QSD2lpBdw\\\":\\\"_2Answer\\\",\\\"Z74elvuQq\\\":\\\"_3Question\\\",\\\"vULFeElpH\\\":\\\"_3Answer\\\",\\\"Kh7hV4ML5\\\":\\\"_4Question\\\",\\\"TewXXlTNy\\\":\\\"_4Answer\\\",\\\"vLPEIERlk\\\":\\\"_5Question\\\",\\\"bYcMEYk1C\\\":\\\"_5Answer\\\",\\\"ci9Ei5h9k\\\":\\\"_6Question\\\",\\\"fbe_WnDs4\\\":\\\"_6Answer\\\",\\\"DaWewJ6p3\\\":\\\"_7Question\\\",\\\"aHgi0gzx9\\\":\\\"_7Answer\\\",\\\"xu0dNnkaM\\\":\\\"_8Question\\\",\\\"LkWlRCQ1I\\\":\\\"_8Answer\\\",\\\"EEB4zLMhq\\\":\\\"_9Question\\\",\\\"luFqtPdaN\\\":\\\"_9Answer\\\",\\\"jrajs1x8C\\\":\\\"_10Question\\\",\\\"KVMQPFmNk\\\":\\\"_10Answer\\\",\\\"ZUVgi7XMj\\\":\\\"_11Question\\\",\\\"xj8LAh7JJ\\\":\\\"_11Answer\\\",\\\"o3ayRfSa9\\\":\\\"_12Question\\\",\\\"Nbhb7pogG\\\":\\\"_12Answer\\\",\\\"VXu69WNlM\\\":\\\"_13Question\\\",\\\"PqSsYFxw1\\\":\\\"_13Answer\\\",\\\"ymlFqghLd\\\":\\\"_14Question\\\",\\\"WI1MKGMsc\\\":\\\"_14Answer\\\",\\\"Dk7Ml8VIY\\\":\\\"_15Question\\\",\\\"mx2lIBe7k\\\":\\\"_15Answer\\\"}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"1784\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LSoIOADid\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"OIUEnbp_s\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"esT8fxTrk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"480\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./W6ylrvnyo.map", "// Generated by Framer (c07a8c1)\nimport{LazyValue}from\"framer\";const valuesByLocaleId={KO1da9Cvi:new LazyValue(()=>import(\"./augiA20Il-0.js\")),sFDSTDC1h:new LazyValue(()=>import(\"./augiA20Il-2.js\")),uRrbPbAeS:new LazyValue(()=>import(\"./augiA20Il-1.js\"))};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values.read()[key];if(value)return value;}locale=locale.fallback;}}function preload(locale){const promises=[];while(locale){const values=valuesByLocaleId[locale.id];if(values){const promise=values.preload();if(promise)promises.push(promise);}locale=locale.fallback;}if(promises.length>0)return Promise.all(promises);}export function usePreloadLocalizedValues(locale){const preloadPromise=preload(locale);if(preloadPromise)throw preloadPromise;}\nexport const __FramerMetadata__ = {\"exports\":{\"usePreloadLocalizedValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (c07a8c1)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,FormContainer,FormPlainTextInput,FormSelect,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCodeBoundaryForOverrides,withCSS,withFX,withMappedReactProps,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/5hwSRFxV0XH7mOeR3v4n/Ticker.js\";import Ticker1 from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/LHz3bw67SqHRmnCKTlE6/Ticker.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js\";import AnimatedNumberCounter from\"https://framerusercontent.com/modules/qpjhCcDm4G1NbFAlpMKV/mpBjgPy3BrkirNCk9tKH/AnimatedNumberCounter_Prod.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import GenderSelector from\"#framer/local/canvasComponent/clS7D1i40/clS7D1i40.js\";import ShinyButtonWeb,*as ShinyButtonWebInfo from\"#framer/local/canvasComponent/d5kopp5VJ/d5kopp5VJ.js\";import ValueProp from\"#framer/local/canvasComponent/fziRJTu03/fziRJTu03.js\";import PointingFinger from\"#framer/local/canvasComponent/gl_xMJqVZ/gl_xMJqVZ.js\";import CentralIconSystem from\"#framer/local/canvasComponent/K6qW4qtWi/K6qW4qtWi.js\";import NavigationMenu1 from\"#framer/local/canvasComponent/OHj2FaBXC/OHj2FaBXC.js\";import Footer02 from\"#framer/local/canvasComponent/oKiTOWIAm/oKiTOWIAm.js\";import AccordionComponent from\"#framer/local/canvasComponent/W6ylrvnyo/W6ylrvnyo.js\";import ComponentsButtons,*as ComponentsButtonsInfo from\"#framer/local/canvasComponent/zVyIAnggH/zVyIAnggH.js\";import{withRedirectOnClick}from\"#framer/local/codeFile/sRA9P1s/ButtonURL.js\";import{withPreloadResources}from\"#framer/local/codeFile/hcJj0jh/Preload.js\";import*as sharedStyle from\"#framer/local/css/KjIsYIga7/KjIsYIga7.js\";import*as sharedStyle1 from\"#framer/local/css/uPWnE5UxT/uPWnE5UxT.js\";import getLocalizedValue,{usePreloadLocalizedValues}from\"#framer/local/localization/augiA20Il/augiA20Il.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavigationMenu1Fonts=getFonts(NavigationMenu1);const NavigationMenu1WithVariantAppearEffect=withVariantAppearEffect(NavigationMenu1);const PhosphorFonts=getFonts(Phosphor);const TickerFonts=getFonts(Ticker);const GenderSelectorFonts=getFonts(GenderSelector);const ComponentsButtonsFonts=getFonts(ComponentsButtons);const ShinyButtonWebFonts=getFonts(ShinyButtonWeb);const ShinyButtonWebWithRedirectOnClickchqeq8WithMappedReactProps1dv4yfb=withMappedReactProps(withCodeBoundaryForOverrides(ShinyButtonWeb,{nodeId:\"Bv48YZm8r\",override:withRedirectOnClick,scopeId:\"augiA20Il\"}),ShinyButtonWebInfo);const PointingFingerFonts=getFonts(PointingFinger);const FormContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(FormContainer);const CentralIconSystemFonts=getFonts(CentralIconSystem);const MotionDivWithFX=withFX(motion.div);const VideoFonts=getFonts(Video);const ContainerWithFX=withFX(Container);const AnimatedNumberCounterFonts=getFonts(AnimatedNumberCounter);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const Ticker1Fonts=getFonts(Ticker1);const AccordionComponentFonts=getFonts(AccordionComponent);const Footer02Fonts=getFonts(Footer02);const EmbedFonts=getFonts(Embed);const ShinyButtonWebWithRedirectOnClick1gvnz1tWithMappedReactProps1dv4yfb=withMappedReactProps(withCodeBoundaryForOverrides(ShinyButtonWeb,{nodeId:\"Xun_UY7xf\",override:withRedirectOnClick,scopeId:\"augiA20Il\"}),ShinyButtonWebInfo);const FormContainerWithPreloadResources9m7u68WithOptimizedAppearEffect=withOptimizedAppearEffect(withCodeBoundaryForOverrides(FormContainer,{nodeId:\"kYS8Sw8wi\",override:withPreloadResources,scopeId:\"augiA20Il\"}));const ValuePropFonts=getFonts(ValueProp);const ValuePropWithVariantAppearEffect=withVariantAppearEffect(ValueProp);const ComponentsButtonsWithRedirectOnClick5fc9b4WithMappedReactProps1vzmiw8=withMappedReactProps(withCodeBoundaryForOverrides(ComponentsButtons,{nodeId:\"rQDACWseP\",override:withRedirectOnClick,scopeId:\"augiA20Il\"}),ComponentsButtonsInfo);const breakpoints={Gaq3RBewR:\"(min-width: 1200px) and (max-width: 1439px)\",LxElt_WQy:\"(max-width: 809px)\",peZoEXpC7:\"(min-width: 810px) and (max-width: 1199px)\",WQLkyLRf1:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-P78N0\";const variantClassNames={Gaq3RBewR:\"framer-v-tq4mg1\",LxElt_WQy:\"framer-v-1ohnnv4\",peZoEXpC7:\"framer-v-1s4sp1d\",WQLkyLRf1:\"framer-v-72rtr7\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition1={bounce:.4,delay:.2,duration:.5,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:4,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20};const transition2={bounce:.2,delay:.2,duration:.4,type:\"spring\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:20};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,x:0,y:0};const transition3={bounce:.5,delay:0,duration:.4,type:\"spring\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation6={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0};const transition4={bounce:.5,delay:.1,duration:.4,type:\"spring\"};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const transition5={bounce:.5,delay:.2,duration:.4,type:\"spring\"};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const transition6={bounce:.5,delay:.3,duration:.4,type:\"spring\"};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const transition7={bounce:.5,delay:.4,duration:.4,type:\"spring\"};const animation10={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7,x:0,y:0};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop LG\":\"WQLkyLRf1\",Desktop:\"Gaq3RBewR\",Phone:\"LxElt_WQy\",Tablet:\"peZoEXpC7\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};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);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const elementId=useRouteElementId(\"DKc7sctvi\");const ref1=React.useRef(null);usePreloadLocalizedValues(activeLocale);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"LxElt_WQy\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"peZoEXpC7\")return false;return true;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"LxElt_WQy\")return true;return false;};const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"peZoEXpC7\")return true;return false;};const elementId1=useRouteElementId(\"jq7DPJfCk\");const ref2=React.useRef(null);const isDisplayed4=()=>{if(!isBrowser())return true;if([\"peZoEXpC7\",\"LxElt_WQy\"].includes(baseVariant))return false;return true;};const elementId2=useRouteElementId(\"Xun_UY7xf\");const ref3=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(0, 0, 0); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-qaa54h-container\",nodeId:\"L7EhznWev\",rendersWithMotion:true,scopeId:\"augiA20Il\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Gaq3RBewR:{aVmOv9FBA:resolvedLinks[1]},LxElt_WQy:{aVmOv9FBA:resolvedLinks[3],variant:\"QeOfrSqBt\"},peZoEXpC7:{aVmOv9FBA:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(NavigationMenu1WithVariantAppearEffect,{__framer__animateOnce:false,__framer__threshold:1,__framer__variantAppearEffectEnabled:true,aVmOv9FBA:resolvedLinks[0],height:\"100%\",id:\"L7EhznWev\",layoutId:\"L7EhznWev\",style:{width:\"100%\"},variant:\"Oer7mCQmW\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1x11qds\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1d7gvww\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cv2dee\",\"data-framer-name\":\"Container\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vd7ono\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2zdew2\",\"data-framer-name\":\"Left\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-8c6h8k\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3xjb63\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wsyb1w\",\"data-framer-name\":\"Avatars\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LxElt_WQy:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 40\"><path d=\"M 14.629 2.444 C 13.83 3.056 12.946 3.815 12.234 4.66 C 10.97 6.161 9.717 7.853 8.64 9.545 C 7.913 10.689 6.969 12.424 6.453 13.7 C 5.767 15.399 5.36 16.589 4.984 18.455 C 4.453 21.084 4.526 23.782 5.065 26.326 C 5.858 30.068 8.396 33.199 10.932 35.74 C 12.916 37.729 15.583 39.029 17.927 39.985 L 18.169 39.255 C 15.847 38.309 13.385 37.045 11.484 35.137 C 9.038 32.683 6.779 29.69 5.805 26.123 C 5.211 23.952 5.073 21.57 5.385 19.264 C 5.657 17.243 6.343 15.218 7.011 13.376 C 7.561 11.863 8.201 10.683 8.982 9.442 C 9.973 7.867 11.061 6.331 12.218 4.929 C 12.967 4.021 13.969 3.202 14.773 2.586 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 13.613 37.755 C 13.613 37.755 11.967 37.161 10.661 37.336 C 8.587 37.614 8.396 39.082 8.396 39.082 C 8.396 39.082 9.228 39.671 11.012 39.447 C 13.103 39.185 13.613 37.755 13.613 37.755 Z M 10.81 35.562 C 10.81 35.562 9.423 34.812 8.108 34.823 C 5.831 34.842 5.694 36.221 5.694 36.221 C 5.694 36.221 6.518 36.899 8.342 36.871 C 10.445 36.839 10.81 35.562 10.81 35.562 Z M 8.737 33.256 C 8.737 33.256 7.417 31.938 6.142 31.574 C 3.933 30.943 3.201 32.408 3.201 32.408 C 3.201 32.408 4.022 33.531 5.794 34.025 C 7.837 34.593 8.737 33.256 8.737 33.256 Z M 6.395 29.705 C 6.395 29.705 5.267 28.349 3.722 27.808 C 1.707 27.102 0.76 28.488 0.732 28.523 C 0.732 28.523 1.558 29.708 3.281 30.227 C 5.592 30.924 6.395 29.705 6.395 29.705 Z M 5.279 26.878 C 5.279 26.878 4.229 25.054 2.662 24.193 C 1.14 23.356 0.028 24.069 0 24.097 C 0 24.097 0.782 25.726 2.221 26.507 C 4.175 27.568 5.28 26.878 5.28 26.878 Z M 4.941 24.398 C 4.38 23.797 4.338 22.162 3.537 20.835 C 2.419 18.984 0.574 19.118 0.547 19.136 C 0.547 19.136 0.744 21.442 2.142 22.835 C 3.628 24.316 4.941 24.398 4.941 24.398 Z M 4.786 20.511 C 4.786 20.511 4.84 18.507 4.377 16.985 C 3.73 14.862 1.965 14.445 1.935 14.453 C 1.935 14.453 1.648 16.724 2.671 18.491 C 3.759 20.369 4.786 20.511 4.786 20.511 Z M 5.533 16.755 C 5.533 16.755 5.886 15.073 5.707 13.474 C 5.438 11.065 3.794 10.556 3.763 10.559 C 3.763 10.559 3.2 12.79 4.001 14.7 C 4.853 16.73 5.533 16.755 5.533 16.755 Z M 6.982 12.722 C 6.982 12.722 7.554 11.2 7.481 9.591 C 7.379 7.358 6.052 6.415 6.021 6.414 C 6.021 6.414 4.741 7.729 5.476 10.561 C 5.922 12.278 6.982 12.722 6.982 12.722 Z M 8.824 9.406 C 8.824 9.406 9.675 7.912 9.91 6.323 C 10.131 4.832 9.6 3.207 9.482 3.058 C 9.482 3.058 8.098 3.752 8.149 6.414 C 8.184 8.205 8.824 9.406 8.824 9.406 Z M 11.087 6.207 C 11.087 6.207 12.102 4.975 12.366 3.291 C 12.585 1.895 12.364 0.379 12.134 0 C 12.134 0 10.811 0.937 10.715 3.308 C 10.642 5.097 10.983 5.949 11.087 6.207 Z M 12.729 4.245 C 12.729 4.245 14.663 4.324 15.624 3.688 C 16.699 2.976 17.754 1.431 17.838 0.98 C 17.838 0.98 16.145 0.133 14.566 1.679 C 13.374 2.847 12.822 3.981 12.729 4.245 Z M 10.599 6.904 C 10.599 6.904 11.524 5.67 13.113 5.351 C 14.338 5.105 15.279 5.332 15.884 5.734 C 15.884 5.734 14.951 7.096 13.164 7.284 C 11.6 7.448 10.829 7.015 10.599 6.904 Z M 8.688 9.751 C 8.688 9.751 9.569 8.566 11.158 8.248 C 12.383 8.002 12.971 8.254 13.575 8.656 C 13.575 8.656 12.83 9.955 11.043 10.143 C 9.479 10.307 8.918 9.862 8.688 9.751 Z M 6.833 13.464 C 6.833 13.464 7.656 12.004 9.143 11.291 C 10.667 10.56 11.45 10.909 12.105 11.188 C 11.896 11.546 11.041 13.036 9.654 13.484 C 8.143 13.971 7.076 13.529 6.833 13.464 Z M 5.732 16.762 C 5.732 16.762 6.461 15.239 7.9 14.406 C 9.374 13.553 10.177 13.837 10.848 14.062 C 10.662 14.436 9.902 15.992 8.547 16.551 C 7.07 17.161 5.979 16.807 5.732 16.762 Z M 5.154 20.681 C 5.785 19.759 6.128 18.767 7.098 17.781 C 8.294 16.565 9.32 16.953 10.016 17.031 C 9.674 17.765 9.159 18.926 8.095 19.801 C 6.821 20.849 5.404 20.673 5.154 20.681 Z M 5.233 24.292 C 5.769 23.295 6.023 22.518 6.891 21.414 C 7.96 20.053 8.973 20.295 9.673 20.284 C 9.404 21.057 8.952 22.214 7.98 23.219 C 6.817 24.423 5.48 24.252 5.233 24.292 Z M 5.922 27.171 C 6.729 25.751 6.627 25.429 7.417 24.251 C 8.265 22.986 9.337 23.021 10.033 22.946 C 9.82 23.742 9.501 24.817 8.597 25.901 C 7.633 27.056 6.63 26.907 5.922 27.171 Z M 7.248 29.993 C 7.757 28.736 7.669 27.951 8.135 27.06 C 8.898 25.603 9.646 25.54 10.343 25.465 C 9.787 27.281 9.916 27.289 9.304 28.395 C 8.709 29.471 7.9 29.615 7.248 29.993 Z M 8.846 32.365 C 9.136 31.021 8.842 30.61 9.151 29.634 C 9.657 28.038 10.381 27.814 11.053 27.59 C 10.975 28.661 11.092 29.341 10.565 30.502 C 10.194 31.322 9.424 31.853 8.846 32.365 Z M 12.068 29.726 C 12.068 29.726 12.649 31.006 12.456 32.49 C 12.182 34.592 11.197 34.907 11.197 34.907 C 11.197 34.907 10.636 33.951 10.693 32.013 C 10.754 29.942 12.068 29.726 12.068 29.726 Z M 14.166 31.867 C 14.166 31.867 14.748 33.163 14.621 34.656 C 14.458 36.569 13.539 37.048 13.539 37.048 C 13.539 37.048 12.96 35.98 12.936 34.368 C 12.898 31.907 14.166 31.867 14.166 31.867 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:10265110686}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1kx8b0v\",\"data-framer-name\":\"Laurel\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 30 50\"><path d=\"M 21.944 3.055 C 20.744 3.82 19.419 4.768 18.351 5.825 C 16.456 7.701 14.576 9.816 12.96 11.931 C 11.869 13.361 10.453 15.53 9.68 17.125 C 8.65 19.248 8.04 20.736 7.475 23.068 C 6.679 26.355 6.789 29.727 7.598 32.907 C 8.787 37.585 12.594 41.499 16.398 44.676 C 19.374 47.161 23.375 48.787 26.89 49.981 L 27.253 49.069 C 23.77 47.886 20.078 46.306 17.226 43.922 C 13.557 40.854 10.169 37.113 8.707 32.654 C 7.816 29.94 7.61 26.963 8.077 24.079 C 8.486 21.554 9.515 19.022 10.517 16.72 C 11.341 14.828 12.302 13.354 13.473 11.802 C 14.959 9.833 16.592 7.914 18.327 6.161 C 19.451 5.026 20.953 4.002 22.16 3.232 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 20.42 47.193 C 20.42 47.193 17.951 46.452 15.992 46.67 C 12.881 47.017 12.594 48.852 12.594 48.852 C 12.594 48.852 13.842 49.588 16.519 49.308 C 19.655 48.981 20.42 47.193 20.42 47.193 Z M 16.215 44.453 C 16.215 44.453 14.134 43.515 12.162 43.529 C 8.746 43.553 8.541 45.276 8.541 45.276 C 8.541 45.276 9.778 46.124 12.513 46.089 C 15.668 46.049 16.215 44.453 16.215 44.453 Z M 13.105 41.57 C 13.105 41.57 11.126 39.923 9.212 39.467 C 5.899 38.678 4.802 40.51 4.802 40.51 C 4.802 40.51 6.033 41.914 8.691 42.531 C 11.756 43.242 13.105 41.57 13.105 41.57 Z M 9.592 37.131 C 9.592 37.131 7.9 35.436 5.584 34.76 C 2.561 33.877 1.14 35.61 1.099 35.653 C 1.099 35.653 2.337 37.135 4.921 37.784 C 8.388 38.655 9.592 37.131 9.592 37.131 Z M 7.919 33.598 C 7.919 33.598 6.343 31.318 3.993 30.241 C 1.709 29.195 0.041 30.086 0 30.121 C 0 30.121 1.173 32.158 3.331 33.134 C 6.263 34.46 7.919 33.598 7.919 33.598 Z M 7.411 30.498 C 6.57 29.746 6.507 27.702 5.305 26.044 C 3.628 23.73 0.862 23.898 0.82 23.92 C 0.82 23.92 1.116 26.802 3.214 28.544 C 5.443 30.396 7.411 30.498 7.411 30.498 Z M 7.179 25.639 C 7.179 25.639 7.261 23.134 6.565 21.231 C 5.595 18.577 2.948 18.056 2.902 18.067 C 2.902 18.067 2.472 20.905 4.007 23.114 C 5.638 25.461 7.179 25.639 7.179 25.639 Z M 8.3 20.944 C 8.3 20.944 8.828 18.841 8.561 16.843 C 8.158 13.832 5.692 13.194 5.645 13.199 C 5.645 13.199 4.799 15.988 6.002 18.375 C 7.28 20.913 8.3 20.944 8.3 20.944 Z M 10.473 15.903 C 10.473 15.903 11.331 14 11.221 11.989 C 11.069 9.198 9.078 8.019 9.031 8.017 C 9.031 8.017 7.112 9.661 8.214 13.201 C 8.883 15.348 10.473 15.903 10.473 15.903 Z M 13.236 11.758 C 13.236 11.758 14.512 9.89 14.865 7.904 C 15.197 6.04 14.401 4.009 14.223 3.822 C 14.223 3.822 12.146 4.69 12.224 8.018 C 12.277 10.256 13.236 11.758 13.236 11.758 Z M 16.631 7.759 C 16.631 7.759 18.153 6.219 18.549 4.114 C 18.877 2.369 18.547 0.473 18.201 0 C 18.201 0 16.216 1.172 16.072 4.135 C 15.963 6.372 16.474 7.436 16.631 7.759 Z M 19.094 5.306 C 19.094 5.306 21.994 5.405 23.435 4.61 C 25.049 3.72 26.632 1.788 26.757 1.225 C 26.757 1.225 24.217 0.166 21.849 2.099 C 20.061 3.558 19.233 4.976 19.094 5.306 Z M 15.899 8.63 C 15.899 8.63 17.286 7.087 19.67 6.688 C 21.507 6.381 22.919 6.665 23.826 7.167 C 23.826 7.167 22.427 8.87 19.746 9.105 C 17.399 9.31 16.244 8.769 15.899 8.63 Z M 13.033 12.188 C 13.033 12.188 14.353 10.708 16.737 10.309 C 18.574 10.002 19.456 10.317 20.363 10.819 C 20.363 10.819 19.246 12.444 16.564 12.679 C 14.218 12.884 13.377 12.327 13.033 12.188 Z M 10.25 16.83 C 10.25 16.83 11.484 15.005 13.715 14.114 C 16.001 13.2 17.175 13.637 18.158 13.985 C 17.845 14.432 16.561 16.295 14.481 16.854 C 12.214 17.464 10.615 16.911 10.25 16.83 Z M 8.599 20.952 C 8.599 20.952 9.692 19.049 11.85 18.008 C 14.061 16.941 15.265 17.296 16.272 17.577 C 15.993 18.044 14.854 19.99 12.821 20.689 C 10.605 21.451 8.968 21.008 8.599 20.952 Z M 7.731 25.851 C 8.678 24.698 9.192 23.459 10.648 22.226 C 12.441 20.706 13.98 21.191 15.024 21.289 C 14.51 22.206 13.738 23.658 12.143 24.752 C 10.232 26.062 8.106 25.841 7.731 25.851 Z M 7.849 30.365 C 8.653 29.119 9.035 28.147 10.336 26.767 C 11.94 25.066 13.46 25.368 14.509 25.355 C 14.106 26.321 13.427 27.767 11.971 29.024 C 10.226 30.529 8.219 30.315 7.849 30.365 Z M 8.883 33.964 C 10.094 32.188 9.941 31.786 11.126 30.314 C 12.398 28.733 14.005 28.776 15.05 28.683 C 14.73 29.677 14.252 31.022 12.895 32.376 C 11.449 33.82 9.945 33.634 8.884 33.964 Z M 10.872 37.491 C 11.635 35.92 11.503 34.939 12.203 33.825 C 13.347 32.004 14.469 31.925 15.514 31.832 C 14.681 34.101 14.874 34.111 13.956 35.493 C 13.063 36.838 11.85 37.019 10.872 37.491 Z M 13.269 40.456 C 13.704 38.776 13.263 38.262 13.727 37.042 C 14.486 35.048 15.572 34.768 16.579 34.487 C 16.463 35.826 16.638 36.676 15.848 38.127 C 15.29 39.152 14.136 39.817 13.269 40.456 Z M 18.102 37.158 C 18.102 37.158 18.974 38.758 18.684 40.612 C 18.274 43.24 16.796 43.633 16.796 43.633 C 16.796 43.633 15.954 42.439 16.04 40.016 C 16.131 37.428 18.102 37.158 18.102 37.158 Z M 21.249 39.834 C 21.249 39.834 22.122 41.454 21.931 43.32 C 21.687 45.711 20.308 46.31 20.308 46.31 C 20.308 46.31 19.44 44.975 19.403 42.96 C 19.347 39.884 21.25 39.834 21.25 39.834 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:11696580306,withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vef0u5\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ijlav9\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LxElt_WQy:{children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTZXJpZi1pdGFsaWM=\",\"--framer-font-family\":'\"Instrument Serif\", \"Instrument Serif Placeholder\", serif',\"--framer-font-size\":\"14px\",\"--framer-font-style\":\"italic\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"17px\",\"--framer-text-color\":\"var(--token-33e0fed0-68bf-4387-99ff-2f4118b4723f, rgb(255, 255, 255))\"},children:\"#1 Cheater Busting App \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTZXJpZi1pdGFsaWM=\",\"--framer-font-family\":'\"Instrument Serif\", \"Instrument Serif Placeholder\", serif',\"--framer-font-size\":\"18px\",\"--framer-font-style\":\"italic\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-33e0fed0-68bf-4387-99ff-2f4118b4723f, rgb(255, 255, 255))\"},children:\"#1 Cheater Busting App \"})}),className:\"framer-h0ca58\",fonts:[\"GF;Instrument Serif-italic\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-htzjeg\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-8q5u3q-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Wn4oqrnXI\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:getLocalizedValue(\"v2\",activeLocale)??\"House\",iconSelection:\"Star\",id:\"Wn4oqrnXI\",layoutId:\"Wn4oqrnXI\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-xp0bif-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"C7Bjyzftg\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:getLocalizedValue(\"v2\",activeLocale)??\"House\",iconSelection:\"Star\",id:\"C7Bjyzftg\",layoutId:\"C7Bjyzftg\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fgp2ix-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"xzcmAcOu0\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:getLocalizedValue(\"v2\",activeLocale)??\"House\",iconSelection:\"Star\",id:\"xzcmAcOu0\",layoutId:\"xzcmAcOu0\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mv60t5-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Jwm3fq8xU\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:getLocalizedValue(\"v2\",activeLocale)??\"House\",iconSelection:\"Star\",id:\"Jwm3fq8xU\",layoutId:\"Jwm3fq8xU\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-c90ker-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Bh5AyXxJR\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:getLocalizedValue(\"v2\",activeLocale)??\"House\",iconSelection:\"Star\",id:\"Bh5AyXxJR\",layoutId:\"Bh5AyXxJR\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Gaq3RBewR:{svgContentId:10405820795},LxElt_WQy:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 40\"><path d=\"M 4.673 2.444 C 5.507 3.056 6.429 3.815 7.172 4.66 C 8.491 6.161 9.798 7.853 10.922 9.545 C 11.681 10.689 12.666 12.424 13.205 13.7 C 13.921 15.399 14.345 16.589 14.738 18.455 C 15.292 21.084 15.215 23.782 14.653 26.326 C 13.825 30.068 11.177 33.199 8.531 35.74 C 6.461 37.729 3.678 39.029 1.232 39.985 L 0.981 39.256 C 3.405 38.309 5.973 37.045 7.957 35.137 C 10.509 32.683 12.866 29.69 13.883 26.123 C 14.503 23.952 14.646 21.57 14.321 19.263 C 14.037 17.243 13.321 15.218 12.624 13.376 C 12.051 11.863 11.382 10.683 10.567 9.441 C 9.534 7.867 8.398 6.331 7.191 4.929 C 6.409 4.021 5.364 3.202 4.525 2.585 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 5.737 37.755 C 5.737 37.755 7.454 37.161 8.817 37.336 C 10.981 37.614 11.181 39.082 11.181 39.082 C 11.181 39.082 10.313 39.671 8.451 39.447 C 6.269 39.185 5.737 37.755 5.737 37.755 Z M 8.658 35.562 C 8.658 35.562 10.105 34.812 11.478 34.823 C 13.854 34.842 13.996 36.221 13.996 36.221 C 13.996 36.221 13.136 36.899 11.233 36.871 C 9.039 36.839 8.658 35.562 8.658 35.562 Z M 10.826 33.256 C 10.826 33.256 12.202 31.938 13.533 31.574 C 15.838 30.943 16.601 32.408 16.601 32.408 C 16.601 32.408 15.745 33.531 13.896 34.025 C 11.764 34.593 10.826 33.256 10.826 33.256 Z M 13.267 29.705 C 13.267 29.705 14.444 28.349 16.056 27.808 C 18.159 27.102 19.147 28.488 19.176 28.523 C 19.176 28.523 18.314 29.708 16.516 30.227 C 14.105 30.924 13.267 29.705 13.267 29.705 Z M 14.431 26.878 C 14.431 26.878 15.527 25.054 17.162 24.193 C 18.751 23.356 19.911 24.069 19.94 24.097 C 19.94 24.097 19.124 25.726 17.623 26.507 C 15.584 27.568 14.431 26.878 14.431 26.878 Z M 14.783 24.398 C 15.368 23.797 15.411 22.162 16.248 20.835 C 17.414 18.984 19.339 19.118 19.368 19.136 C 19.368 19.136 19.162 21.441 17.703 22.835 C 16.152 24.316 14.783 24.398 14.783 24.398 Z M 14.947 20.511 C 14.947 20.511 14.89 18.507 15.374 16.985 C 16.048 14.862 17.89 14.445 17.922 14.453 C 17.922 14.453 18.221 16.724 17.153 18.491 C 16.019 20.369 14.947 20.511 14.947 20.511 Z M 14.166 16.755 C 14.166 16.755 13.799 15.073 13.985 13.474 C 14.266 11.065 15.981 10.556 16.014 10.559 C 16.014 10.559 16.602 12.79 15.765 14.7 C 14.876 16.73 14.166 16.755 14.166 16.755 Z M 12.656 12.722 C 12.656 12.722 12.058 11.2 12.135 9.591 C 12.241 7.358 13.626 6.415 13.659 6.414 C 13.659 6.414 14.994 7.729 14.227 10.561 C 13.762 12.278 12.656 12.722 12.656 12.722 Z M 10.73 9.406 C 10.73 9.406 9.842 7.912 9.596 6.323 C 9.366 4.832 9.919 3.207 10.043 3.058 C 10.043 3.058 11.488 3.752 11.434 6.414 C 11.397 8.205 10.73 9.406 10.73 9.406 Z M 8.37 6.207 C 8.37 6.207 7.311 4.975 7.036 3.291 C 6.807 1.895 7.037 0.378 7.278 0 C 7.278 0 8.659 0.937 8.759 3.308 C 8.835 5.097 8.48 5.949 8.37 6.207 Z M 6.658 4.245 C 6.658 4.245 4.641 4.324 3.639 3.688 C 2.516 2.976 1.415 1.431 1.328 0.98 C 1.328 0.98 3.095 0.133 4.742 1.679 C 5.986 2.847 6.562 3.981 6.658 4.245 Z M 8.881 6.904 C 8.881 6.904 7.916 5.67 6.258 5.351 C 4.98 5.105 3.998 5.332 3.367 5.734 C 3.367 5.734 4.34 7.096 6.205 7.284 C 7.838 7.448 8.641 7.015 8.881 6.904 Z M 10.871 9.751 C 10.871 9.751 9.952 8.566 8.294 8.248 C 7.016 8.002 6.403 8.254 5.772 8.656 C 5.772 8.656 6.549 9.955 8.414 10.143 C 10.046 10.307 10.631 9.862 10.871 9.751 Z M 12.811 13.464 C 12.811 13.464 11.953 12.004 10.401 11.291 C 8.81 10.56 7.994 10.909 7.31 11.188 C 7.528 11.546 8.42 13.036 9.868 13.484 C 11.445 13.971 12.557 13.529 12.811 13.464 Z M 13.956 16.762 C 13.956 16.762 13.196 15.239 11.695 14.406 C 10.156 13.553 9.319 13.837 8.618 14.062 C 8.812 14.436 9.605 15.992 11.019 16.551 C 12.561 17.161 13.699 16.807 13.956 16.762 Z M 14.559 20.681 C 13.901 19.759 13.543 18.767 12.53 17.781 C 11.283 16.565 10.212 16.953 9.485 17.031 C 9.843 17.765 10.38 18.926 11.49 19.801 C 12.819 20.849 14.299 20.673 14.559 20.681 Z M 14.481 24.292 C 13.922 23.295 13.656 22.518 12.751 21.414 C 11.635 20.053 10.578 20.295 9.848 20.284 C 10.128 21.057 10.601 22.214 11.614 23.219 C 12.828 24.423 14.223 24.252 14.481 24.292 Z M 13.76 27.171 C 12.918 25.751 13.024 25.429 12.2 24.251 C 11.315 22.986 10.197 23.021 9.471 22.946 C 9.693 23.742 10.026 24.817 10.969 25.901 C 11.975 27.056 13.022 26.907 13.76 27.171 Z M 12.377 29.993 C 11.846 28.736 11.938 27.951 11.451 27.06 C 10.655 25.603 9.875 25.54 9.148 25.465 C 9.728 27.281 9.594 27.289 10.232 28.395 C 10.853 29.471 11.697 29.615 12.377 29.993 Z M 10.707 32.365 C 10.404 31.021 10.711 30.61 10.389 29.634 C 9.86 28.038 9.105 27.814 8.405 27.59 C 8.485 28.661 8.364 29.341 8.913 30.502 C 9.301 31.322 10.104 31.853 10.707 32.365 Z M 7.348 29.726 C 7.348 29.726 6.741 31.006 6.942 32.49 C 7.228 34.592 8.256 34.907 8.256 34.907 C 8.256 34.907 8.841 33.951 8.782 32.013 C 8.718 29.942 7.348 29.726 7.348 29.726 Z M 5.157 31.867 C 5.157 31.867 4.55 33.163 4.683 34.656 C 4.853 36.569 5.812 37.048 5.812 37.048 C 5.812 37.048 6.415 35.98 6.441 34.368 C 6.481 31.907 5.157 31.867 5.157 31.867 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:9316794340},peZoEXpC7:{svgContentId:10405820795}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-j6tco2\",\"data-framer-name\":\"Laurel\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 30 50\"><path d=\"M 7.01 3.055 C 8.261 3.82 9.644 4.768 10.759 5.825 C 12.736 7.701 14.698 9.816 16.383 11.931 C 17.522 13.361 19 15.53 19.807 17.125 C 20.881 19.248 21.517 20.736 22.107 23.068 C 22.937 26.355 22.823 29.727 21.979 32.907 C 20.738 37.585 16.766 41.499 12.797 44.676 C 9.691 47.161 5.516 48.787 1.848 49.981 L 1.472 49.07 C 5.107 47.886 8.959 46.306 11.935 43.922 C 15.764 40.854 19.299 37.113 20.825 32.654 C 21.754 29.94 21.97 26.962 21.482 24.079 C 21.055 21.553 19.982 19.022 18.936 16.72 C 18.076 14.828 17.074 13.354 15.851 11.802 C 14.301 9.833 12.597 7.914 10.786 6.161 C 9.614 5.026 8.046 4.002 6.787 3.232 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 8.605 47.193 C 8.605 47.193 11.181 46.451 13.226 46.67 C 16.472 47.017 16.771 48.852 16.771 48.852 C 16.771 48.852 15.469 49.588 12.676 49.309 C 9.404 48.981 8.605 47.193 8.605 47.193 Z M 12.986 44.453 C 12.986 44.453 15.158 43.515 17.216 43.529 C 20.78 43.553 20.994 45.276 20.994 45.276 C 20.994 45.276 19.704 46.124 16.85 46.089 C 13.558 46.049 12.986 44.453 12.986 44.453 Z M 16.238 41.57 C 16.238 41.57 18.303 39.923 20.3 39.467 C 23.757 38.678 24.902 40.51 24.902 40.51 C 24.902 40.51 23.617 41.914 20.844 42.531 C 17.646 43.242 16.238 41.57 16.238 41.57 Z M 19.901 37.131 C 19.901 37.131 21.667 35.436 24.084 34.76 C 27.238 33.877 28.72 35.61 28.764 35.653 C 28.764 35.653 27.471 37.135 24.775 37.784 C 21.158 38.655 19.901 37.131 19.901 37.131 Z M 21.647 33.598 C 21.647 33.598 23.291 31.318 25.744 30.241 C 28.127 29.196 29.867 30.086 29.91 30.121 C 29.91 30.121 28.686 32.158 26.435 33.134 C 23.375 34.46 21.647 33.598 21.647 33.598 Z M 22.174 30.498 C 23.051 29.746 23.117 27.702 24.371 26.044 C 26.121 23.73 29.008 23.898 29.051 23.919 C 29.051 23.919 28.742 26.802 26.554 28.544 C 24.228 30.395 22.174 30.498 22.174 30.498 Z M 22.42 25.639 C 22.42 25.639 22.335 23.134 23.061 21.231 C 24.073 18.577 26.835 18.056 26.883 18.067 C 26.883 18.067 27.332 20.905 25.73 23.114 C 24.028 25.461 22.42 25.639 22.42 25.639 Z M 21.25 20.944 C 21.25 20.944 20.699 18.841 20.978 16.843 C 21.399 13.832 23.972 13.194 24.021 13.199 C 24.021 13.199 24.903 15.988 23.648 18.375 C 22.314 20.913 21.25 20.944 21.25 20.944 Z M 18.984 15.903 C 18.984 15.903 18.087 14 18.202 11.989 C 18.362 9.198 20.439 8.019 20.488 8.017 C 20.488 8.017 22.49 9.661 21.34 13.201 C 20.643 15.348 18.983 15.903 18.983 15.903 Z M 16.094 11.758 C 16.094 11.758 14.763 9.89 14.394 7.904 C 14.049 6.04 14.879 4.009 15.065 3.822 C 15.065 3.822 17.231 4.69 17.15 8.018 C 17.096 10.256 16.094 11.758 16.094 11.758 Z M 12.555 7.759 C 12.555 7.759 10.967 6.219 10.554 4.114 C 10.211 2.369 10.556 0.473 10.917 0 C 10.917 0 12.988 1.171 13.139 4.135 C 13.252 6.371 12.719 7.436 12.555 7.759 Z M 9.988 5.306 C 9.988 5.306 6.962 5.405 5.458 4.61 C 3.774 3.72 2.122 1.788 1.992 1.225 C 1.992 1.225 4.642 0.166 7.113 2.099 C 8.979 3.558 9.842 4.976 9.988 5.306 Z M 13.322 8.63 C 13.322 8.63 11.874 7.087 9.387 6.688 C 7.47 6.381 5.997 6.665 5.05 7.167 C 5.05 7.167 6.51 8.87 9.308 9.105 C 11.756 9.31 12.962 8.769 13.322 8.63 Z M 16.307 12.188 C 16.307 12.188 14.929 10.708 12.441 10.309 C 10.524 10.002 9.604 10.317 8.658 10.819 C 8.658 10.819 9.823 12.444 12.621 12.679 C 15.07 12.884 15.947 12.327 16.307 12.188 Z M 19.216 16.83 C 19.216 16.83 17.929 15.005 15.601 14.114 C 13.216 13.2 11.99 13.637 10.964 13.985 C 11.292 14.432 12.631 16.295 14.801 16.854 C 17.167 17.464 18.836 16.911 19.216 16.83 Z M 20.935 20.952 C 20.935 20.952 19.794 19.049 17.542 18.008 C 15.234 16.941 13.978 17.296 12.927 17.577 C 13.219 18.044 14.408 19.99 16.529 20.689 C 18.841 21.451 20.549 21.008 20.935 20.952 Z M 21.838 25.851 C 20.851 24.698 20.314 23.459 18.795 22.226 C 16.924 20.706 15.318 21.191 14.228 21.289 C 14.765 22.206 15.57 23.658 17.235 24.752 C 19.229 26.062 21.448 25.841 21.838 25.851 Z M 21.722 30.365 C 20.883 29.119 20.484 28.147 19.126 26.767 C 17.453 25.066 15.867 25.368 14.772 25.355 C 15.192 26.321 15.901 27.767 17.421 29.024 C 19.242 30.529 21.335 30.315 21.722 30.365 Z M 20.64 33.964 C 19.377 32.188 19.537 31.786 18.301 30.314 C 16.973 28.733 15.296 28.776 14.206 28.683 C 14.54 29.677 15.039 31.022 16.454 32.376 C 17.963 33.82 19.533 33.634 20.64 33.964 Z M 18.566 37.491 C 17.77 35.92 17.907 34.939 17.177 33.825 C 15.983 32.004 14.812 31.925 13.722 31.832 C 14.592 34.101 14.39 34.111 15.348 35.493 C 16.279 36.838 17.545 37.019 18.566 37.491 Z M 16.06 40.456 C 15.606 38.776 16.067 38.262 15.583 37.042 C 14.791 35.048 13.658 34.768 12.607 34.487 C 12.728 35.826 12.545 36.676 13.37 38.127 C 13.952 39.152 15.156 39.817 16.06 40.456 Z M 11.021 37.158 C 11.021 37.158 10.111 38.758 10.414 40.612 C 10.842 43.24 12.384 43.633 12.384 43.633 C 12.384 43.633 13.262 42.439 13.173 40.016 C 13.077 37.428 11.021 37.158 11.021 37.158 Z M 7.735 39.834 C 7.735 39.834 6.825 41.454 7.024 43.32 C 7.279 45.711 8.717 46.31 8.717 46.31 C 8.717 46.31 9.623 44.975 9.662 42.96 C 9.721 39.884 7.735 39.834 7.735 39.834 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:9630581628,withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gx71ym\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LxElt_WQy:{children:getLocalizedValue(\"v4\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1ioy1ge\",\"data-styles-preset\":\"uPWnE5UxT\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Find any Tinder profile instantly\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v3\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-13mz23t\",\"data-styles-preset\":\"KjIsYIga7\",children:\"Find any Tinder profile instantly\"})}),className:\"framer-17cfcmk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LxElt_WQy:{children:getLocalizedValue(\"v7\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO09wZW4gUnVuZGUgTWVkaXVt\",\"--framer-font-family\":'\"Open Runde Medium\", \"Open Runde Medium Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.9)\"},children:\"Find out if your partner has an active Tinder profile in minutes with AI.\"})})},peZoEXpC7:{children:getLocalizedValue(\"v6\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO09wZW4gUnVuZGUgTWVkaXVt\",\"--framer-font-family\":'\"Open Runde Medium\", \"Open Runde Medium Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.4px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.9)\"},children:\"Find out if your partner has an active Tinder profile in minutes with AI.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v5\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO09wZW4gUnVuZGUgTWVkaXVt\",\"--framer-font-family\":'\"Open Runde Medium\", \"Open Runde Medium Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-letter-spacing\":\"-0.4px\",\"--framer-line-height\":\"36px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.9)\"},children:\"Find out if your partner has an active Tinder profile in minutes with AI.\"})}),className:\"framer-6yo6vs\",fonts:[\"CUSTOM;Open Runde Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c7tw93 hidden-1ohnnv4\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v8\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-97757a51-1afb-44db-b8f8-3232da9cc024, rgba(255, 255, 255, 0.6))\"},children:\"Featured in\"})}),className:\"framer-9l7dvh\",fonts:[\"FS;Clash Display-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-9mfgma-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"XHPgT4kms\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:30,height:\"100%\",hoverFactor:1,id:\"XHPgT4kms\",layoutId:\"XHPgT4kms\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:20,intrinsicWidth:42,pixelHeight:544,pixelWidth:1476,sizes:\"88px\",src:\"https://framerusercontent.com/images/XC8hvAhq8nn6tjhgItST6J07I0.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/XC8hvAhq8nn6tjhgItST6J07I0.png?scale-down-to=512 512w,https://framerusercontent.com/images/XC8hvAhq8nn6tjhgItST6J07I0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/XC8hvAhq8nn6tjhgItST6J07I0.png 1476w\"},className:\"framer-172c8dn\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:18,intrinsicWidth:62.5,pixelHeight:36,pixelWidth:125,src:\"https://framerusercontent.com/images/ckBD9BknWhQRfJOjMidH4reoEl4.png\"},className:\"framer-fihd5z\",\"data-framer-name\":\"Image-1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1579.5,intrinsicWidth:5512.5,pixelHeight:544,pixelWidth:1476,sizes:\"70px\",src:\"https://framerusercontent.com/images/ivd4wDxV5y4SC78nmh00J1TEE.png\",srcSet:\"https://framerusercontent.com/images/ivd4wDxV5y4SC78nmh00J1TEE.png?scale-down-to=512 512w,https://framerusercontent.com/images/ivd4wDxV5y4SC78nmh00J1TEE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ivd4wDxV5y4SC78nmh00J1TEE.png 1476w\"},className:\"framer-r7v74t\",\"data-framer-name\":\"Image 357\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:18,intrinsicWidth:98.5,pixelHeight:512,pixelWidth:1320,positionX:\"center\",positionY:\"center\",sizes:\"120px\",src:\"https://framerusercontent.com/images/Rqi9qVnFTtg0FoWSAAR9Ev6yI.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Rqi9qVnFTtg0FoWSAAR9Ev6yI.png?scale-down-to=512 512w,https://framerusercontent.com/images/Rqi9qVnFTtg0FoWSAAR9Ev6yI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Rqi9qVnFTtg0FoWSAAR9Ev6yI.png 1320w\"},className:\"framer-agv83o\",\"data-framer-name\":\"Image 12\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1579.5,intrinsicWidth:5512.5,pixelHeight:136,pixelWidth:369,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/jAt9N8Gl7igYEkwNScFxkG40Jts.png\"},className:\"framer-1b5c4zj\",\"data-framer-name\":\"Image 357\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:18,intrinsicWidth:62.5,pixelHeight:866,pixelWidth:2e3,sizes:\"102.5px\",src:\"https://framerusercontent.com/images/RQ0vorvVHCw2Jgdm0amsYuyEb4.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/RQ0vorvVHCw2Jgdm0amsYuyEb4.png?scale-down-to=512 512w,https://framerusercontent.com/images/RQ0vorvVHCw2Jgdm0amsYuyEb4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RQ0vorvVHCw2Jgdm0amsYuyEb4.png 2000w\"},className:\"framer-1ffr9vq\",\"data-framer-name\":\"Image-1\"})],speed:20,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-110zo19\",\"data-framer-name\":\"Right\",children:[isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w3wjpv hidden-1s4sp1d\",children:[/*#__PURE__*/_jsx(FormContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-1f6w3ck\",\"data-border\":true,\"data-framer-appear-id\":\"1f6w3ck\",initial:animation1,nodeId:\"iTsyRlm0o\",optimized:true,children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LxElt_WQy:{children:getLocalizedValue(\"v10\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.3px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d1140e87-b76a-4052-a512-b402c8759a89, rgb(23, 23, 23))\"},children:\"Who are you searching for?\"})}),fonts:[\"FS;Clash Display-semibold\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v9\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO09wZW4gUnVuZGUgU2VtaWJvbGQ=\",\"--framer-font-family\":'\"Open Runde Semibold\", \"Open Runde Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-d1140e87-b76a-4052-a512-b402c8759a89, rgb(23, 23, 23))\"},children:\"Who are you searching for?\"})}),className:\"framer-1u0qyun\",fonts:[\"CUSTOM;Open Runde Semibold\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsxs(\"label\",{className:\"framer-12tn5k1 hidden-1ohnnv4\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v11\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Name\"})}),className:\"framer-12jiqlg\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-m6o59e\",inputName:\"Name\",placeholder:getLocalizedValue(\"v12\",activeLocale)??\"Jane Smith\",type:\"text\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sdmb22\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ui6o39 hidden-72rtr7 hidden-tq4mg1\",children:isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LxElt_WQy:{height:185,width:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 540px) * 1.05 - 36px, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ykbff0-container hidden-72rtr7\",nodeId:\"UW9wxjVpJ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(GenderSelector,{height:\"100%\",id:\"UW9wxjVpJ\",layoutId:\"UW9wxjVpJ\",style:{width:\"100%\"},U4jHHBrNf:true,variant:\"z0W6K7IXJ\",width:\"100%\"})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"432px\",y:(componentViewport?.y||0)+6+0+0+0+0+100+0+0+0+0+4+0+32+124.4+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-17w67rc-container hidden-1ohnnv4\",nodeId:\"zNVSlB8FV\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ComponentsButtons,{altXzActk:\"rgb(255, 255, 255)\",aLVVkcpUq:getLocalizedValue(\"v14\",activeLocale)??\"lightning\",height:\"100%\",id:\"zNVSlB8FV\",layoutId:\"zNVSlB8FV\",Lo_1bT6lU:true,lOHZ5t4GK:getLocalizedValue(\"v13\",activeLocale)??\"Start Search\",NgtvlDlyO:\"99px\",style:{width:\"100%\"},variant:\"SEwVWBWVn\",wCF9onGcn:false,width:\"100%\",X_Z1yh6Ou:getLocalizedValue(\"v15\",activeLocale)??\"arrowright\",YU3kNSTH4:\"bold\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LxElt_WQy:{height:64,width:`calc(min(${componentViewport?.width||\"100vw\"} - 48px, 540px) * 1.05 - 36px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-chqeq8-container hidden-72rtr7 hidden-tq4mg1\",nodeId:\"Bv48YZm8r\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ShinyButtonWebWithRedirectOnClickchqeq8WithMappedReactProps1dv4yfb,{GhywlgwY0:24,height:\"100%\",id:\"Bv48YZm8r\",layoutId:\"Bv48YZm8r\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"label\",{className:\"framer-tmgaac hidden-1ohnnv4\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v16\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Location\"})}),className:\"framer-15wahac\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormSelect,{className:\"framer-9uys3t\",defaultValue:\"\",inputName:\"Location\",required:true,selectOptions:[{disabled:true,title:getLocalizedValue(\"v17\",activeLocale)??\"Select\u2026\",type:\"option\",value:\"\"},{title:getLocalizedValue(\"v18\",activeLocale)??\"Amsterdam\",type:\"option\",value:\"amsterdam\"},{title:getLocalizedValue(\"v19\",activeLocale)??\"Barcelona\",type:\"option\",value:\"barcelona\"}]})]}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LxElt_WQy:{height:74,width:\"96px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-hfz21w-container hidden-72rtr7 hidden-tq4mg1\",nodeId:\"bi1Gw1xoF\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PointingFinger,{height:\"100%\",id:\"bi1Gw1xoF\",layoutId:\"bi1Gw1xoF\",style:{height:\"100%\",width:\"100%\"},variant:\"yA7ntk5QT\",width:\"100%\"})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h90pxw\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11uopbz\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LxElt_WQy:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:\"18px\",y:(componentViewport?.y||0)+6+0+0+0+0+100+0+0+0+0+4+322.8+4+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1icqu17-container\",nodeId:\"C2ZB90woH\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LxElt_WQy:{variant:\"QHKlMXw6b\"}},children:/*#__PURE__*/_jsx(CentralIconSystem,{height:\"100%\",id:\"C2ZB90woH\",layoutId:\"C2ZB90woH\",riJtIX2WW:\"rgb(255, 255, 255)\",style:{height:\"100%\",width:\"100%\"},variant:\"mgiDHpfYe\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v20\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-4072d11d-a72f-41a1-a79e-25e5ce2aa1ad, rgb(249, 250, 251))\"},children:\"Private\"})}),className:\"framer-19rqd5j\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xjwdi6\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LxElt_WQy:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:\"18px\",y:(componentViewport?.y||0)+6+0+0+0+0+100+0+0+0+0+4+322.8+4+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-91r5y8-container\",nodeId:\"MKSWjDkDG\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LxElt_WQy:{variant:\"kmpMD_UYo\"}},children:/*#__PURE__*/_jsx(CentralIconSystem,{height:\"100%\",id:\"MKSWjDkDG\",layoutId:\"MKSWjDkDG\",riJtIX2WW:\"rgb(255, 255, 255)\",style:{height:\"100%\",width:\"100%\"},variant:\"mgiDHpfYe\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v21\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-4072d11d-a72f-41a1-a79e-25e5ce2aa1ad, rgb(249, 250, 251))\"},children:\"Instant results\"})}),className:\"framer-1dltj3e\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12qpc26\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LxElt_WQy:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:\"18px\",y:(componentViewport?.y||0)+6+0+0+0+0+100+0+0+0+0+4+322.8+4+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1teykac-container\",nodeId:\"hsWpGKlZc\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LxElt_WQy:{variant:\"nxS8hAqTG\"}},children:/*#__PURE__*/_jsx(CentralIconSystem,{height:\"100%\",id:\"hsWpGKlZc\",layoutId:\"hsWpGKlZc\",riJtIX2WW:\"rgb(255, 255, 255)\",style:{height:\"100%\",width:\"100%\"},variant:\"mgiDHpfYe\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v22\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-4072d11d-a72f-41a1-a79e-25e5ce2aa1ad, rgb(249, 250, 251))\"},children:\"99% accuracy\"})}),className:\"framer-11tr9uo\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lblhqw hidden-72rtr7 hidden-tq4mg1 hidden-1ohnnv4\",children:[/*#__PURE__*/_jsx(FormContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-3v4uzr\",\"data-border\":true,\"data-framer-appear-id\":\"3v4uzr\",initial:animation1,nodeId:\"OxbeRFAma\",optimized:true,children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v23\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.3px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d1140e87-b76a-4052-a512-b402c8759a89, rgb(23, 23, 23))\"},children:\"Who are you searching for?\"})}),className:\"framer-19bjatv\",fonts:[\"FS;Clash Display-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wcd398\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-86mu3s\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{peZoEXpC7:{width:`max(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 30px) / 2.125, 1px) - 36px, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:185,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1b2lxbf-container\",nodeId:\"ViewtvRKE\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(GenderSelector,{height:\"100%\",id:\"ViewtvRKE\",layoutId:\"ViewtvRKE\",style:{width:\"100%\"},U4jHHBrNf:true,variant:\"z0W6K7IXJ\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{peZoEXpC7:{width:`calc(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 30px) / 2.125, 1px) - 36px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,children:/*#__PURE__*/_jsx(Container,{className:\"framer-82qh25-container\",nodeId:\"JnxtlckLt\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ShinyButtonWeb,{GhywlgwY0:24,height:\"100%\",id:\"JnxtlckLt\",layoutId:\"JnxtlckLt\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:165,width:\"181px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1phpfux-container\",nodeId:\"BF8qqhB5Y\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PointingFinger,{height:\"100%\",id:\"BF8qqhB5Y\",layoutId:\"BF8qqhB5Y\",style:{height:\"100%\",width:\"100%\"},variant:\"yA7ntk5QT\",width:\"100%\"})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e8kqqe\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wblzi7\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:\"18px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1770tb6-container\",nodeId:\"mRtCYeD3P\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CentralIconSystem,{height:\"100%\",id:\"mRtCYeD3P\",layoutId:\"mRtCYeD3P\",riJtIX2WW:\"rgb(255, 255, 255)\",style:{height:\"100%\",width:\"100%\"},variant:\"QHKlMXw6b\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v20\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-4072d11d-a72f-41a1-a79e-25e5ce2aa1ad, rgb(249, 250, 251))\"},children:\"Private\"})}),className:\"framer-hnoqgq\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c6d7z1\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:\"18px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-gnhcc-container\",nodeId:\"CVHenoZLh\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CentralIconSystem,{height:\"100%\",id:\"CVHenoZLh\",layoutId:\"CVHenoZLh\",riJtIX2WW:\"rgb(255, 255, 255)\",style:{height:\"100%\",width:\"100%\"},variant:\"kmpMD_UYo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v21\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-4072d11d-a72f-41a1-a79e-25e5ce2aa1ad, rgb(249, 250, 251))\"},children:\"Instant results\"})}),className:\"framer-1fgzt5t\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2x8nel\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:\"18px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-u4xrhy-container\",nodeId:\"Bw0Zo7BUy\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CentralIconSystem,{height:\"100%\",id:\"Bw0Zo7BUy\",layoutId:\"Bw0Zo7BUy\",riJtIX2WW:\"rgb(255, 255, 255)\",style:{height:\"100%\",width:\"100%\"},variant:\"nxS8hAqTG\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v24\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-4072d11d-a72f-41a1-a79e-25e5ce2aa1ad, rgb(249, 250, 251))\"},children:\"99% accuracy\"})}),className:\"framer-19lhu27\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yy4sac hidden-72rtr7 hidden-tq4mg1 hidden-1s4sp1d\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v25\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-33e0fed0-68bf-4387-99ff-2f4118b4723f, rgb(255, 255, 255))\"},children:\"Featured in\"})}),className:\"framer-t7244\",fonts:[\"FS;Clash Display-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-174fgvs-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Mgp8kCTHl\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:30,height:\"100%\",hoverFactor:1,id:\"Mgp8kCTHl\",layoutId:\"Mgp8kCTHl\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:20,intrinsicWidth:42,pixelHeight:544,pixelWidth:1476,sizes:\"88px\",src:\"https://framerusercontent.com/images/XC8hvAhq8nn6tjhgItST6J07I0.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/XC8hvAhq8nn6tjhgItST6J07I0.png?scale-down-to=512 512w,https://framerusercontent.com/images/XC8hvAhq8nn6tjhgItST6J07I0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/XC8hvAhq8nn6tjhgItST6J07I0.png 1476w\"},className:\"framer-172c8dn\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:18,intrinsicWidth:62.5,pixelHeight:36,pixelWidth:125,src:\"https://framerusercontent.com/images/ckBD9BknWhQRfJOjMidH4reoEl4.png\"},className:\"framer-fihd5z\",\"data-framer-name\":\"Image-1\"})],speed:20,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-114ligw\",\"data-framer-name\":\"Feature 11\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-7p85fq\",\"data-framer-name\":\"Container\",id:elementId1,ref:ref2,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xmpc8m\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vqznsk\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ce8hks\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Gaq3RBewR:{children:getLocalizedValue(\"v27\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1ioy1ge\",\"data-styles-preset\":\"uPWnE5UxT\",children:[\"How does our \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 0, 79)\"},children:\"Tinder Profile\"}),\" \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 0, 79)\"},children:\"Search\"}),\" work?\"]})})},LxElt_WQy:{children:getLocalizedValue(\"v29\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-1.2px\",\"--framer-line-height\":\"40px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 29, 86)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c3e4741f-c2b3-4d0b-8b90-76e3b1fc9bd9, rgb(23, 23, 23))\"},children:\"How does our \"}),\"Tinder Profile Search \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c3e4741f-c2b3-4d0b-8b90-76e3b1fc9bd9, rgb(23, 23, 23))\"},children:\"work?\"})]})}),fonts:[\"FS;Clash Display-semibold\"]},peZoEXpC7:{children:getLocalizedValue(\"v28\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1ioy1ge\",\"data-styles-preset\":\"uPWnE5UxT\",children:[\"How does our \",/*#__PURE__*/_jsxs(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 0, 79)\"},children:[\"Tinder\",/*#__PURE__*/_jsx(\"br\",{}),\" Profile\"]}),\" \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(254, 1, 78)\"},children:\"Search\"}),\" work?\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v26\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1ioy1ge\",\"data-styles-preset\":\"uPWnE5UxT\",children:[\"How does our \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 0, 79)\"},children:\"Tinder Profile\"}),\" \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 0, 79)\"},children:\"Search\"}),\" work?\"]})}),className:\"framer-rdxxn7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LxElt_WQy:{children:getLocalizedValue(\"v31\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO09wZW4gUnVuZGUgTWVkaXVt\",\"--framer-font-family\":'\"Open Runde Medium\", \"Open Runde Medium Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(48, 48, 48, 0.64)\"},children:\"CheatEye uses AI technology to access Tinder's database in real-time, finding profiles that match your search criteria.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v30\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO09wZW4gUnVuZGUgTWVkaXVt\",\"--framer-font-family\":'\"Open Runde Medium\", \"Open Runde Medium Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(48, 48, 48, 0.64)\"},children:\"CheatEye uses AI technology to access Tinder's database in real-time, finding profiles that match your search criteria.\"})}),className:\"framer-1dznqy4\",fonts:[\"CUSTOM;Open Runde Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14yzmrh\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1spmnj3\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-godqh3\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-r2kini\",\"data-framer-name\":\"Item\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1m5zt0m\",\"data-framer-name\":\"Item\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dd2e5w\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wmrzx9\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nc3xxg\",\"data-border\":true,\"data-framer-name\":\"Icon Box\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v32\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO09wZW4gUnVuZGUgQm9sZA==\",\"--framer-font-family\":'\"Open Runde Bold\", \"Open Runde Bold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"0.3px\",\"--framer-line-height\":\"36px\",\"--framer-text-color\":\"var(--token-da31d7b2-975f-4457-926d-453d852fcf38, rgb(255, 0, 80))\"},children:\"1.\"})}),className:\"framer-7vclgh\",fonts:[\"CUSTOM;Open Runde Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-qnnafv hidden-1ohnnv4\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2 26\"></svg>',svgContentId:12369813430,withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18idi7j\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LxElt_WQy:{y:undefined},peZoEXpC7:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:\"24px\",y:(componentViewport?.y||0)+6+674+0+300.8+0+0+0+16+0+0+-26.5+0+0+0+0+12+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-14k90ar-container\",nodeId:\"XY8vOHyPw\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CentralIconSystem,{height:\"100%\",id:\"XY8vOHyPw\",layoutId:\"XY8vOHyPw\",riJtIX2WW:\"var(--token-da31d7b2-975f-4457-926d-453d852fcf38, rgb(255, 0, 80))\",style:{height:\"100%\",width:\"100%\"},variant:\"kIK_a6tMo\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v33\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"Q1VTVE9NO09wZW4gUnVuZGUgU2VtaWJvbGQ=\",\"--framer-font-family\":'\"Open Runde Semibold\", \"Open Runde Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-eca078b5-e884-46cb-9e6e-1e58380239fd, rgb(23, 23, 23))\"},children:\"Enter Search Details\"})}),className:\"framer-1jeid6z\",fonts:[\"CUSTOM;Open Runde Semibold\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-orbfbh hidden-1ohnnv4\",\"data-border\":true,\"data-framer-name\":\"Components / Badge\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pdr8b8\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v34\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO09wZW4gUnVuZGUgTWVkaXVt\",\"--framer-font-family\":'\"Open Runde Medium\", \"Open Runde Medium Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-a66782cf-96e6-4bec-8d95-fe45e3e85d3d, rgb(249, 250, 251))\"},children:\"~ 1 min\"})}),className:\"framer-17zc85d\",fonts:[\"CUSTOM;Open Runde Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17znjln\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1t0lawz\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-17wu6kg\",opacity:1,radius:99,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5 85\"><path d=\"M 0 0 L 7 0 L 7 85 L 0 85 Z\" fill=\"var(--token-da31d7b2-975f-4457-926d-453d852fcf38, rgb(255, 0, 80)) /* {&quot;name&quot;:&quot;brand/500&quot;} */\"></path></svg>',svgContentId:10564744421,withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-166btgj\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LxElt_WQy:{children:getLocalizedValue(\"v36\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO09wZW4gUnVuZGUgTWVkaXVt\",\"--framer-font-family\":'\"Open Runde Medium\", \"Open Runde Medium Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgba(48, 48, 48, 0.64)\"},children:\"Start by entering the person\u2019s name, age, and location where they use the app.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v35\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO09wZW4gUnVuZGUgTWVkaXVt\",\"--framer-font-family\":'\"Open Runde Medium\", \"Open Runde Medium Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgba(48, 48, 48, 0.64)\"},children:\"Start by entering the person\u2019s name, age, and location where they use the app.\"})}),className:\"framer-1j9cz1l\",fonts:[\"CUSTOM;Open Runde Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed2()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-pk0x0s hidden-72rtr7 hidden-tq4mg1 hidden-1s4sp1d\",\"data-border\":true,\"data-framer-name\":\"Components / Badge\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kol77f\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v37\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO09wZW4gUnVuZGUgTWVkaXVt\",\"--framer-font-family\":'\"Open Runde Medium\", \"Open Runde Medium Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"12px\",\"--framer-text-color\":\"var(--token-a66782cf-96e6-4bec-8d95-fe45e3e85d3d, rgb(249, 250, 251))\"},children:\"~ 1 min\"})}),className:\"framer-13r44ri\",fonts:[\"CUSTOM;Open Runde Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-69ktup\",\"data-framer-name\":\"Item\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1flg3rh\",\"data-framer-name\":\"Item\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4xpssp\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1625k84\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d9h0ps\",\"data-border\":true,\"data-framer-name\":\"Icon Box\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v38\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO09wZW4gUnVuZGUgQm9sZA==\",\"--framer-font-family\":'\"Open Runde Bold\", \"Open Runde Bold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"0.3px\",\"--framer-line-height\":\"36px\",\"--framer-text-color\":\"var(--token-da31d7b2-975f-4457-926d-453d852fcf38, rgb(255, 0, 80))\"},children:\"2.\"})}),className:\"framer-1jrfjkj\",fonts:[\"CUSTOM;Open Runde Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1o1i4iu hidden-1ohnnv4\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2 26\"></svg>',svgContentId:12369813430,withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r9c9au\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LxElt_WQy:{y:undefined},peZoEXpC7:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+6+674+0+300.8+0+0+0+16+170+0+-26.5+0+0+0+0+12+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-dxwe4k-container\",nodeId:\"eorOmqVF9\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CentralIconSystem,{height:\"100%\",id:\"eorOmqVF9\",layoutId:\"eorOmqVF9\",riJtIX2WW:\"var(--token-da31d7b2-975f-4457-926d-453d852fcf38, rgb(255, 0, 80))\",style:{height:\"100%\"},variant:\"WTar22FcH\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v39\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"Q1VTVE9NO09wZW4gUnVuZGUgU2VtaWJvbGQ=\",\"--framer-font-family\":'\"Open Runde Semibold\", \"Open Runde Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-eca078b5-e884-46cb-9e6e-1e58380239fd, rgb(23, 23, 23))\"},children:\"Let AI Do the Search\"})}),className:\"framer-zv48te\",fonts:[\"CUSTOM;Open Runde Semibold\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-xc914b hidden-1ohnnv4\",\"data-border\":true,\"data-framer-name\":\"Components / Badge\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-tuwf2o\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v40\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO09wZW4gUnVuZGUgTWVkaXVt\",\"--framer-font-family\":'\"Open Runde Medium\", \"Open Runde Medium Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-a66782cf-96e6-4bec-8d95-fe45e3e85d3d, rgb(249, 250, 251))\"},children:\"~ 2 min\"})}),className:\"framer-8vn2wm\",fonts:[\"CUSTOM;Open Runde Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17y2tk6\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-u1gq9h\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-dtsj2z\",opacity:1,radius:99,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5 85\"><path d=\"M 0 0 L 7 0 L 7 85 L 0 85 Z\" fill=\"var(--token-da31d7b2-975f-4457-926d-453d852fcf38, rgb(255, 0, 80)) /* {&quot;name&quot;:&quot;brand/500&quot;} */\"></path></svg>',svgContentId:10564744421,withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n9ehjg\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LxElt_WQy:{children:getLocalizedValue(\"v42\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO09wZW4gUnVuZGUgTWVkaXVt\",\"--framer-font-family\":'\"Open Runde Medium\", \"Open Runde Medium Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgba(48, 48, 48, 0.64)\"},children:\"Our advanced AI scans Tinder profiles securely and anonymously to find a match\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v41\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO09wZW4gUnVuZGUgTWVkaXVt\",\"--framer-font-family\":'\"Open Runde Medium\", \"Open Runde Medium Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgba(48, 48, 48, 0.64)\"},children:\"Our advanced AI scans Tinder profiles securely and anonymously to find a match\"})}),className:\"framer-1dr2xqw\",fonts:[\"CUSTOM;Open Runde Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed2()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1lt131x hidden-72rtr7 hidden-tq4mg1 hidden-1s4sp1d\",\"data-border\":true,\"data-framer-name\":\"Components / Badge\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-129slbq\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v43\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO09wZW4gUnVuZGUgTWVkaXVt\",\"--framer-font-family\":'\"Open Runde Medium\", \"Open Runde Medium Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"12px\",\"--framer-text-color\":\"var(--token-a66782cf-96e6-4bec-8d95-fe45e3e85d3d, rgb(249, 250, 251))\"},children:\"~ 2 min\"})}),className:\"framer-onwo26\",fonts:[\"CUSTOM;Open Runde Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-b1jt7r\",\"data-framer-name\":\"Item\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1m3xmhl\",\"data-framer-name\":\"Item\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bgc8ym\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-14z8d1l\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-feg3qb\",\"data-border\":true,\"data-framer-name\":\"Icon Box\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v44\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO09wZW4gUnVuZGUgQm9sZA==\",\"--framer-font-family\":'\"Open Runde Bold\", \"Open Runde Bold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"0.3px\",\"--framer-line-height\":\"36px\",\"--framer-text-color\":\"var(--token-da31d7b2-975f-4457-926d-453d852fcf38, rgb(255, 0, 80))\"},children:\"3.\"})}),className:\"framer-1vdwbp5\",fonts:[\"CUSTOM;Open Runde Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-brzz2b hidden-1ohnnv4\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2 26\"></svg>',svgContentId:12369813430,withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13dwqf5\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LxElt_WQy:{y:undefined},peZoEXpC7:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+6+674+0+300.8+0+0+0+16+340+0+-26.5+0+0+0+0+12+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-187m9q7-container\",nodeId:\"FkSzAVO__\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CentralIconSystem,{height:\"100%\",id:\"FkSzAVO__\",layoutId:\"FkSzAVO__\",riJtIX2WW:\"var(--token-da31d7b2-975f-4457-926d-453d852fcf38, rgb(255, 0, 80))\",style:{height:\"100%\"},variant:\"WTar22FcH\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v45\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"Q1VTVE9NO09wZW4gUnVuZGUgU2VtaWJvbGQ=\",\"--framer-font-family\":'\"Open Runde Semibold\", \"Open Runde Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-eca078b5-e884-46cb-9e6e-1e58380239fd, rgb(23, 23, 23))\"},children:\"Get Instant Results\"})}),className:\"framer-nqlap2\",fonts:[\"CUSTOM;Open Runde Semibold\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lfp270\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-bypvhn\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LxElt_WQy:{children:getLocalizedValue(\"v47\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO09wZW4gUnVuZGUgTWVkaXVt\",\"--framer-font-family\":'\"Open Runde Medium\", \"Open Runde Medium Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgba(48, 48, 48, 0.64)\"},children:\"See their detailed profile, including their bio, photos, last activity date, where they last used the app and more.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v46\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO09wZW4gUnVuZGUgTWVkaXVt\",\"--framer-font-family\":'\"Open Runde Medium\", \"Open Runde Medium Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgba(48, 48, 48, 0.64)\"},children:\"See their detailed profile, including their bio, photos, last activity date, where they last used the app and more.\"})}),className:\"framer-1skn0eh\",fonts:[\"CUSTOM;Open Runde Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})})})]})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12v7wm2\",\"data-framer-name\":\"Feature 11\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xarypa\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-19zapst\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-45yoy5\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6bloiw\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-14bo53s\",\"data-border\":true,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:false,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-af39m2-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"hXVlpUbt7\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:12,bottomLeftRadius:12,bottomRightRadius:12,controls:false,height:\"100%\",id:\"hXVlpUbt7\",isMixedBorderRadius:false,layoutId:\"hXVlpUbt7\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/GQLXwgqTzOsLfriGbjxVdXGdHIA.mp4\",srcType:\"Upload\",srcUrl:getLocalizedValue(\"v48\",activeLocale)??\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:1,style:{height:\"100%\",width:\"100%\"},topLeftRadius:12,topRightRadius:12,volume:25,width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3c3a7b\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LxElt_WQy:{children:getLocalizedValue(\"v50\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1ioy1ge\",\"data-styles-preset\":\"uPWnE5UxT\",style:{\"--framer-text-color\":\"var(--token-c3e4741f-c2b3-4d0b-8b90-76e3b1fc9bd9, rgb(23, 23, 23))\"},children:\"What you'll get\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v49\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1ioy1ge\",\"data-styles-preset\":\"uPWnE5UxT\",children:\"What you'll get\"})}),className:\"framer-12w8o4p\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LxElt_WQy:{children:getLocalizedValue(\"v52\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO09wZW4gUnVuZGUgTWVkaXVt\",\"--framer-font-family\":'\"Open Runde Medium\", \"Open Runde Medium Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(48, 48, 48, 0.64)\"},children:\"Your comprehensive report will include :\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v51\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO09wZW4gUnVuZGUgTWVkaXVt\",\"--framer-font-family\":'\"Open Runde Medium\", \"Open Runde Medium Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(48, 48, 48, 0.64)\"},children:\"Your comprehensive report will include :\"})}),className:\"framer-4zwzvo\",fonts:[\"CUSTOM;Open Runde Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1riqj3g\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1o9dtyf\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-bujs2t\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hsp6ag\",\"data-framer-name\":\"Container\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2ka0s\",\"data-border\":true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ritl6a\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LxElt_WQy:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:980,intrinsicWidth:1600,pixelHeight:2058,pixelWidth:1050,positionX:\"center\",positionY:\"top\",sizes:`calc(max(min(${componentViewport?.width||\"100vw\"} - 48px, 540px), 50px) * 0.4196)`,src:\"https://framerusercontent.com/images/zS8PvTIANwCEPMbE5AiFHxFqbI8.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/zS8PvTIANwCEPMbE5AiFHxFqbI8.png?scale-down-to=1024 522w,https://framerusercontent.com/images/zS8PvTIANwCEPMbE5AiFHxFqbI8.png?scale-down-to=2048 1044w,https://framerusercontent.com/images/zS8PvTIANwCEPMbE5AiFHxFqbI8.png 1050w\"}},peZoEXpC7:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:980,intrinsicWidth:1600,pixelHeight:2058,pixelWidth:1050,positionX:\"center\",positionY:\"top\",sizes:`calc(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 12px) / 2, 50px) * 2 - 568px)`,src:\"https://framerusercontent.com/images/zS8PvTIANwCEPMbE5AiFHxFqbI8.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/zS8PvTIANwCEPMbE5AiFHxFqbI8.png?scale-down-to=1024 522w,https://framerusercontent.com/images/zS8PvTIANwCEPMbE5AiFHxFqbI8.png?scale-down-to=2048 1044w,https://framerusercontent.com/images/zS8PvTIANwCEPMbE5AiFHxFqbI8.png 1050w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:980,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+6+1552.8+0+294.8+0+0+0+0+0+0+0+24),pixelHeight:2058,pixelWidth:1050,positionX:\"center\",positionY:\"top\",sizes:`calc(max((min(min(${componentViewport?.width||\"100vw\"} - 80px, 1200px), 650px) - 36px) / 4, 50px) * 4 - 461.4359px)`,src:\"https://framerusercontent.com/images/zS8PvTIANwCEPMbE5AiFHxFqbI8.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/zS8PvTIANwCEPMbE5AiFHxFqbI8.png?scale-down-to=1024 522w,https://framerusercontent.com/images/zS8PvTIANwCEPMbE5AiFHxFqbI8.png?scale-down-to=2048 1044w,https://framerusercontent.com/images/zS8PvTIANwCEPMbE5AiFHxFqbI8.png 1050w\"},className:\"framer-1w0zd33\",\"data-framer-name\":\"Edcdc\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LxElt_WQy:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:980,intrinsicWidth:1600,pixelHeight:3006,pixelWidth:1050,positionX:\"center\",positionY:\"bottom\",sizes:\"144px\",src:\"https://framerusercontent.com/images/cWJq6Aj9i4Eq4rys5Xv1iPpME.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/cWJq6Aj9i4Eq4rys5Xv1iPpME.png?scale-down-to=2048 715w,https://framerusercontent.com/images/cWJq6Aj9i4Eq4rys5Xv1iPpME.png 1050w\"}},peZoEXpC7:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:980,intrinsicWidth:1600,pixelHeight:3006,pixelWidth:1050,positionX:\"center\",positionY:\"bottom\",sizes:\"170px\",src:\"https://framerusercontent.com/images/cWJq6Aj9i4Eq4rys5Xv1iPpME.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/cWJq6Aj9i4Eq4rys5Xv1iPpME.png?scale-down-to=2048 715w,https://framerusercontent.com/images/cWJq6Aj9i4Eq4rys5Xv1iPpME.png 1050w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:980,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+6+1552.8+0+294.8+0+0+0+0+0+0+0+214-190),pixelHeight:3006,pixelWidth:1050,positionX:\"center\",positionY:\"bottom\",sizes:\"142.7564px\",src:\"https://framerusercontent.com/images/cWJq6Aj9i4Eq4rys5Xv1iPpME.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/cWJq6Aj9i4Eq4rys5Xv1iPpME.png?scale-down-to=2048 715w,https://framerusercontent.com/images/cWJq6Aj9i4Eq4rys5Xv1iPpME.png 1050w\"},className:\"framer-ixxtgj\",\"data-framer-name\":\"Edcdc\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hyvxda\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1e7h20u\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v53\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-c3e4741f-c2b3-4d0b-8b90-76e3b1fc9bd9, rgb(23, 23, 23))\"},children:\"\uD83D\uDDBC\uFE0F Profile Details\"})}),className:\"framer-x3r5wz\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v54\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO09wZW4gUnVuZGUgUmVndWxhcg==\",\"--framer-font-family\":'\"Open Runde Regular\", \"Open Runde Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgba(48, 48, 48, 0.64)\"},children:\"View their full bio, age, and name exactly as they appear on Tinder.\"})}),className:\"framer-605yuq\",fonts:[\"CUSTOM;Open Runde Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wtr80s\",\"data-border\":true,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yr7g97\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LxElt_WQy:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:908,intrinsicWidth:720,pixelHeight:740,pixelWidth:1504,positionX:\"center\",positionY:\"center\",sizes:\"312px\",src:\"https://framerusercontent.com/images/tHzBF9VtTHyDQVb6yHGsTjVms.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/tHzBF9VtTHyDQVb6yHGsTjVms.png?scale-down-to=512 512w,https://framerusercontent.com/images/tHzBF9VtTHyDQVb6yHGsTjVms.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tHzBF9VtTHyDQVb6yHGsTjVms.png 1504w\"}},peZoEXpC7:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:908,intrinsicWidth:720,pixelHeight:740,pixelWidth:1504,sizes:\"468px\",src:\"https://framerusercontent.com/images/tHzBF9VtTHyDQVb6yHGsTjVms.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/tHzBF9VtTHyDQVb6yHGsTjVms.png?scale-down-to=512 512w,https://framerusercontent.com/images/tHzBF9VtTHyDQVb6yHGsTjVms.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tHzBF9VtTHyDQVb6yHGsTjVms.png 1504w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:908,intrinsicWidth:720,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+6+1552.8+0+294.8+0+0+0+0+358+0+0+16),pixelHeight:740,pixelWidth:1504,sizes:`calc(max((min(min(${componentViewport?.width||\"100vw\"} - 80px, 1200px), 650px) - 36px) / 4, 50px) * 2 - 23px)`,src:\"https://framerusercontent.com/images/tHzBF9VtTHyDQVb6yHGsTjVms.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/tHzBF9VtTHyDQVb6yHGsTjVms.png?scale-down-to=512 512w,https://framerusercontent.com/images/tHzBF9VtTHyDQVb6yHGsTjVms.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tHzBF9VtTHyDQVb6yHGsTjVms.png 1504w\"},className:\"framer-7gmc1k\",\"data-border\":true,\"data-framer-name\":\"Modal\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e3j8kx\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v55\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-c3e4741f-c2b3-4d0b-8b90-76e3b1fc9bd9, rgb(23, 23, 23))\"},children:\"\u23F0 Last Dating Activity\"})}),className:\"framer-o1ngfl\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v56\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO09wZW4gUnVuZGUgUmVndWxhcg==\",\"--framer-font-family\":'\"Open Runde Regular\", \"Open Runde Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgba(48, 48, 48, 0.64)\"},children:\"Find out if their account is still active, including the last time and location they used Tinder.\"})}),className:\"framer-1ah8hrm\",fonts:[\"CUSTOM;Open Runde Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d6rnpf\",\"data-border\":true,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-c7chw9\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LxElt_WQy:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:908,intrinsicWidth:720,pixelHeight:434,pixelWidth:668,positionX:\"center\",positionY:\"top\",sizes:\"293px\",src:\"https://framerusercontent.com/images/KhQUqUBHQ1ceBnFG0acnbTeWjhQ.png\",srcSet:\"https://framerusercontent.com/images/KhQUqUBHQ1ceBnFG0acnbTeWjhQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/KhQUqUBHQ1ceBnFG0acnbTeWjhQ.png 668w\"}},peZoEXpC7:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:908,intrinsicWidth:720,pixelHeight:434,pixelWidth:668,positionX:\"center\",positionY:\"top\",sizes:\"293px\",src:\"https://framerusercontent.com/images/KhQUqUBHQ1ceBnFG0acnbTeWjhQ.png\",srcSet:\"https://framerusercontent.com/images/KhQUqUBHQ1ceBnFG0acnbTeWjhQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/KhQUqUBHQ1ceBnFG0acnbTeWjhQ.png 668w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:908,intrinsicWidth:720,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+6+1552.8+0+294.8+0+0+0+0+358+0+0+229-190),pixelHeight:434,pixelWidth:668,positionX:\"center\",positionY:\"top\",sizes:\"293px\",src:\"https://framerusercontent.com/images/KhQUqUBHQ1ceBnFG0acnbTeWjhQ.png\",srcSet:\"https://framerusercontent.com/images/KhQUqUBHQ1ceBnFG0acnbTeWjhQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/KhQUqUBHQ1ceBnFG0acnbTeWjhQ.png 668w\"},className:\"framer-3zwm7\",\"data-framer-name\":\"Modal\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jd7bwp\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v57\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-c3e4741f-c2b3-4d0b-8b90-76e3b1fc9bd9, rgb(23, 23, 23))\"},children:\"\uD83D\uDECE\uFE0F Account Updates\"})}),className:\"framer-3ecfwx\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v58\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO09wZW4gUnVuZGUgUmVndWxhcg==\",\"--framer-font-family\":'\"Open Runde Regular\", \"Open Runde Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgba(48, 48, 48, 0.64)\"},children:\"Stay informed about any updates to their profile info.\"})}),className:\"framer-1f9gi89\",fonts:[\"CUSTOM;Open Runde Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h0s4vw\",\"data-border\":true,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1d6qv26\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LxElt_WQy:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1470,intrinsicWidth:720,pixelHeight:329,pixelWidth:604,positionX:\"center\",positionY:\"center\",sizes:`calc(max(min(${componentViewport?.width||\"100vw\"} - 48px, 540px), 50px) - 48px)`,src:\"https://framerusercontent.com/images/3ab3Z01bd2hmmiDPvu2ESnFp1YA.png\",srcSet:\"https://framerusercontent.com/images/3ab3Z01bd2hmmiDPvu2ESnFp1YA.png?scale-down-to=512 512w,https://framerusercontent.com/images/3ab3Z01bd2hmmiDPvu2ESnFp1YA.png 604w\"}},peZoEXpC7:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1470,intrinsicWidth:720,pixelHeight:329,pixelWidth:604,positionX:\"center\",positionY:\"center\",sizes:`calc(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 12px) / 2, 50px) * 2 - 36px)`,src:\"https://framerusercontent.com/images/3ab3Z01bd2hmmiDPvu2ESnFp1YA.png\",srcSet:\"https://framerusercontent.com/images/3ab3Z01bd2hmmiDPvu2ESnFp1YA.png?scale-down-to=512 512w,https://framerusercontent.com/images/3ab3Z01bd2hmmiDPvu2ESnFp1YA.png 604w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1470,intrinsicWidth:720,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+6+1552.8+0+294.8+0+0+0+0+736+0+0+47),pixelHeight:329,pixelWidth:604,positionX:\"center\",positionY:\"center\",sizes:`calc(max((min(min(${componentViewport?.width||\"100vw\"} - 80px, 1200px), 650px) - 36px) / 4, 50px) * 4 - 12px)`,src:\"https://framerusercontent.com/images/3ab3Z01bd2hmmiDPvu2ESnFp1YA.png\",srcSet:\"https://framerusercontent.com/images/3ab3Z01bd2hmmiDPvu2ESnFp1YA.png?scale-down-to=512 512w,https://framerusercontent.com/images/3ab3Z01bd2hmmiDPvu2ESnFp1YA.png 604w\"},className:\"framer-fh33hr\",\"data-framer-name\":\"Image\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-woicjj\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v59\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-c3e4741f-c2b3-4d0b-8b90-76e3b1fc9bd9, rgb(23, 23, 23))\"},children:\"\uD83D\uDE31 Subscription Info\"})}),className:\"framer-fdou1k\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LxElt_WQy:{children:getLocalizedValue(\"v61\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO09wZW4gUnVuZGUgUmVndWxhcg==\",\"--framer-font-family\":'\"Open Runde Regular\", \"Open Runde Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgba(48, 48, 48, 0.64)\"},children:\"Discover whether they\u2019re using premium Tinder features like Tinder Gold or Tinder Plus.\"})}),fonts:[\"CUSTOM;Open Runde Regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v60\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgba(23, 23, 23, 0.7)\"},children:\"Discover whether they\u2019re using premium Tinder features like Tinder Gold or Tinder Plus.\"})}),className:\"framer-vqrhn5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dpqfex\",\"data-framer-name\":\"Feature 11\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-xhfi26\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-729ncj\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1whdnvr\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u7susw\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LxElt_WQy:{children:getLocalizedValue(\"v63\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1ioy1ge\",\"data-styles-preset\":\"uPWnE5UxT\",style:{\"--framer-text-color\":\"var(--token-c3e4741f-c2b3-4d0b-8b90-76e3b1fc9bd9, rgb(23, 23, 23))\"},children:\"Why people love CheatEye?\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v62\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1ioy1ge\",\"data-styles-preset\":\"uPWnE5UxT\",children:\"Why people love CheatEye?\"})}),className:\"framer-1fk8fry\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LxElt_WQy:{children:getLocalizedValue(\"v65\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO09wZW4gUnVuZGUgTWVkaXVt\",\"--framer-font-family\":'\"Open Runde Medium\", \"Open Runde Medium Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(48, 48, 48, 0.64)\"},children:\"Thousands of people trust CheatEye to help them let go of doubts and relationship anxiety.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v64\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO09wZW4gUnVuZGUgTWVkaXVt\",\"--framer-font-family\":'\"Open Runde Medium\", \"Open Runde Medium Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(48, 48, 48, 0.64)\"},children:\"Thousands of people trust CheatEye to help them let go of doubts and relationship anxiety.\"})}),className:\"framer-16gycow\",fonts:[\"CUSTOM;Open Runde Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fjzhmg\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-14xp86e\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gmparw\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-136w615\",\"data-border\":true,\"data-framer-name\":\"Item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ubxcn0\",\"data-framer-name\":\"Icon Box\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LxElt_WQy:{y:undefined},peZoEXpC7:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,width:\"28px\",y:(componentViewport?.y||0)+6+3051.6+0+302.8+0+0+0+0+0+20+0+15,children:/*#__PURE__*/_jsx(Container,{className:\"framer-otpe2z-container\",nodeId:\"iC6wUCLS_\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CentralIconSystem,{height:\"100%\",id:\"iC6wUCLS_\",layoutId:\"iC6wUCLS_\",riJtIX2WW:\"var(--token-da31d7b2-975f-4457-926d-453d852fcf38, rgb(255, 0, 80))\",style:{height:\"100%\",width:\"100%\"},variant:\"TTn3k5ZNy\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14ftsmp\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v66\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-c3e4741f-c2b3-4d0b-8b90-76e3b1fc9bd9, rgb(23, 23, 23))\"},children:\"100% Private and Secure\"})}),className:\"framer-16u6x9p\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v67\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO09wZW4gUnVuZGUgUmVndWxhcg==\",\"--framer-font-family\":'\"Open Runde Regular\", \"Open Runde Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgba(48, 48, 48, 0.64)\"},children:\"We will never share any information you provide, and the person you\u2019re searching for will never know you looked them up.\"})}),className:\"framer-1eyp9q3\",fonts:[\"CUSTOM;Open Runde Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ei3qa3\",\"data-border\":true,\"data-framer-name\":\"Item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-utlelg\",\"data-framer-name\":\"Icon Box\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LxElt_WQy:{y:undefined},peZoEXpC7:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,width:\"28px\",y:(componentViewport?.y||0)+6+3051.6+0+302.8+0+0+0+0+0+20+0+15,children:/*#__PURE__*/_jsx(Container,{className:\"framer-6dx1fb-container\",nodeId:\"qxv6ySCOs\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CentralIconSystem,{height:\"100%\",id:\"qxv6ySCOs\",layoutId:\"qxv6ySCOs\",riJtIX2WW:\"var(--token-da31d7b2-975f-4457-926d-453d852fcf38, rgb(255, 0, 80))\",style:{height:\"100%\",width:\"100%\"},variant:\"PzETkJF6P\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kbi10z\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v68\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-c3e4741f-c2b3-4d0b-8b90-76e3b1fc9bd9, rgb(23, 23, 23))\"},children:\"Quick and Easy\"})}),className:\"framer-ofstzy\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v69\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO09wZW4gUnVuZGUgUmVndWxhcg==\",\"--framer-font-family\":'\"Open Runde Regular\", \"Open Runde Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgba(48, 48, 48, 0.64)\"},children:\"No login required. Simply enter the person's information, and CheatEye will quickly reveal if they have an active Tinder profile.\"})}),className:\"framer-1ho6v1q\",fonts:[\"CUSTOM;Open Runde Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bahsqm\",\"data-border\":true,\"data-framer-name\":\"Item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-doat6o\",\"data-framer-name\":\"Icon Box\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LxElt_WQy:{y:undefined},peZoEXpC7:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,width:\"28px\",y:(componentViewport?.y||0)+6+3051.6+0+302.8+0+0+0+0+262+20+0+15,children:/*#__PURE__*/_jsx(Container,{className:\"framer-svbk0u-container\",nodeId:\"o2mirtKgH\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CentralIconSystem,{height:\"100%\",id:\"o2mirtKgH\",layoutId:\"o2mirtKgH\",riJtIX2WW:\"var(--token-da31d7b2-975f-4457-926d-453d852fcf38, rgb(255, 0, 80))\",style:{height:\"100%\",width:\"100%\"},variant:\"Y0IhXwnf9\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14uazui\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v70\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-c3e4741f-c2b3-4d0b-8b90-76e3b1fc9bd9, rgb(23, 23, 23))\"},children:\"Complete Data Profile\"})}),className:\"framer-12lbi4t\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v71\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO09wZW4gUnVuZGUgUmVndWxhcg==\",\"--framer-font-family\":'\"Open Runde Regular\", \"Open Runde Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgba(48, 48, 48, 0.64)\"},children:\"Get a detailed report with their bio, photos, last activity, Tinder subscription, and last used location.\"})}),className:\"framer-x1wlms\",fonts:[\"CUSTOM;Open Runde Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1calxck\",\"data-border\":true,\"data-framer-name\":\"Item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1toezh7\",\"data-framer-name\":\"Icon Box\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LxElt_WQy:{y:undefined},peZoEXpC7:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,width:\"28px\",y:(componentViewport?.y||0)+6+3051.6+0+302.8+0+0+0+0+262+20+0+15,children:/*#__PURE__*/_jsx(Container,{className:\"framer-3jmkg7-container\",nodeId:\"wb3qScV_n\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CentralIconSystem,{height:\"100%\",id:\"wb3qScV_n\",layoutId:\"wb3qScV_n\",riJtIX2WW:\"var(--token-da31d7b2-975f-4457-926d-453d852fcf38, rgb(255, 0, 80))\",style:{height:\"100%\",width:\"100%\"},variant:\"UIQb0i4a1\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xn130i\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v72\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-c3e4741f-c2b3-4d0b-8b90-76e3b1fc9bd9, rgb(23, 23, 23))\"},children:\"Smarter Searches\"})}),className:\"framer-cz2gq6\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v73\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO09wZW4gUnVuZGUgUmVndWxhcg==\",\"--framer-font-family\":'\"Open Runde Regular\", \"Open Runde Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgba(48, 48, 48, 0.64)\"},children:\"Even if they\u2019ve used a different name or changed their age, CheatEye will still find them.\"})}),className:\"framer-1sc1sl2\",fonts:[\"CUSTOM;Open Runde Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a20q16\",\"data-framer-name\":\"Feature 11\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ulpd7q\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-100qkso\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-11vpdha\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ptlanu\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LxElt_WQy:{children:getLocalizedValue(\"v75\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1ioy1ge\",\"data-styles-preset\":\"uPWnE5UxT\",style:{\"--framer-text-color\":\"var(--token-c3e4741f-c2b3-4d0b-8b90-76e3b1fc9bd9, rgb(23, 23, 23))\"},children:\"CheatEye in action\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v74\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1ioy1ge\",\"data-styles-preset\":\"uPWnE5UxT\",children:\"CheatEye in action\"})}),className:\"framer-98m0u1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LxElt_WQy:{height:107,width:\"107px\",y:undefined},peZoEXpC7:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:150,width:\"150px\",y:(componentViewport?.y||0)+6+3866.4+0+0+130.8-114.5,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LxElt_WQy:{style:{rotate:15}}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-o3vtjj-container\",nodeId:\"dCH0lO0lV\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:16},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LxElt_WQy:{variant:\"nxS8hAqTG\"}},children:/*#__PURE__*/_jsx(CentralIconSystem,{height:\"100%\",id:\"dCH0lO0lV\",layoutId:\"dCH0lO0lV\",riJtIX2WW:\"var(--token-da31d7b2-975f-4457-926d-453d852fcf38, rgb(255, 0, 81))\",style:{height:\"100%\",width:\"100%\"},variant:\"ZbRKitxo7\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-dd1gcc\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-hral94\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mx756n\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-72m79r\",\"data-border\":true,\"data-framer-name\":\"Item\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d3eoif\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-llqfd8-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"FuHZVgs59\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(AnimatedNumberCounter,{animation:{replay:true,transition:{bounce:0,delay:0,duration:1,type:\"spring\"},trigger:\"layerInView\"},color:{angle:180,color:\"var(--token-da31d7b2-975f-4457-926d-453d852fcf38, rgb(255, 0, 81))\",endColor:\"rgb(255, 255, 255)\",mode:\"solid\",startColor:\"rgb(0, 0, 0)\"},commas:true,decimals:0,end:100,font:{fontFamily:'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',fontFeatureSettings:\"'zero' on, 'tnum' on\",fontSize:\"48px\",fontStyle:\"normal\",fontWeight:600,letterSpacing:\"-0.02em\",lineHeight:\"1em\"},height:\"100%\",id:\"FuHZVgs59\",layoutId:\"FuHZVgs59\",mode:\"variants\",monospace:false,prefix:getLocalizedValue(\"v76\",activeLocale)??\"+\",start:0,suffix:getLocalizedValue(\"v77\",activeLocale)??\"%\",tag:\"p\",transition:{bounce:0,delay:0,duration:1,type:\"spring\"},userSelect:true,value:51,width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qc7rby\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v78\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"Q1VTVE9NO09wZW4gUnVuZGUgU2VtaWJvbGQ=\",\"--framer-font-family\":'\"Open Runde Semibold\", \"Open Runde Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-d1140e87-b76a-4052-a512-b402c8759a89, rgb(23, 23, 23))\"},children:\"Matched Profiles\"})}),className:\"framer-1ersgif\",fonts:[\"CUSTOM;Open Runde Semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v79\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO09wZW4gUnVuZGUgTWVkaXVt\",\"--framer-font-family\":'\"Open Runde Medium\", \"Open Runde Medium Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-85eceb08-7abc-4485-bc34-c8bec8140e4e, rgba(23, 23, 23, 0.6))\"},children:\"Users found who they were looking for.\"})}),className:\"framer-osd9ta\",fonts:[\"CUSTOM;Open Runde Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6rxxfm\",\"data-border\":true,\"data-framer-name\":\"Item\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17h2htb\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-buup6i-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"vaCUhNLI9\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(AnimatedNumberCounter,{animation:{replay:true,transition:{bounce:0,delay:0,duration:1,type:\"spring\"},trigger:\"layerInView\"},color:{angle:180,color:\"rgb(46, 124, 246)\",endColor:\"rgb(255, 255, 255)\",mode:\"solid\",startColor:\"rgb(0, 0, 0)\"},commas:true,decimals:0,end:100,font:{fontFamily:'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',fontFeatureSettings:\"'zero' on, 'tnum' on\",fontSize:\"48px\",fontStyle:\"normal\",fontWeight:600,letterSpacing:\"-0.02em\",lineHeight:\"1em\"},height:\"100%\",id:\"vaCUhNLI9\",layoutId:\"vaCUhNLI9\",mode:\"variants\",monospace:false,prefix:\"\",start:0,suffix:getLocalizedValue(\"v80\",activeLocale)??\"k+\",tag:\"p\",transition:{bounce:0,delay:0,duration:1,type:\"spring\"},userSelect:true,value:140,width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mms4cd\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v81\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"Q1VTVE9NO09wZW4gUnVuZGUgU2VtaWJvbGQ=\",\"--framer-font-family\":'\"Open Runde Semibold\", \"Open Runde Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-d1140e87-b76a-4052-a512-b402c8759a89, rgb(23, 23, 23))\"},children:\"Searches Completed\"})}),className:\"framer-188bcq7\",fonts:[\"CUSTOM;Open Runde Semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v82\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO09wZW4gUnVuZGUgTWVkaXVt\",\"--framer-font-family\":'\"Open Runde Medium\", \"Open Runde Medium Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-85eceb08-7abc-4485-bc34-c8bec8140e4e, rgba(23, 23, 23, 0.6))\"},children:\"Search for anyone anywhere in the world.\"})}),className:\"framer-1elazov\",fonts:[\"CUSTOM;Open Runde Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1264sdc\",\"data-border\":true,\"data-framer-name\":\"Item\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vgk4g\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rbptwe-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"XAX2Z02Zo\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(AnimatedNumberCounter,{animation:{replay:true,transition:{bounce:0,delay:0,duration:1,type:\"spring\"},trigger:\"layerInView\"},color:{angle:180,color:\"rgb(141, 28, 255)\",endColor:\"rgb(255, 255, 255)\",mode:\"solid\",startColor:\"rgb(0, 0, 0)\"},commas:true,decimals:0,end:100,font:{fontFamily:'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',fontFeatureSettings:\"'zero' on, 'tnum' on\",fontSize:\"48px\",fontStyle:\"normal\",fontWeight:600,letterSpacing:\"-0.02em\",lineHeight:\"1em\"},height:\"100%\",id:\"XAX2Z02Zo\",layoutId:\"XAX2Z02Zo\",mode:\"variants\",monospace:false,prefix:\"\",start:0,suffix:getLocalizedValue(\"v77\",activeLocale)??\"%\",tag:\"p\",transition:{bounce:0,delay:0,duration:1,type:\"spring\"},userSelect:true,value:95,width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-drexm5\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v83\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"Q1VTVE9NO09wZW4gUnVuZGUgU2VtaWJvbGQ=\",\"--framer-font-family\":'\"Open Runde Semibold\", \"Open Runde Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-d1140e87-b76a-4052-a512-b402c8759a89, rgb(23, 23, 23))\"},children:\"Customer Support Satisfaction\"})}),className:\"framer-skip4c\",fonts:[\"CUSTOM;Open Runde Semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v84\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO09wZW4gUnVuZGUgTWVkaXVt\",\"--framer-font-family\":'\"Open Runde Medium\", \"Open Runde Medium Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-85eceb08-7abc-4485-bc34-c8bec8140e4e, rgba(23, 23, 23, 0.6))\"},children:\"Here to help 24/7.\"})}),className:\"framer-5gcxbd\",fonts:[\"CUSTOM;Open Runde Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})]})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t4izuc\",\"data-framer-name\":\"Feature 11\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gzllz3\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1x7976b\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1m8fnxw\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-p71glc\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2n4jmn\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ffi9v9\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation5,className:\"framer-1ay2ci7-container\",\"data-framer-appear-id\":\"1ay2ci7\",initial:animation6,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"WCt0Jkcv2\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 166, 0)\",height:\"100%\",iconSearch:getLocalizedValue(\"v85\",activeLocale)??\"House\",iconSelection:\"Star\",id:\"WCt0Jkcv2\",layoutId:\"WCt0Jkcv2\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation7,className:\"framer-1dbuk8h-container\",\"data-framer-appear-id\":\"1dbuk8h\",initial:animation6,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"UqfQUwlJg\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 166, 0)\",height:\"100%\",iconSearch:getLocalizedValue(\"v2\",activeLocale)??\"House\",iconSelection:\"Star\",id:\"UqfQUwlJg\",layoutId:\"UqfQUwlJg\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation8,className:\"framer-1dfm029-container\",\"data-framer-appear-id\":\"1dfm029\",initial:animation6,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"wQ_ke_4jX\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 166, 0)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"wQ_ke_4jX\",layoutId:\"wQ_ke_4jX\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation9,className:\"framer-1rvd6de-container\",\"data-framer-appear-id\":\"1rvd6de\",initial:animation6,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"PiCvRIhrA\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 166, 0)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"PiCvRIhrA\",layoutId:\"PiCvRIhrA\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation10,className:\"framer-vw2hu0-container\",\"data-framer-appear-id\":\"vw2hu0\",initial:animation6,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"RouB2nQIo\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 166, 0)\",height:\"100%\",iconSearch:getLocalizedValue(\"v2\",activeLocale)??\"House\",iconSelection:\"Star\",id:\"RouB2nQIo\",layoutId:\"RouB2nQIo\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v86\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO09wZW4gUnVuZGUgTWVkaXVt\",\"--framer-font-family\":'\"Open Runde Medium\", \"Open Runde Medium Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(48, 48, 48, 0.64)\"},children:\"4,5/5 based on 1572 reviews\"})}),className:\"framer-45pu0x\",fonts:[\"CUSTOM;Open Runde Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LxElt_WQy:{children:getLocalizedValue(\"v88\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1ioy1ge\",\"data-styles-preset\":\"uPWnE5UxT\",style:{\"--framer-text-color\":\"var(--token-c3e4741f-c2b3-4d0b-8b90-76e3b1fc9bd9, rgb(23, 23, 23))\"},children:\"People just like you found the answer they were looking for \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v87\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1ioy1ge\",\"data-styles-preset\":\"uPWnE5UxT\",children:\"People just like you found the answer they were looking for \"})}),className:\"framer-i9tfc1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ncauj3\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xff0xr\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-17bqyl4-container\",isModuleExternal:true,nodeId:\"EvA1WcTQb\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{peZoEXpC7:{style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(Ticker1,{alignment:\"flex-start\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:15,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"EvA1WcTQb\",layoutId:\"EvA1WcTQb\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bxz62w\",\"data-border\":true,\"data-framer-name\":\"Item\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ay3kkd\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-i9v2b2\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation5,className:\"framer-8n4k7v-container\",\"data-framer-appear-id\":\"8n4k7v\",inComponentSlot:true,initial:animation6,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Rf_nSEqRF\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 166, 0)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"Rf_nSEqRF\",layoutId:\"Rf_nSEqRF\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation7,className:\"framer-64di4e-container\",\"data-framer-appear-id\":\"64di4e\",inComponentSlot:true,initial:animation6,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"iVfz22aRZ\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 166, 0)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"iVfz22aRZ\",layoutId:\"iVfz22aRZ\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation8,className:\"framer-8zslx0-container\",\"data-framer-appear-id\":\"8zslx0\",inComponentSlot:true,initial:animation6,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"NtLHP0py9\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 166, 0)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"NtLHP0py9\",layoutId:\"NtLHP0py9\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation9,className:\"framer-1tu0idf-container\",\"data-framer-appear-id\":\"1tu0idf\",inComponentSlot:true,initial:animation6,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"l1rXiagMO\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 166, 0)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"l1rXiagMO\",layoutId:\"l1rXiagMO\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation10,className:\"framer-7gtbho-container\",\"data-framer-appear-id\":\"7gtbho\",inComponentSlot:true,initial:animation6,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"lPMNmNS_W\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 166, 0)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"lPMNmNS_W\",layoutId:\"lPMNmNS_W\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v89\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"Q1VTVE9NO09wZW4gUnVuZGUgUmVndWxhcg==\",\"--framer-font-family\":'\"Open Runde Regular\", \"Open Runde Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-85eceb08-7abc-4485-bc34-c8bec8140e4e, rgba(23, 23, 23, 0.6))\"},children:\"2 days ago\"})}),className:\"framer-hsqrub\",fonts:[\"CUSTOM;Open Runde Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fqof2e\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v90\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO09wZW4gUnVuZGUgUmVndWxhcg==\",\"--framer-font-family\":'\"Open Runde Regular\", \"Open Runde Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgba(48, 48, 48, 0.64)\"},children:\"\u201CWas doing my casual 2am stalking and decided to try Cheateye. Found out my situationship had an active Tinder profile AND was seeing no less than six other girls at the same time.\u201D\"})}),className:\"framer-1b6209u\",fonts:[\"CUSTOM;Open Runde Regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v91\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-c3e4741f-c2b3-4d0b-8b90-76e3b1fc9bd9, rgb(23, 23, 23))\"},children:\"Angel, 25 years old\"})}),className:\"framer-cirz6e\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1uprj1f\",\"data-border\":true,\"data-framer-name\":\"Item\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1apszi0\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-geq3ec\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation5,className:\"framer-ueibug-container\",\"data-framer-appear-id\":\"ueibug\",inComponentSlot:true,initial:animation6,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Huckp7bNW\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 166, 0)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"Huckp7bNW\",layoutId:\"Huckp7bNW\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation7,className:\"framer-4fj36t-container\",\"data-framer-appear-id\":\"4fj36t\",inComponentSlot:true,initial:animation6,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"LZRS79UyV\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 166, 0)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"LZRS79UyV\",layoutId:\"LZRS79UyV\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation8,className:\"framer-1to7yjz-container\",\"data-framer-appear-id\":\"1to7yjz\",inComponentSlot:true,initial:animation6,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"GYohbIIWY\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 166, 0)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"GYohbIIWY\",layoutId:\"GYohbIIWY\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation9,className:\"framer-1a6aaxi-container\",\"data-framer-appear-id\":\"1a6aaxi\",inComponentSlot:true,initial:animation6,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"CnAhd2NeT\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 166, 0)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"CnAhd2NeT\",layoutId:\"CnAhd2NeT\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation10,className:\"framer-11gmln8-container\",\"data-framer-appear-id\":\"11gmln8\",inComponentSlot:true,initial:animation6,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"MCG7TkI8L\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 166, 0)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"MCG7TkI8L\",layoutId:\"MCG7TkI8L\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v92\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"Q1VTVE9NO09wZW4gUnVuZGUgUmVndWxhcg==\",\"--framer-font-family\":'\"Open Runde Regular\", \"Open Runde Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-85eceb08-7abc-4485-bc34-c8bec8140e4e, rgba(23, 23, 23, 0.6))\"},children:\"9 days ago\"})}),className:\"framer-i06ize\",fonts:[\"CUSTOM;Open Runde Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1uhlxur\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v93\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO09wZW4gUnVuZGUgUmVndWxhcg==\",\"--framer-font-family\":'\"Open Runde Regular\", \"Open Runde Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgba(48, 48, 48, 0.64)\"},children:'\"This app is the real deal.\\u2028\\u2028Found her profile with photos she swore she didn\u2019t even have anymore.\"'})}),className:\"framer-4m3sm7\",fonts:[\"CUSTOM;Open Runde Regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v94\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-c3e4741f-c2b3-4d0b-8b90-76e3b1fc9bd9, rgb(23, 23, 23))\"},children:\"Noah, 30 years old\"})}),className:\"framer-1etsl5z\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hoaaah\",\"data-border\":true,\"data-framer-name\":\"Item\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vocpag\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qqbl6m\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation5,className:\"framer-1td28ni-container\",\"data-framer-appear-id\":\"1td28ni\",inComponentSlot:true,initial:animation6,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"yzAQnA1jc\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 166, 0)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"yzAQnA1jc\",layoutId:\"yzAQnA1jc\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation7,className:\"framer-3j9cw4-container\",\"data-framer-appear-id\":\"3j9cw4\",inComponentSlot:true,initial:animation6,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ycQV3hMmw\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 166, 0)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"ycQV3hMmw\",layoutId:\"ycQV3hMmw\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation8,className:\"framer-19m6wrf-container\",\"data-framer-appear-id\":\"19m6wrf\",inComponentSlot:true,initial:animation6,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"z99Wew2QU\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 166, 0)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"z99Wew2QU\",layoutId:\"z99Wew2QU\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation9,className:\"framer-1kk4l57-container\",\"data-framer-appear-id\":\"1kk4l57\",inComponentSlot:true,initial:animation6,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"syWTZv3mk\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 166, 0)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"syWTZv3mk\",layoutId:\"syWTZv3mk\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation10,className:\"framer-139umn5-container\",\"data-framer-appear-id\":\"139umn5\",inComponentSlot:true,initial:animation6,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"e6xK32wLm\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 166, 0)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"e6xK32wLm\",layoutId:\"e6xK32wLm\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v95\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"Q1VTVE9NO09wZW4gUnVuZGUgUmVndWxhcg==\",\"--framer-font-family\":'\"Open Runde Regular\", \"Open Runde Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-85eceb08-7abc-4485-bc34-c8bec8140e4e, rgba(23, 23, 23, 0.6))\"},children:\"4 days ago\"})}),className:\"framer-xbll9i\",fonts:[\"CUSTOM;Open Runde Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-f1f60d\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v96\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO09wZW4gUnVuZGUgUmVndWxhcg==\",\"--framer-font-family\":'\"Open Runde Regular\", \"Open Runde Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgba(48, 48, 48, 0.64)\"},children:'\"This website is just brilliant. Honestly, thanks for the hours of therapy saved.\"'})}),className:\"framer-1v4sa72\",fonts:[\"CUSTOM;Open Runde Regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v97\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-c3e4741f-c2b3-4d0b-8b90-76e3b1fc9bd9, rgb(23, 23, 23))\"},children:\"Mary Belle, 38 years old\"})}),className:\"framer-ukk8rs\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1w7sp4\",\"data-border\":true,\"data-framer-name\":\"Item\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-abfrky\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fxc1i0\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation5,className:\"framer-1m32jqq-container\",\"data-framer-appear-id\":\"1m32jqq\",inComponentSlot:true,initial:animation6,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Vy3cCnnku\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 166, 0)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"Vy3cCnnku\",layoutId:\"Vy3cCnnku\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation7,className:\"framer-7b13g9-container\",\"data-framer-appear-id\":\"7b13g9\",inComponentSlot:true,initial:animation6,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ifYUd3mwG\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 166, 0)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"ifYUd3mwG\",layoutId:\"ifYUd3mwG\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation8,className:\"framer-duwi2s-container\",\"data-framer-appear-id\":\"duwi2s\",inComponentSlot:true,initial:animation6,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"EoFIpAkED\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 166, 0)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"EoFIpAkED\",layoutId:\"EoFIpAkED\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation9,className:\"framer-gppdo8-container\",\"data-framer-appear-id\":\"gppdo8\",inComponentSlot:true,initial:animation6,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"RJWO6uWDJ\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 166, 0)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"RJWO6uWDJ\",layoutId:\"RJWO6uWDJ\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation10,className:\"framer-1efnx9r-container\",\"data-framer-appear-id\":\"1efnx9r\",inComponentSlot:true,initial:animation6,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"uh3l9xKy5\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 166, 0)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"uh3l9xKy5\",layoutId:\"uh3l9xKy5\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v98\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"Q1VTVE9NO09wZW4gUnVuZGUgUmVndWxhcg==\",\"--framer-font-family\":'\"Open Runde Regular\", \"Open Runde Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-85eceb08-7abc-4485-bc34-c8bec8140e4e, rgba(23, 23, 23, 0.6))\"},children:\"7 days ago\"})}),className:\"framer-rkvd5q\",fonts:[\"CUSTOM;Open Runde Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hcmh55\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v99\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO09wZW4gUnVuZGUgUmVndWxhcg==\",\"--framer-font-family\":'\"Open Runde Regular\", \"Open Runde Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgba(48, 48, 48, 0.64)\"},children:'\"My ex was on there and he was cheating with a pic I took of him \uD83D\uDC80\uD83D\uDC80\uD83D\uDC80\"'})}),className:\"framer-snqa1x\",fonts:[\"CUSTOM;Open Runde Regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v100\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-c3e4741f-c2b3-4d0b-8b90-76e3b1fc9bd9, rgb(23, 23, 23))\"},children:\"Izzy, 27 years old\"})}),className:\"framer-12t8hof\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12td884\",\"data-border\":true,\"data-framer-name\":\"Item\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xz0a6u\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-sporpf\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation5,className:\"framer-1lpouz2-container\",\"data-framer-appear-id\":\"1lpouz2\",inComponentSlot:true,initial:animation6,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Iyd1YG8LL\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 166, 0)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"Iyd1YG8LL\",layoutId:\"Iyd1YG8LL\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation7,className:\"framer-15nes1y-container\",\"data-framer-appear-id\":\"15nes1y\",inComponentSlot:true,initial:animation6,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"BhGCKlSRM\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 166, 0)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"BhGCKlSRM\",layoutId:\"BhGCKlSRM\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation8,className:\"framer-p42wtc-container\",\"data-framer-appear-id\":\"p42wtc\",inComponentSlot:true,initial:animation6,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ZMymrxTXb\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 166, 0)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"ZMymrxTXb\",layoutId:\"ZMymrxTXb\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation9,className:\"framer-y8npdb-container\",\"data-framer-appear-id\":\"y8npdb\",inComponentSlot:true,initial:animation6,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"OlVCMo2gr\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 166, 0)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"OlVCMo2gr\",layoutId:\"OlVCMo2gr\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation10,className:\"framer-gxu0li-container\",\"data-framer-appear-id\":\"gxu0li\",inComponentSlot:true,initial:animation6,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Q_HdQxsOy\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 166, 0)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"Q_HdQxsOy\",layoutId:\"Q_HdQxsOy\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v101\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"Q1VTVE9NO09wZW4gUnVuZGUgUmVndWxhcg==\",\"--framer-font-family\":'\"Open Runde Regular\", \"Open Runde Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-85eceb08-7abc-4485-bc34-c8bec8140e4e, rgba(23, 23, 23, 0.6))\"},children:\"11 days ago\"})}),className:\"framer-rl61ss\",fonts:[\"CUSTOM;Open Runde Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-z6v663\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v102\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO09wZW4gUnVuZGUgUmVndWxhcg==\",\"--framer-font-family\":'\"Open Runde Regular\", \"Open Runde Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgba(48, 48, 48, 0.64)\"},children:'\"He told me someone is pretending to be him and now we ain\u2019t together his account is back up different bio n everything..\"'})}),className:\"framer-jdz4s7\",fonts:[\"CUSTOM;Open Runde Regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v103\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-c3e4741f-c2b3-4d0b-8b90-76e3b1fc9bd9, rgb(23, 23, 23))\"},children:\"Lena, 29 years old\"})}),className:\"framer-19ewj07\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})],speed:30,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13deimj\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t07p2j\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ko9f1p\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-6qft5m\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LxElt_WQy:{children:getLocalizedValue(\"v105\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1ioy1ge\",\"data-styles-preset\":\"uPWnE5UxT\",style:{\"--framer-text-color\":\"var(--token-c3e4741f-c2b3-4d0b-8b90-76e3b1fc9bd9, rgb(23, 23, 23))\"},children:\"Frequently asked questions\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v104\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1ioy1ge\",\"data-styles-preset\":\"uPWnE5UxT\",children:\"Frequently asked questions\"})}),className:\"framer-1gqgac4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wo04xb\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LxElt_WQy:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 540px)`,y:undefined},peZoEXpC7:{width:`max(min(${componentViewport?.width||\"100vw\"} - 80px, 1200px), 1px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1784,width:`max(min(min(${componentViewport?.width||\"100vw\"} - 80px, 1200px), 650px), 1px)`,y:(componentViewport?.y||0)+6+4787+48+0+0+92.8+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1g8tvtg-container\",nodeId:\"Ib1UPkt9l\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(AccordionComponent,{AeiBzzaLJ:true,aHgi0gzx9:getLocalizedValue(\"v119\",activeLocale)??\"Our comprehensive search results include:Profile verification status -Recent activity status - All profile information -Location information -Profile creation date -Last active timestamp -Profile matching score\",BAK_kOWZJ:true,BawZqjMW_:true,bYcMEYk1C:getLocalizedValue(\"v115\",activeLocale)??\"Yes, our Tinder profile search service is completely legal. We only access publicly available information and comply with all relevant data protection regulations. Our service exclusively searches public profile information, respects privacy settings, follows all applicable laws and regulations, and maintains user anonymity. We recommend using our service responsibly and in accordance with our terms of service.\",ci9Ei5h9k:getLocalizedValue(\"v116\",activeLocale)??\"Will the person know they're being searched?\",CLvOis_rh:true,DaWewJ6p3:getLocalizedValue(\"v118\",activeLocale)??\"What information will I get in the search results?\",Dk7Ml8VIY:getLocalizedValue(\"v134\",activeLocale)??\"What do you do with the data you collect?\",DKl8Qtpoz:true,Dv4yYtEWJ:true,EDlXvtl0q:getLocalizedValue(\"v106\",activeLocale)??\"How does the Tinder profile search work?\",EEB4zLMhq:getLocalizedValue(\"v122\",activeLocale)??\"Can I search Tinder profiles without an account?\",fbe_WnDs4:getLocalizedValue(\"v117\",activeLocale)??\"No, all searches are completely anonymous and discreet. Our system ensures: - No profile notifications - No trace of the search - Complete user privacySecure, encrypted searching The target profile will never know they've been searched, and your search history remains private and encrypted.\",height:\"100%\",HPnSNKRsU:getLocalizedValue(\"v107\",activeLocale)??\"Cheateye.ai analyzes Tinders profiles based on the information provided for the search and identifies matching profiles.\",HRhZ8ueBk:getLocalizedValue(\"v108\",activeLocale)??\"How accurate is the Tinder profile search?\",id:\"Ib1UPkt9l\",jrajs1x8C:getLocalizedValue(\"v124\",activeLocale)??\"What happens if no profile is found?\",Kh7hV4ML5:getLocalizedValue(\"v112\",activeLocale)??\"What information do I need to search for someone on Tinder?\",KVMQPFmNk:getLocalizedValue(\"v125\",activeLocale)??\"If no profile is found matching your search criteria,  we'll also provide suggestions to improve your search parameters and can perform additional searches with modified criteria to help find the profile you're looking for.\",layoutId:\"Ib1UPkt9l\",LkWlRCQ1I:getLocalizedValue(\"v121\",activeLocale)??\"Our database updates in real-time, ensuring you receive the most current information available. Search results include the latest profile activity, typically within the last 24 hours. We continuously monitor and update our database to maintain accuracy and relevance.\",luFqtPdaN:getLocalizedValue(\"v123\",activeLocale)??\"Yes, our service allows you to search Tinder profiles without having your own Tinder account. This provides complete anonymity and privacy while still delivering comprehensive search results.\",mx2lIBe7k:getLocalizedValue(\"v135\",activeLocale)??\"The data collected is encrypted and stored in accordance with best security practices and may be used internally and anonymously to improve our product.\",Nbhb7pogG:getLocalizedValue(\"v129\",activeLocale)??\"The search initiates upon form submission. Its duration can range from a few minutes to several hours, depending on the accuracy of the provided details. Once completed, an email will be sent to you, granting access to your user space where the results await.\",o3ayRfSa9:getLocalizedValue(\"v128\",activeLocale)??\"Are the results in real time?\",p0GR7pFgP:true,PqSsYFxw1:getLocalizedValue(\"v131\",activeLocale)??\"A search on Cheateye.ai costs $17.90.\",pwMKUypU8:true,pXkHgZpVU:true,qjB2mrPEX:true,QSD2lpBdw:getLocalizedValue(\"v109\",activeLocale)??\"Our Tinder profile search achieves a 98% accuracy rate through our advanced AI technology. We regularly update our database and verify results through multiple data points including profile information matching, location verification, activity status confirmation, and photo recognition technology. Each search goes through multiple verification steps to ensure you receive accurate, up-to-date results.\",reFw582jA:true,style:{width:\"100%\"},TewXXlTNy:getLocalizedValue(\"v113\",activeLocale)??\"To search for a Tinder profile effectively, you need at least one of the following: - First name and approximate age - Location (city or area) - Image (optionnal) for AI matching The more information you provide, the more accurate and faster your search results will be.\",tyIi4Ndoa:true,UoAXo9lOi:true,uwIhjj7kC:true,variant:\"Gt2xmeD74\",vLPEIERlk:getLocalizedValue(\"v114\",activeLocale)??\"Is searching for Tinder profiles legal?\",VsSi6MHrQ:true,vULFeElpH:getLocalizedValue(\"v111\",activeLocale)??\"Most Tinder profile searches are completed within 2-3 minutes. Our AI-powered system processes searches instantly, providing immediate initial results, detailed profile information within minutes, and complete activity history in under 5 minutes. For more complex searches or profiles with limited information, the process might take up to 5 minutes to ensure accuracy.\",VXu69WNlM:getLocalizedValue(\"v130\",activeLocale)??\"How much does a search with Cheateye.ai cost?\",WI1MKGMsc:getLocalizedValue(\"v133\",activeLocale)??\"Head over to our 'Contact' page and use the form to send us a message.\",width:\"100%\",xj8LAh7JJ:getLocalizedValue(\"v127\",activeLocale)??\"Each search result includes an activity timestamp showing when the profile was last active. We also provide: -Recent activity indicators -Profile age verification -Active status confirmation -Usage pattern analysis This helps you confirm whether the profile is currently in use or dormant.\",xu0dNnkaM:getLocalizedValue(\"v120\",activeLocale)??\"How recent are the search results?\",ymlFqghLd:getLocalizedValue(\"v132\",activeLocale)??\"What should I do if I encounter problems or errors?\",Z74elvuQq:getLocalizedValue(\"v110\",activeLocale)??\"How long does it take to find a Tinder profile?\",ZUVgi7XMj:getLocalizedValue(\"v126\",activeLocale)??\"How do I know if the profile I found is current?\"})})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LxElt_WQy:{y:undefined},peZoEXpC7:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:233,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+6+6791.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-raaftv-container\",nodeId:\"hXeX6SAk1\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Gaq3RBewR:{variant:\"mUkQyPqQ3\"},LxElt_WQy:{variant:\"QN61KEwe1\"},peZoEXpC7:{variant:\"woskWCd6a\"}},children:/*#__PURE__*/_jsx(Footer02,{height:\"100%\",id:\"hXeX6SAk1\",layoutId:\"hXeX6SAk1\",style:{width:\"100%\"},variant:\"oMGrt4qTG\",width:\"100%\"})})})})}),isDisplayed4()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2ll98w hidden-1s4sp1d hidden-1ohnnv4\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-z9oql6-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"jmzLfMQRl\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:\"\",id:\"jmzLfMQRl\",layoutId:\"jmzLfMQRl\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e6viki\",children:[/*#__PURE__*/_jsx(FormContainerWithPreloadResources9m7u68WithOptimizedAppearEffect,{animate:animation,className:\"framer-9m7u68\",\"data-border\":true,\"data-framer-appear-id\":\"9m7u68\",initial:animation1,nodeId:\"kYS8Sw8wi\",optimized:true,children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v136\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d1140e87-b76a-4052-a512-b402c8759a89, rgb(23, 23, 23))\"},children:\"Who are you searching for?\"})}),className:\"framer-ln2te7\",fonts:[\"FS;Clash Display-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-y7qzh1\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vlu220\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:183,width:\"412px\",y:330,children:/*#__PURE__*/_jsx(Container,{className:\"framer-17otswa-container\",nodeId:\"G1esoCHBg\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(GenderSelector,{height:\"100%\",id:\"G1esoCHBg\",layoutId:\"G1esoCHBg\",style:{height:\"100%\",width:\"100%\"},U4jHHBrNf:true,variant:\"VtYrG512B\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:74,width:\"412px\",y:529,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gvnz1t-container\",id:elementId2,nodeId:\"Xun_UY7xf\",ref:ref3,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Gaq3RBewR:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(ShinyButtonWebWithRedirectOnClick1gvnz1tWithMappedReactProps1dv4yfb,{GhywlgwY0:28,height:\"100%\",id:\"Xun_UY7xf\",layoutId:\"Xun_UY7xf\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v137\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO09wZW4gUnVuZGUgTWVkaXVt\",\"--framer-font-family\":'\"Open Runde Medium\", \"Open Runde Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--token-d1140e87-b76a-4052-a512-b402c8759a89, rgb(23, 23, 23))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO09wZW4gUnVuZGUgU2VtaWJvbGQ=\",\"--framer-font-family\":'\"Open Runde Semibold\", \"Open Runde Semibold Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-da31d7b2-975f-4457-926d-453d852fcf38, rgb(255, 0, 81))\"},children:\"142 people\"}),\" found answers today \u2013 will you?\"]})}),className:\"framer-1laqhdc\",fonts:[\"CUSTOM;Open Runde Medium\",\"CUSTOM;Open Runde Semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,width:\"82px\",y:629.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1avsbtp-container\",nodeId:\"GSpextb_I\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PointingFinger,{height:\"100%\",id:\"GSpextb_I\",layoutId:\"GSpextb_I\",style:{height:\"100%\",width:\"100%\"},variant:\"yA7ntk5QT\",width:\"100%\"})})})]})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,width:\"444px\",y:651.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-zxn36r-container\",nodeId:\"CRdmq4p8a\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ValuePropWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref2,target:\"D2u9lkdZj\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"CRdmq4p8a\",layoutId:\"CRdmq4p8a\",style:{width:\"100%\"},variant:\"ZcRxj5DW6\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11kjkkg\"})]})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{bounce:.4,damping:26,delay:0,duration:.3,durationBasedSpring:true,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:60}},{ref:ref2,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-n2wl39 hidden-72rtr7 hidden-tq4mg1 hidden-1s4sp1d\",\"data-border\":true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LxElt_WQy:{height:52,y:920}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1eajqq3-container\",nodeId:\"EZvjcsqC8\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(GenderSelector,{height:\"100%\",id:\"EZvjcsqC8\",layoutId:\"EZvjcsqC8\",style:{height:\"100%\"},U4jHHBrNf:true,variant:\"OuszoZ4Vw\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LxElt_WQy:{height:52,y:920}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-5fc9b4-container\",nodeId:\"rQDACWseP\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ComponentsButtonsWithRedirectOnClick5fc9b4WithMappedReactProps1vzmiw8,{altXzActk:\"rgb(255, 255, 255)\",aLVVkcpUq:getLocalizedValue(\"v139\",activeLocale)??\"lightning\",height:\"100%\",id:\"rQDACWseP\",layoutId:\"rQDACWseP\",Lo_1bT6lU:false,lOHZ5t4GK:getLocalizedValue(\"v138\",activeLocale)??\"Start search\",NgtvlDlyO:\"100px\",style:{height:\"100%\"},variant:\"gb1oWWNd1\",wCF9onGcn:false,width:\"100%\",X_Z1yh6Ou:getLocalizedValue(\"v140\",activeLocale)??\"arrowright\",YU3kNSTH4:\"bold\",zi7OqHhIV:\"https://app.cheateye.ai/en/app/?gender=man\"})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-P78N0.framer-lux5qc, .framer-P78N0 .framer-lux5qc { display: block; }\",\".framer-P78N0.framer-72rtr7 { align-content: center; align-items: center; background-color: #000000; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 6px 0px 0px 0px; position: relative; width: 1440px; }\",\".framer-P78N0 .framer-qaa54h-container { flex: none; height: auto; left: 50%; position: absolute; top: 6px; transform: translateX(-50%); width: 100%; z-index: 1; }\",\".framer-P78N0 .framer-1x11qds { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-P78N0 .framer-1d7gvww { align-content: center; align-items: center; background: radial-gradient(50% 67% at 84.5% 30.099999999999998%, #ff5e00 0%, rgb(255, 8, 94) 75%, rgb(255, 0, 79) 100%); border-top-left-radius: 32px; border-top-right-radius: 32px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-P78N0 .framer-cv2dee { align-content: center; align-items: center; background: radial-gradient(144% 67% at 48.3% 32.800000000000004%, rgba(255, 255, 255, 0) 75%, rgb(255, 255, 255) 100%); border-top-left-radius: 32px; border-top-right-radius: 32px; box-shadow: inset 0px 2px 2px 0px rgba(255, 255, 255, 0.25); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 100px 40px 80px 40px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-P78N0 .framer-vd7ono { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-P78N0 .framer-2zdew2 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 52px; height: min-content; justify-content: center; max-width: 650px; overflow: visible; padding: 8px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-P78N0 .framer-8c6h8k { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-P78N0 .framer-3xjb63, .framer-P78N0 .framer-1gx71ym { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-P78N0 .framer-1wsyb1w { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-P78N0 .framer-1kx8b0v, .framer-P78N0 .framer-j6tco2 { background-color: rgba(255, 255, 255, 0); flex: none; height: 50px; position: relative; width: 30px; }\",\".framer-P78N0 .framer-1vef0u5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-P78N0 .framer-ijlav9, .framer-P78N0 .framer-1sdmb22 { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: auto; }\",\".framer-P78N0 .framer-h0ca58, .framer-P78N0 .framer-9l7dvh, .framer-P78N0 .framer-1u0qyun, .framer-P78N0 .framer-t7244, .framer-P78N0 .framer-17zc85d, .framer-P78N0 .framer-13r44ri, .framer-P78N0 .framer-8vn2wm, .framer-P78N0 .framer-onwo26 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-P78N0 .framer-htzjeg { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 1px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: auto; }\",\".framer-P78N0 .framer-8q5u3q-container, .framer-P78N0 .framer-xp0bif-container, .framer-P78N0 .framer-1fgp2ix-container, .framer-P78N0 .framer-1mv60t5-container, .framer-P78N0 .framer-c90ker-container { flex: none; height: 17px; position: relative; width: 17px; }\",\".framer-P78N0 .framer-17cfcmk { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.25); white-space: pre-wrap; width: 80%; word-break: break-word; word-wrap: break-word; }\",\".framer-P78N0 .framer-6yo6vs { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 90%; word-break: break-word; word-wrap: break-word; }\",\".framer-P78N0 .framer-1c7tw93 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-P78N0 .framer-9mfgma-container { flex: none; height: 48px; position: relative; width: 100%; }\",\".framer-P78N0 .framer-172c8dn { aspect-ratio: 2.1 / 1; height: var(--framer-aspect-ratio-supported, 42px); opacity: 0.62; overflow: visible; position: relative; width: 88px; }\",\".framer-P78N0 .framer-fihd5z { aspect-ratio: 3.4722222222222223 / 1; height: var(--framer-aspect-ratio-supported, 30px); overflow: visible; position: relative; width: 103px; }\",\".framer-P78N0 .framer-r7v74t { height: 60px; opacity: 0.62; overflow: visible; position: relative; width: 70px; }\",\".framer-P78N0 .framer-agv83o { align-content: center; align-items: center; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 42px; justify-content: center; opacity: 0.62; overflow: visible; padding: 0px; position: relative; width: 120px; }\",\".framer-P78N0 .framer-1b5c4zj { height: 77px; opacity: 0.62; overflow: visible; position: relative; width: 103px; }\",\".framer-P78N0 .framer-1ffr9vq { aspect-ratio: 3.4722222222222223 / 1; height: var(--framer-aspect-ratio-supported, 30px); opacity: 0.55; overflow: visible; position: relative; width: 102px; }\",\".framer-P78N0 .framer-110zo19 { align-content: flex-end; align-items: flex-end; display: flex; flex: 0.7 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-P78N0 .framer-1w3wjpv { align-content: center; align-items: center; background-color: rgba(0, 0, 0, 0.1); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; opacity: 0; overflow: visible; padding: 4px; position: sticky; top: 0px; width: min-content; z-index: 1; }\",\".framer-P78N0 .framer-1f6w3ck { --border-bottom-width: 0.5px; --border-color: rgba(34, 34, 34, 0.1); --border-left-width: 0.5px; --border-right-width: 0.5px; --border-style: solid; --border-top-width: 0.5px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0.3613123810646357px 0.3613123810646357px -1.25px rgba(0, 0, 0, 0.18), 0px 1.3731199819460742px 1.3731199819460742px -2.5px rgba(0, 0, 0, 0.16), 0px 6px 6px -3.75px rgba(0, 0, 0, 0.06), inset 0px 0.3010936508871964px 0.09032809526615893px -1.0833333333333333px rgba(0, 0, 0, 0.16), inset 0px 1.1442666516217286px 0.34327999548651855px -2.1666666666666665px rgba(0, 0, 0, 0.15), inset 0px 5px 1.5px -3.25px rgba(0, 0, 0, 0.09); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 480px; overflow: hidden; padding: 32px; position: relative; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-P78N0 .framer-12tn5k1, .framer-P78N0 .framer-tmgaac { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 432px; }\",\".framer-P78N0 .framer-12jiqlg, .framer-P78N0 .framer-15wahac, .framer-P78N0 .framer-19rqd5j, .framer-P78N0 .framer-1dltj3e, .framer-P78N0 .framer-11tr9uo, .framer-P78N0 .framer-hnoqgq, .framer-P78N0 .framer-1fgzt5t, .framer-P78N0 .framer-19lhu27 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",'.framer-P78N0 .framer-m6o59e { --framer-input-background: rgba(187, 187, 187, 0.15); --framer-input-border-bottom-width: 1px; --framer-input-border-color: rgba(136, 136, 136, 0.1); --framer-input-border-left-width: 1px; --framer-input-border-radius-bottom-left: 10px; --framer-input-border-radius-bottom-right: 10px; --framer-input-border-radius-top-left: 10px; --framer-input-border-radius-top-right: 10px; --framer-input-border-right-width: 1px; --framer-input-border-style: solid; --framer-input-border-top-width: 1px; --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-color: #999999; --framer-input-font-family: \"Inter\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 14px; --framer-input-font-weight: 400; --framer-input-icon-color: #999999; --framer-input-padding: 12px; --framer-input-placeholder-color: #999999; flex: none; height: 40px; position: relative; width: 100%; }',\".framer-P78N0 .framer-1ui6o39 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 158px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-P78N0 .framer-ykbff0-container, .framer-P78N0 .framer-raaftv-container, .framer-P78N0 .framer-zxn36r-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-P78N0 .framer-17w67rc-container { flex: none; height: auto; position: relative; width: 432px; }\",\".framer-P78N0 .framer-chqeq8-container { flex: 1 0 0px; height: 64px; position: relative; width: 1px; }\",'.framer-P78N0 .framer-9uys3t { --framer-input-background: rgba(187, 187, 187, 0.15); --framer-input-border-bottom-width: 1px; --framer-input-border-color: rgba(136, 136, 136, 0.1); --framer-input-border-left-width: 1px; --framer-input-border-radius-bottom-left: 10px; --framer-input-border-radius-bottom-right: 10px; --framer-input-border-radius-top-left: 10px; --framer-input-border-radius-top-right: 10px; --framer-input-border-right-width: 1px; --framer-input-border-style: solid; --framer-input-border-top-width: 1px; --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-color: #999999; --framer-input-font-family: \"Inter\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 14px; --framer-input-font-weight: 400; --framer-input-icon-color: #999999; --framer-input-invalid-text-color: #999999; --framer-input-padding: 12px; flex: none; height: 40px; position: relative; width: 100%; }',\".framer-P78N0 .framer-hfz21w-container { -webkit-user-select: none; bottom: -58px; flex: none; height: 74px; position: absolute; right: -27px; user-select: none; width: 96px; z-index: 1; }\",\".framer-P78N0 .framer-1h90pxw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 4px 0px 4px 0px; position: relative; width: min-content; }\",\".framer-P78N0 .framer-11uopbz, .framer-P78N0 .framer-xjwdi6, .framer-P78N0 .framer-12qpc26, .framer-P78N0 .framer-13dwqf5, .framer-P78N0 .framer-2n4jmn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-P78N0 .framer-1icqu17-container, .framer-P78N0 .framer-91r5y8-container, .framer-P78N0 .framer-1teykac-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 18px); position: relative; width: 18px; }\",\".framer-P78N0 .framer-1lblhqw { align-content: center; align-items: center; background-color: rgba(0, 0, 0, 0.1); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 6px; position: sticky; top: 0px; width: 100%; z-index: 1; }\",\".framer-P78N0 .framer-3v4uzr { --border-bottom-width: 1px; --border-color: rgba(34, 34, 34, 0.1); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 22px; border-bottom-right-radius: 22px; border-top-left-radius: 22px; border-top-right-radius: 22px; box-shadow: 0px 0.5971439051427296px 0.5971439051427296px -0.9375px rgba(0, 0, 0, 0.26), 0px 1.8108796073283884px 1.8108796073283884px -1.875px rgba(0, 0, 0, 0.24), 0px 4.786990141113346px 4.786990141113346px -2.8125px rgba(0, 0, 0, 0.21), 0px 15px 15px -3.75px rgba(0, 0, 0, 0.09), inset 0px 0.3010936508871964px 0.09032809526615893px -1.0833333333333333px rgba(0, 0, 0, 0.16), inset 0px 1.1442666516217286px 0.34327999548651855px -2.1666666666666665px rgba(0, 0, 0, 0.15), inset 0px 5px 1.5px -3.25px rgba(0, 0, 0, 0.09), 0px -0.48174984141951427px 2.02334933396196px -0.9166666666666666px rgba(0, 0, 0, 0.14), 0px -1.8308266425947657px 7.689471898898017px -1.8333333333333333px rgba(0, 0, 0, 0.13), 0px -8px 33.6px -2.75px rgba(0, 0, 0, 0.11); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px 12px 16px 12px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-P78N0 .framer-19bjatv, .framer-P78N0 .framer-ln2te7 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-P78N0 .framer-wcd398, .framer-P78N0 .framer-y7qzh1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-P78N0 .framer-86mu3s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-P78N0 .framer-1b2lxbf-container, .framer-P78N0 .framer-1g8tvtg-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-P78N0 .framer-82qh25-container { flex: none; height: 64px; position: relative; width: 100%; }\",\".framer-P78N0 .framer-1phpfux-container { -webkit-user-select: none; bottom: -58px; flex: none; height: 165px; position: absolute; right: -27px; user-select: none; width: 181px; z-index: 1; }\",\".framer-P78N0 .framer-e8kqqe { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 4px 4px 8px 4px; position: relative; width: 276px; }\",\".framer-P78N0 .framer-1wblzi7, .framer-P78N0 .framer-c6d7z1, .framer-P78N0 .framer-2x8nel { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-P78N0 .framer-1770tb6-container, .framer-P78N0 .framer-gnhcc-container, .framer-P78N0 .framer-u4xrhy-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 18px; }\",\".framer-P78N0 .framer-yy4sac { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-P78N0 .framer-174fgvs-container { flex: none; height: 40px; position: relative; width: 114%; }\",\".framer-P78N0 .framer-114ligw, .framer-P78N0 .framer-dpqfex, .framer-P78N0 .framer-1t4izuc { align-content: center; align-items: center; background-color: var(--token-4292a7c9-dead-42e7-b7ce-f6a9d75b90e0, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-P78N0 .framer-7p85fq, .framer-P78N0 .framer-xarypa, .framer-P78N0 .framer-xhfi26, .framer-P78N0 .framer-1gzllz3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 48px 40px 40px 40px; position: relative; width: 100%; z-index: 0; }\",\".framer-P78N0 .framer-1xmpc8m, .framer-P78N0 .framer-729ncj, .framer-P78N0 .framer-100qkso, .framer-P78N0 .framer-1x7976b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-P78N0 .framer-1vqznsk, .framer-P78N0 .framer-45yoy5 { 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: 650px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-P78N0 .framer-1ce8hks { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-P78N0 .framer-rdxxn7, .framer-P78N0 .framer-1skn0eh { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 80%; word-break: break-word; word-wrap: break-word; }\",\".framer-P78N0 .framer-1dznqy4, .framer-P78N0 .framer-1j9cz1l, .framer-P78N0 .framer-1dr2xqw, .framer-P78N0 .framer-605yuq, .framer-P78N0 .framer-o1ngfl, .framer-P78N0 .framer-1ah8hrm, .framer-P78N0 .framer-3ecfwx, .framer-P78N0 .framer-1f9gi89, .framer-P78N0 .framer-fdou1k, .framer-P78N0 .framer-vqrhn5, .framer-P78N0 .framer-1fk8fry, .framer-P78N0 .framer-16gycow, .framer-P78N0 .framer-16u6x9p, .framer-P78N0 .framer-1eyp9q3, .framer-P78N0 .framer-ofstzy, .framer-P78N0 .framer-1ho6v1q, .framer-P78N0 .framer-12lbi4t, .framer-P78N0 .framer-x1wlms, .framer-P78N0 .framer-cz2gq6, .framer-P78N0 .framer-1sc1sl2, .framer-P78N0 .framer-98m0u1, .framer-P78N0 .framer-1ersgif, .framer-P78N0 .framer-osd9ta, .framer-P78N0 .framer-188bcq7, .framer-P78N0 .framer-1elazov, .framer-P78N0 .framer-skip4c, .framer-P78N0 .framer-5gcxbd, .framer-P78N0 .framer-i9tfc1, .framer-P78N0 .framer-1b6209u, .framer-P78N0 .framer-cirz6e, .framer-P78N0 .framer-4m3sm7, .framer-P78N0 .framer-1etsl5z, .framer-P78N0 .framer-1v4sa72, .framer-P78N0 .framer-ukk8rs, .framer-P78N0 .framer-snqa1x, .framer-P78N0 .framer-12t8hof, .framer-P78N0 .framer-jdz4s7, .framer-P78N0 .framer-19ewj07, .framer-P78N0 .framer-1gqgac4 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-P78N0 .framer-14yzmrh { 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 40px 48px 40px; position: relative; width: 100%; }\",\".framer-P78N0 .framer-1spmnj3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 0; }\",\".framer-P78N0 .framer-godqh3 { background-color: rgba(0, 0, 0, 0.03); border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; display: grid; flex: none; gap: 0px; grid-auto-rows: 170px; grid-template-columns: repeat(1, minmax(50px, 1fr)); grid-template-rows: repeat(2, 170px); height: 530px; justify-content: center; max-width: 650px; overflow: hidden; padding: 16px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-P78N0 .framer-r2kini, .framer-P78N0 .framer-69ktup, .framer-P78N0 .framer-b1jt7r { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 100%; justify-content: center; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-P78N0 .framer-1m5zt0m, .framer-P78N0 .framer-1flg3rh, .framer-P78N0 .framer-1m3xmhl { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-P78N0 .framer-dd2e5w, .framer-P78N0 .framer-4xpssp, .framer-P78N0 .framer-1bgc8ym { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 20px 0px; position: relative; width: 1px; }\",\".framer-P78N0 .framer-1wmrzx9, .framer-P78N0 .framer-1625k84, .framer-P78N0 .framer-14z8d1l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px 4px 0px 0px; position: relative; width: 100%; }\",\".framer-P78N0 .framer-nc3xxg, .framer-P78N0 .framer-1d9h0ps, .framer-P78N0 .framer-feg3qb { --border-bottom-width: 0.5px; --border-color: var(--token-f45265f1-2dbc-490c-bb31-eefef71cd868, rgba(48, 48, 48, 0.16)); --border-left-width: 0.5px; --border-right-width: 0.5px; --border-style: solid; --border-top-width: 0.5px; align-content: center; align-items: center; background-color: var(--token-b5c62a71-77a1-42e5-bcdd-0d4c1275643b, #ffffff); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; box-shadow: inset 0px -0.5px 0px 0px rgba(0, 0, 0, 0.12), 0px 1px 2px -0.5px rgba(0, 0, 0, 0.06); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: 48px; justify-content: center; overflow: visible; padding: 0px 20px 0px 20px; position: relative; width: min-content; }\",\".framer-P78N0 .framer-7vclgh, .framer-P78N0 .framer-1jeid6z, .framer-P78N0 .framer-1jrfjkj, .framer-P78N0 .framer-zv48te, .framer-P78N0 .framer-1vdwbp5, .framer-P78N0 .framer-nqlap2, .framer-P78N0 .framer-x3r5wz, .framer-P78N0 .framer-45pu0x, .framer-P78N0 .framer-hsqrub, .framer-P78N0 .framer-i06ize, .framer-P78N0 .framer-xbll9i, .framer-P78N0 .framer-rkvd5q, .framer-P78N0 .framer-rl61ss, .framer-P78N0 .framer-1laqhdc { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-P78N0 .framer-qnnafv, .framer-P78N0 .framer-1o1i4iu, .framer-P78N0 .framer-brzz2b { background-color: rgba(0, 0, 0, 0.05); flex: none; height: 26px; position: relative; width: 2px; }\",\".framer-P78N0 .framer-18idi7j, .framer-P78N0 .framer-1r9c9au { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-P78N0 .framer-14k90ar-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-P78N0 .framer-orbfbh, .framer-P78N0 .framer-xc914b { --border-bottom-width: 0.5px; --border-color: var(--token-368703de-4a5f-4bd1-ac7a-cd4ade1c1148, rgba(48, 48, 48, 0.16)); --border-left-width: 0.5px; --border-right-width: 0.5px; --border-style: solid; --border-top-width: 0.5px; align-content: center; align-items: center; background-color: var(--token-da31d7b2-975f-4457-926d-453d852fcf38, #ff0050); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: inset 0px -0.5px 0px 0px rgba(0, 0, 0, 0.12), 0px 1px 2px -0.5px rgba(0, 0, 0, 0.06); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 4px 8px 4px 8px; position: relative; width: min-content; }\",\".framer-P78N0 .framer-1pdr8b8, .framer-P78N0 .framer-1kol77f, .framer-P78N0 .framer-tuwf2o, .framer-P78N0 .framer-129slbq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px 2px 0px 2px; position: relative; width: min-content; }\",\".framer-P78N0 .framer-17znjln, .framer-P78N0 .framer-17y2tk6, .framer-P78N0 .framer-1lfp270 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 24px; position: relative; width: 100%; }\",\".framer-P78N0 .framer-1t0lawz, .framer-P78N0 .framer-u1gq9h { align-content: center; align-items: center; border-bottom-left-radius: 99px; border-bottom-right-radius: 99px; border-top-left-radius: 99px; border-top-right-radius: 99px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-P78N0 .framer-17wu6kg, .framer-P78N0 .framer-dtsj2z { border-bottom-left-radius: 99px; border-bottom-right-radius: 99px; border-top-left-radius: 99px; border-top-right-radius: 99px; flex: none; height: 85px; position: relative; width: 5px; }\",\".framer-P78N0 .framer-166btgj, .framer-P78N0 .framer-1n9ehjg { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-P78N0 .framer-pk0x0s, .framer-P78N0 .framer-1lt131x { --border-bottom-width: 0.5px; --border-color: var(--token-368703de-4a5f-4bd1-ac7a-cd4ade1c1148, rgba(48, 48, 48, 0.16)); --border-left-width: 0.5px; --border-right-width: 0.5px; --border-style: solid; --border-top-width: 0.5px; align-content: center; align-items: center; background-color: var(--token-da31d7b2-975f-4457-926d-453d852fcf38, #ff0050); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; box-shadow: inset 0px -0.5px 0px 0px rgba(0, 0, 0, 0.12), 0px 1px 2px -0.5px rgba(0, 0, 0, 0.06); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 4px; position: relative; width: min-content; }\",\".framer-P78N0 .framer-dxwe4k-container, .framer-P78N0 .framer-187m9q7-container { flex: none; height: 24px; position: relative; width: auto; }\",\".framer-P78N0 .framer-bypvhn { align-content: center; align-items: center; border-bottom-left-radius: 99px; border-bottom-right-radius: 99px; border-top-left-radius: 99px; border-top-right-radius: 99px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 85px; min-width: 5px; overflow: hidden; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-P78N0 .framer-12v7wm2 { align-content: center; align-items: center; background: radial-gradient(75% 50% at -4.3% 50%, #ff87ad 8%, rgb(255, 255, 255) 96.850365990991%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-P78N0 .framer-19zapst { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-P78N0 .framer-6bloiw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px 12px 0px 0px; position: relative; width: 100%; }\",\".framer-P78N0 .framer-14bo53s { --border-bottom-width: 1px; --border-color: rgba(34, 34, 34, 0.1); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; box-shadow: 0px 0.6021873017743928px 1.8065619053231785px -0.9166666666666666px rgba(0, 0, 0, 0.14), 0px 2.288533303243457px 6.8655999097303715px -1.8333333333333333px rgba(0, 0, 0, 0.13), 0px 10px 30px -2.75px rgba(0, 0, 0, 0.11); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-P78N0 .framer-af39m2-container { flex: none; height: 102px; position: relative; width: 70px; }\",\".framer-P78N0 .framer-3c3a7b { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-P78N0 .framer-12w8o4p, .framer-P78N0 .framer-4zwzvo { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 650px; word-break: break-word; word-wrap: break-word; }\",\".framer-P78N0 .framer-1riqj3g { bottom: 4px; flex: none; height: 73px; left: calc(55.763888888888914% - 38px / 2); overflow: hidden; position: absolute; width: 38px; }\",\".framer-P78N0 .framer-1o9dtyf { align-content: center; align-items: center; background: radial-gradient(37.82% 31% at 46.800000000000004% 65%, rgba(255, 0, 80, 0.2) 0%, rgba(171, 171, 171, 0) 100%); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px 40px 48px 40px; position: relative; width: 100%; }\",\".framer-P78N0 .framer-bujs2t { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 0; }\",\".framer-P78N0 .framer-hsp6ag { display: grid; flex: none; gap: 12px; grid-auto-rows: min-content; grid-template-columns: repeat(4, minmax(50px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; max-width: 650px; overflow: visible; padding: 0px; position: relative; transform-style: preserve-3d; width: 100%; }\",\".framer-P78N0 .framer-2ka0s { --border-bottom-width: 1px; --border-color: rgba(48, 48, 48, 0.1); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; align-self: start; background-color: var(--token-b5c62a71-77a1-42e5-bcdd-0d4c1275643b, #ffffff); border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; box-shadow: inset 0px -0.5px 0px 0px rgba(0, 0, 0, 0.12), 0px 1px 4px -0.5px rgba(0, 0, 0, 0.1); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; grid-column: span 4; height: min-content; justify-content: flex-start; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-P78N0 .framer-ritl6a { -webkit-mask: linear-gradient(180deg, #000000 63.29004786036037%, rgba(0,0,0,0) 100%) add; flex: none; height: 214px; mask: linear-gradient(180deg, #000000 63.29004786036037%, rgba(0,0,0,0) 100%) add; overflow: hidden; position: relative; width: 100%; }\",\".framer-P78N0 .framer-1w0zd33 { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 0.6021873017743928px 2.52918666745245px -1.6666666666666665px rgba(0, 0, 0, 0.19), 0px 2.288533303243457px 9.61183987362252px -3.333333333333333px rgba(0, 0, 0, 0.15), 0px 10px 42px -5px rgba(0, 0, 0, 0), 0px 0px 0px 0.5px rgba(0, 0, 0, 0.12); flex: none; height: 204px; left: 160px; overflow: visible; position: absolute; right: 337px; top: 24px; }\",\".framer-P78N0 .framer-ixxtgj { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; bottom: -14px; box-shadow: 0px 0.6021873017743928px 2.52918666745245px -1.6666666666666665px rgba(0, 0, 0, 0.19), 0px 2.288533303243457px 9.61183987362252px -3.333333333333333px rgba(0, 0, 0, 0.15), 0px 10px 42px -5px rgba(0, 0, 0, 0), 0px 0px 0px 0.5px rgba(0, 0, 0, 0.12); flex: none; height: 204px; left: 357px; overflow: visible; position: absolute; width: 143px; }\",\".framer-P78N0 .framer-hyvxda { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: 132px; justify-content: center; overflow: hidden; padding: 24px; position: relative; width: 100%; }\",\".framer-P78N0 .framer-1e7h20u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-P78N0 .framer-1wtr80s { --border-bottom-width: 1px; --border-color: rgba(48, 48, 48, 0.1); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; align-self: start; background-color: var(--token-b5c62a71-77a1-42e5-bcdd-0d4c1275643b, #ffffff); border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; box-shadow: inset 0px -0.5px 0px 0px rgba(0, 0, 0, 0.12), 0px 1px 4px -0.5px rgba(0, 0, 0, 0.1); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; grid-column: span 2; height: 366px; justify-content: flex-start; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-P78N0 .framer-1yr7g97 { flex: none; height: 214px; overflow: hidden; position: relative; width: 100%; }\",\".framer-P78N0 .framer-7gmc1k { --border-bottom-width: 1px; --border-color: rgba(33, 33, 33, 0.1); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 0px 0px 0.5px rgba(0, 0, 0, 0.12); flex: none; height: 185px; left: 18px; overflow: visible; position: absolute; right: 17px; top: 16px; }\",\".framer-P78N0 .framer-e3j8kx, .framer-P78N0 .framer-woicjj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 24px; position: relative; width: 100%; }\",\".framer-P78N0 .framer-1d6rnpf { --border-bottom-width: 1px; --border-color: rgba(48, 48, 48, 0.1); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; align-self: start; background-color: var(--token-b5c62a71-77a1-42e5-bcdd-0d4c1275643b, #ffffff); border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; box-shadow: inset 0px -0.5px 0px 0px rgba(0, 0, 0, 0.12), 0px 1px 4px -0.5px rgba(0, 0, 0, 0.1); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; grid-column: span 2; height: min-content; justify-content: flex-start; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-P78N0 .framer-c7chw9 { -webkit-mask: linear-gradient(180deg, #000000 51.6258445945946%, rgba(0,0,0,0) 97.27618243243244%) add; flex: none; height: 229px; mask: linear-gradient(180deg, #000000 51.6258445945946%, rgba(0,0,0,0) 97.27618243243244%) add; overflow: hidden; position: relative; width: 100%; }\",\".framer-P78N0 .framer-3zwm7 { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; bottom: -1px; flex: none; height: 191px; left: calc(50.156739811912246% - 293px / 2); overflow: visible; position: absolute; width: 293px; }\",\".framer-P78N0 .framer-jd7bwp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: 132px; justify-content: flex-start; overflow: hidden; padding: 24px; position: relative; width: 100%; }\",\".framer-P78N0 .framer-1h0s4vw { --border-bottom-width: 1px; --border-color: rgba(48, 48, 48, 0.1); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; align-self: start; background-color: var(--token-b5c62a71-77a1-42e5-bcdd-0d4c1275643b, #ffffff); border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; box-shadow: inset 0px -0.5px 0px 0px rgba(0, 0, 0, 0.12), 0px 1px 4px -0.5px rgba(0, 0, 0, 0.1); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; grid-column: span 4; height: min-content; justify-content: flex-start; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-P78N0 .framer-1d6qv26 { -webkit-mask: linear-gradient(180deg, #000000 63.33931587837838%, rgba(0, 0, 0, 0) 100%) add; flex: none; height: 215px; mask: linear-gradient(180deg, #000000 63.33931587837838%, rgba(0, 0, 0, 0) 100%) add; overflow: hidden; position: relative; width: 100%; z-index: 0; }\",\".framer-P78N0 .framer-fh33hr { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: 188px; left: 24px; overflow: visible; position: absolute; right: 24px; top: 47px; }\",\".framer-P78N0 .framer-1whdnvr, .framer-P78N0 .framer-11vpdha, .framer-P78N0 .framer-1m8fnxw { 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: 620px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-P78N0 .framer-1u7susw, .framer-P78N0 .framer-p71glc, .framer-P78N0 .framer-6qft5m { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-P78N0 .framer-1fjzhmg { 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: visible; padding: 0px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-P78N0 .framer-14xp86e, .framer-P78N0 .framer-hral94, .framer-P78N0 .framer-1xff0xr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 0; }\",\".framer-P78N0 .framer-1gmparw { display: grid; flex: none; gap: 12px; grid-auto-rows: 250px; grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, 250px); height: min-content; justify-content: center; max-width: 650px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-P78N0 .framer-136w615, .framer-P78N0 .framer-ei3qa3, .framer-P78N0 .framer-bahsqm, .framer-P78N0 .framer-1calxck { --border-bottom-width: 1px; --border-color: rgba(48, 48, 48, 0.1); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; align-self: start; background-color: var(--token-b5c62a71-77a1-42e5-bcdd-0d4c1275643b, #ffffff); border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; box-shadow: inset 0px -0.5px 0px 0px rgba(0, 0, 0, 0.12), 0px 1px 4px -0.5px rgba(0, 0, 0, 0.1); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; justify-self: start; overflow: visible; padding: 20px; position: relative; width: 100%; }\",\".framer-P78N0 .framer-ubxcn0, .framer-P78N0 .framer-utlelg, .framer-P78N0 .framer-doat6o, .framer-P78N0 .framer-1toezh7 { align-content: center; align-items: center; background-color: #f5f5f5; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 58px; justify-content: center; overflow: visible; padding: 8px; position: relative; width: 58px; }\",\".framer-P78N0 .framer-otpe2z-container, .framer-P78N0 .framer-6dx1fb-container, .framer-P78N0 .framer-svbk0u-container, .framer-P78N0 .framer-3jmkg7-container { flex: none; height: 28px; position: relative; width: 28px; }\",\".framer-P78N0 .framer-14ftsmp, .framer-P78N0 .framer-1kbi10z, .framer-P78N0 .framer-14uazui, .framer-P78N0 .framer-1xn130i, .framer-P78N0 .framer-fqof2e, .framer-P78N0 .framer-1uhlxur, .framer-P78N0 .framer-f1f60d, .framer-P78N0 .framer-1hcmh55, .framer-P78N0 .framer-z6v663 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-P78N0 .framer-a20q16 { align-content: center; align-items: center; background-color: var(--token-4292a7c9-dead-42e7-b7ce-f6a9d75b90e0, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-P78N0 .framer-ulpd7q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 48px 40px 30px 40px; position: relative; width: 100%; z-index: 0; }\",\".framer-P78N0 .framer-1ptlanu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-P78N0 .framer-o3vtjj-container { bottom: -35px; flex: none; height: 150px; left: calc(49.37500000000002% - 150px / 2); opacity: 0.06; position: absolute; width: 150px; z-index: 1; }\",\".framer-P78N0 .framer-dd1gcc { 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: visible; padding: 0px 40px 40px 40px; position: relative; width: 100%; }\",\".framer-P78N0 .framer-1mx756n { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: 256px; justify-content: center; max-width: 650px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-P78N0 .framer-72m79r, .framer-P78N0 .framer-6rxxfm, .framer-P78N0 .framer-1264sdc { --border-bottom-width: 1px; --border-color: rgba(48, 48, 48, 0.1); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 22px; border-bottom-right-radius: 22px; border-top-left-radius: 22px; border-top-right-radius: 22px; box-shadow: inset 0px -0.5px 0px 0px rgba(0, 0, 0, 0.12), 0px 1px 4px -0.5px rgba(0, 0, 0, 0.1); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: flex-start; overflow: visible; padding: 8px; position: relative; width: 1px; }\",\".framer-P78N0 .framer-1d3eoif, .framer-P78N0 .framer-17h2htb, .framer-P78N0 .framer-1vgk4g { align-content: flex-start; align-items: flex-start; background-color: #f5f5f5; border-bottom-left-radius: 18px; border-bottom-right-radius: 18px; border-top-left-radius: 18px; border-top-right-radius: 18px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: 1px; justify-content: flex-start; overflow: hidden; padding: 24px 16px 24px 16px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-P78N0 .framer-llqfd8-container, .framer-P78N0 .framer-buup6i-container, .framer-P78N0 .framer-1rbptwe-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-P78N0 .framer-qc7rby, .framer-P78N0 .framer-mms4cd, .framer-P78N0 .framer-drexm5 { 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; padding: 0px; position: relative; width: 100%; }\",\".framer-P78N0 .framer-1ffi9v9, .framer-P78N0 .framer-i9v2b2, .framer-P78N0 .framer-geq3ec, .framer-P78N0 .framer-1qqbl6m, .framer-P78N0 .framer-fxc1i0, .framer-P78N0 .framer-sporpf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 1px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-P78N0 .framer-1ay2ci7-container, .framer-P78N0 .framer-1dbuk8h-container, .framer-P78N0 .framer-1dfm029-container, .framer-P78N0 .framer-1rvd6de-container, .framer-P78N0 .framer-vw2hu0-container, .framer-P78N0 .framer-8n4k7v-container, .framer-P78N0 .framer-64di4e-container, .framer-P78N0 .framer-8zslx0-container, .framer-P78N0 .framer-1tu0idf-container, .framer-P78N0 .framer-7gtbho-container, .framer-P78N0 .framer-ueibug-container, .framer-P78N0 .framer-4fj36t-container, .framer-P78N0 .framer-1to7yjz-container, .framer-P78N0 .framer-1a6aaxi-container, .framer-P78N0 .framer-11gmln8-container, .framer-P78N0 .framer-1td28ni-container, .framer-P78N0 .framer-3j9cw4-container, .framer-P78N0 .framer-19m6wrf-container, .framer-P78N0 .framer-1kk4l57-container, .framer-P78N0 .framer-139umn5-container, .framer-P78N0 .framer-1m32jqq-container, .framer-P78N0 .framer-7b13g9-container, .framer-P78N0 .framer-duwi2s-container, .framer-P78N0 .framer-gppdo8-container, .framer-P78N0 .framer-1efnx9r-container, .framer-P78N0 .framer-1lpouz2-container, .framer-P78N0 .framer-15nes1y-container, .framer-P78N0 .framer-p42wtc-container, .framer-P78N0 .framer-y8npdb-container, .framer-P78N0 .framer-gxu0li-container { flex: none; height: 17px; position: relative; width: 17px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-P78N0 .framer-1ncauj3 { 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: visible; padding: 0px 40px 48px 40px; position: relative; width: 100%; }\",\".framer-P78N0 .framer-17bqyl4-container { flex: none; height: 266px; max-width: 650px; position: relative; width: 100%; }\",\".framer-P78N0 .framer-bxz62w, .framer-P78N0 .framer-1uprj1f, .framer-P78N0 .framer-1hoaaah, .framer-P78N0 .framer-12td884 { --border-bottom-width: 1px; --border-color: rgba(48, 48, 48, 0.1); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-b5c62a71-77a1-42e5-bcdd-0d4c1275643b, #ffffff); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: inset 0px -0.5px 0px 0px rgba(0, 0, 0, 0.12), 0px 1px 4px -0.5px rgba(0, 0, 0, 0.1); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px; position: relative; width: 319px; }\",\".framer-P78N0 .framer-ay3kkd, .framer-P78N0 .framer-1apszi0, .framer-P78N0 .framer-vocpag, .framer-P78N0 .framer-abfrky, .framer-P78N0 .framer-xz0a6u { 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-P78N0 .framer-1w7sp4 { --border-bottom-width: 1px; --border-color: rgba(48, 48, 48, 0.1); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-b5c62a71-77a1-42e5-bcdd-0d4c1275643b, #ffffff); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: inset 0px -0.5px 0px 0px rgba(0, 0, 0, 0.12), 0px 1px 4px -0.5px rgba(0, 0, 0, 0.1); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: 184px; justify-content: flex-start; overflow: visible; padding: 20px; position: relative; width: 319px; }\",\".framer-P78N0 .framer-13deimj { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 48px 40px 80px 40px; position: relative; width: 100%; z-index: 0; }\",\".framer-P78N0 .framer-1t07p2j { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-P78N0 .framer-1ko9f1p { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 650px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-P78N0 .framer-1wo04xb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 650px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-P78N0 .framer-2ll98w { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: fixed; right: 152px; top: 100px; width: 471px; z-index: 10; }\",\".framer-P78N0 .framer-z9oql6-container { flex: none; height: 1px; position: relative; width: 1px; }\",\".framer-P78N0 .framer-e6viki { align-content: center; align-items: center; background-color: rgba(0, 0, 0, 0.1); border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; border-top-left-radius: 28px; border-top-right-radius: 28px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 8px 8px 12px 8px; position: relative; width: 1px; z-index: 1; }\",\".framer-P78N0 .framer-9m7u68 { --border-bottom-width: 1px; --border-color: rgba(34, 34, 34, 0.1); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 38px; height: min-content; justify-content: flex-start; max-width: 530px; overflow: visible; padding: 24px 16px 12px 16px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-P78N0 .framer-vlu220 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-P78N0 .framer-17otswa-container { flex: none; height: 183px; position: relative; width: 100%; }\",\".framer-P78N0 .framer-1gvnz1t-container { flex: none; height: 74px; position: relative; width: 100%; z-index: 1; }\",\".framer-P78N0 .framer-1avsbtp-container { bottom: -49px; flex: none; height: 49px; position: absolute; right: -11px; width: 82px; z-index: 1; }\",\".framer-P78N0 .framer-11kjkkg { flex: none; height: 6px; left: 3px; overflow: hidden; position: absolute; top: 0px; width: 6px; z-index: 1; }\",\".framer-P78N0 .framer-n2wl39 { --border-bottom-width: 2.5px; --border-color: var(--token-da31d7b2-975f-4457-926d-453d852fcf38, #ff0050); --border-left-width: 2.5px; --border-right-width: 2.5px; --border-style: solid; --border-top-width: 2.5px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; bottom: 12px; box-shadow: 0px 0.3010936508871964px 0.421531111242075px -1.0833333333333333px rgba(0, 0, 0, 0.16), 0px 1.1442666516217286px 1.60197331227042px -2.1666666666666665px rgba(0, 0, 0, 0.15), 0px 5px 7px -3.25px rgba(0, 0, 0, 0.09), 0px 2px 4px 0px rgba(0, 0, 0, 0.15), 0px 0px 20px 0px rgba(0, 0, 0, 0.25); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 84px; justify-content: space-between; left: calc(50.00000000000002% - 94% / 2); overflow: hidden; padding: 16px; position: fixed; width: 94%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-P78N0 .framer-1eajqq3-container, .framer-P78N0 .framer-5fc9b4-container { flex: none; height: 100%; position: relative; width: auto; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-P78N0[data-border=\"true\"]::after, .framer-P78N0 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 1200px) and (max-width: 1439px) { .framer-P78N0.framer-72rtr7 { width: 1200px; } .framer-P78N0 .framer-xarypa { overflow: visible; } .framer-P78N0 .framer-2ll98w { right: 42px; } .framer-P78N0 .framer-1gvnz1t-container { height: auto; }}\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-P78N0.framer-72rtr7 { width: 810px; } .framer-P78N0 .framer-cv2dee { padding: 100px 40px 60px 40px; } .framer-P78N0 .framer-2zdew2 { flex: 0.9 0 0px; max-width: unset; } .framer-P78N0 .framer-1gx71ym { gap: 16px; } .framer-P78N0 .framer-17cfcmk { width: 100%; } .framer-P78N0 .framer-110zo19 { flex: 0.8 0 0px; } .framer-P78N0 .framer-1770tb6-container, .framer-P78N0 .framer-gnhcc-container, .framer-P78N0 .framer-u4xrhy-container { height: var(--framer-aspect-ratio-supported, 18px); } .framer-P78N0 .framer-7p85fq, .framer-P78N0 .framer-xarypa, .framer-P78N0 .framer-xhfi26, .framer-P78N0 .framer-ulpd7q, .framer-P78N0 .framer-1gzllz3, .framer-P78N0 .framer-13deimj { padding: 60px 40px 60px 40px; } .framer-P78N0 .framer-1vqznsk, .framer-P78N0 .framer-godqh3, .framer-P78N0 .framer-45yoy5, .framer-P78N0 .framer-1whdnvr, .framer-P78N0 .framer-1gmparw, .framer-P78N0 .framer-11vpdha, .framer-P78N0 .framer-1mx756n, .framer-P78N0 .framer-1m8fnxw, .framer-P78N0 .framer-17bqyl4-container, .framer-P78N0 .framer-1ko9f1p, .framer-P78N0 .framer-1wo04xb { max-width: unset; } .framer-P78N0 .framer-14yzmrh, .framer-P78N0 .framer-1o9dtyf, .framer-P78N0 .framer-1fjzhmg, .framer-P78N0 .framer-dd1gcc, .framer-P78N0 .framer-1ncauj3 { padding: 0px 40px 60px 40px; } .framer-P78N0 .framer-hsp6ag { grid-template-columns: repeat(2, minmax(50px, 1fr)); max-width: unset; } .framer-P78N0 .framer-2ka0s, .framer-P78N0 .framer-1h0s4vw { grid-column: span 2; } .framer-P78N0 .framer-1w0zd33 { left: 390px; right: 190px; } .framer-P78N0 .framer-ixxtgj { left: 131px; width: 170px; } .framer-P78N0 .framer-1wtr80s { height: min-content; } .framer-P78N0 .framer-1yr7g97 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 20px 0px 20px 0px; } .framer-P78N0 .framer-7gmc1k { height: 238px; left: unset; order: 0; position: relative; right: unset; top: unset; width: 468px; }}\",\"@media (max-width: 809px) { .framer-P78N0.framer-72rtr7 { width: 390px; } .framer-P78N0 .framer-1d7gvww { flex-direction: row; } .framer-P78N0 .framer-cv2dee { background: radial-gradient(270% 67% at 48.3% 32.800000000000004%, rgba(255, 255, 255, 0) 75%, rgb(255, 255, 255) 100%); border-top-left-radius: 24px; border-top-right-radius: 24px; gap: 40px; justify-content: center; padding: 74px 24px 38px 24px; } .framer-P78N0 .framer-vd7ono { flex-direction: column; gap: 12px; max-width: 540px; } .framer-P78N0 .framer-2zdew2 { flex: none; max-width: unset; padding: 0px; width: 100%; } .framer-P78N0 .framer-8c6h8k { gap: 14px; } .framer-P78N0 .framer-3xjb63, .framer-P78N0 .framer-1gx71ym, .framer-P78N0 .framer-1bgc8ym { gap: 12px; } .framer-P78N0 .framer-1kx8b0v, .framer-P78N0 .framer-j6tco2 { height: 40px; width: 20px; } .framer-P78N0 .framer-17cfcmk, .framer-P78N0 .framer-rdxxn7, .framer-P78N0 .framer-1j9cz1l, .framer-P78N0 .framer-1dr2xqw, .framer-P78N0 .framer-12w8o4p, .framer-P78N0 .framer-4zwzvo { width: 100%; } .framer-P78N0 .framer-6yo6vs { max-width: 410px; width: 100%; } .framer-P78N0 .framer-110zo19 { align-content: center; align-items: center; flex: none; width: 100%; } .framer-P78N0 .framer-1w3wjpv { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; gap: 8px; opacity: unset; padding: 6px; width: 105%; } .framer-P78N0 .framer-1f6w3ck { --border-bottom-width: 1px; --border-left-width: 1px; --border-right-width: 1px; --border-top-width: 1px; border-bottom-left-radius: 22px; border-bottom-right-radius: 22px; border-top-left-radius: 22px; border-top-right-radius: 22px; box-shadow: 0px 0.5971439051427296px 0.5971439051427296px -0.9375px rgba(0, 0, 0, 0.26), 0px 1.8108796073283884px 1.8108796073283884px -1.875px rgba(0, 0, 0, 0.24), 0px 4.786990141113346px 4.786990141113346px -2.8125px rgba(0, 0, 0, 0.21), 0px 15px 15px -3.75px rgba(0, 0, 0, 0.09), inset 0px 0.3010936508871964px 0.09032809526615893px -1.0833333333333333px rgba(0, 0, 0, 0.16), inset 0px 1.1442666516217286px 0.34327999548651855px -2.1666666666666665px rgba(0, 0, 0, 0.15), inset 0px 5px 1.5px -3.25px rgba(0, 0, 0, 0.09), 0px -0.48174984141951427px 2.02334933396196px -0.9166666666666666px rgba(0, 0, 0, 0.14), 0px -1.8308266425947657px 7.689471898898017px -1.8333333333333333px rgba(0, 0, 0, 0.13), 0px -8px 33.6px -2.75px rgba(0, 0, 0, 0.11); gap: 30px; max-width: unset; overflow: visible; padding: 16px 12px 16px 12px; width: 100%; } .framer-P78N0 .framer-1u0qyun { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-P78N0 .framer-1sdmb22 { align-self: unset; flex-direction: column; overflow: visible; width: 100%; } .framer-P78N0 .framer-1ui6o39 { flex: none; flex-direction: row; min-height: unset; order: 0; width: 100%; } .framer-P78N0 .framer-ykbff0-container { flex: 1 0 0px; width: 1px; } .framer-P78N0 .framer-chqeq8-container { flex: none; order: 1; width: 100%; } .framer-P78N0 .framer-1h90pxw { flex-wrap: wrap; gap: 14px; padding: 4px 8px 8px 8px; width: 100%; } .framer-P78N0 .framer-11uopbz, .framer-P78N0 .framer-xjwdi6, .framer-P78N0 .framer-12qpc26 { gap: 4px; } .framer-P78N0 .framer-7p85fq, .framer-P78N0 .framer-ulpd7q, .framer-P78N0 .framer-1gzllz3 { justify-content: center; padding: 48px 24px 32px 24px; } .framer-P78N0 .framer-1xmpc8m, .framer-P78N0 .framer-19zapst, .framer-P78N0 .framer-729ncj, .framer-P78N0 .framer-100qkso, .framer-P78N0 .framer-1x7976b { justify-content: center; max-width: 540px; } .framer-P78N0 .framer-1vqznsk, .framer-P78N0 .framer-45yoy5, .framer-P78N0 .framer-1whdnvr, .framer-P78N0 .framer-11vpdha, .framer-P78N0 .framer-1m8fnxw, .framer-P78N0 .framer-1ko9f1p { max-width: unset; } .framer-P78N0 .framer-14yzmrh, .framer-P78N0 .framer-1o9dtyf, .framer-P78N0 .framer-1fjzhmg, .framer-P78N0 .framer-dd1gcc, .framer-P78N0 .framer-1ncauj3 { padding: 0px 24px 48px 24px; } .framer-P78N0 .framer-1spmnj3, .framer-P78N0 .framer-bujs2t, .framer-P78N0 .framer-14xp86e, .framer-P78N0 .framer-hral94, .framer-P78N0 .framer-1xff0xr { gap: 40px; max-width: 540px; } .framer-P78N0 .framer-godqh3 { grid-auto-rows: min-content; grid-template-rows: repeat(2, min-content); height: min-content; max-width: unset; padding: 20px 16px 16px 16px; } .framer-P78N0 .framer-r2kini, .framer-P78N0 .framer-69ktup, .framer-P78N0 .framer-b1jt7r { height: min-content; } .framer-P78N0 .framer-dd2e5w, .framer-P78N0 .framer-4xpssp { gap: 12px; padding: 0px 0px 12px 0px; } .framer-P78N0 .framer-nc3xxg, .framer-P78N0 .framer-1d9h0ps, .framer-P78N0 .framer-feg3qb { flex: 1 0 0px; justify-content: flex-start; overflow: hidden; width: 1px; will-change: var(--framer-will-change-override, transform); } .framer-P78N0 .framer-166btgj, .framer-P78N0 .framer-1n9ehjg { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 4px; } .framer-P78N0 .framer-13dwqf5 { flex: 1 0 0px; justify-content: flex-start; width: 1px; } .framer-P78N0 .framer-187m9q7-container, .framer-P78N0 .framer-1eajqq3-container { order: 0; } .framer-P78N0 .framer-nqlap2 { max-width: 100%; order: 1; white-space: pre-wrap; word-break: break-word; word-wrap: break-word; } .framer-P78N0 .framer-xarypa, .framer-P78N0 .framer-xhfi26 { justify-content: center; padding: 24px 24px 32px 24px; } .framer-P78N0 .framer-6bloiw { align-content: flex-start; align-items: flex-start; gap: 20px; } .framer-P78N0 .framer-af39m2-container { height: 100px; width: 69px; } .framer-P78N0 .framer-3c3a7b { gap: 8px; } .framer-P78N0 .framer-hsp6ag { grid-template-columns: repeat(1, minmax(50px, 1fr)); max-width: 540px; } .framer-P78N0 .framer-2ka0s, .framer-P78N0 .framer-1d6rnpf { grid-column: span 1; } .framer-P78N0 .framer-ritl6a, .framer-P78N0 .framer-c7chw9, .framer-P78N0 .framer-1d6qv26 { height: 210px; } .framer-P78N0 .framer-1w0zd33 { bottom: -245px; height: 431px; left: 20px; right: unset; top: unset; width: 42%; } .framer-P78N0 .framer-ixxtgj { bottom: -18px; left: unset; right: 20px; width: 144px; } .framer-P78N0 .framer-1wtr80s { grid-column: span 1; height: min-content; } .framer-P78N0 .framer-1yr7g97 { align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 190px; justify-content: center; padding: 0px; will-change: var(--framer-will-change-override, transform); } .framer-P78N0 .framer-7gmc1k { border-bottom-left-radius: 18px; border-bottom-right-radius: 18px; border-top-left-radius: 18px; border-top-right-radius: 18px; height: 154px; left: unset; position: relative; right: unset; top: unset; width: 312px; } .framer-P78N0 .framer-e3j8kx { padding: 12px 24px 24px 24px; } .framer-P78N0 .framer-1h0s4vw { gap: 0px; grid-column: span 1; } .framer-P78N0 .framer-fh33hr { height: 238px; top: -11px; } .framer-P78N0 .framer-1gmparw { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; } .framer-P78N0 .framer-136w615, .framer-P78N0 .framer-ei3qa3, .framer-P78N0 .framer-bahsqm, .framer-P78N0 .framer-1calxck { align-self: unset; } .framer-P78N0 .framer-o3vtjj-container { bottom: unset; height: 107px; left: unset; right: -13px; top: calc(45.83333333333336% - 107px / 2); width: 107px; } .framer-P78N0 .framer-1mx756n { flex-direction: column; height: min-content; } .framer-P78N0 .framer-72m79r, .framer-P78N0 .framer-6rxxfm, .framer-P78N0 .framer-1264sdc { flex: none; height: min-content; width: 100%; } .framer-P78N0 .framer-1d3eoif, .framer-P78N0 .framer-17h2htb, .framer-P78N0 .framer-1vgk4g { flex: none; height: min-content; } .framer-P78N0 .framer-13deimj { justify-content: center; padding: 24px 24px 48px 24px; } .framer-P78N0 .framer-1t07p2j { gap: 32px; max-width: 540px; } .framer-P78N0 .framer-1wo04xb { flex-direction: column; max-width: 540px; } .framer-P78N0 .framer-1g8tvtg-container { flex: none; width: 100%; } .framer-P78N0 .framer-5fc9b4-container { order: 1; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6290\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Gaq3RBewR\":{\"layout\":[\"fixed\",\"auto\"]},\"peZoEXpC7\":{\"layout\":[\"fixed\",\"auto\"]},\"LxElt_WQy\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"DKc7sctvi\":{\"pattern\":\":DKc7sctvi\",\"name\":\"hero\"},\"jq7DPJfCk\":{\"pattern\":\":jq7DPJfCk\",\"name\":\"section-2\"},\"Xun_UY7xf\":{\"pattern\":\":Xun_UY7xf\",\"name\":\"funnelbutton\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-P78N0\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:6290,width:1440};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Instrument Serif\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/instrumentserif/v4/jizHRFtNs2ka5fXjeivQ4LroWlx-6zATjnTNgNq55w.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/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:\"Open Runde Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/HJY4SY2JywrSZ2l1AEW9Tm9cO8.woff2\"},{family:\"Clash Display\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/FPDAZ2S6SW4QMSRIIKNNGTPM6VIXYMKO/5HNPQ453FRLIQWV2FNOBUU3FKTDZQVSG/Z3MGHFHX6DCTLQ55LJYRJ5MDCZPMFZU6.woff2\",weight:\"600\"},{family:\"Open Runde Semibold\",source:\"custom\",url:\"https://framerusercontent.com/assets/hG3wmGmFwadB6X5XPVXkMlmLr8o.woff2\"},{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:\"Open Runde Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/sh6WdegxUPLwf6maNVTPdFTJOG8.woff2\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{family:\"Open Runde Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/3exmuO07FP19gMM08TQrpXl3BGQ.woff2\"}]},...NavigationMenu1Fonts,...PhosphorFonts,...TickerFonts,...GenderSelectorFonts,...ComponentsButtonsFonts,...ShinyButtonWebFonts,...PointingFingerFonts,...CentralIconSystemFonts,...VideoFonts,...AnimatedNumberCounterFonts,...Ticker1Fonts,...AccordionComponentFonts,...Footer02Fonts,...EmbedFonts,...ValuePropFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Gaq3RBewR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"peZoEXpC7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LxElt_WQy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerResponsiveScreen\":\"\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"6290\",\"framerScrollSections\":\"{\\\"DKc7sctvi\\\":{\\\"pattern\\\":\\\":DKc7sctvi\\\",\\\"name\\\":\\\"hero\\\"},\\\"jq7DPJfCk\\\":{\\\"pattern\\\":\\\":jq7DPJfCk\\\",\\\"name\\\":\\\"section-2\\\"},\\\"Xun_UY7xf\\\":{\\\"pattern\\\":\\\":Xun_UY7xf\\\",\\\"name\\\":\\\"funnelbutton\\\"}}\",\"framerAutoSizeImages\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["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", "Z", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "ref", "p", "LayoutGroup", "q", "isInView", "useInView", "i", "childIndex", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "playOrPause", "hidden", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "ObjectFitType", "SrcType", "defaultVideo", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "X", "srcType", "srcUrl", "srcFile", "posterEnabled", "playing", "restartOnEnter", "objectFit", "backgroundColor", "radius", "volume", "startTimeProp", "poster", "progress", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "renderTarget", "useRenderTarget", "isStaticRenderer", "RenderTarget", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "ue", "isMountedAndReadyForProgressChanges", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "AnimatedNumberCounter", "props", "mode", "start", "end", "value", "decimals", "commas", "color", "animation", "isCanvas", "RenderTarget", "MotionTag", "motion", "isDefault", "initialValue", "transition", "formatNumber", "number", "numberString", "setNumber", "ye", "currentAnimation", "setCurrentAnimation", "ref", "pe", "isInView", "useInView", "motionValue", "useMotionValue", "runAnimation", "from", "to", "animate", "latest", "ue", "u", "addPropertyControls", "ControlType", "PhosphorFonts", "getFonts", "Icon", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "answer", "height", "id", "question", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "uiuh9eI1i", "h1heBG4Sg", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1oowyap", "args", "onTap1z10qkq", "onTape10id6", "onTapq9q1m5", "onTapzio44j", "onTap1gz8ate", "onTap1fnxl7k", "onTap180naun", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "p", "LayoutGroup", "u", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerVgAyvmOBq", "withCSS", "VgAyvmOBq_default", "addPropertyControls", "ControlType", "addFonts", "AccordionItemsFonts", "getFonts", "VgAyvmOBq_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "_1", "_10", "_10Answer", "_10Question", "_11", "_11Answer", "_11Question", "_12", "_12Answer", "_12Question", "_13", "_13Answer", "_13Question", "_14", "_14Answer", "_14Question", "_15", "_15Answer", "_15Question", "_1Answer", "_1Question", "_2", "_2Answer", "_2Question", "_3", "_3Answer", "_3Question", "_4", "_4Answer", "_4Question", "_5", "_5Answer", "_5Question", "_6", "_6Answer", "_6Question", "_7", "_7Answer", "_7Question", "_8", "_8Answer", "_8Question", "_9", "_9Answer", "_9Question", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "Dv4yYtEWJ", "AeiBzzaLJ", "pXkHgZpVU", "reFw582jA", "p0GR7pFgP", "tyIi4Ndoa", "uwIhjj7kC", "BawZqjMW_", "CLvOis_rh", "qjB2mrPEX", "DKl8Qtpoz", "VsSi6MHrQ", "BAK_kOWZJ", "UoAXo9lOi", "pwMKUypU8", "EDlXvtl0q", "HPnSNKRsU", "HRhZ8ueBk", "QSD2lpBdw", "Z74elvuQq", "vULFeElpH", "Kh7hV4ML5", "TewXXlTNy", "vLPEIERlk", "bYcMEYk1C", "ci9Ei5h9k", "fbe_WnDs4", "DaWewJ6p3", "aHgi0gzx9", "xu0dNnkaM", "LkWlRCQ1I", "EEB4zLMhq", "luFqtPdaN", "jrajs1x8C", "KVMQPFmNk", "ZUVgi7XMj", "xj8LAh7JJ", "o3ayRfSa9", "Nbhb7pogG", "VXu69WNlM", "PqSsYFxw1", "ymlFqghLd", "WI1MKGMsc", "Dk7Ml8VIY", "mx2lIBe7k", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerW6ylrvnyo", "withCSS", "W6ylrvnyo_default", "addPropertyControls", "ControlType", "addFonts", "valuesByLocaleId", "LazyValue", "getLocalizedValue", "key", "locale", "values", "value", "preload", "promises", "promise", "usePreloadLocalizedValues", "preloadPromise", "NavigationMenu1Fonts", "getFonts", "OHj2FaBXC_default", "NavigationMenu1WithVariantAppearEffect", "withVariantAppearEffect", "PhosphorFonts", "Icon", "TickerFonts", "Ticker", "GenderSelectorFonts", "clS7D1i40_default", "ComponentsButtonsFonts", "zVyIAnggH_default", "ShinyButtonWebFonts", "d5kopp5VJ_default", "ShinyButtonWebWithRedirectOnClickchqeq8WithMappedReactProps1dv4yfb", "withMappedReactProps", "withCodeBoundaryForOverrides", "withRedirectOnClick", "d5kopp5VJ_exports", "PointingFingerFonts", "gl_xMJqVZ_default", "FormContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "FormContainer", "CentralIconSystemFonts", "K6qW4qtWi_default", "MotionDivWithFX", "withFX", "motion", "VideoFonts", "Video", "ContainerWithFX", "Container", "AnimatedNumberCounterFonts", "AnimatedNumberCounter", "ContainerWithOptimizedAppearEffect", "Ticker1Fonts", "AccordionComponentFonts", "W6ylrvnyo_default", "Footer02Fonts", "oKiTOWIAm_default", "EmbedFonts", "Embed", "ShinyButtonWebWithRedirectOnClick1gvnz1tWithMappedReactProps1dv4yfb", "FormContainerWithPreloadResources9m7u68WithOptimizedAppearEffect", "withPreloadResources", "ValuePropFonts", "fziRJTu03_default", "ValuePropWithVariantAppearEffect", "ComponentsButtonsWithRedirectOnClick5fc9b4WithMappedReactProps1vzmiw8", "zVyIAnggH_exports", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "transition1", "animation", "animation1", "animation2", "transition2", "animation3", "animation4", "transition3", "animation5", "animation6", "transition4", "animation7", "transition5", "animation8", "transition6", "animation9", "transition7", "animation10", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "router", "useRouter", "elementId", "useRouteElementId", "ref1", "usePreloadLocalizedValues", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "elementId1", "ref2", "isDisplayed4", "elementId2", "ref3", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "PropertyOverrides2", "SVG", "getLocalizedValue", "x", "RichText2", "Image2", "formState", "l", "FormPlainTextInput2", "FormSelect", "getLoadingLazyAtYPosition", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
