{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/6SFQOOr7pyMlZBzgKSs8/m2QVSRgfdp6eWmcFy5IG/Image_carousel.js", "ssg:https://framerusercontent.com/modules/avIQozPG9DsvJZ1nN4zo/72v2e3rXw3mQPlQlhMwK/cXUODEq8x.js", "ssg:https://framerusercontent.com/modules/X8LA3X1QuZTcU6YM5aPH/GA3iR59byzRUQZPuoreV/Truncate_1.js", "ssg:https://framerusercontent.com/modules/uPhOpfhy3h6mOuUNCaZa/N3KUl8rhjDhwh5iEgHaU/nbdzcR37D.js", "ssg:https://framerusercontent.com/modules/wjxipoAaZ0NzWRgrpOsL/WdmdnA1GwM1gxm0VuLUO/UC5RjfvoP.js", "ssg:https://framerusercontent.com/modules/3xV1edMVPKySeEUuIkSP/p65By619gZhXeiSYUj1n/wf3F6kXmh.js", "ssg:https://framerusercontent.com/modules/v5Tyj0C9XbgIo2bzgAjU/073PKeKFpz32VgnYikiQ/YbGoCwr5c.js", "ssg:https://framerusercontent.com/modules/FlUzfkZDsoBWxkum2UuJ/p4IQIPd4G8Fivk5CfedQ/fP8zngUcu.js", "ssg:https://framerusercontent.com/modules/yGQyQ7q4LPiLAk8YTqX4/hsBCAvmEVumkxbzpyFNs/zMqHYrJLG.js", "ssg:https://framerusercontent.com/modules/2k5lKQ5ch3MD5gCRB5dS/v3M96AL6lE0To6JLvQn1/HLmKA6K2L.js", "ssg:https://framerusercontent.com/modules/hJKPHByzOPEhU21uzCaD/w7OmL6owZGtyQrkt1jId/jTmNTFQG6.js", "ssg:https://framerusercontent.com/modules/lhz9LdNCrXxVOb43ybkN/0qrzQSb5qXs7UxnOuiiO/KdCYa7hZn.js", "ssg:https://framerusercontent.com/modules/jwe6xMV9dGR1OrkRIqt6/ENN7wvjcTaZxkj80PS9T/nS6HJGGm1.js", "ssg:https://framerusercontent.com/modules/1POe2i4hR04Or7StwXnY/xafZ1c5vqTzuTkRLKkEU/oYdqPh_BW.js", "ssg:https://framerusercontent.com/modules/8hT6hEvqGY87HiDWW4KH/Ca53toRJPnRUlluS26oQ/iCL82Es4G.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import*as React from\"react\";import{Frame,addPropertyControls,ControlType}from\"framer\";import{useEffect,useState}from\"react\";import{motion}from\"framer-motion\";import ReactDOM from\"react-dom\";const Lightbox=({src,onClose})=>{useEffect(()=>{document.body.style.overflow=\"hidden\";return()=>{document.body.style.overflow=\"unset\";};},[]);return /*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsx(\"div\",{style:{position:\"fixed\",top:0,left:0,width:\"100%\",height:\"100%\",backgroundColor:\"rgba(0, 0, 0, 0.8)\",zIndex:9999999,display:\"flex\",justifyContent:\"center\",alignItems:\"center\"},onClick:onClose,children:/*#__PURE__*/_jsx(\"img\",{src:src,style:{maxWidth:\"90%\",maxHeight:\"90%\",objectFit:\"contain\"},onClick:e=>e.stopPropagation()})}),document.body);};/**\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 600\n */export default function RichTextCarousel(props){const{richText,arrowImage=\"https://cdn-icons-png.freepik.com/512/1/1122.png\",imageSpacing,heightMode,transitionType,showFirstImageOnly,arrowSize,enableLightbox}=props;const[imageSrcs,setImageSrcs]=useState([]);const[currentIndex,setCurrentIndex]=useState(0);const[lightboxSrc,setLightboxSrc]=useState(null);useEffect(()=>{const extractImages=element=>{const images=[];const searchForImages=element=>{if(element.props&&element.props.children){React.Children.forEach(element.props.children,child=>{if(typeof child===\"object\"&&child.type===\"img\"){images.push(child.props.src);}else if(child.props&&child.props.children){searchForImages(child);}});}};searchForImages(element);return images;};if(richText&&richText.props&&Array.isArray(richText.props.children)){const images=extractImages(richText);setImageSrcs(images);}},[richText]);useEffect(()=>{if(imageSrcs.length&&currentIndex<0){setCurrentIndex(imageSrcs.length-1);}else if(imageSrcs.length&&currentIndex>=imageSrcs.length){setCurrentIndex(0);}},[currentIndex,imageSrcs.length]);const handleNext=()=>{if(!showFirstImageOnly){setCurrentIndex(prevIndex=>(prevIndex+1)%imageSrcs.length);}};const handlePrev=()=>{if(!showFirstImageOnly){setCurrentIndex(prevIndex=>(prevIndex-1+imageSrcs.length)%imageSrcs.length);}};const getImageStyle=()=>{switch(heightMode){case\"fit\":return{width:\"100%\",height:\"auto\",objectFit:\"contain\",backgroundColor:\"transparent\"};case\"fill\":return{width:\"100%\",height:\"100%\",objectFit:\"cover\",backgroundColor:\"transparent\"};case\"stretch\":return{width:\"100%\",height:\"100%\",objectFit:\"fill\",backgroundColor:\"transparent\"};default:return{width:\"100%\",height:\"auto\",objectFit:\"contain\",backgroundColor:\"transparent\"};}};const getTransition=()=>{switch(transitionType){case\"easeIn\":return{type:\"spring\",stiffness:100,damping:10};case\"easeOut\":return{type:\"tween\",ease:\"easeOut\",duration:.5};case\"linear\":return{type:\"tween\",ease:\"linear\",duration:.5};default:return{type:\"spring\",stiffness:100,damping:10};}};const displayedImages=showFirstImageOnly?[imageSrcs[0]]:imageSrcs;return /*#__PURE__*/_jsxs(Frame,{overflow:\"hidden\",position:\"relative\",style:{width:\"100%\",height:\"100%\",backgroundColor:\"transparent\"},children:[/*#__PURE__*/_jsx(motion.div,{style:{display:\"flex\",width:`${100*displayedImages.length}%`,height:\"100%\",flexDirection:\"row\",backgroundColor:\"transparent\",marginLeft:`-${imageSpacing/2}px`,marginRight:`-${imageSpacing/2}px`},animate:{x:`-${currentIndex*(100/displayedImages.length)}%`},transition:getTransition(),children:displayedImages.map((src,index)=>/*#__PURE__*/_jsx(\"div\",{style:{width:`calc(${100/displayedImages.length}% - ${imageSpacing}px)`,height:\"100%\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\",backgroundColor:\"transparent\",paddingLeft:`${imageSpacing/2}px`,paddingRight:`${imageSpacing/2}px`},children:/*#__PURE__*/_jsx(\"img\",{src:src,style:{...getImageStyle(),cursor:enableLightbox?\"pointer\":\"default\"},onClick:()=>{if(enableLightbox){setLightboxSrc(src);}}})},index))}),!showFirstImageOnly&&currentIndex!==0&&/*#__PURE__*/_jsx(Frame,{width:arrowSize,height:arrowSize,top:\"50%\",left:\"16px\",background:\"transparent\",style:{backgroundImage:`url(${arrowImage})`,transform:\"rotate(180deg)\",backgroundSize:\"contain\",backgroundRepeat:\"no-repeat\",backgroundPosition:\"center\",cursor:\"pointer\",backgroundColor:\"transparent\"},onTap:handlePrev}),!showFirstImageOnly&&currentIndex!==displayedImages.length-1&&/*#__PURE__*/_jsx(Frame,{width:arrowSize,height:arrowSize,top:\"50%\",right:\"16px\",background:\"transparent\",style:{backgroundImage:`url(${arrowImage})`,backgroundSize:\"contain\",backgroundRepeat:\"no-repeat\",backgroundPosition:\"center\",cursor:\"pointer\",backgroundColor:\"transparent\"},onTap:handleNext}),enableLightbox&&lightboxSrc&&/*#__PURE__*/_jsx(Lightbox,{src:lightboxSrc,onClose:()=>setLightboxSrc(null)})]});}RichTextCarousel.defaultProps={richText:{},arrowImage:\"https://cdn-icons-png.freepik.com/512/1/1122.png\",imageSpacing:0,heightMode:\"fit\",transitionType:\"easeIn\",showFirstImageOnly:false,arrowSize:50,enableLightbox:true};addPropertyControls(RichTextCarousel,{richText:{title:\"Rich Text\",type:ControlType.RichText},arrowImage:{title:\"Arrow Image\",type:ControlType.Image,defaultValue:\"https://cdn-icons-png.freepik.com/512/1/1122.png\"},heightMode:{title:\"Height Mode\",type:ControlType.Enum,options:[\"fit\",\"fill\",\"stretch\"],optionTitles:[\"Fit\",\"Fill\",\"Stretch\"],defaultValue:\"fit\"},transitionType:{title:\"Transition\",type:ControlType.Enum,options:[\"easeIn\",\"easeOut\",\"linear\"],optionTitles:[\"Ease In\",\"Ease Out\",\"Linear\"],defaultValue:\"easeIn\"},showFirstImageOnly:{title:\"Show First Image Only\",type:ControlType.Boolean,defaultValue:false,enabledTitle:\"Yes\",disabledTitle:\"No\"},enableLightbox:{title:\"Lightbox\",type:ControlType.Boolean,defaultValue:true,enabledTitle:\"Yes\",disabledTitle:\"No\"},arrowSize:{title:\"Arrow Size\",type:ControlType.Number,defaultValue:50,min:10,max:100,unit:\"px\",description:\"v1.3 \\n [via SegmentUI](https://www.segmentUI.com)\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"RichTextCarousel\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicWidth\":\"600\",\"framerIntrinsicHeight\":\"600\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Image_carousel.map", "// Generated by Framer (259a342)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import PrimaryButton from\"https://framerusercontent.com/modules/8sNv1sHsMeqmgkn4BkGn/tDwLpeABLbtJDOb4rVnn/LOo7LSFzj.js\";const PrimaryButtonFonts=getFonts(PrimaryButton);const cycleOrder=[\"Owf64HhGG\",\"A1KbLLZvd\",\"i5k7_XzHI\",\"YSQjbVOqE\"];const serializationHash=\"framer-Z5COT\";const variantClassNames={A1KbLLZvd:\"framer-v-1rk3q0t\",i5k7_XzHI:\"framer-v-12e30m3\",Owf64HhGG:\"framer-v-8i2go9\",YSQjbVOqE:\"framer-v-hubmx0\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop Invisible\":\"A1KbLLZvd\",\"Mobile Invisible\":\"YSQjbVOqE\",Desktop:\"Owf64HhGG\",Mobile:\"i5k7_XzHI\"};const getProps=({height,id,title,width,...props})=>{return{...props,NQ4hzBviF:title??props.NQ4hzBviF??\"Neighborhood\",variant:humanReadableVariantMap[props.variant]??props.variant??\"Owf64HhGG\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,NQ4hzBviF,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Owf64HhGG\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const isDisplayed=()=>{if([\"A1KbLLZvd\",\"YSQjbVOqE\"].includes(baseVariant))return false;return true;};const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed1=()=>{if(baseVariant===\"i5k7_XzHI\")return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:isDisplayed()&&/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-8i2go9\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"Owf64HhGG\",ref:refBinding,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgb(196, 196, 196)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5px\",backdropFilter:\"blur(20px)\",backgroundColor:\"rgba(244, 244, 246, 0.5)\",WebkitBackdropFilter:\"blur(20px)\",...style},...addPropertyOverrides({i5k7_XzHI:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-51rf3p\",layoutDependency:layoutDependency,layoutId:\"dU_R5qH5S\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1syiuuk\",layoutDependency:layoutDependency,layoutId:\"QOTkKn_Un\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"Q1VTVE9NO1NGIFBybyBUZXh0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"SF Pro Text Regular\", \"SF Pro Text Regular Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"27px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.125em\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, rgb(38, 38, 38))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Free Webinar\"})})}),className:\"framer-1pr54ja\",fonts:[\"CUSTOM;SF Pro Text Regular\"],layoutDependency:layoutDependency,layoutId:\"dR7L6YXvE\",style:{\"--extracted-1lwpl3i\":\"rgb(38, 38, 38)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:NQ4hzBviF,verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:58,y:(componentViewport?.y||0)+(0+((componentViewport?.height||100)-0-58)/2),...addPropertyOverrides({i5k7_XzHI:{width:`max(${componentViewport?.width||\"100vw\"} - 32px, 1px)`,y:(componentViewport?.y||0)+(16+((componentViewport?.height||200)-32-58)/2)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ddrelz-container\",layoutDependency:layoutDependency,layoutId:\"I3ChGGXWY-container\",nodeId:\"I3ChGGXWY\",rendersWithMotion:true,scopeId:\"cXUODEq8x\",children:/*#__PURE__*/_jsx(PrimaryButton,{height:\"100%\",id:\"I3ChGGXWY\",iQBxIAT8E:\"rgb(255, 255, 255)\",layoutId:\"I3ChGGXWY\",OrNFSWMDm:\"var(--token-2fff1e76-04a4-4eaf-a9d3-da2204498d31, rgb(36, 98, 255))\",qK702IR6E:\"Register your interest\",UGErschEP:\"var(--token-2fff1e76-04a4-4eaf-a9d3-da2204498d31, rgb(36, 98, 255))\",variant:\"TF0EGk78W\",width:\"100%\",...addPropertyOverrides({i5k7_XzHI:{style:{width:\"100%\"}}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Z5COT.framer-1jwjjqr, .framer-Z5COT .framer-1jwjjqr { display: block; }\",\".framer-Z5COT.framer-8i2go9 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; height: 100px; justify-content: space-between; overflow: hidden; padding: 0px 16px 0px 16px; position: relative; width: 1024px; }\",\".framer-Z5COT .framer-51rf3p { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Z5COT .framer-1syiuuk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-Z5COT .framer-1pr54ja { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Z5COT .framer-1ddrelz-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Z5COT .framer-51rf3p, .framer-Z5COT .framer-1syiuuk { gap: 0px; } .framer-Z5COT .framer-51rf3p > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-Z5COT .framer-51rf3p > :first-child { margin-left: 0px; } .framer-Z5COT .framer-51rf3p > :last-child { margin-right: 0px; } .framer-Z5COT .framer-1syiuuk > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-Z5COT .framer-1syiuuk > :first-child { margin-top: 0px; } .framer-Z5COT .framer-1syiuuk > :last-child { margin-bottom: 0px; } }\",\".framer-Z5COT.framer-v-12e30m3.framer-8i2go9 { height: min-content; padding: 16px; width: 390px; }\",\".framer-Z5COT.framer-v-12e30m3 .framer-1ddrelz-container { flex: 1 0 0px; width: 1px; }\",'.framer-Z5COT[data-border=\"true\"]::after, .framer-Z5COT [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 100\n * @framerIntrinsicWidth 1024\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"A1KbLLZvd\":{\"layout\":[\"fixed\",\"fixed\"]},\"i5k7_XzHI\":{\"layout\":[\"fixed\",\"auto\"]},\"YSQjbVOqE\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"NQ4hzBviF\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramercXUODEq8x=withCSS(Component,css,\"framer-Z5COT\");export default FramercXUODEq8x;FramercXUODEq8x.displayName=\"Webinar Sticky\";FramercXUODEq8x.defaultProps={height:100,width:1024};addPropertyControls(FramercXUODEq8x,{variant:{options:[\"Owf64HhGG\",\"A1KbLLZvd\",\"i5k7_XzHI\",\"YSQjbVOqE\"],optionTitles:[\"Desktop\",\"Desktop Invisible\",\"Mobile\",\"Mobile Invisible\"],title:\"Variant\",type:ControlType.Enum},NQ4hzBviF:{defaultValue:\"Neighborhood\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(FramercXUODEq8x,[{explicitInter:true,fonts:[{family:\"SF Pro Text Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/HZqX1E0smkzNnCKgA5KG93Ni1I.woff2\"}]},...PrimaryButtonFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramercXUODEq8x\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"100\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"1024\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"A1KbLLZvd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"i5k7_XzHI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"YSQjbVOqE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"NQ4hzBviF\\\":\\\"title\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./cXUODEq8x.map", "import{jsx as _jsx,Fragment as _Fragment}from\"react/jsx-runtime\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";// Learn more: https://www.framer.com/docs/guides/overrides/\nconst useStore=createStore({background:\"#0099FF\"});// define no of lines after you want to truncate\nconst LINES=1;export default function withLineTruncate(Component){return props=>{const styles={...props?.style,WebkitLineClamp:`${LINES}`,WebkitBoxOrient:\"vertical\",textOverflow:\"ellipsis\",display:\"-webkit-box\",overflow:\"hidden\"};return /*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(Component,{...props,style:styles})});};}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactHoc\",\"name\":\"withLineTruncate\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Truncate_1.map", "// Generated by Framer (259a342)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCodeBoundaryForOverrides,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import default1 from\"https://framerusercontent.com/modules/X8LA3X1QuZTcU6YM5aPH/GA3iR59byzRUQZPuoreV/Truncate_1.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/4s3j6ZhEP5NZg39QNpU1/xwmgjbl6HBRGKGlqjzLW/xZiJfL8tT.js\";import SecondaryButton from\"https://framerusercontent.com/modules/Piiu7lMw5lK6prfmm4k7/7pUfo1HVXtYZjZ3MDFgG/TBRtfwjce.js\";const RichTextDefault11l72vph=withCodeBoundaryForOverrides(RichText,{nodeId:\"vgdab9Q1e\",override:default1,scopeId:\"nbdzcR37D\"});const SecondaryButtonFonts=getFonts(SecondaryButton);const cycleOrder=[\"MojmIn7bT\",\"idcFqPkHD\"];const serializationHash=\"framer-XolVF\";const variantClassNames={idcFqPkHD:\"framer-v-p2cal\",MojmIn7bT:\"framer-v-ceswt6\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.1,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={closed:\"MojmIn7bT\",opened:\"idcFqPkHD\"};const getProps=({height,id,overviewText,width,...props})=>{return{...props,mgnsP1ll7:overviewText??props.mgnsP1ll7??\"Dubailand is one of Dubai\u2019s largest master-planned developments, offering a unique blend of residential communities, entertainment destinations, and leisure attractions. Spanning across a staggering 3 billion square feet, Dubailand is a city within a city, featuring a mix of family-friendly communities, luxury living options, and world-class attractions. With a vision to become a major tourist destination, Dubailand is home to various theme parks, retail centers, and sports facilities, making it an ideal location for families, investors, and those seeking a balanced lifestyle in Dubai. Strategically located along Emirates Road and Al Qudra Road, Dubailand is well connected to other parts of the city, providing residents with easy access to business districts like Downtown Dubai, Dubai Marina, and Jebel Ali.\",variant:humanReadableVariantMap[props.variant]??props.variant??\"MojmIn7bT\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,mgnsP1ll7,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"MojmIn7bT\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const NcLf_JmGvah5q1z=activeVariantCallback(async(...args)=>{setVariant(\"idcFqPkHD\");});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"idcFqPkHD\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"idcFqPkHD\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-ceswt6\",className,classNames),\"data-framer-name\":\"closed\",layoutDependency:layoutDependency,layoutId:\"MojmIn7bT\",ref:refBinding,style:{...style},...addPropertyOverrides({idcFqPkHD:{\"data-framer-name\":\"opened\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(RichTextDefault11l72vph,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-wmb2dx\",\"data-styles-preset\":\"xZiJfL8tT\",children:\"Dubailand is one of Dubai\u2019s largest master-planned developments, offering a unique blend of residential communities, entertainment destinations, and leisure attractions. Spanning across a staggering 3 billion square feet, Dubailand is a city within a city, featuring a mix of family-friendly communities, luxury living options, and world-class attractions. With a vision to become a major tourist destination, Dubailand is home to various theme parks, retail centers, and sports facilities, making it an ideal location for families, investors, and those seeking a balanced lifestyle in Dubai. Strategically located along Emirates Road and Al Qudra Road, Dubailand is well connected to other parts of the city, providing residents with easy access to business districts like Downtown Dubai, Dubai Marina, and Jebel Ali.\"})}),className:\"framer-1l72vph\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"vgdab9Q1e\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:mgnsP1ll7,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-wmb2dx\",\"data-styles-preset\":\"xZiJfL8tT\",children:\"Dubailand is one of Dubai\u2019s largest master-planned developments, offering a unique blend of residential communities, entertainment destinations, and leisure attractions. Spanning across a staggering 3 billion square feet, Dubailand is a city within a city, featuring a mix of family-friendly communities, luxury living options, and world-class attractions. With a vision to become a major tourist destination, Dubailand is home to various theme parks, retail centers, and sports facilities, making it an ideal location for families, investors, and those seeking a balanced lifestyle in Dubai. Strategically located along Emirates Road and Al Qudra Road, Dubailand is well connected to other parts of the city, providing residents with easy access to business districts like Downtown Dubai, Dubai Marina, and Jebel Ali.\"})}),className:\"framer-1cdnzvq\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ZMOImPa35\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:mgnsP1ll7,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:58,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-200)/2+126+16),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-u18hzb-container\",layoutDependency:layoutDependency,layoutId:\"ev4IggxLD-container\",nodeId:\"ev4IggxLD\",rendersWithMotion:true,scopeId:\"nbdzcR37D\",children:/*#__PURE__*/_jsx(SecondaryButton,{height:\"100%\",id:\"ev4IggxLD\",layoutId:\"ev4IggxLD\",NcLf_JmGv:NcLf_JmGvah5q1z,qK702IR6E:\"Read More\",variant:\"pFG8rPI66\",width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-XolVF.framer-xw4ide, .framer-XolVF .framer-xw4ide { display: block; }\",\".framer-XolVF.framer-ceswt6 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; max-width: 1168px; overflow: hidden; padding: 0px; position: relative; width: 992px; }\",\".framer-XolVF .framer-1l72vph, .framer-XolVF .framer-1cdnzvq { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-XolVF .framer-u18hzb-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-XolVF.framer-ceswt6 { gap: 0px; } .framer-XolVF.framer-ceswt6 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-XolVF.framer-ceswt6 > :first-child { margin-top: 0px; } .framer-XolVF.framer-ceswt6 > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 238\n * @framerIntrinsicWidth 992\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1168px\",null,null]},\"idcFqPkHD\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1168px\",null,null]}}}\n * @framerVariables {\"mgnsP1ll7\":\"overviewText\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramernbdzcR37D=withCSS(Component,css,\"framer-XolVF\");export default FramernbdzcR37D;FramernbdzcR37D.displayName=\"Overview Text areas\";FramernbdzcR37D.defaultProps={height:238,width:992};addPropertyControls(FramernbdzcR37D,{variant:{options:[\"MojmIn7bT\",\"idcFqPkHD\"],optionTitles:[\"closed\",\"opened\"],title:\"Variant\",type:ControlType.Enum},mgnsP1ll7:{defaultValue:\"Dubailand is one of Dubai\u2019s largest master-planned developments, offering a unique blend of residential communities, entertainment destinations, and leisure attractions. Spanning across a staggering 3 billion square feet, Dubailand is a city within a city, featuring a mix of family-friendly communities, luxury living options, and world-class attractions. With a vision to become a major tourist destination, Dubailand is home to various theme parks, retail centers, and sports facilities, making it an ideal location for families, investors, and those seeking a balanced lifestyle in Dubai. Strategically located along Emirates Road and Al Qudra Road, Dubailand is well connected to other parts of the city, providing residents with easy access to business districts like Downtown Dubai, Dubai Marina, and Jebel Ali.\",displayTextArea:true,title:\"Overview Text\",type:ControlType.String}});addFonts(FramernbdzcR37D,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...SecondaryButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramernbdzcR37D\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"238\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"992\",\"framerVariables\":\"{\\\"mgnsP1ll7\\\":\\\"overviewText\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1168px\\\",null,null]},\\\"idcFqPkHD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1168px\\\",null,null]}}}\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./nbdzcR37D.map", "// Generated by Framer (259a342)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/AgebHfj2I4XfLBvrkfUL/lcyGTSYVYNyYIUevYGtv/JTX3HQvfv.js\";const cycleOrder=[\"hR8Gaeyfl\",\"NIZtxz63F\"];const serializationHash=\"framer-0Z50E\";const variantClassNames={hR8Gaeyfl:\"framer-v-125z32m\",NIZtxz63F:\"framer-v-g7wun0\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const prefix=(value,prefix)=>{if(typeof value===\"string\"&&typeof prefix===\"string\"){return prefix+value;}else if(typeof value===\"string\"){return value;}else if(typeof prefix===\"string\"){return prefix;}return\"\";};const suffix=(value,suffix)=>{if(typeof value===\"string\"&&typeof suffix===\"string\"){return value+suffix;}else if(typeof value===\"string\"){return value;}else if(typeof suffix===\"string\"){return suffix;}return\"\";};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"NIZtxz63F\",Mobile:\"hR8Gaeyfl\"};const getProps=({distance,height,id,image,time,title,width,...props})=>{return{...props,PlJJGu_Za:time??props.PlJJGu_Za??\"25\",S7Y6aThcb:distance??props.S7Y6aThcb??\"3\",tdbTBJRWr:image??props.tdbTBJRWr??{pixelHeight:630,pixelWidth:1200,src:\"https://framerusercontent.com/images/9p8XqoJRvWwVODlYkS2uLcokzs.webp?scale-down-to=512\"},tqBQcUesA:title??props.tqBQcUesA??\"Burj Khalifa\",variant:humanReadableVariantMap[props.variant]??props.variant??\"hR8Gaeyfl\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,tdbTBJRWr,tqBQcUesA,S7Y6aThcb,PlJJGu_Za,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"hR8Gaeyfl\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const textContent=suffix(prefix(S7Y6aThcb,\"Distance: \"),\" km\");const textContent1=suffix(prefix(PlJJGu_Za,\"Time: \"),\" minutes by car\");return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-125z32m\",className,classNames),\"data-framer-name\":\"Mobile\",layoutDependency:layoutDependency,layoutId:\"hR8Gaeyfl\",ref:refBinding,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,...style},...addPropertyOverrides({NIZtxz63F:{\"data-framer-name\":\"Desktop\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-48iywl\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"CexqjqE0F\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14lz3yf\",\"data-framer-name\":\"Info\",layoutDependency:layoutDependency,layoutId:\"epV44r8TB\",style:{backdropFilter:\"blur(5px)\",background:\"linear-gradient(270deg, rgba(255, 255, 255, 0.05) 0%, rgba(89, 89, 89, 0.2) 100%)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"0px 0px 4px 0px rgba(0, 0, 0, 0.25)\",WebkitBackdropFilter:\"blur(5px)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"Q1VTVE9NO1NGIFBybyBUZXh0IE1lZGl1bQ==\",\"--framer-font-family\":'\"SF Pro Text Medium\", \"SF Pro Text Medium Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, rgb(255, 255, 255))\"},children:\"Burj Khalifa\"})}),className:\"framer-1xzoyzv\",fonts:[\"CUSTOM;SF Pro Text Medium\"],layoutDependency:layoutDependency,layoutId:\"csY0B4jjv\",style:{\"--extracted-1lwpl3i\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:tqBQcUesA,variants:{NIZtxz63F:{\"--extracted-1eung3n\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({NIZtxz63F:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--font-selector\":\"Q1VTVE9NO1NGIFBybyBUZXh0IE1lZGl1bQ==\",\"--framer-font-family\":'\"SF Pro Text Medium\", \"SF Pro Text Medium Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"23px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-color\":\"var(--extracted-1eung3n, rgb(255, 255, 255))\"},children:\"Burj Khalifa\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1558wtf\",layoutDependency:layoutDependency,layoutId:\"B2fqj3dvn\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1hjtnyx\",\"data-styles-preset\":\"JTX3HQvfv\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Distance:  km\"})}),className:\"framer-s71wgt\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"udf2KAdZR\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:textContent,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1hjtnyx\",\"data-styles-preset\":\"JTX3HQvfv\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Time:  minutes by car\"})}),className:\"framer-yzih7u\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"UbY8RSYxJ\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:textContent1,verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:630,pixelWidth:1200,sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(tdbTBJRWr),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1jxyzrr\",layoutDependency:layoutDependency,layoutId:\"wBrjXW7ht\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1va11ky\",layoutDependency:layoutDependency,layoutId:\"wm9VXN9jN\",style:{background:\"linear-gradient(45deg, rgba(0, 0, 0, 0.3) 0%, rgba(153, 153, 153, 0.3) 100%)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-0Z50E.framer-1sws71s, .framer-0Z50E .framer-1sws71s { display: block; }\",\".framer-0Z50E.framer-125z32m { align-content: flex-end; align-items: flex-end; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 180px; justify-content: flex-start; overflow: hidden; padding: 8px; position: relative; width: 280px; will-change: var(--framer-will-change-override, transform); }\",\".framer-0Z50E .framer-48iywl { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 2; }\",\".framer-0Z50E .framer-14lz3yf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 8px; position: relative; width: 100%; }\",\".framer-0Z50E .framer-1xzoyzv, .framer-0Z50E .framer-s71wgt, .framer-0Z50E .framer-yzih7u { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-0Z50E .framer-1558wtf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-0Z50E .framer-1jxyzrr, .framer-0Z50E .framer-1va11ky { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0Z50E.framer-125z32m, .framer-0Z50E .framer-48iywl, .framer-0Z50E .framer-14lz3yf, .framer-0Z50E .framer-1558wtf { gap: 0px; } .framer-0Z50E.framer-125z32m > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-0Z50E.framer-125z32m > :first-child { margin-left: 0px; } .framer-0Z50E.framer-125z32m > :last-child { margin-right: 0px; } .framer-0Z50E .framer-48iywl > *, .framer-0Z50E .framer-14lz3yf > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-0Z50E .framer-48iywl > :first-child, .framer-0Z50E .framer-14lz3yf > :first-child, .framer-0Z50E .framer-1558wtf > :first-child { margin-top: 0px; } .framer-0Z50E .framer-48iywl > :last-child, .framer-0Z50E .framer-14lz3yf > :last-child, .framer-0Z50E .framer-1558wtf > :last-child { margin-bottom: 0px; } .framer-0Z50E .framer-1558wtf > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-0Z50E.framer-v-g7wun0.framer-125z32m { height: 220px; width: 360px; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 180\n * @framerIntrinsicWidth 280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"NIZtxz63F\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"tdbTBJRWr\":\"image\",\"tqBQcUesA\":\"title\",\"S7Y6aThcb\":\"distance\",\"PlJJGu_Za\":\"time\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerUC5RjfvoP=withCSS(Component,css,\"framer-0Z50E\");export default FramerUC5RjfvoP;FramerUC5RjfvoP.displayName=\"Attraction\";FramerUC5RjfvoP.defaultProps={height:180,width:280};addPropertyControls(FramerUC5RjfvoP,{variant:{options:[\"hR8Gaeyfl\",\"NIZtxz63F\"],optionTitles:[\"Mobile\",\"Desktop\"],title:\"Variant\",type:ControlType.Enum},tdbTBJRWr:{__defaultAssetReference:\"data:framer/asset-reference,9p8XqoJRvWwVODlYkS2uLcokzs.webp?originalFilename=Burj+Khalifa.webp&preferredSize=small\",title:\"Image\",type:ControlType.ResponsiveImage},tqBQcUesA:{defaultValue:\"Burj Khalifa\",displayTextArea:false,title:\"Title\",type:ControlType.String},S7Y6aThcb:{defaultValue:\"3\",displayTextArea:false,title:\"Distance\",type:ControlType.String},PlJJGu_Za:{defaultValue:\"25\",displayTextArea:false,title:\"Time\",type:ControlType.String}});addFonts(FramerUC5RjfvoP,[{explicitInter:true,fonts:[{family:\"SF Pro Text Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/KT3PJ5qQOGTYiAmjhcHS9qrVQk.woff2\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerUC5RjfvoP\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"180\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"tdbTBJRWr\\\":\\\"image\\\",\\\"tqBQcUesA\\\":\\\"title\\\",\\\"S7Y6aThcb\\\":\\\"distance\\\",\\\"PlJJGu_Za\\\":\\\"time\\\"}\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"NIZtxz63F\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"280\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UC5RjfvoP.map", "// Generated by Framer (c76752e)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Row from\"https://framerusercontent.com/modules/z4HaMRIsGJG01UoDb2E7/0PxscVFGg8QUe0g8KYlS/Raqv6C44c.js\";const RowFonts=getFonts(Row);const cycleOrder=[\"bo9nCu2AO\",\"ANlMztRlH\"];const serializationHash=\"framer-9mdhR\";const variantClassNames={ANlMztRlH:\"framer-v-hkztyc\",bo9nCu2AO:\"framer-v-ckjyiw\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"};const prefix=(value,prefix)=>{if(typeof value===\"string\"&&typeof prefix===\"string\"){return prefix+value;}else if(typeof value===\"string\"){return value;}else if(typeof prefix===\"string\"){return prefix;}return\"\";};const suffix=(value,suffix)=>{if(typeof value===\"string\"&&typeof suffix===\"string\"){return value+suffix;}else if(typeof value===\"string\"){return value;}else if(typeof suffix===\"string\"){return suffix;}return\"\";};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Individual:\"bo9nCu2AO\",Ready:\"ANlMztRlH\"};const getProps=({answer1,answer10,answer2,answer3,answer4,answer5,answer6,answer7,answer8,answer9,height,id,name1,question1,question10,question2,question3,question4,question5,question6,question7,question8,question9,width,...props})=>{return{...props,BeNEQZikc:answer9??props.BeNEQZikc??\"Yes, Bay Avenue Mall is located in Business Bay, offering a variety of retail shops, dining options, and entertainment facilities. Additionally, The Dubai Mall is nearby.\",cdKYnMAmA:answer4??props.cdKYnMAmA??\"Business Bay offers a variety of accommodations, including luxury hotels, serviced apartments, and high-end residential towers.\",eEwMn_GOr:name1??props.eEwMn_GOr??\"Name\",hezOTuHVK:question10??props.hezOTuHVK??\"What is the expected completion date of the project, and are there any potential delays we should be aware of?\",iPjKZojRf:answer2??props.iPjKZojRf??\"You can reach Business Bay from Dubai International Airport by taxi (15-20 minutes), metro (Red Line to Business Bay Station), or using a private shuttle service.\",iVAm38o6D:question1??props.iVAm38o6D??\"What is the expected completion date of the project, and are there any potential delays we should be aware of?\",JFERGQQO1:question5??props.JFERGQQO1??\"What is the expected completion date of the project, and are there any potential delays we should be aware of?\",L0ADE0stV:question2??props.L0ADE0stV??\"What is the expected completion date of the project, and are there any potential delays we should be aware of?\",M21VtdZyl:answer3??props.M21VtdZyl??\"Main attractions include the Dubai Water Canal, Bay Avenue Mall, numerous high-end restaurants and cafes, and proximity to landmarks like Burj Khalifa and The Dubai Mall.\",PO7tLR1fG:question6??props.PO7tLR1fG??\"What is the expected completion date of the project, and are there any potential delays we should be aware of?\",QWqbeMP6t:question4??props.QWqbeMP6t??\"What is the expected completion date of the project, and are there any potential delays we should be aware of?\",SIFAbIV_R:question7??props.SIFAbIV_R??\"What is the expected completion date of the project, and are there any potential delays we should be aware of?\",SznD1LfQE:question8??props.SznD1LfQE??\"What is the expected completion date of the project, and are there any potential delays we should be aware of?\",u3FeBNk30:answer8??props.u3FeBNk30??\"Business Bay offers numerous recreational facilities, including parks, gyms, spas, swimming pools, and the scenic Dubai Water Canal for outdoor activities.\\n\",U5srOZ81C:answer5??props.U5srOZ81C??\"Business Bay is well-connected with pedestrian walkways, the Dubai Metro, buses, taxis, and ride-hailing services like Uber and Careem.\",UvLfPqgHp:answer1??props.UvLfPqgHp??\"Business Bay is known for its commercial and residential developments, modern office towers, luxury apartments, and vibrant business environment, making it a key business hub in Dubai.\",variant:humanReadableVariantMap[props.variant]??props.variant??\"bo9nCu2AO\",VN_GdTzuH:answer7??props.VN_GdTzuH??\"Business Bay features a wide range of dining options, from fine dining restaurants and casual eateries to cafes and food courts, offering various international cuisines.\",W5mIxVuzI:question9??props.W5mIxVuzI??\"What is the expected completion date of the project, and are there any potential delays we should be aware of?\",xPYSLgPFL:answer10??props.xPYSLgPFL??\"Business Bay hosts a diverse range of businesses, including multinational corporations, financial institutions, real estate companies, and professional service firms, making it a dynamic business district.\\n\",YZwngVN9R:question3??props.YZwngVN9R??\"What is the expected completion date of the project, and are there any potential delays we should be aware of?\",zjtF1a16B:answer6??props.zjtF1a16B??\"Yes, Business Bay is a popular residential area due to its central location, modern amenities, and close proximity to Downtown Dubai.\"};};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,iVAm38o6D,UvLfPqgHp,L0ADE0stV,iPjKZojRf,YZwngVN9R,M21VtdZyl,QWqbeMP6t,cdKYnMAmA,JFERGQQO1,U5srOZ81C,PO7tLR1fG,zjtF1a16B,SIFAbIV_R,VN_GdTzuH,SznD1LfQE,u3FeBNk30,W5mIxVuzI,BeNEQZikc,hezOTuHVK,xPYSLgPFL,eEwMn_GOr,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"bo9nCu2AO\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-ckjyiw\",className,classNames),\"data-framer-name\":\"Individual\",layoutDependency:layoutDependency,layoutId:\"bo9nCu2AO\",ref:ref??ref1,style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},...addPropertyOverrides({ANlMztRlH:{\"data-framer-name\":\"Ready\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:124,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-15q98if-container\",\"data-framer-name\":\"1\",layoutDependency:layoutDependency,layoutId:\"Qy00DORSX-container\",name:\"1\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"Qy00DORSX\",layoutId:\"Qy00DORSX\",name:\"1\",style:{width:\"100%\"},T8rQFvSBR:UvLfPqgHp,variant:\"hLva9SiGR\",W88zB8mIG:iVAm38o6D,width:\"100%\",...addPropertyOverrides({ANlMztRlH:{W88zB8mIG:suffix(prefix(eEwMn_GOr,\"What makes \"),\" a desirable place to live?\")}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-18v1adl\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"YHoXYUsw_\",style:{backgroundColor:\"rgb(0, 0, 0)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:124,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+125,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-186jktk-container\",\"data-framer-name\":\"2\",layoutDependency:layoutDependency,layoutId:\"WBqk7S0Fb-container\",name:\"2\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"WBqk7S0Fb\",layoutId:\"WBqk7S0Fb\",name:\"2\",style:{width:\"100%\"},T8rQFvSBR:iPjKZojRf,variant:\"hLva9SiGR\",W88zB8mIG:L0ADE0stV,width:\"100%\",...addPropertyOverrides({ANlMztRlH:{W88zB8mIG:suffix(prefix(eEwMn_GOr,\"Is \"),\" suitable for families?\")}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-z4dq9b\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"ZHIjjW6_m\",style:{backgroundColor:\"rgb(0, 0, 0)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:124,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+250,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-j69ebc-container\",\"data-framer-name\":\"3\",layoutDependency:layoutDependency,layoutId:\"wCVeX98Fe-container\",name:\"3\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"wCVeX98Fe\",layoutId:\"wCVeX98Fe\",name:\"3\",style:{width:\"100%\"},T8rQFvSBR:M21VtdZyl,variant:\"hLva9SiGR\",W88zB8mIG:YZwngVN9R,width:\"100%\",...addPropertyOverrides({ANlMztRlH:{W88zB8mIG:suffix(prefix(eEwMn_GOr,\"How far is \"),\" from Downtown Dubai?\")}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lyz1ds\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"Fn_A75D_n\",style:{backgroundColor:\"rgb(0, 0, 0)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:124,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+375,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1n1vadk-container\",\"data-framer-name\":\"4\",layoutDependency:layoutDependency,layoutId:\"jgvUh1kxS-container\",name:\"4\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"jgvUh1kxS\",layoutId:\"jgvUh1kxS\",name:\"4\",style:{width:\"100%\"},T8rQFvSBR:cdKYnMAmA,variant:\"hLva9SiGR\",W88zB8mIG:QWqbeMP6t,width:\"100%\",...addPropertyOverrides({ANlMztRlH:{W88zB8mIG:suffix(prefix(eEwMn_GOr,\"What types of properties are available in \"),\"?\")}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-yrrq8m\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"z6Nm2I9ih\",style:{backgroundColor:\"rgb(0, 0, 0)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:124,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+500,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-89yies-container\",\"data-framer-name\":\"5\",layoutDependency:layoutDependency,layoutId:\"kiX91_y6l-container\",name:\"5\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"kiX91_y6l\",layoutId:\"kiX91_y6l\",name:\"5\",style:{width:\"100%\"},T8rQFvSBR:U5srOZ81C,variant:\"hLva9SiGR\",W88zB8mIG:JFERGQQO1,width:\"100%\",...addPropertyOverrides({ANlMztRlH:{W88zB8mIG:suffix(prefix(eEwMn_GOr,\"Are there schools near \"),\"?\")}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-16n4wj1\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"YDqBi5mxH\",style:{backgroundColor:\"rgb(0, 0, 0)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:124,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+625,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1asjhrb-container\",\"data-framer-name\":\"6\",layoutDependency:layoutDependency,layoutId:\"aWMsHH9bt-container\",name:\"6\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"aWMsHH9bt\",layoutId:\"aWMsHH9bt\",name:\"6\",style:{width:\"100%\"},T8rQFvSBR:zjtF1a16B,variant:\"hLva9SiGR\",W88zB8mIG:PO7tLR1fG,width:\"100%\",...addPropertyOverrides({ANlMztRlH:{W88zB8mIG:suffix(prefix(eEwMn_GOr,\"What amenities are available in \"),\"?\")}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-zqnlp5\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"ArcyG6F3t\",style:{backgroundColor:\"rgb(0, 0, 0)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:124,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+750,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1m7f3b0-container\",\"data-framer-name\":\"7\",layoutDependency:layoutDependency,layoutId:\"lUFDBX0xz-container\",name:\"7\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"lUFDBX0xz\",layoutId:\"lUFDBX0xz\",name:\"7\",style:{width:\"100%\"},T8rQFvSBR:VN_GdTzuH,variant:\"hLva9SiGR\",W88zB8mIG:SIFAbIV_R,width:\"100%\",...addPropertyOverrides({ANlMztRlH:{W88zB8mIG:suffix(prefix(eEwMn_GOr,\"Is \"),\"a good investment opportunity?\")}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-gihzb6\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"OYeURXKp5\",style:{backgroundColor:\"rgb(0, 0, 0)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:124,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+875,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ii61pl-container\",\"data-framer-name\":\"8\",layoutDependency:layoutDependency,layoutId:\"ChWbMfH5b-container\",name:\"8\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"ChWbMfH5b\",layoutId:\"ChWbMfH5b\",name:\"8\",style:{width:\"100%\"},T8rQFvSBR:u3FeBNk30,variant:\"hLva9SiGR\",W88zB8mIG:SznD1LfQE,width:\"100%\",...addPropertyOverrides({ANlMztRlH:{W88zB8mIG:suffix(prefix(eEwMn_GOr,\"How is the transportation in \"),\"?\")}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-5ole03\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"RtdMYOUbT\",style:{backgroundColor:\"rgb(0, 0, 0)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:124,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+1e3,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vdcjpv-container\",\"data-framer-name\":\"9\",layoutDependency:layoutDependency,layoutId:\"NleYUVy6o-container\",name:\"9\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"NleYUVy6o\",layoutId:\"NleYUVy6o\",name:\"9\",style:{width:\"100%\"},T8rQFvSBR:BeNEQZikc,variant:\"hLva9SiGR\",W88zB8mIG:W5mIxVuzI,width:\"100%\",...addPropertyOverrides({ANlMztRlH:{W88zB8mIG:suffix(prefix(eEwMn_GOr,\"What recreational activities are available in \"),\"?\")}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-138ui82\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"lPWqDFKKI\",style:{backgroundColor:\"rgb(0, 0, 0)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:124,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+1125,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-gi5wnx-container\",\"data-framer-name\":\"10\",layoutDependency:layoutDependency,layoutId:\"JjzrEwemF-container\",name:\"10\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"JjzrEwemF\",layoutId:\"JjzrEwemF\",name:\"10\",style:{width:\"100%\"},T8rQFvSBR:xPYSLgPFL,variant:\"hLva9SiGR\",W88zB8mIG:hezOTuHVK,width:\"100%\",...addPropertyOverrides({ANlMztRlH:{W88zB8mIG:suffix(prefix(eEwMn_GOr,\"What shopping options are available near \"),\"?\")}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-9mdhR.framer-nwqf5g, .framer-9mdhR .framer-nwqf5g { display: block; }\",\".framer-9mdhR.framer-ckjyiw { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 800px; will-change: var(--framer-will-change-override, transform); }\",\".framer-9mdhR .framer-15q98if-container, .framer-9mdhR .framer-186jktk-container, .framer-9mdhR .framer-j69ebc-container, .framer-9mdhR .framer-1n1vadk-container, .framer-9mdhR .framer-89yies-container, .framer-9mdhR .framer-1asjhrb-container, .framer-9mdhR .framer-1m7f3b0-container, .framer-9mdhR .framer-ii61pl-container, .framer-9mdhR .framer-1vdcjpv-container, .framer-9mdhR .framer-gi5wnx-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-9mdhR .framer-18v1adl, .framer-9mdhR .framer-z4dq9b, .framer-9mdhR .framer-1lyz1ds, .framer-9mdhR .framer-yrrq8m, .framer-9mdhR .framer-16n4wj1, .framer-9mdhR .framer-zqnlp5, .framer-9mdhR .framer-gihzb6, .framer-9mdhR .framer-5ole03, .framer-9mdhR .framer-138ui82 { flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-9mdhR.framer-ckjyiw { gap: 0px; } .framer-9mdhR.framer-ckjyiw > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-9mdhR.framer-ckjyiw > :first-child { margin-top: 0px; } .framer-9mdhR.framer-ckjyiw > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 969\n * @framerIntrinsicWidth 800\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ANlMztRlH\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"iVAm38o6D\":\"question1\",\"UvLfPqgHp\":\"answer1\",\"L0ADE0stV\":\"question2\",\"iPjKZojRf\":\"answer2\",\"YZwngVN9R\":\"question3\",\"M21VtdZyl\":\"answer3\",\"QWqbeMP6t\":\"question4\",\"cdKYnMAmA\":\"answer4\",\"JFERGQQO1\":\"question5\",\"U5srOZ81C\":\"answer5\",\"PO7tLR1fG\":\"question6\",\"zjtF1a16B\":\"answer6\",\"SIFAbIV_R\":\"question7\",\"VN_GdTzuH\":\"answer7\",\"SznD1LfQE\":\"question8\",\"u3FeBNk30\":\"answer8\",\"W5mIxVuzI\":\"question9\",\"BeNEQZikc\":\"answer9\",\"hezOTuHVK\":\"question10\",\"xPYSLgPFL\":\"answer10\",\"eEwMn_GOr\":\"name1\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerwf3F6kXmh=withCSS(Component,css,\"framer-9mdhR\");export default Framerwf3F6kXmh;Framerwf3F6kXmh.displayName=\"FAQ Neighborhoods\";Framerwf3F6kXmh.defaultProps={height:969,width:800};addPropertyControls(Framerwf3F6kXmh,{variant:{options:[\"bo9nCu2AO\",\"ANlMztRlH\"],optionTitles:[\"Individual\",\"Ready\"],title:\"Variant\",type:ControlType.Enum},iVAm38o6D:{defaultValue:\"What is the expected completion date of the project, and are there any potential delays we should be aware of?\",displayTextArea:true,title:\"Question 1\",type:ControlType.String},UvLfPqgHp:{defaultValue:\"Business Bay is known for its commercial and residential developments, modern office towers, luxury apartments, and vibrant business environment, making it a key business hub in Dubai.\",displayTextArea:true,title:\"Answer 1\",type:ControlType.String},L0ADE0stV:{defaultValue:\"What is the expected completion date of the project, and are there any potential delays we should be aware of?\",displayTextArea:true,title:\"Question 2\",type:ControlType.String},iPjKZojRf:{defaultValue:\"You can reach Business Bay from Dubai International Airport by taxi (15-20 minutes), metro (Red Line to Business Bay Station), or using a private shuttle service.\",displayTextArea:true,title:\"Answer 2\",type:ControlType.String},YZwngVN9R:{defaultValue:\"What is the expected completion date of the project, and are there any potential delays we should be aware of?\",displayTextArea:true,title:\"Question 3\",type:ControlType.String},M21VtdZyl:{defaultValue:\"Main attractions include the Dubai Water Canal, Bay Avenue Mall, numerous high-end restaurants and cafes, and proximity to landmarks like Burj Khalifa and The Dubai Mall.\",displayTextArea:true,title:\"Answer 3\",type:ControlType.String},QWqbeMP6t:{defaultValue:\"What is the expected completion date of the project, and are there any potential delays we should be aware of?\",displayTextArea:true,title:\"Question 4\",type:ControlType.String},cdKYnMAmA:{defaultValue:\"Business Bay offers a variety of accommodations, including luxury hotels, serviced apartments, and high-end residential towers.\",displayTextArea:true,title:\"Answer 4\",type:ControlType.String},JFERGQQO1:{defaultValue:\"What is the expected completion date of the project, and are there any potential delays we should be aware of?\",displayTextArea:true,title:\"Question 5\",type:ControlType.String},U5srOZ81C:{defaultValue:\"Business Bay is well-connected with pedestrian walkways, the Dubai Metro, buses, taxis, and ride-hailing services like Uber and Careem.\",displayTextArea:true,title:\"Answer 5\",type:ControlType.String},PO7tLR1fG:{defaultValue:\"What is the expected completion date of the project, and are there any potential delays we should be aware of?\",displayTextArea:true,title:\"Question 6\",type:ControlType.String},zjtF1a16B:{defaultValue:\"Yes, Business Bay is a popular residential area due to its central location, modern amenities, and close proximity to Downtown Dubai.\",displayTextArea:true,title:\"Answer 6\",type:ControlType.String},SIFAbIV_R:{defaultValue:\"What is the expected completion date of the project, and are there any potential delays we should be aware of?\",displayTextArea:true,title:\"Question 7\",type:ControlType.String},VN_GdTzuH:{defaultValue:\"Business Bay features a wide range of dining options, from fine dining restaurants and casual eateries to cafes and food courts, offering various international cuisines.\",displayTextArea:true,title:\"Answer 7\",type:ControlType.String},SznD1LfQE:{defaultValue:\"What is the expected completion date of the project, and are there any potential delays we should be aware of?\",displayTextArea:true,title:\"Question 8\",type:ControlType.String},u3FeBNk30:{defaultValue:\"Business Bay offers numerous recreational facilities, including parks, gyms, spas, swimming pools, and the scenic Dubai Water Canal for outdoor activities.\\n\",displayTextArea:true,title:\"Answer 8\",type:ControlType.String},W5mIxVuzI:{defaultValue:\"What is the expected completion date of the project, and are there any potential delays we should be aware of?\",displayTextArea:true,title:\"Question 9\",type:ControlType.String},BeNEQZikc:{defaultValue:\"Yes, Bay Avenue Mall is located in Business Bay, offering a variety of retail shops, dining options, and entertainment facilities. Additionally, The Dubai Mall is nearby.\",displayTextArea:true,title:\"Answer 9\",type:ControlType.String},hezOTuHVK:{defaultValue:\"What is the expected completion date of the project, and are there any potential delays we should be aware of?\",displayTextArea:true,title:\"Question 10\",type:ControlType.String},xPYSLgPFL:{defaultValue:\"Business Bay hosts a diverse range of businesses, including multinational corporations, financial institutions, real estate companies, and professional service firms, making it a dynamic business district.\\n\",displayTextArea:true,title:\"Answer 10\",type:ControlType.String},eEwMn_GOr:{defaultValue:\"Name\",displayTextArea:true,title:\"Name\",type:ControlType.String}});addFonts(Framerwf3F6kXmh,[{explicitInter:true,fonts:[]},...RowFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerwf3F6kXmh\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ANlMztRlH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"iVAm38o6D\\\":\\\"question1\\\",\\\"UvLfPqgHp\\\":\\\"answer1\\\",\\\"L0ADE0stV\\\":\\\"question2\\\",\\\"iPjKZojRf\\\":\\\"answer2\\\",\\\"YZwngVN9R\\\":\\\"question3\\\",\\\"M21VtdZyl\\\":\\\"answer3\\\",\\\"QWqbeMP6t\\\":\\\"question4\\\",\\\"cdKYnMAmA\\\":\\\"answer4\\\",\\\"JFERGQQO1\\\":\\\"question5\\\",\\\"U5srOZ81C\\\":\\\"answer5\\\",\\\"PO7tLR1fG\\\":\\\"question6\\\",\\\"zjtF1a16B\\\":\\\"answer6\\\",\\\"SIFAbIV_R\\\":\\\"question7\\\",\\\"VN_GdTzuH\\\":\\\"answer7\\\",\\\"SznD1LfQE\\\":\\\"question8\\\",\\\"u3FeBNk30\\\":\\\"answer8\\\",\\\"W5mIxVuzI\\\":\\\"question9\\\",\\\"BeNEQZikc\\\":\\\"answer9\\\",\\\"hezOTuHVK\\\":\\\"question10\\\",\\\"xPYSLgPFL\\\":\\\"answer10\\\",\\\"eEwMn_GOr\\\":\\\"name1\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"969\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"800\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (259a342)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ChildrenCanSuspend,ComponentViewportProvider,ControlType,cx,Floating,FormContainer,FormPlainTextInput,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PathVariablesContext,ResolveLinks,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOverlayState,useQueryData,useRouter,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import PhoneNumberInput from\"https://framerusercontent.com/modules/IQzDFpniaD3AmKydBXP4/Cs0w5Su72eeuirGvKldQ/PhoneNumberInput.js\";import Projects from\"https://framerusercontent.com/modules/5bjTjMzzou3c2ChTwEuN/tmf0SBuMHg3L5bYzE5gq/RelGSiuoq.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/3mNAayBKwiLLFWpb71Kd/5bug1t3g63UH8SzIAV4h/Dx00gbLoD.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/AgebHfj2I4XfLBvrkfUL/lcyGTSYVYNyYIUevYGtv/JTX3HQvfv.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/4PgwbdYQNvzmGqO5mlax/wRnaeXtCpwAr645Op3pr/MgWyEhX4s.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/2BSBVG9iWQnzHW21xeo6/m4CNxwf9EQA1Nw2Ti0W5/mxBw7p9ep.js\";import BorderButton from\"https://framerusercontent.com/modules/AKgtoIdKWpMGhjPWEcUr/fD74GmgTsIl2Sco25eEg/KSMxWiDZh.js\";import FormButton from\"https://framerusercontent.com/modules/Hehw9Zp75hCG6y8b18Ez/tPdV8v7szTW05QBU3idC/vdpuiWdxl.js\";const PhoneNumberInputFonts=getFonts(PhoneNumberInput);const FormButtonFonts=getFonts(FormButton);const BorderButtonFonts=getFonts(BorderButton);const MotionDivWithFX=withFX(motion.div);const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const cycleOrder=[\"STZEQzcnf\",\"OzXR7FtXw\",\"iiPbBXFNs\"];const serializationHash=\"framer-J2a2w\";const variantClassNames={iiPbBXFNs:\"framer-v-9v5hd8\",OzXR7FtXw:\"framer-v-1en0inc\",STZEQzcnf:\"framer-v-ecnm80\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:1040};const transition2={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const animation2={backgroundColor:\"rgba(0, 0, 0, 0.4)\",opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition1};const formVariants=(form,variants,currentVariant)=>{switch(form.state){case\"success\":return variants.success??currentVariant;case\"pending\":return variants.pending??currentVariant;case\"error\":return variants.error??currentVariant;case\"incomplete\":return variants.incomplete??currentVariant;}};const transition3={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const query=(prequery,{tmUivBZ3w})=>prequery({from:{alias:\"Z3F7p918B\",data:Projects,type:\"Collection\"},limit:{type:\"LiteralValue\",value:12},select:[{collection:\"Z3F7p918B\",name:\"o0zFBH8Ri\",type:\"Identifier\"},{collection:\"Z3F7p918B\",name:\"YGUn0QV58\",type:\"Identifier\"},{collection:\"Z3F7p918B\",name:\"DRlcpg6ha\",type:\"Identifier\"},{collection:\"Z3F7p918B\",name:\"FqWwQqlhu\",type:\"Identifier\"},{collection:\"Z3F7p918B\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{left:{collection:\"Z3F7p918B\",name:\"IEUn304HO\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:null},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"Z3F7p918B\",name:\"IEUn304HO\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"Z3F7p918B\",name:\"k82lGnExw\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:tmUivBZ3w},type:\"BinaryOperation\"},type:\"BinaryOperation\"}});const query1=(prequery,{tmUivBZ3w})=>prequery({from:{alias:\"Z3F7p918B\",data:Projects,type:\"Collection\"},limit:{type:\"LiteralValue\",value:5},select:[{collection:\"Z3F7p918B\",name:\"o0zFBH8Ri\",type:\"Identifier\"},{collection:\"Z3F7p918B\",name:\"YGUn0QV58\",type:\"Identifier\"},{collection:\"Z3F7p918B\",name:\"DRlcpg6ha\",type:\"Identifier\"},{collection:\"Z3F7p918B\",name:\"FqWwQqlhu\",type:\"Identifier\"},{collection:\"Z3F7p918B\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{left:{collection:\"Z3F7p918B\",name:\"IEUn304HO\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:null},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"Z3F7p918B\",name:\"IEUn304HO\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"Z3F7p918B\",name:\"k82lGnExw\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:tmUivBZ3w},type:\"BinaryOperation\"},type:\"BinaryOperation\"}});const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};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 Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"-d\":\"STZEQzcnf\",\"-m\":\"iiPbBXFNs\",\"-t\":\"OzXR7FtXw\"};const getProps=({click,height,id,neighborhood,width,...props})=>{return{...props,ecOLjecbu:click??props.ecOLjecbu,tmUivBZ3w:neighborhood??props.tmUivBZ3w,variant:humanReadableVariantMap[props.variant]??props.variant??\"STZEQzcnf\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,ecOLjecbu,tmUivBZ3w,o0zFBH8RiZ3F7p918B,YGUn0QV58Z3F7p918B,DRlcpg6haZ3F7p918B,FqWwQqlhuZ3F7p918B,idZ3F7p918B,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"STZEQzcnf\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1lih6ge=activeVariantCallback(async(...args)=>{if(ecOLjecbu){const res=await ecOLjecbu(...args);if(res===false)return false;}});const onSuccesstxyyif=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.show();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const ref2=React.useRef(null);const router=useRouter();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{...restProps,...gestureHandlers,__framer__presenceAnimate:animation,__framer__presenceInitial:animation1,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:cx(scopingClassNames,\"framer-ecnm80\",className,classNames),\"data-framer-appear-id\":\"ecnm80\",\"data-framer-name\":\"-d\",layoutDependency:layoutDependency,layoutId:\"STZEQzcnf\",optimized:true,ref:refBinding,style:{backdropFilter:\"blur(5px)\",backgroundColor:\"rgba(255, 255, 255, 0.9)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,WebkitBackdropFilter:\"blur(5px)\",...style},...addPropertyOverrides({iiPbBXFNs:{\"data-framer-name\":\"-m\"},OzXR7FtXw:{\"data-framer-name\":\"-t\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rw3g0c\",\"data-framer-name\":\"Close\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"yxvM5tlWb\",onTap:onTap1lih6ge,style:{backgroundColor:\"rgba(141, 141, 176, 0.4)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},whileHover:animation2,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vwi8tz\",layoutDependency:layoutDependency,layoutId:\"MKeewuZWj\",style:{backgroundColor:\"rgb(245, 245, 247)\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50,rotate:-45}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ujxmcj\",layoutDependency:layoutDependency,layoutId:\"cGpqudXJA\",style:{backgroundColor:\"rgb(245, 245, 247)\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50,rotate:45}})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||400)-0-400)/2)),pixelHeight:3e3,pixelWidth:4e3,sizes:\"400px\",src:\"https://framerusercontent.com/images/mi9VnLdrA56W1PZbyqJiGDA8.jpg\",srcSet:\"https://framerusercontent.com/images/mi9VnLdrA56W1PZbyqJiGDA8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/mi9VnLdrA56W1PZbyqJiGDA8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/mi9VnLdrA56W1PZbyqJiGDA8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/mi9VnLdrA56W1PZbyqJiGDA8.jpg 4000w\"},className:\"framer-1636byn\",\"data-framer-name\":\"Photo\",layoutDependency:layoutDependency,layoutId:\"HObKj3DCn\",style:{borderBottomLeftRadius:16,borderTopLeftRadius:16,borderTopRightRadius:0},variants:{iiPbBXFNs:{borderBottomLeftRadius:0,borderTopRightRadius:16}},...addPropertyOverrides({iiPbBXFNs:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:3e3,pixelWidth:4e3,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/mi9VnLdrA56W1PZbyqJiGDA8.jpg\",srcSet:\"https://framerusercontent.com/images/mi9VnLdrA56W1PZbyqJiGDA8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/mi9VnLdrA56W1PZbyqJiGDA8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/mi9VnLdrA56W1PZbyqJiGDA8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/mi9VnLdrA56W1PZbyqJiGDA8.jpg 4000w\"}},OzXR7FtXw:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||300)-0-300)/2)),pixelHeight:3e3,pixelWidth:4e3,sizes:\"300px\",src:\"https://framerusercontent.com/images/mi9VnLdrA56W1PZbyqJiGDA8.jpg\",srcSet:\"https://framerusercontent.com/images/mi9VnLdrA56W1PZbyqJiGDA8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/mi9VnLdrA56W1PZbyqJiGDA8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/mi9VnLdrA56W1PZbyqJiGDA8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/mi9VnLdrA56W1PZbyqJiGDA8.jpg 4000w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16equhk\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"yVYsAzdPz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-ixokdd\",\"data-styles-preset\":\"mxBw7p9ep\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, rgb(0, 0, 0))\"},children:\"100 new developments in Dubai for living and investing\"})}),className:\"framer-1lti9v6\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"pIRPooPGJ\",style:{\"--extracted-1eung3n\":\"rgb(0, 0, 0)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{iiPbBXFNs:{\"--extracted-1lwpl3i\":\"rgb(0, 0, 0)\"},OzXR7FtXw:{\"--extracted-1lwpl3i\":\"rgb(0, 0, 0)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({iiPbBXFNs:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-e7ff5o\",\"data-styles-preset\":\"Dx00gbLoD\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, rgb(0, 0, 0))\"},children:\"100 new developments in Dubai for living and investing\"})})},OzXR7FtXw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-e7ff5o\",\"data-styles-preset\":\"Dx00gbLoD\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, rgb(0, 0, 0))\"},children:\"100 new developments in Dubai for living and investing\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(FormContainer,{action:\"https://api.framer.com/forms/v1/forms/6719925f-f168-4ba7-9ab6-858f11f2f5c2/submit\",className:\"framer-fx0g1u\",\"data-highlight\":true,id:`${layoutId}-fx0g1u`,layoutDependency:layoutDependency,layoutId:\"nxoymYzSn\",nodeId:\"nxoymYzSn\",onSuccess:onSuccesstxyyif({overlay}),ref:ref1,children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsxs(motion.label,{className:\"framer-1wmd8w4\",layoutDependency:layoutDependency,layoutId:\"COgvysM1k\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1hjtnyx\",\"data-styles-preset\":\"JTX3HQvfv\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c7e2995e-096b-46f2-b3fe-767689954115, rgb(110, 110, 115)))\"},children:\"Name\"})}),className:\"framer-1sg2sqb\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"EiJy6vjO5\",style:{\"--extracted-r6o4lv\":\"var(--token-c7e2995e-096b-46f2-b3fe-767689954115, rgb(110, 110, 115))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1j9lyrs\",inputName:\"Name\",layoutDependency:layoutDependency,layoutId:\"JR49Jy8Lp\",placeholder:\"John Smith\",required:true,style:{\"--framer-input-background\":\"rgba(187, 187, 187, 0.15)\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgba(136, 136, 136, 0.1)\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-radius-bottom-left\":\"24px\",\"--framer-input-border-radius-bottom-right\":\"24px\",\"--framer-input-border-radius-top-left\":\"24px\",\"--framer-input-border-radius-top-right\":\"24px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-font-color\":\"rgb(153, 153, 153)\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"rgb(153, 153, 153)\"},type:\"text\"})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-mas689\",layoutDependency:layoutDependency,layoutId:\"hp6y5OEaO\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1hjtnyx\",\"data-styles-preset\":\"JTX3HQvfv\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c7e2995e-096b-46f2-b3fe-767689954115, rgb(110, 110, 115)))\"},children:\"Phone Number\"})}),className:\"framer-1prp2lf\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"lS8SakPPI\",style:{\"--extracted-r6o4lv\":\"var(--token-c7e2995e-096b-46f2-b3fe-767689954115, rgb(110, 110, 115))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-hfhqo5-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"agKT7fnGv-container\",nodeId:\"agKT7fnGv\",rendersWithMotion:true,scopeId:\"YbGoCwr5c\",children:/*#__PURE__*/_jsx(PhoneNumberInput,{autoFocus:false,bgBlur:0,border:{color:\"rgba(136, 136, 136, 0.1)\",colorFocus:\"rgb(0, 153, 255)\",colorInvalid:\"rgb(255, 90, 111)\",style:\"solid\",width:\"1px\"},color:\"rgb(153, 153, 153)\",countryCodeOptions:{customFormat:\"+X\",defaultCountryCode:1,divider:{color:\"rgba(136, 136, 136, 0.15)\",inset:8,width:1},format:\"+X\",gap:8,style:\"divider\",width:40},customFormat:\"(XXX) XXX - XXXX\",fill:{color:\"rgba(187, 187, 187, 0.15)\",colorA:\"rgb(187, 187, 187)\",colorB:\"rgb(103, 103, 103)\",gradientAngle:0,type:\"color\"},font:{fontFamily:'\"SF Pro Text Light\", \"SF Pro Text Light Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',fontSize:\"12px\",letterSpacing:\"0em\",lineHeight:\"1em\"},format:\"(XXX) XXX - XXXX\",height:\"100%\",id:\"agKT7fnGv\",layoutId:\"agKT7fnGv\",name:\"Phone Number\",padding:\"12px\",placeholder:\"\",placeholderColor:\"rgb(153, 153, 153)\",radius:\"24px\",required:true,style:{height:\"100%\",width:\"100%\"},transition:{duration:0,type:\"tween\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"352px\",y:(componentViewport?.y||0)+(0+((componentViewport?.height||400)-0-315.6)/2)+24+65.6+0+162,...addPropertyOverrides({iiPbBXFNs:{width:`calc(max(${componentViewport?.width||\"100vw\"}, 240px) - 24px)`,y:(componentViewport?.y||0)+0+200+12+34.4+0+146},OzXR7FtXw:{width:`calc(max(${componentViewport?.width||\"100vw\"} - 300px, 1px) - 40px)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||300)-0-268.4)/2)+20+34.4+0+154}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-yqtk1-container\",layoutDependency:layoutDependency,layoutId:\"WZ2if7zu2-container\",nodeId:\"WZ2if7zu2\",rendersWithMotion:true,scopeId:\"YbGoCwr5c\",children:/*#__PURE__*/_jsx(FormButton,{height:\"100%\",id:\"WZ2if7zu2\",layoutId:\"WZ2if7zu2\",style:{width:\"100%\"},type:\"submit\",V6Rj8Xbl0:\"Submit\",variant:formVariants(formState,{error:\"oHTUgIELA\",pending:\"RRGLuQVsB\",success:\"p5hZJ_gn0\"},\"vjpLMThed\"),width:\"100%\"})})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref1,className:cx(scopingClassNames,classNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${layoutId}-fx0g1u`,offsetX:-200,offsetY:235,onDismiss:overlay.hide,placement:\"top\",safeArea:false,zIndex:11,...addPropertyOverrides({iiPbBXFNs:{offsetX:0,offsetY:164},OzXR7FtXw:{offsetX:-150,offsetY:188}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation4,className:\"framer-1otr3i2\",exit:animation3,initial:animation5,layoutDependency:layoutDependency,layoutId:\"I5kZwTzeX\",ref:ref2,role:\"dialog\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 10px 20px 0px rgba(0, 0, 0, 0.05)\"},variants:{iiPbBXFNs:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7aal25\",layoutDependency:layoutDependency,layoutId:\"Yh1SXTuzM\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17itfi\",\"data-framer-name\":\"Close\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"sp0DpS_uI\",onTap:onTap1lih6ge,style:{backgroundColor:\"rgba(141, 141, 176, 0.4)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},whileHover:animation2,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nfy1l4\",layoutDependency:layoutDependency,layoutId:\"G2mw3WhnR\",style:{backgroundColor:\"rgb(245, 245, 247)\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50,rotate:-45}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-uh3u12\",layoutDependency:layoutDependency,layoutId:\"tvr3B6QKf\",style:{backgroundColor:\"rgb(245, 245, 247)\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50,rotate:45}})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xud9dh\",layoutDependency:layoutDependency,layoutId:\"Z3F7p918B\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"Z3F7p918B\",data:Projects,type:\"Collection\"},limit:{type:\"LiteralValue\",value:12},select:[{collection:\"Z3F7p918B\",name:\"o0zFBH8Ri\",type:\"Identifier\"},{collection:\"Z3F7p918B\",name:\"YGUn0QV58\",type:\"Identifier\"},{collection:\"Z3F7p918B\",name:\"DRlcpg6ha\",type:\"Identifier\"},{collection:\"Z3F7p918B\",name:\"FqWwQqlhu\",type:\"Identifier\"},{collection:\"Z3F7p918B\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{left:{collection:\"Z3F7p918B\",name:\"IEUn304HO\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:null},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"Z3F7p918B\",name:\"IEUn304HO\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"Z3F7p918B\",name:\"k82lGnExw\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:tmUivBZ3w},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},...addPropertyOverrides({iiPbBXFNs:{query:{from:{alias:\"Z3F7p918B\",data:Projects,type:\"Collection\"},limit:{type:\"LiteralValue\",value:5},select:[{collection:\"Z3F7p918B\",name:\"o0zFBH8Ri\",type:\"Identifier\"},{collection:\"Z3F7p918B\",name:\"YGUn0QV58\",type:\"Identifier\"},{collection:\"Z3F7p918B\",name:\"DRlcpg6ha\",type:\"Identifier\"},{collection:\"Z3F7p918B\",name:\"FqWwQqlhu\",type:\"Identifier\"},{collection:\"Z3F7p918B\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{left:{collection:\"Z3F7p918B\",name:\"IEUn304HO\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:null},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"Z3F7p918B\",name:\"IEUn304HO\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"Z3F7p918B\",name:\"k82lGnExw\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:tmUivBZ3w},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}}},baseVariant,gestureVariant),children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({DRlcpg6ha:DRlcpg6haZ3F7p918B,FqWwQqlhu:FqWwQqlhuZ3F7p918B,id:idZ3F7p918B,o0zFBH8Ri:o0zFBH8RiZ3F7p918B,YGUn0QV58:YGUn0QV58Z3F7p918B},index)=>{YGUn0QV58Z3F7p918B??=\"\";FqWwQqlhuZ3F7p918B??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`Z3F7p918B-${idZ3F7p918B}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{FqWwQqlhu:FqWwQqlhuZ3F7p918B},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hs2k3g\",layoutDependency:layoutDependency,layoutId:\"H9a1Iec8_\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hho102\",layoutDependency:layoutDependency,layoutId:\"Lz8j0MA1s\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"30px\",...toResponsiveImage(o0zFBH8RiZ3F7p918B)},className:\"framer-8fs88n\",layoutDependency:layoutDependency,layoutId:\"nSer3cpHP\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1hjtnyx\",\"data-styles-preset\":\"JTX3HQvfv\",children:\"Bay Grove Residences\"})}),className:\"framer-1qc3boj\",\"data-framer-name\":\"Project Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"NGBCZb5sP\",text:YGUn0QV58Z3F7p918B,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({iiPbBXFNs:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1aylh7r\",\"data-styles-preset\":\"MgWyEhX4s\",children:\"Bay Grove Residences\"})})},OzXR7FtXw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1aylh7r\",\"data-styles-preset\":\"MgWyEhX4s\",children:\"Bay Grove Residences\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:DRlcpg6haZ3F7p918B,implicitPathVariables:{FqWwQqlhu:FqWwQqlhuZ3F7p918B}},{href:DRlcpg6haZ3F7p918B,implicitPathVariables:{FqWwQqlhu:FqWwQqlhuZ3F7p918B}},{href:DRlcpg6haZ3F7p918B,implicitPathVariables:{FqWwQqlhu:FqWwQqlhuZ3F7p918B}}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"124px\",...addPropertyOverrides({iiPbBXFNs:{width:\"200px\"},OzXR7FtXw:{width:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1py5g8p-container\",layoutDependency:layoutDependency,layoutId:\"C0MFVcUG3-container\",nodeId:\"C0MFVcUG3\",rendersWithMotion:true,scopeId:\"YbGoCwr5c\",children:/*#__PURE__*/_jsx(BorderButton,{height:\"100%\",id:\"C0MFVcUG3\",layoutId:\"C0MFVcUG3\",lvUvEdWGE:\"16px 24px 16px 24px\",otkc_WV9y:\"Download\",SRAuxhgdj:resolvedLinks[0],style:{height:\"100%\",width:\"100%\"},variant:\"Q8dNZvG4K\",width:\"100%\",...addPropertyOverrides({iiPbBXFNs:{lvUvEdWGE:\"4px 24px 4px 24px\",SRAuxhgdj:resolvedLinks[2],style:{width:\"100%\"}},OzXR7FtXw:{lvUvEdWGE:\"8px 16px 8px 16px\",SRAuxhgdj:resolvedLinks[1]}},baseVariant,gestureVariant)})})})})]})})},idZ3F7p918B);})})})})})]})})})})]})})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-J2a2w.framer-1dfwiy1, .framer-J2a2w .framer-1dfwiy1 { display: block; }\",\".framer-J2a2w.framer-ecnm80 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 400px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 800px; }\",\".framer-J2a2w .framer-1rw3g0c { cursor: pointer; flex: none; height: 32px; left: 16px; overflow: hidden; position: absolute; top: 16px; width: 32px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-J2a2w .framer-1vwi8tz, .framer-J2a2w .framer-ujxmcj, .framer-J2a2w .framer-1nfy1l4, .framer-J2a2w .framer-uh3u12 { flex: none; height: 21px; left: calc(50.00000000000002% - 1.7405705383053345px / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 20.886846459664135px / 2); width: 2px; will-change: var(--framer-will-change-override, transform); }\",\".framer-J2a2w .framer-1636byn { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 400px); overflow: hidden; position: relative; width: 400px; will-change: var(--framer-will-change-override, transform); }\",\".framer-J2a2w .framer-16equhk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 24px; position: relative; width: 400px; }\",\".framer-J2a2w .framer-1lti9v6 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-J2a2w .framer-fx0g1u { 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: 100%; }\",\".framer-J2a2w .framer-1wmd8w4, .framer-J2a2w .framer-mas689 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-J2a2w .framer-1sg2sqb, .framer-J2a2w .framer-1prp2lf, .framer-J2a2w .framer-1qc3boj { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",'.framer-J2a2w .framer-1j9lyrs { --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-family: \"SF Pro Text Light\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1em; --framer-input-font-size: 12px; --framer-input-padding: 12px; flex: none; height: 40px; position: relative; width: 100%; }',\".framer-J2a2w .framer-hfhqo5-container { flex: none; height: 40px; position: relative; width: 100%; }\",\".framer-J2a2w .framer-yqtk1-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-J2a2w .framer-1otr3i2 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 400px; justify-content: flex-start; overflow: hidden; padding: 20px; position: relative; width: 800px; will-change: var(--framer-will-change-override, transform); }\",\".framer-J2a2w .framer-7aal25 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-J2a2w .framer-17itfi { cursor: pointer; flex: none; height: 32px; overflow: hidden; position: relative; width: 32px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-J2a2w .framer-1xud9dh { display: grid; flex: none; gap: 20px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-J2a2w .framer-hs2k3g { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 100%; justify-content: space-between; justify-self: start; padding: 0px; position: relative; width: 100%; }\",\".framer-J2a2w .framer-hho102 { 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; position: relative; width: 1px; }\",\".framer-J2a2w .framer-8fs88n { flex: none; height: 30px; position: relative; width: 30px; }\",\".framer-J2a2w .framer-1py5g8p-container { flex: none; height: 28px; position: relative; width: 124px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-J2a2w.framer-ecnm80, .framer-J2a2w .framer-16equhk, .framer-J2a2w .framer-fx0g1u, .framer-J2a2w .framer-1wmd8w4, .framer-J2a2w .framer-mas689, .framer-J2a2w .framer-1otr3i2, .framer-J2a2w .framer-7aal25, .framer-J2a2w .framer-hho102 { gap: 0px; } .framer-J2a2w.framer-ecnm80 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-J2a2w.framer-ecnm80 > :first-child, .framer-J2a2w .framer-hho102 > :first-child { margin-left: 0px; } .framer-J2a2w.framer-ecnm80 > :last-child, .framer-J2a2w .framer-hho102 > :last-child { margin-right: 0px; } .framer-J2a2w .framer-16equhk > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-J2a2w .framer-16equhk > :first-child, .framer-J2a2w .framer-fx0g1u > :first-child, .framer-J2a2w .framer-1wmd8w4 > :first-child, .framer-J2a2w .framer-mas689 > :first-child, .framer-J2a2w .framer-1otr3i2 > :first-child, .framer-J2a2w .framer-7aal25 > :first-child { margin-top: 0px; } .framer-J2a2w .framer-16equhk > :last-child, .framer-J2a2w .framer-fx0g1u > :last-child, .framer-J2a2w .framer-1wmd8w4 > :last-child, .framer-J2a2w .framer-mas689 > :last-child, .framer-J2a2w .framer-1otr3i2 > :last-child, .framer-J2a2w .framer-7aal25 > :last-child { margin-bottom: 0px; } .framer-J2a2w .framer-fx0g1u > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-J2a2w .framer-1wmd8w4 > *, .framer-J2a2w .framer-mas689 > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-J2a2w .framer-1otr3i2 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-J2a2w .framer-7aal25 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-J2a2w .framer-hho102 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-J2a2w.framer-v-1en0inc.framer-ecnm80, .framer-J2a2w.framer-v-1en0inc .framer-1otr3i2 { height: 300px; width: 600px; }\",\".framer-J2a2w.framer-v-1en0inc .framer-1rw3g0c { top: 12px; }\",\".framer-J2a2w.framer-v-1en0inc .framer-1636byn { aspect-ratio: unset; height: 300px; width: 300px; }\",\".framer-J2a2w.framer-v-1en0inc .framer-16equhk { flex: 1 0 0px; gap: 8px; padding: 20px; width: 1px; }\",\".framer-J2a2w.framer-v-1en0inc .framer-fx0g1u, .framer-J2a2w.framer-v-1en0inc .framer-1xud9dh { gap: 12px; }\",\".framer-J2a2w.framer-v-1en0inc .framer-7aal25, .framer-J2a2w.framer-v-9v5hd8 .framer-fx0g1u { gap: 8px; }\",\".framer-J2a2w.framer-v-1en0inc .framer-17itfi, .framer-J2a2w.framer-v-9v5hd8 .framer-17itfi { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 24px); width: 24px; }\",\".framer-J2a2w.framer-v-1en0inc .framer-1nfy1l4, .framer-J2a2w.framer-v-1en0inc .framer-uh3u12, .framer-J2a2w.framer-v-9v5hd8 .framer-1nfy1l4, .framer-J2a2w.framer-v-9v5hd8 .framer-uh3u12 { height: 16px; top: calc(50.00000000000002% - 16px / 2); }\",\".framer-J2a2w.framer-v-1en0inc .framer-hs2k3g { gap: 0px; justify-content: flex-start; }\",\".framer-J2a2w.framer-v-1en0inc .framer-1py5g8p-container { height: auto; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-J2a2w.framer-v-1en0inc .framer-16equhk, .framer-J2a2w.framer-v-1en0inc .framer-fx0g1u, .framer-J2a2w.framer-v-1en0inc .framer-7aal25, .framer-J2a2w.framer-v-1en0inc .framer-1xud9dh, .framer-J2a2w.framer-v-1en0inc .framer-hs2k3g { gap: 0px; } .framer-J2a2w.framer-v-1en0inc .framer-16equhk > *, .framer-J2a2w.framer-v-1en0inc .framer-7aal25 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-J2a2w.framer-v-1en0inc .framer-16equhk > :first-child, .framer-J2a2w.framer-v-1en0inc .framer-fx0g1u > :first-child, .framer-J2a2w.framer-v-1en0inc .framer-7aal25 > :first-child { margin-top: 0px; } .framer-J2a2w.framer-v-1en0inc .framer-16equhk > :last-child, .framer-J2a2w.framer-v-1en0inc .framer-fx0g1u > :last-child, .framer-J2a2w.framer-v-1en0inc .framer-7aal25 > :last-child { margin-bottom: 0px; } .framer-J2a2w.framer-v-1en0inc .framer-fx0g1u > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-J2a2w.framer-v-1en0inc .framer-1xud9dh > *, .framer-J2a2w.framer-v-1en0inc .framer-1xud9dh > :first-child, .framer-J2a2w.framer-v-1en0inc .framer-1xud9dh > :last-child { margin: 0px; } .framer-J2a2w.framer-v-1en0inc .framer-hs2k3g > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-J2a2w.framer-v-1en0inc .framer-hs2k3g > :first-child { margin-left: 0px; } .framer-J2a2w.framer-v-1en0inc .framer-hs2k3g > :last-child { margin-right: 0px; } }\",\".framer-J2a2w.framer-v-9v5hd8.framer-ecnm80 { flex-direction: column; height: min-content; min-width: 240px; width: min-content; }\",\".framer-J2a2w.framer-v-9v5hd8 .framer-1rw3g0c { top: 10px; }\",\".framer-J2a2w.framer-v-9v5hd8 .framer-1636byn { align-self: stretch; aspect-ratio: unset; height: 200px; width: auto; }\",\".framer-J2a2w.framer-v-9v5hd8 .framer-16equhk { align-self: stretch; gap: 8px; min-width: 240px; padding: 12px; width: auto; }\",\".framer-J2a2w.framer-v-9v5hd8 .framer-1otr3i2 { height: 490px; width: 240px; }\",\".framer-J2a2w.framer-v-9v5hd8 .framer-7aal25 { align-content: flex-start; align-items: flex-start; justify-content: flex-start; }\",\".framer-J2a2w.framer-v-9v5hd8 .framer-1xud9dh { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; justify-content: flex-start; }\",\".framer-J2a2w.framer-v-9v5hd8 .framer-hs2k3g { align-self: unset; flex-direction: column; gap: 8px; height: min-content; justify-content: flex-start; }\",\".framer-J2a2w.framer-v-9v5hd8 .framer-hho102 { flex: none; width: 100%; }\",\".framer-J2a2w.framer-v-9v5hd8 .framer-1py5g8p-container { height: auto; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-J2a2w.framer-v-9v5hd8.framer-ecnm80, .framer-J2a2w.framer-v-9v5hd8 .framer-16equhk, .framer-J2a2w.framer-v-9v5hd8 .framer-fx0g1u, .framer-J2a2w.framer-v-9v5hd8 .framer-1xud9dh, .framer-J2a2w.framer-v-9v5hd8 .framer-hs2k3g { gap: 0px; } .framer-J2a2w.framer-v-9v5hd8.framer-ecnm80 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-J2a2w.framer-v-9v5hd8.framer-ecnm80 > :first-child, .framer-J2a2w.framer-v-9v5hd8 .framer-16equhk > :first-child, .framer-J2a2w.framer-v-9v5hd8 .framer-fx0g1u > :first-child, .framer-J2a2w.framer-v-9v5hd8 .framer-1xud9dh > :first-child, .framer-J2a2w.framer-v-9v5hd8 .framer-hs2k3g > :first-child { margin-top: 0px; } .framer-J2a2w.framer-v-9v5hd8.framer-ecnm80 > :last-child, .framer-J2a2w.framer-v-9v5hd8 .framer-16equhk > :last-child, .framer-J2a2w.framer-v-9v5hd8 .framer-fx0g1u > :last-child, .framer-J2a2w.framer-v-9v5hd8 .framer-1xud9dh > :last-child, .framer-J2a2w.framer-v-9v5hd8 .framer-hs2k3g > :last-child { margin-bottom: 0px; } .framer-J2a2w.framer-v-9v5hd8 .framer-16equhk > *, .framer-J2a2w.framer-v-9v5hd8 .framer-fx0g1u > *, .framer-J2a2w.framer-v-9v5hd8 .framer-hs2k3g > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-J2a2w.framer-v-9v5hd8 .framer-1xud9dh > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 400\n * @framerIntrinsicWidth 800\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"OzXR7FtXw\":{\"layout\":[\"fixed\",\"fixed\"]},\"iiPbBXFNs\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[\"240px\",null,null,null]}}}\n * @framerVariables {\"ecOLjecbu\":\"click\",\"tmUivBZ3w\":\"neighborhood\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerYbGoCwr5c=withCSS(Component,css,\"framer-J2a2w\");export default FramerYbGoCwr5c;FramerYbGoCwr5c.displayName=\"Brochure Pop-Up Neighborhoods\";FramerYbGoCwr5c.defaultProps={height:400,width:800};addPropertyControls(FramerYbGoCwr5c,{variant:{options:[\"STZEQzcnf\",\"OzXR7FtXw\",\"iiPbBXFNs\"],optionTitles:[\"-d\",\"-t\",\"-m\"],title:\"Variant\",type:ControlType.Enum},ecOLjecbu:{title:\"Click\",type:ControlType.EventHandler},tmUivBZ3w:{defaultValue:\"\",title:\"Neighborhood\",type:ControlType.String}});addFonts(FramerYbGoCwr5c,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"SF Pro Text Light\",source:\"custom\",url:\"https://framerusercontent.com/assets/vvFDh0tH474wndDVPYeSoVwG6CE.woff2\"}]},...PhoneNumberInputFonts,...FormButtonFonts,...BorderButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerYbGoCwr5c\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"400\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"800\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"ecOLjecbu\\\":\\\"click\\\",\\\"tmUivBZ3w\\\":\\\"neighborhood\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"OzXR7FtXw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"iiPbBXFNs\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[\\\"240px\\\",null,null,null]}}}\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (259a342)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/zBWfmRDLh030siUGtlPF/Il0VjapjB767mbTJVWho/Qr3eC0Fq6.js\";const enabledGestures={mPR3wHj8m:{hover:true}};const cycleOrder=[\"AYR98ZgTG\",\"mPR3wHj8m\"];const serializationHash=\"framer-v9WHi\";const variantClassNames={AYR98ZgTG:\"framer-v-1hwigj0\",mPR3wHj8m:\"framer-v-vkhiun\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Not-Active\":\"mPR3wHj8m\",Active:\"AYR98ZgTG\"};const getProps=({click,height,id,title,width,...props})=>{return{...props,Fpr9G53kA:click??props.Fpr9G53kA,QPU8gIIdC:title??props.QPU8gIIdC??\"Education\",variant:humanReadableVariantMap[props.variant]??props.variant??\"AYR98ZgTG\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,Fpr9G53kA,QPU8gIIdC,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"AYR98ZgTG\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapx951ax=activeVariantCallback(async(...args)=>{if(Fpr9G53kA){const res=await Fpr9G53kA(...args);if(res===false)return false;}});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(gestureVariant===\"mPR3wHj8m-hover\")return false;if(baseVariant===\"mPR3wHj8m\")return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1hwigj0\",className,classNames),\"data-framer-name\":\"Active\",layoutDependency:layoutDependency,layoutId:\"AYR98ZgTG\",ref:refBinding,style:{...style},...addPropertyOverrides({\"mPR3wHj8m-hover\":{\"data-framer-name\":undefined},mPR3wHj8m:{\"data-framer-name\":\"Not-Active\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-17t2y92\",\"data-styles-preset\":\"Qr3eC0Fq6\",children:\"Education\"})}),className:\"framer-1es6cy2\",\"data-highlight\":true,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ipAtStvl3\",onTap:onTapx951ax,style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:QPU8gIIdC,variants:{\"mPR3wHj8m-hover\":{\"--extracted-a0htzi\":\"rgb(37, 37, 39)\"},mPR3wHj8m:{\"--extracted-a0htzi\":\"var(--token-c7e2995e-096b-46f2-b3fe-767689954115, rgb(110, 110, 115))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"mPR3wHj8m-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-17t2y92\",\"data-styles-preset\":\"Qr3eC0Fq6\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(37, 37, 39))\"},children:\"Education\"})})},mPR3wHj8m:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-17t2y92\",\"data-styles-preset\":\"Qr3eC0Fq6\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-c7e2995e-096b-46f2-b3fe-767689954115, rgb(110, 110, 115)))\"},children:\"Education\"})})}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-r44ha8\",layoutDependency:layoutDependency,layoutId:\"LBRWGukGJ\",style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-v9WHi.framer-8g6heo, .framer-v9WHi .framer-8g6heo { display: block; }\",\".framer-v9WHi.framer-1hwigj0 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: 38px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-v9WHi .framer-1es6cy2 { cursor: pointer; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-v9WHi .framer-r44ha8 { align-self: stretch; flex: none; height: 2px; overflow: hidden; position: relative; width: auto; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-v9WHi.framer-1hwigj0 { gap: 0px; } .framer-v9WHi.framer-1hwigj0 > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } .framer-v9WHi.framer-1hwigj0 > :first-child { margin-top: 0px; } .framer-v9WHi.framer-1hwigj0 > :last-child { margin-bottom: 0px; } }\",\".framer-v9WHi.framer-v-vkhiun.framer-1hwigj0 { cursor: pointer; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 37.5\n * @framerIntrinsicWidth 144\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"mPR3wHj8m\":{\"layout\":[\"auto\",\"fixed\"]},\"eumhdSl_0\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"Fpr9G53kA\":\"click\",\"QPU8gIIdC\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerfP8zngUcu=withCSS(Component,css,\"framer-v9WHi\");export default FramerfP8zngUcu;FramerfP8zngUcu.displayName=\"Living Exp Button\";FramerfP8zngUcu.defaultProps={height:37.5,width:144};addPropertyControls(FramerfP8zngUcu,{variant:{options:[\"AYR98ZgTG\",\"mPR3wHj8m\"],optionTitles:[\"Active\",\"Not-Active\"],title:\"Variant\",type:ControlType.Enum},Fpr9G53kA:{title:\"Click\",type:ControlType.EventHandler},QPU8gIIdC:{defaultValue:\"Education\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(FramerfP8zngUcu,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerfP8zngUcu\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"144\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"mPR3wHj8m\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"eumhdSl_0\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"Fpr9G53kA\\\":\\\"click\\\",\\\"QPU8gIIdC\\\":\\\"title\\\"}\",\"framerIntrinsicHeight\":\"37.5\",\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (259a342)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/Nsx8DM7hcMFn1Ur3flFT/QJN0hjfkMCwaqzlT5hma/GOvmZzbcb.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/bF5HJdbppV494XhsrLz4/lDPHVPrHP8oIvdQr1hoW/q9oZ9GjEX.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/ya9QZAhCi7wKbSQMbLym/b30PnYgy8FtCBleTHQEy/w2Z46ZTwW.js\";import LivingExpButton from\"https://framerusercontent.com/modules/FlUzfkZDsoBWxkum2UuJ/p4IQIPd4G8Fivk5CfedQ/fP8zngUcu.js\";const LivingExpButtonFonts=getFonts(LivingExpButton);const cycleOrder=[\"g37wqAG0R\",\"WVKbAMuJv\",\"A0JV3ZoPJ\"];const serializationHash=\"framer-IQWR1\";const variantClassNames={A0JV3ZoPJ:\"framer-v-wt9fv1\",g37wqAG0R:\"framer-v-ocgdbg\",WVKbAMuJv:\"framer-v-1scstai\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Amenities and Lifestyle\":\"g37wqAG0R\",\"Education and Healthcare\":\"WVKbAMuJv\",Transportation:\"A0JV3ZoPJ\"};const getProps=({aD,aD2,aD3,aD4,aD5,amenitiesAndLifestyleText,aT,aT2,aT3,aT4,aT5,eD,eD2,eD3,eD4,eD5,educationAndHelathcareText,eT,eT2,eT3,eT4,eT5,height,id,tD,tD2,transportationText,tT,tT2,width,...props})=>{return{...props,ACySdKbzq:aT4??props.ACySdKbzq??\"Dining and Entertainment\",BZoivsFph:educationAndHelathcareText??props.BZoivsFph??\"Dubai Creek Harbour is strategically situated close to some of the finest educational institutions and healthcare facilities in Dubai:\",dv4kCTn2y:aT??props.dv4kCTn2y??\"Dining and Entertainment\",DZyhxEh8t:aT5??props.DZyhxEh8t??\"Dining and Entertainment\",EGe2a8CTT:tD??props.EGe2a8CTT??\"Business Bay hosts a vibrant dining scene with restaurants like Prime68, Tong Thai, and Basta! offering global cuisines. The area also has stylish lounges and nightlife spots.\",g6yp0d10c:eD5??props.g6yp0d10c??\"Business Bay hosts a vibrant dining scene with restaurants like Prime68, Tong Thai, and Basta! offering global cuisines. The area also has stylish lounges and nightlife spots.\",HW4n3dxd6:aD??props.HW4n3dxd6??\"Business Bay hosts a vibrant dining scene with restaurants like Prime68, Tong Thai, and Basta! offering global cuisines. The area also has stylish lounges and nightlife spots.\",iolXJ6Xr2:aT2??props.iolXJ6Xr2??\"Dining and Entertainment\",Js0uPkYS_:aT3??props.Js0uPkYS_??\"Dining and Entertainment\",kio2eLXvI:aD3??props.kio2eLXvI??\"Business Bay hosts a vibrant dining scene with restaurants like Prime68, Tong Thai, and Basta! offering global cuisines. The area also has stylish lounges and nightlife spots.\",lF_ddyXoe:eT??props.lF_ddyXoe??\"text\",lJG681ASX:aD4??props.lJG681ASX??\"Business Bay hosts a vibrant dining scene with restaurants like Prime68, Tong Thai, and Basta! offering global cuisines. The area also has stylish lounges and nightlife spots.\",mC5YbjPEt:tT2??props.mC5YbjPEt??\"Dining\",Pk_09bYVV:aD5??props.Pk_09bYVV??\"Business Bay hosts a vibrant dining scene with restaurants like Prime68, Tong Thai, and Basta! offering global cuisines. The area also has stylish lounges and nightlife spots.\",sc1qeXSy6:eD4??props.sc1qeXSy6??\"Business Bay hosts a vibrant dining scene with restaurants like Prime68, Tong Thai, and Basta! offering global cuisines. The area also has stylish lounges and nightlife spots.\",Tk50I0Iea:eT5??props.Tk50I0Iea??\"text\",UQl0MVQel:eD3??props.UQl0MVQel??\"Business Bay hosts a vibrant dining scene with restaurants like Prime68, Tong Thai, and Basta! offering global cuisines. The area also has stylish lounges and nightlife spots.\",uRybqLnnr:eT3??props.uRybqLnnr??\"text\",variant:humanReadableVariantMap[props.variant]??props.variant??\"g37wqAG0R\",vNq0575BJ:eT2??props.vNq0575BJ??\"text\",WNaQPkGCR:amenitiesAndLifestyleText??props.WNaQPkGCR??\"Business Bay is crafted to provide a contemporary, cosmopolitan lifestyle, featuring an array of amenities that cater to every facet of urban living.\",wYdQmc0Lt:transportationText??props.wYdQmc0Lt??\"Dubai Creek Harbour is seamlessly connected to the rest of Dubai via an efficient transport network:\",XoMztyzjm:eT4??props.XoMztyzjm??\"text\",xoPBBgba8:eD2??props.xoPBBgba8??\"Business Bay hosts a vibrant dining scene with restaurants like Prime68, Tong Thai, and Basta! offering global cuisines. The area also has stylish lounges and nightlife spots.\",YtMBQXljE:tT??props.YtMBQXljE??\"Dining\",zDyoe7Gy3:aD2??props.zDyoe7Gy3??\"Business Bay hosts a vibrant dining scene with restaurants like Prime68, Tong Thai, and Basta! offering global cuisines. The area also has stylish lounges and nightlife spots.\",zjhCn8eiw:tD2??props.zjhCn8eiw??\"Business Bay hosts a vibrant dining scene with restaurants like Prime68, Tong Thai, and Basta! offering global cuisines. The area also has stylish lounges and nightlife spots.\",ZYIKLOTIH:eD??props.ZYIKLOTIH??\"Business Bay hosts a vibrant dining scene with restaurants like Prime68, Tong Thai, and Basta! offering global cuisines. The area also has stylish lounges and nightlife spots.\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,WNaQPkGCR,BZoivsFph,wYdQmc0Lt,dv4kCTn2y,HW4n3dxd6,iolXJ6Xr2,zDyoe7Gy3,Js0uPkYS_,kio2eLXvI,ACySdKbzq,lJG681ASX,DZyhxEh8t,Pk_09bYVV,lF_ddyXoe,ZYIKLOTIH,vNq0575BJ,xoPBBgba8,uRybqLnnr,UQl0MVQel,XoMztyzjm,sc1qeXSy6,Tk50I0Iea,g6yp0d10c,YtMBQXljE,EGe2a8CTT,mC5YbjPEt,zjhCn8eiw,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"g37wqAG0R\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const Fpr9G53kAmv2xr=activeVariantCallback(async(...args)=>{setVariant(\"g37wqAG0R\");});const Fpr9G53kAr6w7xo=activeVariantCallback(async(...args)=>{setVariant(\"WVKbAMuJv\");});const Fpr9G53kA12435jl=activeVariantCallback(async(...args)=>{setVariant(\"A0JV3ZoPJ\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const visible=isSet(ZYIKLOTIH);const visible1=isSet(YtMBQXljE);const visible2=isSet(WNaQPkGCR);const visible3=isSet(BZoivsFph);const visible4=isSet(wYdQmc0Lt);const isDisplayed=(value,value1,value2)=>{if(baseVariant===\"WVKbAMuJv\")return value1;if(baseVariant===\"A0JV3ZoPJ\")return value2;return value;};const visible5=isSet(iolXJ6Xr2);const visible6=isSet(vNq0575BJ);const isDisplayed1=(value,value1)=>{if(baseVariant===\"WVKbAMuJv\")return value1;return value;};const visible7=isSet(Js0uPkYS_);const visible8=isSet(uRybqLnnr);const isDisplayed2=(value,value1)=>{if(baseVariant===\"WVKbAMuJv\")return value1;if(baseVariant===\"A0JV3ZoPJ\")return false;return value;};const visible9=isSet(ACySdKbzq);const visible10=isSet(XoMztyzjm);const visible11=isSet(DZyhxEh8t);const visible12=isSet(Tk50I0Iea);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-ocgdbg\",className,classNames),\"data-framer-name\":\"Amenities and Lifestyle\",layoutDependency:layoutDependency,layoutId:\"g37wqAG0R\",ref:refBinding,style:{backgroundColor:\"rgb(255, 255, 255)\",...style},...addPropertyOverrides({A0JV3ZoPJ:{\"data-framer-name\":\"Transportation\"},WVKbAMuJv:{\"data-framer-name\":\"Education and Healthcare\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gl4gft\",\"data-framer-name\":\"Header\",layoutDependency:layoutDependency,layoutId:\"QXMzHx4tw\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1f2rsz7\",\"data-framer-name\":\"Buttons\",layoutDependency:layoutDependency,layoutId:\"WMkgXM8oH\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:37,y:(componentViewport?.y||0)+0+0+0+0+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-8ycspf-container\",layoutDependency:layoutDependency,layoutId:\"VCdtO8eTq-container\",nodeId:\"VCdtO8eTq\",rendersWithMotion:true,scopeId:\"zMqHYrJLG\",children:/*#__PURE__*/_jsx(LivingExpButton,{Fpr9G53kA:Fpr9G53kAmv2xr,height:\"100%\",id:\"VCdtO8eTq\",layoutId:\"VCdtO8eTq\",QPU8gIIdC:\"Amenities and Lifestyle\",variant:\"AYR98ZgTG\",width:\"100%\",...addPropertyOverrides({A0JV3ZoPJ:{variant:\"mPR3wHj8m\"},WVKbAMuJv:{variant:\"mPR3wHj8m\"}},baseVariant,gestureVariant)})})}),visible&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:37,y:(componentViewport?.y||0)+0+0+0+0+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-wp9d8u-container\",layoutDependency:layoutDependency,layoutId:\"yDrY0QzGp-container\",nodeId:\"yDrY0QzGp\",rendersWithMotion:true,scopeId:\"zMqHYrJLG\",children:/*#__PURE__*/_jsx(LivingExpButton,{Fpr9G53kA:Fpr9G53kAr6w7xo,height:\"100%\",id:\"yDrY0QzGp\",layoutId:\"yDrY0QzGp\",QPU8gIIdC:\"Education and Healthcare\",variant:\"mPR3wHj8m\",width:\"100%\",...addPropertyOverrides({WVKbAMuJv:{variant:\"AYR98ZgTG\"}},baseVariant,gestureVariant)})})}),visible1&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:37,y:(componentViewport?.y||0)+0+0+0+0+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-tqlydi-container\",layoutDependency:layoutDependency,layoutId:\"ZM6Yptv5u-container\",nodeId:\"ZM6Yptv5u\",rendersWithMotion:true,scopeId:\"zMqHYrJLG\",children:/*#__PURE__*/_jsx(LivingExpButton,{Fpr9G53kA:Fpr9G53kA12435jl,height:\"100%\",id:\"ZM6Yptv5u\",layoutId:\"ZM6Yptv5u\",QPU8gIIdC:\"Transportation\",variant:\"mPR3wHj8m\",width:\"100%\",...addPropertyOverrides({A0JV3ZoPJ:{variant:\"AYR98ZgTG\"}},baseVariant,gestureVariant)})})})]}),isDisplayed(visible2,visible3,visible4)&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-129quxm\",\"data-styles-preset\":\"GOvmZzbcb\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c7e2995e-096b-46f2-b3fe-767689954115, rgb(110, 110, 115)))\"},children:\"Business Bay is crafted to provide a contemporary, cosmopolitan lifestyle, featuring an array of amenities that cater to every facet of urban living.\"})}),className:\"framer-gciyux\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"EwIdeHKzc\",style:{\"--extracted-r6o4lv\":\"var(--token-c7e2995e-096b-46f2-b3fe-767689954115, rgb(110, 110, 115))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:WNaQPkGCR,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({A0JV3ZoPJ:{text:wYdQmc0Lt},WVKbAMuJv:{text:BZoivsFph}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1b0o8kc\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"GyRsuevjE\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fsv1zv\",\"data-framer-name\":\"1\",layoutDependency:layoutDependency,layoutId:\"WAsXDUR1b\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-z9z5m8\",\"data-styles-preset\":\"w2Z46ZTwW\",children:\"Dining and Entertainment\"})}),className:\"framer-b2ou5g\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"pWm9OVWif\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:dv4kCTn2y,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({A0JV3ZoPJ:{text:YtMBQXljE},WVKbAMuJv:{text:lF_ddyXoe}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ily4t7\",\"data-styles-preset\":\"q9oZ9GjEX\",children:\"Business Bay hosts a vibrant dining scene with restaurants like Prime68, Tong Thai, and Basta! offering global cuisines. The area also has stylish lounges and nightlife spots.\"})}),className:\"framer-vu2h3g\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"WeN94jZ2X\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:HW4n3dxd6,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({A0JV3ZoPJ:{text:EGe2a8CTT},WVKbAMuJv:{text:ZYIKLOTIH}},baseVariant,gestureVariant)})]}),isDisplayed1(visible5,visible6)&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ohhj2n\",\"data-framer-name\":\"2\",layoutDependency:layoutDependency,layoutId:\"NxOpbGXJD\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-z9z5m8\",\"data-styles-preset\":\"w2Z46ZTwW\",children:\"Dining and Entertainment\"})}),className:\"framer-8fak3r\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"pCFGw7LK4\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:iolXJ6Xr2,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({A0JV3ZoPJ:{text:mC5YbjPEt},WVKbAMuJv:{text:vNq0575BJ}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ily4t7\",\"data-styles-preset\":\"q9oZ9GjEX\",children:\"Business Bay hosts a vibrant dining scene with restaurants like Prime68, Tong Thai, and Basta! offering global cuisines. The area also has stylish lounges and nightlife spots.\"})}),className:\"framer-1ka5rcn\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"MezhIZ1FY\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:zDyoe7Gy3,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({A0JV3ZoPJ:{text:zjhCn8eiw},WVKbAMuJv:{text:xoPBBgba8}},baseVariant,gestureVariant)})]}),isDisplayed2(visible7,visible8)&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1oic3d0\",\"data-framer-name\":\"3\",layoutDependency:layoutDependency,layoutId:\"NOcBAvJwD\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-z9z5m8\",\"data-styles-preset\":\"w2Z46ZTwW\",children:\"Dining and Entertainment\"})}),className:\"framer-vw8ht6\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"WXCz1XCri\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:Js0uPkYS_,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({WVKbAMuJv:{text:uRybqLnnr}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ily4t7\",\"data-styles-preset\":\"q9oZ9GjEX\",children:\"Business Bay hosts a vibrant dining scene with restaurants like Prime68, Tong Thai, and Basta! offering global cuisines. The area also has stylish lounges and nightlife spots.\"})}),className:\"framer-1kuu3cj\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"SmCCKtmsq\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:kio2eLXvI,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({WVKbAMuJv:{text:UQl0MVQel}},baseVariant,gestureVariant)})]}),isDisplayed2(visible9,visible10)&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-n4b4xt\",\"data-framer-name\":\"4\",layoutDependency:layoutDependency,layoutId:\"r_lewn9um\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-z9z5m8\",\"data-styles-preset\":\"w2Z46ZTwW\",children:\"Dining and Entertainment\"})}),className:\"framer-tf69qi\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"poIwepWoL\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:ACySdKbzq,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({WVKbAMuJv:{text:XoMztyzjm}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ily4t7\",\"data-styles-preset\":\"q9oZ9GjEX\",children:\"Business Bay hosts a vibrant dining scene with restaurants like Prime68, Tong Thai, and Basta! offering global cuisines. The area also has stylish lounges and nightlife spots.\"})}),className:\"framer-3m912j\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"vNbWBHWMy\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:lJG681ASX,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({WVKbAMuJv:{text:sc1qeXSy6}},baseVariant,gestureVariant)})]}),isDisplayed2(visible11,visible12)&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-tsuy7z\",\"data-framer-name\":\"5\",layoutDependency:layoutDependency,layoutId:\"FirthrnMC\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-z9z5m8\",\"data-styles-preset\":\"w2Z46ZTwW\",children:\"Dining and Entertainment\"})}),className:\"framer-17y70he\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"QyZfHsYpw\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:DZyhxEh8t,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({WVKbAMuJv:{text:Tk50I0Iea}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ily4t7\",\"data-styles-preset\":\"q9oZ9GjEX\",children:\"Business Bay hosts a vibrant dining scene with restaurants like Prime68, Tong Thai, and Basta! offering global cuisines. The area also has stylish lounges and nightlife spots.\"})}),className:\"framer-l5wbri\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"x20d_oFJQ\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:Pk_09bYVV,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({WVKbAMuJv:{text:g6yp0d10c}},baseVariant,gestureVariant)})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-IQWR1.framer-14ml5ot, .framer-IQWR1 .framer-14ml5ot { display: block; }\",\".framer-IQWR1.framer-ocgdbg { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 992px; }\",\".framer-IQWR1 .framer-gl4gft { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-IQWR1 .framer-1f2rsz7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: auto; padding: 0px 0px 16px 0px; position: relative; width: 100%; }\",\".framer-IQWR1 .framer-8ycspf-container, .framer-IQWR1 .framer-wp9d8u-container, .framer-IQWR1 .framer-tqlydi-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-IQWR1 .framer-gciyux, .framer-IQWR1 .framer-b2ou5g, .framer-IQWR1 .framer-vu2h3g, .framer-IQWR1 .framer-8fak3r, .framer-IQWR1 .framer-1ka5rcn, .framer-IQWR1 .framer-vw8ht6, .framer-IQWR1 .framer-1kuu3cj, .framer-IQWR1 .framer-tf69qi, .framer-IQWR1 .framer-3m912j, .framer-IQWR1 .framer-17y70he, .framer-IQWR1 .framer-l5wbri { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-IQWR1 .framer-1b0o8kc { 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: auto; padding: 0px 0px 24px 0px; position: relative; width: 100%; }\",\".framer-IQWR1 .framer-1fsv1zv, .framer-IQWR1 .framer-1ohhj2n, .framer-IQWR1 .framer-1oic3d0, .framer-IQWR1 .framer-n4b4xt, .framer-IQWR1 .framer-tsuy7z { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 280px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-IQWR1.framer-ocgdbg, .framer-IQWR1 .framer-gl4gft, .framer-IQWR1 .framer-1f2rsz7, .framer-IQWR1 .framer-1b0o8kc, .framer-IQWR1 .framer-1fsv1zv, .framer-IQWR1 .framer-1ohhj2n, .framer-IQWR1 .framer-1oic3d0, .framer-IQWR1 .framer-n4b4xt, .framer-IQWR1 .framer-tsuy7z { gap: 0px; } .framer-IQWR1.framer-ocgdbg > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-IQWR1.framer-ocgdbg > :first-child, .framer-IQWR1 .framer-gl4gft > :first-child, .framer-IQWR1 .framer-1fsv1zv > :first-child, .framer-IQWR1 .framer-1ohhj2n > :first-child, .framer-IQWR1 .framer-1oic3d0 > :first-child, .framer-IQWR1 .framer-n4b4xt > :first-child, .framer-IQWR1 .framer-tsuy7z > :first-child { margin-top: 0px; } .framer-IQWR1.framer-ocgdbg > :last-child, .framer-IQWR1 .framer-gl4gft > :last-child, .framer-IQWR1 .framer-1fsv1zv > :last-child, .framer-IQWR1 .framer-1ohhj2n > :last-child, .framer-IQWR1 .framer-1oic3d0 > :last-child, .framer-IQWR1 .framer-n4b4xt > :last-child, .framer-IQWR1 .framer-tsuy7z > :last-child { margin-bottom: 0px; } .framer-IQWR1 .framer-gl4gft > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-IQWR1 .framer-1f2rsz7 > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-IQWR1 .framer-1f2rsz7 > :first-child, .framer-IQWR1 .framer-1b0o8kc > :first-child { margin-left: 0px; } .framer-IQWR1 .framer-1f2rsz7 > :last-child, .framer-IQWR1 .framer-1b0o8kc > :last-child { margin-right: 0px; } .framer-IQWR1 .framer-1b0o8kc > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-IQWR1 .framer-1fsv1zv > *, .framer-IQWR1 .framer-1ohhj2n > *, .framer-IQWR1 .framer-1oic3d0 > *, .framer-IQWR1 .framer-n4b4xt > *, .framer-IQWR1 .framer-tsuy7z > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 342\n * @framerIntrinsicWidth 992\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"WVKbAMuJv\":{\"layout\":[\"fixed\",\"auto\"]},\"A0JV3ZoPJ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"WNaQPkGCR\":\"amenitiesAndLifestyleText\",\"BZoivsFph\":\"educationAndHelathcareText\",\"wYdQmc0Lt\":\"transportationText\",\"dv4kCTn2y\":\"aT\",\"HW4n3dxd6\":\"aD\",\"iolXJ6Xr2\":\"aT2\",\"zDyoe7Gy3\":\"aD2\",\"Js0uPkYS_\":\"aT3\",\"kio2eLXvI\":\"aD3\",\"ACySdKbzq\":\"aT4\",\"lJG681ASX\":\"aD4\",\"DZyhxEh8t\":\"aT5\",\"Pk_09bYVV\":\"aD5\",\"lF_ddyXoe\":\"eT\",\"ZYIKLOTIH\":\"eD\",\"vNq0575BJ\":\"eT2\",\"xoPBBgba8\":\"eD2\",\"uRybqLnnr\":\"eT3\",\"UQl0MVQel\":\"eD3\",\"XoMztyzjm\":\"eT4\",\"sc1qeXSy6\":\"eD4\",\"Tk50I0Iea\":\"eT5\",\"g6yp0d10c\":\"eD5\",\"YtMBQXljE\":\"tT\",\"EGe2a8CTT\":\"tD\",\"mC5YbjPEt\":\"tT2\",\"zjhCn8eiw\":\"tD2\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerzMqHYrJLG=withCSS(Component,css,\"framer-IQWR1\");export default FramerzMqHYrJLG;FramerzMqHYrJLG.displayName=\"Living Experience\";FramerzMqHYrJLG.defaultProps={height:342,width:992};addPropertyControls(FramerzMqHYrJLG,{variant:{options:[\"g37wqAG0R\",\"WVKbAMuJv\",\"A0JV3ZoPJ\"],optionTitles:[\"Amenities and Lifestyle\",\"Education and Healthcare\",\"Transportation\"],title:\"Variant\",type:ControlType.Enum},WNaQPkGCR:{defaultValue:\"Business Bay is crafted to provide a contemporary, cosmopolitan lifestyle, featuring an array of amenities that cater to every facet of urban living.\",displayTextArea:false,title:\"Amenities and Lifestyle Text\",type:ControlType.String},BZoivsFph:{defaultValue:\"Dubai Creek Harbour is strategically situated close to some of the finest educational institutions and healthcare facilities in Dubai:\",title:\"Education and Helathcare Text\",type:ControlType.String},wYdQmc0Lt:{defaultValue:\"Dubai Creek Harbour is seamlessly connected to the rest of Dubai via an efficient transport network:\",displayTextArea:false,title:\"Transportation Text\",type:ControlType.String},dv4kCTn2y:{defaultValue:\"Dining and Entertainment\",displayTextArea:false,title:\"AT\",type:ControlType.String},HW4n3dxd6:{defaultValue:\"Business Bay hosts a vibrant dining scene with restaurants like Prime68, Tong Thai, and Basta! offering global cuisines. The area also has stylish lounges and nightlife spots.\",displayTextArea:false,title:\"AD\",type:ControlType.String},iolXJ6Xr2:{defaultValue:\"Dining and Entertainment\",displayTextArea:false,title:\"AT 2\",type:ControlType.String},zDyoe7Gy3:{defaultValue:\"Business Bay hosts a vibrant dining scene with restaurants like Prime68, Tong Thai, and Basta! offering global cuisines. The area also has stylish lounges and nightlife spots.\",displayTextArea:false,title:\"AD 2\",type:ControlType.String},Js0uPkYS_:{defaultValue:\"Dining and Entertainment\",displayTextArea:false,title:\"AT 3\",type:ControlType.String},kio2eLXvI:{defaultValue:\"Business Bay hosts a vibrant dining scene with restaurants like Prime68, Tong Thai, and Basta! offering global cuisines. The area also has stylish lounges and nightlife spots.\",displayTextArea:false,title:\"AD 3\",type:ControlType.String},ACySdKbzq:{defaultValue:\"Dining and Entertainment\",displayTextArea:false,title:\"AT 4\",type:ControlType.String},lJG681ASX:{defaultValue:\"Business Bay hosts a vibrant dining scene with restaurants like Prime68, Tong Thai, and Basta! offering global cuisines. The area also has stylish lounges and nightlife spots.\",displayTextArea:false,title:\"AD 4\",type:ControlType.String},DZyhxEh8t:{defaultValue:\"Dining and Entertainment\",displayTextArea:false,title:\"AT 5\",type:ControlType.String},Pk_09bYVV:{defaultValue:\"Business Bay hosts a vibrant dining scene with restaurants like Prime68, Tong Thai, and Basta! offering global cuisines. The area also has stylish lounges and nightlife spots.\",displayTextArea:false,title:\"AD 5\",type:ControlType.String},lF_ddyXoe:{defaultValue:\"text\",displayTextArea:false,title:\"ET\",type:ControlType.String},ZYIKLOTIH:{defaultValue:\"Business Bay hosts a vibrant dining scene with restaurants like Prime68, Tong Thai, and Basta! offering global cuisines. The area also has stylish lounges and nightlife spots.\",displayTextArea:false,title:\"ED\",type:ControlType.String},vNq0575BJ:{defaultValue:\"text\",displayTextArea:false,title:\"ET 2\",type:ControlType.String},xoPBBgba8:{defaultValue:\"Business Bay hosts a vibrant dining scene with restaurants like Prime68, Tong Thai, and Basta! offering global cuisines. The area also has stylish lounges and nightlife spots.\",displayTextArea:false,title:\"ED 2\",type:ControlType.String},uRybqLnnr:{defaultValue:\"text\",displayTextArea:false,title:\"ET 3\",type:ControlType.String},UQl0MVQel:{defaultValue:\"Business Bay hosts a vibrant dining scene with restaurants like Prime68, Tong Thai, and Basta! offering global cuisines. The area also has stylish lounges and nightlife spots.\",displayTextArea:false,title:\"ED 3\",type:ControlType.String},XoMztyzjm:{defaultValue:\"text\",displayTextArea:false,title:\"ET 4\",type:ControlType.String},sc1qeXSy6:{defaultValue:\"Business Bay hosts a vibrant dining scene with restaurants like Prime68, Tong Thai, and Basta! offering global cuisines. The area also has stylish lounges and nightlife spots.\",displayTextArea:false,title:\"ED 4\",type:ControlType.String},Tk50I0Iea:{defaultValue:\"text\",displayTextArea:false,title:\"ET 5\",type:ControlType.String},g6yp0d10c:{defaultValue:\"Business Bay hosts a vibrant dining scene with restaurants like Prime68, Tong Thai, and Basta! offering global cuisines. The area also has stylish lounges and nightlife spots.\",displayTextArea:false,title:\"ED 5\",type:ControlType.String},YtMBQXljE:{defaultValue:\"Dining\",displayTextArea:false,title:\"TT\",type:ControlType.String},EGe2a8CTT:{defaultValue:\"Business Bay hosts a vibrant dining scene with restaurants like Prime68, Tong Thai, and Basta! offering global cuisines. The area also has stylish lounges and nightlife spots.\",displayTextArea:false,title:\"TD\",type:ControlType.String},mC5YbjPEt:{defaultValue:\"Dining\",displayTextArea:false,title:\"TT 2\",type:ControlType.String},zjhCn8eiw:{defaultValue:\"Business Bay hosts a vibrant dining scene with restaurants like Prime68, Tong Thai, and Basta! offering global cuisines. The area also has stylish lounges and nightlife spots.\",displayTextArea:false,title:\"TD 2\",type:ControlType.String}});addFonts(FramerzMqHYrJLG,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...LivingExpButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerzMqHYrJLG\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"342\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"992\",\"framerVariables\":\"{\\\"WNaQPkGCR\\\":\\\"amenitiesAndLifestyleText\\\",\\\"BZoivsFph\\\":\\\"educationAndHelathcareText\\\",\\\"wYdQmc0Lt\\\":\\\"transportationText\\\",\\\"dv4kCTn2y\\\":\\\"aT\\\",\\\"HW4n3dxd6\\\":\\\"aD\\\",\\\"iolXJ6Xr2\\\":\\\"aT2\\\",\\\"zDyoe7Gy3\\\":\\\"aD2\\\",\\\"Js0uPkYS_\\\":\\\"aT3\\\",\\\"kio2eLXvI\\\":\\\"aD3\\\",\\\"ACySdKbzq\\\":\\\"aT4\\\",\\\"lJG681ASX\\\":\\\"aD4\\\",\\\"DZyhxEh8t\\\":\\\"aT5\\\",\\\"Pk_09bYVV\\\":\\\"aD5\\\",\\\"lF_ddyXoe\\\":\\\"eT\\\",\\\"ZYIKLOTIH\\\":\\\"eD\\\",\\\"vNq0575BJ\\\":\\\"eT2\\\",\\\"xoPBBgba8\\\":\\\"eD2\\\",\\\"uRybqLnnr\\\":\\\"eT3\\\",\\\"UQl0MVQel\\\":\\\"eD3\\\",\\\"XoMztyzjm\\\":\\\"eT4\\\",\\\"sc1qeXSy6\\\":\\\"eD4\\\",\\\"Tk50I0Iea\\\":\\\"eT5\\\",\\\"g6yp0d10c\\\":\\\"eD5\\\",\\\"YtMBQXljE\\\":\\\"tT\\\",\\\"EGe2a8CTT\\\":\\\"tD\\\",\\\"mC5YbjPEt\\\":\\\"tT2\\\",\\\"zjhCn8eiw\\\":\\\"tD2\\\"}\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WVKbAMuJv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"A0JV3ZoPJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (259a342)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"}]}];export const css=['.framer-V09gJ .framer-styles-preset-mumkll:not(.rich-text-wrapper), .framer-V09gJ .framer-styles-preset-mumkll.rich-text-wrapper p { --framer-font-family: \"Inter\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 12px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0.01em; --framer-line-height: 16px; --framer-paragraph-spacing: 12px; --framer-text-alignment: start; --framer-text-color: var(--token-173014d8-0c72-48b8-b8ac-4624d6267f4b, #2c2c2e); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1023px) and (min-width: 768px) { .framer-V09gJ .framer-styles-preset-mumkll:not(.rich-text-wrapper), .framer-V09gJ .framer-styles-preset-mumkll.rich-text-wrapper p { --framer-font-family: \"Inter\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 12px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0.01em; --framer-line-height: 16px; --framer-paragraph-spacing: 12px; --framer-text-alignment: start; --framer-text-color: var(--token-173014d8-0c72-48b8-b8ac-4624d6267f4b, #2c2c2e); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 767px) and (min-width: 0px) { .framer-V09gJ .framer-styles-preset-mumkll:not(.rich-text-wrapper), .framer-V09gJ .framer-styles-preset-mumkll.rich-text-wrapper p { --framer-font-family: \"Inter\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 10px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0.01em; --framer-line-height: 14px; --framer-paragraph-spacing: 10px; --framer-text-alignment: start; --framer-text-color: var(--token-173014d8-0c72-48b8-b8ac-4624d6267f4b, #2c2c2e); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-V09gJ\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (b2780b5)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-Italic\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"}]}];export const css=['.framer-7qKEB .framer-styles-preset-k2493c { --framer-blockquote-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-blockquote-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-blockquote-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-blockquote-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-blockquote-font-size: 16px; --framer-blockquote-font-style: italic; --framer-blockquote-font-style-bold: normal; --framer-blockquote-font-style-bold-italic: italic; --framer-blockquote-font-style-italic: italic; --framer-blockquote-font-variation-axes: normal; --framer-blockquote-font-weight: 400; --framer-blockquote-font-weight-bold: 700; --framer-blockquote-font-weight-bold-italic: 700; --framer-blockquote-font-weight-italic: 400; --framer-blockquote-letter-spacing: 0em; --framer-blockquote-line-height: 1.8em; --framer-blockquote-paragraph-spacing: 20px; --framer-blockquote-text-color: #999999; --framer-blockquote-text-stroke-color: initial; --framer-blockquote-text-stroke-width: initial; --framer-font-open-type-features: normal; padding: 0px 0px 0px 22px; position: relative; }','.framer-7qKEB .framer-styles-preset-k2493c::before { background-color: #ddd; border-radius: 1px; content: \" \"; display: block; height: 100%; left: 0px; position: absolute; top: 0px; width: 2px; }'];export const className=\"framer-7qKEB\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (2c4b293)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Fragment Mono-regular\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Fragment Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/fragmentmono/v4/4iCr6K5wfMRRjxp0DA6-2CLnN4FNh4UI_1U.woff2\",weight:\"400\"}]}];export const css=['.framer-oBzIu .framer-styles-preset-hqhzm1 { --framer-code-font-family: \"Fragment Mono\", monospace; --framer-code-font-style: normal; --framer-code-font-weight: 400; --framer-code-text-color: #333; --framer-font-size-scale: 1; background-color: rgba(0, 0, 0, 0.1); border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; padding-bottom: 0.1em; padding-left: 0.2em; padding-right: 0.2em; padding-top: 0.1em; }'];export const className=\"framer-oBzIu\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (259a342)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-Medium\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-MediumItalic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/khkJkwSL66WFg8SX6Wa726c.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/0E7IMbDzcGABpBwwqNEt60wU0w.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/NTJ0nQgIF0gcDelS14zQ9NR9Q.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/QrcNhgEPfRl0LS8qz5Ln8olanl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JEXmejW8mXOYMtt0hyRg811kHac.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/ksvR4VsLksjpSwnC2fPgHRNMw.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/uy9s0iWuxiNnVt8EpTI3gzohpwo.woff2\",weight:\"500\"}]}];export const css=['.framer-Ih9er .framer-styles-preset-bfuvub:not(.rich-text-wrapper), .framer-Ih9er .framer-styles-preset-bfuvub.rich-text-wrapper h6 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0em; --framer-line-height: 24px; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1023px) and (min-width: 768px) { .framer-Ih9er .framer-styles-preset-bfuvub:not(.rich-text-wrapper), .framer-Ih9er .framer-styles-preset-bfuvub.rich-text-wrapper h6 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0em; --framer-line-height: 24px; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 767px) and (min-width: 0px) { .framer-Ih9er .framer-styles-preset-bfuvub:not(.rich-text-wrapper), .framer-Ih9er .framer-styles-preset-bfuvub.rich-text-wrapper h6 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 9px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0em; --framer-line-height: 11px; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-Ih9er\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (0c5492c)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Poppins-variable\",\"FS;Poppins-variableVF=IndnaHQiIDUwMA==\",\"FS;Poppins-variableVF=IndnaHQiIDUwMA==\",\"FS;Poppins-variableVF=IndnaHQiIDUwMA==\"]);const variationAxes=[{defaultValue:100,maxValue:900,minValue:100,name:\"Weight\",tag:\"wght\"}];export const fonts=[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/DXWQGUHDKBI6OC6VABLBIH32VNWJYNX7/AHNAY7DQAEGE2SZPLPBG5BENKLEA34XN/KYQLPR2735WAT5CT22Y22PYHV3W52QJO.woff2\",variationAxes,weight:\"400\"}]}];export const css=['.framer-flQsm .framer-styles-preset-16ftzfw:not(.rich-text-wrapper), .framer-flQsm .framer-styles-preset-16ftzfw.rich-text-wrapper p { --framer-font-family: \"Poppins Variable\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Poppins Variable\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Poppins Variable\", \"Poppins Placeholder\", sans-serif; --framer-font-family-italic: \"Poppins Variable\", \"Poppins Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: normal; --framer-font-style-italic: normal; --framer-font-variation-axes: \"wght\" 500; --framer-font-variation-axes-bold: \"wght\" 500; --framer-font-variation-axes-bold-italic: \"wght\" 500; --framer-font-variation-axes-italic: \"wght\" 500; --framer-font-weight: 400; --framer-font-weight-bold: 400; --framer-font-weight-bold-italic: 400; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-f9c71fdf-6f1e-473a-96d5-e5fadc660687, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-flQsm\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (259a342)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,FormBooleanInput,FormContainer,FormPlainTextInput,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,SVG,useActiveVariantCallback,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLoadMorePaginatedQuery,useLocaleCode,useLocaleInfo,useOverlayState,useQueryData,useRouteElementId,useRouter,withCSS,withFX,withVariantAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import RichTextCarousel from\"https://framerusercontent.com/modules/6SFQOOr7pyMlZBzgKSs8/m2QVSRgfdp6eWmcFy5IG/Image_carousel.js\";import GoogleMaps from\"https://framerusercontent.com/modules/Hbc0lxqGSRzFG6uMT9yO/jZfB18ggDrqER5ihmIsa/GoogleMaps.js\";import PhoneNumberInput from\"https://framerusercontent.com/modules/IQzDFpniaD3AmKydBXP4/Cs0w5Su72eeuirGvKldQ/PhoneNumberInput.js\";import ArrowButton from\"#framer/local/canvasComponent/AS0koYtjX/AS0koYtjX.js\";import Newsletter from\"#framer/local/canvasComponent/ch2visMIa/ch2visMIa.js\";import WebinarSticky from\"#framer/local/canvasComponent/cXUODEq8x/cXUODEq8x.js\";import Card from\"#framer/local/canvasComponent/E9_Ihgsax/E9_Ihgsax.js\";import BrochureSection from\"#framer/local/canvasComponent/IApucC3CU/IApucC3CU.js\";import Breadcrumb from\"#framer/local/canvasComponent/IXbY4Gmbw/IXbY4Gmbw.js\";import PrimaryButton from\"#framer/local/canvasComponent/LOo7LSFzj/LOo7LSFzj.js\";import OverviewTextAreas from\"#framer/local/canvasComponent/nbdzcR37D/nbdzcR37D.js\";import ListingCard from\"#framer/local/canvasComponent/rO8hPdsfm/rO8hPdsfm.js\";import Navigation from\"#framer/local/canvasComponent/tRy2IE4jC/tRy2IE4jC.js\";import Attraction from\"#framer/local/canvasComponent/UC5RjfvoP/UC5RjfvoP.js\";import FormButton from\"#framer/local/canvasComponent/vdpuiWdxl/vdpuiWdxl.js\";import Footer from\"#framer/local/canvasComponent/vLFbz25nr/vLFbz25nr.js\";import FAQNeighborhoods from\"#framer/local/canvasComponent/wf3F6kXmh/wf3F6kXmh.js\";import BrochurePopUpNeighborhoods from\"#framer/local/canvasComponent/YbGoCwr5c/YbGoCwr5c.js\";import LivingExperience from\"#framer/local/canvasComponent/zMqHYrJLG/zMqHYrJLG.js\";import Areas from\"#framer/local/collection/IEuJPSie2/IEuJPSie2.js\";import Listings from\"#framer/local/collection/xGCYQ2oay/xGCYQ2oay.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle3 from\"#framer/local/css/aASqjXSUD/aASqjXSUD.js\";import*as sharedStyle10 from\"#framer/local/css/d228UZW4I/d228UZW4I.js\";import*as sharedStyle20 from\"#framer/local/css/Dx00gbLoD/Dx00gbLoD.js\";import*as sharedStyle18 from\"#framer/local/css/fiaekDnOL/fiaekDnOL.js\";import*as sharedStyle5 from\"#framer/local/css/GOvmZzbcb/GOvmZzbcb.js\";import*as sharedStyle16 from\"#framer/local/css/gphyc8U_f/gphyc8U_f.js\";import*as sharedStyle19 from\"#framer/local/css/HLmKA6K2L/HLmKA6K2L.js\";import*as sharedStyle8 from\"#framer/local/css/Ja3AimCHD/Ja3AimCHD.js\";import*as sharedStyle15 from\"#framer/local/css/jTmNTFQG6/jTmNTFQG6.js\";import*as sharedStyle7 from\"#framer/local/css/JTX3HQvfv/JTX3HQvfv.js\";import*as sharedStyle17 from\"#framer/local/css/KdCYa7hZn/KdCYa7hZn.js\";import*as sharedStyle6 from\"#framer/local/css/mxBw7p9ep/mxBw7p9ep.js\";import*as sharedStyle12 from\"#framer/local/css/nS6HJGGm1/nS6HJGGm1.js\";import*as sharedStyle4 from\"#framer/local/css/oYdqPh_BW/oYdqPh_BW.js\";import*as sharedStyle2 from\"#framer/local/css/P42fRLtVU/P42fRLtVU.js\";import*as sharedStyle13 from\"#framer/local/css/q9oZ9GjEX/q9oZ9GjEX.js\";import*as sharedStyle9 from\"#framer/local/css/Qr3eC0Fq6/Qr3eC0Fq6.js\";import*as sharedStyle11 from\"#framer/local/css/w2Z46ZTwW/w2Z46ZTwW.js\";import*as sharedStyle1 from\"#framer/local/css/YFM5chc_2/YFM5chc_2.js\";import*as sharedStyle14 from\"#framer/local/css/yOwChGEI6/yOwChGEI6.js\";import*as sharedStyle from\"#framer/local/css/ZovHz6Ljo/ZovHz6Ljo.js\";import metadataProvider from\"#framer/local/webPageMetadata/iCL82Es4G/iCL82Es4G.js\";const ArrowButtonFonts=getFonts(ArrowButton);const ContainerWithFX=withFX(Container);const NavigationFonts=getFonts(Navigation);const WebinarStickyFonts=getFonts(WebinarSticky);const WebinarStickyWithVariantAppearEffect=withVariantAppearEffect(WebinarSticky);const BreadcrumbFonts=getFonts(Breadcrumb);const PhoneNumberInputFonts=getFonts(PhoneNumberInput);const FormButtonFonts=getFonts(FormButton);const ListingCardFonts=getFonts(ListingCard);const RichTextCarouselFonts=getFonts(RichTextCarousel);const OverviewTextAreasFonts=getFonts(OverviewTextAreas);const PrimaryButtonFonts=getFonts(PrimaryButton);const CardFonts=getFonts(Card);const LivingExperienceFonts=getFonts(LivingExperience);const GoogleMapsFonts=getFonts(GoogleMaps);const AttractionFonts=getFonts(Attraction);const RichTextWithFX=withFX(RichText);const FAQNeighborhoodsFonts=getFonts(FAQNeighborhoods);const NewsletterFonts=getFonts(Newsletter);const BrochureSectionFonts=getFonts(BrochureSection);const BrochurePopUpNeighborhoodsFonts=getFonts(BrochurePopUpNeighborhoods);const FooterFonts=getFonts(Footer);const breakpoints={cFjCu5Eon:\"(min-width: 768px) and (max-width: 1023px)\",dfvxdwsF8:\"(max-width: 767px)\",FD4CaGqpb:\"(min-width: 1024px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-KcJ3T\";const variantClassNames={cFjCu5Eon:\"framer-v-1eix6fo\",dfvxdwsF8:\"framer-v-623a27\",FD4CaGqpb:\"framer-v-1ruaiiy\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const formVariants=(form,variants,currentVariant)=>{switch(form.state){case\"success\":return variants.success??currentVariant;case\"pending\":return variants.pending??currentVariant;case\"error\":return variants.error??currentVariant;case\"incomplete\":return variants.incomplete??currentVariant;}};const numberToString=(value,options={},activeLocale)=>{const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;const{useGrouping,notation,compactDisplay,style,currency,currencyDisplay,unit,unitDisplay,minimumFractionDigits,maximumFractionDigits,minimumIntegerDigits}=options;const formatOptions={useGrouping,notation,compactDisplay,style,currency,currencyDisplay,unit,unitDisplay,minimumFractionDigits,maximumFractionDigits,minimumIntegerDigits};const number=Number(value);try{return number.toLocaleString(locale,formatOptions);}catch{try{return number.toLocaleString(fallbackLocale,formatOptions);}catch{return number.toLocaleString();}}};const suffix=(value,suffix)=>{if(typeof value===\"string\"&&typeof suffix===\"string\"){return value+suffix;}else if(typeof value===\"string\"){return value;}else if(typeof suffix===\"string\"){return suffix;}return\"\";};const equals=(a,b)=>{return typeof a===\"string\"&&typeof b===\"string\"?a.toLowerCase()===b.toLowerCase():a===b;};const negate=value=>{return!value;};const QueryData=({query,pageSize,children})=>{const{paginatedQuery,paginationInfo,loadMore}=useLoadMorePaginatedQuery(query,pageSize,\"UjaBtmcdJ\");const data=useQueryData(paginatedQuery);return children(data,paginationInfo,loadMore);};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:700};const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:700};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};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 lessThan=(a,b)=>{return typeof a===\"number\"&&typeof b===\"number\"?a<b:false;};const prefix=(value,prefix)=>{if(typeof value===\"string\"&&typeof prefix===\"string\"){return prefix+value;}else if(typeof value===\"string\"){return value;}else if(typeof prefix===\"string\"){return prefix;}return\"\";};const QueryData1=({query,pageSize,children})=>{const{paginatedQuery,paginationInfo,loadMore}=useLoadMorePaginatedQuery(query,pageSize,\"I8h8jKhku\");const data=useQueryData(paginatedQuery);return children(data,paginationInfo,loadMore);};const toString=value=>{return typeof value===\"string\"?value:String(value);};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50};const transition3={damping:30,delay:0,mass:1,stiffness:200,type:\"spring\"};const transition4={damping:30,delay:.2,mass:1,stiffness:200,type:\"spring\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"FD4CaGqpb\",Phone:\"dfvxdwsF8\",Tablet:\"cFjCu5Eon\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"FD4CaGqpb\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{constraint:{left:{collection:\"iCL82Es4G\",name:\"nextItemId\",type:\"Identifier\"},operator:\"==\",right:{collection:\"nextItemId\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{constraint:{left:{collection:\"iCL82Es4G\",name:\"previousItemId\",type:\"Identifier\"},operator:\"==\",right:{collection:\"previousItemId\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{alias:\"iCL82Es4G\",data:Areas,type:\"Collection\"},right:{alias:\"previousItemId\",data:Areas,type:\"Collection\"},type:\"LeftJoin\"},right:{alias:\"nextItemId\",data:Areas,type:\"Collection\"},type:\"LeftJoin\"},select:[{collection:\"iCL82Es4G\",name:\"btAYzpgSY\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"Zv67e1DVS\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"t1pcjwckF\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"yS7DkO87G\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"cbcBk9Erd\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"blcYnUJIS\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"pDYc6NW6h\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"ZV12OH2zO\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"Uwmz4OuSj\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"AvpGy67eb\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"wpsv1Uoyx\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"K30ZfdiGo\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"xzz2fOgLk\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"cB4UQzyIa\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"ATmMNIgVi\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"sbsT9RJNL\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"HDGmF7rMw\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"UPzqsoQHL\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"nAbC6X_C8\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"v2BWS7Hz9\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"MmGBhQa86\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"ZI6gNw1_i\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"Z8wrO7mzR\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"VHLIVUewA\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"IzB778bXD\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"oUn2MsTwe\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"rmWyn65_x\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"DQFskfziq\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"Ty482pO32\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"yqXq6acVX\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"M4ek_nRWP\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"b8M8tqnCk\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"uPpkefCDF\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"FoiHwfdQI\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"YCcW3dqo9\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"UCto50n11\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"ryACnWELC\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"VXFx7dJj_\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"ltvNtP_zV\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"gF4NXPbEA\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"Crzh4XQXL\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"KsVAPHLeu\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"JMyjCCNAa\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"Lg8rkf8J4\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"NS9OHOe5f\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"SypovrErP\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"Rqsts5nEf\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"Y31uWr_VS\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"hvA3ipxz8\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"HTMnyoONA\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"vVXywVmiF\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"jxlb3BLou\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"buknxhb4r\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"Axw97cKoa\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"Q_svNXjAE\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"PNUUT7lmd\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"eB3oHiZYd\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"o6sfhlVUe\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"LJD_0N1Qz\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"Un3_bplIY\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"HaOMfvge0\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"KpBSuz7qp\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"SK_baURcx\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"DTqAR86_k\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"wjcsrD53R\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"n8RKTxBSn\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"nfR5QBq_K\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"hSjIpe6AZ\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"ZeWuvDhKe\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"cY8eeGf_h\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"lsY5E2ujo\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"s6oW_B0cf\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"YahFE2qz9\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"geFpVZYnd\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"OGVtacTY9\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"xFhD7EIEM\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"e9q23XyNb\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"DSmtETB_P\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"Q9XKlNazB\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"OtrDBcSIp\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"wjuVrJXJ0\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"I_H_MYJ52\",type:\"Identifier\"},{collection:\"iCL82Es4G\",name:\"uctniaTBN\",type:\"Identifier\"},{alias:\"previousItemId.btAYzpgSY\",collection:\"previousItemId\",name:\"btAYzpgSY\",type:\"Identifier\"},{alias:\"previousItemId.Zv67e1DVS\",collection:\"previousItemId\",name:\"Zv67e1DVS\",type:\"Identifier\"},{alias:\"previousItemId\",collection:\"previousItemId\",name:\"id\",type:\"Identifier\"},{alias:\"nextItemId.btAYzpgSY\",collection:\"nextItemId\",name:\"btAYzpgSY\",type:\"Identifier\"},{alias:\"nextItemId.Zv67e1DVS\",collection:\"nextItemId\",name:\"Zv67e1DVS\",type:\"Identifier\"},{alias:\"nextItemId\",collection:\"nextItemId\",name:\"id\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"iCL82Es4G\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,Zv67e1DVS=getFromCurrentRouteData(\"Zv67e1DVS\")??\"\",btAYzpgSY=getFromCurrentRouteData(\"btAYzpgSY\")??\"\",previousItemId=getFromCurrentRouteData(\"previousItemId\"),previousItemId_Zv67e1DVS=getFromCurrentRouteData(\"previousItemId.Zv67e1DVS\")??\"\",previousItemId_btAYzpgSY=getFromCurrentRouteData(\"previousItemId.btAYzpgSY\")??\"\",nextItemId=getFromCurrentRouteData(\"nextItemId\"),nextItemId_Zv67e1DVS=getFromCurrentRouteData(\"nextItemId.Zv67e1DVS\")??\"\",nextItemId_btAYzpgSY=getFromCurrentRouteData(\"nextItemId.btAYzpgSY\")??\"\",cbcBk9Erd=getFromCurrentRouteData(\"cbcBk9Erd\"),t1pcjwckF=getFromCurrentRouteData(\"t1pcjwckF\")??true,whNrvYiISUjaBtmcdJ,esUllyI2wUjaBtmcdJ,FOYlJm4MfUjaBtmcdJ,oBD1iM1zeUjaBtmcdJ,a0Ap0Hb_SUjaBtmcdJ,GjrCEiHq4UjaBtmcdJ,xujNGf01AUjaBtmcdJ,Tv2YRhlPbUjaBtmcdJ,eSxuvxPB7UjaBtmcdJ,rIFoCbljrUjaBtmcdJ,FqWwQqlhuUjaBtmcdJ,idUjaBtmcdJ,Un3_bplIY=getFromCurrentRouteData(\"Un3_bplIY\")??\"\",blcYnUJIS=getFromCurrentRouteData(\"blcYnUJIS\")??\"\",AvpGy67eb=getFromCurrentRouteData(\"AvpGy67eb\")??\"\",Uwmz4OuSj=getFromCurrentRouteData(\"Uwmz4OuSj\")??\"\",K30ZfdiGo=getFromCurrentRouteData(\"K30ZfdiGo\"),wpsv1Uoyx=getFromCurrentRouteData(\"wpsv1Uoyx\")??\"\",ATmMNIgVi=getFromCurrentRouteData(\"ATmMNIgVi\"),xzz2fOgLk=getFromCurrentRouteData(\"xzz2fOgLk\")??\"\",cB4UQzyIa=getFromCurrentRouteData(\"cB4UQzyIa\")??\"\",sbsT9RJNL=getFromCurrentRouteData(\"sbsT9RJNL\")??\"\",UPzqsoQHL=getFromCurrentRouteData(\"UPzqsoQHL\"),HDGmF7rMw=getFromCurrentRouteData(\"HDGmF7rMw\")??\"\",yS7DkO87G=getFromCurrentRouteData(\"yS7DkO87G\")??0,Tv2YRhlPbI8h8jKhku,whNrvYiISI8h8jKhku,oBD1iM1zeI8h8jKhku,xujNGf01AI8h8jKhku,AviQRnDNPI8h8jKhku,a0Ap0Hb_SI8h8jKhku,rBWhGaGHbI8h8jKhku,eSxuvxPB7I8h8jKhku,rIFoCbljrI8h8jKhku,idI8h8jKhku,nAbC6X_C8=getFromCurrentRouteData(\"nAbC6X_C8\")??\"\",v2BWS7Hz9=getFromCurrentRouteData(\"v2BWS7Hz9\")??\"\",s6oW_B0cf=getFromCurrentRouteData(\"s6oW_B0cf\")??\"\",MmGBhQa86=getFromCurrentRouteData(\"MmGBhQa86\")??\"\",ZI6gNw1_i=getFromCurrentRouteData(\"ZI6gNw1_i\")??\"\",Z8wrO7mzR=getFromCurrentRouteData(\"Z8wrO7mzR\")??\"\",YahFE2qz9=getFromCurrentRouteData(\"YahFE2qz9\")??\"\",FoiHwfdQI=getFromCurrentRouteData(\"FoiHwfdQI\")??\"\",VHLIVUewA=getFromCurrentRouteData(\"VHLIVUewA\")??\"\",IzB778bXD=getFromCurrentRouteData(\"IzB778bXD\")??\"\",oUn2MsTwe=getFromCurrentRouteData(\"oUn2MsTwe\")??\"\",rmWyn65_x=getFromCurrentRouteData(\"rmWyn65_x\")??\"\",DQFskfziq=getFromCurrentRouteData(\"DQFskfziq\")??\"\",Ty482pO32=getFromCurrentRouteData(\"Ty482pO32\")??\"\",yqXq6acVX=getFromCurrentRouteData(\"yqXq6acVX\")??\"\",M4ek_nRWP=getFromCurrentRouteData(\"M4ek_nRWP\")??\"\",b8M8tqnCk=getFromCurrentRouteData(\"b8M8tqnCk\")??\"\",uPpkefCDF=getFromCurrentRouteData(\"uPpkefCDF\")??\"\",geFpVZYnd=getFromCurrentRouteData(\"geFpVZYnd\")??\"\",OGVtacTY9=getFromCurrentRouteData(\"OGVtacTY9\")??\"\",xFhD7EIEM=getFromCurrentRouteData(\"xFhD7EIEM\")??\"\",e9q23XyNb=getFromCurrentRouteData(\"e9q23XyNb\")??\"\",DSmtETB_P=getFromCurrentRouteData(\"DSmtETB_P\")??\"\",Q9XKlNazB=getFromCurrentRouteData(\"Q9XKlNazB\")??\"\",OtrDBcSIp=getFromCurrentRouteData(\"OtrDBcSIp\")??\"\",wjuVrJXJ0=getFromCurrentRouteData(\"wjuVrJXJ0\")??\"\",I_H_MYJ52=getFromCurrentRouteData(\"I_H_MYJ52\")??\"\",uctniaTBN=getFromCurrentRouteData(\"uctniaTBN\")??\"\",YCcW3dqo9=getFromCurrentRouteData(\"YCcW3dqo9\")??\"\",UCto50n11=getFromCurrentRouteData(\"UCto50n11\")??\"\",ryACnWELC=getFromCurrentRouteData(\"ryACnWELC\")??\"\",VXFx7dJj_=getFromCurrentRouteData(\"VXFx7dJj_\")??\"\",ltvNtP_zV=getFromCurrentRouteData(\"ltvNtP_zV\")??\"\",Crzh4XQXL=getFromCurrentRouteData(\"Crzh4XQXL\"),gF4NXPbEA=getFromCurrentRouteData(\"gF4NXPbEA\")??\"\",KsVAPHLeu=getFromCurrentRouteData(\"KsVAPHLeu\")??0,JMyjCCNAa=getFromCurrentRouteData(\"JMyjCCNAa\")??0,NS9OHOe5f=getFromCurrentRouteData(\"NS9OHOe5f\"),Lg8rkf8J4=getFromCurrentRouteData(\"Lg8rkf8J4\")??\"\",SypovrErP=getFromCurrentRouteData(\"SypovrErP\")??0,Rqsts5nEf=getFromCurrentRouteData(\"Rqsts5nEf\")??0,hvA3ipxz8=getFromCurrentRouteData(\"hvA3ipxz8\"),Y31uWr_VS=getFromCurrentRouteData(\"Y31uWr_VS\")??\"\",HTMnyoONA=getFromCurrentRouteData(\"HTMnyoONA\")??0,vVXywVmiF=getFromCurrentRouteData(\"vVXywVmiF\")??0,buknxhb4r=getFromCurrentRouteData(\"buknxhb4r\"),jxlb3BLou=getFromCurrentRouteData(\"jxlb3BLou\")??\"\",Axw97cKoa=getFromCurrentRouteData(\"Axw97cKoa\")??0,Q_svNXjAE=getFromCurrentRouteData(\"Q_svNXjAE\")??0,eB3oHiZYd=getFromCurrentRouteData(\"eB3oHiZYd\"),PNUUT7lmd=getFromCurrentRouteData(\"PNUUT7lmd\")??\"\",o6sfhlVUe=getFromCurrentRouteData(\"o6sfhlVUe\")??0,LJD_0N1Qz=getFromCurrentRouteData(\"LJD_0N1Qz\")??0,lsY5E2ujo=getFromCurrentRouteData(\"lsY5E2ujo\")??\"\",HaOMfvge0=getFromCurrentRouteData(\"HaOMfvge0\")??\"\",KpBSuz7qp=getFromCurrentRouteData(\"KpBSuz7qp\")??\"\",SK_baURcx=getFromCurrentRouteData(\"SK_baURcx\")??\"\",DTqAR86_k=getFromCurrentRouteData(\"DTqAR86_k\")??\"\",wjcsrD53R=getFromCurrentRouteData(\"wjcsrD53R\")??\"\",n8RKTxBSn=getFromCurrentRouteData(\"n8RKTxBSn\")??\"\",nfR5QBq_K=getFromCurrentRouteData(\"nfR5QBq_K\")??\"\",hSjIpe6AZ=getFromCurrentRouteData(\"hSjIpe6AZ\")??\"\",ZeWuvDhKe=getFromCurrentRouteData(\"ZeWuvDhKe\")??\"\",cY8eeGf_h=getFromCurrentRouteData(\"cY8eeGf_h\")??\"\",...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const xLP_jxLR33bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const O4u35zQHN1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const TwHjF83_g3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const ecOLjecbu1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className,sharedStyle11.className,sharedStyle12.className,sharedStyle13.className,sharedStyle14.className,sharedStyle15.className,sharedStyle16.className,sharedStyle17.className,sharedStyle18.className,sharedStyle19.className,sharedStyle20.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"Gc80UmmHD\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"W8gMkyLDu\");const ref2=React.useRef(null);const router=useRouter();const ref3=React.useRef(null);const ref4=React.useRef(null);const visible=isSet(previousItemId);const visible1=isSet(nextItemId);const elementId2=useRouteElementId(\"wx7qzQsTc\");const ref5=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if([\"cFjCu5Eon\",\"dfvxdwsF8\"].includes(baseVariant))return false;return true;};const elementId3=useRouteElementId(\"KNDaQeEj3\");const ref6=React.useRef(null);const isDisplayed1=value=>{if(!isBrowser())return true;if(baseVariant===\"dfvxdwsF8\")return value;return true;};const activeLocaleCode=useLocaleCode();const elementId4=useRouteElementId(\"JrOnEv6VX\");const visible2=isSet(AvpGy67eb);const visible3=isSet(sbsT9RJNL);const visible4=negate(lessThan(yS7DkO87G,1));const isDisplayed2=()=>{if(!isBrowser())return true;if([\"cFjCu5Eon\",\"dfvxdwsF8\"].includes(baseVariant))return true;return false;};const textContent2=prefix(btAYzpgSY,\"Real Estate in \");const visible6=isSet(v2BWS7Hz9);const visible7=isSet(s6oW_B0cf);const visible8=isSet(MmGBhQa86);const isDisplayed3=(value,value1)=>{if(!isBrowser())return true;if(baseVariant===\"cFjCu5Eon\")return value1;return value;};const visible9=isSet(ZI6gNw1_i);const elementId5=useRouteElementId(\"X6CpMJMMi\");const ref7=React.useRef(null);const visible10=negate(isSet(lsY5E2ujo));const isDisplayed4=()=>{if(!isBrowser())return true;if(baseVariant===\"dfvxdwsF8\")return true;return false;};const elementId6=useRouteElementId(\"Wh3fySPPV\");const ref8=React.useRef(null);const elementId7=useRouteElementId(\"lLPRagkxw\");useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"FD4CaGqpb\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1ruaiiy\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1c2rjnw\",\"data-framer-name\":\"top\",id:elementId,ref:ref1}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18s3xkr\",\"data-framer-name\":\"trigger\",id:elementId1,ref:ref2}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":Gc80UmmHD\",pathVariables:{Zv67e1DVS},webPageId:\"iCL82Es4G\"},implicitPathVariables:undefined},{href:{hash:\":Gc80UmmHD\",pathVariables:{Zv67e1DVS},webPageId:\"iCL82Es4G\"},implicitPathVariables:undefined},{href:{hash:\":Gc80UmmHD\",pathVariables:{Zv67e1DVS},webPageId:\"iCL82Es4G\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dfvxdwsF8:{width:\"56px\",y:784}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,y:828,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1imn739-container\",layoutScroll:true,nodeId:\"EMX_V_8oA\",rendersWithMotion:true,scopeId:\"iCL82Es4G\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cFjCu5Eon:{DwyCwfQGX:resolvedLinks[1]},dfvxdwsF8:{DwyCwfQGX:resolvedLinks[2],style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(ArrowButton,{DwyCwfQGX:resolvedLinks[0],height:\"100%\",id:\"EMX_V_8oA\",layoutId:\"EMX_V_8oA\",variant:\"lm8DKkWTB\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dfvxdwsF8:{width:componentViewport?.width||\"100vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:525,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-b6gr3k-container\",layoutScroll:true,nodeId:\"maCh5kcqz\",scopeId:\"iCL82Es4G\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cFjCu5Eon:{variant:\"EpoKlPcPi\"},dfvxdwsF8:{variant:\"EpoKlPcPi\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"maCh5kcqz\",layoutId:\"maCh5kcqz\",style:{width:\"100%\"},variant:\"Sl1AJTsie\",width:\"100%\",wNbqpUwEZ:false})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,width:componentViewport?.width||\"100vw\",y:900,children:/*#__PURE__*/_jsx(Container,{className:\"framer-uvah9s-container\",layoutScroll:true,nodeId:\"o6ioQL6fE\",rendersWithMotion:true,scopeId:\"iCL82Es4G\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cFjCu5Eon:{variant:\"Owf64HhGG\"},dfvxdwsF8:{__framer__targets:[{ref:ref4,target:\"YSQjbVOqE\"}],style:{width:\"100%\"},variant:\"i5k7_XzHI\"}},children:/*#__PURE__*/_jsx(WebinarStickyWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref3,target:\"Owf64HhGG\"},{ref:ref4,target:\"A1KbLLZvd\"}],__framer__threshold:1,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"o6ioQL6fE\",layoutId:\"o6ioQL6fE\",NQ4hzBviF:btAYzpgSY,style:{height:\"100%\",width:\"100%\"},variant:\"A1KbLLZvd\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p6qza0\",\"data-framer-name\":\"Start\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"BAZqp4AGM\"},implicitPathVariables:undefined},{href:{webPageId:\"BAZqp4AGM\"},implicitPathVariables:undefined},{href:{webPageId:\"BAZqp4AGM\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dfvxdwsF8:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1168px) - 32px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,width:`min(min(${componentViewport?.width||\"100vw\"}, 1168px) - 32px, 1168px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gejhcg-container\",nodeId:\"k44z18NV3\",scopeId:\"iCL82Es4G\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cFjCu5Eon:{e6rLNHU1e:resolvedLinks1[1]},dfvxdwsF8:{e6rLNHU1e:resolvedLinks1[2],style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Breadcrumb,{e6rLNHU1e:resolvedLinks1[0],f5EJc8uvf:\"Areas in Dubai\",GHdakcoL9:true,height:\"100%\",id:\"k44z18NV3\",layoutId:\"k44z18NV3\",mHbiU2lPE:btAYzpgSY,style:{maxWidth:\"100%\",width:\"100%\"},variant:\"x5gtKFg7W\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-seflij\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jmb3aj\",\"data-framer-name\":\"Previous Next\",children:[visible&&/*#__PURE__*/_jsx(Link,{href:{pathVariables:{Zv67e1DVS:previousItemId_Zv67e1DVS},webPageId:\"iCL82Es4G\"},motionChild:true,nodeId:\"Li1R5nOmX\",openInNewTab:false,scopeId:\"iCL82Es4G\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-12973pz framer-1c64m9p\",\"data-framer-name\":\"Previous\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1vb0udl\",\"data-framer-name\":\"Icon\",fill:\"black\",intrinsicHeight:32,intrinsicWidth:32,style:{rotate:180},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" viewBox=\"0 0 256 256\"><path d=\"m181.66 133.66-80 80a8 8 0 0 1-11.32-11.32L164.69 128 90.34 53.66a8 8 0 0 1 11.32-11.32l80 80a8 8 0 0 1 0 11.32Z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NGIFBybyBUZXh0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"SF Pro Text Regular\", \"SF Pro Text Regular Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"1.125em\",\"--framer-text-alignment\":\"center\"},children:\"Content\"})}),className:\"framer-1entq3w\",fonts:[\"CUSTOM;SF Pro Text Regular\"],text:previousItemId_btAYzpgSY,verticalAlignment:\"top\",withExternalLayout:true})]})}),visible1&&/*#__PURE__*/_jsx(Link,{href:{pathVariables:{Zv67e1DVS:nextItemId_Zv67e1DVS},webPageId:\"iCL82Es4G\"},motionChild:true,nodeId:\"Q3nUx4k94\",openInNewTab:false,scopeId:\"iCL82Es4G\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1taouzv framer-1c64m9p\",\"data-framer-name\":\"Next\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NGIFBybyBUZXh0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"SF Pro Text Regular\", \"SF Pro Text Regular Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"1.125em\",\"--framer-text-alignment\":\"center\"},children:\"Content\"})}),className:\"framer-1xnmcet\",fonts:[\"CUSTOM;SF Pro Text Regular\"],text:nextItemId_btAYzpgSY,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-tnvn73\",\"data-framer-name\":\"Icon\",fill:\"black\",intrinsicHeight:32,intrinsicWidth:32,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" viewBox=\"0 0 256 256\"><path d=\"m181.66 133.66-80 80a8 8 0 0 1-11.32-11.32L164.69 128 90.34 53.66a8 8 0 0 1 11.32-11.32l80 80a8 8 0 0 1 0 11.32Z\"/></svg>',withExternalLayout:true})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-dfz530\",\"data-framer-name\":\"Hero\",id:elementId2,ref:ref5,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1911mbr\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dfvxdwsF8:{background:{alt:\"\",fit:\"fill\",sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1168px) - 32px, 1px)`,...toResponsiveImage(cbcBk9Erd)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:`max(min(min(${componentViewport?.width||\"100vw\"}, 1168px) - 32px, 1168px), 1px)`,...toResponsiveImage(cbcBk9Erd)},className:\"framer-19mpoj7\",children:isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2iw08l hidden-1eix6fo hidden-623a27\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-11x59oe\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h5\",{style:{\"--font-selector\":\"Q1VTVE9NO1NGIFBybyBUZXh0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"SF Pro Text Regular\", \"SF Pro Text Regular Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Register Your Interest \"}),/*#__PURE__*/_jsx(\"strong\",{children:/*#__PURE__*/_jsx(\"br\",{})})]})}),className:\"framer-nqxh2x\",fonts:[\"CUSTOM;SF Pro Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(FormContainer,{action:\"https://api.framer.com/forms/v1/forms/b66e5a8e-4b1e-4620-bc6c-cc76faadf2f4/submit\",className:\"framer-1sebaby\",\"data-framer-name\":\"Variant 1\",nodeId:\"BsVUtS6LX\",children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dsrw8y\",children:[/*#__PURE__*/_jsx(\"label\",{className:\"framer-xcnocs\",children:/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1v7pwai\",inputName:\"Name\",placeholder:\"Full Name\",required:true,type:\"text\"})}),/*#__PURE__*/_jsx(\"label\",{className:\"framer-1ubuhe5\",children:/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-g9r8bp\",inputName:\"Email\",placeholder:\"mail@example.com\",required:true,type:\"email\"})}),/*#__PURE__*/_jsx(\"label\",{className:\"framer-y3w0et\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-duzpz-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"BsVUtS6LXy1gyH_QU8\",scopeId:\"iCL82Es4G\",children:/*#__PURE__*/_jsx(PhoneNumberInput,{autoFocus:false,bgBlur:0,border:{color:\"rgba(166, 166, 166, 0.3)\",colorFocus:\"rgb(0, 153, 255)\",colorInvalid:\"rgb(255, 90, 111)\",style:\"solid\",width:\"1px\"},color:\"rgb(255, 255, 255)\",countryCodeOptions:{customFormat:\"+X\",defaultCountryCode:1,divider:{color:\"rgba(136, 136, 136, 0.15)\",inset:8,width:1},format:\"+X\",gap:8,style:\"divider\",width:40},customFormat:\"(XXX) XXX - XXXX\",fill:{color:\"rgba(217, 217, 217, 0.5)\",colorA:\"rgb(187, 187, 187)\",colorB:\"rgb(103, 103, 103)\",gradientAngle:0,type:\"color\"},font:{fontFamily:'\"SF Pro Text Light\", \"SF Pro Text Light Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',fontSize:\"13px\",letterSpacing:\"0em\",lineHeight:\"1.2em\"},format:\"(XXX) XXX - XXXX\",height:\"100%\",id:\"BsVUtS6LXy1gyH_QU8\",layoutId:\"BsVUtS6LXy1gyH_QU8\",name:\"Phone Number\",padding:\"12px\",placeholder:\"\",placeholderColor:\"rgb(255, 255, 255)\",radius:\"16px\",required:true,style:{width:\"100%\"},transition:{duration:0,type:\"tween\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kdcrt5\",children:/*#__PURE__*/_jsxs(\"label\",{className:\"framer-13fwcnd\",children:[/*#__PURE__*/_jsx(FormBooleanInput,{className:\"framer-co4p5q\",defaultChecked:false,inputName:\"User Agreement and Privacy Policy\",required:true,type:\"checkbox\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NGIFBybyBUZXh0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"SF Pro Text Regular\", \"SF Pro Text Regular Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"9px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"I accept the terms of the \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"MK4JqwKgh\"},motionChild:true,nodeId:\"BsVUtS6LXeel0NxDgu\",openInNewTab:false,scopeId:\"iCL82Es4G\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1pk3ud2\",\"data-styles-preset\":\"ZovHz6Ljo\",children:\"User Agreement\"})}),\" and \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"HgMqGo_XL\"},motionChild:true,nodeId:\"BsVUtS6LXeel0NxDgu\",openInNewTab:false,scopeId:\"iCL82Es4G\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1pk3ud2\",\"data-styles-preset\":\"ZovHz6Ljo\",children:\"Privacy Policy \"})})]})}),className:\"framer-1amw1b6\",fonts:[\"CUSTOM;SF Pro Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"240px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fcaasy-container\",nodeId:\"BsVUtS6LXLWPNjlEM1\",scopeId:\"iCL82Es4G\",children:/*#__PURE__*/_jsx(FormButton,{height:\"100%\",id:\"BsVUtS6LXLWPNjlEM1\",layoutId:\"BsVUtS6LXLWPNjlEM1\",style:{width:\"100%\"},type:\"submit\",V6Rj8Xbl0:\"Submit\",variant:formVariants(formState,{error:\"oHTUgIELA\",pending:\"RRGLuQVsB\",success:\"p5hZJ_gn0\"},\"vjpLMThed\"),width:\"100%\"})})})]})})]})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-9990of\",\"data-styles-preset\":\"YFM5chc_2\",style:{\"--framer-text-color\":\"var(--token-8b3073a7-f87a-492c-8522-15609858e40c, rgb(22, 22, 23))\"},children:\"Aljada\"})}),className:\"framer-b2stns\",\"data-framer-name\":\"Name\",fonts:[\"Inter\"],text:btAYzpgSY,verticalAlignment:\"top\",withExternalLayout:true})]})})]})]}),t1pcjwckF&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1oy1arh\",\"data-framer-name\":\"Projects\",id:elementId3,ref:ref6,children:isDisplayed1(t1pcjwckF)&&/*#__PURE__*/_jsxs(\"div\",{className:cx(\"framer-9b1dek\",!t1pcjwckF&&\"hidden-623a27\"),\"data-framer-name\":\"Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1skbgn5\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-onfkvz\",\"data-styles-preset\":\"P42fRLtVU\",children:\"Available to Buy Right Now\"})}),className:\"framer-cluhy2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-jk93fx\",\"data-styles-preset\":\"aASqjXSUD\",style:{\"--framer-text-color\":\"var(--token-8b3073a7-f87a-492c-8522-15609858e40c, rgb(22, 22, 23))\"},children:\"Off Plan Properties\"})}),className:\"framer-6szko6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1v6qrxg\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{pageSize:20,query:{from:{alias:\"UjaBtmcdJ\",data:Listings,type:\"Collection\"},orderBy:[{collection:\"UjaBtmcdJ\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{collection:\"UjaBtmcdJ\",name:\"whNrvYiIS\",type:\"Identifier\"},{collection:\"UjaBtmcdJ\",name:\"esUllyI2w\",type:\"Identifier\"},{collection:\"UjaBtmcdJ\",name:\"FOYlJm4Mf\",type:\"Identifier\"},{collection:\"UjaBtmcdJ\",name:\"oBD1iM1ze\",type:\"Identifier\"},{collection:\"UjaBtmcdJ\",name:\"a0Ap0Hb_S\",type:\"Identifier\"},{collection:\"UjaBtmcdJ\",name:\"GjrCEiHq4\",type:\"Identifier\"},{collection:\"UjaBtmcdJ\",name:\"xujNGf01A\",type:\"Identifier\"},{collection:\"UjaBtmcdJ\",name:\"Tv2YRhlPb\",type:\"Identifier\"},{collection:\"UjaBtmcdJ\",name:\"eSxuvxPB7\",type:\"Identifier\"},{collection:\"UjaBtmcdJ\",name:\"rIFoCbljr\",type:\"Identifier\"},{collection:\"UjaBtmcdJ\",name:\"FqWwQqlhu\",type:\"Identifier\"},{collection:\"UjaBtmcdJ\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"UjaBtmcdJ\",name:\"esUllyI2w\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:btAYzpgSY},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({a0Ap0Hb_S:a0Ap0Hb_SUjaBtmcdJ,esUllyI2w:esUllyI2wUjaBtmcdJ,eSxuvxPB7:eSxuvxPB7UjaBtmcdJ,FOYlJm4Mf:FOYlJm4MfUjaBtmcdJ,FqWwQqlhu:FqWwQqlhuUjaBtmcdJ,GjrCEiHq4:GjrCEiHq4UjaBtmcdJ,id:idUjaBtmcdJ,oBD1iM1ze:oBD1iM1zeUjaBtmcdJ,rIFoCbljr:rIFoCbljrUjaBtmcdJ,Tv2YRhlPb:Tv2YRhlPbUjaBtmcdJ,whNrvYiIS:whNrvYiISUjaBtmcdJ,xujNGf01A:xujNGf01AUjaBtmcdJ},index)=>{whNrvYiISUjaBtmcdJ??=\"\";esUllyI2wUjaBtmcdJ??=\"\";FOYlJm4MfUjaBtmcdJ??=\"\";oBD1iM1zeUjaBtmcdJ??=\"\";a0Ap0Hb_SUjaBtmcdJ??=0;GjrCEiHq4UjaBtmcdJ??=\"\";xujNGf01AUjaBtmcdJ??=\"\";Tv2YRhlPbUjaBtmcdJ??=\"\";rIFoCbljrUjaBtmcdJ??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`UjaBtmcdJ-${idUjaBtmcdJ}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{rIFoCbljr:rIFoCbljrUjaBtmcdJ},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gnyxay\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{rIFoCbljr:rIFoCbljrUjaBtmcdJ},webPageId:\"Oj6bDRdnK\"},implicitPathVariables:undefined},{href:{pathVariables:{rIFoCbljr:rIFoCbljrUjaBtmcdJ},webPageId:\"Oj6bDRdnK\"},implicitPathVariables:undefined},{href:{pathVariables:{FqWwQqlhu:FqWwQqlhuUjaBtmcdJ},webPageId:\"kepv3WF5Z\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:540,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10uisfa-container\",nodeId:\"S41n5bThK\",scopeId:\"iCL82Es4G\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cFjCu5Eon:{jNqe13jQb:resolvedLinks2[1],variant:\"QBZJsKL24\"},dfvxdwsF8:{jNqe13jQb:resolvedLinks2[2],variant:\"QBZJsKL24\"}},children:/*#__PURE__*/_jsx(ListingCard,{bRehwhvGF:oBD1iM1zeUjaBtmcdJ,Dp74iv4vd:FOYlJm4MfUjaBtmcdJ,EhYOxvrSv:\"text\",fDWvpry2P:Tv2YRhlPbUjaBtmcdJ,height:\"100%\",id:\"S41n5bThK\",Imp4OftNG:toResponsiveImage(eSxuvxPB7UjaBtmcdJ),jNqe13jQb:resolvedLinks2[0],layoutId:\"S41n5bThK\",PubGZ0Adj:numberToString(a0Ap0Hb_SUjaBtmcdJ,{compactDisplay:\"short\",currency:\"AED\",currencyDisplay:\"code\",locale:\"\",notation:\"compact\",style:\"currency\"},activeLocaleCode),v1yy0e0iy:whNrvYiISUjaBtmcdJ,variant:\"TORiWdNs4\",width:\"100%\",wXrWK2EU3:negate(equals(Tv2YRhlPbUjaBtmcdJ,\"Offplan\")),Zqwtqeaqb:esUllyI2wUjaBtmcdJ,ZVQjFNZuD:xujNGf01AUjaBtmcdJ,Zzi8ti50x:suffix(GjrCEiHq4UjaBtmcdJ,\" from\")})})})})})})})},idUjaBtmcdJ);})})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d12l7n\",\"data-framer-name\":\"Overview\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-12p3gpg\",\"data-framer-name\":\"Title\",id:elementId4,ref:ref3,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-jk93fx\",\"data-styles-preset\":\"aASqjXSUD\",style:{\"--framer-text-color\":\"var(--token-8b3073a7-f87a-492c-8522-15609858e40c, rgb(22, 22, 23))\"},children:\"Overview\"})}),className:\"framer-1dwd0gx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wagtne\",\"data-framer-name\":\"Gallery\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fvhwit-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"u78j2qjNV\",scopeId:\"iCL82Es4G\",children:/*#__PURE__*/_jsx(RichTextCarousel,{arrowImage:\"https://framerusercontent.com/images/YsJfLX1RnzEb5OriwPx2CrojbaE.png\",arrowSize:44,enableLightbox:true,height:\"100%\",heightMode:\"fill\",id:\"u78j2qjNV\",layoutId:\"u78j2qjNV\",richText:Un3_bplIY,showFirstImageOnly:false,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},transitionType:\"easeOut\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:238,width:`min(${componentViewport?.width||\"100vw\"} - 32px, 1168px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-mdsbz9-container\",nodeId:\"Odhbi6zBR\",scopeId:\"iCL82Es4G\",children:/*#__PURE__*/_jsx(OverviewTextAreas,{height:\"100%\",id:\"Odhbi6zBR\",layoutId:\"Odhbi6zBR\",mgnsP1ll7:blcYnUJIS,style:{maxWidth:\"100%\",width:\"100%\"},variant:\"MojmIn7bT\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-cw5j6h\",\"data-framer-name\":\"CTA\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dfx3ne\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-jk93fx\",\"data-styles-preset\":\"aASqjXSUD\",style:{\"--framer-text-color\":\"var(--token-45becea8-8a76-4c23-a9a9-fb2cfaa35930, rgb(255, 255, 255))\"},children:\"Your Dubai Property Journey Starts Here\"})}),className:\"framer-ohk82q\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10k4a2n\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16ftzfw\",\"data-styles-preset\":\"oYdqPh_BW\",style:{\"--framer-text-color\":\"var(--token-45becea8-8a76-4c23-a9a9-fb2cfaa35930, rgb(255, 255, 255))\"},children:\"Reach Out Now \u2013 We\u2019re Online 24/7\"})}),className:\"framer-1uyqvlk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:58,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-4of8y9-container\",id:\"4of8y9\",nodeId:\"fozf66fB_\",scopeId:\"iCL82Es4G\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cFjCu5Eon:{variant:\"kZmw8N3qV\"},dfvxdwsF8:{variant:\"kZmw8N3qV\"}},children:/*#__PURE__*/_jsx(PrimaryButton,{height:\"100%\",id:\"fozf66fB_\",iQBxIAT8E:\"rgb(0, 0, 0)\",layoutId:\"fozf66fB_\",OrNFSWMDm:\"rgb(255, 255, 255)\",qK702IR6E:\"Get in touch\",UGErschEP:\"var(--token-2fff1e76-04a4-4eaf-a9d3-da2204498d31, rgb(36, 98, 255))\",variant:\"xFSt_0yhy\",width:\"100%\",xLP_jxLR3:xLP_jxLR33bnx0g({overlay})})}),/*#__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:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-jybg3c\"),\"data-framer-portal-id\":\"4of8y9\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"OT3DOx7Sy\"),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dfvxdwsF8:{width:\"max(90vw, 240px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{animate:animation2,className:cx(scopingClassNames,\"framer-fe73wv-container\"),\"data-framer-portal-id\":\"4of8y9\",exit:animation1,inComponentSlot:true,initial:animation3,nodeId:\"FgLHV2Wuq\",rendersWithMotion:true,scopeId:\"iCL82Es4G\",transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cFjCu5Eon:{variant:\"pznOjpIvU\"},dfvxdwsF8:{style:{width:\"100%\"},variant:\"pznOjpIvU\"}},children:/*#__PURE__*/_jsx(Card,{height:\"100%\",id:\"FgLHV2Wuq\",layoutId:\"FgLHV2Wuq\",O4u35zQHN:O4u35zQHN1wnntms({overlay}),q87wS3bgI:addImageAlt({pixelHeight:2164,pixelWidth:2e3,src:\"https://framerusercontent.com/images/C9yoiqYlUF25nRphG5Ks7Uc9Lo.jpeg\",srcSet:\"https://framerusercontent.com/images/C9yoiqYlUF25nRphG5Ks7Uc9Lo.jpeg?scale-down-to=1024 946w,https://framerusercontent.com/images/C9yoiqYlUF25nRphG5Ks7Uc9Lo.jpeg?scale-down-to=2048 1892w,https://framerusercontent.com/images/C9yoiqYlUF25nRphG5Ks7Uc9Lo.jpeg 2000w\"},\"\"),variant:\"zDFpVYylM\",width:\"100%\"})})})})})]}),getContainer())})})]})})})})]})]})}),visible2&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15msaa6\",\"data-framer-name\":\"Architectural Marvels\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hdc4d6\",\"data-framer-name\":\"Title & Subtitle\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-jk93fx\",\"data-styles-preset\":\"aASqjXSUD\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"Architectural Marvels\"})}),className:\"framer-1ishgye\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-129quxm\",\"data-styles-preset\":\"GOvmZzbcb\",style:{\"--framer-text-color\":\"var(--token-c7e2995e-096b-46f2-b3fe-767689954115, rgb(110, 110, 115))\"},children:\"Aljada is a contemporary urban marvel with sleek, modern apartments and villas designed for comfort and sustainability.\"})}),className:\"framer-1jsovhx\",fonts:[\"Inter\"],text:Uwmz4OuSj,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tjr7kp\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1j7achm\",\"data-framer-name\":\"Opus Tower Section\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cFjCu5Eon:{background:{alt:\"\",fit:\"fill\",pixelHeight:1297,pixelWidth:2e3,sizes:\"360px\",...toResponsiveImage(K30ZfdiGo)}},dfvxdwsF8:{background:{alt:\"\",fit:\"fill\",pixelHeight:1297,pixelWidth:2e3,sizes:\"260px\",...toResponsiveImage(K30ZfdiGo)}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1297,pixelWidth:2e3,sizes:\"400px\",...toResponsiveImage(K30ZfdiGo)},className:\"framer-17xqys\",\"data-framer-name\":\"Opus Tower\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-132xew2\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fvtze7\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-ixokdd\",\"data-styles-preset\":\"mxBw7p9ep\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Content\"})}),className:\"framer-1imseps\",fonts:[\"Inter\"],text:AvpGy67eb,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hjtnyx\",\"data-styles-preset\":\"JTX3HQvfv\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Content\"})}),className:\"framer-1630l6n\",fonts:[\"Inter\"],text:wpsv1Uoyx,verticalAlignment:\"top\",withExternalLayout:true})]})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14rina3\",\"data-framer-name\":\"O-14 Tower\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cFjCu5Eon:{background:{alt:\"\",fit:\"fill\",pixelHeight:619,pixelWidth:750,sizes:\"360px\",...toResponsiveImage(ATmMNIgVi)}},dfvxdwsF8:{background:{alt:\"\",fit:\"fill\",pixelHeight:619,pixelWidth:750,sizes:\"260px\",...toResponsiveImage(ATmMNIgVi)}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:619,pixelWidth:750,sizes:\"400px\",...toResponsiveImage(ATmMNIgVi)},className:\"framer-1sg2uxk\",\"data-framer-name\":\"Opus Tower\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1o8nps6\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13sy84y\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-ixokdd\",\"data-styles-preset\":\"mxBw7p9ep\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Content\"})}),className:\"framer-15voef8\",fonts:[\"Inter\"],text:xzz2fOgLk,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hjtnyx\",\"data-styles-preset\":\"JTX3HQvfv\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Content\"})}),className:\"framer-xu9ar7\",fonts:[\"Inter\"],text:cB4UQzyIa,verticalAlignment:\"top\",withExternalLayout:true})]})]})})}),visible3&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pgqywe\",\"data-framer-name\":\"JW Marriott Marquis\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cFjCu5Eon:{background:{alt:\"\",fit:\"fill\",pixelHeight:933,pixelWidth:1400,sizes:\"360px\",...toResponsiveImage(UPzqsoQHL)}},dfvxdwsF8:{background:{alt:\"\",fit:\"fill\",pixelHeight:933,pixelWidth:1400,sizes:\"260px\",...toResponsiveImage(UPzqsoQHL)}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:933,pixelWidth:1400,sizes:\"400px\",...toResponsiveImage(UPzqsoQHL)},className:\"framer-1mfwm56\",\"data-framer-name\":\"Opus Tower\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1t5r6ak\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1upt5ka\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-ixokdd\",\"data-styles-preset\":\"mxBw7p9ep\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Content\"})}),className:\"framer-m20qie\",fonts:[\"Inter\"],text:sbsT9RJNL,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hjtnyx\",\"data-styles-preset\":\"JTX3HQvfv\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Content\"})}),className:\"framer-u9ik5m\",fonts:[\"Inter\"],text:HDGmF7rMw,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})]})]}),visible4&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ywwona\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData1,{pageSize:1,query:{from:{alias:\"I8h8jKhku\",data:Listings,type:\"Collection\"},orderBy:[{collection:\"I8h8jKhku\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{collection:\"I8h8jKhku\",name:\"Tv2YRhlPb\",type:\"Identifier\"},{collection:\"I8h8jKhku\",name:\"whNrvYiIS\",type:\"Identifier\"},{collection:\"I8h8jKhku\",name:\"oBD1iM1ze\",type:\"Identifier\"},{collection:\"I8h8jKhku\",name:\"xujNGf01A\",type:\"Identifier\"},{collection:\"I8h8jKhku\",name:\"AviQRnDNP\",type:\"Identifier\"},{collection:\"I8h8jKhku\",name:\"a0Ap0Hb_S\",type:\"Identifier\"},{collection:\"I8h8jKhku\",name:\"rBWhGaGHb\",type:\"Identifier\"},{collection:\"I8h8jKhku\",name:\"eSxuvxPB7\",type:\"Identifier\"},{collection:\"I8h8jKhku\",name:\"rIFoCbljr\",type:\"Identifier\"},{collection:\"I8h8jKhku\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"I8h8jKhku\",name:\"esUllyI2w\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:btAYzpgSY},type:\"BinaryOperation\"}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({a0Ap0Hb_S:a0Ap0Hb_SI8h8jKhku,AviQRnDNP:AviQRnDNPI8h8jKhku,eSxuvxPB7:eSxuvxPB7I8h8jKhku,id:idI8h8jKhku,oBD1iM1ze:oBD1iM1zeI8h8jKhku,rBWhGaGHb:rBWhGaGHbI8h8jKhku,rIFoCbljr:rIFoCbljrI8h8jKhku,Tv2YRhlPb:Tv2YRhlPbI8h8jKhku,whNrvYiIS:whNrvYiISI8h8jKhku,xujNGf01A:xujNGf01AI8h8jKhku},index1)=>{Tv2YRhlPbI8h8jKhku??=\"\";whNrvYiISI8h8jKhku??=\"\";oBD1iM1zeI8h8jKhku??=\"\";xujNGf01AI8h8jKhku??=\"\";AviQRnDNPI8h8jKhku??=0;a0Ap0Hb_SI8h8jKhku??=0;rBWhGaGHbI8h8jKhku??=\"\";rIFoCbljrI8h8jKhku??=\"\";const visible5=negate(equals(Tv2YRhlPbI8h8jKhku,\"Offplan\"));const textContent=suffix(prefix(numberToString(AviQRnDNPI8h8jKhku,{compactDisplay:\"short\",currency:\"USD\",currencyDisplay:\"code\",locale:\"\",notation:\"compact\",style:\"currency\"},activeLocaleCode),\"Starting Price (\"),\")\");const textContent1=numberToString(a0Ap0Hb_SI8h8jKhku,{compactDisplay:\"short\",currency:\"AED\",currencyDisplay:\"symbol\",locale:\"\",notation:\"compact\",style:\"currency\"},activeLocaleCode);return /*#__PURE__*/_jsx(LayoutGroup,{id:`I8h8jKhku-${idI8h8jKhku}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{rIFoCbljr:rIFoCbljrI8h8jKhku},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bpc3sx\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1teqx28\",children:[visible5&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-gplygp\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NGIFBybyBUZXh0IE1lZGl1bQ==\",\"--framer-font-family\":'\"SF Pro Text Medium\", \"SF Pro Text Medium Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-color\":\"var(--token-2fff1e76-04a4-4eaf-a9d3-da2204498d31, rgb(36, 98, 255))\"},children:\"Content\"})}),className:\"framer-1vyckoj\",fonts:[\"CUSTOM;SF Pro Text Medium\"],text:Tv2YRhlPbI8h8jKhku,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k9o09g\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NGIFBybyBUZXh0IFNlbWlib2xk\",\"--framer-font-family\":'\"SF Pro Text Semibold\", \"SF Pro Text Semibold Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-letter-spacing\":\"-0.04em\"},children:\"Content\"})}),className:\"framer-nwqlsv\",fonts:[\"CUSTOM;SF Pro Text Semibold\"],text:whNrvYiISI8h8jKhku,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i9q5xp\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-exq0hh\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NGIFBybyBUZXh0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"SF Pro Text Regular\", \"SF Pro Text Regular Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-color\":\"var(--token-c7e2995e-096b-46f2-b3fe-767689954115, rgb(110, 110, 115))\"},children:\"Handover\"})}),className:\"framer-1k2xnwl\",fonts:[\"CUSTOM;SF Pro Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NGIFBybyBUZXh0IE1lZGl1bQ==\",\"--framer-font-family\":'\"SF Pro Text Medium\", \"SF Pro Text Medium Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-letter-spacing\":\"-0.04em\"},children:\"Content\"})}),className:\"framer-mg5w24\",fonts:[\"CUSTOM;SF Pro Text Medium\"],text:oBD1iM1zeI8h8jKhku,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ajvvjf\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NGIFBybyBUZXh0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"SF Pro Text Regular\", \"SF Pro Text Regular Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-color\":\"var(--token-c7e2995e-096b-46f2-b3fe-767689954115, rgb(110, 110, 115))\"},children:\"Payment Plan\"})}),className:\"framer-quwbgl\",fonts:[\"CUSTOM;SF Pro Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NGIFBybyBUZXh0IE1lZGl1bQ==\",\"--framer-font-family\":'\"SF Pro Text Medium\", \"SF Pro Text Medium Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-letter-spacing\":\"-0.04em\"},children:\"Content\"})}),className:\"framer-16z1b9s\",fonts:[\"CUSTOM;SF Pro Text Medium\"],text:xujNGf01AI8h8jKhku,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kcyqu9\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NGIFBybyBUZXh0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"SF Pro Text Regular\", \"SF Pro Text Regular Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-color\":\"var(--token-c7e2995e-096b-46f2-b3fe-767689954115, rgb(110, 110, 115))\"},children:\"Starting Price (USD\\xa00)\"})}),className:\"framer-m2m7gj\",fonts:[\"CUSTOM;SF Pro Text Regular\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NGIFBybyBUZXh0IE1lZGl1bQ==\",\"--framer-font-family\":'\"SF Pro Text Medium\", \"SF Pro Text Medium Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-letter-spacing\":\"-0.04em\"},children:\"AED\\xa00\"})}),className:\"framer-ohuxla\",fonts:[\"CUSTOM;SF Pro Text Medium\"],text:textContent1,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1xixwxw\",\"data-styles-preset\":\"Ja3AimCHD\",children:\"The Solo offers an exceptional opportunity for contemporary living in the heart of Aljada, Sharjah. Designed for modern professionals and small families, this development features sleek studio and one-bedroom apartments that embody minimalistic elegance. Residents will enjoy the best in functionality, connectivity, and lifestyle offerings, making it an ideal choice for those seeking high-quality yet affordable urban living.\"})}),className:\"framer-1370wvi\",fonts:[\"Inter\"],text:rBWhGaGHbI8h8jKhku,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cFjCu5Eon:{background:{alt:\"\",fit:\"fill\",sizes:`calc(max(min(${componentViewport?.width||\"100vw\"}, 1168px) * 1, 1px) - 32px)`,...toResponsiveImage(eSxuvxPB7I8h8jKhku)}},dfvxdwsF8:{background:{alt:\"\",fit:\"fill\",sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1168px) - 16px, 1px)`,...toResponsiveImage(eSxuvxPB7I8h8jKhku)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",...toResponsiveImage(eSxuvxPB7I8h8jKhku)},className:\"framer-1owozi4 hidden-1ruaiiy\"})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:58,children:/*#__PURE__*/_jsx(Container,{className:\"framer-17efhw8-container\",nodeId:\"rAP6iaOrm\",scopeId:\"iCL82Es4G\",children:/*#__PURE__*/_jsx(PrimaryButton,{height:\"100%\",id:\"rAP6iaOrm\",iQBxIAT8E:\"rgb(255, 255, 255)\",layoutId:\"rAP6iaOrm\",OrNFSWMDm:\"var(--token-2fff1e76-04a4-4eaf-a9d3-da2204498d31, rgb(36, 98, 255))\",qK702IR6E:\"Discover more\",UGErschEP:\"var(--token-2fff1e76-04a4-4eaf-a9d3-da2204498d31, rgb(36, 98, 255))\",variant:\"kZmw8N3qV\",width:\"100%\"})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1168px) - 32px, 1px)`,...toResponsiveImage(eSxuvxPB7I8h8jKhku)},className:\"framer-fcywmd hidden-1eix6fo hidden-623a27\"})]})})},idI8h8jKhku);})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-33u7mf\",\"data-framer-name\":\"Real Estate\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s3w2nu\",\"data-framer-name\":\"Title & Subtitle\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-jk93fx\",\"data-styles-preset\":\"aASqjXSUD\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"Real Estate in Aljada\"})}),className:\"framer-gdf8v\",fonts:[\"Inter\"],text:textContent2,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-129quxm\",\"data-styles-preset\":\"GOvmZzbcb\",style:{\"--framer-text-color\":\"var(--token-c7e2995e-096b-46f2-b3fe-767689954115, rgb(110, 110, 115))\"},children:\"Aljada is an attractive destination for real estate investors and homeowners due to its diverse range of properties, from affordable apartments to premium villas. The development is designed to cater to various segments of buyers, ensuring a high return on investment for those looking to enter Sharjah\u2019s real estate market.\"})}),className:\"framer-1v3345u\",fonts:[\"Inter\"],text:nAbC6X_C8,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nkyd7c\",\"data-framer-name\":\"Residential Property Prices\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-8l2a1x\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-17t2y92\",\"data-styles-preset\":\"Qr3eC0Fq6\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Residential Property Prices\"})})}),className:\"framer-ohmfmg\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),visible6&&/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/DDzyuYPF56TuI0bfUu2z/YouTube.js:Youtube\":componentPresets.props[\"PRBXapo87\"]},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dfvxdwsF8:{stylesPresetsClassNames:{a:\"framer-styles-preset-klzt56\",blockquote:\"framer-styles-preset-k2493c\",code:\"framer-styles-preset-hqhzm1\",h1:\"framer-styles-preset-9990of\",h2:\"framer-styles-preset-jk93fx\",h3:\"framer-styles-preset-17t2y92\",h4:\"framer-styles-preset-wa3kgo\",h5:\"framer-styles-preset-z9z5m8\",h6:\"framer-styles-preset-bfuvub\",img:\"framer-styles-preset-onvjvo\",p:\"framer-styles-preset-mumkll\",table:\"framer-styles-preset-qwadgo\"}}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:v2BWS7Hz9,className:\"framer-r2bx2h\",\"data-framer-name\":\"RPP Table\",fonts:[\"Inter\"],id:\"r2bx2h\",stylesPresetsClassNames:{a:\"framer-styles-preset-klzt56\",blockquote:\"framer-styles-preset-k2493c\",code:\"framer-styles-preset-hqhzm1\",h1:\"framer-styles-preset-9990of\",h2:\"framer-styles-preset-jk93fx\",h3:\"framer-styles-preset-17t2y92\",h4:\"framer-styles-preset-wa3kgo\",h5:\"framer-styles-preset-z9z5m8\",h6:\"framer-styles-preset-bfuvub\",img:\"framer-styles-preset-onvjvo\",p:\"framer-styles-preset-ily4t7\",table:\"framer-styles-preset-qwadgo\"},verticalAlignment:\"top\",withExternalLayout:true})})})]}),isDisplayed3(visible7,visible8)&&/*#__PURE__*/_jsxs(\"div\",{className:cx(\"framer-4ifgf0\",!visible7&&\"hidden-1ruaiiy\",!visible8&&\"hidden-1eix6fo\",!visible7&&\"hidden-623a27\"),\"data-framer-name\":\"Commercial Property Prices\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-r7prsq\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-ixokdd\",\"data-styles-preset\":\"mxBw7p9ep\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Commercial Property Prices\"})})}),className:\"framer-1unr30g\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),visible8&&/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/DDzyuYPF56TuI0bfUu2z/YouTube.js:Youtube\":componentPresets.props[\"PRBXapo87\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:MmGBhQa86,className:\"framer-12btj2h\",\"data-framer-name\":\"CPP\",fonts:[\"Inter\"],id:\"12btj2h\",stylesPresetsClassNames:{a:\"framer-styles-preset-klzt56\",blockquote:\"framer-styles-preset-k2493c\",code:\"framer-styles-preset-hqhzm1\",h1:\"framer-styles-preset-9990of\",h2:\"framer-styles-preset-jk93fx\",h3:\"framer-styles-preset-17t2y92\",h4:\"framer-styles-preset-wa3kgo\",h5:\"framer-styles-preset-z9z5m8\",h6:\"framer-styles-preset-bfuvub\",img:\"framer-styles-preset-onvjvo\",p:\"framer-styles-preset-ily4t7\",table:\"framer-styles-preset-qwadgo\"},verticalAlignment:\"top\",withExternalLayout:true})}),visible9&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-e7ff5o\",\"data-styles-preset\":\"Dx00gbLoD\",style:{\"--framer-text-color\":\"var(--token-c7e2995e-096b-46f2-b3fe-767689954115, rgb(110, 110, 115))\"},children:\"Content\"})}),className:\"framer-1l5q4vq\",fonts:[\"Inter\"],text:ZI6gNw1_i,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wvz1ej\",\"data-framer-name\":\"Amenities and Lifestyle\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-jk93fx\",\"data-styles-preset\":\"aASqjXSUD\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"Living Experience\"})}),className:\"framer-9o90wz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:342,width:`min(${componentViewport?.width||\"100vw\"} - 32px, 1168px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-k0u7t4-container\",nodeId:\"yl7uQNP3h\",scopeId:\"iCL82Es4G\",children:/*#__PURE__*/_jsx(LivingExperience,{ACySdKbzq:yqXq6acVX,BZoivsFph:YahFE2qz9,dv4kCTn2y:VHLIVUewA,DZyhxEh8t:b8M8tqnCk,EGe2a8CTT:UCto50n11,g6yp0d10c:uctniaTBN,height:\"100%\",HW4n3dxd6:IzB778bXD,id:\"yl7uQNP3h\",iolXJ6Xr2:oUn2MsTwe,Js0uPkYS_:DQFskfziq,kio2eLXvI:Ty482pO32,layoutId:\"yl7uQNP3h\",lF_ddyXoe:geFpVZYnd,lJG681ASX:M4ek_nRWP,mC5YbjPEt:ryACnWELC,Pk_09bYVV:uPpkefCDF,sc1qeXSy6:wjuVrJXJ0,style:{maxWidth:\"100%\",width:\"100%\"},Tk50I0Iea:I_H_MYJ52,UQl0MVQel:Q9XKlNazB,uRybqLnnr:DSmtETB_P,variant:\"g37wqAG0R\",vNq0575BJ:xFhD7EIEM,width:\"100%\",WNaQPkGCR:Z8wrO7mzR,wYdQmc0Lt:FoiHwfdQI,XoMztyzjm:OtrDBcSIp,xoPBBgba8:e9q23XyNb,YtMBQXljE:YCcW3dqo9,zDyoe7Gy3:rmWyn65_x,zjhCn8eiw:VXFx7dJj_,ZYIKLOTIH:OGVtacTY9})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1w225av\",\"data-framer-name\":\"Location\",id:elementId5,ref:ref7,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cycfxw\",\"data-framer-name\":\"Wrap\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-jk93fx\",\"data-styles-preset\":\"aASqjXSUD\",children:\"Location\"})}),className:\"framer-1qbi3hc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-18ri7wk-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"t1Dyob4kh\",scopeId:\"iCL82Es4G\",children:/*#__PURE__*/_jsx(GoogleMaps,{borderRadius:24,bottomLeftRadius:24,bottomRightRadius:24,coordinates:ltvNtP_zV,height:\"100%\",id:\"t1Dyob4kh\",isMixedBorderRadius:false,layoutId:\"t1Dyob4kh\",style:{height:\"100%\",width:\"100%\"},topLeftRadius:24,topRightRadius:24,width:\"100%\",zoom:14})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16q43px\",\"data-framer-name\":\"Nearby Attraction\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-17t2y92\",\"data-styles-preset\":\"Qr3eC0Fq6\",children:\"Nearby Attraction\"})}),className:\"framer-1usbx02\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-y0ufoc\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:180,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1r3g4xk-container\",\"data-framer-name\":\"Mall of the Emirates\",name:\"Mall of the Emirates\",nodeId:\"aghntiC0F\",scopeId:\"iCL82Es4G\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dfvxdwsF8:{variant:\"hR8Gaeyfl\"}},children:/*#__PURE__*/_jsx(Attraction,{height:\"100%\",id:\"aghntiC0F\",layoutId:\"aghntiC0F\",name:\"Mall of the Emirates\",PlJJGu_Za:toString(JMyjCCNAa),S7Y6aThcb:toString(KsVAPHLeu),tdbTBJRWr:toResponsiveImage(Crzh4XQXL),tqBQcUesA:gF4NXPbEA,variant:\"NIZtxz63F\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:180,children:/*#__PURE__*/_jsx(Container,{className:\"framer-fkqbqs-container\",\"data-framer-name\":\"Dubai Miracle Garden\",name:\"Dubai Miracle Garden\",nodeId:\"lk20_tVLw\",scopeId:\"iCL82Es4G\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dfvxdwsF8:{variant:\"hR8Gaeyfl\"}},children:/*#__PURE__*/_jsx(Attraction,{height:\"100%\",id:\"lk20_tVLw\",layoutId:\"lk20_tVLw\",name:\"Dubai Miracle Garden\",PlJJGu_Za:toString(Rqsts5nEf),S7Y6aThcb:toString(SypovrErP),tdbTBJRWr:toResponsiveImage(NS9OHOe5f),tqBQcUesA:Lg8rkf8J4,variant:\"NIZtxz63F\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:180,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1por46x-container\",\"data-framer-name\":\"Global Village\",name:\"Global Village\",nodeId:\"Je_5MT34v\",scopeId:\"iCL82Es4G\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dfvxdwsF8:{variant:\"hR8Gaeyfl\"}},children:/*#__PURE__*/_jsx(Attraction,{height:\"100%\",id:\"Je_5MT34v\",layoutId:\"Je_5MT34v\",name:\"Global Village\",PlJJGu_Za:toString(vVXywVmiF),S7Y6aThcb:toString(HTMnyoONA),tdbTBJRWr:toResponsiveImage(hvA3ipxz8),tqBQcUesA:Y31uWr_VS,variant:\"NIZtxz63F\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:180,children:/*#__PURE__*/_jsx(Container,{className:\"framer-15g6mc1-container\",\"data-framer-name\":\"Dubai Hills Mall\",name:\"Dubai Hills Mall\",nodeId:\"o96j4DtUX\",scopeId:\"iCL82Es4G\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dfvxdwsF8:{variant:\"hR8Gaeyfl\"}},children:/*#__PURE__*/_jsx(Attraction,{height:\"100%\",id:\"o96j4DtUX\",layoutId:\"o96j4DtUX\",name:\"Dubai Hills Mall\",PlJJGu_Za:toString(Q_svNXjAE),S7Y6aThcb:toString(Axw97cKoa),tdbTBJRWr:toResponsiveImage(buknxhb4r),tqBQcUesA:jxlb3BLou,variant:\"NIZtxz63F\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:180,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1opi23b-container\",\"data-framer-name\":\"Jumeirah Beach\",name:\"Jumeirah Beach\",nodeId:\"lKsm4_0ZL\",scopeId:\"iCL82Es4G\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dfvxdwsF8:{variant:\"hR8Gaeyfl\"}},children:/*#__PURE__*/_jsx(Attraction,{height:\"100%\",id:\"lKsm4_0ZL\",layoutId:\"lKsm4_0ZL\",name:\"Jumeirah Beach\",PlJJGu_Za:toString(LJD_0N1Qz),S7Y6aThcb:toString(o6sfhlVUe),tdbTBJRWr:toResponsiveImage(eB3oHiZYd),tqBQcUesA:PNUUT7lmd,variant:\"NIZtxz63F\",width:\"100%\"})})})})]})]})]})}),visible10&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vvscab\",\"data-framer-name\":\"FAQs Ready\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-jk93fx\",\"data-styles-preset\":\"aASqjXSUD\",children:\"FAQs\"})}),className:\"framer-14gixae\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dfvxdwsF8:{width:`calc(${componentViewport?.width||\"100vw\"} - 32px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:969,width:`min(${componentViewport?.width||\"100vw\"} - 32px, 1168px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1t93j51-container\",nodeId:\"rN9aCDKtf\",rendersWithMotion:true,scopeId:\"iCL82Es4G\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dfvxdwsF8:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(FAQNeighborhoods,{BeNEQZikc:ZeWuvDhKe,cdKYnMAmA:DTqAR86_k,eEwMn_GOr:btAYzpgSY,height:\"100%\",hezOTuHVK:\"What is the expected completion date of the project, and are there any potential delays we should be aware of?\",id:\"rN9aCDKtf\",iPjKZojRf:KpBSuz7qp,iVAm38o6D:\"Business Bay\",JFERGQQO1:\"What is the expected completion date of the project, and are there any potential delays we should be aware of?\",L0ADE0stV:\"What is the expected completion date of the project, and are there any potential delays we should be aware of?\",layoutId:\"rN9aCDKtf\",M21VtdZyl:SK_baURcx,PO7tLR1fG:\"What is the expected completion date of the project, and are there any potential delays we should be aware of?\",QWqbeMP6t:\"What is the expected completion date of the project, and are there any potential delays we should be aware of?\",SIFAbIV_R:\"What is the expected completion date of the project, and are there any potential delays we should be aware of?\",style:{maxWidth:\"100%\",width:\"100%\"},SznD1LfQE:\"What is the expected completion date of the project, and are there any potential delays we should be aware of?\",u3FeBNk30:hSjIpe6AZ,U5srOZ81C:wjcsrD53R,UvLfPqgHp:HaOMfvge0,variant:\"ANlMztRlH\",VN_GdTzuH:nfR5QBq_K,W5mIxVuzI:\"What is the expected completion date of the project, and are there any potential delays we should be aware of?\",width:\"100%\",xPYSLgPFL:cY8eeGf_h,YZwngVN9R:\"What is the expected completion date of the project, and are there any potential delays we should be aware of?\",zjtF1a16B:n8RKTxBSn})})})})})]}),isDisplayed4()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ugjcvj hidden-1ruaiiy hidden-1eix6fo\",\"data-framer-name\":\"Register\",id:elementId6,ref:ref8,children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-jk93fx\",\"data-styles-preset\":\"aASqjXSUD\",children:\"Register Your Interest\"})}),className:\"framer-41m1m7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4x4ntx\",children:/*#__PURE__*/_jsx(FormContainer,{action:\"https://api.framer.com/forms/v1/forms/b44e68b6-b068-436c-9d36-163f4b1a5814/submit\",className:\"framer-1vzzk8x\",\"data-framer-name\":\"Variant 1\",nodeId:\"JjzYDGPFF\",children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h4d61c\",children:[/*#__PURE__*/_jsx(\"label\",{className:\"framer-18ujhji\",children:/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-8o1mz5\",inputName:\"Name\",placeholder:\"Full Name\",required:true,type:\"text\"})}),/*#__PURE__*/_jsx(\"label\",{className:\"framer-1p5e1lo\",children:/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1s13tux\",inputName:\"Email\",placeholder:\"mail@example.com\",required:true,type:\"email\"})}),/*#__PURE__*/_jsx(\"label\",{className:\"framer-1bt80nc\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-5q1l6o-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"a1M8ssMtj\",scopeId:\"iCL82Es4G\",children:/*#__PURE__*/_jsx(PhoneNumberInput,{autoFocus:false,bgBlur:0,border:{color:\"rgba(166, 166, 166, 0.3)\",colorFocus:\"rgb(0, 153, 255)\",colorInvalid:\"rgb(255, 90, 111)\",style:\"solid\",width:\"1px\"},color:\"rgb(38, 38, 38)\",countryCodeOptions:{customFormat:\"+X\",defaultCountryCode:1,divider:{color:\"rgba(136, 136, 136, 0.15)\",inset:8,width:1},format:\"+X\",gap:8,style:\"divider\",width:40},customFormat:\"(XXX) XXX - XXXX\",fill:{color:\"rgba(217, 217, 217, 0.15)\",colorA:\"rgb(187, 187, 187)\",colorB:\"rgb(103, 103, 103)\",gradientAngle:0,type:\"color\"},font:{fontFamily:'\"SF Pro Text Light\", \"SF Pro Text Light Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',fontSize:\"13px\",letterSpacing:\"0em\",lineHeight:\"1.2em\"},format:\"(XXX) XXX - XXXX\",height:\"100%\",id:\"a1M8ssMtj\",layoutId:\"a1M8ssMtj\",name:\"Phone Number\",padding:\"12px\",placeholder:\"\",placeholderColor:\"rgb(38, 38, 38)\",radius:\"16px\",required:true,style:{height:\"100%\",width:\"100%\"},transition:{duration:0,type:\"tween\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10vb5ta\",children:/*#__PURE__*/_jsxs(\"label\",{className:\"framer-yu2k6a\",children:[/*#__PURE__*/_jsx(FormBooleanInput,{className:\"framer-52empj\",defaultChecked:false,inputName:\"User Agreement and Privacy Policy\",required:true,type:\"checkbox\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1NGIFBybyBUZXh0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"SF Pro Text Regular\", \"SF Pro Text Regular Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"9px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-color\":\"rgb(38, 38, 38)\"},children:[\"I accept the terms of the \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"MK4JqwKgh\"},motionChild:true,nodeId:\"NBj8n3ih4\",openInNewTab:false,scopeId:\"iCL82Es4G\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1pk3ud2\",\"data-styles-preset\":\"ZovHz6Ljo\",children:\"User Agreement\"})}),\" and \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"HgMqGo_XL\"},motionChild:true,nodeId:\"NBj8n3ih4\",openInNewTab:false,scopeId:\"iCL82Es4G\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1pk3ud2\",\"data-styles-preset\":\"ZovHz6Ljo\",children:\"Privacy Policy \"})})]})}),className:\"framer-sdqgaf\",fonts:[\"CUSTOM;SF Pro Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dfvxdwsF8:{width:`max(min(${componentViewport?.width||\"100vw\"} - 32px, 800px), 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-iwjb0u-container\",nodeId:\"iZtP2KZA8\",scopeId:\"iCL82Es4G\",children:/*#__PURE__*/_jsx(FormButton,{height:\"100%\",id:\"iZtP2KZA8\",layoutId:\"iZtP2KZA8\",style:{width:\"100%\"},type:\"submit\",V6Rj8Xbl0:\"Submit\",variant:formVariants(formState,{error:\"oHTUgIELA\",pending:\"RRGLuQVsB\",success:\"p5hZJ_gn0\"},\"vjpLMThed\"),width:\"100%\"})})})})]})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-tehrba\",\"data-framer-name\":\"Newsletter\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cFjCu5Eon:{width:`min(${componentViewport?.width||\"100vw\"} - 160px, 650px)`},dfvxdwsF8:{width:`calc(${componentViewport?.width||\"100vw\"} - 32px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:274,width:`min(${componentViewport?.width||\"100vw\"} - 224px, 800px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-x8vy1u-container\",nodeId:\"JWvm0kGrD\",scopeId:\"iCL82Es4G\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dfvxdwsF8:{style:{width:\"100%\"},variant:\"jSNePRYqU\"}},children:/*#__PURE__*/_jsx(Newsletter,{height:\"100%\",id:\"JWvm0kGrD\",layoutId:\"JWvm0kGrD\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"eDwb2WKAY\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:785,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsxs(Container,{className:\"framer-2y90u1-container\",id:\"2y90u1\",nodeId:\"GGeLUMkCF\",scopeId:\"iCL82Es4G\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dfvxdwsF8:{variant:\"WLvCRqbka\"}},children:/*#__PURE__*/_jsx(BrochureSection,{height:\"100%\",id:\"GGeLUMkCF\",layoutId:\"GGeLUMkCF\",style:{width:\"100%\"},TwHjF83_g:TwHjF83_g3bnx0g({overlay:overlay1}),variant:\"gWN4Qhfkg\",width:\"100%\"})}),/*#__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:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-144d3u\"),\"data-framer-portal-id\":\"2y90u1\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay1.hide()},\"tWowUggwy\"),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dfvxdwsF8:{width:\"calc(100vw - 32px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dfvxdwsF8:{transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-s46dxt-container\"),\"data-framer-portal-id\":\"2y90u1\",inComponentSlot:true,nodeId:\"nBJKBoKYF\",rendersWithMotion:true,scopeId:\"iCL82Es4G\",transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dfvxdwsF8:{style:{width:\"100%\"},variant:\"iiPbBXFNs\"}},children:/*#__PURE__*/_jsx(BrochurePopUpNeighborhoods,{ecOLjecbu:ecOLjecbu1wnntms({overlay:overlay1}),height:\"100%\",id:\"nBJKBoKYF\",layoutId:\"nBJKBoKYF\",tmUivBZ3w:btAYzpgSY,variant:\"STZEQzcnf\",width:\"100%\"})})})})})})]}),getContainer())})})]})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:495,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1o86qxv-container\",id:elementId7,nodeId:\"lLPRagkxw\",ref:ref4,scopeId:\"iCL82Es4G\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cFjCu5Eon:{variant:\"aqm0UNRx2\"},dfvxdwsF8:{variant:\"xfujEo3gF\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"lLPRagkxw\",layoutId:\"lLPRagkxw\",style:{width:\"100%\"},variant:\"v59xCyllq\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-KcJ3T.framer-1c64m9p, .framer-KcJ3T .framer-1c64m9p { display: block; }\",\".framer-KcJ3T.framer-1ruaiiy { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 80px 0px 0px 0px; position: relative; width: 1024px; }\",\".framer-KcJ3T .framer-1c2rjnw { flex: none; height: 204px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-KcJ3T .framer-18s3xkr { flex: none; height: 258px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 1000px; z-index: 1; }\",\".framer-KcJ3T .framer-1imn739-container { bottom: 116px; flex: none; height: auto; pointer-events: auto; position: fixed; right: 32px; width: auto; z-index: 5; }\",\".framer-KcJ3T .framer-b6gr3k-container { flex: none; height: auto; left: 0px; position: fixed; top: 0px; width: 100%; z-index: 7; }\",\".framer-KcJ3T .framer-uvah9s-container { bottom: 0px; flex: none; height: 100px; left: 0px; position: fixed; right: 0px; z-index: 6; }\",\".framer-KcJ3T .framer-1p6qza0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; max-width: 1168px; overflow: visible; padding: 0px 16px 0px 16px; position: relative; width: 100%; }\",\".framer-KcJ3T .framer-1gejhcg-container { flex: none; height: auto; max-width: 1168px; position: relative; width: 100%; z-index: 5; }\",\".framer-KcJ3T .framer-seflij { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-KcJ3T .framer-1jmb3aj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 24px; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-KcJ3T .framer-12973pz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; left: 0px; overflow: hidden; padding: 0px; position: absolute; text-decoration: none; top: 46%; transform: translateY(-50%); width: min-content; z-index: 1; }\",\".framer-KcJ3T .framer-1vb0udl, .framer-KcJ3T .framer-tnvn73 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 14px); position: relative; width: 14px; }\",\".framer-KcJ3T .framer-1entq3w, .framer-KcJ3T .framer-1xnmcet, .framer-KcJ3T .framer-1dwd0gx, .framer-KcJ3T .framer-1uyqvlk, .framer-KcJ3T .framer-1vyckoj, .framer-KcJ3T .framer-nwqlsv, .framer-KcJ3T .framer-1k2xnwl, .framer-KcJ3T .framer-mg5w24, .framer-KcJ3T .framer-quwbgl, .framer-KcJ3T .framer-16z1b9s, .framer-KcJ3T .framer-m2m7gj, .framer-KcJ3T .framer-ohuxla, .framer-KcJ3T .framer-1usbx02 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-KcJ3T .framer-1taouzv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: absolute; right: 0px; text-decoration: none; top: 46%; transform: translateY(-50%); width: min-content; z-index: 1; }\",\".framer-KcJ3T .framer-dfz530 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; max-width: 1168px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-KcJ3T .framer-1911mbr { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-KcJ3T .framer-19mpoj7 { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: none; height: 450px; position: relative; width: 100%; }\",\".framer-KcJ3T .framer-2iw08l { -webkit-backdrop-filter: blur(20px); align-content: center; align-items: center; backdrop-filter: blur(20px); background-color: rgba(255, 255, 255, 0.1); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 20px; position: absolute; right: 16px; top: 16px; width: 280px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-KcJ3T .framer-11x59oe { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-KcJ3T .framer-nqxh2x, .framer-KcJ3T .framer-cluhy2, .framer-KcJ3T .framer-6szko6, .framer-KcJ3T .framer-1ishgye, .framer-KcJ3T .framer-1jsovhx, .framer-KcJ3T .framer-1imseps, .framer-KcJ3T .framer-1630l6n, .framer-KcJ3T .framer-15voef8, .framer-KcJ3T .framer-xu9ar7, .framer-KcJ3T .framer-m20qie, .framer-KcJ3T .framer-u9ik5m, .framer-KcJ3T .framer-1370wvi, .framer-KcJ3T .framer-gdf8v, .framer-KcJ3T .framer-1v3345u, .framer-KcJ3T .framer-1qbi3hc { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-KcJ3T .framer-1sebaby, .framer-KcJ3T .framer-1k9o09g { 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: 100%; }\",\".framer-KcJ3T .framer-1dsrw8y, .framer-KcJ3T .framer-1kdcrt5, .framer-KcJ3T .framer-10vb5ta { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-KcJ3T .framer-xcnocs, .framer-KcJ3T .framer-1ubuhe5, .framer-KcJ3T .framer-y3w0et, .framer-KcJ3T .framer-18ujhji, .framer-KcJ3T .framer-1p5e1lo, .framer-KcJ3T .framer-1bt80nc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",'.framer-KcJ3T .framer-1v7pwai, .framer-KcJ3T .framer-g9r8bp { --framer-input-background: rgba(217, 217, 217, 0.5); --framer-input-border-bottom-width: 1px; --framer-input-border-color: rgba(166, 166, 166, 0.3); --framer-input-border-left-width: 1px; --framer-input-border-radius-bottom-left: 16px; --framer-input-border-radius-bottom-right: 16px; --framer-input-border-radius-top-left: 16px; --framer-input-border-radius-top-right: 16px; --framer-input-border-right-width: 1px; --framer-input-border-style: solid; --framer-input-border-top-width: 1px; --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-color: #ffffff; --framer-input-font-family: \"SF Pro Text Light\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 13px; --framer-input-icon-color: #999999; --framer-input-padding: 12px; --framer-input-placeholder-color: #ffffff; --framer-input-wrapper-height: auto; flex: none; height: auto; position: relative; width: 100%; }',\".framer-KcJ3T .framer-duzpz-container, .framer-KcJ3T .framer-1fcaasy-container, .framer-KcJ3T .framer-iwjb0u-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-KcJ3T .framer-13fwcnd, .framer-KcJ3T .framer-yu2k6a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-KcJ3T .framer-co4p5q { --framer-input-background: rgba(217, 217, 217, 0.5); --framer-input-boolean-checked-background: #0099ff; --framer-input-border-bottom-width: 1px; --framer-input-border-color: rgba(166, 166, 166, 0.3); --framer-input-border-left-width: 1px; --framer-input-border-radius-bottom-left: 4px; --framer-input-border-radius-bottom-right: 4px; --framer-input-border-radius-top-left: 4px; --framer-input-border-radius-top-right: 4px; --framer-input-border-right-width: 1px; --framer-input-border-style: solid; --framer-input-border-top-width: 1px; --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-icon-color: #ffffff; aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); position: relative; width: 16px; }\",\".framer-KcJ3T .framer-1amw1b6, .framer-KcJ3T .framer-sdqgaf { -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; }\",\".framer-KcJ3T .framer-b2stns { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 3; }\",\".framer-KcJ3T .framer-1oy1arh { align-content: flex-start; align-items: flex-start; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 96px 0px 96px 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-KcJ3T .framer-9b1dek { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-KcJ3T .framer-1skbgn5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; max-width: 1168px; overflow: hidden; padding: 0px 16px 0px 16px; position: relative; width: 100%; }\",\".framer-KcJ3T .framer-1v6qrxg, .framer-KcJ3T .framer-1ywwona { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; max-width: 1168px; overflow: auto; padding: 0px 16px 0px 16px; position: relative; width: 100%; }\",\".framer-KcJ3T .framer-1gnyxay { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: min-content; }\",\".framer-KcJ3T .framer-10uisfa-container, .framer-KcJ3T .framer-4of8y9-container, .framer-KcJ3T .framer-17efhw8-container, .framer-KcJ3T .framer-1r3g4xk-container, .framer-KcJ3T .framer-fkqbqs-container, .framer-KcJ3T .framer-1por46x-container, .framer-KcJ3T .framer-15g6mc1-container, .framer-KcJ3T .framer-1opi23b-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-KcJ3T .framer-d12l7n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 96px 16px 96px 16px; position: relative; width: 100%; }\",\".framer-KcJ3T .framer-12p3gpg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 1168px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-KcJ3T .framer-1wagtne { align-content: center; align-items: center; aspect-ratio: 1.837037037037037 / 1; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 540px); justify-content: flex-start; max-width: 1168px; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-KcJ3T .framer-1fvhwit-container { flex: 1 0 0px; height: 1px; max-width: 1168px; position: relative; width: 100%; }\",\".framer-KcJ3T .framer-mdsbz9-container, .framer-KcJ3T .framer-k0u7t4-container { flex: none; height: auto; max-width: 1168px; position: relative; width: 100%; }\",\".framer-KcJ3T .framer-cw5j6h { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 16px; position: relative; width: 100%; }\",\".framer-KcJ3T .framer-dfx3ne { align-content: center; align-items: center; background-color: var(--token-d4f0c71e-de5a-4324-bc52-dc052b41ed0c, #2462ff); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1168px; overflow: hidden; padding: 24px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-KcJ3T .framer-ohk82q, .framer-KcJ3T .framer-1unr30g { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-KcJ3T .framer-10k4a2n { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-KcJ3T.framer-jybg3c { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 7; }\",\".framer-KcJ3T.framer-fe73wv-container { flex: none; height: auto; left: 50%; position: fixed; top: 50%; transform: translate(-50%, -50%); width: auto; will-change: var(--framer-will-change-effect-override, transform); z-index: 7; }\",\".framer-KcJ3T .framer-15msaa6 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 96px 16px 96px 16px; position: relative; width: 100%; z-index: 2; }\",\".framer-KcJ3T .framer-hdc4d6, .framer-KcJ3T .framer-1s3w2nu, .framer-KcJ3T .framer-nkyd7c, .framer-KcJ3T .framer-4ifgf0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; max-width: 1168px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-KcJ3T .framer-1tjr7kp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; max-width: 1168px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-KcJ3T .framer-1j7achm, .framer-KcJ3T .framer-14rina3, .framer-KcJ3T .framer-1pgqywe { 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: 400px; }\",\".framer-KcJ3T .framer-17xqys, .framer-KcJ3T .framer-1sg2uxk, .framer-KcJ3T .framer-1mfwm56 { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: none; height: 280px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-KcJ3T .framer-132xew2, .framer-KcJ3T .framer-1o8nps6, .framer-KcJ3T .framer-1t5r6ak { background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(38, 38, 38) 100%); bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-KcJ3T .framer-fvtze7, .framer-KcJ3T .framer-13sy84y, .framer-KcJ3T .framer-1upt5ka { align-content: flex-start; align-items: flex-start; bottom: 12px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; left: 12px; overflow: hidden; padding: 0px; position: absolute; right: 12px; }\",\".framer-KcJ3T .framer-bpc3sx { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: wrap; gap: 32px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-KcJ3T .framer-1teqx28 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-KcJ3T .framer-gplygp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 122px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-KcJ3T .framer-i9q5xp { align-content: center; align-items: center; background-color: var(--token-2b70d7da-20a5-4cf2-a646-8ce60925e1c0, #f5f5f7); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 24px 8px 24px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-KcJ3T .framer-exq0hh, .framer-KcJ3T .framer-ajvvjf, .framer-KcJ3T .framer-kcyqu9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-KcJ3T .framer-1owozi4 { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: none; height: 320px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-KcJ3T .framer-fcywmd { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: 1 0 0px; height: 400px; overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-KcJ3T .framer-33u7mf { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: center; overflow: visible; padding: 96px 16px 96px 16px; position: relative; width: 100%; z-index: 2; }\",\".framer-KcJ3T .framer-8l2a1x, .framer-KcJ3T .framer-r7prsq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-KcJ3T .framer-ohmfmg { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; max-width: 800px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-KcJ3T .framer-r2bx2h, .framer-KcJ3T .framer-12btj2h { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --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-KcJ3T .framer-1l5q4vq, .framer-KcJ3T .framer-9o90wz, .framer-KcJ3T .framer-14gixae { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 1168px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-KcJ3T .framer-wvz1ej { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: flex-start; overflow: visible; padding: 96px 16px 96px 16px; position: relative; width: 100%; z-index: 2; }\",\".framer-KcJ3T .framer-1w225av { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 96px 16px 96px 16px; position: relative; width: 100%; z-index: 2; }\",\".framer-KcJ3T .framer-cycfxw { 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: center; max-width: 1168px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-KcJ3T .framer-18ri7wk-container { flex: none; height: 500px; position: relative; width: 100%; }\",\".framer-KcJ3T .framer-16q43px { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-KcJ3T .framer-y0ufoc { align-content: flex-start; align-items: flex-start; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: auto; padding: 0px; position: relative; width: 100%; }\",\".framer-KcJ3T .framer-vvscab { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 96px 16px 96px 16px; position: relative; width: 100%; z-index: 2; }\",\".framer-KcJ3T .framer-1t93j51-container { flex: none; height: auto; max-width: 1168px; position: relative; width: 100%; z-index: 2; }\",\".framer-KcJ3T .framer-1ugjcvj { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 48px 16px 48px 16px; position: relative; width: 100%; z-index: 2; }\",\".framer-KcJ3T .framer-41m1m7 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 800px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-KcJ3T .framer-4x4ntx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 800px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-KcJ3T .framer-1vzzk8x { 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-KcJ3T .framer-h4d61c { 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-KcJ3T .framer-8o1mz5, .framer-KcJ3T .framer-1s13tux { --framer-input-background: rgba(217, 217, 217, 0.15); --framer-input-border-bottom-width: 1px; --framer-input-border-color: rgba(166, 166, 166, 0.3); --framer-input-border-left-width: 1px; --framer-input-border-radius-bottom-left: 16px; --framer-input-border-radius-bottom-right: 16px; --framer-input-border-radius-top-left: 16px; --framer-input-border-radius-top-right: 16px; --framer-input-border-right-width: 1px; --framer-input-border-style: solid; --framer-input-border-top-width: 1px; --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-color: #262626; --framer-input-font-family: \"SF Pro Text Light\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 13px; --framer-input-icon-color: #999999; --framer-input-padding: 12px; --framer-input-placeholder-color: #262626; flex: none; height: 40px; position: relative; width: 100%; }',\".framer-KcJ3T .framer-5q1l6o-container { flex: none; height: 40px; position: relative; width: 100%; }\",\".framer-KcJ3T .framer-52empj { --framer-input-background: rgba(217, 217, 217, 0.15); --framer-input-boolean-checked-background: #0099ff; --framer-input-border-bottom-width: 1px; --framer-input-border-color: rgba(166, 166, 166, 0.3); --framer-input-border-left-width: 1px; --framer-input-border-radius-bottom-left: 4px; --framer-input-border-radius-bottom-right: 4px; --framer-input-border-radius-top-left: 4px; --framer-input-border-radius-top-right: 4px; --framer-input-border-right-width: 1px; --framer-input-border-style: solid; --framer-input-border-top-width: 1px; --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-icon-color: #ffffff; aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); position: relative; width: 16px; }\",\".framer-KcJ3T .framer-tehrba { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 112px 120px 112px; position: relative; width: 100%; z-index: 2; }\",\".framer-KcJ3T .framer-x8vy1u-container { flex: none; height: auto; max-width: 800px; position: relative; width: 100%; }\",\".framer-KcJ3T .framer-2y90u1-container { flex: none; height: auto; position: relative; width: 100%; z-index: 2; }\",\".framer-KcJ3T.framer-144d3u { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 4; }\",\".framer-KcJ3T.framer-s46dxt-container { flex: none; height: auto; left: 50%; position: fixed; top: 50%; transform: translate(-50%, -50%); width: auto; z-index: 4; }\",\".framer-KcJ3T .framer-1o86qxv-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-KcJ3T.framer-1ruaiiy, .framer-KcJ3T .framer-1p6qza0, .framer-KcJ3T .framer-seflij, .framer-KcJ3T .framer-12973pz, .framer-KcJ3T .framer-1taouzv, .framer-KcJ3T .framer-dfz530, .framer-KcJ3T .framer-1911mbr, .framer-KcJ3T .framer-2iw08l, .framer-KcJ3T .framer-11x59oe, .framer-KcJ3T .framer-1sebaby, .framer-KcJ3T .framer-1dsrw8y, .framer-KcJ3T .framer-xcnocs, .framer-KcJ3T .framer-1ubuhe5, .framer-KcJ3T .framer-y3w0et, .framer-KcJ3T .framer-1kdcrt5, .framer-KcJ3T .framer-13fwcnd, .framer-KcJ3T .framer-1oy1arh, .framer-KcJ3T .framer-9b1dek, .framer-KcJ3T .framer-1skbgn5, .framer-KcJ3T .framer-1v6qrxg, .framer-KcJ3T .framer-1gnyxay, .framer-KcJ3T .framer-d12l7n, .framer-KcJ3T .framer-12p3gpg, .framer-KcJ3T .framer-1wagtne, .framer-KcJ3T .framer-cw5j6h, .framer-KcJ3T .framer-10k4a2n, .framer-KcJ3T .framer-15msaa6, .framer-KcJ3T .framer-hdc4d6, .framer-KcJ3T .framer-1tjr7kp, .framer-KcJ3T .framer-1j7achm, .framer-KcJ3T .framer-fvtze7, .framer-KcJ3T .framer-14rina3, .framer-KcJ3T .framer-13sy84y, .framer-KcJ3T .framer-1pgqywe, .framer-KcJ3T .framer-1upt5ka, .framer-KcJ3T .framer-1ywwona, .framer-KcJ3T .framer-bpc3sx, .framer-KcJ3T .framer-1teqx28, .framer-KcJ3T .framer-gplygp, .framer-KcJ3T .framer-1k9o09g, .framer-KcJ3T .framer-i9q5xp, .framer-KcJ3T .framer-exq0hh, .framer-KcJ3T .framer-ajvvjf, .framer-KcJ3T .framer-kcyqu9, .framer-KcJ3T .framer-33u7mf, .framer-KcJ3T .framer-1s3w2nu, .framer-KcJ3T .framer-nkyd7c, .framer-KcJ3T .framer-8l2a1x, .framer-KcJ3T .framer-4ifgf0, .framer-KcJ3T .framer-r7prsq, .framer-KcJ3T .framer-wvz1ej, .framer-KcJ3T .framer-1w225av, .framer-KcJ3T .framer-cycfxw, .framer-KcJ3T .framer-16q43px, .framer-KcJ3T .framer-y0ufoc, .framer-KcJ3T .framer-vvscab, .framer-KcJ3T .framer-1ugjcvj, .framer-KcJ3T .framer-4x4ntx, .framer-KcJ3T .framer-1vzzk8x, .framer-KcJ3T .framer-h4d61c, .framer-KcJ3T .framer-18ujhji, .framer-KcJ3T .framer-1p5e1lo, .framer-KcJ3T .framer-1bt80nc, .framer-KcJ3T .framer-10vb5ta, .framer-KcJ3T .framer-yu2k6a, .framer-KcJ3T .framer-tehrba { gap: 0px; } .framer-KcJ3T.framer-1ruaiiy > *, .framer-KcJ3T .framer-1wagtne > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-KcJ3T.framer-1ruaiiy > :first-child, .framer-KcJ3T .framer-1p6qza0 > :first-child, .framer-KcJ3T .framer-seflij > :first-child, .framer-KcJ3T .framer-1911mbr > :first-child, .framer-KcJ3T .framer-2iw08l > :first-child, .framer-KcJ3T .framer-11x59oe > :first-child, .framer-KcJ3T .framer-1sebaby > :first-child, .framer-KcJ3T .framer-1dsrw8y > :first-child, .framer-KcJ3T .framer-xcnocs > :first-child, .framer-KcJ3T .framer-1ubuhe5 > :first-child, .framer-KcJ3T .framer-y3w0et > :first-child, .framer-KcJ3T .framer-1kdcrt5 > :first-child, .framer-KcJ3T .framer-9b1dek > :first-child, .framer-KcJ3T .framer-1skbgn5 > :first-child, .framer-KcJ3T .framer-d12l7n > :first-child, .framer-KcJ3T .framer-1wagtne > :first-child, .framer-KcJ3T .framer-10k4a2n > :first-child, .framer-KcJ3T .framer-15msaa6 > :first-child, .framer-KcJ3T .framer-hdc4d6 > :first-child, .framer-KcJ3T .framer-1j7achm > :first-child, .framer-KcJ3T .framer-fvtze7 > :first-child, .framer-KcJ3T .framer-14rina3 > :first-child, .framer-KcJ3T .framer-13sy84y > :first-child, .framer-KcJ3T .framer-1pgqywe > :first-child, .framer-KcJ3T .framer-1upt5ka > :first-child, .framer-KcJ3T .framer-1teqx28 > :first-child, .framer-KcJ3T .framer-gplygp > :first-child, .framer-KcJ3T .framer-1k9o09g > :first-child, .framer-KcJ3T .framer-exq0hh > :first-child, .framer-KcJ3T .framer-ajvvjf > :first-child, .framer-KcJ3T .framer-kcyqu9 > :first-child, .framer-KcJ3T .framer-33u7mf > :first-child, .framer-KcJ3T .framer-1s3w2nu > :first-child, .framer-KcJ3T .framer-nkyd7c > :first-child, .framer-KcJ3T .framer-4ifgf0 > :first-child, .framer-KcJ3T .framer-wvz1ej > :first-child, .framer-KcJ3T .framer-1w225av > :first-child, .framer-KcJ3T .framer-cycfxw > :first-child, .framer-KcJ3T .framer-16q43px > :first-child, .framer-KcJ3T .framer-vvscab > :first-child, .framer-KcJ3T .framer-1ugjcvj > :first-child, .framer-KcJ3T .framer-1vzzk8x > :first-child, .framer-KcJ3T .framer-h4d61c > :first-child, .framer-KcJ3T .framer-18ujhji > :first-child, .framer-KcJ3T .framer-1p5e1lo > :first-child, .framer-KcJ3T .framer-1bt80nc > :first-child, .framer-KcJ3T .framer-10vb5ta > :first-child, .framer-KcJ3T .framer-tehrba > :first-child { margin-top: 0px; } .framer-KcJ3T.framer-1ruaiiy > :last-child, .framer-KcJ3T .framer-1p6qza0 > :last-child, .framer-KcJ3T .framer-seflij > :last-child, .framer-KcJ3T .framer-1911mbr > :last-child, .framer-KcJ3T .framer-2iw08l > :last-child, .framer-KcJ3T .framer-11x59oe > :last-child, .framer-KcJ3T .framer-1sebaby > :last-child, .framer-KcJ3T .framer-1dsrw8y > :last-child, .framer-KcJ3T .framer-xcnocs > :last-child, .framer-KcJ3T .framer-1ubuhe5 > :last-child, .framer-KcJ3T .framer-y3w0et > :last-child, .framer-KcJ3T .framer-1kdcrt5 > :last-child, .framer-KcJ3T .framer-9b1dek > :last-child, .framer-KcJ3T .framer-1skbgn5 > :last-child, .framer-KcJ3T .framer-d12l7n > :last-child, .framer-KcJ3T .framer-1wagtne > :last-child, .framer-KcJ3T .framer-10k4a2n > :last-child, .framer-KcJ3T .framer-15msaa6 > :last-child, .framer-KcJ3T .framer-hdc4d6 > :last-child, .framer-KcJ3T .framer-1j7achm > :last-child, .framer-KcJ3T .framer-fvtze7 > :last-child, .framer-KcJ3T .framer-14rina3 > :last-child, .framer-KcJ3T .framer-13sy84y > :last-child, .framer-KcJ3T .framer-1pgqywe > :last-child, .framer-KcJ3T .framer-1upt5ka > :last-child, .framer-KcJ3T .framer-1teqx28 > :last-child, .framer-KcJ3T .framer-gplygp > :last-child, .framer-KcJ3T .framer-1k9o09g > :last-child, .framer-KcJ3T .framer-exq0hh > :last-child, .framer-KcJ3T .framer-ajvvjf > :last-child, .framer-KcJ3T .framer-kcyqu9 > :last-child, .framer-KcJ3T .framer-33u7mf > :last-child, .framer-KcJ3T .framer-1s3w2nu > :last-child, .framer-KcJ3T .framer-nkyd7c > :last-child, .framer-KcJ3T .framer-4ifgf0 > :last-child, .framer-KcJ3T .framer-wvz1ej > :last-child, .framer-KcJ3T .framer-1w225av > :last-child, .framer-KcJ3T .framer-cycfxw > :last-child, .framer-KcJ3T .framer-16q43px > :last-child, .framer-KcJ3T .framer-vvscab > :last-child, .framer-KcJ3T .framer-1ugjcvj > :last-child, .framer-KcJ3T .framer-1vzzk8x > :last-child, .framer-KcJ3T .framer-h4d61c > :last-child, .framer-KcJ3T .framer-18ujhji > :last-child, .framer-KcJ3T .framer-1p5e1lo > :last-child, .framer-KcJ3T .framer-1bt80nc > :last-child, .framer-KcJ3T .framer-10vb5ta > :last-child, .framer-KcJ3T .framer-tehrba > :last-child { margin-bottom: 0px; } .framer-KcJ3T .framer-1p6qza0 > *, .framer-KcJ3T .framer-1sebaby > *, .framer-KcJ3T .framer-d12l7n > *, .framer-KcJ3T .framer-hdc4d6 > *, .framer-KcJ3T .framer-1j7achm > *, .framer-KcJ3T .framer-14rina3 > *, .framer-KcJ3T .framer-1pgqywe > *, .framer-KcJ3T .framer-1k9o09g > *, .framer-KcJ3T .framer-1s3w2nu > *, .framer-KcJ3T .framer-nkyd7c > *, .framer-KcJ3T .framer-4ifgf0 > *, .framer-KcJ3T .framer-16q43px > *, .framer-KcJ3T .framer-h4d61c > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-KcJ3T .framer-seflij > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-KcJ3T .framer-12973pz > *, .framer-KcJ3T .framer-1taouzv > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-KcJ3T .framer-12973pz > :first-child, .framer-KcJ3T .framer-1taouzv > :first-child, .framer-KcJ3T .framer-dfz530 > :first-child, .framer-KcJ3T .framer-13fwcnd > :first-child, .framer-KcJ3T .framer-1oy1arh > :first-child, .framer-KcJ3T .framer-1v6qrxg > :first-child, .framer-KcJ3T .framer-1gnyxay > :first-child, .framer-KcJ3T .framer-12p3gpg > :first-child, .framer-KcJ3T .framer-cw5j6h > :first-child, .framer-KcJ3T .framer-1tjr7kp > :first-child, .framer-KcJ3T .framer-1ywwona > :first-child, .framer-KcJ3T .framer-bpc3sx > :first-child, .framer-KcJ3T .framer-i9q5xp > :first-child, .framer-KcJ3T .framer-8l2a1x > :first-child, .framer-KcJ3T .framer-r7prsq > :first-child, .framer-KcJ3T .framer-y0ufoc > :first-child, .framer-KcJ3T .framer-4x4ntx > :first-child, .framer-KcJ3T .framer-yu2k6a > :first-child { margin-left: 0px; } .framer-KcJ3T .framer-12973pz > :last-child, .framer-KcJ3T .framer-1taouzv > :last-child, .framer-KcJ3T .framer-dfz530 > :last-child, .framer-KcJ3T .framer-13fwcnd > :last-child, .framer-KcJ3T .framer-1oy1arh > :last-child, .framer-KcJ3T .framer-1v6qrxg > :last-child, .framer-KcJ3T .framer-1gnyxay > :last-child, .framer-KcJ3T .framer-12p3gpg > :last-child, .framer-KcJ3T .framer-cw5j6h > :last-child, .framer-KcJ3T .framer-1tjr7kp > :last-child, .framer-KcJ3T .framer-1ywwona > :last-child, .framer-KcJ3T .framer-bpc3sx > :last-child, .framer-KcJ3T .framer-i9q5xp > :last-child, .framer-KcJ3T .framer-8l2a1x > :last-child, .framer-KcJ3T .framer-r7prsq > :last-child, .framer-KcJ3T .framer-y0ufoc > :last-child, .framer-KcJ3T .framer-4x4ntx > :last-child, .framer-KcJ3T .framer-yu2k6a > :last-child { margin-right: 0px; } .framer-KcJ3T .framer-dfz530 > *, .framer-KcJ3T .framer-1v6qrxg > *, .framer-KcJ3T .framer-cw5j6h > *, .framer-KcJ3T .framer-1tjr7kp > *, .framer-KcJ3T .framer-1ywwona > *, .framer-KcJ3T .framer-y0ufoc > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-KcJ3T .framer-1911mbr > *, .framer-KcJ3T .framer-11x59oe > *, .framer-KcJ3T .framer-1dsrw8y > *, .framer-KcJ3T .framer-1kdcrt5 > *, .framer-KcJ3T .framer-10k4a2n > *, .framer-KcJ3T .framer-1teqx28 > *, .framer-KcJ3T .framer-10vb5ta > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-KcJ3T .framer-2iw08l > *, .framer-KcJ3T .framer-1vzzk8x > *, .framer-KcJ3T .framer-tehrba > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-KcJ3T .framer-xcnocs > *, .framer-KcJ3T .framer-1ubuhe5 > *, .framer-KcJ3T .framer-y3w0et > *, .framer-KcJ3T .framer-1skbgn5 > *, .framer-KcJ3T .framer-fvtze7 > *, .framer-KcJ3T .framer-13sy84y > *, .framer-KcJ3T .framer-1upt5ka > *, .framer-KcJ3T .framer-exq0hh > *, .framer-KcJ3T .framer-ajvvjf > *, .framer-KcJ3T .framer-kcyqu9 > *, .framer-KcJ3T .framer-18ujhji > *, .framer-KcJ3T .framer-1p5e1lo > *, .framer-KcJ3T .framer-1bt80nc > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-KcJ3T .framer-13fwcnd > *, .framer-KcJ3T .framer-yu2k6a > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-KcJ3T .framer-1oy1arh > *, .framer-KcJ3T .framer-1gnyxay > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-KcJ3T .framer-9b1dek > *, .framer-KcJ3T .framer-15msaa6 > *, .framer-KcJ3T .framer-cycfxw > *, .framer-KcJ3T .framer-vvscab > *, .framer-KcJ3T .framer-1ugjcvj > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-KcJ3T .framer-12p3gpg > *, .framer-KcJ3T .framer-8l2a1x > *, .framer-KcJ3T .framer-r7prsq > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-KcJ3T .framer-bpc3sx > *, .framer-KcJ3T .framer-i9q5xp > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-KcJ3T .framer-gplygp > * { margin: 0px; margin-bottom: calc(122px / 2); margin-top: calc(122px / 2); } .framer-KcJ3T .framer-33u7mf > *, .framer-KcJ3T .framer-wvz1ej > *, .framer-KcJ3T .framer-1w225av > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-KcJ3T .framer-4x4ntx > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,...sharedStyle11.css,...sharedStyle12.css,...sharedStyle13.css,...sharedStyle14.css,...sharedStyle15.css,...sharedStyle16.css,...sharedStyle17.css,...sharedStyle18.css,...sharedStyle19.css,...sharedStyle20.css,\"@media (min-width: 768px) and (max-width: 1023px) { .framer-KcJ3T.framer-1ruaiiy { width: 768px; } .framer-KcJ3T .framer-1imn739-container { right: 24px; } .framer-KcJ3T .framer-1p6qza0 { gap: 24px; } .framer-KcJ3T .framer-1911mbr { border-bottom-left-radius: unset; border-bottom-right-radius: unset; border-top-left-radius: unset; border-top-right-radius: unset; will-change: unset; } .framer-KcJ3T .framer-19mpoj7, .framer-KcJ3T .framer-18ri7wk-container { height: 400px; } .framer-KcJ3T .framer-1oy1arh { padding: 72px 16px 72px 16px; } .framer-KcJ3T .framer-9b1dek { gap: 16px; } .framer-KcJ3T .framer-1skbgn5 { padding: 0px; } .framer-KcJ3T .framer-1v6qrxg, .framer-KcJ3T .framer-1ywwona { gap: 25px; padding: 0px; } .framer-KcJ3T .framer-d12l7n { gap: 24px; padding: 72px 16px 72px 16px; } .framer-KcJ3T .framer-12p3gpg, .framer-KcJ3T .framer-9o90wz { max-width: unset; } .framer-KcJ3T .framer-1wagtne { height: var(--framer-aspect-ratio-supported, 401px); } .framer-KcJ3T .framer-dfx3ne { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 8px; justify-content: flex-start; } .framer-KcJ3T .framer-ohk82q, .framer-KcJ3T .framer-1teqx28 { flex: none; width: 100%; } .framer-KcJ3T .framer-10k4a2n { align-content: flex-start; align-items: flex-start; flex: none; gap: 16px; width: 100%; } .framer-KcJ3T.framer-fe73wv-container { top: 50%; } .framer-KcJ3T .framer-15msaa6 { gap: 24px; padding: 72px 0px 72px 0px; } .framer-KcJ3T .framer-hdc4d6 { padding: 0px 16px 0px 16px; } .framer-KcJ3T .framer-1tjr7kp { overflow: auto; padding: 0px 16px 16px 16px; } .framer-KcJ3T .framer-1j7achm, .framer-KcJ3T .framer-14rina3, .framer-KcJ3T .framer-1pgqywe { width: 360px; } .framer-KcJ3T .framer-17xqys, .framer-KcJ3T .framer-1sg2uxk, .framer-KcJ3T .framer-1mfwm56 { height: 240px; } .framer-KcJ3T .framer-fvtze7, .framer-KcJ3T .framer-13sy84y, .framer-KcJ3T .framer-1upt5ka { gap: 8px; } .framer-KcJ3T .framer-bpc3sx { flex: 280 0 0px; flex-direction: column; gap: 16px; padding: 0px 16px 0px 16px; } .framer-KcJ3T .framer-nwqlsv { order: 0; } .framer-KcJ3T .framer-i9q5xp { order: 1; } .framer-KcJ3T .framer-1370wvi { order: 3; } .framer-KcJ3T .framer-1owozi4 { order: 2; } .framer-KcJ3T .framer-33u7mf, .framer-KcJ3T .framer-wvz1ej { gap: 48px; padding: 72px 16px 72px 16px; } .framer-KcJ3T .framer-1w225av { gap: 48px; padding: 0px; } .framer-KcJ3T .framer-cycfxw { gap: 16px; padding: 72px 16px 72px 16px; } .framer-KcJ3T .framer-vvscab { gap: 48px; padding: 73px 16px 73px 16px; } .framer-KcJ3T .framer-tehrba { padding: 80px; } .framer-KcJ3T .framer-x8vy1u-container { max-width: 650px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-KcJ3T .framer-1p6qza0, .framer-KcJ3T .framer-9b1dek, .framer-KcJ3T .framer-1v6qrxg, .framer-KcJ3T .framer-d12l7n, .framer-KcJ3T .framer-dfx3ne, .framer-KcJ3T .framer-10k4a2n, .framer-KcJ3T .framer-15msaa6, .framer-KcJ3T .framer-fvtze7, .framer-KcJ3T .framer-13sy84y, .framer-KcJ3T .framer-1upt5ka, .framer-KcJ3T .framer-1ywwona, .framer-KcJ3T .framer-bpc3sx, .framer-KcJ3T .framer-33u7mf, .framer-KcJ3T .framer-wvz1ej, .framer-KcJ3T .framer-1w225av, .framer-KcJ3T .framer-cycfxw, .framer-KcJ3T .framer-vvscab { gap: 0px; } .framer-KcJ3T .framer-1p6qza0 > *, .framer-KcJ3T .framer-d12l7n > *, .framer-KcJ3T .framer-15msaa6 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-KcJ3T .framer-1p6qza0 > :first-child, .framer-KcJ3T .framer-9b1dek > :first-child, .framer-KcJ3T .framer-d12l7n > :first-child, .framer-KcJ3T .framer-dfx3ne > :first-child, .framer-KcJ3T .framer-10k4a2n > :first-child, .framer-KcJ3T .framer-15msaa6 > :first-child, .framer-KcJ3T .framer-fvtze7 > :first-child, .framer-KcJ3T .framer-13sy84y > :first-child, .framer-KcJ3T .framer-1upt5ka > :first-child, .framer-KcJ3T .framer-bpc3sx > :first-child, .framer-KcJ3T .framer-33u7mf > :first-child, .framer-KcJ3T .framer-wvz1ej > :first-child, .framer-KcJ3T .framer-1w225av > :first-child, .framer-KcJ3T .framer-cycfxw > :first-child, .framer-KcJ3T .framer-vvscab > :first-child { margin-top: 0px; } .framer-KcJ3T .framer-1p6qza0 > :last-child, .framer-KcJ3T .framer-9b1dek > :last-child, .framer-KcJ3T .framer-d12l7n > :last-child, .framer-KcJ3T .framer-dfx3ne > :last-child, .framer-KcJ3T .framer-10k4a2n > :last-child, .framer-KcJ3T .framer-15msaa6 > :last-child, .framer-KcJ3T .framer-fvtze7 > :last-child, .framer-KcJ3T .framer-13sy84y > :last-child, .framer-KcJ3T .framer-1upt5ka > :last-child, .framer-KcJ3T .framer-bpc3sx > :last-child, .framer-KcJ3T .framer-33u7mf > :last-child, .framer-KcJ3T .framer-wvz1ej > :last-child, .framer-KcJ3T .framer-1w225av > :last-child, .framer-KcJ3T .framer-cycfxw > :last-child, .framer-KcJ3T .framer-vvscab > :last-child { margin-bottom: 0px; } .framer-KcJ3T .framer-9b1dek > *, .framer-KcJ3T .framer-10k4a2n > *, .framer-KcJ3T .framer-bpc3sx > *, .framer-KcJ3T .framer-cycfxw > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-KcJ3T .framer-1v6qrxg > *, .framer-KcJ3T .framer-1ywwona > * { margin: 0px; margin-left: calc(25px / 2); margin-right: calc(25px / 2); } .framer-KcJ3T .framer-1v6qrxg > :first-child, .framer-KcJ3T .framer-1ywwona > :first-child { margin-left: 0px; } .framer-KcJ3T .framer-1v6qrxg > :last-child, .framer-KcJ3T .framer-1ywwona > :last-child { margin-right: 0px; } .framer-KcJ3T .framer-dfx3ne > *, .framer-KcJ3T .framer-fvtze7 > *, .framer-KcJ3T .framer-13sy84y > *, .framer-KcJ3T .framer-1upt5ka > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-KcJ3T .framer-33u7mf > *, .framer-KcJ3T .framer-wvz1ej > *, .framer-KcJ3T .framer-1w225av > *, .framer-KcJ3T .framer-vvscab > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } }}\",\"@media (max-width: 767px) { .framer-KcJ3T.framer-1ruaiiy { padding: 66px 0px 0px 0px; width: 320px; } .framer-KcJ3T .framer-1c2rjnw { left: calc(50.00000000000002% - 10px / 2); order: 0; right: unset; width: 10px; } .framer-KcJ3T .framer-18s3xkr { left: calc(50.00000000000002% - 10px / 2); order: 1; right: unset; width: 10px; } .framer-KcJ3T .framer-1imn739-container { bottom: 160px; height: 56px; order: 2; right: 16px; width: 56px; } .framer-KcJ3T .framer-b6gr3k-container { order: 3; right: 0px; width: unset; } .framer-KcJ3T .framer-uvah9s-container { height: auto; order: 4; z-index: 9; } .framer-KcJ3T .framer-1p6qza0 { justify-content: center; order: 5; } .framer-KcJ3T .framer-1gejhcg-container { max-width: unset; order: 0; } .framer-KcJ3T .framer-seflij { gap: 8px; order: 1; } .framer-KcJ3T .framer-12973pz { gap: 2px; height: 24px; order: 0; top: 47%; } .framer-KcJ3T .framer-1vb0udl, .framer-KcJ3T .framer-41m1m7 { order: 0; } .framer-KcJ3T .framer-1entq3w, .framer-KcJ3T .framer-4x4ntx { order: 1; } .framer-KcJ3T .framer-1taouzv { gap: 2px; height: 24px; order: 1; top: 50%; } .framer-KcJ3T .framer-dfz530, .framer-KcJ3T .framer-12p3gpg, .framer-KcJ3T .framer-ohmfmg, .framer-KcJ3T .framer-1l5q4vq, .framer-KcJ3T .framer-14gixae, .framer-KcJ3T .framer-1t93j51-container, .framer-KcJ3T .framer-x8vy1u-container { max-width: unset; } .framer-KcJ3T .framer-1911mbr { border-bottom-left-radius: unset; border-bottom-right-radius: unset; border-top-left-radius: unset; border-top-right-radius: unset; will-change: unset; } .framer-KcJ3T .framer-19mpoj7, .framer-KcJ3T .framer-1owozi4 { height: 240px; } .framer-KcJ3T .framer-1oy1arh { flex-direction: column; gap: 0px; justify-content: flex-start; order: 6; padding: 0px; } .framer-KcJ3T .framer-9b1dek { align-content: flex-start; align-items: flex-start; flex: none; gap: 24px; order: 0; padding: 48px 0px 48px 0px; width: 100%; } .framer-KcJ3T .framer-1v6qrxg { align-content: flex-start; align-items: flex-start; } .framer-KcJ3T .framer-1gnyxay { gap: 0px; } .framer-KcJ3T .framer-d12l7n { order: 7; padding: 48px 16px 48px 16px; } .framer-KcJ3T .framer-1dwd0gx { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-KcJ3T .framer-1wagtne { height: var(--framer-aspect-ratio-supported, 157px); } .framer-KcJ3T .framer-1fvhwit-container { flex: none; height: 300px; } .framer-KcJ3T .framer-cw5j6h { order: 8; } .framer-KcJ3T .framer-dfx3ne { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 8px; justify-content: flex-start; } .framer-KcJ3T .framer-ohk82q { flex: none; width: 100%; } .framer-KcJ3T .framer-10k4a2n { align-content: flex-start; align-items: flex-start; flex: none; gap: 16px; width: 100%; } .framer-KcJ3T.framer-fe73wv-container { min-width: 240px; width: 90%; } .framer-KcJ3T .framer-15msaa6 { gap: 24px; order: 9; padding: 48px 0px 32px 0px; } .framer-KcJ3T .framer-hdc4d6 { gap: 8px; max-width: unset; padding: 0px 8px 0px 8px; } .framer-KcJ3T .framer-1tjr7kp { max-width: unset; overflow: auto; padding: 0px 8px 16px 8px; } .framer-KcJ3T .framer-1j7achm, .framer-KcJ3T .framer-14rina3, .framer-KcJ3T .framer-1pgqywe { width: 260px; } .framer-KcJ3T .framer-17xqys, .framer-KcJ3T .framer-1mfwm56 { height: 200px; } .framer-KcJ3T .framer-fvtze7 { left: 8px; right: 8px; } .framer-KcJ3T .framer-1sg2uxk { height: 200px; order: 0; } .framer-KcJ3T .framer-1ywwona { align-content: flex-start; align-items: flex-start; order: 10; padding: 0px 8px 0px 8px; } .framer-KcJ3T .framer-bpc3sx { flex-direction: column; gap: 16px; } .framer-KcJ3T .framer-1teqx28 { flex: none; gap: 16px; width: 100%; } .framer-KcJ3T .framer-33u7mf { gap: 32px; order: 11; padding: 48px 8px 48px 8px; } .framer-KcJ3T .framer-1s3w2nu, .framer-KcJ3T .framer-nkyd7c, .framer-KcJ3T .framer-4ifgf0 { gap: 8px; max-width: unset; } .framer-KcJ3T .framer-wvz1ej { gap: 24px; order: 12; padding: 48px 16px 48px 16px; } .framer-KcJ3T .framer-1w225av { order: 13; padding: 0px; } .framer-KcJ3T .framer-cycfxw { gap: 16px; max-width: unset; padding: 48px 16px 48px 16px; } .framer-KcJ3T .framer-18ri7wk-container { height: 320px; } .framer-KcJ3T .framer-1usbx02 { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-KcJ3T .framer-vvscab { align-content: flex-start; align-items: flex-start; gap: 16px; order: 16; padding: 48px 16px 48px 16px; } .framer-KcJ3T .framer-1ugjcvj { order: 14; } .framer-KcJ3T .framer-tehrba { gap: 0px; order: 17; overflow: visible; padding: 48px 16px 48px 16px; } .framer-KcJ3T .framer-2y90u1-container { order: 18; } .framer-KcJ3T.framer-s46dxt-container { left: 16px; right: 16px; transform: translateY(-50%); width: unset; } .framer-KcJ3T .framer-1o86qxv-container { order: 19; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-KcJ3T .framer-seflij, .framer-KcJ3T .framer-12973pz, .framer-KcJ3T .framer-1taouzv, .framer-KcJ3T .framer-1oy1arh, .framer-KcJ3T .framer-9b1dek, .framer-KcJ3T .framer-1gnyxay, .framer-KcJ3T .framer-dfx3ne, .framer-KcJ3T .framer-10k4a2n, .framer-KcJ3T .framer-15msaa6, .framer-KcJ3T .framer-hdc4d6, .framer-KcJ3T .framer-bpc3sx, .framer-KcJ3T .framer-1teqx28, .framer-KcJ3T .framer-33u7mf, .framer-KcJ3T .framer-1s3w2nu, .framer-KcJ3T .framer-nkyd7c, .framer-KcJ3T .framer-4ifgf0, .framer-KcJ3T .framer-wvz1ej, .framer-KcJ3T .framer-cycfxw, .framer-KcJ3T .framer-vvscab, .framer-KcJ3T .framer-tehrba { gap: 0px; } .framer-KcJ3T .framer-seflij > *, .framer-KcJ3T .framer-dfx3ne > *, .framer-KcJ3T .framer-hdc4d6 > *, .framer-KcJ3T .framer-1s3w2nu > *, .framer-KcJ3T .framer-nkyd7c > *, .framer-KcJ3T .framer-4ifgf0 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-KcJ3T .framer-seflij > :first-child, .framer-KcJ3T .framer-1oy1arh > :first-child, .framer-KcJ3T .framer-9b1dek > :first-child, .framer-KcJ3T .framer-dfx3ne > :first-child, .framer-KcJ3T .framer-10k4a2n > :first-child, .framer-KcJ3T .framer-15msaa6 > :first-child, .framer-KcJ3T .framer-hdc4d6 > :first-child, .framer-KcJ3T .framer-bpc3sx > :first-child, .framer-KcJ3T .framer-1teqx28 > :first-child, .framer-KcJ3T .framer-33u7mf > :first-child, .framer-KcJ3T .framer-1s3w2nu > :first-child, .framer-KcJ3T .framer-nkyd7c > :first-child, .framer-KcJ3T .framer-4ifgf0 > :first-child, .framer-KcJ3T .framer-wvz1ej > :first-child, .framer-KcJ3T .framer-cycfxw > :first-child, .framer-KcJ3T .framer-vvscab > :first-child, .framer-KcJ3T .framer-tehrba > :first-child { margin-top: 0px; } .framer-KcJ3T .framer-seflij > :last-child, .framer-KcJ3T .framer-1oy1arh > :last-child, .framer-KcJ3T .framer-9b1dek > :last-child, .framer-KcJ3T .framer-dfx3ne > :last-child, .framer-KcJ3T .framer-10k4a2n > :last-child, .framer-KcJ3T .framer-15msaa6 > :last-child, .framer-KcJ3T .framer-hdc4d6 > :last-child, .framer-KcJ3T .framer-bpc3sx > :last-child, .framer-KcJ3T .framer-1teqx28 > :last-child, .framer-KcJ3T .framer-33u7mf > :last-child, .framer-KcJ3T .framer-1s3w2nu > :last-child, .framer-KcJ3T .framer-nkyd7c > :last-child, .framer-KcJ3T .framer-4ifgf0 > :last-child, .framer-KcJ3T .framer-wvz1ej > :last-child, .framer-KcJ3T .framer-cycfxw > :last-child, .framer-KcJ3T .framer-vvscab > :last-child, .framer-KcJ3T .framer-tehrba > :last-child { margin-bottom: 0px; } .framer-KcJ3T .framer-12973pz > *, .framer-KcJ3T .framer-1taouzv > * { margin: 0px; margin-left: calc(2px / 2); margin-right: calc(2px / 2); } .framer-KcJ3T .framer-12973pz > :first-child, .framer-KcJ3T .framer-1taouzv > :first-child, .framer-KcJ3T .framer-1gnyxay > :first-child { margin-left: 0px; } .framer-KcJ3T .framer-12973pz > :last-child, .framer-KcJ3T .framer-1taouzv > :last-child, .framer-KcJ3T .framer-1gnyxay > :last-child { margin-right: 0px; } .framer-KcJ3T .framer-1oy1arh > *, .framer-KcJ3T .framer-tehrba > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-KcJ3T .framer-9b1dek > *, .framer-KcJ3T .framer-15msaa6 > *, .framer-KcJ3T .framer-wvz1ej > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-KcJ3T .framer-1gnyxay > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-KcJ3T .framer-10k4a2n > *, .framer-KcJ3T .framer-bpc3sx > *, .framer-KcJ3T .framer-1teqx28 > *, .framer-KcJ3T .framer-cycfxw > *, .framer-KcJ3T .framer-vvscab > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-KcJ3T .framer-33u7mf > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 8899\n * @framerIntrinsicWidth 1024\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"cFjCu5Eon\":{\"layout\":[\"fixed\",\"auto\"]},\"dfvxdwsF8\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"Gc80UmmHD\":{\"pattern\":\":Gc80UmmHD\",\"name\":\"top\"},\"W8gMkyLDu\":{\"pattern\":\":W8gMkyLDu\",\"name\":\"trigger\"},\"wx7qzQsTc\":{\"pattern\":\":wx7qzQsTc\",\"name\":\"register\"},\"KNDaQeEj3\":{\"pattern\":\":KNDaQeEj3\",\"name\":\"projects\"},\"JrOnEv6VX\":{\"pattern\":\":JrOnEv6VX\",\"name\":\"overview\"},\"X6CpMJMMi\":{\"pattern\":\":X6CpMJMMi\",\"name\":\"location\"},\"Wh3fySPPV\":{\"pattern\":\":Wh3fySPPV\",\"name\":\"reg\"},\"lLPRagkxw\":{\"pattern\":\":lLPRagkxw\",\"name\":\"footer\"}}\n * @framerResponsiveScreen\n */const FrameriCL82Es4G=withCSS(Component,css,\"framer-KcJ3T\");export default FrameriCL82Es4G;FrameriCL82Es4G.displayName=\"Neighborhoods\";FrameriCL82Es4G.defaultProps={height:8899,width:1024};addFonts(FrameriCL82Es4G,[{explicitInter:true,fonts:[{family:\"SF Pro Text Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/HZqX1E0smkzNnCKgA5KG93Ni1I.woff2\"},{family:\"SF Pro Text Light\",source:\"custom\",url:\"https://framerusercontent.com/assets/vvFDh0tH474wndDVPYeSoVwG6CE.woff2\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"SF Pro Text Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/KT3PJ5qQOGTYiAmjhcHS9qrVQk.woff2\"},{family:\"SF Pro Text Semibold\",source:\"custom\",url:\"https://framerusercontent.com/assets/Fa3Fz8v5utSlbR8AcqR9QHp1Os.woff2\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"}]},...ArrowButtonFonts,...NavigationFonts,...WebinarStickyFonts,...BreadcrumbFonts,...PhoneNumberInputFonts,...FormButtonFonts,...ListingCardFonts,...RichTextCarouselFonts,...OverviewTextAreasFonts,...PrimaryButtonFonts,...CardFonts,...LivingExperienceFonts,...GoogleMapsFonts,...AttractionFonts,...FAQNeighborhoodsFonts,...NewsletterFonts,...BrochureSectionFonts,...BrochurePopUpNeighborhoodsFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts),...getFontsFromSharedStyle(sharedStyle11.fonts),...getFontsFromSharedStyle(sharedStyle12.fonts),...getFontsFromSharedStyle(sharedStyle13.fonts),...getFontsFromSharedStyle(sharedStyle14.fonts),...getFontsFromSharedStyle(sharedStyle15.fonts),...getFontsFromSharedStyle(sharedStyle16.fonts),...getFontsFromSharedStyle(sharedStyle17.fonts),...getFontsFromSharedStyle(sharedStyle18.fonts),...getFontsFromSharedStyle(sharedStyle19.fonts),...getFontsFromSharedStyle(sharedStyle20.fonts),...componentPresets.fonts?.[\"PRBXapo87\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"PRBXapo87\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameriCL82Es4G\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerScrollSections\":\"{\\\"Gc80UmmHD\\\":{\\\"pattern\\\":\\\":Gc80UmmHD\\\",\\\"name\\\":\\\"top\\\"},\\\"W8gMkyLDu\\\":{\\\"pattern\\\":\\\":W8gMkyLDu\\\",\\\"name\\\":\\\"trigger\\\"},\\\"wx7qzQsTc\\\":{\\\"pattern\\\":\\\":wx7qzQsTc\\\",\\\"name\\\":\\\"register\\\"},\\\"KNDaQeEj3\\\":{\\\"pattern\\\":\\\":KNDaQeEj3\\\",\\\"name\\\":\\\"projects\\\"},\\\"JrOnEv6VX\\\":{\\\"pattern\\\":\\\":JrOnEv6VX\\\",\\\"name\\\":\\\"overview\\\"},\\\"X6CpMJMMi\\\":{\\\"pattern\\\":\\\":X6CpMJMMi\\\",\\\"name\\\":\\\"location\\\"},\\\"Wh3fySPPV\\\":{\\\"pattern\\\":\\\":Wh3fySPPV\\\",\\\"name\\\":\\\"reg\\\"},\\\"lLPRagkxw\\\":{\\\"pattern\\\":\\\":lLPRagkxw\\\",\\\"name\\\":\\\"footer\\\"}}\",\"framerResponsiveScreen\":\"\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicWidth\":\"1024\",\"framerIntrinsicHeight\":\"8899\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"cFjCu5Eon\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dfvxdwsF8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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AK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KA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",
  "names": ["Lightbox", "src", "onClose", "ue", "Ha", "p", "e", "RichTextCarousel", "props", "richText", "arrowImage", "imageSpacing", "heightMode", "transitionType", "showFirstImageOnly", "arrowSize", "enableLightbox", "imageSrcs", "setImageSrcs", "ye", "currentIndex", "setCurrentIndex", "lightboxSrc", "setLightboxSrc", "extractImages", "element", "images", "searchForImages", "j", "child", "handleNext", "prevIndex", "handlePrev", "getImageStyle", "getTransition", "displayedImages", "u", "Frame", "motion", "index", "addPropertyControls", "ControlType", "PrimaryButtonFonts", "getFonts", "LOo7LSFzj_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", "height", "id", "title", "width", "props", "createLayoutDependency", "Component", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "NQ4hzBviF", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "sharedStyleClassNames", "isDisplayed", "scopingClassNames", "cx", "isDisplayed1", "LayoutGroup", "u", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramercXUODEq8x", "withCSS", "cXUODEq8x_default", "addPropertyControls", "ControlType", "addFonts", "useStore", "createStore", "LINES", "withLineTruncate", "Component", "props", "styles", "p", "l", "RichTextDefault11l72vph", "withCodeBoundaryForOverrides", "RichText2", "withLineTruncate", "SecondaryButtonFonts", "getFonts", "TBRtfwjce_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", "height", "id", "overviewText", "width", "props", "createLayoutDependency", "Component", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "mgnsP1ll7", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "NcLf_JmGvah5q1z", "args", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramernbdzcR37D", "withCSS", "nbdzcR37D_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "prefix", "value", "suffix", "toResponsiveImage", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "distance", "height", "id", "image", "time", "title", "width", "props", "createLayoutDependency", "Component", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "tdbTBJRWr", "tqBQcUesA", "S7Y6aThcb", "PlJJGu_Za", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "textContent", "textContent1", "LayoutGroup", "u", "RichText2", "Image2", "getLoadingLazyAtYPosition", "css", "FramerUC5RjfvoP", "withCSS", "UC5RjfvoP_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "RowFonts", "getFonts", "Raqv6C44c_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "prefix", "value", "suffix", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "answer1", "answer10", "answer2", "answer3", "answer4", "answer5", "answer6", "answer7", "answer8", "answer9", "height", "id", "name1", "question1", "question10", "question2", "question3", "question4", "question5", "question6", "question7", "question8", "question9", "width", "props", "createLayoutDependency", "Component", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "iVAm38o6D", "UvLfPqgHp", "L0ADE0stV", "iPjKZojRf", "YZwngVN9R", "M21VtdZyl", "QWqbeMP6t", "cdKYnMAmA", "JFERGQQO1", "U5srOZ81C", "PO7tLR1fG", "zjtF1a16B", "SIFAbIV_R", "VN_GdTzuH", "SznD1LfQE", "u3FeBNk30", "W5mIxVuzI", "BeNEQZikc", "hezOTuHVK", "xPYSLgPFL", "eEwMn_GOr", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "ComponentViewportProvider", "css", "Framerwf3F6kXmh", "withCSS", "wf3F6kXmh_default", "addPropertyControls", "ControlType", "addFonts", "PhoneNumberInputFonts", "getFonts", "PhoneNumberInput", "FormButtonFonts", "vdpuiWdxl_default", "BorderButtonFonts", "KSMxWiDZh_default", "MotionDivWithFX", "withFX", "motion", "MotionDivWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "animation1", "transition2", "animation2", "formVariants", "form", "currentVariant", "transition3", "animation3", "animation4", "animation5", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "Overlay", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "Transition", "value", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "neighborhood", "width", "props", "createLayoutDependency", "variants", "Component", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "ecOLjecbu", "tmUivBZ3w", "o0zFBH8RiZ3F7p918B", "YGUn0QV58Z3F7p918B", "DRlcpg6haZ3F7p918B", "FqWwQqlhuZ3F7p918B", "idZ3F7p918B", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1lih6ge", "args", "onSuccesstxyyif", "overlay", "loadMore", "scopingClassNames", "cx", "serializationHash", "ref1", "ref2", "router", "useRouter", "LayoutGroup", "transition2", "u", "MotionDivWithFXWithOptimizedAppearEffect", "animation", "animation1", "addPropertyOverrides", "animation2", "Image2", "getLoadingLazyAtYPosition", "RichText2", "l", "FormContainer", "formState", "FormPlainTextInput2", "ComponentViewportProvider", "SmartComponentScopedContainer", "PhoneNumberInput", "vdpuiWdxl_default", "formVariants", "AnimatePresence", "Floating", "MotionDivWithFX", "animation4", "animation3", "animation5", "ChildrenCanSuspend", "RelGSiuoq_default", "collection", "paginationInfo", "index", "PathVariablesContext", "toResponsiveImage", "ResolveLinks", "resolvedLinks", "KSMxWiDZh_default", "css", "FramerYbGoCwr5c", "withCSS", "YbGoCwr5c_default", "addPropertyControls", "ControlType", "addFonts", "PhoneNumberInputFonts", "FormButtonFonts", "BorderButtonFonts", "getFontsFromSharedStyle", "fonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "title", "width", "props", "createLayoutDependency", "Component", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "Fpr9G53kA", "QPU8gIIdC", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapx951ax", "args", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "u", "RichText2", "css", "FramerfP8zngUcu", "withCSS", "fP8zngUcu_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "LivingExpButtonFonts", "getFonts", "fP8zngUcu_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "isSet", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "aD", "aD2", "aD3", "aD4", "aD5", "amenitiesAndLifestyleText", "aT", "aT2", "aT3", "aT4", "aT5", "eD", "eD2", "eD3", "eD4", "eD5", "educationAndHelathcareText", "eT", "eT2", "eT3", "eT4", "eT5", "height", "id", "tD", "tD2", "transportationText", "tT", "tT2", "width", "props", "createLayoutDependency", "Component", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "WNaQPkGCR", "BZoivsFph", "wYdQmc0Lt", "dv4kCTn2y", "HW4n3dxd6", "iolXJ6Xr2", "zDyoe7Gy3", "Js0uPkYS_", "kio2eLXvI", "ACySdKbzq", "lJG681ASX", "DZyhxEh8t", "Pk_09bYVV", "lF_ddyXoe", "ZYIKLOTIH", "vNq0575BJ", "xoPBBgba8", "uRybqLnnr", "UQl0MVQel", "XoMztyzjm", "sc1qeXSy6", "Tk50I0Iea", "g6yp0d10c", "YtMBQXljE", "EGe2a8CTT", "mC5YbjPEt", "zjhCn8eiw", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "Fpr9G53kAmv2xr", "args", "Fpr9G53kAr6w7xo", "Fpr9G53kA12435jl", "scopingClassNames", "cx", "visible", "visible1", "visible2", "visible3", "visible4", "isDisplayed", "value1", "value2", "visible5", "visible6", "isDisplayed1", "visible7", "visible8", "isDisplayed2", "visible9", "visible10", "visible11", "visible12", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "css", "FramerzMqHYrJLG", "withCSS", "zMqHYrJLG_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "variationAxes", "fonts", "css", "className", "ArrowButtonFonts", "getFonts", "AS0koYtjX_default", "ContainerWithFX", "withFX", "Container", "NavigationFonts", "tRy2IE4jC_default", "WebinarStickyFonts", "cXUODEq8x_default", "WebinarStickyWithVariantAppearEffect", "withVariantAppearEffect", "BreadcrumbFonts", "IXbY4Gmbw_default", "PhoneNumberInputFonts", "PhoneNumberInput", "FormButtonFonts", "vdpuiWdxl_default", "ListingCardFonts", "rO8hPdsfm_default", "RichTextCarouselFonts", "RichTextCarousel", "OverviewTextAreasFonts", "nbdzcR37D_default", "PrimaryButtonFonts", "LOo7LSFzj_default", "CardFonts", "E9_Ihgsax_default", "LivingExperienceFonts", "zMqHYrJLG_default", "GoogleMapsFonts", "GoogleMaps", "AttractionFonts", "UC5RjfvoP_default", "RichTextWithFX", "RichText2", "FAQNeighborhoodsFonts", "wf3F6kXmh_default", "NewsletterFonts", "ch2visMIa_default", "BrochureSectionFonts", "IApucC3CU_default", "BrochurePopUpNeighborhoodsFonts", "YbGoCwr5c_default", "FooterFonts", "vLFbz25nr_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "isSet", "value", "transformTemplate1", "_", "toResponsiveImage", "formVariants", "form", "variants", "currentVariant", "numberToString", "options", "activeLocale", "fallbackLocale", "locale", "useGrouping", "notation", "compactDisplay", "style", "currency", "currencyDisplay", "unit", "unitDisplay", "minimumFractionDigits", "maximumFractionDigits", "minimumIntegerDigits", "formatOptions", "number", "suffix", "equals", "a", "b", "negate", "QueryData", "query", "pageSize", "children", "paginatedQuery", "paginationInfo", "loadMore", "useLoadMorePaginatedQuery", "data", "useQueryData", "transition2", "animation1", "transformTemplate2", "animation2", "animation3", "addImageAlt", "image", "alt", "getContainer", "Overlay", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "lessThan", "prefix", "QueryData1", "toString", "animation4", "transition3", "transition4", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "IEuJPSie2_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "className", "layoutId", "variant", "Zv67e1DVS", "btAYzpgSY", "previousItemId", "previousItemId_Zv67e1DVS", "previousItemId_btAYzpgSY", "nextItemId", "nextItemId_Zv67e1DVS", "nextItemId_btAYzpgSY", "cbcBk9Erd", "t1pcjwckF", "whNrvYiISUjaBtmcdJ", "esUllyI2wUjaBtmcdJ", "FOYlJm4MfUjaBtmcdJ", "oBD1iM1zeUjaBtmcdJ", "a0Ap0Hb_SUjaBtmcdJ", "GjrCEiHq4UjaBtmcdJ", "xujNGf01AUjaBtmcdJ", "Tv2YRhlPbUjaBtmcdJ", "eSxuvxPB7UjaBtmcdJ", "rIFoCbljrUjaBtmcdJ", "FqWwQqlhuUjaBtmcdJ", "idUjaBtmcdJ", "Un3_bplIY", "blcYnUJIS", "AvpGy67eb", "Uwmz4OuSj", "K30ZfdiGo", "wpsv1Uoyx", "ATmMNIgVi", "xzz2fOgLk", "cB4UQzyIa", "sbsT9RJNL", "UPzqsoQHL", "HDGmF7rMw", "yS7DkO87G", "Tv2YRhlPbI8h8jKhku", "whNrvYiISI8h8jKhku", "oBD1iM1zeI8h8jKhku", "xujNGf01AI8h8jKhku", "AviQRnDNPI8h8jKhku", "a0Ap0Hb_SI8h8jKhku", "rBWhGaGHbI8h8jKhku", "eSxuvxPB7I8h8jKhku", "rIFoCbljrI8h8jKhku", "idI8h8jKhku", "nAbC6X_C8", "v2BWS7Hz9", "s6oW_B0cf", "MmGBhQa86", "ZI6gNw1_i", "Z8wrO7mzR", "YahFE2qz9", "FoiHwfdQI", "VHLIVUewA", "IzB778bXD", "oUn2MsTwe", "rmWyn65_x", "DQFskfziq", "Ty482pO32", "yqXq6acVX", "M4ek_nRWP", "b8M8tqnCk", "uPpkefCDF", "geFpVZYnd", "OGVtacTY9", "xFhD7EIEM", "e9q23XyNb", "DSmtETB_P", "Q9XKlNazB", "OtrDBcSIp", "wjuVrJXJ0", "I_H_MYJ52", "uctniaTBN", "YCcW3dqo9", "UCto50n11", "ryACnWELC", "VXFx7dJj_", "ltvNtP_zV", "Crzh4XQXL", "gF4NXPbEA", "KsVAPHLeu", "JMyjCCNAa", "NS9OHOe5f", "Lg8rkf8J4", "SypovrErP", "Rqsts5nEf", "hvA3ipxz8", "Y31uWr_VS", "HTMnyoONA", "vVXywVmiF", "buknxhb4r", "jxlb3BLou", "Axw97cKoa", "Q_svNXjAE", "eB3oHiZYd", "PNUUT7lmd", "o6sfhlVUe", "LJD_0N1Qz", "lsY5E2ujo", "HaOMfvge0", "KpBSuz7qp", "SK_baURcx", "DTqAR86_k", "wjcsrD53R", "n8RKTxBSn", "nfR5QBq_K", "hSjIpe6AZ", "ZeWuvDhKe", "cY8eeGf_h", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "xLP_jxLR33bnx0g", "overlay", "args", "O4u35zQHN1wnntms", "TwHjF83_g3bnx0g", "ecOLjecbu1wnntms", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "router", "useRouter", "ref3", "ref4", "visible1", "elementId2", "ref5", "isDisplayed", "elementId3", "ref6", "isDisplayed1", "activeLocaleCode", "useLocaleCode", "elementId4", "visible2", "visible3", "visible4", "isDisplayed2", "textContent2", "visible6", "visible7", "visible8", "isDisplayed3", "value1", "visible9", "elementId5", "ref7", "visible10", "isDisplayed4", "elementId6", "ref8", "elementId7", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ResolveLinks", "resolvedLinks", "PropertyOverrides2", "ComponentViewportProvider", "resolvedLinks1", "Link", "SVG", "x", "Image2", "FormContainer", "formState", "l", "FormPlainTextInput2", "FormBooleanInput", "ChildrenCanSuspend", "xGCYQ2oay_default", "collection", "index", "PathVariablesContext", "resolvedLinks2", "AnimatePresence", "Ga", "collection1", "paginationInfo1", "loadMore1", "index1", "visible5", "textContent", "textContent1", "ComponentPresetsProvider", "overlay1", "css", "FrameriCL82Es4G", "withCSS", "iCL82Es4G_default", "addFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "__FramerMetadata__"]
}
