{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/K0mI40rrezffFjPjHAZX/Video.js", "ssg:https://framerusercontent.com/modules/Bf6JtbjcthQPJFsx8BwF/xNPwAKLf4nHVvgjYFzQD/ba0_rOl4X.js", "ssg:https://framerusercontent.com/modules/r5HVIZMBvq1gXlbRIE2J/tLGqe2lyqbXXNuF36Bxh/dIvZq3QAm.js", "ssg:https://framerusercontent.com/modules/kjhnV8UPdUd0b34mFrv4/YvBe6UdZXSVIIw5JoPNg/Dj4WBZH4F.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();},[]);return{play,pause,setProgress};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}/**\n * The Video component has some effects that sync the video element with props\n * like `startTime`, `progress`, etc. React calls these effects whenever these\n * props change. However, it also calls them on the first mount, and this is\n * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n * the video was hydrated, the initial `useEffect` call will reset the video\n * state. To avoid this, we use this flag.\n */let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing:playingProp,muted,playsinline,controls,progress,objectFit,backgroundColor,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,posterEnabled,startTime:startTimeProp,volume,loop}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);const isCloseToViewport=isOnCanvas?false:useInView(videoRef,{margin:\"100px\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges){isMountedAndReadyForProgressChanges=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:autoplayBehavior===\"on-mount\",preload:autoplayBehavior!==\"on-mount\"&&posterEnabled&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";Video.defaultProps={srcType:\"URL\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",srcFile:\"\",posterEnabled:false,controls:false,playing:true,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:\"cover\",backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime:0};const groupsRegex=/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu;function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(groupsRegex)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",placeholder:\"../example.mp4\",hidden(props){return props.srcType===\"Upload\";},description:\"Hosted video file URL. For YouTube, use the YouTube component.\"},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"200\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"112\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (04e0834)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/hnH7jmorj6jVFZEIPj2i/Bek6IKULD037JkS3qiG2/p2afQTgRh.js\";const PhosphorFonts=getFonts(Phosphor);const cycleOrder=[\"ZiA6Kfrym\",\"Wdyabs9uT\",\"wgD_jXQeD\",\"DYYra4f8E\",\"NCVAFU19r\",\"KXnY2YkIV\"];const serializationHash=\"framer-I6YEJ\";const variantClassNames={DYYra4f8E:\"framer-v-2c41mz\",KXnY2YkIV:\"framer-v-u2dybp\",NCVAFU19r:\"framer-v-1l7s1f6\",Wdyabs9uT:\"framer-v-mid9dv\",wgD_jXQeD:\"framer-v-1asq2wp\",ZiA6Kfrym:\"framer-v-1vgakg3\"};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:30,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 Variants=motion(React.Fragment);const humanReadableVariantMap={\"Basic Details Open\":\"Wdyabs9uT\",\"Basic Details\":\"ZiA6Kfrym\",\"Kitchen Open\":\"KXnY2YkIV\",\"Other Details Open\":\"DYYra4f8E\",\"Other Details\":\"wgD_jXQeD\",Ktichen:\"NCVAFU19r\"};const getProps=({click3,click4,currentCapRate,height,id,lotSize,price,pricePSqFt,pricePUnit,proformaCapRate,sqFt,units,width,yearBuilt,zoning,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4,_ref5,_ref6,_ref7,_humanReadableVariantMap_props_variant,_ref8,_ref9,_ref10;return{...props,gtCPhdIT5:(_ref=currentCapRate!==null&&currentCapRate!==void 0?currentCapRate:props.gtCPhdIT5)!==null&&_ref!==void 0?_ref:\"5.72%\",H55TpKJOP:(_ref1=yearBuilt!==null&&yearBuilt!==void 0?yearBuilt:props.H55TpKJOP)!==null&&_ref1!==void 0?_ref1:\"2022\",LAKlnFdLC:(_ref2=pricePUnit!==null&&pricePUnit!==void 0?pricePUnit:props.LAKlnFdLC)!==null&&_ref2!==void 0?_ref2:\"$1,000,000\",nUB9rkygw:(_ref3=pricePSqFt!==null&&pricePSqFt!==void 0?pricePSqFt:props.nUB9rkygw)!==null&&_ref3!==void 0?_ref3:\"$836\",p4LS1MFxH:(_ref4=sqFt!==null&&sqFt!==void 0?sqFt:props.p4LS1MFxH)!==null&&_ref4!==void 0?_ref4:\"9,568\",QoERf2KiT:(_ref5=proformaCapRate!==null&&proformaCapRate!==void 0?proformaCapRate:props.QoERf2KiT)!==null&&_ref5!==void 0?_ref5:\"6.18%\",T8rQFvSBR:(_ref6=price!==null&&price!==void 0?price:props.T8rQFvSBR)!==null&&_ref6!==void 0?_ref6:\"$8,000,000\",tLV1XwRxY:(_ref7=units!==null&&units!==void 0?units:props.tLV1XwRxY)!==null&&_ref7!==void 0?_ref7:\"8\",variant:(_ref8=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref8!==void 0?_ref8:\"ZiA6Kfrym\",VJD1ZAwWQ:click4!==null&&click4!==void 0?click4:props.VJD1ZAwWQ,WbhStenFW:click3!==null&&click3!==void 0?click3:props.WbhStenFW,xQwuoslC5:(_ref9=lotSize!==null&&lotSize!==void 0?lotSize:props.xQwuoslC5)!==null&&_ref9!==void 0?_ref9:\"28,538 SF \",ybtIrSL2p:(_ref10=zoning!==null&&zoning!==void 0?zoning:props.ybtIrSL2p)!==null&&_ref10!==void 0?_ref10:\"LAR2\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,T8rQFvSBR,tLV1XwRxY,H55TpKJOP,LAKlnFdLC,p4LS1MFxH,nUB9rkygw,gtCPhdIT5,QoERf2KiT,xQwuoslC5,ybtIrSL2p,WbhStenFW,VJD1ZAwWQ,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ZiA6Kfrym\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1ocw21f=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(WbhStenFW){const res=await WbhStenFW(...args);if(res===false)return false;}if(VJD1ZAwWQ){const res=await VJD1ZAwWQ(...args);if(res===false)return false;}});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"wgD_jXQeD\",\"DYYra4f8E\",\"NCVAFU19r\",\"KXnY2YkIV\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"wgD_jXQeD\",\"DYYra4f8E\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if([\"NCVAFU19r\",\"KXnY2YkIV\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1vgakg3\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Basic Details\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"ZiA6Kfrym\",onTap:onTap1ocw21f,ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"var(--token-38171501-2bf0-4f99-b958-479ba0c21223, rgb(225, 231, 234))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",...style},variants:{KXnY2YkIV:{\"--border-bottom-width\":\"1px\"},NCVAFU19r:{\"--border-bottom-width\":\"1px\"}},...addPropertyOverrides({DYYra4f8E:{\"data-framer-name\":\"Other Details Open\"},KXnY2YkIV:{\"data-framer-name\":\"Kitchen Open\"},NCVAFU19r:{\"data-framer-name\":\"Ktichen\"},Wdyabs9uT:{\"data-framer-name\":\"Basic Details Open\"},wgD_jXQeD:{\"data-framer-name\":\"Other Details\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fzkkod\",\"data-framer-name\":\"Accordion\",layoutDependency:layoutDependency,layoutId:\"xiGN_khrK\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1lpv17a\",\"data-styles-preset\":\"p2afQTgRh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7a3cca55-9e5e-4253-a247-523dddb3afa5, rgb(124, 139, 148)))\"},children:\"Property Details\"})}),className:\"framer-14v0azg\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"JAwn_eeVK\",style:{\"--extracted-r6o4lv\":\"var(--token-7a3cca55-9e5e-4253-a247-523dddb3afa5, rgb(124, 139, 148))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({DYYra4f8E:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1lpv17a\",\"data-styles-preset\":\"p2afQTgRh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7a3cca55-9e5e-4253-a247-523dddb3afa5, rgb(124, 139, 148)))\"},children:\"Other details\"})})},KXnY2YkIV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1lpv17a\",\"data-styles-preset\":\"p2afQTgRh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7a3cca55-9e5e-4253-a247-523dddb3afa5, rgb(124, 139, 148)))\"},children:\"Kitchen details\"})})},NCVAFU19r:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1lpv17a\",\"data-styles-preset\":\"p2afQTgRh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7a3cca55-9e5e-4253-a247-523dddb3afa5, rgb(124, 139, 148)))\"},children:\"Kitchen details\"})})},wgD_jXQeD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1lpv17a\",\"data-styles-preset\":\"p2afQTgRh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7a3cca55-9e5e-4253-a247-523dddb3afa5, rgb(124, 139, 148)))\"},children:\"Other deatils\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-iu5a2c-container\",layoutDependency:layoutDependency,layoutId:\"fbIeOz_Ug-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-7a3cca55-9e5e-4253-a247-523dddb3afa5, rgb(124, 139, 148))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Plus\",id:\"fbIeOz_Ug\",layoutId:\"fbIeOz_Ug\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\",...addPropertyOverrides({DYYra4f8E:{iconSelection:\"Minus\"},KXnY2YkIV:{iconSelection:\"Minus\"},Wdyabs9uT:{iconSelection:\"Minus\"}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1noen7g\",\"data-framer-name\":\"Details\",layoutDependency:layoutDependency,layoutId:\"RqOw3ZeVp\",children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1582zuw\",\"data-framer-name\":\"Price\",layoutDependency:layoutDependency,layoutId:\"Ft49wjOwI\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-10mlrfb\",layoutDependency:layoutDependency,layoutId:\"ftZczdFxE\",style:{backgroundColor:\"var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(6, 14, 19))\",borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13qg8qg\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"galSS6Ptx\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(6, 14, 19)))\"},children:\"Price:\"})}),className:\"framer-iqja44\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"Ei2ihXQGo\",style:{\"--extracted-r6o4lv\":\"var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(6, 14, 19))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(6, 14, 19)))\"},children:\"$8,000,000\"})}),className:\"framer-8o8jbk\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"QFhtJ1GZo\",style:{\"--extracted-r6o4lv\":\"var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(6, 14, 19))\"},text:T8rQFvSBR,verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gpnxho\",\"data-framer-name\":\"Units\",layoutDependency:layoutDependency,layoutId:\"FN7TlVr1E\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sp8c9z\",layoutDependency:layoutDependency,layoutId:\"PvHXfzkMf\",style:{backgroundColor:\"var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(6, 14, 19))\",borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-yaojzk\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"IgKNu9h2i\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(6, 14, 19)))\"},children:\"Units:\"})}),className:\"framer-1eg64l5\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"xvP_wDnMy\",style:{\"--extracted-r6o4lv\":\"var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(6, 14, 19))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(6, 14, 19)))\"},children:\"8\"})}),className:\"framer-86fasb\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"syMIl28KK\",style:{\"--extracted-r6o4lv\":\"var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(6, 14, 19))\"},text:tLV1XwRxY,verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-104ghai\",\"data-framer-name\":\"Year\",layoutDependency:layoutDependency,layoutId:\"vQX8VucV8\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ufpqsa\",layoutDependency:layoutDependency,layoutId:\"YhOAu6w5O\",style:{backgroundColor:\"var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(6, 14, 19))\",borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-j4d9df\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"eks2psOXS\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(6, 14, 19)))\"},children:\"Year Built:\"})}),className:\"framer-z74j20\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"N5STKv0wo\",style:{\"--extracted-r6o4lv\":\"var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(6, 14, 19))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(6, 14, 19)))\"},children:\"2022\"})}),className:\"framer-xf6qno\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"JAzW_sspC\",style:{\"--extracted-r6o4lv\":\"var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(6, 14, 19))\"},text:H55TpKJOP,verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-coneqd\",\"data-framer-name\":\"Price per Unit\",layoutDependency:layoutDependency,layoutId:\"Ogx7wa7Oc\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-klei8x\",layoutDependency:layoutDependency,layoutId:\"sXvrv0Gr7\",style:{backgroundColor:\"var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(6, 14, 19))\",borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lj11an\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"sqtI4wX34\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(6, 14, 19)))\"},children:\"Price p/Unit:\"})}),className:\"framer-as8hx4\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"zFG4dK0GE\",style:{\"--extracted-r6o4lv\":\"var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(6, 14, 19))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(6, 14, 19)))\"},children:\"$1,000,000\"})}),className:\"framer-132rbf3\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"rqMbPlfdS\",style:{\"--extracted-r6o4lv\":\"var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(6, 14, 19))\"},text:LAKlnFdLC,verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1cuto6v\",\"data-framer-name\":\"Sq. ft.\",layoutDependency:layoutDependency,layoutId:\"oz6KH1G4n\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1a3ayj\",layoutDependency:layoutDependency,layoutId:\"LcGiZQ__Q\",style:{backgroundColor:\"var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(6, 14, 19))\",borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-uve4vl\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"rwPxcZEad\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(6, 14, 19)))\"},children:\"Sq. ft.:\"})}),className:\"framer-1hrd2ry\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"FKmRA1h8h\",style:{\"--extracted-r6o4lv\":\"var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(6, 14, 19))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(6, 14, 19)))\"},children:\"9,568\"})}),className:\"framer-xqeb1i\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"lSRE2G7im\",style:{\"--extracted-r6o4lv\":\"var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(6, 14, 19))\"},text:p4LS1MFxH,verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-763w67\",\"data-framer-name\":\"Price per Sq. ft.\",layoutDependency:layoutDependency,layoutId:\"KwlXs69Qg\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gmls4z\",layoutDependency:layoutDependency,layoutId:\"rbFaiJTxX\",style:{backgroundColor:\"var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(6, 14, 19))\",borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-tgpekk\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"MKcp8tOQV\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(6, 14, 19)))\"},children:\"Price p/Sq. ft.:\"})}),className:\"framer-1lfyk1k\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"bh_22epUj\",style:{\"--extracted-r6o4lv\":\"var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(6, 14, 19))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(6, 14, 19)))\"},children:\"$836\"})}),className:\"framer-thv573\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"ZgBwq79Av\",style:{\"--extracted-r6o4lv\":\"var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(6, 14, 19))\"},text:nUB9rkygw,verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mhrttl\",\"data-framer-name\":\"Current Cap Rate\",layoutDependency:layoutDependency,layoutId:\"tJzb75LcJ\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ycdr88\",layoutDependency:layoutDependency,layoutId:\"qJFYQQsFG\",style:{backgroundColor:\"var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(6, 14, 19))\",borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10mzu6v\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"JqDh1r5J2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(6, 14, 19)))\"},children:\"Current Cap Rate:\"})}),className:\"framer-fo956q\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"DaU8rIu9A\",style:{\"--extracted-r6o4lv\":\"var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(6, 14, 19))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(6, 14, 19)))\"},children:\"5.72%\"})}),className:\"framer-1557wha\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"PmCouackA\",style:{\"--extracted-r6o4lv\":\"var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(6, 14, 19))\"},text:gtCPhdIT5,verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1a2zynw\",\"data-framer-name\":\"Proforma Cap Rate\",layoutDependency:layoutDependency,layoutId:\"eF7RjVuNJ\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ve91un\",layoutDependency:layoutDependency,layoutId:\"jA_nw0xcz\",style:{backgroundColor:\"var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(6, 14, 19))\",borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1b71mp9\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"CSOuZMjzL\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(6, 14, 19)))\"},children:\"Proforma Cap Rate:\"})}),className:\"framer-bfzaae\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"aRLERJh6Z\",style:{\"--extracted-r6o4lv\":\"var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(6, 14, 19))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(6, 14, 19)))\"},children:\"6.18%\"})}),className:\"framer-zet2iv\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"L70THdEGZ\",style:{\"--extracted-r6o4lv\":\"var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(6, 14, 19))\"},text:QoERf2KiT,verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xha5a0\",\"data-framer-name\":\"Lot Size\",layoutDependency:layoutDependency,layoutId:\"ZUHCSZEjN\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jsmofz\",layoutDependency:layoutDependency,layoutId:\"MYiiSDYR1\",style:{backgroundColor:\"var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(6, 14, 19))\",borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12zocw9\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"sDu_R4pr3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(6, 14, 19)))\"},children:\"Lot Size:\"})}),className:\"framer-p3hr6n\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"ytmHl7MLO\",style:{\"--extracted-r6o4lv\":\"var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(6, 14, 19))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(6, 14, 19)))\"},children:\"28,538 SF \"})}),className:\"framer-sreyf5\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"imj5dUQfw\",style:{\"--extracted-r6o4lv\":\"var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(6, 14, 19))\"},text:xQwuoslC5,verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hwxkhn\",\"data-framer-name\":\"Zoning\",layoutDependency:layoutDependency,layoutId:\"oLTFXBNra\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-w0oaz1\",layoutDependency:layoutDependency,layoutId:\"XfASsgsci\",style:{backgroundColor:\"var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(6, 14, 19))\",borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-onkbnk\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"Iz9HiGyvt\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(6, 14, 19)))\"},children:\"Zoning:\"})}),className:\"framer-1s4chtd\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"k9S3lOREM\",style:{\"--extracted-r6o4lv\":\"var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(6, 14, 19))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(6, 14, 19)))\"},children:\"LAR2\"})}),className:\"framer-1fhzzg5\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"dMrUueYf3\",style:{\"--extracted-r6o4lv\":\"var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(6, 14, 19))\"},text:ybtIrSL2p,verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-tnfhq4\",\"data-framer-name\":\"Kitchen 1\",layoutDependency:layoutDependency,layoutId:\"IxsghLleK\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-10wsc58\",layoutDependency:layoutDependency,layoutId:\"UdvWtRfaB\",style:{backgroundColor:\"var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(6, 14, 19))\",borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(6, 14, 19)))\"},children:\"Graphite black lower cabinetry\"})}),className:\"framer-ucikjq\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"W1VAABwFy\",style:{\"--extracted-r6o4lv\":\"var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(6, 14, 19))\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xzuo3e\",\"data-framer-name\":\"Kitchen 2\",layoutDependency:layoutDependency,layoutId:\"emkOEXFOR\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-vbryrr\",layoutDependency:layoutDependency,layoutId:\"LvWJHOYWK\",style:{backgroundColor:\"var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(6, 14, 19))\",borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(6, 14, 19)))\"},children:\"Integrated brass and oil rubbed bronze trims and pulls\"})}),className:\"framer-16xnmw2\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"fUkRbxath\",style:{\"--extracted-r6o4lv\":\"var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(6, 14, 19))\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1n192mz\",\"data-framer-name\":\"Kitchen 3\",layoutDependency:layoutDependency,layoutId:\"M52bbv4I4\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-5re5x\",layoutDependency:layoutDependency,layoutId:\"O6qP9kZBL\",style:{backgroundColor:\"var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(6, 14, 19))\",borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(6, 14, 19)))\"},children:\"Integrated undercabinet lighting\"})}),className:\"framer-1qrrdyo\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"SuZmYGaOF\",style:{\"--extracted-r6o4lv\":\"var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(6, 14, 19))\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1cf4v2h\",\"data-framer-name\":\"Kitchen 4\",layoutDependency:layoutDependency,layoutId:\"NtIqj9pqP\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-l9jpnb\",layoutDependency:layoutDependency,layoutId:\"SyOEdtAtz\",style:{backgroundColor:\"var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(6, 14, 19))\",borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(6, 14, 19)))\"},children:\"Waterworks fixtures in oil rubbed bronze finish\"})}),className:\"framer-1teoqyr\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"CX0C6hbXO\",style:{\"--extracted-r6o4lv\":\"var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(6, 14, 19))\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-e8e742\",\"data-framer-name\":\"Kitchen 5\",layoutDependency:layoutDependency,layoutId:\"bI1Gz_jpN\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-piulty\",layoutDependency:layoutDependency,layoutId:\"EeKC7dWYp\",style:{backgroundColor:\"var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(6, 14, 19))\",borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(6, 14, 19)))\"},children:\"Fully-integrated suite of Miele appliances\"})}),className:\"framer-40niqh\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"hW5AkJOYe\",style:{\"--extracted-r6o4lv\":\"var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(6, 14, 19))\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-oqoog6\",\"data-framer-name\":\"Kitchen 6\",layoutDependency:layoutDependency,layoutId:\"NJlfg5Xxy\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1w69a52\",layoutDependency:layoutDependency,layoutId:\"kdAMQRsI2\",style:{backgroundColor:\"var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(6, 14, 19))\",borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(6, 14, 19)))\"},children:\"Stainless steel sink with InSinkErator disposal\"})}),className:\"framer-1dkotw5\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"PQBXfauvs\",style:{\"--extracted-r6o4lv\":\"var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(6, 14, 19))\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-I6YEJ.framer-1v4lbz0, .framer-I6YEJ .framer-1v4lbz0 { display: block; }\",\".framer-I6YEJ.framer-1vgakg3 { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 400px; }\",\".framer-I6YEJ .framer-1fzkkod { -webkit-user-select: none; align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 10px 0px 10px 0px; position: relative; user-select: none; width: 100%; z-index: 1; }\",\".framer-I6YEJ .framer-14v0azg { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-I6YEJ .framer-iu5a2c-container { flex: none; height: 14px; position: relative; width: 14px; }\",\".framer-I6YEJ .framer-1noen7g { align-content: flex-start; align-items: flex-start; bottom: -150px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; left: 0px; overflow: visible; padding: 0px; position: absolute; width: 400px; z-index: 1; }\",\".framer-I6YEJ .framer-1582zuw, .framer-I6YEJ .framer-gpnxho, .framer-I6YEJ .framer-104ghai, .framer-I6YEJ .framer-coneqd, .framer-I6YEJ .framer-1cuto6v, .framer-I6YEJ .framer-763w67, .framer-I6YEJ .framer-1mhrttl, .framer-I6YEJ .framer-1a2zynw, .framer-I6YEJ .framer-xha5a0, .framer-I6YEJ .framer-1hwxkhn, .framer-I6YEJ .framer-tnfhq4, .framer-I6YEJ .framer-1xzuo3e, .framer-I6YEJ .framer-1n192mz, .framer-I6YEJ .framer-1cf4v2h, .framer-I6YEJ .framer-e8e742, .framer-I6YEJ .framer-oqoog6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 0; }\",\".framer-I6YEJ .framer-10mlrfb, .framer-I6YEJ .framer-1sp8c9z, .framer-I6YEJ .framer-ufpqsa, .framer-I6YEJ .framer-klei8x, .framer-I6YEJ .framer-1a3ayj, .framer-I6YEJ .framer-1gmls4z, .framer-I6YEJ .framer-ycdr88, .framer-I6YEJ .framer-1ve91un, .framer-I6YEJ .framer-1jsmofz, .framer-I6YEJ .framer-w0oaz1, .framer-I6YEJ .framer-10wsc58, .framer-I6YEJ .framer-vbryrr, .framer-I6YEJ .framer-5re5x, .framer-I6YEJ .framer-l9jpnb, .framer-I6YEJ .framer-piulty, .framer-I6YEJ .framer-1w69a52 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 5px); overflow: visible; position: relative; width: 5px; }\",\".framer-I6YEJ .framer-13qg8qg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-I6YEJ .framer-iqja44, .framer-I6YEJ .framer-1eg64l5, .framer-I6YEJ .framer-z74j20, .framer-I6YEJ .framer-as8hx4, .framer-I6YEJ .framer-1hrd2ry, .framer-I6YEJ .framer-1lfyk1k, .framer-I6YEJ .framer-fo956q, .framer-I6YEJ .framer-bfzaae, .framer-I6YEJ .framer-p3hr6n, .framer-I6YEJ .framer-1s4chtd { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-I6YEJ .framer-8o8jbk { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 385px; word-break: break-word; word-wrap: break-word; }\",\".framer-I6YEJ .framer-yaojzk, .framer-I6YEJ .framer-j4d9df, .framer-I6YEJ .framer-lj11an, .framer-I6YEJ .framer-uve4vl, .framer-I6YEJ .framer-tgpekk, .framer-I6YEJ .framer-10mzu6v, .framer-I6YEJ .framer-1b71mp9, .framer-I6YEJ .framer-12zocw9, .framer-I6YEJ .framer-onkbnk { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-I6YEJ .framer-86fasb, .framer-I6YEJ .framer-xf6qno, .framer-I6YEJ .framer-132rbf3, .framer-I6YEJ .framer-xqeb1i, .framer-I6YEJ .framer-thv573, .framer-I6YEJ .framer-1557wha, .framer-I6YEJ .framer-zet2iv, .framer-I6YEJ .framer-sreyf5, .framer-I6YEJ .framer-1fhzzg5, .framer-I6YEJ .framer-ucikjq, .framer-I6YEJ .framer-16xnmw2, .framer-I6YEJ .framer-1qrrdyo, .framer-I6YEJ .framer-1teoqyr, .framer-I6YEJ .framer-40niqh, .framer-I6YEJ .framer-1dkotw5 { -webkit-user-select: none; flex: 1 0 0px; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-I6YEJ.framer-1vgakg3, .framer-I6YEJ .framer-1fzkkod, .framer-I6YEJ .framer-1noen7g, .framer-I6YEJ .framer-1582zuw, .framer-I6YEJ .framer-13qg8qg, .framer-I6YEJ .framer-gpnxho, .framer-I6YEJ .framer-yaojzk, .framer-I6YEJ .framer-104ghai, .framer-I6YEJ .framer-j4d9df, .framer-I6YEJ .framer-coneqd, .framer-I6YEJ .framer-lj11an, .framer-I6YEJ .framer-1cuto6v, .framer-I6YEJ .framer-uve4vl, .framer-I6YEJ .framer-763w67, .framer-I6YEJ .framer-tgpekk, .framer-I6YEJ .framer-1mhrttl, .framer-I6YEJ .framer-10mzu6v, .framer-I6YEJ .framer-1a2zynw, .framer-I6YEJ .framer-1b71mp9, .framer-I6YEJ .framer-xha5a0, .framer-I6YEJ .framer-12zocw9, .framer-I6YEJ .framer-1hwxkhn, .framer-I6YEJ .framer-onkbnk, .framer-I6YEJ .framer-tnfhq4, .framer-I6YEJ .framer-1xzuo3e, .framer-I6YEJ .framer-1n192mz, .framer-I6YEJ .framer-1cf4v2h, .framer-I6YEJ .framer-e8e742, .framer-I6YEJ .framer-oqoog6 { gap: 0px; } .framer-I6YEJ.framer-1vgakg3 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-I6YEJ.framer-1vgakg3 > :first-child, .framer-I6YEJ .framer-1noen7g > :first-child { margin-top: 0px; } .framer-I6YEJ.framer-1vgakg3 > :last-child, .framer-I6YEJ .framer-1noen7g > :last-child { margin-bottom: 0px; } .framer-I6YEJ .framer-1fzkkod > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-I6YEJ .framer-1fzkkod > :first-child, .framer-I6YEJ .framer-1582zuw > :first-child, .framer-I6YEJ .framer-13qg8qg > :first-child, .framer-I6YEJ .framer-gpnxho > :first-child, .framer-I6YEJ .framer-yaojzk > :first-child, .framer-I6YEJ .framer-104ghai > :first-child, .framer-I6YEJ .framer-j4d9df > :first-child, .framer-I6YEJ .framer-coneqd > :first-child, .framer-I6YEJ .framer-lj11an > :first-child, .framer-I6YEJ .framer-1cuto6v > :first-child, .framer-I6YEJ .framer-uve4vl > :first-child, .framer-I6YEJ .framer-763w67 > :first-child, .framer-I6YEJ .framer-tgpekk > :first-child, .framer-I6YEJ .framer-1mhrttl > :first-child, .framer-I6YEJ .framer-10mzu6v > :first-child, .framer-I6YEJ .framer-1a2zynw > :first-child, .framer-I6YEJ .framer-1b71mp9 > :first-child, .framer-I6YEJ .framer-xha5a0 > :first-child, .framer-I6YEJ .framer-12zocw9 > :first-child, .framer-I6YEJ .framer-1hwxkhn > :first-child, .framer-I6YEJ .framer-onkbnk > :first-child, .framer-I6YEJ .framer-tnfhq4 > :first-child, .framer-I6YEJ .framer-1xzuo3e > :first-child, .framer-I6YEJ .framer-1n192mz > :first-child, .framer-I6YEJ .framer-1cf4v2h > :first-child, .framer-I6YEJ .framer-e8e742 > :first-child, .framer-I6YEJ .framer-oqoog6 > :first-child { margin-left: 0px; } .framer-I6YEJ .framer-1fzkkod > :last-child, .framer-I6YEJ .framer-1582zuw > :last-child, .framer-I6YEJ .framer-13qg8qg > :last-child, .framer-I6YEJ .framer-gpnxho > :last-child, .framer-I6YEJ .framer-yaojzk > :last-child, .framer-I6YEJ .framer-104ghai > :last-child, .framer-I6YEJ .framer-j4d9df > :last-child, .framer-I6YEJ .framer-coneqd > :last-child, .framer-I6YEJ .framer-lj11an > :last-child, .framer-I6YEJ .framer-1cuto6v > :last-child, .framer-I6YEJ .framer-uve4vl > :last-child, .framer-I6YEJ .framer-763w67 > :last-child, .framer-I6YEJ .framer-tgpekk > :last-child, .framer-I6YEJ .framer-1mhrttl > :last-child, .framer-I6YEJ .framer-10mzu6v > :last-child, .framer-I6YEJ .framer-1a2zynw > :last-child, .framer-I6YEJ .framer-1b71mp9 > :last-child, .framer-I6YEJ .framer-xha5a0 > :last-child, .framer-I6YEJ .framer-12zocw9 > :last-child, .framer-I6YEJ .framer-1hwxkhn > :last-child, .framer-I6YEJ .framer-onkbnk > :last-child, .framer-I6YEJ .framer-tnfhq4 > :last-child, .framer-I6YEJ .framer-1xzuo3e > :last-child, .framer-I6YEJ .framer-1n192mz > :last-child, .framer-I6YEJ .framer-1cf4v2h > :last-child, .framer-I6YEJ .framer-e8e742 > :last-child, .framer-I6YEJ .framer-oqoog6 > :last-child { margin-right: 0px; } .framer-I6YEJ .framer-1noen7g > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-I6YEJ .framer-1582zuw > *, .framer-I6YEJ .framer-gpnxho > *, .framer-I6YEJ .framer-104ghai > *, .framer-I6YEJ .framer-coneqd > *, .framer-I6YEJ .framer-1cuto6v > *, .framer-I6YEJ .framer-763w67 > *, .framer-I6YEJ .framer-1mhrttl > *, .framer-I6YEJ .framer-1a2zynw > *, .framer-I6YEJ .framer-xha5a0 > *, .framer-I6YEJ .framer-1hwxkhn > *, .framer-I6YEJ .framer-tnfhq4 > *, .framer-I6YEJ .framer-1xzuo3e > *, .framer-I6YEJ .framer-1n192mz > *, .framer-I6YEJ .framer-1cf4v2h > *, .framer-I6YEJ .framer-e8e742 > *, .framer-I6YEJ .framer-oqoog6 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-I6YEJ .framer-13qg8qg > *, .framer-I6YEJ .framer-yaojzk > *, .framer-I6YEJ .framer-j4d9df > *, .framer-I6YEJ .framer-lj11an > *, .framer-I6YEJ .framer-uve4vl > *, .framer-I6YEJ .framer-tgpekk > *, .framer-I6YEJ .framer-10mzu6v > *, .framer-I6YEJ .framer-1b71mp9 > *, .framer-I6YEJ .framer-12zocw9 > *, .framer-I6YEJ .framer-onkbnk > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } }\",\".framer-I6YEJ.framer-v-mid9dv.framer-1vgakg3, .framer-I6YEJ.framer-v-2c41mz.framer-1vgakg3, .framer-I6YEJ.framer-v-u2dybp.framer-1vgakg3 { padding: 0px 0px 10px 0px; }\",\".framer-I6YEJ.framer-v-mid9dv .framer-1noen7g, .framer-I6YEJ.framer-v-2c41mz .framer-1noen7g, .framer-I6YEJ.framer-v-u2dybp .framer-1noen7g { bottom: unset; left: unset; position: relative; width: 100%; }\",\".framer-I6YEJ.framer-v-mid9dv .framer-8o8jbk { white-space: pre; width: auto; }\",\".framer-I6YEJ.framer-v-1l7s1f6 .framer-1noen7g { bottom: -170px; }\",...sharedStyle.css,'.framer-I6YEJ[data-border=\"true\"]::after, .framer-I6YEJ [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 37\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Wdyabs9uT\":{\"layout\":[\"fixed\",\"auto\"]},\"wgD_jXQeD\":{\"layout\":[\"fixed\",\"auto\"]},\"DYYra4f8E\":{\"layout\":[\"fixed\",\"auto\"]},\"NCVAFU19r\":{\"layout\":[\"fixed\",\"auto\"]},\"KXnY2YkIV\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"T8rQFvSBR\":\"price\",\"tLV1XwRxY\":\"units\",\"H55TpKJOP\":\"yearBuilt\",\"LAKlnFdLC\":\"pricePUnit\",\"p4LS1MFxH\":\"sqFt\",\"nUB9rkygw\":\"pricePSqFt\",\"gtCPhdIT5\":\"currentCapRate\",\"QoERf2KiT\":\"proformaCapRate\",\"xQwuoslC5\":\"lotSize\",\"ybtIrSL2p\":\"zoning\",\"WbhStenFW\":\"click3\",\"VJD1ZAwWQ\":\"click4\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerba0_rOl4X=withCSS(Component,css,\"framer-I6YEJ\");export default Framerba0_rOl4X;Framerba0_rOl4X.displayName=\"Accordions/Property Details\";Framerba0_rOl4X.defaultProps={height:37,width:400};addPropertyControls(Framerba0_rOl4X,{variant:{options:[\"ZiA6Kfrym\",\"Wdyabs9uT\",\"wgD_jXQeD\",\"DYYra4f8E\",\"NCVAFU19r\",\"KXnY2YkIV\"],optionTitles:[\"Basic Details\",\"Basic Details Open\",\"Other Details\",\"Other Details Open\",\"Ktichen\",\"Kitchen Open\"],title:\"Variant\",type:ControlType.Enum},T8rQFvSBR:{defaultValue:\"$8,000,000\",displayTextArea:true,title:\"Price\",type:ControlType.String},tLV1XwRxY:{defaultValue:\"8\",displayTextArea:false,title:\"Units\",type:ControlType.String},H55TpKJOP:{defaultValue:\"2022\",displayTextArea:false,title:\"Year Built\",type:ControlType.String},LAKlnFdLC:{defaultValue:\"$1,000,000\",displayTextArea:false,title:\"Price P/ Unit\",type:ControlType.String},p4LS1MFxH:{defaultValue:\"9,568\",displayTextArea:false,title:\"Sq. ft.\",type:ControlType.String},nUB9rkygw:{defaultValue:\"$836\",displayTextArea:false,title:\"Price P/Sq. ft.\",type:ControlType.String},gtCPhdIT5:{defaultValue:\"5.72%\",displayTextArea:false,title:\"Current Cap Rate\",type:ControlType.String},QoERf2KiT:{defaultValue:\"6.18%\",title:\"Proforma Cap Rate\",type:ControlType.String},xQwuoslC5:{defaultValue:\"28,538 SF \",title:\"Lot Size\",type:ControlType.String},ybtIrSL2p:{defaultValue:\"LAR2\",title:\"Zoning\",type:ControlType.String},WbhStenFW:{title:\"Click 3\",type:ControlType.EventHandler},VJD1ZAwWQ:{title:\"Click 4\",type:ControlType.EventHandler}});addFonts(Framerba0_rOl4X,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://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\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerba0_rOl4X\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"37\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Wdyabs9uT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wgD_jXQeD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"DYYra4f8E\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NCVAFU19r\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KXnY2YkIV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"400\",\"framerVariables\":\"{\\\"T8rQFvSBR\\\":\\\"price\\\",\\\"tLV1XwRxY\\\":\\\"units\\\",\\\"H55TpKJOP\\\":\\\"yearBuilt\\\",\\\"LAKlnFdLC\\\":\\\"pricePUnit\\\",\\\"p4LS1MFxH\\\":\\\"sqFt\\\",\\\"nUB9rkygw\\\":\\\"pricePSqFt\\\",\\\"gtCPhdIT5\\\":\\\"currentCapRate\\\",\\\"QoERf2KiT\\\":\\\"proformaCapRate\\\",\\\"xQwuoslC5\\\":\\\"lotSize\\\",\\\"ybtIrSL2p\\\":\\\"zoning\\\",\\\"WbhStenFW\\\":\\\"click3\\\",\\\"VJD1ZAwWQ\\\":\\\"click4\\\"}\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ba0_rOl4X.map", "// Generated by Framer (04e0834)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import AccordionsPropertyDetails from\"https://framerusercontent.com/modules/Bf6JtbjcthQPJFsx8BwF/xNPwAKLf4nHVvgjYFzQD/ba0_rOl4X.js\";const AccordionsPropertyDetailsFonts=getFonts(AccordionsPropertyDetails);const cycleOrder=[\"el4DWs1sk\",\"XY1aYHWDH\",\"mZBiDv9bC\"];const serializationHash=\"framer-utV9I\";const variantClassNames={el4DWs1sk:\"framer-v-175g09a\",mZBiDv9bC:\"framer-v-1m37bzb\",XY1aYHWDH:\"framer-v-k84s3c\"};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={Kitchen:\"mZBiDv9bC\",Other:\"XY1aYHWDH\",Property:\"el4DWs1sk\"};const getProps=({currentCapRate,height,id,lotSize,price,pricePSqFt,pricePUnit,proformaCapRate,sqFt,units,width,yearBuilt,zoning,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4,_ref5,_humanReadableVariantMap_props_variant,_ref6,_ref7,_ref8,_ref9,_ref10;return{...props,Crgf4_vzj:(_ref=pricePSqFt!==null&&pricePSqFt!==void 0?pricePSqFt:props.Crgf4_vzj)!==null&&_ref!==void 0?_ref:\"$836\",eB9jhMwJs:(_ref1=units!==null&&units!==void 0?units:props.eB9jhMwJs)!==null&&_ref1!==void 0?_ref1:\"8\",FWLXRkaDm:(_ref2=zoning!==null&&zoning!==void 0?zoning:props.FWLXRkaDm)!==null&&_ref2!==void 0?_ref2:\"LAR2\",FZU9lSHmY:(_ref3=yearBuilt!==null&&yearBuilt!==void 0?yearBuilt:props.FZU9lSHmY)!==null&&_ref3!==void 0?_ref3:\"2022\",Q9cOOW5aV:(_ref4=proformaCapRate!==null&&proformaCapRate!==void 0?proformaCapRate:props.Q9cOOW5aV)!==null&&_ref4!==void 0?_ref4:\"6.18%\",U9MmOLnav:(_ref5=price!==null&&price!==void 0?price:props.U9MmOLnav)!==null&&_ref5!==void 0?_ref5:\"$8,000,000\",variant:(_ref6=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref6!==void 0?_ref6:\"el4DWs1sk\",vSqcao2NW:(_ref7=sqFt!==null&&sqFt!==void 0?sqFt:props.vSqcao2NW)!==null&&_ref7!==void 0?_ref7:\"9,568\",VZH1CJvSi:(_ref8=pricePUnit!==null&&pricePUnit!==void 0?pricePUnit:props.VZH1CJvSi)!==null&&_ref8!==void 0?_ref8:\"$1,000,000\",zhMyztYK4:(_ref9=currentCapRate!==null&&currentCapRate!==void 0?currentCapRate:props.zhMyztYK4)!==null&&_ref9!==void 0?_ref9:\"5.72%\",ZYPVkpBb5:(_ref10=lotSize!==null&&lotSize!==void 0?lotSize:props.ZYPVkpBb5)!==null&&_ref10!==void 0?_ref10:\"28,538 SF \"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,U9MmOLnav,eB9jhMwJs,FZU9lSHmY,VZH1CJvSi,vSqcao2NW,Crgf4_vzj,zhMyztYK4,Q9cOOW5aV,ZYPVkpBb5,FWLXRkaDm,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"el4DWs1sk\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const WbhStenFW1knhguk=activeVariantCallback(async(...args)=>{setVariant(\"el4DWs1sk\");});const VJD1ZAwWQcxz4ca=activeVariantCallback(async(...args)=>{setVariant(\"XY1aYHWDH\");});const WbhStenFW138r3d0=activeVariantCallback(async(...args)=>{setVariant(\"mZBiDv9bC\");});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-175g09a\",className,classNames),\"data-framer-name\":\"Property\",layoutDependency:layoutDependency,layoutId:\"el4DWs1sk\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({mZBiDv9bC:{\"data-framer-name\":\"Kitchen\"},XY1aYHWDH:{\"data-framer-name\":\"Other\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-kflrx7-container\",layoutDependency:layoutDependency,layoutId:\"LmY7VQtYK-container\",children:/*#__PURE__*/_jsx(AccordionsPropertyDetails,{gtCPhdIT5:zhMyztYK4,H55TpKJOP:FZU9lSHmY,height:\"100%\",id:\"LmY7VQtYK\",LAKlnFdLC:VZH1CJvSi,layoutId:\"LmY7VQtYK\",nUB9rkygw:Crgf4_vzj,p4LS1MFxH:vSqcao2NW,QoERf2KiT:Q9cOOW5aV,style:{width:\"100%\"},T8rQFvSBR:U9MmOLnav,tLV1XwRxY:eB9jhMwJs,variant:\"Wdyabs9uT\",WbhStenFW:WbhStenFW1knhguk,width:\"100%\",xQwuoslC5:ZYPVkpBb5,ybtIrSL2p:FWLXRkaDm,...addPropertyOverrides({mZBiDv9bC:{variant:\"ZiA6Kfrym\"},XY1aYHWDH:{variant:\"ZiA6Kfrym\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-pseoa7-container\",layoutDependency:layoutDependency,layoutId:\"wgcjaYUuF-container\",children:/*#__PURE__*/_jsx(AccordionsPropertyDetails,{gtCPhdIT5:zhMyztYK4,H55TpKJOP:\"2022\",height:\"100%\",id:\"wgcjaYUuF\",LAKlnFdLC:\"$1,000,000\",layoutId:\"wgcjaYUuF\",nUB9rkygw:\"$836\",p4LS1MFxH:\"9,568\",QoERf2KiT:Q9cOOW5aV,style:{width:\"100%\"},T8rQFvSBR:\"$8,000,000\",tLV1XwRxY:\"8\",variant:\"wgD_jXQeD\",VJD1ZAwWQ:VJD1ZAwWQcxz4ca,width:\"100%\",xQwuoslC5:ZYPVkpBb5,ybtIrSL2p:FWLXRkaDm,...addPropertyOverrides({XY1aYHWDH:{variant:\"DYYra4f8E\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1uyecit-container\",layoutDependency:layoutDependency,layoutId:\"B6j6iGos9-container\",children:/*#__PURE__*/_jsx(AccordionsPropertyDetails,{gtCPhdIT5:\"5.72%\",H55TpKJOP:\"2022\",height:\"100%\",id:\"B6j6iGos9\",LAKlnFdLC:\"$1,000,000\",layoutId:\"B6j6iGos9\",nUB9rkygw:\"$836\",p4LS1MFxH:\"9,568\",QoERf2KiT:\"6.18%\",style:{width:\"100%\"},T8rQFvSBR:\"$8,000,000\",tLV1XwRxY:\"8\",variant:\"NCVAFU19r\",WbhStenFW:WbhStenFW138r3d0,width:\"100%\",xQwuoslC5:\"28,538 SF \",ybtIrSL2p:\"LAR2\",...addPropertyOverrides({mZBiDv9bC:{variant:\"KXnY2YkIV\"}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-utV9I.framer-1mpbuvp, .framer-utV9I .framer-1mpbuvp { display: block; }\",\".framer-utV9I.framer-175g09a { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 706px; }\",\".framer-utV9I .framer-kflrx7-container, .framer-utV9I .framer-pseoa7-container, .framer-utV9I .framer-1uyecit-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-utV9I.framer-175g09a { gap: 0px; } .framer-utV9I.framer-175g09a > * { margin: 0px; margin-bottom: calc(3px / 2); margin-top: calc(3px / 2); } .framer-utV9I.framer-175g09a > :first-child { margin-top: 0px; } .framer-utV9I.framer-175g09a > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 267\n * @framerIntrinsicWidth 706\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"XY1aYHWDH\":{\"layout\":[\"fixed\",\"auto\"]},\"mZBiDv9bC\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"U9MmOLnav\":\"price\",\"eB9jhMwJs\":\"units\",\"FZU9lSHmY\":\"yearBuilt\",\"VZH1CJvSi\":\"pricePUnit\",\"vSqcao2NW\":\"sqFt\",\"Crgf4_vzj\":\"pricePSqFt\",\"zhMyztYK4\":\"currentCapRate\",\"Q9cOOW5aV\":\"proformaCapRate\",\"ZYPVkpBb5\":\"lotSize\",\"FWLXRkaDm\":\"zoning\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerdIvZq3QAm=withCSS(Component,css,\"framer-utV9I\");export default FramerdIvZq3QAm;FramerdIvZq3QAm.displayName=\"Accordions/Property Prototype\";FramerdIvZq3QAm.defaultProps={height:267,width:706};addPropertyControls(FramerdIvZq3QAm,{variant:{options:[\"el4DWs1sk\",\"XY1aYHWDH\",\"mZBiDv9bC\"],optionTitles:[\"Property\",\"Other\",\"Kitchen\"],title:\"Variant\",type:ControlType.Enum},U9MmOLnav:{defaultValue:\"$8,000,000\",displayTextArea:true,title:\"Price\",type:ControlType.String},eB9jhMwJs:{defaultValue:\"8\",displayTextArea:false,title:\"Units\",type:ControlType.String},FZU9lSHmY:{defaultValue:\"2022\",displayTextArea:false,title:\"Year Built\",type:ControlType.String},VZH1CJvSi:{defaultValue:\"$1,000,000\",displayTextArea:false,title:\"Price P Unit\",type:ControlType.String},vSqcao2NW:{defaultValue:\"9,568\",displayTextArea:false,title:\"Sq Ft\",type:ControlType.String},Crgf4_vzj:{defaultValue:\"$836\",displayTextArea:false,title:\"Price P Sq Ft\",type:ControlType.String},zhMyztYK4:{defaultValue:\"5.72%\",displayTextArea:false,title:\"Current Cap Rate\",type:ControlType.String},Q9cOOW5aV:{defaultValue:\"6.18%\",title:\"Proforma Cap Rate\",type:ControlType.String},ZYPVkpBb5:{defaultValue:\"28,538 SF \",title:\"Lot Size\",type:ControlType.String},FWLXRkaDm:{defaultValue:\"LAR2\",title:\"Zoning\",type:ControlType.String}});addFonts(FramerdIvZq3QAm,[{explicitInter:true,fonts:[]},...AccordionsPropertyDetailsFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerdIvZq3QAm\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XY1aYHWDH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mZBiDv9bC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"267\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"706\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"U9MmOLnav\\\":\\\"price\\\",\\\"eB9jhMwJs\\\":\\\"units\\\",\\\"FZU9lSHmY\\\":\\\"yearBuilt\\\",\\\"VZH1CJvSi\\\":\\\"pricePUnit\\\",\\\"vSqcao2NW\\\":\\\"sqFt\\\",\\\"Crgf4_vzj\\\":\\\"pricePSqFt\\\",\\\"zhMyztYK4\\\":\\\"currentCapRate\\\",\\\"Q9cOOW5aV\\\":\\\"proformaCapRate\\\",\\\"ZYPVkpBb5\\\":\\\"lotSize\\\",\\\"FWLXRkaDm\\\":\\\"zoning\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (38f2e7f)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,FormContainer,FormPlainTextInput,FormSelect,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PropertyOverrides,ResolveLinks,RichText,SVG,useActiveVariantCallback,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useOverlayState,useQueryData,useRouteElementId,useRouter,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import*as ReactDOM from\"react-dom\";import{Icon as Hero}from\"https://framerusercontent.com/modules/hKjtTuWGYB451ckw6eTN/bbq95ZQZ142lE2fXscHd/Hero.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/K0mI40rrezffFjPjHAZX/Video.js\";import ButtonsButton from\"#framer/local/canvasComponent/AjBcKS13D/AjBcKS13D.js\";import ButtonsTextLink from\"#framer/local/canvasComponent/BqCnKKbEn/BqCnKKbEn.js\";import AccordionsPropertyPrototype from\"#framer/local/canvasComponent/dIvZq3QAm/dIvZq3QAm.js\";import NavigationMenuIcon from\"#framer/local/canvasComponent/FEsjjQPax/FEsjjQPax.js\";import ButtonsForm from\"#framer/local/canvasComponent/OgRS7hAVD/OgRS7hAVD.js\";import NavigationMenuLink from\"#framer/local/canvasComponent/QajUTYrc5/QajUTYrc5.js\";import NavigationNavbar from\"#framer/local/canvasComponent/ze6mg1a9E/ze6mg1a9E.js\";import Footer from\"#framer/local/canvasComponent/zOGQw9msp/zOGQw9msp.js\";import Properties from\"#framer/local/collection/XdC7qOeqe/XdC7qOeqe.js\";import*as sharedStyle3 from\"#framer/local/css/AotdguMlL/AotdguMlL.js\";import*as sharedStyle1 from\"#framer/local/css/kUM1sD137/kUM1sD137.js\";import*as sharedStyle6 from\"#framer/local/css/OCC6Dj92g/OCC6Dj92g.js\";import*as sharedStyle5 from\"#framer/local/css/oINo44sr6/oINo44sr6.js\";import*as sharedStyle2 from\"#framer/local/css/oxoiVZGo6/oxoiVZGo6.js\";import*as sharedStyle from\"#framer/local/css/p2afQTgRh/p2afQTgRh.js\";import*as sharedStyle4 from\"#framer/local/css/q5BqeoJcN/q5BqeoJcN.js\";import metadataProvider from\"#framer/local/webPageMetadata/Dj4WBZH4F/Dj4WBZH4F.js\";const VideoFonts=getFonts(Video);const NavigationNavbarFonts=getFonts(NavigationNavbar);const HeroFonts=getFonts(Hero);const ButtonsFormFonts=getFonts(ButtonsForm);const MotionDivWithFX=withFX(motion.div);const NavigationMenuIconFonts=getFonts(NavigationMenuIcon);const NavigationMenuLinkFonts=getFonts(NavigationMenuLink);const AccordionsPropertyPrototypeFonts=getFonts(AccordionsPropertyPrototype);const ButtonsButtonFonts=getFonts(ButtonsButton);const ButtonsTextLinkFonts=getFonts(ButtonsTextLink);const FooterFonts=getFonts(Footer);const breakpoints={DplYuyixS:\"(max-width: 767px)\",MynEiDI9r:\"(min-width: 768px) and (max-width: 1199px)\",sXQ3B913i:\"(min-width: 1536px)\",ySYRR3NQ9:\"(min-width: 1200px) and (max-width: 1535px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-eRDHC\";const variantClassNames={DplYuyixS:\"framer-v-23u7rw\",MynEiDI9r:\"framer-v-1au6xh8\",sXQ3B913i:\"framer-v-1kxmbwv\",ySYRR3NQ9:\"framer-v-bfqazt\"};const isSet=value=>{return value!==undefined&&value!==null&&value!==\"\";};const convertFromBoolean=(value,activeLocale)=>{if(value){return\"Upload\";}else{return\"URL\";}};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20};const transition1={delay:0,duration:.6,ease:[.44,0,.56,1],type:\"tween\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:20};const formVariants=(form,variants,currentVariant)=>{switch(form.state){case\"success\":var _variants_success;return(_variants_success=variants.success)!==null&&_variants_success!==void 0?_variants_success:currentVariant;case\"pending\":var _variants_pending;return(_variants_pending=variants.pending)!==null&&_variants_pending!==void 0?_variants_pending:currentVariant;case\"error\":var _variants_error;return(_variants_error=variants.error)!==null&&_variants_error!==void 0?_variants_error:currentVariant;case\"incomplete\":var _variants_incomplete;return(_variants_incomplete=variants.incomplete)!==null&&_variants_incomplete!==void 0?_variants_incomplete:currentVariant;}};const transition2={delay:0,duration:.2,ease:[.44,0,.56,1],type:\"tween\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"sXQ3B913i\",Laptop:\"ySYRR3NQ9\",Phone:\"DplYuyixS\",Tablet:\"MynEiDI9r\"};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:\"sXQ3B913i\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"Dj4WBZH4F\",data:Properties,type:\"Collection\"},select:[{collection:\"Dj4WBZH4F\",name:\"hDNLCaJEq\",type:\"Identifier\"},{collection:\"Dj4WBZH4F\",name:\"rvJCniPQf\",type:\"Identifier\"},{collection:\"Dj4WBZH4F\",name:\"sqI5KZRK3\",type:\"Identifier\"},{collection:\"Dj4WBZH4F\",name:\"VtX4OUKM5\",type:\"Identifier\"},{collection:\"Dj4WBZH4F\",name:\"rLBCwj64r\",type:\"Identifier\"},{collection:\"Dj4WBZH4F\",name:\"W_ev1BWfH\",type:\"Identifier\"},{collection:\"Dj4WBZH4F\",name:\"FBQbsu6fU\",type:\"Identifier\"},{collection:\"Dj4WBZH4F\",name:\"hpVmB6JPt\",type:\"Identifier\"},{collection:\"Dj4WBZH4F\",name:\"oN_9EFC1r\",type:\"Identifier\"},{collection:\"Dj4WBZH4F\",name:\"PtpyqhUxx\",type:\"Identifier\"},{collection:\"Dj4WBZH4F\",name:\"ybxeUhsT9\",type:\"Identifier\"},{collection:\"Dj4WBZH4F\",name:\"YYQyvRzfZ\",type:\"Identifier\"},{collection:\"Dj4WBZH4F\",name:\"JNXIf8_YR\",type:\"Identifier\"},{collection:\"Dj4WBZH4F\",name:\"I1UZMZENK\",type:\"Identifier\"},{collection:\"Dj4WBZH4F\",name:\"f5cTBVoCc\",type:\"Identifier\"},{collection:\"Dj4WBZH4F\",name:\"J7mGwKp6t\",type:\"Identifier\"},{collection:\"Dj4WBZH4F\",name:\"XChUBsGbD\",type:\"Identifier\"},{collection:\"Dj4WBZH4F\",name:\"e_a1QCoGV\",type:\"Identifier\"},{collection:\"Dj4WBZH4F\",name:\"ExZAhQosf\",type:\"Identifier\"},{collection:\"Dj4WBZH4F\",name:\"JHmnD5BEe\",type:\"Identifier\"},{collection:\"Dj4WBZH4F\",name:\"q6ubB9PY8\",type:\"Identifier\"},{collection:\"Dj4WBZH4F\",name:\"flf8wQBu1\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables)});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,JNXIf8_YR=getFromCurrentRouteData(\"JNXIf8_YR\"),hDNLCaJEq=getFromCurrentRouteData(\"hDNLCaJEq\"),rvJCniPQf=getFromCurrentRouteData(\"rvJCniPQf\"),sqI5KZRK3=getFromCurrentRouteData(\"sqI5KZRK3\"),VtX4OUKM5=getFromCurrentRouteData(\"VtX4OUKM5\"),rLBCwj64r=getFromCurrentRouteData(\"rLBCwj64r\"),W_ev1BWfH=getFromCurrentRouteData(\"W_ev1BWfH\"),FBQbsu6fU=getFromCurrentRouteData(\"FBQbsu6fU\"),hpVmB6JPt=getFromCurrentRouteData(\"hpVmB6JPt\"),oN_9EFC1r=getFromCurrentRouteData(\"oN_9EFC1r\"),PtpyqhUxx=getFromCurrentRouteData(\"PtpyqhUxx\"),ybxeUhsT9=getFromCurrentRouteData(\"ybxeUhsT9\"),YYQyvRzfZ=getFromCurrentRouteData(\"YYQyvRzfZ\"),I1UZMZENK=getFromCurrentRouteData(\"I1UZMZENK\"),f5cTBVoCc=getFromCurrentRouteData(\"f5cTBVoCc\"),J7mGwKp6t=getFromCurrentRouteData(\"J7mGwKp6t\"),XChUBsGbD=getFromCurrentRouteData(\"XChUBsGbD\"),e_a1QCoGV=getFromCurrentRouteData(\"e_a1QCoGV\"),ExZAhQosf=getFromCurrentRouteData(\"ExZAhQosf\"),q6ubB9PY8=getFromCurrentRouteData(\"q6ubB9PY8\"),flf8wQBu1=getFromCurrentRouteData(\"flf8wQBu1\"),JHmnD5BEe=getFromCurrentRouteData(\"JHmnD5BEe\"),...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(currentRouteData,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(currentRouteData,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-eRDHC`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-eRDHC`);};},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const uigZuQcBJwelu7j=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const cgOXejFvtwelu7j=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const onClick1wvko5h=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{overlay.hide();});const onTap1wvko5h=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{overlay.hide();});const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if([\"MynEiDI9r\",\"DplYuyixS\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"DplYuyixS\")return false;return true;};const router=useRouter();const id=useRouteElementId(\"J2rLAj7cQ\");const ref2=React.useRef(null);const id1=useRouteElementId(\"lQ0MspqVG\");const ref3=React.useRef(null);const isDisplayed2=()=>{if(!isBrowser())return true;if([\"MynEiDI9r\",\"DplYuyixS\"].includes(baseVariant))return true;return false;};const id2=useRouteElementId(\"VoPFbHY3W\");const ref4=React.useRef(null);const ref5=React.useRef(null);const id3=useRouteElementId(\"wC4BNXqCE\");const id4=useRouteElementId(\"XYDQh8FJt\");const ref6=React.useRef(null);const id5=useRouteElementId(\"drgr9MIT3\");const ref7=React.useRef(null);const id6=useRouteElementId(\"yv74rTTzl\");const ref8=React.useRef(null);const id7=useRouteElementId(\"dUxBEaT3U\");const ref9=React.useRef(null);const id8=useRouteElementId(\"Tjgh39Tg9\");const ref10=React.useRef(null);const id9=useRouteElementId(\"tty3KdyU2\");const ref11=React.useRef(null);const id10=useRouteElementId(\"EKG3Aeh6G\");const ref12=React.useRef(null);const id11=useRouteElementId(\"gDhGYirLP\");const ref13=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"sXQ3B913i\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1kxmbwv\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1aoebxd\",\"data-framer-name\":\"Hero\",name:\"Hero\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-dbj8v9 hidden-1au6xh8 hidden-23u7rw\",\"data-framer-name\":\"Video\",name:\"Video\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-qcvyr-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"zhWvEnf8n\",isMixedBorderRadius:false,layoutId:\"zhWvEnf8n\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/JuE1WIzFzIe5s0ZAeWLdAU9Olw.mp4\",srcType:convertFromBoolean(isSet(JNXIf8_YR),activeLocale),srcUrl:\"https://videocdn.cdnpk.net/videos/85279854-3eab-597b-8ee3-b291e0c58bf3/horizontal/previews/clear/large.mp4?token=exp=1720428993~hmac=cfa5f5988b98bb256e6039599086e72b0b2ceb01c2a21cc5371394ecfda9cd3b\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{background:{alt:\"\",fit:\"fill\",positionX:\"11.9%\",positionY:\"66.3%\"},className:\"framer-92xv0o\",\"data-framer-name\":\"container\",name:\"container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p95lup\",\"data-framer-name\":\"navbar + headline\",name:\"navbar + headline\",children:[/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:true,children:overlay1=>/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DplYuyixS:{width:\"calc(min(min(100vw, 1920px), 764px) - 40px)\"},MynEiDI9r:{width:\"calc(min(min(100vw, 1920px), 764px) - 120px)\"},ySYRR3NQ9:{width:\"520px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"calc(min(max(min(100vw, 1920px) / 2, 1px), 764px) - 128px)\",y:20,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-1ltkyiw-container\",id:\"1ltkyiw\",children:[/*#__PURE__*/_jsx(NavigationNavbar,{cgOXejFvt:cgOXejFvtwelu7j({overlay:overlay1}),height:\"100%\",id:\"S91_Bfiha\",layoutId:\"S91_Bfiha\",style:{width:\"100%\"},uigZuQcBJ:uigZuQcBJwelu7j({overlay}),variant:overlay.visible||overlay1.visible?\"aTzfVTYeM\":\"aTzfVTYeM\",width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-2rg4jz\",\"data-framer-portal-id\":\"1ltkyiw\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"UO6VGBSlX\"),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-w3jyl3\",\"data-framer-name\":\"Wrapper\",\"data-framer-portal-id\":\"1ltkyiw\",\"data-hide-scrollbars\":true,name:\"Wrapper\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-16q9qa8-container\",\"data-framer-name\":\"Close Icon\",name:\"Close Icon\",children:/*#__PURE__*/_jsx(Hero,{color:\"var(--token-bcca5be5-cd2c-410f-8bed-b159f72274d4, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"XMark\",id:\"jympHni7O\",layoutId:\"jympHni7O\",mirrored:false,name:\"Close Icon\",onClick:onClick1wvko5h({overlay}),selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9hv3on\",\"data-framer-name\":\"Container\",name:\"Container\",children:[isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ed7ba8 hidden-23u7rw\",\"data-framer-name\":\"Text\",name:\"Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MynEiDI9r:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7TG9yYS1yZWd1bGFy\",\"--framer-font-family\":'\"Lora\", \"Lora Placeholder\", serif',\"--framer-font-size\":\"26px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(20, 30, 41))\"},children:\"Ready to Connect and Achieve Your Real Estate Goals?\"})})},ySYRR3NQ9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7TG9yYS1yZWd1bGFy\",\"--framer-font-family\":'\"Lora\", \"Lora Placeholder\", serif',\"--framer-font-size\":\"28px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(20, 30, 41))\"},children:\"Ready to Connect and Achieve Your Real Estate Goals?\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7TG9yYS1yZWd1bGFy\",\"--framer-font-family\":'\"Lora\", \"Lora Placeholder\", serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(20, 30, 41))\"},children:\"Ready to Connect and Achieve Your Real Estate Goals?\"})}),className:\"framer-v49nnx\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Lora-regular\"],name:\"Heading\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MynEiDI9r:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(436.20000000000005),pixelHeight:5251,pixelWidth:7872,sizes:\"480px\",src:\"https://framerusercontent.com/images/4vsnf0qPb1BLzmGwDPcPiKbBlCc.jpg\",srcSet:\"https://framerusercontent.com/images/4vsnf0qPb1BLzmGwDPcPiKbBlCc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/4vsnf0qPb1BLzmGwDPcPiKbBlCc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/4vsnf0qPb1BLzmGwDPcPiKbBlCc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/4vsnf0qPb1BLzmGwDPcPiKbBlCc.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/4vsnf0qPb1BLzmGwDPcPiKbBlCc.jpg 7872w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(486.20000000000005),pixelHeight:5251,pixelWidth:7872,sizes:\"480px\",src:\"https://framerusercontent.com/images/4vsnf0qPb1BLzmGwDPcPiKbBlCc.jpg\",srcSet:\"https://framerusercontent.com/images/4vsnf0qPb1BLzmGwDPcPiKbBlCc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/4vsnf0qPb1BLzmGwDPcPiKbBlCc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/4vsnf0qPb1BLzmGwDPcPiKbBlCc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/4vsnf0qPb1BLzmGwDPcPiKbBlCc.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/4vsnf0qPb1BLzmGwDPcPiKbBlCc.jpg 7872w\"},className:\"framer-1dpvj5p\"})})]}),/*#__PURE__*/_jsx(FormContainer,{className:\"framer-alzdis\",children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zrml6f\",children:[/*#__PURE__*/_jsxs(\"label\",{className:\"framer-13d9v14\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-7a3cca55-9e5e-4253-a247-523dddb3afa5, rgb(124, 139, 148))\"},children:[\"First Name\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-a18d85b4-f93f-4848-8f2c-b4c2f0e4c279, rgb(48, 116, 160))\"},children:\"*\"})]})}),className:\"framer-bdntyj\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-183ef4f\",inputName:\"Name\",placeholder:\"Stephen\",type:\"text\"})]}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-7xfe9w\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-7a3cca55-9e5e-4253-a247-523dddb3afa5, rgb(124, 139, 148))\"},children:[\"Last Name\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-a18d85b4-f93f-4848-8f2c-b4c2f0e4c279, rgb(48, 116, 160))\"},children:\"*\"})]})}),className:\"framer-bhugy3\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1oxw8fm\",inputName:\"Name\",placeholder:\"Davies\",type:\"text\"})]})]}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-1wl3i90\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-7a3cca55-9e5e-4253-a247-523dddb3afa5, rgb(124, 139, 148))\"},children:[\"Email\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-a18d85b4-f93f-4848-8f2c-b4c2f0e4c279, rgb(48, 116, 160))\"},children:\"*\"})]})}),className:\"framer-40aipf\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-crsmjw\",inputName:\"Email\",placeholder:\"sdavies@gmail.com\",type:\"email\"})]}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-1501tqt\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-7a3cca55-9e5e-4253-a247-523dddb3afa5, rgb(124, 139, 148))\"},children:[\"Phone\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-a18d85b4-f93f-4848-8f2c-b4c2f0e4c279, rgb(48, 116, 160))\"},children:\"*\"})]})}),className:\"framer-1xnnw4x\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-bk3acc\",inputName:\"Phone\",placeholder:\"Phone number (e.g. +1 625-4822)\",type:\"tel\"})]}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-ecbmxt\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-7a3cca55-9e5e-4253-a247-523dddb3afa5, rgb(124, 139, 148))\"},children:[\"How did you hear about us?\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-a18d85b4-f93f-4848-8f2c-b4c2f0e4c279, rgb(48, 116, 160))\"},children:\"*\"})]})}),className:\"framer-13v5vwy\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormSelect,{className:\"framer-wccntu\",inputName:\"Location\",required:true,selectOptions:[{title:\"Internet search engine (e.g. Google, Brave)\",type:\"option\",value:\"internet\"},{title:\"Social Media (e.g. Instagram, TikTok, Linkedin\",type:\"option\",value:\"Social\"},{title:\"Online advertising (e.g. Banners, Google Ads)\",type:\"option\",value:\"Online Ad\"},{title:\"Print Media (e.g. Newspapers, Magazines)\",type:\"option\",value:\"Print\"},{title:\"Events or conferences\",type:\"option\",value:\"Event\"},{title:\"Email marketing campaigns\",type:\"option\",value:\"Email\"},{title:\"On another way\",type:\"option\",value:\"Another\"}]})]}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-1bj5grk\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-7a3cca55-9e5e-4253-a247-523dddb3afa5, rgb(124, 139, 148))\"},children:[\"Message\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-a18d85b4-f93f-4848-8f2c-b4c2f0e4c279, rgb(48, 116, 160))\"},children:\"*\"})]})}),className:\"framer-84m1vi\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-cp159l\",inputName:\"Phone\",placeholder:\"Your Message\",type:\"textarea\"})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DplYuyixS:{width:\"max(max(100vw, 1px) - 48px, 1px)\",y:707},MynEiDI9r:{width:\"max((max(100vw, 1px) - 124px) / 2, 1px)\",y:664.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,width:\"max((max(100vw, 1px) - 138px) / 2, 1px)\",y:714.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-isjbak-container\",children:/*#__PURE__*/_jsx(ButtonsForm,{height:\"100%\",id:\"lxjN1aPwM\",layoutId:\"lxjN1aPwM\",style:{width:\"100%\"},type:\"submit\",variant:formVariants(formState,{pending:\"qxwcaTd27\",success:\"WBV4PmUwu\"},\"rpwoLiay3\"),width:\"100%\"})})})})]})})]})]})]}),document.querySelector(\"#overlay\"))})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-fqrlwt\",\"data-framer-portal-id\":\"1ltkyiw\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay1.hide()},\"YSPjuWrUv\"),/*#__PURE__*/_jsxs(motion.div,{animate:animation3,className:\"framer-a2yths\",\"data-framer-name\":\"Wrapper\",\"data-framer-portal-id\":\"1ltkyiw\",\"data-hide-scrollbars\":true,exit:animation2,initial:animation4,name:\"Wrapper\",children:[/*#__PURE__*/_jsxs(\"nav\",{className:\"framer-1q65cq2\",\"data-framer-name\":\"Navbar in Overlay\",name:\"Navbar in Overlay\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-2pra8m framer-1tbc4m0\",\"data-framer-name\":\"Logo\",name:\"Logo\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-4jnutq\",\"data-framer-name\":\"Logo Gray\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:29,intrinsicWidth:107,name:\"Logo Gray\",svg:'<svg width=\"107\" height=\"29\" viewBox=\"0 0 107 29\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"path-1-inside-1_2321_74\" fill=\"white\">\\n<path d=\"M30.2349 25.5714V24.5343C30.8634 24.5343 31.3453 24.3667 31.6806 24.0314C32.0158 23.6962 32.2882 23.2352 32.4977 22.6486C32.7282 22.0619 32.9901 21.381 33.2834 20.6057L39.7577 2.97429H40.512L47.5206 20.8572C47.6882 21.2972 47.8768 21.8629 48.0863 22.5543C48.2958 23.2457 48.3796 23.8324 48.3377 24.3143C48.6939 24.2933 49.0501 24.2724 49.4063 24.2514C49.7625 24.2305 50.1187 24.2095 50.4749 24.1886V25.5714H43.2777V24.5343C44.0739 24.5133 44.5977 24.3352 44.8491 24C45.1006 23.6648 45.1949 23.2667 45.132 22.8057C45.0691 22.3448 44.9644 21.9257 44.8177 21.5486L43.7177 18.5943L35.5463 18.7829L34.4463 22.1457C34.2996 22.6486 34.1634 23.0467 34.0377 23.34C33.933 23.6333 33.8072 23.9581 33.6606 24.3143C34.0796 24.2933 34.4882 24.2724 34.8863 24.2514C35.3053 24.2305 35.7139 24.2095 36.112 24.1886V25.5714H30.2349ZM36.0177 17.4314H43.2777L41.0463 11.4286C40.8158 10.7791 40.5749 10.14 40.3234 9.51144C40.093 8.86191 39.8625 8.21239 39.632 7.56287H39.5691C39.3596 8.14953 39.1396 8.7362 38.9091 9.32287C38.6996 9.90953 38.4796 10.5067 38.2491 11.1143L36.0177 17.4314Z\"/>\\n<path d=\"M51.4798 24.6286C52.1294 24.6286 52.5798 24.4714 52.8313 24.1572C53.0827 23.8219 53.2294 23.3714 53.2713 22.8057C53.3132 22.2191 53.3341 21.5486 53.3341 20.7943V13.6286C53.3341 13.2933 53.3341 12.9581 53.3341 12.6229C53.3551 12.2876 53.397 11.9419 53.4598 11.5857C53.0827 11.6067 52.7056 11.6276 52.3284 11.6486C51.9722 11.6486 51.6056 11.6591 51.2284 11.68V10.3914H52.2027C53.1036 10.3914 53.7217 10.3076 54.057 10.14C54.4132 9.95144 54.7065 9.75239 54.937 9.54286H55.8484C55.8903 9.8781 55.9217 10.2972 55.9427 10.8C55.9636 11.2819 55.9846 11.9 56.0056 12.6543C56.3198 12.1305 56.7494 11.6172 57.2941 11.1143C57.8389 10.6114 58.4465 10.1924 59.117 9.85715C59.8084 9.52191 60.5313 9.35429 61.2856 9.35429C61.8722 9.35429 62.3856 9.51144 62.8256 9.82572C63.2656 10.14 63.4856 10.6429 63.4856 11.3343C63.4856 11.5019 63.4332 11.7114 63.3284 11.9629C63.2236 12.1933 63.056 12.4029 62.8256 12.5914C62.5951 12.7591 62.2913 12.8429 61.9141 12.8429C61.4532 12.8219 61.0865 12.6438 60.8141 12.3086C60.5417 11.9524 60.437 11.5438 60.4998 11.0829C59.976 11.0619 59.4313 11.1981 58.8656 11.4914C58.3208 11.7848 57.8075 12.1933 57.3256 12.7172C56.8436 13.22 56.4141 13.8172 56.037 14.5086L56.0684 22.24C56.0684 22.6591 56.0579 23.0362 56.037 23.3714C56.037 23.6857 56.0056 24.021 55.9427 24.3772C56.2779 24.3562 56.6027 24.3457 56.917 24.3457C57.2522 24.3248 57.5875 24.3038 57.9227 24.2829V25.5714H51.4798V24.6286Z\"/>\\n<path d=\"M72.5301 26.0743C71.1263 26.0743 69.8273 25.76 68.633 25.1314C67.4596 24.4819 66.5168 23.56 65.8044 22.3657C65.113 21.1505 64.7673 19.6943 64.7673 17.9972C64.7673 16.9076 64.9663 15.8495 65.3644 14.8229C65.7625 13.7962 66.3177 12.8743 67.0301 12.0572C67.7634 11.2191 68.633 10.5591 69.6387 10.0772C70.6444 9.59525 71.7549 9.35429 72.9701 9.35429C74.1434 9.35429 75.1596 9.53239 76.0187 9.88858C76.8987 10.2448 77.5796 10.7162 78.0615 11.3029C78.5434 11.8895 78.7844 12.5286 78.7844 13.22C78.7844 13.681 78.6587 14.0791 78.4072 14.4143C78.1558 14.7286 77.7892 14.8857 77.3073 14.8857C76.7834 14.9067 76.4063 14.7495 76.1758 14.4143C75.9663 14.0581 75.8615 13.7438 75.8615 13.4714C75.8615 13.2619 75.893 13.0524 75.9558 12.8429C76.0187 12.6124 76.1444 12.4029 76.333 12.2143C76.1653 11.7114 75.872 11.3448 75.453 11.1143C75.0339 10.8629 74.5939 10.7057 74.133 10.6429C73.693 10.5591 73.3263 10.5172 73.033 10.5172C71.6082 10.5172 70.4034 11.0933 69.4187 12.2457C68.4549 13.3772 67.973 15.0324 67.973 17.2114C67.973 18.6152 68.193 19.8619 68.633 20.9514C69.0939 22.041 69.733 22.9 70.5501 23.5286C71.3672 24.1362 72.3101 24.44 73.3787 24.44C74.3634 24.44 75.3063 24.1781 76.2073 23.6543C77.1082 23.1305 77.8101 22.4914 78.313 21.7372L79.1301 22.3657C78.5853 23.2457 77.9253 23.9581 77.1501 24.5029C76.3958 25.0476 75.6101 25.4457 74.793 25.6972C73.9968 25.9486 73.2425 26.0743 72.5301 26.0743Z\"/>\\n<path d=\"M91.6772 24.6286C92.3268 24.6286 92.7772 24.4714 93.0287 24.1572C93.2801 23.8219 93.4267 23.3714 93.4687 22.8057C93.5106 22.2191 93.5315 21.5486 93.5315 20.7943V16.3943C93.5315 14.5924 93.2382 13.241 92.6515 12.34C92.0858 11.4391 91.1848 10.9991 89.9487 11.02C89.1734 11.041 88.4087 11.2295 87.6544 11.5857C86.921 11.9419 86.3239 12.4029 85.8629 12.9686V22.24C85.8629 22.6591 85.8525 23.0362 85.8315 23.3714C85.8106 23.6857 85.7687 24.021 85.7058 24.3772C86.041 24.3562 86.3658 24.3457 86.6801 24.3457C87.0153 24.3248 87.3506 24.3038 87.6858 24.2829V25.5714H81.2744V24.6286C81.9239 24.6286 82.3744 24.4714 82.6258 24.1572C82.8772 23.8219 83.0239 23.3714 83.0658 22.8057C83.1287 22.2191 83.1601 21.5486 83.1601 20.7943V5.92858C83.1601 5.59334 83.1601 5.27906 83.1601 4.98572C83.181 4.67144 83.2125 4.30477 83.2544 3.88572C82.8772 3.90668 82.5001 3.92763 82.1229 3.94858C81.7667 3.96953 81.4001 3.99048 81.0229 4.01144V2.69144C81.9448 2.69144 82.6572 2.64953 83.1601 2.56572C83.6839 2.48191 84.0715 2.37715 84.3229 2.25144C84.5953 2.12572 84.8048 1.98953 84.9515 1.84286H85.8629V11.4286C86.3239 11.0305 86.8372 10.6848 87.4029 10.3914C87.9896 10.0772 88.5868 9.82572 89.1944 9.63715C89.8229 9.44858 90.4306 9.35429 91.0172 9.35429C92.8401 9.35429 94.1496 9.93048 94.9458 11.0829C95.7629 12.2143 96.182 13.9848 96.2029 16.3943L96.2344 22.24C96.2344 22.6591 96.2239 23.0362 96.2029 23.3714C96.2029 23.6857 96.1715 24.021 96.1087 24.3772C96.4439 24.3562 96.7687 24.3457 97.0829 24.3457C97.4182 24.3248 97.7534 24.3038 98.0887 24.2829V25.5714H91.6772V24.6286Z\"/>\\n<path d=\"M100.403 24.6286C101.052 24.6286 101.503 24.4714 101.754 24.1572C102.006 23.8219 102.152 23.3714 102.194 22.8057C102.236 22.2191 102.257 21.5486 102.257 20.7943V13.6286C102.257 13.2933 102.268 12.9791 102.289 12.6857C102.309 12.3714 102.341 12.0048 102.383 11.5857C102.006 11.6067 101.629 11.6276 101.251 11.6486C100.895 11.6695 100.529 11.6905 100.151 11.7114V10.3914C101.073 10.3914 101.786 10.3495 102.289 10.2657C102.791 10.1819 103.169 10.0772 103.42 9.95144C103.692 9.82572 103.902 9.68953 104.049 9.54286H104.96V22.24C104.96 22.6591 104.949 23.0362 104.929 23.3714C104.929 23.6857 104.897 24.021 104.834 24.3772C105.169 24.3562 105.494 24.3457 105.809 24.3457C106.144 24.3248 106.479 24.3038 106.814 24.2829V25.5714H100.403V24.6286ZM103.451 6.43144C103.011 6.43144 102.624 6.25334 102.289 5.89715C101.953 5.54096 101.786 5.10096 101.786 4.57715C101.786 4.05334 101.953 3.61334 102.289 3.25715C102.645 2.88001 103.043 2.69144 103.483 2.69144C103.965 2.69144 104.363 2.88001 104.677 3.25715C105.012 3.61334 105.18 4.05334 105.18 4.57715C105.18 5.10096 105.002 5.54096 104.646 5.89715C104.31 6.25334 103.912 6.43144 103.451 6.43144Z\"/>\\n</mask>\\n<path d=\"M30.2349 25.5714V24.5343C30.8634 24.5343 31.3453 24.3667 31.6806 24.0314C32.0158 23.6962 32.2882 23.2352 32.4977 22.6486C32.7282 22.0619 32.9901 21.381 33.2834 20.6057L39.7577 2.97429H40.512L47.5206 20.8572C47.6882 21.2972 47.8768 21.8629 48.0863 22.5543C48.2958 23.2457 48.3796 23.8324 48.3377 24.3143C48.6939 24.2933 49.0501 24.2724 49.4063 24.2514C49.7625 24.2305 50.1187 24.2095 50.4749 24.1886V25.5714H43.2777V24.5343C44.0739 24.5133 44.5977 24.3352 44.8491 24C45.1006 23.6648 45.1949 23.2667 45.132 22.8057C45.0691 22.3448 44.9644 21.9257 44.8177 21.5486L43.7177 18.5943L35.5463 18.7829L34.4463 22.1457C34.2996 22.6486 34.1634 23.0467 34.0377 23.34C33.933 23.6333 33.8072 23.9581 33.6606 24.3143C34.0796 24.2933 34.4882 24.2724 34.8863 24.2514C35.3053 24.2305 35.7139 24.2095 36.112 24.1886V25.5714H30.2349ZM36.0177 17.4314H43.2777L41.0463 11.4286C40.8158 10.7791 40.5749 10.14 40.3234 9.51144C40.093 8.86191 39.8625 8.21239 39.632 7.56287H39.5691C39.3596 8.14953 39.1396 8.7362 38.9091 9.32287C38.6996 9.90953 38.4796 10.5067 38.2491 11.1143L36.0177 17.4314Z\" fill=\"#070E13\"/>\\n<path d=\"M51.4798 24.6286C52.1294 24.6286 52.5798 24.4714 52.8313 24.1572C53.0827 23.8219 53.2294 23.3714 53.2713 22.8057C53.3132 22.2191 53.3341 21.5486 53.3341 20.7943V13.6286C53.3341 13.2933 53.3341 12.9581 53.3341 12.6229C53.3551 12.2876 53.397 11.9419 53.4598 11.5857C53.0827 11.6067 52.7056 11.6276 52.3284 11.6486C51.9722 11.6486 51.6056 11.6591 51.2284 11.68V10.3914H52.2027C53.1036 10.3914 53.7217 10.3076 54.057 10.14C54.4132 9.95144 54.7065 9.75239 54.937 9.54286H55.8484C55.8903 9.8781 55.9217 10.2972 55.9427 10.8C55.9636 11.2819 55.9846 11.9 56.0056 12.6543C56.3198 12.1305 56.7494 11.6172 57.2941 11.1143C57.8389 10.6114 58.4465 10.1924 59.117 9.85715C59.8084 9.52191 60.5313 9.35429 61.2856 9.35429C61.8722 9.35429 62.3856 9.51144 62.8256 9.82572C63.2656 10.14 63.4856 10.6429 63.4856 11.3343C63.4856 11.5019 63.4332 11.7114 63.3284 11.9629C63.2236 12.1933 63.056 12.4029 62.8256 12.5914C62.5951 12.7591 62.2913 12.8429 61.9141 12.8429C61.4532 12.8219 61.0865 12.6438 60.8141 12.3086C60.5417 11.9524 60.437 11.5438 60.4998 11.0829C59.976 11.0619 59.4313 11.1981 58.8656 11.4914C58.3208 11.7848 57.8075 12.1933 57.3256 12.7172C56.8436 13.22 56.4141 13.8172 56.037 14.5086L56.0684 22.24C56.0684 22.6591 56.0579 23.0362 56.037 23.3714C56.037 23.6857 56.0056 24.021 55.9427 24.3772C56.2779 24.3562 56.6027 24.3457 56.917 24.3457C57.2522 24.3248 57.5875 24.3038 57.9227 24.2829V25.5714H51.4798V24.6286Z\" fill=\"#070E13\"/>\\n<path d=\"M72.5301 26.0743C71.1263 26.0743 69.8273 25.76 68.633 25.1314C67.4596 24.4819 66.5168 23.56 65.8044 22.3657C65.113 21.1505 64.7673 19.6943 64.7673 17.9972C64.7673 16.9076 64.9663 15.8495 65.3644 14.8229C65.7625 13.7962 66.3177 12.8743 67.0301 12.0572C67.7634 11.2191 68.633 10.5591 69.6387 10.0772C70.6444 9.59525 71.7549 9.35429 72.9701 9.35429C74.1434 9.35429 75.1596 9.53239 76.0187 9.88858C76.8987 10.2448 77.5796 10.7162 78.0615 11.3029C78.5434 11.8895 78.7844 12.5286 78.7844 13.22C78.7844 13.681 78.6587 14.0791 78.4072 14.4143C78.1558 14.7286 77.7892 14.8857 77.3073 14.8857C76.7834 14.9067 76.4063 14.7495 76.1758 14.4143C75.9663 14.0581 75.8615 13.7438 75.8615 13.4714C75.8615 13.2619 75.893 13.0524 75.9558 12.8429C76.0187 12.6124 76.1444 12.4029 76.333 12.2143C76.1653 11.7114 75.872 11.3448 75.453 11.1143C75.0339 10.8629 74.5939 10.7057 74.133 10.6429C73.693 10.5591 73.3263 10.5172 73.033 10.5172C71.6082 10.5172 70.4034 11.0933 69.4187 12.2457C68.4549 13.3772 67.973 15.0324 67.973 17.2114C67.973 18.6152 68.193 19.8619 68.633 20.9514C69.0939 22.041 69.733 22.9 70.5501 23.5286C71.3672 24.1362 72.3101 24.44 73.3787 24.44C74.3634 24.44 75.3063 24.1781 76.2073 23.6543C77.1082 23.1305 77.8101 22.4914 78.313 21.7372L79.1301 22.3657C78.5853 23.2457 77.9253 23.9581 77.1501 24.5029C76.3958 25.0476 75.6101 25.4457 74.793 25.6972C73.9968 25.9486 73.2425 26.0743 72.5301 26.0743Z\" fill=\"#070E13\"/>\\n<path d=\"M91.6772 24.6286C92.3268 24.6286 92.7772 24.4714 93.0287 24.1572C93.2801 23.8219 93.4267 23.3714 93.4687 22.8057C93.5106 22.2191 93.5315 21.5486 93.5315 20.7943V16.3943C93.5315 14.5924 93.2382 13.241 92.6515 12.34C92.0858 11.4391 91.1848 10.9991 89.9487 11.02C89.1734 11.041 88.4087 11.2295 87.6544 11.5857C86.921 11.9419 86.3239 12.4029 85.8629 12.9686V22.24C85.8629 22.6591 85.8525 23.0362 85.8315 23.3714C85.8106 23.6857 85.7687 24.021 85.7058 24.3772C86.041 24.3562 86.3658 24.3457 86.6801 24.3457C87.0153 24.3248 87.3506 24.3038 87.6858 24.2829V25.5714H81.2744V24.6286C81.9239 24.6286 82.3744 24.4714 82.6258 24.1572C82.8772 23.8219 83.0239 23.3714 83.0658 22.8057C83.1287 22.2191 83.1601 21.5486 83.1601 20.7943V5.92858C83.1601 5.59334 83.1601 5.27906 83.1601 4.98572C83.181 4.67144 83.2125 4.30477 83.2544 3.88572C82.8772 3.90668 82.5001 3.92763 82.1229 3.94858C81.7667 3.96953 81.4001 3.99048 81.0229 4.01144V2.69144C81.9448 2.69144 82.6572 2.64953 83.1601 2.56572C83.6839 2.48191 84.0715 2.37715 84.3229 2.25144C84.5953 2.12572 84.8048 1.98953 84.9515 1.84286H85.8629V11.4286C86.3239 11.0305 86.8372 10.6848 87.4029 10.3914C87.9896 10.0772 88.5868 9.82572 89.1944 9.63715C89.8229 9.44858 90.4306 9.35429 91.0172 9.35429C92.8401 9.35429 94.1496 9.93048 94.9458 11.0829C95.7629 12.2143 96.182 13.9848 96.2029 16.3943L96.2344 22.24C96.2344 22.6591 96.2239 23.0362 96.2029 23.3714C96.2029 23.6857 96.1715 24.021 96.1087 24.3772C96.4439 24.3562 96.7687 24.3457 97.0829 24.3457C97.4182 24.3248 97.7534 24.3038 98.0887 24.2829V25.5714H91.6772V24.6286Z\" fill=\"#070E13\"/>\\n<path d=\"M100.403 24.6286C101.052 24.6286 101.503 24.4714 101.754 24.1572C102.006 23.8219 102.152 23.3714 102.194 22.8057C102.236 22.2191 102.257 21.5486 102.257 20.7943V13.6286C102.257 13.2933 102.268 12.9791 102.289 12.6857C102.309 12.3714 102.341 12.0048 102.383 11.5857C102.006 11.6067 101.629 11.6276 101.251 11.6486C100.895 11.6695 100.529 11.6905 100.151 11.7114V10.3914C101.073 10.3914 101.786 10.3495 102.289 10.2657C102.791 10.1819 103.169 10.0772 103.42 9.95144C103.692 9.82572 103.902 9.68953 104.049 9.54286H104.96V22.24C104.96 22.6591 104.949 23.0362 104.929 23.3714C104.929 23.6857 104.897 24.021 104.834 24.3772C105.169 24.3562 105.494 24.3457 105.809 24.3457C106.144 24.3248 106.479 24.3038 106.814 24.2829V25.5714H100.403V24.6286ZM103.451 6.43144C103.011 6.43144 102.624 6.25334 102.289 5.89715C101.953 5.54096 101.786 5.10096 101.786 4.57715C101.786 4.05334 101.953 3.61334 102.289 3.25715C102.645 2.88001 103.043 2.69144 103.483 2.69144C103.965 2.69144 104.363 2.88001 104.677 3.25715C105.012 3.61334 105.18 4.05334 105.18 4.57715C105.18 5.10096 105.002 5.54096 104.646 5.89715C104.31 6.25334 103.912 6.43144 103.451 6.43144Z\" fill=\"#070E13\"/>\\n<path d=\"M30.2349 25.5714V24.5343C30.8634 24.5343 31.3453 24.3667 31.6806 24.0314C32.0158 23.6962 32.2882 23.2352 32.4977 22.6486C32.7282 22.0619 32.9901 21.381 33.2834 20.6057L39.7577 2.97429H40.512L47.5206 20.8572C47.6882 21.2972 47.8768 21.8629 48.0863 22.5543C48.2958 23.2457 48.3796 23.8324 48.3377 24.3143C48.6939 24.2933 49.0501 24.2724 49.4063 24.2514C49.7625 24.2305 50.1187 24.2095 50.4749 24.1886V25.5714H43.2777V24.5343C44.0739 24.5133 44.5977 24.3352 44.8491 24C45.1006 23.6648 45.1949 23.2667 45.132 22.8057C45.0691 22.3448 44.9644 21.9257 44.8177 21.5486L43.7177 18.5943L35.5463 18.7829L34.4463 22.1457C34.2996 22.6486 34.1634 23.0467 34.0377 23.34C33.933 23.6333 33.8072 23.9581 33.6606 24.3143C34.0796 24.2933 34.4882 24.2724 34.8863 24.2514C35.3053 24.2305 35.7139 24.2095 36.112 24.1886V25.5714H30.2349ZM36.0177 17.4314H43.2777L41.0463 11.4286C40.8158 10.7791 40.5749 10.14 40.3234 9.51144C40.093 8.86191 39.8625 8.21239 39.632 7.56287H39.5691C39.3596 8.14953 39.1396 8.7362 38.9091 9.32287C38.6996 9.90953 38.4796 10.5067 38.2491 11.1143L36.0177 17.4314Z\" stroke=\"white\" stroke-width=\"0.5\" mask=\"url(#path-1-inside-1_2321_74)\"/>\\n<path d=\"M51.4798 24.6286C52.1294 24.6286 52.5798 24.4714 52.8313 24.1572C53.0827 23.8219 53.2294 23.3714 53.2713 22.8057C53.3132 22.2191 53.3341 21.5486 53.3341 20.7943V13.6286C53.3341 13.2933 53.3341 12.9581 53.3341 12.6229C53.3551 12.2876 53.397 11.9419 53.4598 11.5857C53.0827 11.6067 52.7056 11.6276 52.3284 11.6486C51.9722 11.6486 51.6056 11.6591 51.2284 11.68V10.3914H52.2027C53.1036 10.3914 53.7217 10.3076 54.057 10.14C54.4132 9.95144 54.7065 9.75239 54.937 9.54286H55.8484C55.8903 9.8781 55.9217 10.2972 55.9427 10.8C55.9636 11.2819 55.9846 11.9 56.0056 12.6543C56.3198 12.1305 56.7494 11.6172 57.2941 11.1143C57.8389 10.6114 58.4465 10.1924 59.117 9.85715C59.8084 9.52191 60.5313 9.35429 61.2856 9.35429C61.8722 9.35429 62.3856 9.51144 62.8256 9.82572C63.2656 10.14 63.4856 10.6429 63.4856 11.3343C63.4856 11.5019 63.4332 11.7114 63.3284 11.9629C63.2236 12.1933 63.056 12.4029 62.8256 12.5914C62.5951 12.7591 62.2913 12.8429 61.9141 12.8429C61.4532 12.8219 61.0865 12.6438 60.8141 12.3086C60.5417 11.9524 60.437 11.5438 60.4998 11.0829C59.976 11.0619 59.4313 11.1981 58.8656 11.4914C58.3208 11.7848 57.8075 12.1933 57.3256 12.7172C56.8436 13.22 56.4141 13.8172 56.037 14.5086L56.0684 22.24C56.0684 22.6591 56.0579 23.0362 56.037 23.3714C56.037 23.6857 56.0056 24.021 55.9427 24.3772C56.2779 24.3562 56.6027 24.3457 56.917 24.3457C57.2522 24.3248 57.5875 24.3038 57.9227 24.2829V25.5714H51.4798V24.6286Z\" stroke=\"white\" stroke-width=\"0.5\" mask=\"url(#path-1-inside-1_2321_74)\"/>\\n<path d=\"M72.5301 26.0743C71.1263 26.0743 69.8273 25.76 68.633 25.1314C67.4596 24.4819 66.5168 23.56 65.8044 22.3657C65.113 21.1505 64.7673 19.6943 64.7673 17.9972C64.7673 16.9076 64.9663 15.8495 65.3644 14.8229C65.7625 13.7962 66.3177 12.8743 67.0301 12.0572C67.7634 11.2191 68.633 10.5591 69.6387 10.0772C70.6444 9.59525 71.7549 9.35429 72.9701 9.35429C74.1434 9.35429 75.1596 9.53239 76.0187 9.88858C76.8987 10.2448 77.5796 10.7162 78.0615 11.3029C78.5434 11.8895 78.7844 12.5286 78.7844 13.22C78.7844 13.681 78.6587 14.0791 78.4072 14.4143C78.1558 14.7286 77.7892 14.8857 77.3073 14.8857C76.7834 14.9067 76.4063 14.7495 76.1758 14.4143C75.9663 14.0581 75.8615 13.7438 75.8615 13.4714C75.8615 13.2619 75.893 13.0524 75.9558 12.8429C76.0187 12.6124 76.1444 12.4029 76.333 12.2143C76.1653 11.7114 75.872 11.3448 75.453 11.1143C75.0339 10.8629 74.5939 10.7057 74.133 10.6429C73.693 10.5591 73.3263 10.5172 73.033 10.5172C71.6082 10.5172 70.4034 11.0933 69.4187 12.2457C68.4549 13.3772 67.973 15.0324 67.973 17.2114C67.973 18.6152 68.193 19.8619 68.633 20.9514C69.0939 22.041 69.733 22.9 70.5501 23.5286C71.3672 24.1362 72.3101 24.44 73.3787 24.44C74.3634 24.44 75.3063 24.1781 76.2073 23.6543C77.1082 23.1305 77.8101 22.4914 78.313 21.7372L79.1301 22.3657C78.5853 23.2457 77.9253 23.9581 77.1501 24.5029C76.3958 25.0476 75.6101 25.4457 74.793 25.6972C73.9968 25.9486 73.2425 26.0743 72.5301 26.0743Z\" stroke=\"white\" stroke-width=\"0.5\" mask=\"url(#path-1-inside-1_2321_74)\"/>\\n<path d=\"M91.6772 24.6286C92.3268 24.6286 92.7772 24.4714 93.0287 24.1572C93.2801 23.8219 93.4267 23.3714 93.4687 22.8057C93.5106 22.2191 93.5315 21.5486 93.5315 20.7943V16.3943C93.5315 14.5924 93.2382 13.241 92.6515 12.34C92.0858 11.4391 91.1848 10.9991 89.9487 11.02C89.1734 11.041 88.4087 11.2295 87.6544 11.5857C86.921 11.9419 86.3239 12.4029 85.8629 12.9686V22.24C85.8629 22.6591 85.8525 23.0362 85.8315 23.3714C85.8106 23.6857 85.7687 24.021 85.7058 24.3772C86.041 24.3562 86.3658 24.3457 86.6801 24.3457C87.0153 24.3248 87.3506 24.3038 87.6858 24.2829V25.5714H81.2744V24.6286C81.9239 24.6286 82.3744 24.4714 82.6258 24.1572C82.8772 23.8219 83.0239 23.3714 83.0658 22.8057C83.1287 22.2191 83.1601 21.5486 83.1601 20.7943V5.92858C83.1601 5.59334 83.1601 5.27906 83.1601 4.98572C83.181 4.67144 83.2125 4.30477 83.2544 3.88572C82.8772 3.90668 82.5001 3.92763 82.1229 3.94858C81.7667 3.96953 81.4001 3.99048 81.0229 4.01144V2.69144C81.9448 2.69144 82.6572 2.64953 83.1601 2.56572C83.6839 2.48191 84.0715 2.37715 84.3229 2.25144C84.5953 2.12572 84.8048 1.98953 84.9515 1.84286H85.8629V11.4286C86.3239 11.0305 86.8372 10.6848 87.4029 10.3914C87.9896 10.0772 88.5868 9.82572 89.1944 9.63715C89.8229 9.44858 90.4306 9.35429 91.0172 9.35429C92.8401 9.35429 94.1496 9.93048 94.9458 11.0829C95.7629 12.2143 96.182 13.9848 96.2029 16.3943L96.2344 22.24C96.2344 22.6591 96.2239 23.0362 96.2029 23.3714C96.2029 23.6857 96.1715 24.021 96.1087 24.3772C96.4439 24.3562 96.7687 24.3457 97.0829 24.3457C97.4182 24.3248 97.7534 24.3038 98.0887 24.2829V25.5714H91.6772V24.6286Z\" stroke=\"white\" stroke-width=\"0.5\" mask=\"url(#path-1-inside-1_2321_74)\"/>\\n<path d=\"M100.403 24.6286C101.052 24.6286 101.503 24.4714 101.754 24.1572C102.006 23.8219 102.152 23.3714 102.194 22.8057C102.236 22.2191 102.257 21.5486 102.257 20.7943V13.6286C102.257 13.2933 102.268 12.9791 102.289 12.6857C102.309 12.3714 102.341 12.0048 102.383 11.5857C102.006 11.6067 101.629 11.6276 101.251 11.6486C100.895 11.6695 100.529 11.6905 100.151 11.7114V10.3914C101.073 10.3914 101.786 10.3495 102.289 10.2657C102.791 10.1819 103.169 10.0772 103.42 9.95144C103.692 9.82572 103.902 9.68953 104.049 9.54286H104.96V22.24C104.96 22.6591 104.949 23.0362 104.929 23.3714C104.929 23.6857 104.897 24.021 104.834 24.3772C105.169 24.3562 105.494 24.3457 105.809 24.3457C106.144 24.3248 106.479 24.3038 106.814 24.2829V25.5714H100.403V24.6286ZM103.451 6.43144C103.011 6.43144 102.624 6.25334 102.289 5.89715C101.953 5.54096 101.786 5.10096 101.786 4.57715C101.786 4.05334 101.953 3.61334 102.289 3.25715C102.645 2.88001 103.043 2.69144 103.483 2.69144C103.965 2.69144 104.363 2.88001 104.677 3.25715C105.012 3.61334 105.18 4.05334 105.18 4.57715C105.18 5.10096 105.002 5.54096 104.646 5.89715C104.31 6.25334 103.912 6.43144 103.451 6.43144Z\" stroke=\"white\" stroke-width=\"0.5\" mask=\"url(#path-1-inside-1_2321_74)\"/>\\n<path d=\"M2.76458 21.4831L8.91608 15.5063L9.13701 15.2917H8.82898H0.123779V13.2798H8.82915H9.13718L8.91625 13.0651L2.76476 7.08838L4.23155 5.66325L10.389 11.6458L10.6011 11.8519V11.5561V3.1012H12.6791V11.5544V11.8502L12.8913 11.6441L19.0469 5.66327L20.5137 7.08839L14.3623 13.0651L14.1413 13.2798H14.4494H23.1542V15.2917H14.4495H14.1415L14.3624 15.5063L20.5139 21.483L19.0471 22.9082L12.8913 16.9272L12.6791 16.7211V17.0168V25.4702H10.6011V17.0152V16.7194L10.389 16.9255L4.23138 22.9082L2.76458 21.4831Z\" fill=\"#6A7881\" stroke=\"white\" stroke-width=\"0.25\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gct2l9\",\"data-framer-name\":\"Enquire + Menu\",name:\"Enquire + Menu\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-otbrhp\",\"data-framer-name\":\"Menu\",name:\"Menu\",onTap:onTap1wvko5h({overlay:overlay1}),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,width:\"20px\",y:30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-19vjjie-container\",children:/*#__PURE__*/_jsx(NavigationMenuIcon,{height:\"100%\",id:\"DjgyfJXN3\",layoutId:\"DjgyfJXN3\",style:{height:\"100%\",width:\"100%\"},variant:\"GD7J1jViQ\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1qdm6yr\",\"data-framer-name\":\"menu\",name:\"menu\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16p78ut\",\"data-framer-name\":\"Explore & Contact\",name:\"Explore & Contact\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8l7zf1\",\"data-framer-name\":\"Explore\",name:\"Explore\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1lpv17a\",\"data-styles-preset\":\"p2afQTgRh\",style:{\"--framer-text-color\":\"var(--token-7a3cca55-9e5e-4253-a247-523dddb3afa5, rgb(124, 139, 148))\"},children:\"Explore\"})}),className:\"framer-9rrea7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15m076m\",\"data-framer-name\":\"Links\",name:\"Links\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"FJqmbaMWN\"},implicitPathVariables:undefined},{href:{webPageId:\"FJqmbaMWN\"},implicitPathVariables:undefined},{href:{webPageId:\"FJqmbaMWN\"},implicitPathVariables:undefined},{href:{webPageId:\"FJqmbaMWN\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DplYuyixS:{width:\"calc(min(100vw, 764px) - 48px)\"},MynEiDI9r:{width:\"calc(100vw - 120px)\"},ySYRR3NQ9:{width:\"calc(min(100vw, 648px) - 128px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,width:\"calc(min(100vw, 764px) - 128px)\",y:224,children:/*#__PURE__*/_jsx(Container,{className:\"framer-nagpej-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DplYuyixS:{OEYcCkab0:resolvedLinks[3]},MynEiDI9r:{OEYcCkab0:resolvedLinks[2]},ySYRR3NQ9:{OEYcCkab0:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(NavigationMenuLink,{height:\"100%\",id:\"mALfsK8ir\",layoutId:\"mALfsK8ir\",OEYcCkab0:resolvedLinks[0],style:{width:\"100%\"},variant:\"ERyVkFzwA\",width:\"100%\",zLMOnOXLk:\"All Properties\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"KsoN0nuyJ\"},implicitPathVariables:undefined},{href:{webPageId:\"KsoN0nuyJ\"},implicitPathVariables:undefined},{href:{webPageId:\"KsoN0nuyJ\"},implicitPathVariables:undefined},{href:{webPageId:\"KsoN0nuyJ\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DplYuyixS:{width:\"calc(min(100vw, 764px) - 48px)\"},MynEiDI9r:{width:\"calc(100vw - 120px)\"},ySYRR3NQ9:{width:\"calc(min(100vw, 648px) - 128px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,width:\"calc(min(100vw, 764px) - 128px)\",y:259,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1n8ex4h-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DplYuyixS:{OEYcCkab0:resolvedLinks1[3]},MynEiDI9r:{OEYcCkab0:resolvedLinks1[2]},ySYRR3NQ9:{OEYcCkab0:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(NavigationMenuLink,{height:\"100%\",id:\"MiZgaaHrn\",layoutId:\"MiZgaaHrn\",OEYcCkab0:resolvedLinks1[0],style:{width:\"100%\"},variant:\"ERyVkFzwA\",width:\"100%\",zLMOnOXLk:\"Resources\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"P6NYvo0tV\"},implicitPathVariables:undefined},{href:{webPageId:\"P6NYvo0tV\"},implicitPathVariables:undefined},{href:{webPageId:\"P6NYvo0tV\"},implicitPathVariables:undefined},{href:{webPageId:\"P6NYvo0tV\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DplYuyixS:{width:\"calc(min(100vw, 764px) - 48px)\"},MynEiDI9r:{width:\"calc(100vw - 120px)\"},ySYRR3NQ9:{width:\"calc(min(100vw, 648px) - 128px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,width:\"calc(min(100vw, 764px) - 128px)\",y:294,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1t8pc1i-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DplYuyixS:{OEYcCkab0:resolvedLinks2[3]},MynEiDI9r:{OEYcCkab0:resolvedLinks2[2]},ySYRR3NQ9:{OEYcCkab0:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(NavigationMenuLink,{height:\"100%\",id:\"AemoXFiOH\",layoutId:\"AemoXFiOH\",OEYcCkab0:resolvedLinks2[0],style:{width:\"100%\"},variant:\"ERyVkFzwA\",width:\"100%\",zLMOnOXLk:\"About Us\"})})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mi1c3x\",\"data-framer-name\":\"Contact\",name:\"Contact\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1lpv17a\",\"data-styles-preset\":\"p2afQTgRh\",style:{\"--framer-text-color\":\"var(--token-7a3cca55-9e5e-4253-a247-523dddb3afa5, rgb(124, 139, 148))\"},children:\"Contact\"})}),className:\"framer-oqxej6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12n55mb\",\"data-framer-name\":\"Links\",name:\"Links\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DplYuyixS:{width:\"calc(min(100vw, 764px) - 48px)\"},MynEiDI9r:{width:\"calc(100vw - 120px)\"},ySYRR3NQ9:{width:\"calc(min(100vw, 648px) - 128px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,width:\"calc(min(100vw, 764px) - 128px)\",y:456,children:/*#__PURE__*/_jsx(Container,{className:\"framer-mxkdic-container\",children:/*#__PURE__*/_jsx(NavigationMenuLink,{height:\"100%\",id:\"bS5rezkR6\",layoutId:\"bS5rezkR6\",OEYcCkab0:\"gbabarogic@gmail.com\",style:{width:\"100%\"},variant:\"ERyVkFzwA\",width:\"100%\",zLMOnOXLk:\"Email Us\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DplYuyixS:{width:\"calc(min(100vw, 764px) - 48px)\"},MynEiDI9r:{width:\"calc(100vw - 120px)\"},ySYRR3NQ9:{width:\"calc(min(100vw, 648px) - 128px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,width:\"calc(min(100vw, 764px) - 128px)\",y:491,children:/*#__PURE__*/_jsx(Container,{className:\"framer-z4wsjb-container\",children:/*#__PURE__*/_jsx(NavigationMenuLink,{height:\"100%\",id:\"pDuzK6oLY\",layoutId:\"pDuzK6oLY\",OEYcCkab0:\"calendly.com\",style:{width:\"100%\"},variant:\"ERyVkFzwA\",width:\"100%\",zLMOnOXLk:\"Schedule a Call\"})})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1aw5kkn\",\"data-framer-name\":\"Contact\",name:\"Contact\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1lpv17a\",\"data-styles-preset\":\"p2afQTgRh\",style:{\"--framer-text-color\":\"var(--token-7a3cca55-9e5e-4253-a247-523dddb3afa5, rgb(124, 139, 148))\"},children:\"Follow us\"})}),className:\"framer-bdjbqf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ikr98o\",\"data-framer-name\":\"Links\",name:\"Links\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DplYuyixS:{width:\"calc(min(100vw, 764px) - 48px)\"},MynEiDI9r:{width:\"calc(100vw - 120px)\"},ySYRR3NQ9:{width:\"calc(min(100vw, 648px) - 128px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,width:\"calc(min(100vw, 764px) - 128px)\",y:689,children:/*#__PURE__*/_jsx(Container,{className:\"framer-8gv34z-container\",children:/*#__PURE__*/_jsx(NavigationMenuLink,{height:\"100%\",id:\"KZKPOrDk6\",layoutId:\"KZKPOrDk6\",OEYcCkab0:\"instagram.com\",style:{width:\"100%\"},variant:\"qa8SmlZgA\",width:\"100%\",zLMOnOXLk:\"Instagram\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DplYuyixS:{width:\"calc(min(100vw, 764px) - 48px)\"},MynEiDI9r:{width:\"calc(100vw - 120px)\"},ySYRR3NQ9:{width:\"calc(min(100vw, 648px) - 128px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,width:\"calc(min(100vw, 764px) - 128px)\",y:724,children:/*#__PURE__*/_jsx(Container,{className:\"framer-wt8eau-container\",children:/*#__PURE__*/_jsx(NavigationMenuLink,{height:\"100%\",id:\"m4Ftejbzn\",layoutId:\"m4Ftejbzn\",OEYcCkab0:\"facebook.com\",style:{width:\"100%\"},variant:\"qa8SmlZgA\",width:\"100%\",zLMOnOXLk:\"Facebook\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DplYuyixS:{width:\"calc(min(100vw, 764px) - 48px)\"},MynEiDI9r:{width:\"calc(100vw - 120px)\"},ySYRR3NQ9:{width:\"calc(min(100vw, 648px) - 128px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,width:\"calc(min(100vw, 764px) - 128px)\",y:759,children:/*#__PURE__*/_jsx(Container,{className:\"framer-g6f9lm-container\",children:/*#__PURE__*/_jsx(NavigationMenuLink,{height:\"100%\",id:\"zKjrdFm7g\",layoutId:\"zKjrdFm7g\",OEYcCkab0:\"linkedin.com\",style:{width:\"100%\"},variant:\"qa8SmlZgA\",width:\"100%\",zLMOnOXLk:\"Linkedin\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DplYuyixS:{width:\"calc(min(100vw, 764px) - 48px)\"},MynEiDI9r:{width:\"calc(100vw - 120px)\"},ySYRR3NQ9:{width:\"calc(min(100vw, 648px) - 128px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,width:\"calc(min(100vw, 764px) - 128px)\",y:794,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1szf87s-container\",children:/*#__PURE__*/_jsx(NavigationMenuLink,{height:\"100%\",id:\"ed9SIzxka\",layoutId:\"ed9SIzxka\",OEYcCkab0:\"twitter.com\",style:{width:\"100%\"},variant:\"qa8SmlZgA\",width:\"100%\",zLMOnOXLk:\"Twitter\"})})})})]})]})]})]})]}),document.querySelector(\"#overlay\"))})})]})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a9pxql\",\"data-framer-name\":\"headline + address\",name:\"headline + address\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DplYuyixS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-uda7bq\",\"data-styles-preset\":\"kUM1sD137\",style:{\"--framer-text-alignment\":\"center\"},children:\"Luxury Penthouse in Midtown Manhattan\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-uda7bq\",\"data-styles-preset\":\"kUM1sD137\",children:\"Luxury Penthouse in Midtown Manhattan\"})}),className:\"framer-1mso41g\",fonts:[\"Inter\"],id:id,ref:ref2,text:hDNLCaJEq,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DplYuyixS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-eopyyz\",\"data-styles-preset\":\"oxoiVZGo6\",style:{\"--framer-text-alignment\":\"center\"},children:\"Sky View Penthouse | 5th Avenue at 55th Street, Midtown Manhattan\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-eopyyz\",\"data-styles-preset\":\"oxoiVZGo6\",children:\"Sky View Penthouse | 5th Avenue at 55th Street, Midtown Manhattan\"})}),className:\"framer-7tdc07\",fonts:[\"Inter\"],id:id1,ref:ref3,text:rvJCniPQf,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d5yvl4\",\"data-framer-name\":\"Accordions + buttons\",name:\"Accordions + buttons\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DplYuyixS:{width:\"calc(min(min(100vw, 1920px), 764px) - 40px)\",y:351.2},MynEiDI9r:{width:\"calc(min(min(100vw, 1920px), 764px) - 120px)\",y:375.2},ySYRR3NQ9:{width:\"520px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:286,width:\"calc(min(max(min(100vw, 1920px) / 2, 1px), 764px) - 128px)\",y:598,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hvhbdd-container\",children:/*#__PURE__*/_jsx(AccordionsPropertyPrototype,{Crgf4_vzj:hpVmB6JPt,eB9jhMwJs:VtX4OUKM5,FWLXRkaDm:YYQyvRzfZ,FZU9lSHmY:rLBCwj64r,height:\"100%\",id:\"B1iowK5NB\",layoutId:\"B1iowK5NB\",Q9cOOW5aV:PtpyqhUxx,style:{height:\"100%\",width:\"100%\"},U9MmOLnav:sqI5KZRK3,variant:\"el4DWs1sk\",vSqcao2NW:FBQbsu6fU,VZH1CJvSi:W_ev1BWfH,width:\"100%\",zhMyztYK4:oN_9EFC1r,ZYPVkpBb5:ybxeUhsT9})})})}),/*#__PURE__*/_jsxs(\"button\",{className:\"framer-heznah\",\"data-framer-name\":\"Button\",\"data-reset\":\"button\",name:\"Button\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DplYuyixS:{width:\"min(min(min(100vw, 1920px), 764px) - 40px, 320px)\",y:669.2},MynEiDI9r:{y:693.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,y:908,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ue0gp1-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DplYuyixS:{style:{width:\"100%\"},variant:\"aIdgl1yXr\"}},children:/*#__PURE__*/_jsx(ButtonsButton,{fBMd8Ta_s:true,height:\"100%\",id:\"LBctBVNws\",layoutId:\"LBctBVNws\",lErCmfjJK:\"var(--token-bcca5be5-cd2c-410f-8bed-b159f72274d4, rgb(255, 255, 255))\",P_QmK9yAk:\"calendly.com\",uwtmF5Lsl:\"var(--token-a18d85b4-f93f-4848-8f2c-b4c2f0e4c279, rgb(48, 116, 160))\",variant:\"mt4uHLDff\",wfIuq3dpf:\"Schedule a Tour\",width:\"100%\",xYH9k2p2h:\"var(--token-bcca5be5-cd2c-410f-8bed-b159f72274d4, rgb(255, 255, 255))\",YQDpA8XNs:\"var(--token-a18d85b4-f93f-4848-8f2c-b4c2f0e4c279, rgb(48, 116, 160))\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DplYuyixS:{width:\"min(min(min(100vw, 1920px), 764px) - 40px, 320px)\",y:731.2},MynEiDI9r:{y:693.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,y:908,children:/*#__PURE__*/_jsx(Container,{className:\"framer-p4y0sc-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DplYuyixS:{style:{width:\"100%\"},variant:\"aIdgl1yXr\"}},children:/*#__PURE__*/_jsx(ButtonsButton,{fBMd8Ta_s:false,height:\"100%\",id:\"cmonW7QWa\",layoutId:\"cmonW7QWa\",lErCmfjJK:\"var(--token-bcca5be5-cd2c-410f-8bed-b159f72274d4, rgb(255, 255, 255))\",P_QmK9yAk:\"https://www.adobe.com/acrobat/pdf-reader.html\",uwtmF5Lsl:\"var(--token-a18d85b4-f93f-4848-8f2c-b4c2f0e4c279, rgb(48, 116, 160))\",variant:\"Or3yr7Xnd\",wfIuq3dpf:\"Download Brochure\",width:\"100%\",xYH9k2p2h:\"var(--token-bcca5be5-cd2c-410f-8bed-b159f72274d4, rgb(255, 255, 255))\",YQDpA8XNs:\"var(--token-873208c5-86a4-43be-8204-f160149d7769, rgb(15, 36, 50))\"})})})})})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6z8cra\",\"data-framer-name\":\"Empty frame\",name:\"Empty frame\",children:isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ftrpl0 hidden-1kxmbwv hidden-bfqazt\",\"data-framer-name\":\"Video\",name:\"Video\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-192wigs-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DplYuyixS:{srcFile:\"https://framerusercontent.com/assets/JuE1WIzFzIe5s0ZAeWLdAU9Olw.mp4\"},MynEiDI9r:{srcFile:\"https://framerusercontent.com/assets/JuE1WIzFzIe5s0ZAeWLdAU9Olw.mp4\"}},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"S06ynZ1Ie\",isMixedBorderRadius:false,layoutId:\"S06ynZ1Ie\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/hhEbZjhT0MNsLhz5aI8QAuLs6eg.mp4\",srcType:\"Upload\",srcUrl:\"https://videocdn.cdnpk.net/videos/85279854-3eab-597b-8ee3-b291e0c58bf3/horizontal/previews/clear/large.mp4?token=exp=1720428993~hmac=cfa5f5988b98bb256e6039599086e72b0b2ceb01c2a21cc5371394ecfda9cd3b\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5s51dc hidden-1au6xh8 hidden-23u7rw\",\"data-framer-name\":\"Help Icon + Agent\",name:\"Help Icon + Agent\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1t062n1\",\"data-framer-name\":\"Button Primary\",name:\"Button Primary\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ytvpqn\",\"data-framer-name\":\"help-circle\",name:\"help-circle\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-dyro0b\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:22,name:\"Icon\",svg:'<svg width=\"22\" height=\"22\" viewBox=\"-1 -1 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M7.09 7C7.3251 6.33167 7.78915 5.76811 8.39995 5.40913C9.01076 5.05016 9.7289 4.91894 10.4272 5.03871C11.1255 5.15849 11.7588 5.52152 12.2151 6.06353C12.6713 6.60553 12.9211 7.29152 12.92 8C12.92 10 9.92 11 9.92 11M10 15H10.01M20 10C20 15.5228 15.5228 20 10 20C4.47715 20 0 15.5228 0 10C0 4.47715 4.47715 0 10 0C15.5228 0 20 4.47715 20 10Z\" stroke=\"#314653\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sdorp7\",\"data-framer-name\":\"Agent\",name:\"Agent\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:750,pixelWidth:501,sizes:\"56px\",src:\"https://framerusercontent.com/images/IW7MrWoxDXjovQ2cdDJj98X0wgc.png\",srcSet:\"https://framerusercontent.com/images/IW7MrWoxDXjovQ2cdDJj98X0wgc.png 501w\"},className:\"framer-c0ocay\",\"data-framer-name\":\"Image\",name:\"Image\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-njrkf9\",\"data-framer-name\":\"Frame 77064098\",name:\"Frame 77064098\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-emkspa\",\"data-framer-name\":\"text\",name:\"text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans\", \"Noto Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--token-7a3cca55-9e5e-4253-a247-523dddb3afa5, rgb(101, 127, 143))\"},children:\"Send a Message t\"})}),className:\"framer-1dmwddg\",fonts:[\"GF;Noto Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Noto Sans\", \"Noto Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f648ec83-497c-4848-b900-845c2fae218f, rgb(49, 70, 83))\"},children:\"Get The Consultation With Our Expert\"})}),className:\"framer-9r4jj4\",fonts:[\"GF;Noto Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})})]})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-u0wj05\",\"data-framer-name\":\"Property Images\",\"data-hide-scrollbars\":true,id:id2,name:\"Property Images\",ref:ref4,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bqbzs7\",\"data-framer-name\":\"Container Sticky\",\"data-hide-scrollbars\":true,name:\"Container Sticky\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DplYuyixS:{__framer__styleTransformEffectEnabled:undefined,style:{}},MynEiDI9r:{__framer__styleTransformEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:300,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref4,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-4391,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-pwosrs\",\"data-framer-name\":\"Images\",\"data-hide-scrollbars\":true,name:\"Images\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DplYuyixS:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(1184.2),pixelHeight:2362,pixelWidth:3715,sizes:\"calc(min(100vw, 1920px) - 40px)\",...toResponsiveImage(I1UZMZENK)}},MynEiDI9r:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(1253.2),pixelHeight:2362,pixelWidth:3715,sizes:\"calc(min(100vw, 1920px) - 120px)\",...toResponsiveImage(I1UZMZENK)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(1395),pixelHeight:2362,pixelWidth:3715,sizes:\"827px\",...toResponsiveImage(I1UZMZENK)},className:\"framer-cb5ey6\",\"data-framer-name\":\"Image 1\",name:\"Image 1\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DplYuyixS:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(1400.2),pixelHeight:3264,pixelWidth:4928,sizes:\"calc(min(100vw, 1920px) - 40px)\",...toResponsiveImage(f5cTBVoCc)}},MynEiDI9r:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(1705.2),pixelHeight:3264,pixelWidth:4928,sizes:\"calc(min(100vw, 1920px) - 120px)\",...toResponsiveImage(f5cTBVoCc)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(1220),pixelHeight:3264,pixelWidth:4928,sizes:\"827px\",...toResponsiveImage(f5cTBVoCc)},className:\"framer-133h7ei\",\"data-framer-name\":\"Image 2\",name:\"Image 2\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DplYuyixS:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(1616.2),pixelHeight:3248,pixelWidth:3382,sizes:\"calc(min(100vw, 1920px) - 40px)\",...toResponsiveImage(J7mGwKp6t)}},MynEiDI9r:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(2157.2),pixelHeight:3248,pixelWidth:3382,sizes:\"calc(min(100vw, 1920px) - 120px)\",...toResponsiveImage(J7mGwKp6t)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(1395),pixelHeight:3248,pixelWidth:3382,sizes:\"827px\",...toResponsiveImage(J7mGwKp6t)},className:\"framer-y295nq\",\"data-framer-name\":\"Image 3\",name:\"Image 3\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DplYuyixS:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(1832.2),pixelHeight:6400,pixelWidth:4830,sizes:\"calc(min(100vw, 1920px) - 40px)\",...toResponsiveImage(XChUBsGbD)}},MynEiDI9r:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(2609.2),pixelHeight:6400,pixelWidth:4830,sizes:\"calc(min(100vw, 1920px) - 120px)\",...toResponsiveImage(XChUBsGbD)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(1220),pixelHeight:6400,pixelWidth:4830,sizes:\"827px\",...toResponsiveImage(XChUBsGbD)},className:\"framer-1iknisn\",\"data-framer-name\":\"Image 4\",name:\"Image 4\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DplYuyixS:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(2048.2),pixelHeight:1944,pixelWidth:3456,sizes:\"calc(min(100vw, 1920px) - 40px)\",...toResponsiveImage(e_a1QCoGV)}},MynEiDI9r:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(3061.2),pixelHeight:1944,pixelWidth:3456,sizes:\"calc(min(100vw, 1920px) - 120px)\",...toResponsiveImage(e_a1QCoGV)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(1395),pixelHeight:1944,pixelWidth:3456,sizes:\"827px\",...toResponsiveImage(e_a1QCoGV)},className:\"framer-kpe3lp\",\"data-framer-name\":\"Image 5\",name:\"Image 5\"})})]})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-qh5xz8\",\"data-framer-name\":\"About Property\",name:\"About Property\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13sesle\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uuhbld\",\"data-framer-name\":\"Big Image\",name:\"Big Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DplYuyixS:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(2597.7999999999997),pixelHeight:5472,pixelWidth:3648,sizes:\"min(max(min(100vw, 1840px) - 48px, 1px), 920px)\",...toResponsiveImage(ExZAhQosf)}},MynEiDI9r:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(3972.7999999999997),pixelHeight:5472,pixelWidth:3648,sizes:\"max(min(100vw, 1840px) - 120px, 1px)\",...toResponsiveImage(ExZAhQosf)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(5360),pixelHeight:5472,pixelWidth:3648,sizes:\"min(max(max((min(100vw, 1840px) - 48px) / 2, 1px) - 56px, 1px), 920px)\",...toResponsiveImage(ExZAhQosf)},className:\"framer-1ohqmql\",\"data-framer-name\":\"Image\",name:\"Image\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dh0qxm\",\"data-framer-name\":\"Text + CTA\",name:\"Text + CTA\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a03bkz\",\"data-framer-name\":\"Headline\",name:\"Headline\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MynEiDI9r:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1usz7uu\",\"data-styles-preset\":\"AotdguMlL\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Learn About Us. Building Your Dreams,\",/*#__PURE__*/_jsx(\"br\",{}),\"Brick by Brick.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1usz7uu\",\"data-styles-preset\":\"AotdguMlL\",style:{\"--framer-text-alignment\":\"left\"},children:\"About the Property\"})}),className:\"framer-1obonul\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],name:\"Heading\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:q6ubB9PY8,className:\"framer-1j72uvu\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-cgrs8x\",img:\"framer-styles-preset-kiko0n\",p:\"framer-styles-preset-eopyyz\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DplYuyixS:{y:2517.7999999999997},MynEiDI9r:{y:3860.7999999999997}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:5633.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-15wx48u-container\",children:/*#__PURE__*/_jsx(ButtonsTextLink,{AwnAclyIJ:\"calendly.com\",GvDV_jhZK:\"var(--token-a18d85b4-f93f-4848-8f2c-b4c2f0e4c279, rgb(48, 116, 160))\",height:\"100%\",id:\"CpxkhGYnF\",layoutId:\"CpxkhGYnF\",NemalAUEH:\"var(--token-a18d85b4-f93f-4848-8f2c-b4c2f0e4c279, rgb(48, 116, 160))\",QDIE1tbqq:\"Schedule a Tour\",width:\"100%\"})})})})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-bppkvv\",\"data-framer-name\":\"Advantages\",name:\"Advantages\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rske5g\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uzvcia\",\"data-framer-name\":\"Text + CTA\",name:\"Text + CTA\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oyrb9o\",\"data-framer-name\":\"Headline\",name:\"Headline\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MynEiDI9r:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1usz7uu\",\"data-styles-preset\":\"AotdguMlL\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Learn About Us. Building Your Dreams,\",/*#__PURE__*/_jsx(\"br\",{}),\"Brick by Brick.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1usz7uu\",\"data-styles-preset\":\"AotdguMlL\",style:{\"--framer-text-alignment\":\"left\"},children:\"Property Advantages\"})}),className:\"framer-vzhfzy\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],name:\"Heading\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:flf8wQBu1,className:\"framer-1y9fjd6\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-cgrs8x\",img:\"framer-styles-preset-kiko0n\",p:\"framer-styles-preset-eopyyz\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DplYuyixS:{y:3067.3999999999996},MynEiDI9r:{y:4772.400000000001}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:6893.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-pm799g-container\",children:/*#__PURE__*/_jsx(ButtonsTextLink,{AwnAclyIJ:\"https://www.adobe.com/acrobat/pdf-reader.html\",GvDV_jhZK:\"var(--token-a18d85b4-f93f-4848-8f2c-b4c2f0e4c279, rgb(48, 116, 160))\",height:\"100%\",id:\"ibPfBiGj0\",layoutId:\"ibPfBiGj0\",NemalAUEH:\"var(--token-a18d85b4-f93f-4848-8f2c-b4c2f0e4c279, rgb(48, 116, 160))\",QDIE1tbqq:\"Download Brochure\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fasrcu\",\"data-framer-name\":\"Big Image\",name:\"Big Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DplYuyixS:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(3147.3999999999996),pixelHeight:4261,pixelWidth:4261,sizes:\"min(max(min(100vw, 1840px) - 48px, 1px), 920px)\",...toResponsiveImage(JHmnD5BEe)}},MynEiDI9r:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(4884.400000000001),pixelHeight:4261,pixelWidth:4261,sizes:\"max(min(100vw, 1840px) - 120px, 1px)\",...toResponsiveImage(JHmnD5BEe)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(6620),pixelHeight:4261,pixelWidth:4261,sizes:\"min(max(max((min(100vw, 1840px) - 48px) / 2, 1px) - 56px, 1px), 920px)\",...toResponsiveImage(JHmnD5BEe)},className:\"framer-slcpc1\",\"data-framer-name\":\"Image\",name:\"Image\"})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rizcz4\",\"data-framer-name\":\"Why Choose\",name:\"Why Choose\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ulpfez\",\"data-framer-name\":\"1\",name:\"1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DplYuyixS:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(3387.3999999999996),pixelHeight:5251,pixelWidth:7872,sizes:\"100vw\",src:\"https://framerusercontent.com/images/4vsnf0qPb1BLzmGwDPcPiKbBlCc.jpg\",srcSet:\"https://framerusercontent.com/images/4vsnf0qPb1BLzmGwDPcPiKbBlCc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/4vsnf0qPb1BLzmGwDPcPiKbBlCc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/4vsnf0qPb1BLzmGwDPcPiKbBlCc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/4vsnf0qPb1BLzmGwDPcPiKbBlCc.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/4vsnf0qPb1BLzmGwDPcPiKbBlCc.jpg 7872w\"}},MynEiDI9r:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(5364.400000000001),pixelHeight:5251,pixelWidth:7872,sizes:\"100vw\",src:\"https://framerusercontent.com/images/4vsnf0qPb1BLzmGwDPcPiKbBlCc.jpg\",srcSet:\"https://framerusercontent.com/images/4vsnf0qPb1BLzmGwDPcPiKbBlCc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/4vsnf0qPb1BLzmGwDPcPiKbBlCc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/4vsnf0qPb1BLzmGwDPcPiKbBlCc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/4vsnf0qPb1BLzmGwDPcPiKbBlCc.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/4vsnf0qPb1BLzmGwDPcPiKbBlCc.jpg 7872w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(7860),pixelHeight:5251,pixelWidth:7872,sizes:\"100vw\",src:\"https://framerusercontent.com/images/4vsnf0qPb1BLzmGwDPcPiKbBlCc.jpg\",srcSet:\"https://framerusercontent.com/images/4vsnf0qPb1BLzmGwDPcPiKbBlCc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/4vsnf0qPb1BLzmGwDPcPiKbBlCc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/4vsnf0qPb1BLzmGwDPcPiKbBlCc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/4vsnf0qPb1BLzmGwDPcPiKbBlCc.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/4vsnf0qPb1BLzmGwDPcPiKbBlCc.jpg 7872w\"},className:\"framer-1780uii\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.2,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref5,target:{opacity:.7,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1yr0epb\",\"data-framer-name\":\"Shadow\",name:\"Shadow\"}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-agc1v hidden-1au6xh8 hidden-23u7rw\",\"data-framer-name\":\"Text\",name:\"Text\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h9ubz6\",\"data-framer-name\":\"Headline\",name:\"Headline\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1usz7uu\",\"data-styles-preset\":\"AotdguMlL\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-bcca5be5-cd2c-410f-8bed-b159f72274d4, rgb(255, 255, 255))\"},children:\"Why Choose Archi Real Estate?\"})}),className:\"framer-6vrei\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],name:\"Heading\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-eopyyz\",\"data-styles-preset\":\"oxoiVZGo6\",style:{\"--framer-text-color\":\"var(--token-bcca5be5-cd2c-410f-8bed-b159f72274d4, rgb(255, 255, 255))\"},children:\"Experience the difference exceptional service makes. At Archi Real Estate, we're dedicated to exceeding your expectations throughout your real estate journey. Our commitment to excellence is reflected in our proven track record and dedication to our clients.\"})}),className:\"framer-iu5ef3\",\"data-framer-name\":\"We relate. Like you, we own apartment buildings. Getting into a better property is easier than you think! Cool, calm & collected, we\u2019ve been called \u201Cthe broker\u2019s broker\u201D. We\u2019re experts in multifamily sales, from 8 to 80 units in the LA metro area.\",fonts:[\"Inter\"],name:\"We relate. Like you, we own apartment buildings. Getting into a better property is easier than you think! Cool, calm & collected, we\u2019ve been called \u201Cthe broker\u2019s broker\u201D. We\u2019re experts in multifamily sales, from 8 to 80 units in the LA metro area.\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,y:8297.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-tvblwr-container\",children:/*#__PURE__*/_jsx(ButtonsButton,{fBMd8Ta_s:true,height:\"100%\",id:\"JOGUtk6Vd\",layoutId:\"JOGUtk6Vd\",lErCmfjJK:\"var(--token-bcca5be5-cd2c-410f-8bed-b159f72274d4, rgb(255, 255, 255))\",P_QmK9yAk:\"calendly.com\",uwtmF5Lsl:\"var(--token-a18d85b4-f93f-4848-8f2c-b4c2f0e4c279, rgb(48, 116, 160))\",variant:\"mt4uHLDff\",wfIuq3dpf:\"Schedule a Call\",width:\"100%\",xYH9k2p2h:\"var(--token-bcca5be5-cd2c-410f-8bed-b159f72274d4, rgb(255, 255, 255))\",YQDpA8XNs:\"var(--token-a18d85b4-f93f-4848-8f2c-b4c2f0e4c279, rgb(48, 116, 160))\"})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1a10gyb\",\"data-framer-name\":\"Content\",name:\"Content\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-3kifwd\",\"data-framer-name\":\"Sticky Wrap\",id:id3,name:\"Sticky Wrap\",ref:ref5,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tkjn26\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wx5j0q\",\"data-framer-name\":\"1\",name:\"1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DplYuyixS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TG9yYS1yZWd1bGFy\",\"--framer-font-family\":'\"Lora\", \"Lora Placeholder\", serif',\"--framer-font-size\":\"56px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-bcca5be5-cd2c-410f-8bed-b159f72274d4, rgb(255, 255, 255))\"},children:\"15+\"})})},MynEiDI9r:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TG9yYS1yZWd1bGFy\",\"--framer-font-family\":'\"Lora\", \"Lora Placeholder\", serif',\"--framer-font-size\":\"72px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-bcca5be5-cd2c-410f-8bed-b159f72274d4, rgb(255, 255, 255))\"},children:\"15+\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TG9yYS1yZWd1bGFy\",\"--framer-font-family\":'\"Lora\", \"Lora Placeholder\", serif',\"--framer-font-size\":\"96px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-bcca5be5-cd2c-410f-8bed-b159f72274d4, rgb(255, 255, 255))\"},children:\"15+\"})}),className:\"framer-dykne\",fonts:[\"GF;Lora-regular\"],id:id4,ref:ref6,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-eopyyz\",\"data-styles-preset\":\"oxoiVZGo6\",style:{\"--framer-text-color\":\"var(--token-bcca5be5-cd2c-410f-8bed-b159f72274d4, rgb(255, 255, 255))\"},children:\"Year experience. Our team boasts extensive experience in the real estate industry, ensuring you have access to a wealth of knowledge and expertise.\"})}),className:\"framer-jyrx6f\",fonts:[\"Inter\"],id:id5,ref:ref7,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2f6e1g\",\"data-framer-name\":\"2\",name:\"2\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DplYuyixS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TG9yYS1yZWd1bGFy\",\"--framer-font-family\":'\"Lora\", \"Lora Placeholder\", serif',\"--framer-font-size\":\"56px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-bcca5be5-cd2c-410f-8bed-b159f72274d4, rgb(255, 255, 255))\"},children:\"98%\"})})},MynEiDI9r:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TG9yYS1yZWd1bGFy\",\"--framer-font-family\":'\"Lora\", \"Lora Placeholder\", serif',\"--framer-font-size\":\"72px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-bcca5be5-cd2c-410f-8bed-b159f72274d4, rgb(255, 255, 255))\"},children:\"98%\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TG9yYS1yZWd1bGFy\",\"--framer-font-family\":'\"Lora\", \"Lora Placeholder\", serif',\"--framer-font-size\":\"96px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-bcca5be5-cd2c-410f-8bed-b159f72274d4, rgb(255, 255, 255))\"},children:\"98%\"})}),className:\"framer-qcvrp3\",fonts:[\"GF;Lora-regular\"],id:id6,ref:ref8,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-eopyyz\",\"data-styles-preset\":\"oxoiVZGo6\",style:{\"--framer-text-color\":\"var(--token-bcca5be5-cd2c-410f-8bed-b159f72274d4, rgb(255, 255, 255))\"},children:\"Client satisfaction rate. The vast majority of our clients are thrilled with the exceptional service they receive.\"})}),className:\"framer-1qcsbzb\",fonts:[\"Inter\"],id:id7,ref:ref9,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-380sd1\",\"data-framer-name\":\"3\",name:\"3\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DplYuyixS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TG9yYS1yZWd1bGFy\",\"--framer-font-family\":'\"Lora\", \"Lora Placeholder\", serif',\"--framer-font-size\":\"56px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-bcca5be5-cd2c-410f-8bed-b159f72274d4, rgb(255, 255, 255))\"},children:\"462+\"})})},MynEiDI9r:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TG9yYS1yZWd1bGFy\",\"--framer-font-family\":'\"Lora\", \"Lora Placeholder\", serif',\"--framer-font-size\":\"72px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-bcca5be5-cd2c-410f-8bed-b159f72274d4, rgb(255, 255, 255))\"},children:\"462+\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TG9yYS1yZWd1bGFy\",\"--framer-font-family\":'\"Lora\", \"Lora Placeholder\", serif',\"--framer-font-size\":\"96px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-bcca5be5-cd2c-410f-8bed-b159f72274d4, rgb(255, 255, 255))\"},children:\"462+\"})}),className:\"framer-12hx49n\",fonts:[\"GF;Lora-regular\"],id:id8,ref:ref10,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-eopyyz\",\"data-styles-preset\":\"oxoiVZGo6\",style:{\"--framer-text-color\":\"var(--token-bcca5be5-cd2c-410f-8bed-b159f72274d4, rgb(255, 255, 255))\"},children:\"Properties on sale. Explore a diverse range of properties to find your perfect fit.\"})}),className:\"framer-12dp487\",fonts:[\"Inter\"],id:id9,ref:ref11,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gbvqqg\",\"data-framer-name\":\"4\",name:\"4\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DplYuyixS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TG9yYS1yZWd1bGFy\",\"--framer-font-family\":'\"Lora\", \"Lora Placeholder\", serif',\"--framer-font-size\":\"56px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-bcca5be5-cd2c-410f-8bed-b159f72274d4, rgb(255, 255, 255))\"},children:\"4K\"})})},MynEiDI9r:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TG9yYS1yZWd1bGFy\",\"--framer-font-family\":'\"Lora\", \"Lora Placeholder\", serif',\"--framer-font-size\":\"72px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-bcca5be5-cd2c-410f-8bed-b159f72274d4, rgb(255, 255, 255))\"},children:\"4K\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TG9yYS1yZWd1bGFy\",\"--framer-font-family\":'\"Lora\", \"Lora Placeholder\", serif',\"--framer-font-size\":\"96px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-bcca5be5-cd2c-410f-8bed-b159f72274d4, rgb(255, 255, 255))\"},children:\"4K\"})}),className:\"framer-1l1gmq9\",fonts:[\"GF;Lora-regular\"],id:id10,ref:ref12,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-eopyyz\",\"data-styles-preset\":\"oxoiVZGo6\",style:{\"--framer-text-color\":\"var(--token-bcca5be5-cd2c-410f-8bed-b159f72274d4, rgb(255, 255, 255))\"},children:\"Properties sold. Our impressive track record demonstrates our ability to help clients achieve their real estate goals.\"})}),className:\"framer-1su68b1\",fonts:[\"Inter\"],id:id11,ref:ref13,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fvt7n6 hidden-1kxmbwv hidden-bfqazt\",\"data-framer-name\":\"Text\",name:\"Text\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1arsida\",\"data-framer-name\":\"Headline\",name:\"Headline\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1usz7uu\",\"data-styles-preset\":\"AotdguMlL\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-bcca5be5-cd2c-410f-8bed-b159f72274d4, rgb(255, 255, 255))\"},children:\"Why Choose Archi Real Estate?\"})}),className:\"framer-nq2qyf\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],name:\"Heading\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-eopyyz\",\"data-styles-preset\":\"oxoiVZGo6\",style:{\"--framer-text-color\":\"var(--token-bcca5be5-cd2c-410f-8bed-b159f72274d4, rgb(255, 255, 255))\"},children:\"Experience the difference exceptional service makes. At Archi Real Estate, we're dedicated to exceeding your expectations throughout your real estate journey. Our commitment to excellence is reflected in our proven track record and dedication to our clients.\"})}),className:\"framer-1av71cp\",\"data-framer-name\":\"We relate. Like you, we own apartment buildings. Getting into a better property is easier than you think! Cool, calm & collected, we\u2019ve been called \u201Cthe broker\u2019s broker\u201D. We\u2019re experts in multifamily sales, from 8 to 80 units in the LA metro area.\",fonts:[\"Inter\"],name:\"We relate. Like you, we own apartment buildings. Getting into a better property is easier than you think! Cool, calm & collected, we\u2019ve been called \u201Cthe broker\u2019s broker\u201D. We\u2019re experts in multifamily sales, from 8 to 80 units in the LA metro area.\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DplYuyixS:{y:4633},MynEiDI9r:{y:6642.000000000001}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1h2g7kc-container\",children:/*#__PURE__*/_jsx(ButtonsButton,{fBMd8Ta_s:true,height:\"100%\",id:\"IqGpKyZAA\",layoutId:\"IqGpKyZAA\",lErCmfjJK:\"var(--token-873208c5-86a4-43be-8204-f160149d7769, rgb(15, 36, 50))\",uwtmF5Lsl:\"var(--token-887a1b69-46f7-4ae6-9755-9458eb5ee67f, rgb(180, 211, 232))\",variant:\"mt4uHLDff\",wfIuq3dpf:\"Schedule a Call\",width:\"100%\",xYH9k2p2h:\"var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(6, 14, 19))\",YQDpA8XNs:\"var(--token-887a1b69-46f7-4ae6-9755-9458eb5ee67f, rgb(180, 211, 232))\"})})})})]})]})})})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1t7ymoo\",\"data-framer-name\":\"CTA\",name:\"CTA\",children:[/*#__PURE__*/_jsxs(\"div\",{background:{alt:\"\",fit:\"fill\"},className:\"framer-2uql71\",\"data-framer-name\":\"Background\",name:\"Background\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DplYuyixS:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(5684.5599999999995),pixelHeight:5e3,pixelWidth:3300,sizes:\"max(100vw, 1px)\",src:\"https://framerusercontent.com/images/8rGbmHKjTdAUwvlRxFhms0fcbw.jpg\",srcSet:\"https://framerusercontent.com/images/8rGbmHKjTdAUwvlRxFhms0fcbw.jpg?scale-down-to=1024 675w,https://framerusercontent.com/images/8rGbmHKjTdAUwvlRxFhms0fcbw.jpg?scale-down-to=2048 1351w,https://framerusercontent.com/images/8rGbmHKjTdAUwvlRxFhms0fcbw.jpg?scale-down-to=4096 2703w,https://framerusercontent.com/images/8rGbmHKjTdAUwvlRxFhms0fcbw.jpg 3300w\"}},MynEiDI9r:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(8621.160000000002),pixelHeight:5e3,pixelWidth:3300,sizes:\"max(100vw, 1px)\",src:\"https://framerusercontent.com/images/8rGbmHKjTdAUwvlRxFhms0fcbw.jpg\",srcSet:\"https://framerusercontent.com/images/8rGbmHKjTdAUwvlRxFhms0fcbw.jpg?scale-down-to=1024 675w,https://framerusercontent.com/images/8rGbmHKjTdAUwvlRxFhms0fcbw.jpg?scale-down-to=2048 1351w,https://framerusercontent.com/images/8rGbmHKjTdAUwvlRxFhms0fcbw.jpg?scale-down-to=4096 2703w,https://framerusercontent.com/images/8rGbmHKjTdAUwvlRxFhms0fcbw.jpg 3300w\"}},ySYRR3NQ9:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(11056.76),pixelHeight:5e3,pixelWidth:3300,sizes:\"max(100vw, 1px)\",src:\"https://framerusercontent.com/images/8rGbmHKjTdAUwvlRxFhms0fcbw.jpg\",srcSet:\"https://framerusercontent.com/images/8rGbmHKjTdAUwvlRxFhms0fcbw.jpg?scale-down-to=1024 675w,https://framerusercontent.com/images/8rGbmHKjTdAUwvlRxFhms0fcbw.jpg?scale-down-to=2048 1351w,https://framerusercontent.com/images/8rGbmHKjTdAUwvlRxFhms0fcbw.jpg?scale-down-to=4096 2703w,https://framerusercontent.com/images/8rGbmHKjTdAUwvlRxFhms0fcbw.jpg 3300w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(11055),pixelHeight:5e3,pixelWidth:3300,sizes:\"max(100vw, 1px)\",src:\"https://framerusercontent.com/images/8rGbmHKjTdAUwvlRxFhms0fcbw.jpg\",srcSet:\"https://framerusercontent.com/images/8rGbmHKjTdAUwvlRxFhms0fcbw.jpg?scale-down-to=1024 675w,https://framerusercontent.com/images/8rGbmHKjTdAUwvlRxFhms0fcbw.jpg?scale-down-to=2048 1351w,https://framerusercontent.com/images/8rGbmHKjTdAUwvlRxFhms0fcbw.jpg?scale-down-to=4096 2703w,https://framerusercontent.com/images/8rGbmHKjTdAUwvlRxFhms0fcbw.jpg 3300w\"},className:\"framer-1943p83\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1id698\",\"data-framer-name\":\"Top Shadow\",name:\"Top Shadow\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1b8zk6y\",\"data-framer-name\":\"Bottom Shadow\",name:\"Bottom Shadow\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1owbo4b\",\"data-framer-name\":\"container\",name:\"container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wjx33p\",\"data-framer-name\":\"headline + CTA\",name:\"headline + CTA\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qdw27p\",\"data-styles-preset\":\"OCC6Dj92g\",style:{\"--framer-text-alignment\":\"center\"},children:\"Ready to Make Your Move?\"})}),className:\"framer-14qhlnf\",\"data-framer-name\":\"Discover Real Results\",fonts:[\"Inter\"],name:\"Discover Real Results\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DplYuyixS:{y:6123.4},MynEiDI9r:{y:9100.400000000001},ySYRR3NQ9:{y:11536}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,y:11712,children:/*#__PURE__*/_jsx(Container,{className:\"framer-66eax8-container\",children:/*#__PURE__*/_jsx(ButtonsButton,{fBMd8Ta_s:true,height:\"100%\",id:\"xdoVe7Lki\",layoutId:\"xdoVe7Lki\",lErCmfjJK:\"var(--token-bcca5be5-cd2c-410f-8bed-b159f72274d4, rgb(255, 255, 255))\",P_QmK9yAk:\"calendly.com\",uwtmF5Lsl:\"var(--token-a18d85b4-f93f-4848-8f2c-b4c2f0e4c279, rgb(48, 116, 160))\",variant:\"mt4uHLDff\",wfIuq3dpf:\"Schedule a Call\",width:\"100%\",xYH9k2p2h:\"var(--token-bcca5be5-cd2c-410f-8bed-b159f72274d4, rgb(255, 255, 255))\",YQDpA8XNs:\"var(--token-a18d85b4-f93f-4848-8f2c-b4c2f0e4c279, rgb(48, 116, 160))\"})})})})]})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DplYuyixS:{y:6255.4},MynEiDI9r:{y:9272.400000000001},ySYRR3NQ9:{y:11708}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:917,width:\"100vw\",y:12060,children:/*#__PURE__*/_jsx(Container,{className:\"framer-15esjro-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DplYuyixS:{variant:\"mKpNML4LF\"},MynEiDI9r:{variant:\"PfNuMCu26\"},ySYRR3NQ9:{variant:\"UQ815ZfcX\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"pne9IKBvI\",layoutId:\"pne9IKBvI\",style:{width:\"100%\"},variant:\"fBlZIlHod\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-eRDHC { background: var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(6, 14, 19)) /* {\"name\":\"Neutral 500 [Base]\"} */; }`,\".framer-eRDHC.framer-1tbc4m0, .framer-eRDHC .framer-1tbc4m0 { display: block; }\",\".framer-eRDHC.framer-1kxmbwv { align-content: center; align-items: center; background-color: var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, #060e13); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1536px; }\",\".framer-eRDHC .framer-1aoebxd { align-content: center; align-items: center; background-color: var(--token-bcca5be5-cd2c-410f-8bed-b159f72274d4, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100vh; justify-content: center; max-width: 1920px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-eRDHC .framer-dbj8v9 { flex: none; height: 100vh; left: 530px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-eRDHC .framer-qcvyr-container, .framer-eRDHC .framer-192wigs-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-eRDHC .framer-92xv0o { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: flex-start; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-eRDHC .framer-1p95lup { align-content: flex-start; align-items: flex-start; background-color: var(--token-4ce62f94-d268-4d84-bb7b-bbd10b9601f6, #fcfcfc); border-bottom-right-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 100%; justify-content: space-between; max-width: 764px; overflow: visible; padding: 20px 64px 40px 64px; position: relative; width: 1px; }\",\".framer-eRDHC .framer-1ltkyiw-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\".framer-eRDHC .framer-2rg4jz { background-color: rgba(6, 14, 19, 0.7); inset: 0px; position: fixed; user-select: none; z-index: 1; }\",\".framer-eRDHC .framer-w3jyl3 { align-content: flex-start; align-items: flex-start; background-color: #ffffff; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 85%; justify-content: center; left: 0px; overflow: hidden; overflow-y: auto; padding: 0px; position: fixed; right: 0px; z-index: 1; }\",\".framer-eRDHC .framer-16q9qa8-container { flex: none; height: 48px; left: calc(50.00000000000002% - 48px / 2); position: absolute; top: -70px; width: 48px; z-index: 2; }\",\".framer-eRDHC .framer-9hv3on { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 64px; position: relative; width: 1px; }\",\".framer-eRDHC .framer-ed7ba8 { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: auto; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-eRDHC .framer-v49nnx { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 426px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-eRDHC .framer-1dpvj5p { aspect-ratio: 1.7142857142857142 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: var(--framer-aspect-ratio-supported, 280px); overflow: hidden; position: relative; width: 480px; will-change: var(--framer-will-change-override, transform); }\",\".framer-eRDHC .framer-alzdis { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-eRDHC .framer-zrml6f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-eRDHC .framer-13d9v14, .framer-eRDHC .framer-7xfe9w { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-eRDHC .framer-bdntyj, .framer-eRDHC .framer-bhugy3, .framer-eRDHC .framer-40aipf, .framer-eRDHC .framer-1xnnw4x, .framer-eRDHC .framer-13v5vwy, .framer-eRDHC .framer-84m1vi { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",'.framer-eRDHC .framer-183ef4f, .framer-eRDHC .framer-1oxw8fm { --framer-input-border-bottom-width: 1px; --framer-input-border-color: var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, #060e13); --framer-input-border-left-width: 0px; --framer-input-border-right-width: 0px; --framer-input-border-style: solid; --framer-input-border-top-width: 0px; --framer-input-focused-border-color: var(--token-873208c5-86a4-43be-8204-f160149d7769, #0f2432); --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 0px 0px 1px 0px; --framer-input-focused-transition: all 0.3s cubic-bezier(0.44,0,0.56,1) 0s; --framer-input-font-color: var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, #060e13); --framer-input-font-family: \"Satoshi\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 16px; --framer-input-font-weight: 400; --framer-input-icon-color: #999999; --framer-input-padding: 12px 12px 12px 5px; --framer-input-placeholder-color: var(--token-7a3cca55-9e5e-4253-a247-523dddb3afa5, #7c8b94); flex: none; height: 40px; position: relative; width: 240px; }',\".framer-eRDHC .framer-1wl3i90, .framer-eRDHC .framer-1501tqt, .framer-eRDHC .framer-ecbmxt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",'.framer-eRDHC .framer-crsmjw, .framer-eRDHC .framer-bk3acc { --framer-input-border-bottom-width: 1px; --framer-input-border-color: var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, #060e13); --framer-input-border-left-width: 0px; --framer-input-border-right-width: 0px; --framer-input-border-style: solid; --framer-input-border-top-width: 0px; --framer-input-focused-border-color: var(--token-873208c5-86a4-43be-8204-f160149d7769, #0f2432); --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 0px 0px 1px 0px; --framer-input-font-color: var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, #060e13); --framer-input-font-family: \"Satoshi\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 16px; --framer-input-font-weight: 400; --framer-input-icon-color: #999999; --framer-input-padding: 12px 12px 12px 5px; --framer-input-placeholder-color: var(--token-7a3cca55-9e5e-4253-a247-523dddb3afa5, #7c8b94); flex: none; height: 40px; position: relative; width: 100%; }','.framer-eRDHC .framer-wccntu { --framer-input-border-bottom-width: 1px; --framer-input-border-color: var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, #060e13); --framer-input-border-left-width: 0px; --framer-input-border-right-width: 0px; --framer-input-border-style: solid; --framer-input-border-top-width: 0px; --framer-input-focused-border-color: var(--token-873208c5-86a4-43be-8204-f160149d7769, #0f2432); --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 0px 0px 1px 0px; --framer-input-font-color: var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, #060e13); --framer-input-font-family: \"Satoshi\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 16px; --framer-input-font-weight: 400; --framer-input-icon-color: var(--token-7a3cca55-9e5e-4253-a247-523dddb3afa5, #7c8b94); --framer-input-invalid-text-color: var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, #060e13); --framer-input-padding: 12px 12px 12px 5px; flex: none; height: 40px; position: relative; width: 100%; }',\".framer-eRDHC .framer-1bj5grk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: 145px; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",'.framer-eRDHC .framer-cp159l { --framer-input-border-bottom-width: 1px; --framer-input-border-color: var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, #060e13); --framer-input-border-left-width: 0px; --framer-input-border-right-width: 0px; --framer-input-border-style: solid; --framer-input-border-top-width: 0px; --framer-input-focused-border-color: var(--token-873208c5-86a4-43be-8204-f160149d7769, #0f2432); --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 0px 0px 1px 0px; --framer-input-font-color: var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, #060e13); --framer-input-font-family: \"Satoshi\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 16px; --framer-input-font-weight: 400; --framer-input-icon-color: #999999; --framer-input-padding: 12px 12px 12px 5px; --framer-input-placeholder-color: var(--token-7a3cca55-9e5e-4253-a247-523dddb3afa5, #7c8b94); --framer-textarea-resize: vertical; flex: 1 0 0px; height: 1px; min-height: 100px; position: relative; width: 100%; }',\".framer-eRDHC .framer-isjbak-container, .framer-eRDHC .framer-nagpej-container, .framer-eRDHC .framer-1n8ex4h-container, .framer-eRDHC .framer-1t8pc1i-container, .framer-eRDHC .framer-mxkdic-container, .framer-eRDHC .framer-z4wsjb-container, .framer-eRDHC .framer-8gv34z-container, .framer-eRDHC .framer-wt8eau-container, .framer-eRDHC .framer-g6f9lm-container, .framer-eRDHC .framer-1szf87s-container, .framer-eRDHC .framer-15esjro-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-eRDHC .framer-fqrlwt { inset: 0px; position: fixed; user-select: none; z-index: 1; }\",\".framer-eRDHC .framer-a2yths { align-content: flex-start; align-items: flex-start; background-color: #fcfcfc; border-bottom-right-radius: 16px; border-top-right-radius: 16px; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; justify-content: flex-start; left: 0px; max-width: 764px; overflow: hidden; overflow-y: auto; padding: 20px 64px 64px 64px; position: fixed; top: 0px; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-eRDHC .framer-1q65cq2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-eRDHC .framer-2pra8m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-eRDHC .framer-4jnutq { flex: none; height: 29px; position: relative; width: 107px; }\",\".framer-eRDHC .framer-1gct2l9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-eRDHC .framer-otbrhp { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 10px; position: relative; width: min-content; }\",\".framer-eRDHC .framer-19vjjie-container { flex: none; height: 20px; position: relative; width: 20px; z-index: 2; }\",\".framer-eRDHC .framer-1qdm6yr { align-content: flex-end; align-items: flex-end; background-color: #fcfcfc; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-eRDHC .framer-16p78ut { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-eRDHC .framer-8l7zf1, .framer-eRDHC .framer-mi1c3x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-eRDHC .framer-9rrea7, .framer-eRDHC .framer-oqxej6, .framer-eRDHC .framer-bdjbqf { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-eRDHC .framer-15m076m, .framer-eRDHC .framer-12n55mb, .framer-eRDHC .framer-ikr98o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-eRDHC .framer-1aw5kkn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-eRDHC .framer-a9pxql { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-eRDHC .framer-1mso41g, .framer-eRDHC .framer-7tdc07, .framer-eRDHC .framer-1dmwddg, .framer-eRDHC .framer-9r4jj4, .framer-eRDHC .framer-jyrx6f, .framer-eRDHC .framer-1qcsbzb, .framer-eRDHC .framer-12dp487, .framer-eRDHC .framer-1su68b1 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-eRDHC .framer-1d5yvl4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-eRDHC .framer-1hvhbdd-container { flex: none; height: 286px; position: relative; width: 100%; }\",\".framer-eRDHC .framer-heznah { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-eRDHC .framer-ue0gp1-container, .framer-eRDHC .framer-p4y0sc-container, .framer-eRDHC .framer-15wx48u-container, .framer-eRDHC .framer-pm799g-container, .framer-eRDHC .framer-1h2g7kc-container, .framer-eRDHC .framer-66eax8-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-eRDHC .framer-6z8cra { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-eRDHC .framer-ftrpl0 { flex: 1 0 0px; height: 408px; overflow: hidden; position: relative; width: 1px; }\",\".framer-eRDHC .framer-5s51dc { align-content: flex-end; align-items: flex-end; bottom: 14px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: absolute; right: 10px; width: min-content; z-index: 1; }\",\".framer-eRDHC .framer-1t062n1 { align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: var(--token-560cff77-4d96-466a-8775-81ed82726ef7, #d5e7ec); border-bottom-left-radius: 64px; border-bottom-right-radius: 64px; border-top-left-radius: 64px; border-top-right-radius: 64px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 40px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 40px; }\",\".framer-eRDHC .framer-1ytvpqn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-eRDHC .framer-dyro0b { flex: none; height: 22px; position: relative; width: 22px; }\",\".framer-eRDHC .framer-sdorp7 { align-content: center; align-items: center; background-color: var(--token-bcca5be5-cd2c-410f-8bed-b159f72274d4, #ffffff); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 14px 18px 14px 18px; position: relative; width: 249px; }\",\".framer-eRDHC .framer-c0ocay { align-content: center; align-items: center; aspect-ratio: 1 / 1; border-bottom-left-radius: 64px; border-bottom-right-radius: 64px; border-top-left-radius: 64px; border-top-right-radius: 64px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: var(--framer-aspect-ratio-supported, 56px); justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 56px; }\",\".framer-eRDHC .framer-njrkf9 { aspect-ratio: 1 / 1; background-color: var(--token-c5274af5-da5c-4aae-bfca-95974cea7256, #a7ccd7); border-bottom-left-radius: 99px; border-bottom-right-radius: 99px; border-top-left-radius: 99px; border-top-right-radius: 99px; flex: none; height: var(--framer-aspect-ratio-supported, 12px); overflow: hidden; position: absolute; right: -1px; top: 4px; width: 12px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-eRDHC .framer-emkspa { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 7px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-eRDHC .framer-u0wj05 { align-content: center; align-items: center; background-color: var(--token-bcca5be5-cd2c-410f-8bed-b159f72274d4, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 4300px; justify-content: flex-start; overflow: visible; padding: 120px 0px 0px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-eRDHC .framer-1bqbzs7 { align-content: center; align-items: center; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: 100vh; justify-content: flex-start; max-width: 1920px; overflow: hidden; padding: 0px 0px 0px 64px; position: sticky; top: 0px; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-eRDHC .framer-pwosrs { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: 100%; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-eRDHC .framer-cb5ey6, .framer-eRDHC .framer-y295nq, .framer-eRDHC .framer-kpe3lp { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: 100%; max-height: 450px; overflow: hidden; position: relative; width: 827px; will-change: var(--framer-will-change-override, transform); }\",\".framer-eRDHC .framer-133h7ei, .framer-eRDHC .framer-1iknisn { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: 100%; max-height: 800px; overflow: hidden; position: relative; width: 827px; will-change: var(--framer-will-change-override, transform); }\",\".framer-eRDHC .framer-qh5xz8, .framer-eRDHC .framer-bppkvv { align-content: center; align-items: center; background-color: var(--token-bcca5be5-cd2c-410f-8bed-b159f72274d4, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-eRDHC .framer-13sesle { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1840px; overflow: visible; padding: 60px 24px 120px 24px; position: relative; width: 100%; }\",\".framer-eRDHC .framer-1uuhbld { 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: flex-start; overflow: visible; padding: 0px 56px 0px 0px; position: relative; width: 1px; }\",\".framer-eRDHC .framer-1ohqmql, .framer-eRDHC .framer-slcpc1 { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: 1 0 0px; height: 1020px; max-width: 920px; overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-eRDHC .framer-1dh0qxm, .framer-eRDHC .framer-1uzvcia { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; max-width: 630px; overflow: hidden; padding: 40px 0px 0px 0px; position: sticky; top: 20px; width: 1px; will-change: transform; z-index: 1; }\",\".framer-eRDHC .framer-1a03bkz, .framer-eRDHC .framer-oyrb9o, .framer-eRDHC .framer-h9ubz6, .framer-eRDHC .framer-1arsida { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-eRDHC .framer-1obonul, .framer-eRDHC .framer-vzhfzy { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 636px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-eRDHC .framer-1j72uvu, .framer-eRDHC .framer-1y9fjd6 { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 608px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-eRDHC .framer-1rske5g { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1840px; overflow: visible; padding: 120px 24px 220px 24px; position: relative; width: 100%; }\",\".framer-eRDHC .framer-1fasrcu { 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: flex-end; overflow: visible; padding: 0px 0px 0px 56px; position: relative; width: 1px; }\",\".framer-eRDHC .framer-1rizcz4 { align-content: center; align-items: center; background-color: var(--token-bcca5be5-cd2c-410f-8bed-b159f72274d4, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-eRDHC .framer-ulpfez { flex: none; height: 100vh; overflow: visible; position: sticky; top: 0px; width: 100%; will-change: transform; z-index: 1; }\",\".framer-eRDHC .framer-1780uii { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-eRDHC .framer-1yr0epb { background-color: var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, #060e13); flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: calc(50.041631973355564% - 100% / 2); width: 100%; }\",\".framer-eRDHC .framer-agc1v { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; left: 64px; overflow: hidden; padding: 0px; position: absolute; top: 160px; width: 636px; z-index: 1; }\",\".framer-eRDHC .framer-6vrei { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 496px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-eRDHC .framer-iu5ef3, .framer-eRDHC .framer-1av71cp { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 468px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-eRDHC .framer-tvblwr-container { flex: none; height: auto; position: relative; width: auto; z-index: 10; }\",\".framer-eRDHC .framer-1a10gyb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-eRDHC .framer-3kifwd { flex: 1 0 0px; height: 2200px; overflow: visible; position: sticky; top: 0px; width: 1px; will-change: transform; z-index: 1; }\",\".framer-eRDHC .framer-tkjn26 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 96px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: absolute; right: 192px; top: 0px; width: min-content; }\",\".framer-eRDHC .framer-1wx5j0q, .framer-eRDHC .framer-2f6e1g, .framer-eRDHC .framer-380sd1, .framer-eRDHC .framer-gbvqqg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 460px; }\",\".framer-eRDHC .framer-dykne, .framer-eRDHC .framer-qcvrp3, .framer-eRDHC .framer-12hx49n, .framer-eRDHC .framer-1l1gmq9 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-eRDHC .framer-fvt7n6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 636px; z-index: 1; }\",\".framer-eRDHC .framer-nq2qyf { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 566px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-eRDHC .framer-1t7ymoo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-eRDHC .framer-2uql71 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 101%; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; top: calc(50.00000000000002% - 101% / 2); width: 100%; z-index: 0; }\",\".framer-eRDHC .framer-1943p83 { flex: 1 0 0px; height: 100%; overflow: hidden; position: relative; width: 1px; z-index: 1; }\",'.framer-eRDHC .framer-1id698 { background: linear-gradient(180deg, var(--token-befd532a-54bd-444a-bddd-fb365bd4bbfb, #f1f2f1) /* {\"name\":\"Light 200 [Base]\"} */ 15.000000000000002%, rgba(255, 255, 255, 0.25) 100%); bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 1; }',\".framer-eRDHC .framer-1b8zk6y { background: linear-gradient(180deg, rgba(242, 242, 242, 0.4) 65%, rgb(6, 13, 18) 100%); bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-eRDHC .framer-1owbo4b { align-content: center; align-items: center; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 96px; height: 100vh; justify-content: center; max-width: 1840px; overflow: visible; padding: 60px 24px 120px 24px; position: relative; width: 100%; z-index: 1; }\",\".framer-eRDHC .framer-1wjx33p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px 32px 0px 32px; position: relative; width: 100%; }\",\".framer-eRDHC .framer-14qhlnf { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 560px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-eRDHC.framer-1kxmbwv, .framer-eRDHC .framer-1aoebxd, .framer-eRDHC .framer-92xv0o, .framer-eRDHC .framer-w3jyl3, .framer-eRDHC .framer-alzdis, .framer-eRDHC .framer-zrml6f, .framer-eRDHC .framer-13d9v14, .framer-eRDHC .framer-7xfe9w, .framer-eRDHC .framer-1wl3i90, .framer-eRDHC .framer-1501tqt, .framer-eRDHC .framer-ecbmxt, .framer-eRDHC .framer-1bj5grk, .framer-eRDHC .framer-a2yths, .framer-eRDHC .framer-2pra8m, .framer-eRDHC .framer-1gct2l9, .framer-eRDHC .framer-otbrhp, .framer-eRDHC .framer-1qdm6yr, .framer-eRDHC .framer-16p78ut, .framer-eRDHC .framer-8l7zf1, .framer-eRDHC .framer-15m076m, .framer-eRDHC .framer-mi1c3x, .framer-eRDHC .framer-12n55mb, .framer-eRDHC .framer-1aw5kkn, .framer-eRDHC .framer-ikr98o, .framer-eRDHC .framer-a9pxql, .framer-eRDHC .framer-1d5yvl4, .framer-eRDHC .framer-heznah, .framer-eRDHC .framer-6z8cra, .framer-eRDHC .framer-5s51dc, .framer-eRDHC .framer-1t062n1, .framer-eRDHC .framer-1ytvpqn, .framer-eRDHC .framer-sdorp7, .framer-eRDHC .framer-c0ocay, .framer-eRDHC .framer-emkspa, .framer-eRDHC .framer-u0wj05, .framer-eRDHC .framer-1bqbzs7, .framer-eRDHC .framer-pwosrs, .framer-eRDHC .framer-qh5xz8, .framer-eRDHC .framer-13sesle, .framer-eRDHC .framer-1uuhbld, .framer-eRDHC .framer-1dh0qxm, .framer-eRDHC .framer-1a03bkz, .framer-eRDHC .framer-bppkvv, .framer-eRDHC .framer-1rske5g, .framer-eRDHC .framer-1uzvcia, .framer-eRDHC .framer-oyrb9o, .framer-eRDHC .framer-1fasrcu, .framer-eRDHC .framer-1rizcz4, .framer-eRDHC .framer-agc1v, .framer-eRDHC .framer-h9ubz6, .framer-eRDHC .framer-1a10gyb, .framer-eRDHC .framer-tkjn26, .framer-eRDHC .framer-1wx5j0q, .framer-eRDHC .framer-2f6e1g, .framer-eRDHC .framer-380sd1, .framer-eRDHC .framer-gbvqqg, .framer-eRDHC .framer-fvt7n6, .framer-eRDHC .framer-1arsida, .framer-eRDHC .framer-1t7ymoo, .framer-eRDHC .framer-2uql71, .framer-eRDHC .framer-1owbo4b, .framer-eRDHC .framer-1wjx33p { gap: 0px; } .framer-eRDHC.framer-1kxmbwv > *, .framer-eRDHC .framer-1aoebxd > *, .framer-eRDHC .framer-u0wj05 > *, .framer-eRDHC .framer-qh5xz8 > *, .framer-eRDHC .framer-bppkvv > *, .framer-eRDHC .framer-1rizcz4 > *, .framer-eRDHC .framer-1t7ymoo > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-eRDHC.framer-1kxmbwv > :first-child, .framer-eRDHC .framer-1aoebxd > :first-child, .framer-eRDHC .framer-alzdis > :first-child, .framer-eRDHC .framer-13d9v14 > :first-child, .framer-eRDHC .framer-7xfe9w > :first-child, .framer-eRDHC .framer-1wl3i90 > :first-child, .framer-eRDHC .framer-1501tqt > :first-child, .framer-eRDHC .framer-ecbmxt > :first-child, .framer-eRDHC .framer-1bj5grk > :first-child, .framer-eRDHC .framer-a2yths > :first-child, .framer-eRDHC .framer-1qdm6yr > :first-child, .framer-eRDHC .framer-16p78ut > :first-child, .framer-eRDHC .framer-8l7zf1 > :first-child, .framer-eRDHC .framer-15m076m > :first-child, .framer-eRDHC .framer-mi1c3x > :first-child, .framer-eRDHC .framer-12n55mb > :first-child, .framer-eRDHC .framer-1aw5kkn > :first-child, .framer-eRDHC .framer-ikr98o > :first-child, .framer-eRDHC .framer-a9pxql > :first-child, .framer-eRDHC .framer-1d5yvl4 > :first-child, .framer-eRDHC .framer-5s51dc > :first-child, .framer-eRDHC .framer-emkspa > :first-child, .framer-eRDHC .framer-u0wj05 > :first-child, .framer-eRDHC .framer-qh5xz8 > :first-child, .framer-eRDHC .framer-1dh0qxm > :first-child, .framer-eRDHC .framer-1a03bkz > :first-child, .framer-eRDHC .framer-bppkvv > :first-child, .framer-eRDHC .framer-1uzvcia > :first-child, .framer-eRDHC .framer-oyrb9o > :first-child, .framer-eRDHC .framer-1rizcz4 > :first-child, .framer-eRDHC .framer-agc1v > :first-child, .framer-eRDHC .framer-h9ubz6 > :first-child, .framer-eRDHC .framer-tkjn26 > :first-child, .framer-eRDHC .framer-1wx5j0q > :first-child, .framer-eRDHC .framer-2f6e1g > :first-child, .framer-eRDHC .framer-380sd1 > :first-child, .framer-eRDHC .framer-gbvqqg > :first-child, .framer-eRDHC .framer-fvt7n6 > :first-child, .framer-eRDHC .framer-1arsida > :first-child, .framer-eRDHC .framer-1t7ymoo > :first-child, .framer-eRDHC .framer-1owbo4b > :first-child, .framer-eRDHC .framer-1wjx33p > :first-child { margin-top: 0px; } .framer-eRDHC.framer-1kxmbwv > :last-child, .framer-eRDHC .framer-1aoebxd > :last-child, .framer-eRDHC .framer-alzdis > :last-child, .framer-eRDHC .framer-13d9v14 > :last-child, .framer-eRDHC .framer-7xfe9w > :last-child, .framer-eRDHC .framer-1wl3i90 > :last-child, .framer-eRDHC .framer-1501tqt > :last-child, .framer-eRDHC .framer-ecbmxt > :last-child, .framer-eRDHC .framer-1bj5grk > :last-child, .framer-eRDHC .framer-a2yths > :last-child, .framer-eRDHC .framer-1qdm6yr > :last-child, .framer-eRDHC .framer-16p78ut > :last-child, .framer-eRDHC .framer-8l7zf1 > :last-child, .framer-eRDHC .framer-15m076m > :last-child, .framer-eRDHC .framer-mi1c3x > :last-child, .framer-eRDHC .framer-12n55mb > :last-child, .framer-eRDHC .framer-1aw5kkn > :last-child, .framer-eRDHC .framer-ikr98o > :last-child, .framer-eRDHC .framer-a9pxql > :last-child, .framer-eRDHC .framer-1d5yvl4 > :last-child, .framer-eRDHC .framer-5s51dc > :last-child, .framer-eRDHC .framer-emkspa > :last-child, .framer-eRDHC .framer-u0wj05 > :last-child, .framer-eRDHC .framer-qh5xz8 > :last-child, .framer-eRDHC .framer-1dh0qxm > :last-child, .framer-eRDHC .framer-1a03bkz > :last-child, .framer-eRDHC .framer-bppkvv > :last-child, .framer-eRDHC .framer-1uzvcia > :last-child, .framer-eRDHC .framer-oyrb9o > :last-child, .framer-eRDHC .framer-1rizcz4 > :last-child, .framer-eRDHC .framer-agc1v > :last-child, .framer-eRDHC .framer-h9ubz6 > :last-child, .framer-eRDHC .framer-tkjn26 > :last-child, .framer-eRDHC .framer-1wx5j0q > :last-child, .framer-eRDHC .framer-2f6e1g > :last-child, .framer-eRDHC .framer-380sd1 > :last-child, .framer-eRDHC .framer-gbvqqg > :last-child, .framer-eRDHC .framer-fvt7n6 > :last-child, .framer-eRDHC .framer-1arsida > :last-child, .framer-eRDHC .framer-1t7ymoo > :last-child, .framer-eRDHC .framer-1owbo4b > :last-child, .framer-eRDHC .framer-1wjx33p > :last-child { margin-bottom: 0px; } .framer-eRDHC .framer-92xv0o > *, .framer-eRDHC .framer-1t062n1 > *, .framer-eRDHC .framer-1ytvpqn > *, .framer-eRDHC .framer-13sesle > *, .framer-eRDHC .framer-1rske5g > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-eRDHC .framer-92xv0o > :first-child, .framer-eRDHC .framer-w3jyl3 > :first-child, .framer-eRDHC .framer-zrml6f > :first-child, .framer-eRDHC .framer-2pra8m > :first-child, .framer-eRDHC .framer-1gct2l9 > :first-child, .framer-eRDHC .framer-otbrhp > :first-child, .framer-eRDHC .framer-heznah > :first-child, .framer-eRDHC .framer-6z8cra > :first-child, .framer-eRDHC .framer-1t062n1 > :first-child, .framer-eRDHC .framer-1ytvpqn > :first-child, .framer-eRDHC .framer-sdorp7 > :first-child, .framer-eRDHC .framer-c0ocay > :first-child, .framer-eRDHC .framer-1bqbzs7 > :first-child, .framer-eRDHC .framer-pwosrs > :first-child, .framer-eRDHC .framer-13sesle > :first-child, .framer-eRDHC .framer-1uuhbld > :first-child, .framer-eRDHC .framer-1rske5g > :first-child, .framer-eRDHC .framer-1fasrcu > :first-child, .framer-eRDHC .framer-1a10gyb > :first-child, .framer-eRDHC .framer-2uql71 > :first-child { margin-left: 0px; } .framer-eRDHC .framer-92xv0o > :last-child, .framer-eRDHC .framer-w3jyl3 > :last-child, .framer-eRDHC .framer-zrml6f > :last-child, .framer-eRDHC .framer-2pra8m > :last-child, .framer-eRDHC .framer-1gct2l9 > :last-child, .framer-eRDHC .framer-otbrhp > :last-child, .framer-eRDHC .framer-heznah > :last-child, .framer-eRDHC .framer-6z8cra > :last-child, .framer-eRDHC .framer-1t062n1 > :last-child, .framer-eRDHC .framer-1ytvpqn > :last-child, .framer-eRDHC .framer-sdorp7 > :last-child, .framer-eRDHC .framer-c0ocay > :last-child, .framer-eRDHC .framer-1bqbzs7 > :last-child, .framer-eRDHC .framer-pwosrs > :last-child, .framer-eRDHC .framer-13sesle > :last-child, .framer-eRDHC .framer-1uuhbld > :last-child, .framer-eRDHC .framer-1rske5g > :last-child, .framer-eRDHC .framer-1fasrcu > :last-child, .framer-eRDHC .framer-1a10gyb > :last-child, .framer-eRDHC .framer-2uql71 > :last-child { margin-right: 0px; } .framer-eRDHC .framer-w3jyl3 > *, .framer-eRDHC .framer-2pra8m > *, .framer-eRDHC .framer-otbrhp > *, .framer-eRDHC .framer-heznah > *, .framer-eRDHC .framer-6z8cra > *, .framer-eRDHC .framer-1uuhbld > *, .framer-eRDHC .framer-1fasrcu > *, .framer-eRDHC .framer-1a10gyb > *, .framer-eRDHC .framer-2uql71 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-eRDHC .framer-alzdis > *, .framer-eRDHC .framer-a9pxql > *, .framer-eRDHC .framer-1d5yvl4 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-eRDHC .framer-zrml6f > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-eRDHC .framer-13d9v14 > *, .framer-eRDHC .framer-7xfe9w > *, .framer-eRDHC .framer-1wl3i90 > *, .framer-eRDHC .framer-1501tqt > *, .framer-eRDHC .framer-ecbmxt > *, .framer-eRDHC .framer-1bj5grk > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } .framer-eRDHC .framer-a2yths > *, .framer-eRDHC .framer-1qdm6yr > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-eRDHC .framer-1gct2l9 > *, .framer-eRDHC .framer-c0ocay > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-eRDHC .framer-16p78ut > *, .framer-eRDHC .framer-1a03bkz > *, .framer-eRDHC .framer-oyrb9o > *, .framer-eRDHC .framer-h9ubz6 > *, .framer-eRDHC .framer-1arsida > *, .framer-eRDHC .framer-1wjx33p > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-eRDHC .framer-8l7zf1 > *, .framer-eRDHC .framer-mi1c3x > *, .framer-eRDHC .framer-1wx5j0q > *, .framer-eRDHC .framer-2f6e1g > *, .framer-eRDHC .framer-380sd1 > *, .framer-eRDHC .framer-gbvqqg > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-eRDHC .framer-15m076m > *, .framer-eRDHC .framer-12n55mb > *, .framer-eRDHC .framer-ikr98o > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-eRDHC .framer-1aw5kkn > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-eRDHC .framer-5s51dc > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-eRDHC .framer-sdorp7 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-eRDHC .framer-emkspa > * { margin: 0px; margin-bottom: calc(7px / 2); margin-top: calc(7px / 2); } .framer-eRDHC .framer-1bqbzs7 > *, .framer-eRDHC .framer-pwosrs > * { margin: 0px; margin-left: calc(64px / 2); margin-right: calc(64px / 2); } .framer-eRDHC .framer-1dh0qxm > *, .framer-eRDHC .framer-1uzvcia > *, .framer-eRDHC .framer-agc1v > *, .framer-eRDHC .framer-fvt7n6 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-eRDHC .framer-tkjn26 > *, .framer-eRDHC .framer-1owbo4b > * { margin: 0px; margin-bottom: calc(96px / 2); margin-top: calc(96px / 2); } }\",\"@media (min-width: 1536px) { .framer-eRDHC .hidden-1kxmbwv { display: none !important; } }\",`@media (min-width: 1200px) and (max-width: 1535px) { .framer-eRDHC .hidden-bfqazt { display: none !important; } .${metadata.bodyClassName}-framer-eRDHC { background: var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(6, 14, 19)) /* {\"name\":\"Neutral 500 [Base]\"} */; } .framer-eRDHC.framer-1kxmbwv { width: 1200px; } .framer-eRDHC .framer-1aoebxd { overflow: hidden; } .framer-eRDHC .framer-qcvyr-container { left: -206px; } .framer-eRDHC .framer-92xv0o { gap: 32px; } .framer-eRDHC .framer-1p95lup { flex: none; max-width: 648px; width: 648px; } .framer-eRDHC .framer-a2yths { max-width: 648px; } .framer-eRDHC .framer-heznah { width: min-content; } .framer-eRDHC .framer-ue0gp1-container { order: 0; } .framer-eRDHC .framer-p4y0sc-container { order: 1; } .framer-eRDHC .framer-tkjn26 { right: 64px; } .framer-eRDHC .framer-1owbo4b { height: min-content; max-width: 1216px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-eRDHC .framer-92xv0o { gap: 0px; } .framer-eRDHC .framer-92xv0o > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-eRDHC .framer-92xv0o > :first-child { margin-left: 0px; } .framer-eRDHC .framer-92xv0o > :last-child { margin-right: 0px; } }}`,`@media (min-width: 768px) and (max-width: 1199px) { .framer-eRDHC .hidden-1au6xh8 { display: none !important; } .${metadata.bodyClassName}-framer-eRDHC { background: var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(6, 14, 19)) /* {\"name\":\"Neutral 500 [Base]\"} */; } .framer-eRDHC.framer-1kxmbwv { width: 768px; } .framer-eRDHC .framer-1aoebxd { height: min-content; overflow: hidden; } .framer-eRDHC .framer-92xv0o { flex: none; flex-direction: column; height: min-content; } .framer-eRDHC .framer-1p95lup { border-top-right-radius: unset; flex: none; gap: 32px; height: min-content; justify-content: center; padding: 20px 60px 40px 60px; width: 100%; } .framer-eRDHC .framer-w3jyl3 { height: 90%; } .framer-eRDHC .framer-9hv3on { gap: 64px; justify-content: center; padding: 64px 30px 64px 30px; } .framer-eRDHC .framer-a2yths { max-width: unset; padding: 20px 60px 64px 60px; } .framer-eRDHC .framer-a9pxql { padding: 20px 0px 0px 0px; } .framer-eRDHC .framer-1d5yvl4 { gap: 32px; } .framer-eRDHC .framer-heznah { width: min-content; } .framer-eRDHC .framer-6z8cra { flex: none; height: min-content; width: 100%; } .framer-eRDHC .framer-u0wj05 { height: min-content; overflow: hidden; padding: 60px 0px 0px 0px; } .framer-eRDHC .framer-1bqbzs7 { flex-direction: column; gap: 16px; height: min-content; padding: 0px 60px 60px 60px; position: relative; top: unset; } .framer-eRDHC .framer-pwosrs { flex: none; flex-direction: column; gap: 32px; height: min-content; width: 100%; } .framer-eRDHC .framer-cb5ey6, .framer-eRDHC .framer-133h7ei, .framer-eRDHC .framer-y295nq, .framer-eRDHC .framer-1iknisn, .framer-eRDHC .framer-kpe3lp { height: 420px; max-height: unset; width: 100%; } .framer-eRDHC .framer-13sesle, .framer-eRDHC .framer-1rske5g { flex-direction: column; gap: 64px; padding: 30px 60px 60px 60px; } .framer-eRDHC .framer-1uuhbld, .framer-eRDHC .framer-1fasrcu { flex: none; order: 1; padding: 0px; width: 100%; } .framer-eRDHC .framer-1ohqmql { aspect-ratio: 1.542857142857143 / 1; height: var(--framer-aspect-ratio-supported, 130px); max-width: unset; } .framer-eRDHC .framer-1dh0qxm, .framer-eRDHC .framer-1uzvcia { flex: none; gap: 64px; order: 0; position: relative; top: unset; width: 100%; } .framer-eRDHC .framer-slcpc1 { aspect-ratio: 1.4095238095238096 / 1; height: var(--framer-aspect-ratio-supported, 142px); max-width: unset; } .framer-eRDHC .framer-1a10gyb { padding: 0px 0px 60px 0px; } .framer-eRDHC .framer-tkjn26 { left: 0px; padding: 0px 64px 0px 64px; right: unset; width: 100%; } .framer-eRDHC .framer-1wx5j0q { order: 1; } .framer-eRDHC .framer-2f6e1g { order: 2; } .framer-eRDHC .framer-380sd1 { order: 3; } .framer-eRDHC .framer-gbvqqg { order: 4; } .framer-eRDHC .framer-fvt7n6 { order: 0; width: 100%; } .framer-eRDHC .framer-1owbo4b { height: min-content; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-eRDHC .framer-92xv0o, .framer-eRDHC .framer-1p95lup, .framer-eRDHC .framer-9hv3on, .framer-eRDHC .framer-1d5yvl4, .framer-eRDHC .framer-1bqbzs7, .framer-eRDHC .framer-pwosrs, .framer-eRDHC .framer-13sesle, .framer-eRDHC .framer-1dh0qxm, .framer-eRDHC .framer-1rske5g, .framer-eRDHC .framer-1uzvcia { gap: 0px; } .framer-eRDHC .framer-92xv0o > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-eRDHC .framer-92xv0o > :first-child, .framer-eRDHC .framer-1p95lup > :first-child, .framer-eRDHC .framer-1d5yvl4 > :first-child, .framer-eRDHC .framer-1bqbzs7 > :first-child, .framer-eRDHC .framer-pwosrs > :first-child, .framer-eRDHC .framer-13sesle > :first-child, .framer-eRDHC .framer-1dh0qxm > :first-child, .framer-eRDHC .framer-1rske5g > :first-child, .framer-eRDHC .framer-1uzvcia > :first-child { margin-top: 0px; } .framer-eRDHC .framer-92xv0o > :last-child, .framer-eRDHC .framer-1p95lup > :last-child, .framer-eRDHC .framer-1d5yvl4 > :last-child, .framer-eRDHC .framer-1bqbzs7 > :last-child, .framer-eRDHC .framer-pwosrs > :last-child, .framer-eRDHC .framer-13sesle > :last-child, .framer-eRDHC .framer-1dh0qxm > :last-child, .framer-eRDHC .framer-1rske5g > :last-child, .framer-eRDHC .framer-1uzvcia > :last-child { margin-bottom: 0px; } .framer-eRDHC .framer-1p95lup > *, .framer-eRDHC .framer-1d5yvl4 > *, .framer-eRDHC .framer-pwosrs > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-eRDHC .framer-9hv3on > * { margin: 0px; margin-left: calc(64px / 2); margin-right: calc(64px / 2); } .framer-eRDHC .framer-9hv3on > :first-child { margin-left: 0px; } .framer-eRDHC .framer-9hv3on > :last-child { margin-right: 0px; } .framer-eRDHC .framer-1bqbzs7 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-eRDHC .framer-13sesle > *, .framer-eRDHC .framer-1dh0qxm > *, .framer-eRDHC .framer-1rske5g > *, .framer-eRDHC .framer-1uzvcia > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } }}`,`@media (max-width: 767px) { .framer-eRDHC .hidden-23u7rw { display: none !important; } .${metadata.bodyClassName}-framer-eRDHC { background: var(--token-270e38fe-3e1b-4798-a3dc-0125af8e1c94, rgb(6, 14, 19)) /* {\"name\":\"Neutral 500 [Base]\"} */; } .framer-eRDHC.framer-1kxmbwv { width: 320px; } .framer-eRDHC .framer-1aoebxd { height: min-content; } .framer-eRDHC .framer-92xv0o { align-content: center; align-items: center; flex: none; flex-direction: column; height: min-content; justify-content: center; } .framer-eRDHC .framer-1p95lup { align-content: center; align-items: center; flex: none; gap: 24px; height: min-content; justify-content: center; padding: 20px 20px 40px 20px; width: 100%; } .framer-eRDHC .framer-w3jyl3 { height: 90%; } .framer-eRDHC .framer-9hv3on { padding: 24px; } .framer-eRDHC .framer-zrml6f { flex-direction: column; gap: 24px; justify-content: flex-start; } .framer-eRDHC .framer-13d9v14, .framer-eRDHC .framer-7xfe9w { flex: none; width: 100%; } .framer-eRDHC .framer-183ef4f, .framer-eRDHC .framer-ue0gp1-container, .framer-eRDHC .framer-p4y0sc-container { width: 100%; } .framer-eRDHC .framer-a2yths { padding: 20px 24px 64px 24px; } .framer-eRDHC .framer-a9pxql { gap: 16px; padding: 20px 0px 0px 0px; } .framer-eRDHC .framer-1d5yvl4 { align-content: center; align-items: center; gap: 32px; justify-content: center; } .framer-eRDHC .framer-heznah { flex-direction: column; justify-content: center; max-width: 320px; } .framer-eRDHC .framer-6z8cra { flex: none; flex-direction: column; height: min-content; justify-content: flex-start; width: 100%; } .framer-eRDHC .framer-ftrpl0 { flex: none; height: 321px; width: 100%; } .framer-eRDHC .framer-u0wj05 { height: min-content; overflow: hidden; padding: 40px 0px 0px 0px; } .framer-eRDHC .framer-1bqbzs7 { flex-direction: column; gap: 32px; height: min-content; padding: 0px 20px 40px 20px; position: relative; top: unset; } .framer-eRDHC .framer-pwosrs { flex: none; flex-direction: column; gap: 16px; height: min-content; width: 100%; } .framer-eRDHC .framer-cb5ey6, .framer-eRDHC .framer-133h7ei, .framer-eRDHC .framer-y295nq, .framer-eRDHC .framer-1iknisn, .framer-eRDHC .framer-kpe3lp { height: 200px; width: 100%; } .framer-eRDHC .framer-13sesle, .framer-eRDHC .framer-1rske5g { flex-direction: column; gap: 32px; padding: 20px 24px 40px 24px; } .framer-eRDHC .framer-1uuhbld, .framer-eRDHC .framer-1fasrcu { flex: none; order: 1; padding: 0px; width: 100%; } .framer-eRDHC .framer-1ohqmql, .framer-eRDHC .framer-slcpc1 { height: 200px; } .framer-eRDHC .framer-1dh0qxm, .framer-eRDHC .framer-1uzvcia { flex: none; gap: 32px; order: 0; padding: 0px; position: relative; top: unset; width: 100%; } .framer-eRDHC .framer-1a03bkz, .framer-eRDHC .framer-oyrb9o, .framer-eRDHC .framer-1arsida { gap: 24px; } .framer-eRDHC .framer-3kifwd { height: 1300px; } .framer-eRDHC .framer-tkjn26 { gap: 48px; left: 0px; padding: 0px 24px 0px 24px; right: unset; width: 100%; } .framer-eRDHC .framer-1wx5j0q { order: 1; width: 100%; } .framer-eRDHC .framer-2f6e1g { order: 2; width: 100%; } .framer-eRDHC .framer-380sd1 { order: 3; width: 100%; } .framer-eRDHC .framer-gbvqqg { order: 4; width: 100%; } .framer-eRDHC .framer-fvt7n6 { gap: 24px; order: 0; width: 100%; } .framer-eRDHC .framer-1t7ymoo { padding: 0px 24px 60px 24px; } .framer-eRDHC .framer-1owbo4b { gap: 48px; height: min-content; padding: 20px 0px 20px 0px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-eRDHC .framer-92xv0o, .framer-eRDHC .framer-1p95lup, .framer-eRDHC .framer-zrml6f, .framer-eRDHC .framer-a9pxql, .framer-eRDHC .framer-1d5yvl4, .framer-eRDHC .framer-heznah, .framer-eRDHC .framer-6z8cra, .framer-eRDHC .framer-1bqbzs7, .framer-eRDHC .framer-pwosrs, .framer-eRDHC .framer-13sesle, .framer-eRDHC .framer-1dh0qxm, .framer-eRDHC .framer-1a03bkz, .framer-eRDHC .framer-1rske5g, .framer-eRDHC .framer-1uzvcia, .framer-eRDHC .framer-oyrb9o, .framer-eRDHC .framer-tkjn26, .framer-eRDHC .framer-fvt7n6, .framer-eRDHC .framer-1arsida, .framer-eRDHC .framer-1owbo4b { gap: 0px; } .framer-eRDHC .framer-92xv0o > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-eRDHC .framer-92xv0o > :first-child, .framer-eRDHC .framer-1p95lup > :first-child, .framer-eRDHC .framer-zrml6f > :first-child, .framer-eRDHC .framer-a9pxql > :first-child, .framer-eRDHC .framer-1d5yvl4 > :first-child, .framer-eRDHC .framer-heznah > :first-child, .framer-eRDHC .framer-6z8cra > :first-child, .framer-eRDHC .framer-1bqbzs7 > :first-child, .framer-eRDHC .framer-pwosrs > :first-child, .framer-eRDHC .framer-13sesle > :first-child, .framer-eRDHC .framer-1dh0qxm > :first-child, .framer-eRDHC .framer-1a03bkz > :first-child, .framer-eRDHC .framer-1rske5g > :first-child, .framer-eRDHC .framer-1uzvcia > :first-child, .framer-eRDHC .framer-oyrb9o > :first-child, .framer-eRDHC .framer-tkjn26 > :first-child, .framer-eRDHC .framer-fvt7n6 > :first-child, .framer-eRDHC .framer-1arsida > :first-child, .framer-eRDHC .framer-1owbo4b > :first-child { margin-top: 0px; } .framer-eRDHC .framer-92xv0o > :last-child, .framer-eRDHC .framer-1p95lup > :last-child, .framer-eRDHC .framer-zrml6f > :last-child, .framer-eRDHC .framer-a9pxql > :last-child, .framer-eRDHC .framer-1d5yvl4 > :last-child, .framer-eRDHC .framer-heznah > :last-child, .framer-eRDHC .framer-6z8cra > :last-child, .framer-eRDHC .framer-1bqbzs7 > :last-child, .framer-eRDHC .framer-pwosrs > :last-child, .framer-eRDHC .framer-13sesle > :last-child, .framer-eRDHC .framer-1dh0qxm > :last-child, .framer-eRDHC .framer-1a03bkz > :last-child, .framer-eRDHC .framer-1rske5g > :last-child, .framer-eRDHC .framer-1uzvcia > :last-child, .framer-eRDHC .framer-oyrb9o > :last-child, .framer-eRDHC .framer-tkjn26 > :last-child, .framer-eRDHC .framer-fvt7n6 > :last-child, .framer-eRDHC .framer-1arsida > :last-child, .framer-eRDHC .framer-1owbo4b > :last-child { margin-bottom: 0px; } .framer-eRDHC .framer-1p95lup > *, .framer-eRDHC .framer-zrml6f > *, .framer-eRDHC .framer-1a03bkz > *, .framer-eRDHC .framer-oyrb9o > *, .framer-eRDHC .framer-fvt7n6 > *, .framer-eRDHC .framer-1arsida > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-eRDHC .framer-a9pxql > *, .framer-eRDHC .framer-pwosrs > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-eRDHC .framer-1d5yvl4 > *, .framer-eRDHC .framer-1bqbzs7 > *, .framer-eRDHC .framer-13sesle > *, .framer-eRDHC .framer-1dh0qxm > *, .framer-eRDHC .framer-1rske5g > *, .framer-eRDHC .framer-1uzvcia > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-eRDHC .framer-heznah > *, .framer-eRDHC .framer-6z8cra > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-eRDHC .framer-tkjn26 > *, .framer-eRDHC .framer-1owbo4b > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,'.framer-eRDHC[data-hide-scrollbars=\"true\"]::-webkit-scrollbar, .framer-eRDHC [data-hide-scrollbars=\"true\"]::-webkit-scrollbar { width: 0px; height: 0px; }','.framer-eRDHC[data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb, .framer-eRDHC [data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb { background: transparent; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 12396\n * @framerIntrinsicWidth 1536\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ySYRR3NQ9\":{\"layout\":[\"fixed\",\"auto\"]},\"MynEiDI9r\":{\"layout\":[\"fixed\",\"auto\"]},\"DplYuyixS\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerDj4WBZH4F=withCSS(Component,css,\"framer-eRDHC\");export default FramerDj4WBZH4F;FramerDj4WBZH4F.displayName=\"Properties\";FramerDj4WBZH4F.defaultProps={height:12396,width:1536};addFonts(FramerDj4WBZH4F,[{explicitInter:true,fonts:[{family:\"Lora\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/lora/v35/0QI6MX1D_JOuGQbT0gvTJPa787weuyJDmKxemMeZ.woff2\",weight:\"400\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TTX2Z3BF3P6Y5BQT3IV2VNOK6FL22KUT/7QYRJOI3JIMYHGY6CH7SOIFRQLZOLNJ6/KFIAZD4RUMEZIYV6FQ3T3GP5PDBDB6JY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Noto Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/notosans/v36/o-0mIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjcz6L1SoM-jCpoiyD9A99Y41P6zHtY.woff2\",weight:\"400\"},{family:\"Noto Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/notosans/v36/o-0mIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjcz6L1SoM-jCpoiyDPA99Y41P6zHtY.woff2\",weight:\"500\"}]},...VideoFonts,...NavigationNavbarFonts,...HeroFonts,...ButtonsFormFonts,...NavigationMenuIconFonts,...NavigationMenuLinkFonts,...AccordionsPropertyPrototypeFonts,...ButtonsButtonFonts,...ButtonsTextLinkFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerDj4WBZH4F\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerResponsiveScreen\":\"\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"12396\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ySYRR3NQ9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"MynEiDI9r\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"DplYuyixS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1536\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "progress", "objectFit", "backgroundColor", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "posterEnabled", "startTimeProp", "volume", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "groupsRegex", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "PhosphorFonts", "getFonts", "Icon", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click3", "click4", "currentCapRate", "height", "id", "lotSize", "price", "pricePSqFt", "pricePUnit", "proformaCapRate", "sqFt", "units", "width", "yearBuilt", "zoning", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_ref5", "_ref6", "_ref7", "_humanReadableVariantMap_props_variant", "_ref8", "_ref9", "_ref10", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "T8rQFvSBR", "tLV1XwRxY", "H55TpKJOP", "LAKlnFdLC", "p4LS1MFxH", "nUB9rkygw", "gtCPhdIT5", "QoERf2KiT", "xQwuoslC5", "ybtIrSL2p", "WbhStenFW", "VJD1ZAwWQ", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1ocw21f", "args", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "ComponentViewportProvider", "css", "Framerba0_rOl4X", "withCSS", "ba0_rOl4X_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "AccordionsPropertyDetailsFonts", "getFonts", "ba0_rOl4X_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "currentCapRate", "height", "id", "lotSize", "price", "pricePSqFt", "pricePUnit", "proformaCapRate", "sqFt", "units", "width", "yearBuilt", "zoning", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_ref5", "_humanReadableVariantMap_props_variant", "_ref6", "_ref7", "_ref8", "_ref9", "_ref10", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "U9MmOLnav", "eB9jhMwJs", "FZU9lSHmY", "VZH1CJvSi", "vSqcao2NW", "Crgf4_vzj", "zhMyztYK4", "Q9cOOW5aV", "ZYPVkpBb5", "FWLXRkaDm", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "WbhStenFW1knhguk", "args", "VJD1ZAwWQcxz4ca", "WbhStenFW138r3d0", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "css", "FramerdIvZq3QAm", "withCSS", "dIvZq3QAm_default", "addPropertyControls", "ControlType", "addFonts", "VideoFonts", "getFonts", "Video", "NavigationNavbarFonts", "ze6mg1a9E_default", "HeroFonts", "Icon", "ButtonsFormFonts", "OgRS7hAVD_default", "MotionDivWithFX", "withFX", "motion", "NavigationMenuIconFonts", "FEsjjQPax_default", "NavigationMenuLinkFonts", "QajUTYrc5_default", "AccordionsPropertyPrototypeFonts", "dIvZq3QAm_default", "ButtonsButtonFonts", "AjBcKS13D_default", "ButtonsTextLinkFonts", "BqCnKKbEn_default", "FooterFonts", "zOGQw9msp_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "isSet", "value", "convertFromBoolean", "activeLocale", "animation", "transition1", "animation1", "formVariants", "form", "variants", "currentVariant", "_variants_success", "_variants_pending", "_variants_error", "_variants_incomplete", "transition2", "animation2", "animation3", "animation4", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "toResponsiveImage", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "setLocale", "useLocaleInfo", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "useQueryData", "XdC7qOeqe_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "JNXIf8_YR", "hDNLCaJEq", "rvJCniPQf", "sqI5KZRK3", "VtX4OUKM5", "rLBCwj64r", "W_ev1BWfH", "FBQbsu6fU", "hpVmB6JPt", "oN_9EFC1r", "PtpyqhUxx", "ybxeUhsT9", "YYQyvRzfZ", "I1UZMZENK", "f5cTBVoCc", "J7mGwKp6t", "XChUBsGbD", "e_a1QCoGV", "ExZAhQosf", "q6ubB9PY8", "flf8wQBu1", "JHmnD5BEe", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "uigZuQcBJwelu7j", "overlay", "paginationInfo", "args", "cgOXejFvtwelu7j", "onClick1wvko5h", "onTap1wvko5h", "ref1", "pe", "isDisplayed", "isDisplayed1", "router", "useRouter", "useRouteElementId", "ref2", "id1", "ref3", "isDisplayed2", "id2", "ref4", "ref5", "id3", "id4", "ref6", "id5", "ref7", "id6", "ref8", "id7", "ref9", "id8", "ref10", "id9", "ref11", "id10", "ref12", "id11", "ref13", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "cx", "ComponentViewportProvider", "Container", "overlay1", "l", "PropertyOverrides2", "AnimatePresence", "Ga", "x", "RichText2", "getLoadingLazyAtYPosition", "Image2", "FormContainer", "formState", "FormPlainTextInput2", "FormSelect", "Link", "SVG", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "css", "FramerDj4WBZH4F", "withCSS", "Dj4WBZH4F_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
