{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/JGFS8CTA7o2fWO0LziKQ/xEfnTMr5hRh4AYJ2da6G/o4HOgRRj1.js", "ssg:https://framerusercontent.com/modules/yq3nCY5NQUqke5HJWnSs/TBmlyiGMERiJFx7nKGhe/TcwKKfbT1.js", "ssg:https://framerusercontent.com/modules/86TO0N0mqQIbb38DpBdc/Q2FchyScuLz7dK9Hjj5F/Vq9uUobi0.js", "ssg:https://framerusercontent.com/modules/AosdcGLy4YKJiQbmsCm2/arxb8tDbJviKcXRo3YFw/vum9MqFgz.js", "ssg:https://framerusercontent.com/modules/9JEMBz79gi3Hd4FlpQX5/e9ixLIE9o39FGvyyHjuM/Z9pDWO1uy.js", "ssg:https://framerusercontent.com/modules/yqt6X6HAyNTHsU1a2GR4/5vmyXk76N2BfmGeUS841/Counter_1_1.js", "ssg:https://framerusercontent.com/modules/dVCCdRC5iF5WRZ2yVHWE/r32sfNOGz9KJTIz2Fxtc/Counter.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,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)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\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 isCanvas=RenderTarget.current()===RenderTarget.canvas;// 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[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);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)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"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_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.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){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){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]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* 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,MozMaskImage: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?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},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\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (38fb4ea)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Iconoir}from\"https://framerusercontent.com/modules/zL9598C4KbEbqUGvSR14/rI8sPHpnG9XGcCPc0vU4/Iconoir.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/Ofofkz06PuWC1OZ6U6bP/cyiwWBNnGZu3e8f0LK4o/ttpi9nRv2.js\";const IconoirFonts=getFonts(Iconoir);const cycleOrder=[\"kzXCu14xA\",\"FtZ_vznqJ\",\"bk4dwKlDh\"];const serializationHash=\"framer-2IlPA\";const variantClassNames={bk4dwKlDh:\"framer-v-p29ccp\",FtZ_vznqJ:\"framer-v-1ku45t3\",kzXCu14xA:\"framer-v-1kl2ceq\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Desktop:\"kzXCu14xA\",Hidden:\"FtZ_vznqJ\",Mobile:\"bk4dwKlDh\"};const getProps=({height,hover,id,tap2,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,NA2EvJqW6:hover!==null&&hover!==void 0?hover:props.NA2EvJqW6,UYMLk_Umx:tap2!==null&&tap2!==void 0?tap2:props.UYMLk_Umx,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"kzXCu14xA\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,UYMLk_Umx,NA2EvJqW6,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"kzXCu14xA\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1rnh03t=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(UYMLk_Umx){const res=await UYMLk_Umx(...args);if(res===false)return false;}});const onMouseEnter1uf8r09=activeVariantCallback(async(...args)=>{if(NA2EvJqW6){const res=await NA2EvJqW6(...args);if(res===false)return false;}});const onTap1mdv05g=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"FtZ_vznqJ\"),200);});const onTapzmi20g=activeVariantCallback(async(...args)=>{setVariant(\"FtZ_vznqJ\");});const isDisplayed=()=>{if(baseVariant===\"FtZ_vznqJ\")return false;return true;};const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:isDisplayed()&&/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1kl2ceq\",className,classNames),\"data-framer-name\":\"Desktop\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"kzXCu14xA\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onMouseEnter:onMouseEnter1uf8r09,onTap:onTap1rnh03t,onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgba(63, 252, 205, 0.95)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:0,borderTopRightRadius:0,...style},variants:{bk4dwKlDh:{borderTopLeftRadius:12,borderTopRightRadius:12}},...addPropertyOverrides({bk4dwKlDh:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-op1ntl\",layoutDependency:layoutDependency,layoutId:\"oeEg291Bf\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ruoew6-container\",layoutDependency:layoutDependency,layoutId:\"CHHDjo3OA-container\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-db092a55-60aa-43c3-9a19-f448411fa907, rgb(2, 20, 25))\",height:\"100%\",iconSearch:\"code\",iconSelection:\"Home\",id:\"CHHDjo3OA\",layoutId:\"CHHDjo3OA\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-db092a55-60aa-43c3-9a19-f448411fa907, rgb(2, 20, 25)))\"},children:\"Would You Like To Try The New EstateX Platform?  Become a Beta Tester TODAY!\"})}),className:\"framer-19oj5s4\",fonts:[\"GF;Inter-600\"],layoutDependency:layoutDependency,layoutId:\"E_8Kk3d_Y\",style:{\"--extracted-r6o4lv\":\"var(--token-db092a55-60aa-43c3-9a19-f448411fa907, rgb(2, 20, 25))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dujv6x\",layoutDependency:layoutDependency,layoutId:\"wPlTS0tJg\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fn8lfr\",layoutDependency:layoutDependency,layoutId:\"GPKZ9KbF2\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://promotions.estatex.eu/the-new-estatex-platform\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1ey9fni framer-17hywus\",\"data-framer-name\":\"Button 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"BHBAXWXPg\",onTap:onTap1mdv05g,style:{backgroundColor:\"rgb(13, 76, 96)\",borderBottomLeftRadius:31,borderBottomRightRadius:31,borderTopLeftRadius:31,borderTopRightRadius:31},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1fn4aos\",\"data-styles-preset\":\"ttpi9nRv2\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-dc6bf31d-56e6-43a5-a84b-86d3b5fa61d8, rgb(237, 243, 244)))\"},children:\"Click here\"})}),className:\"framer-acb2cy\",\"data-framer-name\":\"Join the waitlist\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"pAoWtS3KS\",style:{\"--extracted-r6o4lv\":\"var(--token-dc6bf31d-56e6-43a5-a84b-86d3b5fa61d8, rgb(237, 243, 244))\"},verticalAlignment:\"center\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ge1pfz\",\"data-border\":true,\"data-framer-name\":\"Button 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"N8psBlFB7\",onTap:onTapzmi20g,style:{\"--border-bottom-width\":\"1.2000000476837158px\",\"--border-color\":\"var(--token-8d702360-11d2-49bc-b84a-106c691517c3, rgb(77, 102, 112))\",\"--border-left-width\":\"1.2000000476837158px\",\"--border-right-width\":\"1.2000000476837158px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1.2000000476837158px\",borderBottomLeftRadius:31,borderBottomRightRadius:31,borderTopLeftRadius:31,borderTopRightRadius:31},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1fn4aos\",\"data-styles-preset\":\"ttpi9nRv2\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8d702360-11d2-49bc-b84a-106c691517c3, rgb(77, 102, 112)))\"},children:\"Close\"})}),className:\"framer-cqvc2j\",\"data-framer-name\":\"Join the waitlist\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"JEgNe_upw\",style:{\"--extracted-r6o4lv\":\"var(--token-8d702360-11d2-49bc-b84a-106c691517c3, rgb(77, 102, 112))\"},verticalAlignment:\"center\",withExternalLayout:true})})]})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-2IlPA.framer-17hywus, .framer-2IlPA .framer-17hywus { display: block; }\",\".framer-2IlPA.framer-1kl2ceq { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 60px; justify-content: center; overflow: hidden; padding: 20px; position: relative; width: 939px; will-change: var(--framer-will-change-override, transform); }\",\".framer-2IlPA .framer-op1ntl { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-2IlPA .framer-ruoew6-container { flex: none; height: 39px; position: relative; width: 43px; }\",\".framer-2IlPA .framer-19oj5s4 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-2IlPA .framer-1dujv6x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-2IlPA .framer-1fn8lfr { 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: min-content; }\",\".framer-2IlPA .framer-1ey9fni { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 7px; height: 36px; justify-content: center; overflow: visible; padding: 13px 20px 14px 20px; position: relative; text-decoration: none; width: min-content; }\",\".framer-2IlPA .framer-acb2cy, .framer-2IlPA .framer-cqvc2j { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-2IlPA .framer-ge1pfz { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 7px; height: 36px; justify-content: center; overflow: visible; padding: 13px 16px 14px 16px; position: relative; width: 90px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-2IlPA.framer-1kl2ceq, .framer-2IlPA .framer-op1ntl, .framer-2IlPA .framer-1dujv6x, .framer-2IlPA .framer-1fn8lfr, .framer-2IlPA .framer-1ey9fni, .framer-2IlPA .framer-ge1pfz { gap: 0px; } .framer-2IlPA.framer-1kl2ceq > *, .framer-2IlPA .framer-op1ntl > *, .framer-2IlPA .framer-1fn8lfr > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-2IlPA.framer-1kl2ceq > :first-child, .framer-2IlPA .framer-op1ntl > :first-child, .framer-2IlPA .framer-1dujv6x > :first-child, .framer-2IlPA .framer-1fn8lfr > :first-child, .framer-2IlPA .framer-1ey9fni > :first-child, .framer-2IlPA .framer-ge1pfz > :first-child { margin-left: 0px; } .framer-2IlPA.framer-1kl2ceq > :last-child, .framer-2IlPA .framer-op1ntl > :last-child, .framer-2IlPA .framer-1dujv6x > :last-child, .framer-2IlPA .framer-1fn8lfr > :last-child, .framer-2IlPA .framer-1ey9fni > :last-child, .framer-2IlPA .framer-ge1pfz > :last-child { margin-right: 0px; } .framer-2IlPA .framer-1dujv6x > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-2IlPA .framer-1ey9fni > *, .framer-2IlPA .framer-ge1pfz > * { margin: 0px; margin-left: calc(7px / 2); margin-right: calc(7px / 2); } }\",\".framer-2IlPA.framer-v-p29ccp.framer-1kl2ceq { flex-direction: column; height: 130px; width: 400px; }\",\".framer-2IlPA.framer-v-p29ccp .framer-op1ntl { flex: none; width: 100%; }\",\".framer-2IlPA.framer-v-p29ccp .framer-1dujv6x { width: 220px; }\",\".framer-2IlPA.framer-v-p29ccp .framer-1fn8lfr, .framer-2IlPA.framer-v-p29ccp .framer-1ey9fni { flex: 1 0 0px; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-2IlPA.framer-v-p29ccp.framer-1kl2ceq { gap: 0px; } .framer-2IlPA.framer-v-p29ccp.framer-1kl2ceq > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-2IlPA.framer-v-p29ccp.framer-1kl2ceq > :first-child { margin-top: 0px; } .framer-2IlPA.framer-v-p29ccp.framer-1kl2ceq > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,'.framer-2IlPA[data-border=\"true\"]::after, .framer-2IlPA [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 60\n * @framerIntrinsicWidth 939\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"FtZ_vznqJ\":{\"layout\":[\"fixed\",\"fixed\"]},\"bk4dwKlDh\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"UYMLk_Umx\":\"tap2\",\"NA2EvJqW6\":\"hover\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framero4HOgRRj1=withCSS(Component,css,\"framer-2IlPA\");export default Framero4HOgRRj1;Framero4HOgRRj1.displayName=\"popupHome\";Framero4HOgRRj1.defaultProps={height:60,width:939};addPropertyControls(Framero4HOgRRj1,{variant:{options:[\"kzXCu14xA\",\"FtZ_vznqJ\",\"bk4dwKlDh\"],optionTitles:[\"Desktop\",\"Hidden\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},UYMLk_Umx:{title:\"Tap 2\",type:ControlType.EventHandler},NA2EvJqW6:{title:\"Hover\",type:ControlType.EventHandler}});addFonts(Framero4HOgRRj1,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...IconoirFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framero4HOgRRj1\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"60\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"FtZ_vznqJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"bk4dwKlDh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"UYMLk_Umx\\\":\\\"tap2\\\",\\\"NA2EvJqW6\\\":\\\"hover\\\"}\",\"framerIntrinsicWidth\":\"939\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./o4HOgRRj1.map", "// Generated by Framer (8a81902)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"nCfyUuiTq\"];const variantClassNames={nCfyUuiTq:\"framer-v-1eb0ojx\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const getProps=({height,id,title,width,...props})=>{var _ref;return{...props,ylQpbEdAf:(_ref=title!==null&&title!==void 0?title:props.ylQpbEdAf)!==null&&_ref!==void 0?_ref:\"Discover EstateX\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale}=useLocaleInfo();const{style,className,layoutId,variant,ylQpbEdAf,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"nCfyUuiTq\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const defaultLayoutId=React.useId();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-KLH0A\",classNames),style:{display:\"contents\"},children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"wdw6rvgPq\"},children:/*#__PURE__*/_jsx(motion.a,{...restProps,className:`${cx(\"framer-1eb0ojx\",className)} framer-13kq65t`,\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"nCfyUuiTq\",ref:ref,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(13, 76, 96)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:38,borderBottomRightRadius:38,borderTopLeftRadius:38,borderTopRightRadius:38,boxShadow:\"0px 0px 0px 1px rgba(15, 23, 42, 0.10000000149011612)\",...style},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"17px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXI=\",\"--framer-font-family\":'\"Inter\"',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(240, 240, 240, 1))\"},children:\"Discover EstateX\"})})}),className:\"framer-1v7zj6r\",\"data-framer-name\":\"Discover EstateX\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"dkGVUk7rf\",style:{\"--extracted-1w3ko1f\":\"rgba(240, 240, 240, 1)\",\"--framer-paragraph-spacing\":\"0px\"},text:ylQpbEdAf,verticalAlignment:\"center\",withExternalLayout:true})})})})})});});const css=['.framer-KLH0A [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-KLH0A .framer-13kq65t { display: block; }\",\".framer-KLH0A .framer-1eb0ojx { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 13px 17.265625px 14px 16px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-KLH0A .framer-1v7zj6r { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-KLH0A .framer-1eb0ojx { gap: 0px; } .framer-KLH0A .framer-1eb0ojx > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-KLH0A .framer-1eb0ojx > :first-child { margin-left: 0px; } .framer-KLH0A .framer-1eb0ojx > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 44\n * @framerIntrinsicWidth 145.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"ylQpbEdAf\":\"title\"}\n * @framerImmutableVariables false\n */const FramerTcwKKfbT1=withCSS(Component,css,\"framer-KLH0A\");export default FramerTcwKKfbT1;FramerTcwKKfbT1.displayName=\"Button 2\";FramerTcwKKfbT1.defaultProps={height:44,width:145.5};addPropertyControls(FramerTcwKKfbT1,{ylQpbEdAf:{defaultValue:\"Discover EstateX\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(FramerTcwKKfbT1,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerTcwKKfbT1\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"false\",\"framerVariables\":\"{\\\"ylQpbEdAf\\\":\\\"title\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"145.5\",\"framerIntrinsicHeight\":\"44\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./TcwKKfbT1.map", "// Generated by Framer (241a4b4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,cx,getFonts,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Row from\"https://framerusercontent.com/modules/AZFqLqLFkx6vL9kRAxCN/R3DWbaOB59Ob7Ia5vAJU/itsC1pxBs.js\";import RowCopy from\"https://framerusercontent.com/modules/2JfFg1tldigcBoPmZMFc/kZ7wpg5gqGWtC4ra3wr0/RrHdhrlnx.js\";const RowFonts=getFonts(Row);const RowCopyFonts=getFonts(RowCopy);const cycleOrder=[\"lv_K8mMBi\"];const variantClassNames={lv_K8mMBi:\"framer-v-bv92d3\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/ _jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/ React.forwardRef(function(props,ref){const{activeLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"lv_K8mMBi\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const defaultLayoutId=React.useId();return /*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-tve7q\",classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsx(Transition,{value:transition,children:/*#__PURE__*/ _jsxs(motion.div,{...restProps,className:cx(\"framer-bv92d3\",className),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"lv_K8mMBi\",ref:ref,style:{backgroundColor:\"var(--token-a6e0c864-d8b7-44d2-bbcd-beda16340ae7, rgb(19, 44, 51))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},children:[/*#__PURE__*/ _jsx(motion.div,{className:\"framer-1bi2c54-container\",layoutDependency:layoutDependency,layoutId:\"q0zIWbLRw-container\",children:/*#__PURE__*/ _jsx(Row,{answer:\"EstateX is a Real Estate Tokenization Platform aiming to make Real Estate Simple, Affordable and Accessible to everyone, everywhere. \\n\\nWith our intuitive platform it\u2019s now easier then ever to start investing into fractional shares of real estate, all designed for you to create and build your real estate portfolio. We put you behind the wheel and and provide you with the tools to and flexibility to start generating a passive income. \\n\\nWether you are just starting out, or are a seasoned investor or property owner, EstateX is the main hub for you to manage all your needs.\",height:\"100%\",id:\"q0zIWbLRw\",layoutId:\"q0zIWbLRw\",question:\"What is EstateX?\",style:{width:\"100%\"},variant:\"VVtPrKEAH\",width:\"100%\"})}),/*#__PURE__*/ _jsx(motion.div,{className:\"framer-1hkahcs\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"f7GUV48LR\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\"}}),/*#__PURE__*/ _jsx(motion.div,{className:\"framer-7xh52n-container\",layoutDependency:layoutDependency,layoutId:\"mucJaD4w7-container\",children:/*#__PURE__*/ _jsx(RowCopy,{answer:\"The main thing is that it\u2019s simple! You set up your account in minutes and can instantly start investing into real estate. \\n\\nWe tokenize real estate to make it accessible to everyone, while keeping the financial returns that make real estate attractive. \\n\\nIn simple words: Create your account, go to the property of your choice and start investing!\\n\",height:\"100%\",id:\"mucJaD4w7\",layoutId:\"mucJaD4w7\",question:\"How does EstateX work?\",style:{width:\"100%\"},variant:\"MMkiY7MD7\",width:\"100%\"})}),/*#__PURE__*/ _jsx(motion.div,{className:\"framer-1mnc07m\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"AfBuyqPbk\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\"}}),/*#__PURE__*/ _jsx(motion.div,{className:\"framer-y1tsok-container\",layoutDependency:layoutDependency,layoutId:\"uStwa_9Ne-container\",children:/*#__PURE__*/ _jsx(RowCopy,{answer:\"EstateX is powered by a lot of amazing technologies with Polygon at the center of it. Security tokens are issued in a completely regulated environment for maximum investor protection. \\n\\nWith the amazing additions of Payment Cards, Loans and Education it will take over this old-fashioned industry by storm!\",height:\"100%\",id:\"uStwa_9Ne\",layoutId:\"uStwa_9Ne\",question:\"What is EstateX powered by?\",style:{width:\"100%\"},variant:\"MMkiY7MD7\",width:\"100%\"})})]})})})});});const css=['.framer-tve7q [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-tve7q .framer-1brcftm { display: block; }\",\".framer-tve7q .framer-bv92d3 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 20px 0px 20px; position: relative; width: 1000px; will-change: var(--framer-will-change-override, transform); }\",\".framer-tve7q .framer-1bi2c54-container, .framer-tve7q .framer-7xh52n-container, .framer-tve7q .framer-y1tsok-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-tve7q .framer-1hkahcs, .framer-tve7q .framer-1mnc07m { flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-tve7q .framer-bv92d3 { gap: 0px; } .framer-tve7q .framer-bv92d3 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-tve7q .framer-bv92d3 > :first-child { margin-top: 0px; } .framer-tve7q .framer-bv92d3 > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 194\n * @framerIntrinsicWidth 1000\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n */ const FramerVq9uUobi0=withCSS(Component,css,\"framer-tve7q\");export default FramerVq9uUobi0;FramerVq9uUobi0.displayName=\"Accordion\";FramerVq9uUobi0.defaultProps={height:194,width:1e3};addFonts(FramerVq9uUobi0,[...RowFonts,...RowCopyFonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerVq9uUobi0\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"194\",\"framerIntrinsicWidth\":\"1000\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (c75d380)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,SVG,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/Ofofkz06PuWC1OZ6U6bP/cyiwWBNnGZu3e8f0LK4o/ttpi9nRv2.js\";const enabledGestures={VzALOCRkd:{pressed:true}};const cycleOrder=[\"VzALOCRkd\"];const serializationHash=\"framer-8BVYs\";const variantClassNames={VzALOCRkd:\"framer-v-98nfan\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const getProps=({height,id,title,width,...props})=>{var _ref;return{...props,py5hsHpxU:(_ref=title!==null&&title!==void 0?title:props.py5hsHpxU)!==null&&_ref!==void 0?_ref:\"Join the waitlist\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,py5hsHpxU,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"VzALOCRkd\",enabledGestures,transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsx(Link,{href:\"https://promotions.estatex.eu/waitlist\",openInNewTab:false,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,animate:variants,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-98nfan\",className,classNames)} framer-gk0mn5`,\"data-framer-name\":\"Variant 1\",initial:variant,layoutDependency:layoutDependency,layoutId:\"VzALOCRkd\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(13, 76, 96)\",borderBottomLeftRadius:31,borderBottomRightRadius:31,borderTopLeftRadius:31,borderTopRightRadius:31,opacity:1,...style},variants:{\"VzALOCRkd-pressed\":{opacity:.27}},...addPropertyOverrides({\"VzALOCRkd-pressed\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1fn4aos\",\"data-styles-preset\":\"ttpi9nRv2\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-dc6bf31d-56e6-43a5-a84b-86d3b5fa61d8, rgb(237, 243, 244)))\"},children:\"Join the waitlist\"})}),className:\"framer-kzpgqq\",\"data-framer-name\":\"Join the waitlist\",layoutDependency:layoutDependency,layoutId:\"zmEY8RFtu\",style:{\"--extracted-r6o4lv\":\"var(--token-dc6bf31d-56e6-43a5-a84b-86d3b5fa61d8, rgb(237, 243, 244))\"},text:py5hsHpxU,verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-4l6dwp\",\"data-framer-name\":\"div\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:15,intrinsicWidth:15,layoutDependency:layoutDependency,layoutId:\"iAoKdYE62\",svg:'<svg width=\"15\" height=\"15\" viewBox=\"0 0 15 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_59_411)\">\\n<path d=\"M8.25142 12.7024L7.22869 11.691L10.7798 8.13987H1.85938V6.6626H10.7798L7.22869 3.11715L8.25142 2.1001L13.5526 7.40124L8.25142 12.7024Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_59_411\">\\n<rect width=\"12\" height=\"12\" fill=\"white\" transform=\"translate(1.85938 1.49219)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})})})});});const css=['.framer-8BVYs[data-border=\"true\"]::after, .framer-8BVYs [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-8BVYs.framer-gk0mn5, .framer-8BVYs .framer-gk0mn5 { display: block; }\",\".framer-8BVYs.framer-98nfan { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 7px; height: 44px; justify-content: center; overflow: visible; padding: 13px 16px 14px 16px; position: relative; text-decoration: none; width: 158px; }\",\".framer-8BVYs .framer-kzpgqq { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-8BVYs .framer-4l6dwp { flex: none; height: 15px; position: relative; width: 15px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-8BVYs.framer-98nfan { gap: 0px; } .framer-8BVYs.framer-98nfan > * { margin: 0px; margin-left: calc(7px / 2); margin-right: calc(7px / 2); } .framer-8BVYs.framer-98nfan > :first-child { margin-left: 0px; } .framer-8BVYs.framer-98nfan > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 44\n * @framerIntrinsicWidth 158\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"KnokFb4eq\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"py5hsHpxU\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const Framervum9MqFgz=withCSS(Component,css,\"framer-8BVYs\");export default Framervum9MqFgz;Framervum9MqFgz.displayName=\"Button 1\";Framervum9MqFgz.defaultProps={height:44,width:158};addPropertyControls(Framervum9MqFgz,{py5hsHpxU:{defaultValue:\"Join the waitlist\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(Framervum9MqFgz,[...sharedStyle.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framervum9MqFgz\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"KnokFb4eq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"44\",\"framerVariables\":\"{\\\"py5hsHpxU\\\":\\\"title\\\"}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"158\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./vum9MqFgz.map", "// Generated by Framer (83eb5d8)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,RichText,SVG,useActiveVariantCallback,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/1Cm6umcxw2l4VkxBhhEB/42zBW1ivu2XmJUuPlEbU/Gq2LPsI7v.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/tqwMBDzvJtv7OBOCdCmD/Lc8pgclGJcNsdCmX8wwM/gWwBkROzx.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/4Lu5wGrCHwcLVAIVwR85/x7PGu30GO4slCLytOc0g/O3HYYyjWS.js\";const ImageWithFX=withFX(Image);const cycleOrder=[\"bK9gIXmwF\",\"iDQAEPqq3\",\"CBAeXF1yc\",\"ANNBI3c_9\",\"feQMJVM0a\",\"LJ7JoEnxK\"];const serializationHash=\"framer-HNIzX\";const variantClassNames={ANNBI3c_9:\"framer-v-xzmd70\",bK9gIXmwF:\"framer-v-qzcdse\",CBAeXF1yc:\"framer-v-u8lndb\",feQMJVM0a:\"framer-v-irorc3\",iDQAEPqq3:\"framer-v-t1fgou\",LJ7JoEnxK:\"framer-v-t5nzzf\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const animation={opacity:0,rotate:0,scale:1,x:200,y:0};const transition1={delay:0,duration:2,ease:[.44,0,.05,1],type:\"tween\"};const animation1={opacity:0,rotate:0,scale:1,transition:transition1,x:200,y:0};const transformTemplate1=(_,t)=>`perspective(1200px) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const humanReadableVariantMap={\"Dektop 3\":\"LJ7JoEnxK\",\"Desktop 2\":\"CBAeXF1yc\",Desktop:\"bK9gIXmwF\",Phone:\"iDQAEPqq3\",phone2:\"ANNBI3c_9\",phone3:\"feQMJVM0a\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"bK9gIXmwF\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"bK9gIXmwF\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapzzwi3j=activeVariantCallback(async(...args)=>{setVariant(\"bK9gIXmwF\");});const onTapzlypgk=activeVariantCallback(async(...args)=>{setVariant(\"iDQAEPqq3\");});const onTapmpk210=activeVariantCallback(async(...args)=>{setVariant(\"CBAeXF1yc\");});const onTap91n5v9=activeVariantCallback(async(...args)=>{setVariant(\"ANNBI3c_9\");});const onTapcejcys=activeVariantCallback(async(...args)=>{setVariant(\"LJ7JoEnxK\");});const onTap1p44q48=activeVariantCallback(async(...args)=>{setVariant(\"feQMJVM0a\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"CBAeXF1yc\",\"ANNBI3c_9\",\"feQMJVM0a\",\"LJ7JoEnxK\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"ANNBI3c_9\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"CBAeXF1yc\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"LJ7JoEnxK\")return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"feQMJVM0a\")return true;return false;};const isDisplayed5=()=>{if([\"CBAeXF1yc\",\"ANNBI3c_9\",\"feQMJVM0a\",\"LJ7JoEnxK\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,animate:variants,className:cx(serializationHash,...sharedStyleClassNames,\"framer-qzcdse\",className,classNames),\"data-framer-name\":\"Desktop\",initial:variant,layoutDependency:layoutDependency,layoutId:\"bK9gIXmwF\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({ANNBI3c_9:{\"data-framer-name\":\"phone2\"},CBAeXF1yc:{\"data-framer-name\":\"Desktop 2\"},feQMJVM0a:{\"data-framer-name\":\"phone3\"},iDQAEPqq3:{\"data-framer-name\":\"Phone\"},LJ7JoEnxK:{\"data-framer-name\":\"Dektop 3\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hs4q35\",layoutDependency:layoutDependency,layoutId:\"BRau3cTXe\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1eyv8y0\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"Fb3vmNzb1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1iuqpgw\",\"data-styles-preset\":\"Gq2LPsI7v\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9439d993-1154-4347-80b1-ebb8b148d199, rgb(0, 237, 255)))\"},children:\"BENEFITS\"})}),className:\"framer-d8m8j5\",layoutDependency:layoutDependency,layoutId:\"wmJ7oq4EO\",style:{\"--extracted-r6o4lv\":\"var(--token-9439d993-1154-4347-80b1-ebb8b148d199, rgb(0, 237, 255))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Instrument Sans\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-dc6bf31d-56e6-43a5-a84b-86d3b5fa61d8, rgb(237, 243, 244)))\"},children:\"Tailor-made benefits for you.\"})}),className:\"framer-1raewku\",fonts:[\"GF;Instrument Sans-600\"],layoutDependency:layoutDependency,layoutId:\"I52rH9omg\",style:{\"--extracted-1of0zx5\":\"var(--token-dc6bf31d-56e6-43a5-a84b-86d3b5fa61d8, rgb(237, 243, 244))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-42742940-6a51-4c81-a3df-dace84b67280, rgb(152, 185, 195)))\"},children:\"No matter your background or goals, EstateX has something for you. We offer unique benefits tailored to:\"})}),className:\"framer-9791v6\",layoutDependency:layoutDependency,layoutId:\"dmmEjCl5z\",style:{\"--extracted-r6o4lv\":\"var(--token-42742940-6a51-4c81-a3df-dace84b67280, rgb(152, 185, 195))\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1j1se5c\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"UfpSS_Lep\",...addPropertyOverrides({ANNBI3c_9:{\"data-highlight\":true,onTap:onTapzlypgk},CBAeXF1yc:{\"data-highlight\":true,onTap:onTapzzwi3j},feQMJVM0a:{\"data-highlight\":true,onTap:onTapzlypgk},LJ7JoEnxK:{\"data-highlight\":true,onTap:onTapzzwi3j}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1mlv6fx\",\"data-framer-name\":\"Line 30\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:3,intrinsicWidth:448,layoutDependency:layoutDependency,layoutId:\"I59:373;59:957\",style:{opacity:1},svg:'<svg width=\"448\" height=\"3\" viewBox=\"-1 -1 448 3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line y1=\"0.5\" x2=\"446\" y2=\"0.5\" stroke=\"url(#paint0_linear_330_520)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_330_520\" x1=\"-33.2836\" y1=\"0.999833\" x2=\"405.394\" y2=\"67.4291\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#1F543C\"/>\\n<stop offset=\"0.583333\" stop-color=\"#83C6A8\"/>\\n<stop offset=\"1\" stop-color=\"#153C2A\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',variants:{ANNBI3c_9:{opacity:.15},CBAeXF1yc:{opacity:.15},feQMJVM0a:{opacity:.15},LJ7JoEnxK:{opacity:.15}},withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-t6gz1a\",\"data-styles-preset\":\"O3HYYyjWS\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-42742940-6a51-4c81-a3df-dace84b67280, rgb(152, 185, 195)))\"},children:\"Retail Investors\"})}),className:\"framer-fdg2ld\",layoutDependency:layoutDependency,layoutId:\"f5D9wDIPD\",style:{\"--extracted-r6o4lv\":\"var(--token-42742940-6a51-4c81-a3df-dace84b67280, rgb(152, 185, 195))\"},variants:{ANNBI3c_9:{\"--extracted-r6o4lv\":\"var(--token-8d702360-11d2-49bc-b84a-106c691517c3, rgb(77, 102, 112))\"},CBAeXF1yc:{\"--extracted-r6o4lv\":\"var(--token-8d702360-11d2-49bc-b84a-106c691517c3, rgb(77, 102, 112))\"},feQMJVM0a:{\"--extracted-r6o4lv\":\"var(--token-8d702360-11d2-49bc-b84a-106c691517c3, rgb(77, 102, 112))\"},LJ7JoEnxK:{\"--extracted-r6o4lv\":\"var(--token-8d702360-11d2-49bc-b84a-106c691517c3, rgb(77, 102, 112))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ANNBI3c_9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-t6gz1a\",\"data-styles-preset\":\"O3HYYyjWS\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8d702360-11d2-49bc-b84a-106c691517c3, rgb(77, 102, 112)))\"},children:\"Retail Investors\"})})},CBAeXF1yc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-t6gz1a\",\"data-styles-preset\":\"O3HYYyjWS\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8d702360-11d2-49bc-b84a-106c691517c3, rgb(77, 102, 112)))\"},children:\"Retail Investors\"})})},feQMJVM0a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-t6gz1a\",\"data-styles-preset\":\"O3HYYyjWS\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8d702360-11d2-49bc-b84a-106c691517c3, rgb(77, 102, 112)))\"},children:\"Retail Investors\"})})},LJ7JoEnxK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-t6gz1a\",\"data-styles-preset\":\"O3HYYyjWS\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8d702360-11d2-49bc-b84a-106c691517c3, rgb(77, 102, 112)))\"},children:\"Retail Investors\"})})}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-3p193q\",\"data-styles-preset\":\"gWwBkROzx\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8d702360-11d2-49bc-b84a-106c691517c3, rgb(77, 102, 112)))\"},children:\"Lower investment minimums and the freedom to diversify your portfolio with diverse real estate assets.\"})}),className:\"framer-1lps0t3\",layoutDependency:layoutDependency,layoutId:\"aiXXDz5II\",style:{\"--extracted-r6o4lv\":\"var(--token-8d702360-11d2-49bc-b84a-106c691517c3, rgb(77, 102, 112))\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-3p193q\",\"data-styles-preset\":\"gWwBkROzx\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-71e216e0-c6c1-4ee4-9206-5c83abd24275, rgb(97, 160, 131)))\"},children:\"For Retail Investors\"})}),className:\"framer-cpxikm\",layoutDependency:layoutDependency,layoutId:\"YKU0EUrjd\",style:{\"--extracted-r6o4lv\":\"var(--token-71e216e0-c6c1-4ee4-9206-5c83abd24275, rgb(97, 160, 131))\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qyomz0\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"J7RLfvzNZ\",onTap:onTapmpk210,...addPropertyOverrides({ANNBI3c_9:{\"data-highlight\":undefined,onTap:undefined},feQMJVM0a:{onTap:onTap91n5v9},iDQAEPqq3:{onTap:onTap91n5v9}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-pszxop\",\"data-framer-name\":\"Line 30\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:3,intrinsicWidth:448,layoutDependency:layoutDependency,layoutId:\"Mwb6ySvNT\",style:{opacity:.15},svg:'<svg width=\"448\" height=\"3\" viewBox=\"-1 -1 448 3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line y1=\"0.5\" x2=\"446\" y2=\"0.5\" stroke=\"url(#paint0_linear_330_520)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_330_520\" x1=\"-33.2836\" y1=\"0.999833\" x2=\"405.394\" y2=\"67.4291\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#1F543C\"/>\\n<stop offset=\"0.583333\" stop-color=\"#83C6A8\"/>\\n<stop offset=\"1\" stop-color=\"#153C2A\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',variants:{ANNBI3c_9:{opacity:1},CBAeXF1yc:{opacity:1},LJ7JoEnxK:{opacity:.27}},withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-t6gz1a\",\"data-styles-preset\":\"O3HYYyjWS\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8d702360-11d2-49bc-b84a-106c691517c3, rgb(77, 102, 112)))\"},children:\"Property Owners\"})}),className:\"framer-1vyoi0s\",layoutDependency:layoutDependency,layoutId:\"iN_IhyFpO\",style:{\"--extracted-r6o4lv\":\"var(--token-8d702360-11d2-49bc-b84a-106c691517c3, rgb(77, 102, 112))\"},variants:{CBAeXF1yc:{\"--extracted-r6o4lv\":\"var(--token-42742940-6a51-4c81-a3df-dace84b67280, rgb(152, 185, 195))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({CBAeXF1yc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-t6gz1a\",\"data-styles-preset\":\"O3HYYyjWS\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-42742940-6a51-4c81-a3df-dace84b67280, rgb(152, 185, 195)))\"},children:\"Property Owners\"})})}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-3p193q\",\"data-styles-preset\":\"gWwBkROzx\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8d702360-11d2-49bc-b84a-106c691517c3, rgb(77, 102, 112)))\"},children:\"Lower investment minimums and the freedom to diversify your portfolio with diverse real estate assets.\"})}),className:\"framer-474dnx\",layoutDependency:layoutDependency,layoutId:\"W_MC6YY22\",style:{\"--extracted-r6o4lv\":\"var(--token-8d702360-11d2-49bc-b84a-106c691517c3, rgb(77, 102, 112))\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-3p193q\",\"data-styles-preset\":\"gWwBkROzx\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-71e216e0-c6c1-4ee4-9206-5c83abd24275, rgb(97, 160, 131)))\"},children:\" For Retail investors\"})}),className:\"framer-1cqy5m\",layoutDependency:layoutDependency,layoutId:\"QY82sOEiU\",style:{\"--extracted-r6o4lv\":\"var(--token-71e216e0-c6c1-4ee4-9206-5c83abd24275, rgb(97, 160, 131))\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-3p193q\",\"data-styles-preset\":\"gWwBkROzx\",style:{\"--framer-text-alignment\":\"left\"},children:\"Tokenize your asset and raise liquidity on through the EstateX community. Releasing cash flow on just part of an asset.\"})}),className:\"framer-102hame\",layoutDependency:layoutDependency,layoutId:\"PJvkeHe8K\",verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-3p193q\",\"data-styles-preset\":\"gWwBkROzx\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-71e216e0-c6c1-4ee4-9206-5c83abd24275, rgb(97, 160, 131)))\"},children:\"For Property Owners\"})}),className:\"framer-13d5gz\",layoutDependency:layoutDependency,layoutId:\"s1fdWrl4t\",style:{\"--extracted-r6o4lv\":\"var(--token-71e216e0-c6c1-4ee4-9206-5c83abd24275, rgb(97, 160, 131))\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7m4zde\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Z8ujIEPDj\",onTap:onTapcejcys,...addPropertyOverrides({ANNBI3c_9:{onTap:onTap1p44q48},feQMJVM0a:{\"data-highlight\":undefined,onTap:undefined},iDQAEPqq3:{onTap:onTap1p44q48}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-vr261l\",\"data-framer-name\":\"Line 30\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:3,intrinsicWidth:448,layoutDependency:layoutDependency,layoutId:\"CCe7IKmSG\",style:{opacity:.15},svg:'<svg width=\"448\" height=\"3\" viewBox=\"-1 -1 448 3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line y1=\"0.5\" x2=\"446\" y2=\"0.5\" stroke=\"url(#paint0_linear_330_520)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_330_520\" x1=\"-33.2836\" y1=\"0.999833\" x2=\"405.394\" y2=\"67.4291\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#1F543C\"/>\\n<stop offset=\"0.583333\" stop-color=\"#83C6A8\"/>\\n<stop offset=\"1\" stop-color=\"#153C2A\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',variants:{feQMJVM0a:{opacity:1},LJ7JoEnxK:{opacity:1}},withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-t6gz1a\",\"data-styles-preset\":\"O3HYYyjWS\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8d702360-11d2-49bc-b84a-106c691517c3, rgb(77, 102, 112)))\"},children:\"Financial Institutions\"})}),className:\"framer-rti4q2\",layoutDependency:layoutDependency,layoutId:\"WFJjXbdl0\",style:{\"--extracted-r6o4lv\":\"var(--token-8d702360-11d2-49bc-b84a-106c691517c3, rgb(77, 102, 112))\"},variants:{feQMJVM0a:{\"--extracted-r6o4lv\":\"var(--token-42742940-6a51-4c81-a3df-dace84b67280, rgb(152, 185, 195))\"},LJ7JoEnxK:{\"--extracted-r6o4lv\":\"var(--token-42742940-6a51-4c81-a3df-dace84b67280, rgb(152, 185, 195))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({feQMJVM0a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-t6gz1a\",\"data-styles-preset\":\"O3HYYyjWS\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-42742940-6a51-4c81-a3df-dace84b67280, rgb(152, 185, 195)))\"},children:\"Financial Institutions\"})})},LJ7JoEnxK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-t6gz1a\",\"data-styles-preset\":\"O3HYYyjWS\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-42742940-6a51-4c81-a3df-dace84b67280, rgb(152, 185, 195)))\"},children:\"Financial Institutions\"})})}},baseVariant,gestureVariant)}),isDisplayed3()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-3p193q\",\"data-styles-preset\":\"gWwBkROzx\",style:{\"--framer-text-alignment\":\"left\"},children:\"Tokenize your assets and raise liquidity through the EstateX community. Releasing cash flow on just part of an asset. Leverage your assets by accessing our liquidity solutions.\"})}),className:\"framer-5qcp0w\",layoutDependency:layoutDependency,layoutId:\"IQkxYb_Dd\",verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-3p193q\",\"data-styles-preset\":\"gWwBkROzx\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-71e216e0-c6c1-4ee4-9206-5c83abd24275, rgb(97, 160, 131)))\"},children:\"For Financial Institutions\"})}),className:\"framer-15ob3wh\",layoutDependency:layoutDependency,layoutId:\"v_zpRz3qT\",style:{\"--extracted-r6o4lv\":\"var(--token-71e216e0-c6c1-4ee4-9206-5c83abd24275, rgb(97, 160, 131))\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-3p193q\",\"data-styles-preset\":\"gWwBkROzx\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8d702360-11d2-49bc-b84a-106c691517c3, rgb(77, 102, 112)))\"},children:\"Lower investment minimums and the freedom to diversify your portfolio with diverse real estate assets.\"})}),className:\"framer-1xavei0\",layoutDependency:layoutDependency,layoutId:\"g5NTuGRW_\",style:{\"--extracted-r6o4lv\":\"var(--token-8d702360-11d2-49bc-b84a-106c691517c3, rgb(77, 102, 112))\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-3p193q\",\"data-styles-preset\":\"gWwBkROzx\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-71e216e0-c6c1-4ee4-9206-5c83abd24275, rgb(97, 160, 131)))\"},children:\"Retail Investors\"})}),className:\"framer-kmdjkk\",layoutDependency:layoutDependency,layoutId:\"rnz1UC72t\",style:{\"--extracted-r6o4lv\":\"var(--token-71e216e0-c6c1-4ee4-9206-5c83abd24275, rgb(97, 160, 131))\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"stretch\",intrinsicHeight:732,intrinsicWidth:450,pixelHeight:732,pixelWidth:450,positionX:\"center\",positionY:\"center\",sizes:\"min(934px, 100vw)\",src:\"https://framerusercontent.com/images/2HOKz2zRBPjGEi8NL8neQhVpZYo.png\",srcSet:\"https://framerusercontent.com/images/2HOKz2zRBPjGEi8NL8neQhVpZYo.png 450w\"},className:\"framer-vj83cs\",layoutDependency:layoutDependency,layoutId:\"rEfklHajH\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},transformTemplate:transformTemplate1,...addPropertyOverrides({ANNBI3c_9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:732,intrinsicWidth:450,pixelHeight:732,pixelWidth:450,sizes:\"min(597px, 100vw)\",src:\"https://framerusercontent.com/images/2HOKz2zRBPjGEi8NL8neQhVpZYo.png\",srcSet:\"https://framerusercontent.com/images/2HOKz2zRBPjGEi8NL8neQhVpZYo.png 450w\"}},CBAeXF1yc:{background:{alt:\"\",fit:\"stretch\",intrinsicHeight:732,intrinsicWidth:450,pixelHeight:732,pixelWidth:450,positionX:\"center\",positionY:\"center\",sizes:\"min(1005px, 100vw)\",src:\"https://framerusercontent.com/images/2HOKz2zRBPjGEi8NL8neQhVpZYo.png\",srcSet:\"https://framerusercontent.com/images/2HOKz2zRBPjGEi8NL8neQhVpZYo.png 450w\"}},feQMJVM0a:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:732,intrinsicWidth:450,pixelHeight:732,pixelWidth:450,sizes:\"min(475px, 100vw)\",src:\"https://framerusercontent.com/images/2HOKz2zRBPjGEi8NL8neQhVpZYo.png\",srcSet:\"https://framerusercontent.com/images/2HOKz2zRBPjGEi8NL8neQhVpZYo.png 450w\"}},iDQAEPqq3:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:732,intrinsicWidth:450,pixelHeight:732,pixelWidth:450,sizes:\"min(499px, 100vw)\",src:\"https://framerusercontent.com/images/2HOKz2zRBPjGEi8NL8neQhVpZYo.png\",srcSet:\"https://framerusercontent.com/images/2HOKz2zRBPjGEi8NL8neQhVpZYo.png 450w\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1367nn2\",layoutDependency:layoutDependency,layoutId:\"JgQwzbl7g\",children:[isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:90,intrinsicWidth:272,pixelHeight:180,pixelWidth:544,sizes:\"378px\",src:\"https://framerusercontent.com/images/psvEZLqOykYVeKLBFfT0jyfS8.gif?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/psvEZLqOykYVeKLBFfT0jyfS8.gif?scale-down-to=512 512w, https://framerusercontent.com/images/psvEZLqOykYVeKLBFfT0jyfS8.gif 544w\"},className:\"framer-1hvzj1z\",\"data-framer-name\":\"Unnamed_file_2_\",layoutDependency:layoutDependency,layoutId:\"bsjcbBnjN\",...addPropertyOverrides({iDQAEPqq3:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:90,intrinsicWidth:272,pixelHeight:180,pixelWidth:544,sizes:\"calc((min(499px, 100vw) - 60px) * 0.89)\",src:\"https://framerusercontent.com/images/psvEZLqOykYVeKLBFfT0jyfS8.gif?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/psvEZLqOykYVeKLBFfT0jyfS8.gif?scale-down-to=512 512w, https://framerusercontent.com/images/psvEZLqOykYVeKLBFfT0jyfS8.gif 544w\"}}},baseVariant,gestureVariant)}),isDisplayed5()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:420,intrinsicWidth:459,pixelHeight:420,pixelWidth:459,src:\"https://framerusercontent.com/images/TqAHMYjtgBR93Axl8UBFvjwLv8.png\"},className:\"framer-evzcid\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"g1M_TvIME\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},...addPropertyOverrides({ANNBI3c_9:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:420,intrinsicWidth:459,pixelHeight:420,pixelWidth:459,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/TqAHMYjtgBR93Axl8UBFvjwLv8.png\"}},CBAeXF1yc:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:420,intrinsicWidth:459,pixelHeight:420,pixelWidth:459,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/TqAHMYjtgBR93Axl8UBFvjwLv8.png\"}},feQMJVM0a:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:311,intrinsicWidth:546,pixelHeight:311,pixelWidth:546,positionX:\"center\",positionY:\"center\",sizes:\"calc((min(475px, 100vw) - 60px) * 0.7804)\",src:\"https://framerusercontent.com/images/td5ZPavjN2GQ68DnhXIdKmglA.png\",srcSet:\"https://framerusercontent.com/images/td5ZPavjN2GQ68DnhXIdKmglA.png?scale-down-to=512 512w, https://framerusercontent.com/images/td5ZPavjN2GQ68DnhXIdKmglA.png 546w\"}},LJ7JoEnxK:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:311,intrinsicWidth:546,pixelHeight:311,pixelWidth:546,positionX:\"center\",positionY:\"center\",sizes:\"calc(min(934px, 100vw) * 0.7804)\",src:\"https://framerusercontent.com/images/td5ZPavjN2GQ68DnhXIdKmglA.png\",srcSet:\"https://framerusercontent.com/images/td5ZPavjN2GQ68DnhXIdKmglA.png?scale-down-to=512 512w, https://framerusercontent.com/images/td5ZPavjN2GQ68DnhXIdKmglA.png 546w\"}}},baseVariant,gestureVariant)})]})})]})})});});const css=['.framer-HNIzX[data-border=\"true\"]::after, .framer-HNIzX [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-HNIzX.framer-15pmrnd, .framer-HNIzX .framer-15pmrnd { display: block; }\",\".framer-HNIzX.framer-qzcdse { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: wrap; gap: 11px; height: 731px; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 934px; }\",\".framer-HNIzX .framer-1hs4q35 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 34px; height: 100%; justify-content: flex-start; overflow: hidden; padding: 0px 10px 0px 0px; position: relative; width: 1px; }\",\".framer-HNIzX .framer-1eyv8y0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: auto; justify-content: flex-start; max-width: 2018px; padding: 0px 40px 20px 0px; position: relative; width: 100%; }\",\".framer-HNIzX .framer-d8m8j5, .framer-HNIzX .framer-1raewku, .framer-HNIzX .framer-9791v6, .framer-HNIzX .framer-fdg2ld, .framer-HNIzX .framer-1lps0t3, .framer-HNIzX .framer-cpxikm, .framer-HNIzX .framer-1vyoi0s, .framer-HNIzX .framer-474dnx, .framer-HNIzX .framer-1cqy5m, .framer-HNIzX .framer-102hame, .framer-HNIzX .framer-13d5gz, .framer-HNIzX .framer-rti4q2, .framer-HNIzX .framer-5qcp0w, .framer-HNIzX .framer-15ob3wh, .framer-HNIzX .framer-1xavei0, .framer-HNIzX .framer-kmdjkk { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-HNIzX .framer-1j1se5c { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: auto; justify-content: flex-start; max-width: 2018px; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-HNIzX .framer-1mlv6fx, .framer-HNIzX .framer-pszxop, .framer-HNIzX .framer-vr261l { flex: none; height: 3px; position: relative; width: 100%; }\",\".framer-HNIzX .framer-qyomz0, .framer-HNIzX .framer-7m4zde { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-HNIzX .framer-vj83cs { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-HNIzX .framer-1367nn2 { 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 0px 0px 0px; position: relative; width: 78%; }\",\".framer-HNIzX .framer-1hvzj1z { aspect-ratio: 3.022222222222222 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 125px); overflow: visible; position: relative; width: 378px; }\",\".framer-HNIzX .framer-evzcid { aspect-ratio: 1.1081967213114754 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 180px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-HNIzX.framer-qzcdse, .framer-HNIzX .framer-1hs4q35, .framer-HNIzX .framer-1eyv8y0, .framer-HNIzX .framer-1j1se5c, .framer-HNIzX .framer-qyomz0, .framer-HNIzX .framer-7m4zde, .framer-HNIzX .framer-vj83cs, .framer-HNIzX .framer-1367nn2 { gap: 0px; } .framer-HNIzX.framer-qzcdse > * { margin: 0px; margin-left: calc(11px / 2); margin-right: calc(11px / 2); } .framer-HNIzX.framer-qzcdse > :first-child { margin-left: 0px; } .framer-HNIzX.framer-qzcdse > :last-child { margin-right: 0px; } .framer-HNIzX .framer-1hs4q35 > * { margin: 0px; margin-bottom: calc(34px / 2); margin-top: calc(34px / 2); } .framer-HNIzX .framer-1hs4q35 > :first-child, .framer-HNIzX .framer-1eyv8y0 > :first-child, .framer-HNIzX .framer-1j1se5c > :first-child, .framer-HNIzX .framer-qyomz0 > :first-child, .framer-HNIzX .framer-7m4zde > :first-child, .framer-HNIzX .framer-vj83cs > :first-child, .framer-HNIzX .framer-1367nn2 > :first-child { margin-top: 0px; } .framer-HNIzX .framer-1hs4q35 > :last-child, .framer-HNIzX .framer-1eyv8y0 > :last-child, .framer-HNIzX .framer-1j1se5c > :last-child, .framer-HNIzX .framer-qyomz0 > :last-child, .framer-HNIzX .framer-7m4zde > :last-child, .framer-HNIzX .framer-vj83cs > :last-child, .framer-HNIzX .framer-1367nn2 > :last-child { margin-bottom: 0px; } .framer-HNIzX .framer-1eyv8y0 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-HNIzX .framer-1j1se5c > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-HNIzX .framer-qyomz0 > *, .framer-HNIzX .framer-7m4zde > *, .framer-HNIzX .framer-vj83cs > *, .framer-HNIzX .framer-1367nn2 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-HNIzX.framer-v-t1fgou.framer-qzcdse { flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; width: 499px; }\",\".framer-HNIzX.framer-v-t1fgou .framer-1hs4q35, .framer-HNIzX.framer-v-xzmd70 .framer-1hs4q35, .framer-HNIzX.framer-v-irorc3 .framer-1hs4q35 { flex: none; height: min-content; width: 100%; }\",\".framer-HNIzX.framer-v-t1fgou .framer-vj83cs { flex: none; flex-direction: row; height: min-content; padding: 70px 30px 70px 30px; width: 100%; }\",\".framer-HNIzX.framer-v-t1fgou .framer-1367nn2 { width: 89%; }\",\".framer-HNIzX.framer-v-t1fgou .framer-1hvzj1z { height: var(--framer-aspect-ratio-supported, 129px); width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-HNIzX.framer-v-t1fgou.framer-qzcdse, .framer-HNIzX.framer-v-t1fgou .framer-vj83cs { gap: 0px; } .framer-HNIzX.framer-v-t1fgou.framer-qzcdse > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-HNIzX.framer-v-t1fgou.framer-qzcdse > :first-child { margin-top: 0px; } .framer-HNIzX.framer-v-t1fgou.framer-qzcdse > :last-child { margin-bottom: 0px; } .framer-HNIzX.framer-v-t1fgou .framer-vj83cs > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-HNIzX.framer-v-t1fgou .framer-vj83cs > :first-child { margin-left: 0px; } .framer-HNIzX.framer-v-t1fgou .framer-vj83cs > :last-child { margin-right: 0px; } }\",\".framer-HNIzX.framer-v-u8lndb.framer-qzcdse { width: 1005px; }\",\".framer-HNIzX.framer-v-u8lndb .framer-1j1se5c, .framer-HNIzX.framer-v-xzmd70 .framer-1j1se5c, .framer-HNIzX.framer-v-irorc3 .framer-1j1se5c, .framer-HNIzX.framer-v-t5nzzf .framer-1j1se5c { cursor: pointer; }\",\".framer-HNIzX.framer-v-u8lndb .framer-evzcid { aspect-ratio: unset; height: 344px; overflow: auto; }\",\".framer-HNIzX.framer-v-xzmd70.framer-qzcdse { flex-direction: column; gap: 30px; height: min-content; width: 597px; }\",\".framer-HNIzX.framer-v-xzmd70 .framer-qyomz0, .framer-HNIzX.framer-v-irorc3 .framer-7m4zde { cursor: unset; }\",\".framer-HNIzX.framer-v-xzmd70 .framer-vj83cs { flex: none; height: min-content; padding: 30px 30px 30px 30px; width: 100%; }\",\".framer-HNIzX.framer-v-xzmd70 .framer-evzcid { aspect-ratio: 1.6835443037974684 / 1; height: var(--framer-aspect-ratio-supported, 224px); width: 90%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-HNIzX.framer-v-xzmd70.framer-qzcdse { gap: 0px; } .framer-HNIzX.framer-v-xzmd70.framer-qzcdse > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-HNIzX.framer-v-xzmd70.framer-qzcdse > :first-child { margin-top: 0px; } .framer-HNIzX.framer-v-xzmd70.framer-qzcdse > :last-child { margin-bottom: 0px; } }\",\".framer-HNIzX.framer-v-irorc3.framer-qzcdse { flex-direction: column; gap: 30px; height: min-content; width: 475px; }\",\".framer-HNIzX.framer-v-irorc3 .framer-vj83cs { flex: none; flex-direction: row; height: min-content; padding: 30px 30px 30px 30px; width: 100%; }\",\".framer-HNIzX.framer-v-irorc3 .framer-evzcid { aspect-ratio: 2.051282051282051 / 1; height: var(--framer-aspect-ratio-supported, 158px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-HNIzX.framer-v-irorc3.framer-qzcdse, .framer-HNIzX.framer-v-irorc3 .framer-vj83cs { gap: 0px; } .framer-HNIzX.framer-v-irorc3.framer-qzcdse > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-HNIzX.framer-v-irorc3.framer-qzcdse > :first-child { margin-top: 0px; } .framer-HNIzX.framer-v-irorc3.framer-qzcdse > :last-child { margin-bottom: 0px; } .framer-HNIzX.framer-v-irorc3 .framer-vj83cs > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-HNIzX.framer-v-irorc3 .framer-vj83cs > :first-child { margin-left: 0px; } .framer-HNIzX.framer-v-irorc3 .framer-vj83cs > :last-child { margin-right: 0px; } }\",\".framer-HNIzX.framer-v-t5nzzf .framer-1367nn2 { flex-direction: row; }\",\".framer-HNIzX.framer-v-t5nzzf .framer-evzcid { aspect-ratio: unset; height: 427px; order: 1; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-HNIzX.framer-v-t5nzzf .framer-1367nn2 { gap: 0px; } .framer-HNIzX.framer-v-t5nzzf .framer-1367nn2 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-HNIzX.framer-v-t5nzzf .framer-1367nn2 > :first-child { margin-left: 0px; } .framer-HNIzX.framer-v-t5nzzf .framer-1367nn2 > :last-child { margin-right: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 731\n * @framerIntrinsicWidth 934\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"iDQAEPqq3\":{\"layout\":[\"fixed\",\"auto\"]},\"CBAeXF1yc\":{\"layout\":[\"fixed\",\"fixed\"]},\"ANNBI3c_9\":{\"layout\":[\"fixed\",\"auto\"]},\"feQMJVM0a\":{\"layout\":[\"fixed\",\"auto\"]},\"LJ7JoEnxK\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FramerZ9pDWO1uy=withCSS(Component,css,\"framer-HNIzX\");export default FramerZ9pDWO1uy;FramerZ9pDWO1uy.displayName=\"Componenti1\";FramerZ9pDWO1uy.defaultProps={height:731,width:934};addPropertyControls(FramerZ9pDWO1uy,{variant:{options:[\"bK9gIXmwF\",\"iDQAEPqq3\",\"CBAeXF1yc\",\"ANNBI3c_9\",\"feQMJVM0a\",\"LJ7JoEnxK\"],optionTitles:[\"Desktop\",\"Phone\",\"Desktop 2\",\"phone2\",\"phone3\",\"Dektop 3\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerZ9pDWO1uy,[{family:\"Instrument Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npSQb_gfwmS0v3_7Y.woff2\",weight:\"600\"},...sharedStyle.fonts,...sharedStyle1.fonts,...sharedStyle2.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZ9pDWO1uy\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"934\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"731\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"iDQAEPqq3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CBAeXF1yc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ANNBI3c_9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"feQMJVM0a\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LJ7JoEnxK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Z9pDWO1uy.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useRef}from\"react\";import{useInView,useMotionValue,useSpring}from\"framer-motion\";import{addPropertyControls,ControlType}from\"framer\";function Counter({value,direction,style}){const ref=useRef(null);const motionValue=useMotionValue(direction===\"down\"?value:0);const springValue=useSpring(motionValue,{damping:100,stiffness:320});const isInView=useInView(ref,{once:true,margin:\"-100px\"});useEffect(()=>{if(isInView){motionValue.set(direction===\"down\"?0:value);}},[motionValue,isInView]);useEffect(()=>springValue.on(\"change\",latest=>{if(ref.current){ref.current.textContent=Intl.NumberFormat(\"en-US\").format(latest.toFixed(0));}}),[springValue]);return /*#__PURE__*/ _jsx(\"span\",{ref:ref,style:style});}export default function Counter100({value,direction,font}){return /*#__PURE__*/ _jsx(Counter,{value:value,direction:direction,style:{fontSize:font.size,fontWeight:font.weight,color:font.color,fontFamily:`'${font.fontFace}'`}});};addPropertyControls(Counter100,{value:{type:ControlType.Number,defaultValue:100},direction:{type:ControlType.Enum,options:[\"down\",\"up\"],optionTitles:[\"Down\",\"Up\"],defaultValue:\"up\"},font:{type:ControlType.Object,controls:{fontFace:{type:ControlType.String,defaultValue:\"Inter\"},size:{type:ControlType.Number,defaultValue:30},color:{type:ControlType.Color,defaultValue:\"#fff\"},weight:{type:ControlType.Enum,defaultValue:\"bold\",options:[\"normal\",\"bold\",\"bolder\",\"lighter\"]}}}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Counter100\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Counter_1_1.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useRef}from\"react\";import{useInView,useMotionValue,useSpring}from\"framer-motion\";import{addPropertyControls,ControlType}from\"framer\";function Counter({value,direction,style,decimalPlaces}){const ref=useRef(null);const motionValue=useMotionValue(direction===\"down\"?value:0);const springValue=useSpring(motionValue,{damping:100,stiffness:320});const isInView=useInView(ref,{once:true,margin:\"-100px\"});useEffect(()=>{if(isInView){motionValue.set(direction===\"down\"?0:value);}},[motionValue,isInView]);useEffect(()=>springValue.on(\"change\",latest=>{if(ref.current){ref.current.textContent=latest.toFixed(decimalPlaces);}}),[springValue,decimalPlaces]);return /*#__PURE__*/ _jsx(\"span\",{ref:ref,style:style});}export default function Counter100({value,direction,font,decimalPlaces}){return /*#__PURE__*/ _jsx(Counter,{value:value,direction:direction,style:{fontSize:font.size,fontWeight:font.weight,color:font.color,fontFamily:`'${font.fontFace}'`},decimalPlaces:decimalPlaces});};addPropertyControls(Counter100,{value:{type:ControlType.Number,defaultValue:1,min:0},direction:{type:ControlType.Enum,options:[\"down\",\"up\"],optionTitles:[\"Down\",\"Up\"],defaultValue:\"up\"},font:{type:ControlType.Object,controls:{fontFace:{type:ControlType.String,defaultValue:\"Inter\"},size:{type:ControlType.Number,defaultValue:30},color:{type:ControlType.Color,defaultValue:\"#fff\"},weight:{type:ControlType.Enum,defaultValue:\"bold\",options:[\"normal\",\"bold\",\"bolder\",\"lighter\"]}}},decimalPlaces:{type:ControlType.Number,defaultValue:1,min:0}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Counter100\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Counter.map"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "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", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "IconoirFonts", "getFonts", "Icon", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "hover", "id", "tap2", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "UYMLk_Umx", "NA2EvJqW6", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1rnh03t", "args", "onMouseEnter1uf8r09", "onTap1mdv05g", "onTapzmi20g", "isDisplayed", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "RichText2", "Link", "css", "Framero4HOgRRj1", "withCSS", "o4HOgRRj1_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "variantClassNames", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "getProps", "height", "id", "title", "width", "props", "_ref", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "ylQpbEdAf", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "defaultLayoutId", "ae", "LayoutGroup", "motion", "cx", "Link", "RichText2", "x", "css", "FramerTcwKKfbT1", "withCSS", "TcwKKfbT1_default", "addPropertyControls", "ControlType", "addFonts", "RowFonts", "getFonts", "itsC1pxBs_default", "RowCopyFonts", "RrHdhrlnx_default", "cycleOrder", "variantClassNames", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "defaultLayoutId", "ae", "LayoutGroup", "motion", "cx", "u", "itsC1pxBs_default", "RrHdhrlnx_default", "css", "FramerVq9uUobi0", "withCSS", "Vq9uUobi0_default", "addFonts", "RowFonts", "RowCopyFonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "getProps", "height", "id", "title", "width", "props", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "py5hsHpxU", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "Link", "u", "motion", "cx", "RichText2", "x", "SVG", "css", "Framervum9MqFgz", "withCSS", "vum9MqFgz_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "ImageWithFX", "withFX", "Image2", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "animation", "transition1", "animation1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapzzwi3j", "args", "onTapzlypgk", "onTapmpk210", "onTap91n5v9", "onTapcejcys", "onTap1p44q48", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "u", "motion", "cx", "RichText2", "x", "SVG", "css", "FramerZ9pDWO1uy", "withCSS", "Z9pDWO1uy_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "Counter", "value", "direction", "style", "ref", "pe", "motionValue", "useMotionValue", "springValue", "useSpring", "isInView", "useInView", "ue", "latest", "p", "Counter100", "font", "addPropertyControls", "ControlType", "Counter", "value", "direction", "style", "decimalPlaces", "ref", "pe", "motionValue", "useMotionValue", "springValue", "useSpring", "isInView", "useInView", "ue", "latest", "p", "Counter100", "font", "addPropertyControls", "ControlType"]
}
