{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/P1XRxus9CQiWIYNrkBAa/Carousel.js", "ssg:https://framerusercontent.com/modules/gM14SAvQ8VBMGzDR4UUf/7lKq5pmSXJG5L3W1Gdqr/AS9Q8qA07.js", "ssg:https://framerusercontent.com/modules/3PpN0Mc4SuTmbndnUNQT/r45NlPZZbkgdb5fCUQPV/BTTGHjpeT.js", "ssg:https://framerusercontent.com/modules/hnkXIJs6dTyYEQ9CrsVa/WPE3vkpqAIZULsGrqt4L/C2wjJPjkr.js", "ssg:https://framerusercontent.com/modules/ulgApnM9WuVyNYBTlrCF/8NAbj1UtLHbZsLBJXidG/hQO27tbpj.js", "ssg:https://framerusercontent.com/modules/ebpqTcrjUTJLBsJ523Rp/wQTYi2tnhf4umn3CxPTB/p0MO9RQ_L.js", "ssg:https://framerusercontent.com/modules/UiK8iLOK54iSJosmMV5S/683CUaD9vtIoPcGhe3sT/Dynamic_icon_link.js", "ssg:https://framerusercontent.com/modules/71gltIzNMV088n8ODnXb/Q9JYnZIRAPzyOd5q4Uwr/jkgbHAJKQ.js"],
  "sourcesContent": ["function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isString=t=>\"string\"===typeof t;const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let r=0;for(;r<o-2;r++)if(s<e[r+1])break;let f=clamp(0,1,progress(e[r],e[r+1],s));const c=getEasingForSegment(n,r);f=c(f);return mix(t[r],t[r+1],f)}}const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useCallback,useLayoutEffect,useEffect,useState,useRef,cloneElement,startTransition}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{scroll,resize}from\"@motionone/dom\";import{clamp,progress}from\"@motionone/utils\";import{animate,motion,useMotionValue,useTransform,useReducedMotion}from\"framer-motion\";import{usePadding,paddingControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * Calculate the width of the fade mask. Fade width and inset are provided\n * as percentages. There's a fade on the left and the right, so we return\n * a maximum of 50%.\n */function calcMaskWidth([inset,width]){return inset+(100-inset)*(width/100)*.5;}/**\n * Use media queries to determine if this device uses a mouse as\n * the primary input.\n */function useIsMouse(){const[isMouseDevice,setIsMouseDevice]=useState(false);useLayoutEffect(()=>{startTransition(()=>setIsMouseDevice(window.matchMedia(\"(pointer:fine)\").matches));},[]);return isMouseDevice;}/**\n * This checks a scroll position against the available scrollable\n * range. If we have hit an edge, start/end, we fade out the pagination\n * controls and mask. Likewise if we've just moved away from an edge we\n * fade them back in.\n */function checkLimit(progress,target,{edgeOpacity,moreItems,buttonRef},transition){if(moreItems.current&&progress===target){moreItems.current=false;animate(edgeOpacity,1,transition);buttonRef.current.setAttribute(\"disabled\",\"\");}else if(!moreItems.current&&progress!==target){moreItems.current=true;animate(edgeOpacity,0,transition);buttonRef.current.removeAttribute(\"disabled\");}}function useGUI(initialMoreItems,initialAlpha){const moreItems=useRef(initialMoreItems);const edgeOpacity=useMotionValue(moreItems.current?0:1);const fadeOpacity=useTransform(edgeOpacity,[0,1],[initialAlpha||0,1]);const buttonOpacity=useTransform(edgeOpacity,v=>1-v);const buttonRef=useRef(null);/**\n     * Returns a pointer-events CSS value for a given opacity.\n     * The threshold here is arbitrary, the theory being we\n     * should only enable pointer-events when the button is\n     * somewhat visible.\n     */const pointerEvents=useTransform(buttonOpacity,v=>v>.2?\"auto\":\"none\");/**\n     * Returns a cursor CSS value for a given pointer-events value.\n     * So only indicate\n     */const cursor=useTransform(pointerEvents,v=>v===\"auto\"?\"pointer\":\"default\");const buttonStyle={...baseButtonStyles,opacity:buttonOpacity,pointerEvents,cursor};return{moreItems,fadeOpacity,edgeOpacity,buttonStyle,buttonRef};}function setAriaVisible({element}){element.setAttribute(\"aria-hidden\",false);}function useScrollLimits(container,axis,scrollInfo,updateCurrentScroll,targetScroll,checkLimits,measureItems){useEffect(()=>{if(!container.current)return;const updateScrollInfo=info=>{scrollInfo.current=info[axis];/**\n             * If we've reached our target scroll, delete it.\n             * This way we know when to make calculations based on the\n             * actual current scroll or the target scroll.\n             */if(info[axis].current===targetScroll.current){targetScroll.current=undefined;}updateCurrentScroll(info[axis].current);checkLimits();};const stopScroll=scroll(updateScrollInfo,{container:container.current,axis});const stopResize=resize(container.current,()=>{measureItems();checkLimits();});return()=>{stopScroll();stopResize();};},[checkLimits,measureItems]);}/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export default function Carousel({slots,gap,axis,align,sizingObject,fadeObject,arrowObject,snapObject,progressObject,ariaLabel,borderRadius,effectsObject,...props}){// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numItems=Children.count(filteredSlots);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const padding=usePadding(props);const axisLabel=axis?\"x\":\"y\";const{fadeContent,fadeWidth,fadeInset,fadeTransition,fadeAlpha}=fadeObject;const{snap,snapEdge,fluid}=snapObject;const{widthType,widthInset,widthColumns,heightType,heightInset,heightRows}=sizingObject;const{showScrollbar,showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressObject;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowPadding}=arrowObject;/**\n     * The latest scroll info on the scrollable axis as reported by Motion One.\n     */const scrollInfo=useRef(undefined);/**\n     * The target scroll we're currently animating to, calculated when\n     * a user presses a pagination button.\n     */const targetScroll=useRef(undefined);/**\n     * If we're performing a scroll animation, return the target scroll instead\n     * of the latest scroll position. This will help users paginate through\n     * a carousel much quicker.\n     */const currentScroll=useMotionValue(0);const updateCurrentScroll=newScroll=>{currentScroll.set(targetScroll.current!==undefined?targetScroll.current:newScroll);};/**\n     * We only want to display pagination buttons if the user has enabled the setting\n     * and this is actually a mouse device.\n     */const isMouseDevice=useIsMouse();/**\n     * Create all the motion values for the GUI at each end of the carousel.\n     */const start=useGUI(false,fadeAlpha);const end=useGUI(true,fadeAlpha);const startMaskInset=useMotionValue(fadeInset*.5);const endMaskInset=useTransform(startMaskInset,v=>100-v);const baseWidth=useMotionValue(fadeWidth);const startMaskWidth=useTransform([startMaskInset,baseWidth],calcMaskWidth);const endMaskWidth=useTransform(startMaskWidth,v=>100-v);const direction=useMotionValue(axis?\"right\":\"bottom\");const mask=useTransform([direction,start.fadeOpacity,startMaskInset,startMaskWidth,end.fadeOpacity,endMaskInset,endMaskWidth],latest=>{return`linear-gradient(to ${latest[0]}, rgb(0, 0, 0, ${latest[1]}) ${latest[2]}%, rgb(0, 0, 0, 1) ${latest[3]}%, rgba(0, 0, 0, 1) ${latest[6]}%, rgb(0, 0, 0, ${latest[4]}) ${latest[5]}%)`;});const carouselRef=useRef(null);/**\n     * Dots state\n     */const[numPages,setNumPages]=useState(isCanvas?4:1);/**\n     * Generate styles for components.\n     */const itemStyle={scrollSnapAlign:snapEdge,flexShrink:0};const childStyle={};if(align===\"stretch\"){if(axis){childStyle.height=\"100%\";itemStyle.height=\"auto\";}else{childStyle.width=\"100%\";itemStyle.width=\"auto\";}}if(!fluid){itemStyle.scrollSnapStop=\"always\";}if(widthType===\"stretch\"){itemStyle.width=`calc(100% - ${widthInset||0}px)`;childStyle.width=\"100%\";}else if(widthType===\"columns\"){itemStyle.width=`calc(${100/widthColumns}% - ${gap}px + ${gap/widthColumns}px)`;childStyle.width=\"100%\";}if(heightType===\"stretch\"){itemStyle.height=`calc(100% - ${heightInset||0}px)`;childStyle.height=\"100%\";}else if(heightType===\"rows\"){itemStyle.height=`calc(${100/heightRows}% - ${gap}px + ${gap/heightRows}px)`;childStyle.height=\"100%\";}const scrollOverflow=isCanvas?\"hidden\":\"auto\";const containerStyle={...baseContainerStyle,padding};const carouselStyle={...baseCarouselStyle,gap,alignItems:align,flexDirection:axis?\"row\":\"column\",overflowX:axis?scrollOverflow:\"hidden\",overflowY:axis?\"hidden\":scrollOverflow,scrollSnapType:snap?`${axisLabel} mandatory`:undefined,WebkitOverflowScrolling:\"touch\",WebkitMaskImage:fadeContent?mask:undefined,MozMaskImage:fadeContent?mask:undefined,maskImage:fadeContent?mask:undefined,borderRadius};const carouselA11y={[\"aria-roledescription\"]:\"carousel\"};if(ariaLabel){carouselA11y[\"aria-title\"]=ariaLabel;}const itemA11y={};if(align===\"stretch\"){itemA11y[\"aria-role\"]=\"group\";itemA11y[\"aria-roledescription\"]=\"slide\";}if(!isCanvas){const itemSizes=useRef([]);useScrollLimits(carouselRef,axisLabel,scrollInfo,updateCurrentScroll,targetScroll,useCallback(()=>{if(!scrollInfo.current)return;const{targetLength,containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();if(!targetLength&&!containerLength)return;if(targetLength>containerLength){checkLimit(current,0,start,fadeTransition);checkLimit(current,scrollLength,end,fadeTransition);for(let i=0;i<itemSizes.current.length;i++){const{element,start,end}=itemSizes.current[i];if(end<current||start>current+containerLength){element.setAttribute(\"aria-hidden\",true);}else{element.setAttribute(\"aria-hidden\",false);}}}else{checkLimit(0,0,start,fadeTransition);checkLimit(1,1,end,fadeTransition);itemSizes.current.forEach(setAriaVisible);}// This used to be Math.ceil, which would round 3.05 to 4.\n// This now uses Math.round to ensure people get a perfect amount of dots\n// when using Columns or Rows \u2014\u00A0Benjamin\n/**\n                 * Update by Matt: changing back to ceil, might break dots but round was incorrectly\n                 * paginating for all widths - overshooting items at shorter viewports and\n                 * not paginating at all for wide.\n                 */let newNumPages=Math.ceil(targetLength/containerLength);if(!isNaN(newNumPages)){// If the number of dots is 65% of the number of items, make it 100%\nif(newNumPages/numItems>.65)newNumPages=numItems;if(newNumPages!==numPages)setNumPages(newNumPages);}},[numPages]),useCallback(()=>{if(!carouselRef.current)return;itemSizes.current=Array.from(carouselRef.current.children).map(element=>{return axis?{element,start:element.offsetLeft,end:element.offsetLeft+element.offsetWidth}:{element,start:element.offsetTop,end:element.offsetTop+element.offsetHeight};});},[]));}/**\n     * On the canvas, we want to keep the motion values updated\n     * with the latest props. Outside of the canvas these will never\n     * update.\n     */if(isCanvas){useEffect(()=>{baseWidth.set(fadeWidth);},[fadeWidth]);useEffect(()=>{startMaskInset.set(fadeInset*.5);},[fadeInset]);useEffect(()=>{direction.set(axis?\"right\":\"bottom\");},[axis]);}const findNextItem=(delta,target)=>{if(!scrollInfo.current)return;const{current}=scrollInfo.current;const{children}=carouselRef.current;let scrollTarget;let i=delta===1?0:children.length-1;while(scrollTarget===undefined){const item=children[i];const start=axis?item.offsetLeft:item.offsetTop;const length=axis?item.offsetWidth:item.offsetHeight;const end=start+length;const threshold=.05;if(delta===1){const visibility=progress(start,end,target);if(visibility<1-threshold){scrollTarget=start;}else if(i===children.length-1){scrollTarget=end;}}else if(delta===-1){const visibility=progress(start,end,target);if(visibility>threshold){scrollTarget=end;}else if(i===0){scrollTarget=start;}}i+=delta;}return scrollTarget;};const isReducedMotion=useReducedMotion();const goto=scrollTo=>{targetScroll.current=scrollTo;const options=axis?{left:scrollTo}:{top:scrollTo};carouselRef.current.scrollTo({...options,behavior:isReducedMotion?\"auto\":\"smooth\"});};const gotoPage=page=>{if(!scrollInfo.current)return;const{scrollLength}=scrollInfo.current;goto(page*(scrollLength/(numPages-1)));};const gotoDelta=delta=>()=>{if(!scrollInfo.current)return;const{containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();const pageLength=scrollLength/numPages;const currentPage=clamp(0,numPages-1,Math.floor(current/pageLength));/*if (snap && (snapEdge === \"start\" || snapEdge === \"end\") && delta >= 1)\n            delta = delta + 0.4 // this ensures it doesn't snap back to previous page*/gotoPage(currentPage+delta);};/**\n     * Return placeholder if no children\n     */if(numItems===0){return /*#__PURE__*/_jsx(Placeholder,{});}const dots=[];const dotsBlurStyle={};if(numPages>1&&showProgressDots&&!showScrollbar){for(let i=0;i<numPages;i++){const isSelected=isCanvas&&!i||false;dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,isSelected:isSelected,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>gotoPage(i),currentScroll:currentScroll,scrollInfo:scrollInfo,total:numPages,index:i,gap:dotsGap,padding:dotsPadding,axis:axis}));}if(dotsBlur){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}return /*#__PURE__*/_jsxs(\"section\",{style:containerStyle,...carouselA11y,children:[/*#__PURE__*/_jsx(motion.ul,{ref:carouselRef,style:carouselStyle,className:\"framer--carousel\",\"data-show-scrollbar\":showScrollbar,\"aria-atomic\":\"false\",\"aria-live\":\"polite\",onWheel:()=>targetScroll.current=undefined,children:Children.map(filteredSlots,(child,index)=>{var _child_props;return /*#__PURE__*/_jsx(\"li\",{style:itemStyle,...itemA11y,\"aria-label\":`${index+1} of ${numItems}`,children:/*#__PURE__*/cloneElement(child,{...child.props,style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.style,...childStyle}})});})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles,padding:arrowPadding,display:\"flex\",flexDirection:axis?\"row\":\"column\"},\"aria-label\":\"Carousel pagination controls\",className:\"framer--carousel-controls\",\"data-show-mouse-controls\":showMouseControls,children:[/*#__PURE__*/_jsx(motion.button,{ref:start.buttonRef,type:\"button\",style:{...start.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",alt:\"\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\"})}),/*#__PURE__*/_jsx(motion.button,{ref:end.buttonRef,type:\"button\",style:{...end.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",alt:\"\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\"})}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:axis?\"50%\":dotsInset,top:!axis?\"50%\":\"unset\",transform:axis?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:axis?\"row\":\"column\",bottom:axis?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,...dotsBlurStyle},children:dots}):null]}),/*#__PURE__*/_jsx(MouseStyles,{})]});}/* Default Properties */Carousel.defaultProps={gap:10,padding:10,progressObject:{showScrollbar:false,showProgressDots:false},sizingObject:{widthType:\"auto\",widthOffset:0,widthColumns:2,heightType:\"auto\",heightOffset:0,heightRows:2},borderRadius:0};/* Property Controls */addPropertyControls(Carousel,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},axis:{type:ControlType.Enum,title:\"Direction\",options:[true,false],optionIcons:[\"direction-horizontal\",\"direction-vertical\"],displaySegmentedControl:true},align:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{axis:{true:[\"align-top\",\"align-middle\",\"align-bottom\"],false:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},...paddingControl,sizingObject:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Enum,title:\"Width\",options:[\"auto\",\"stretch\",\"columns\"],optionTitles:[\"Auto\",\"Stretch\",\"Columns\"],defaultValue:\"auto\"},widthInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.widthType!==\"stretch\"},widthColumns:{type:ControlType.Number,title:\"Columns\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.widthType!==\"columns\"},heightType:{type:ControlType.Enum,title:\"Height\",options:[\"auto\",\"stretch\",\"rows\"],optionTitles:[\"Auto\",\"Stretch\",\"Rows\"],defaultValue:\"auto\"},heightInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.heightType!==\"stretch\"},heightRows:{type:ControlType.Number,title:\"Rows\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.heightType!==\"rows\"}}},snapObject:{type:ControlType.Object,title:\"Snapping\",controls:{snap:{type:ControlType.Boolean,title:\"Enable\"},snapEdge:{type:ControlType.Enum,title:\"Edge\",options:[\"start\",\"center\",\"end\"],optionTitles:[\"Left\",\"Center\",\"Right\"],defaultValue:\"center\",hidden:props=>!props.snap},fluid:{type:ControlType.Boolean,title:\"Fluid\",defaultValue:false,hidden:props=>!props.snap}}},fadeObject:{type:ControlType.Object,title:\"Fading\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Enable\",defaultValue:false},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",hidden:props=>!props.fadeContent,min:0,max:1,step:.05,defaultValue:0},fadeTransition:{type:ControlType.Transition,title:\"Transition\",hidden:props=>!props.fadeContent}}},progressObject:{type:ControlType.Object,title:\"Progress\",controls:{showScrollbar:{type:ControlType.Boolean,title:\"Scroll Bar\",defaultValue:false},showProgressDots:{type:ControlType.Boolean,title:\"Dots\",defaultValue:false,hidden:props=>props.showScrollbar},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:4,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}},arrowObject:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:true},arrowFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showMouseControls},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:40,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls}}},ariaLabel:{type:ControlType.String,title:\"Aria Label\",placeholder:\"Movies...\"},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0}});function Dot({currentScroll,scrollInfo,isSelected,selectedOpacity,opacity:unselectedOpacity,total,index,dotStyle,buttonStyle,gap,padding,axis,...props}){const opacity=useTransform(currentScroll,v=>{var _scrollInfo_current,_scrollInfo_current1;if(!((_scrollInfo_current=scrollInfo.current)===null||_scrollInfo_current===void 0?void 0:_scrollInfo_current.scrollLength)){return index===0?selectedOpacity:unselectedOpacity;}const pageLength=((_scrollInfo_current1=scrollInfo.current)===null||_scrollInfo_current1===void 0?void 0:_scrollInfo_current1.scrollLength)/total;const minScroll=pageLength*index;const maxScroll=minScroll+pageLength;const isSelected=v>=minScroll&&(index<total-1?v<maxScroll:index===total-1);return isSelected?selectedOpacity:unselectedOpacity;});const inlinePadding=gap/2;let top=!axis&&index>0?inlinePadding:padding;let bottom=!axis&&index!==total-1?inlinePadding:padding;let right=axis&&index!==total-1?inlinePadding:padding;let left=axis&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle,opacity}})});}function Placeholder(){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to swipe between.\"})]});}function MouseStyles(){return /*#__PURE__*/_jsx(\"div\",{dangerouslySetInnerHTML:{__html:`<style>@media (pointer: fine) {\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar {\n                    display: none;\n                    -webkit-appearance: none;\n                    width: 0;\n                    height: 0;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar-thumb {\n                    display: none;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"] {\n                    scrollbar-width: none;\n                    scrollbar-height: none;\n                }\n            }</style>`}});}/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:130,lineHeight:1.5,textAlign:\"center\"};const labelStyle={clip:\"rect(0 0 0 0)\",WebkitClipPath:\"inset(50%)\",clipPath:\"inset(50%)\",height:1,width:1,margin:-1,padding:0,overflow:\"hidden\",position:\"absolute\",whiteSpace:\"nowrap\"};/**\n * GUI styles\n */const baseContainerStyle={display:\"flex\",overflow:\"hidden\",width:\"100%\",height:\"100%\",position:\"relative\"};const baseCarouselStyle={padding:0,margin:0,listStyle:\"none\",position:\"relative\",display:\"flex\",flex:\"1 1 100%\",width:\"100%\",height:\"100%\"};const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",top:0,left:0,right:0,bottom:0,pointerEvents:\"none\",border:0,padding:0,margin:0};/**\n * Dot styles\n */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Carousel\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.map", "// Generated by Framer (63f9d4a)\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*as sharedStyle from\"https://framerusercontent.com/modules/g29okqvL9VqW95nk6kuL/NfOJpVlLwitoyYWYIRlE/WdLuzRwdy.js\";const cycleOrder=[\"SY6xPb59v\",\"NiGXN_tRs\",\"zhIiF9KGm\"];const serializationHash=\"framer-2Ownt\";const variantClassNames={NiGXN_tRs:\"framer-v-17cywk1\",SY6xPb59v:\"framer-v-2kiiuy\",zhIiF9KGm:\"framer-v-jq2g07\"};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 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={flame:\"NiGXN_tRs\",lightning:\"SY6xPb59v\",Stars:\"zhIiF9KGm\"};const getProps=({height,id,name1,width,...props})=>{return{...props,jDsZGkkfz:name1??props.jDsZGkkfz??\"loading...\",variant:humanReadableVariantMap[props.variant]??props.variant??\"SY6xPb59v\"};};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,jDsZGkkfz,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"SY6xPb59v\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-2kiiuy\",className,classNames),\"data-border\":true,\"data-framer-name\":\"lightning\",layoutDependency:layoutDependency,layoutId:\"SY6xPb59v\",ref:ref??ref1,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"var(--token-9f0badbf-8d74-41b8-a73a-e1a6bdec487b, rgb(142, 111, 64))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",background:\"linear-gradient(89.99999964803055deg, rgba(25, 25, 25, 1) 0%, rgba(25, 25, 25, 0) 100%)\",...style},...addPropertyOverrides({NiGXN_tRs:{\"data-framer-name\":\"flame\"},zhIiF9KGm:{\"data-framer-name\":\"Stars\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(14+((componentViewport?.height||54)-28-25)/2)),pixelHeight:128,pixelWidth:128,src:\"https://framerusercontent.com/images/2I8MmVo2MBdsIfr9gZx3x7iEeQ.png\"},className:\"framer-1n7ktnc\",layoutDependency:layoutDependency,layoutId:\"HzOGe9GUw\",...addPropertyOverrides({NiGXN_tRs:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(14+((componentViewport?.height||54)-28-25)/2)),pixelHeight:128,pixelWidth:128,src:\"https://framerusercontent.com/images/IxRw3RR5mInE1hirZ5frNPPrcxU.png\"}},zhIiF9KGm:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(14+((componentViewport?.height||54)-28-25)/2)),pixelHeight:128,pixelWidth:128,src:\"https://framerusercontent.com/images/7wfR2Zmfj2lW5GJIgdR9sOZvQNE.png\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-lrm6yi\",\"data-styles-preset\":\"WdLuzRwdy\",children:\"Expansive oceanfront terrace for outdoor entertaining\"})}),className:\"framer-1tatexg\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Bz19fqney\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:jDsZGkkfz,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-2Ownt.framer-7juzy0, .framer-2Ownt .framer-7juzy0 { display: block; }\",\".framer-2Ownt.framer-2kiiuy { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 14px 16px 14px 16px; position: relative; width: 738px; }\",\".framer-2Ownt .framer-1n7ktnc { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 25px); position: relative; width: 25px; }\",\".framer-2Ownt .framer-1tatexg { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-2Ownt.framer-2kiiuy { gap: 0px; } .framer-2Ownt.framer-2kiiuy > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-2Ownt.framer-2kiiuy > :first-child { margin-left: 0px; } .framer-2Ownt.framer-2kiiuy > :last-child { margin-right: 0px; } }\",...sharedStyle.css,'.framer-2Ownt[data-border=\"true\"]::after, .framer-2Ownt [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 54\n * @framerIntrinsicWidth 738\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"NiGXN_tRs\":{\"layout\":[\"fixed\",\"auto\"]},\"zhIiF9KGm\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"jDsZGkkfz\":\"name1\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerAS9Q8qA07=withCSS(Component,css,\"framer-2Ownt\");export default FramerAS9Q8qA07;FramerAS9Q8qA07.displayName=\"key feature\";FramerAS9Q8qA07.defaultProps={height:54,width:738};addPropertyControls(FramerAS9Q8qA07,{variant:{options:[\"SY6xPb59v\",\"NiGXN_tRs\",\"zhIiF9KGm\"],optionTitles:[\"lightning\",\"flame\",\"Stars\"],title:\"Variant\",type:ControlType.Enum},jDsZGkkfz:{defaultValue:\"loading...\",displayTextArea:false,title:\"name\",type:ControlType.String}});addFonts(FramerAS9Q8qA07,[{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\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerAS9Q8qA07\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"54\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NiGXN_tRs\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zhIiF9KGm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"738\",\"framerVariables\":\"{\\\"jDsZGkkfz\\\":\\\"name1\\\"}\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (6aa4fc0)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,FormContainer,FormPlainTextInput,getFonts,getFontsFromSharedStyle,Link,RichText,SmartComponentScopedContainer,SVG,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 sharedStyle2 from\"https://framerusercontent.com/modules/kA1pe4Q0iCz9jbdgxpkE/95bdc7nxLE5HmYJJ87dR/IcWf34g6e.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/5kADbBm57xcjKa9nRP5V/iCUgJmegAt8R75juYPsy/QANyYcZVT.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/g29okqvL9VqW95nk6kuL/NfOJpVlLwitoyYWYIRlE/WdLuzRwdy.js\";import ButtonCopy from\"https://framerusercontent.com/modules/a8qP0UJfMop3mHk5ggVE/3vBoKUKzIoKf9MEpoP3H/KOVuQKfUs.js\";import ThankYouNote from\"https://framerusercontent.com/modules/6wIHCdDGk05SdCPxWDG0/RworDt7mmdbre1x4J8Vy/PRewxZeRH.js\";const ThankYouNoteFonts=getFonts(ThankYouNote);const ButtonCopyFonts=getFonts(ButtonCopy);const cycleOrder=[\"ufLksuYIe\",\"XN49KAo1E\",\"jCBV3I5br\",\"N0Got5a8v\"];const serializationHash=\"framer-Ju2ic\";const variantClassNames={jCBV3I5br:\"framer-v-yxgh0x\",N0Got5a8v:\"framer-v-2a3kbk\",ufLksuYIe:\"framer-v-nhjovn\",XN49KAo1E:\"framer-v-1f7m63c\"};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 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 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={\"Variant 1\":\"ufLksuYIe\",\"Variant 3\":\"jCBV3I5br\",\"Variant 4\":\"N0Got5a8v\",mobile:\"XN49KAo1E\"};const getProps=({city,community,height,id,propertyId,subCommunity,width,...props})=>{return{...props,C7wI_c1Gn:propertyId??props.C7wI_c1Gn,e5w2mXqK4:city??props.e5w2mXqK4,FoQfNY33Y:subCommunity??props.FoQfNY33Y,iE7Wh0rXc:community??props.iE7Wh0rXc,variant:humanReadableVariantMap[props.variant]??props.variant??\"ufLksuYIe\"};};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,C7wI_c1Gn,FoQfNY33Y,iE7Wh0rXc,e5w2mXqK4,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ufLksuYIe\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onSuccess1vtbes3=activeVariantCallback(async(...args)=>{setVariant(\"jCBV3I5br\");});const onSuccesscirguz=activeVariantCallback(async(...args)=>{setVariant(\"N0Got5a8v\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"jCBV3I5br\",\"N0Got5a8v\"].includes(baseVariant))return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(FormContainer,{...restProps,...gestureHandlers,action:\"https://api.framer.com/forms/v1/forms/f234bfd1-70be-4b71-8e03-dfaafd326667/submit\",className:cx(scopingClassNames,\"framer-nhjovn\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"ufLksuYIe\",nodeId:\"ufLksuYIe\",onSuccess:onSuccess1vtbes3,redirectUrl:{webPageId:\"HSjKZAW0c\"},ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-18488be5-3648-4d98-b1e8-94881ff0fb68, rgba(38, 38, 38, 0.48))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,...style},...addPropertyOverrides({jCBV3I5br:{\"data-framer-name\":\"Variant 3\"},N0Got5a8v:{\"data-framer-name\":\"Variant 4\"},XN49KAo1E:{\"data-framer-name\":\"mobile\",onSuccess:onSuccesscirguz}},baseVariant,gestureVariant),children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({jCBV3I5br:{height:179,width:\"381px\",y:(componentViewport?.y||0)+((componentViewport?.height||966)*.5000000000000002-89.5)},N0Got5a8v:{height:179,width:\"381px\",y:(componentViewport?.y||0)+((componentViewport?.height||1187)*.5000000000000002-89.5)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-i1dhxr-container\",layoutDependency:layoutDependency,layoutId:\"Rf9ZTOeTR-container\",nodeId:\"Rf9ZTOeTR\",rendersWithMotion:true,scopeId:\"BTTGHjpeT\",children:/*#__PURE__*/_jsx(ThankYouNote,{height:\"100%\",id:\"Rf9ZTOeTR\",layoutId:\"Rf9ZTOeTR\",oSkOc1fwl:\"We have received your submission. Please be on the lookout as we will get back to you soon.\",style:{height:\"100%\",width:\"100%\"},variant:\"bksa3NVsg\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ysbd7l\",layoutDependency:layoutDependency,layoutId:\"oHxQS55gx\",style:{opacity:1},variants:{jCBV3I5br:{opacity:0},N0Got5a8v:{opacity:0}},children:[/*#__PURE__*/_jsxs(motion.label,{className:\"framer-37uavd\",layoutDependency:layoutDependency,layoutId:\"AX6Awuaao\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-m0w5eu\",\"data-styles-preset\":\"QANyYcZVT\",children:\"Name\"})}),className:\"framer-1gx20dn\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"D6zWLojkL\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-505izr\",inputName:\"First name\",layoutDependency:layoutDependency,layoutId:\"oZgtWBV7C\",placeholder:\"Jane\",required:true,style:{\"--framer-input-background\":\"var(--token-8f940a07-8f84-4c99-a4a8-f68d0ffcc32f, rgb(25, 25, 25))\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"var(--token-18488be5-3648-4d98-b1e8-94881ff0fb68, rgba(38, 38, 38, 0.48))\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-radius-bottom-left\":\"10px\",\"--framer-input-border-radius-bottom-right\":\"10px\",\"--framer-input-border-radius-top-left\":\"10px\",\"--framer-input-border-radius-top-right\":\"10px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-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-bd4rds\",layoutDependency:layoutDependency,layoutId:\"T1gHQXGbd\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-m0w5eu\",\"data-styles-preset\":\"QANyYcZVT\",children:\"Last Name\"})}),className:\"framer-191ust7\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"zbVwKge9P\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-110j3ux\",inputName:\"last name\",layoutDependency:layoutDependency,layoutId:\"xDj_B5vTk\",placeholder:\"Smith\",required:true,style:{\"--framer-input-background\":\"var(--token-8f940a07-8f84-4c99-a4a8-f68d0ffcc32f, rgb(25, 25, 25))\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"var(--token-18488be5-3648-4d98-b1e8-94881ff0fb68, rgba(38, 38, 38, 0.48))\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-radius-bottom-left\":\"10px\",\"--framer-input-border-radius-bottom-right\":\"10px\",\"--framer-input-border-radius-top-left\":\"10px\",\"--framer-input-border-radius-top-right\":\"10px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-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.div,{className:\"framer-41ryig\",layoutDependency:layoutDependency,layoutId:\"ocxKaTbyj\",style:{opacity:1},variants:{jCBV3I5br:{opacity:0},N0Got5a8v:{opacity:0}},children:[/*#__PURE__*/_jsxs(motion.label,{className:\"framer-1sk65mv\",layoutDependency:layoutDependency,layoutId:\"u0cbO3JZn\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-m0w5eu\",\"data-styles-preset\":\"QANyYcZVT\",children:\"Email\"})}),className:\"framer-1us05dn\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"t4ma7KszC\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-wzjq74\",inputName:\"Email\",layoutDependency:layoutDependency,layoutId:\"z0qpjzIbH\",placeholder:\"jane@gmail.com\",required:true,style:{\"--framer-input-background\":\"var(--token-8f940a07-8f84-4c99-a4a8-f68d0ffcc32f, rgb(25, 25, 25))\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgba(136, 136, 136, 0.1)\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-radius-bottom-left\":\"10px\",\"--framer-input-border-radius-bottom-right\":\"10px\",\"--framer-input-border-radius-top-left\":\"10px\",\"--framer-input-border-radius-top-right\":\"10px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-font-color\":\"rgb(153, 153, 153)\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"rgb(153, 153, 153)\"},type:\"email\"})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-bg279b\",layoutDependency:layoutDependency,layoutId:\"etZy1TXKR\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-m0w5eu\",\"data-styles-preset\":\"QANyYcZVT\",children:\"Phone\"})}),className:\"framer-1masd9p\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"HW2ZMk7A8\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1nmeemm\",inputName:\"Phone Number\",layoutDependency:layoutDependency,layoutId:\"DsazGfl0v\",placeholder:\"+971*********\",required:true,style:{\"--framer-input-background\":\"var(--token-8f940a07-8f84-4c99-a4a8-f68d0ffcc32f, rgb(25, 25, 25))\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgba(136, 136, 136, 0.1)\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-radius-bottom-left\":\"10px\",\"--framer-input-border-radius-bottom-right\":\"10px\",\"--framer-input-border-radius-top-left\":\"10px\",\"--framer-input-border-radius-top-right\":\"10px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-font-color\":\"rgb(153, 153, 153)\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"rgb(153, 153, 153)\"},type:\"tel\"})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1e6ikm3\",\"data-framer-name\":\"Sub Container\",layoutDependency:layoutDependency,layoutId:\"ZBvxsP3eX\",style:{opacity:1},variants:{jCBV3I5br:{opacity:0},N0Got5a8v:{opacity:0}},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"150%\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7VXJiYW5pc3QtNjAw\",\"--framer-font-family\":'\"Urbanist\"',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(255, 255, 255, 1))\"},children:\"Selected Property\"})})}),className:\"framer-diy0x\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Urbanist-600\"],layoutDependency:layoutDependency,layoutId:\"DMBaziKvq\",style:{\"--extracted-1w3ko1f\":\"rgba(255, 255, 255, 1)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mp6dtk\",\"data-border\":true,\"data-framer-name\":\"Input Field\",layoutDependency:layoutDependency,layoutId:\"kvcIEsraM\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-18488be5-3648-4d98-b1e8-94881ff0fb68, rgba(38, 38, 38, 0.48))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-8f940a07-8f84-4c99-a4a8-f68d0ffcc32f, rgb(25, 25, 25))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7535uv\",layoutDependency:layoutDependency,layoutId:\"mLaVHy8qm\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-lrm6yi\",\"data-styles-preset\":\"WdLuzRwdy\",children:\"Sub community\"})}),className:\"framer-vx1fgh\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"LLQeFiAqy\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:FoQfNY33Y,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-lrm6yi\",\"data-styles-preset\":\"WdLuzRwdy\",children:\"Community\"})}),className:\"framer-bbaf9v\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"eM7fRiHlZ\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:iE7Wh0rXc,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-lrm6yi\",\"data-styles-preset\":\"WdLuzRwdy\",children:\"City\"})}),className:\"framer-bskmnz\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"nF1dbsXff\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:e5w2mXqK4,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1xljqzl\",\"data-framer-name\":\"Icon\",fill:'var(--token-441e6b96-cded-437c-bbd4-5862cce7caef, rgb(182, 158, 94)) /* {\"name\":\"Light Gold\"} */',intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"eVhcWiKOj\",svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M11.5397 22.351C11.57 22.3685 11.5937 22.3821 11.6105 22.3915L11.6384 22.4071C11.8613 22.5294 12.1378 22.5285 12.3608 22.4075L12.3895 22.3915C12.4063 22.3821 12.43 22.3685 12.4603 22.351C12.5207 22.316 12.607 22.265 12.7155 22.1982C12.9325 22.0646 13.2388 21.8676 13.6046 21.6091C14.3351 21.0931 15.3097 20.3274 16.2865 19.3273C18.2307 17.3368 20.25 14.3462 20.25 10.5C20.25 5.94365 16.5563 2.25 12 2.25C7.44365 2.25 3.75 5.94365 3.75 10.5C3.75 14.3462 5.76932 17.3368 7.71346 19.3273C8.69025 20.3274 9.66491 21.0931 10.3954 21.6091C10.7612 21.8676 11.0675 22.0646 11.2845 22.1982C11.393 22.265 11.4793 22.316 11.5397 22.351ZM12 13.5C13.6569 13.5 15 12.1569 15 10.5C15 8.84315 13.6569 7.5 12 7.5C10.3431 7.5 9 8.84315 9 10.5C9 12.1569 10.3431 13.5 12 13.5Z\" fill=\"#E4E4E7\"/>\\n</svg>\\n',withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-e0qbhu\",layoutDependency:layoutDependency,layoutId:\"ctAz6NH9l\",style:{opacity:1},variants:{jCBV3I5br:{opacity:0},N0Got5a8v:{opacity:0}},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-m0w5eu\",\"data-styles-preset\":\"QANyYcZVT\",children:\"Message\"})}),className:\"framer-17ov6zt\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"kHMQlsHJT\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-184c7ei\",inputName:\"Message\",layoutDependency:layoutDependency,layoutId:\"k2mk6dBrl\",placeholder:\"Type your message here.....\",required:true,style:{\"--framer-input-background\":\"var(--token-8f940a07-8f84-4c99-a4a8-f68d0ffcc32f, rgb(25, 25, 25))\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgba(136, 136, 136, 0.1)\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-radius-bottom-left\":\"10px\",\"--framer-input-border-radius-bottom-right\":\"10px\",\"--framer-input-border-radius-top-left\":\"10px\",\"--framer-input-border-radius-top-right\":\"10px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-font-color\":\"rgb(153, 153, 153)\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"rgb(153, 153, 153)\"},type:\"textarea\"})]}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-iu90cj\",defaultValue:C7wI_c1Gn,inputName:\"Property ID\",layoutDependency:layoutDependency,layoutId:\"rER1vpVbc\",style:{\"--framer-input-background\":\"var(--token-8f940a07-8f84-4c99-a4a8-f68d0ffcc32f, rgb(25, 25, 25))\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgba(136, 136, 136, 0.1)\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-radius-bottom-left\":\"10px\",\"--framer-input-border-radius-bottom-right\":\"10px\",\"--framer-input-border-radius-top-left\":\"10px\",\"--framer-input-border-radius-top-right\":\"10px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-font-color\":\"rgb(153, 153, 153)\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"rgb(153, 153, 153)\"},type:\"hidden\"}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-u5f3i1\",defaultValue:e5w2mXqK4,inputName:\"City\",layoutDependency:layoutDependency,layoutId:\"ujEY66jJx\",style:{\"--framer-input-background\":\"var(--token-8f940a07-8f84-4c99-a4a8-f68d0ffcc32f, rgb(25, 25, 25))\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgba(136, 136, 136, 0.1)\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-radius-bottom-left\":\"10px\",\"--framer-input-border-radius-bottom-right\":\"10px\",\"--framer-input-border-radius-top-left\":\"10px\",\"--framer-input-border-radius-top-right\":\"10px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-font-color\":\"rgb(153, 153, 153)\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"rgb(153, 153, 153)\"},type:\"hidden\"}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-qy7wgz\",defaultValue:FoQfNY33Y,inputName:\"Sub Community\",layoutDependency:layoutDependency,layoutId:\"ueTQYyYBr\",style:{\"--framer-input-background\":\"var(--token-8f940a07-8f84-4c99-a4a8-f68d0ffcc32f, rgb(25, 25, 25))\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgba(136, 136, 136, 0.1)\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-radius-bottom-left\":\"10px\",\"--framer-input-border-radius-bottom-right\":\"10px\",\"--framer-input-border-radius-top-left\":\"10px\",\"--framer-input-border-radius-top-right\":\"10px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-font-color\":\"rgb(153, 153, 153)\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"rgb(153, 153, 153)\"},type:\"hidden\"}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-175jhhm\",defaultValue:iE7Wh0rXc,inputName:\"Community\",layoutDependency:layoutDependency,layoutId:\"pdsCqNYLx\",style:{\"--framer-input-background\":\"var(--token-8f940a07-8f84-4c99-a4a8-f68d0ffcc32f, rgb(25, 25, 25))\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgba(136, 136, 136, 0.1)\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-radius-bottom-left\":\"10px\",\"--framer-input-border-radius-bottom-right\":\"10px\",\"--framer-input-border-radius-top-left\":\"10px\",\"--framer-input-border-radius-top-right\":\"10px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-font-color\":\"rgb(153, 153, 153)\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"rgb(153, 153, 153)\"},type:\"hidden\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:59,width:`calc(${componentViewport?.width||\"100vw\"} - 100px)`,...addPropertyOverrides({N0Got5a8v:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`},XN49KAo1E:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1y7h6mo-container\",\"data-framer-name\":\"Button\",layoutDependency:layoutDependency,layoutId:\"MqvSAcyCx-container\",name:\"Button\",nodeId:\"MqvSAcyCx\",rendersWithMotion:true,scopeId:\"BTTGHjpeT\",style:{opacity:1},variants:{jCBV3I5br:{opacity:0},N0Got5a8v:{opacity:0}},children:/*#__PURE__*/_jsx(ButtonCopy,{E4VDbz0d7:\"Send Your Message\",height:\"100%\",id:\"MqvSAcyCx\",layoutId:\"MqvSAcyCx\",name:\"Button\",style:{height:\"100%\",width:\"100%\"},type:\"submit\",variant:formVariants(formState,{error:\"Gks7DOTUk\",incomplete:\"oRT15cpYl\",pending:\"PAXBskITP\",success:\"cMhbeJszA\"},\"QsWGuhA3b\"),width:\"100%\",zk0BtNUnw:\"10px\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-11fti4n\",\"data-framer-name\":\"Check Box\",layoutDependency:layoutDependency,layoutId:\"MSvshjilO\",style:{opacity:1},variants:{jCBV3I5br:{opacity:0},N0Got5a8v:{opacity:0}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-lrm6yi\",\"data-styles-preset\":\"WdLuzRwdy\",children:[\"Or contact us now Via \",/*#__PURE__*/_jsx(Link,{href:\"https://wa.link/zeqwip\",motionChild:true,nodeId:\"c1V82Q7sj\",openInNewTab:false,scopeId:\"BTTGHjpeT\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1t8bstf\",\"data-styles-preset\":\"IcWf34g6e\",children:\"Whatsapp\"})})]})}),className:\"framer-3kflfh\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"c1V82Q7sj\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Ju2ic.framer-1n8enr4, .framer-Ju2ic .framer-1n8enr4 { display: block; }\",\".framer-Ju2ic.framer-nhjovn { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 50px; position: relative; width: 638px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Ju2ic .framer-i1dhxr-container { flex: none; height: 179px; left: calc(50.00000000000002% - 381px / 2); position: absolute; top: calc(50.00000000000002% - 179px / 2); width: 381px; z-index: 1; }\",\".framer-Ju2ic .framer-ysbd7l, .framer-Ju2ic .framer-41ryig { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Ju2ic .framer-37uavd, .framer-Ju2ic .framer-bd4rds, .framer-Ju2ic .framer-1sk65mv, .framer-Ju2ic .framer-bg279b { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-Ju2ic .framer-1gx20dn, .framer-Ju2ic .framer-191ust7, .framer-Ju2ic .framer-1us05dn, .framer-Ju2ic .framer-1masd9p, .framer-Ju2ic .framer-diy0x, .framer-Ju2ic .framer-17ov6zt, .framer-Ju2ic .framer-3kflfh { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",'.framer-Ju2ic .framer-505izr, .framer-Ju2ic .framer-110j3ux, .framer-Ju2ic .framer-1nmeemm { --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-family: \"Urbanist\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 14px; --framer-input-font-weight: 400; --framer-input-padding: 24px 20px 24px 20px; --framer-input-wrapper-height: auto; flex: none; height: auto; position: relative; width: 100%; }','.framer-Ju2ic .framer-wzjq74 { --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-family: \"Urbanist\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 14px; --framer-input-font-weight: 400; --framer-input-padding: 20px 24px 20px 24px; --framer-input-wrapper-height: auto; flex: none; height: auto; position: relative; width: 100%; }',\".framer-Ju2ic .framer-1e6ikm3 { 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-Ju2ic .framer-1mp6dtk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; height: min-content; justify-content: space-between; overflow: visible; padding: 24px 20px 24px 20px; position: relative; width: 100%; }\",\".framer-Ju2ic .framer-7535uv { 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: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Ju2ic .framer-vx1fgh, .framer-Ju2ic .framer-bbaf9v, .framer-Ju2ic .framer-bskmnz { flex: none; height: auto; max-width: 598px; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-Ju2ic .framer-1xljqzl { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-Ju2ic .framer-e0qbhu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",'.framer-Ju2ic .framer-184c7ei, .framer-Ju2ic .framer-iu90cj { --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-family: \"Urbanist\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 14px; --framer-input-font-weight: 400; --framer-input-padding: 24px 20px 24px 20px; --framer-input-wrapper-height: auto; --framer-textarea-resize: vertical; flex: none; height: auto; min-height: 170px; position: relative; width: 100%; }','.framer-Ju2ic .framer-u5f3i1, .framer-Ju2ic .framer-qy7wgz, .framer-Ju2ic .framer-175jhhm { --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-family: \"Urbanist\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 14px; --framer-input-font-weight: 400; --framer-input-padding: 24px 20px 24px 20px; --framer-input-wrapper-height: auto; flex: none; height: auto; min-height: 170px; position: relative; width: 100%; }',\".framer-Ju2ic .framer-1y7h6mo-container { flex: none; height: 59px; position: relative; width: 100%; }\",\".framer-Ju2ic .framer-11fti4n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Ju2ic.framer-v-1f7m63c.framer-nhjovn, .framer-Ju2ic.framer-v-2a3kbk.framer-nhjovn { align-content: flex-start; align-items: flex-start; padding: 50px 20px 50px 20px; }\",\".framer-Ju2ic.framer-v-1f7m63c .framer-ysbd7l, .framer-Ju2ic.framer-v-1f7m63c .framer-41ryig, .framer-Ju2ic.framer-v-2a3kbk .framer-ysbd7l, .framer-Ju2ic.framer-v-2a3kbk .framer-41ryig { flex-direction: column; }\",\".framer-Ju2ic.framer-v-1f7m63c .framer-37uavd, .framer-Ju2ic.framer-v-1f7m63c .framer-bd4rds, .framer-Ju2ic.framer-v-1f7m63c .framer-1sk65mv, .framer-Ju2ic.framer-v-1f7m63c .framer-bg279b, .framer-Ju2ic.framer-v-2a3kbk .framer-37uavd, .framer-Ju2ic.framer-v-2a3kbk .framer-bd4rds, .framer-Ju2ic.framer-v-2a3kbk .framer-1sk65mv, .framer-Ju2ic.framer-v-2a3kbk .framer-bg279b { flex: none; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-Ju2ic[data-border=\"true\"]::after, .framer-Ju2ic [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 966\n * @framerIntrinsicWidth 638\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"XN49KAo1E\":{\"layout\":[\"fixed\",\"auto\"]},\"jCBV3I5br\":{\"layout\":[\"fixed\",\"auto\"]},\"N0Got5a8v\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"C7wI_c1Gn\":\"propertyId\",\"FoQfNY33Y\":\"subCommunity\",\"iE7Wh0rXc\":\"community\",\"e5w2mXqK4\":\"city\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerBTTGHjpeT=withCSS(Component,css,\"framer-Ju2ic\");export default FramerBTTGHjpeT;FramerBTTGHjpeT.displayName=\"Inquire for property form\";FramerBTTGHjpeT.defaultProps={height:966,width:638};addPropertyControls(FramerBTTGHjpeT,{variant:{options:[\"ufLksuYIe\",\"XN49KAo1E\",\"jCBV3I5br\",\"N0Got5a8v\"],optionTitles:[\"Variant 1\",\"mobile\",\"Variant 3\",\"Variant 4\"],title:\"Variant\",type:ControlType.Enum},C7wI_c1Gn:{defaultValue:\"\",title:\"property id\",type:ControlType.String},FoQfNY33Y:{defaultValue:\"\",title:\"sub community\",type:ControlType.String},iE7Wh0rXc:{defaultValue:\"\",title:\"community\",type:ControlType.String},e5w2mXqK4:{defaultValue:\"\",title:\"city\",type:ControlType.String}});addFonts(FramerBTTGHjpeT,[{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:\"Urbanist\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/QVSEREMQIHTDJ6PBN6SDKDQRKHAIJM4G/5FQFK3HFEC5ZJORN7EUWWXKPUKR4HDO2/S3LPGNCYQN366TZLSH3ASTPTKANFMFDS.woff2\",weight:\"400\"},{family:\"Urbanist\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/urbanist/v15/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDFRkfE5OrS8SlKw.woff2\",weight:\"600\"}]},...ThankYouNoteFonts,...ButtonCopyFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerBTTGHjpeT\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"638\",\"framerAutoSizeImages\":\"true\",\"framerVariables\":\"{\\\"C7wI_c1Gn\\\":\\\"propertyId\\\",\\\"FoQfNY33Y\\\":\\\"subCommunity\\\",\\\"iE7Wh0rXc\\\":\\\"community\\\",\\\"e5w2mXqK4\\\":\\\"city\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XN49KAo1E\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jCBV3I5br\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"N0Got5a8v\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"966\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./BTTGHjpeT.map", "// Generated by Framer (abcfa95)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,Link,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"EdtBah4s1\"];const serializationHash=\"framer-JJQY8\";const variantClassNames={EdtBah4s1:\"framer-v-1cz90ch\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,image,link,width,...props})=>{var _ref;return{...props,L1CHGKmch:link!==null&&link!==void 0?link:props.L1CHGKmch,LEHI7lfAU:(_ref=image!==null&&image!==void 0?image:props.LEHI7lfAU)!==null&&_ref!==void 0?_ref:{src:\"https://framerusercontent.com/images/q3UqnCneuu4CxjbEc2nAv9LzSQ.png\"}};};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,L1CHGKmch,LEHI7lfAU,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"EdtBah4s1\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:L1CHGKmch,children:/*#__PURE__*/_jsx(Image,{...restProps,...gestureHandlers,as:\"a\",background:{alt:\"\",fit:\"fill\",pixelHeight:128,pixelWidth:128,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(LEHI7lfAU),...{positionX:\"center\",positionY:\"center\"}},className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1cz90ch\",className,classNames)} framer-1jwg38e`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"EdtBah4s1\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style}})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-JJQY8.framer-1jwg38e, .framer-JJQY8 .framer-1jwg38e { display: block; }\",\".framer-JJQY8.framer-1cz90ch { height: 40px; position: relative; text-decoration: none; width: 40px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 40\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"L1CHGKmch\":\"link\",\"LEHI7lfAU\":\"image\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerC2wjJPjkr=withCSS(Component,css,\"framer-JJQY8\");export default FramerC2wjJPjkr;FramerC2wjJPjkr.displayName=\"icon button link\";FramerC2wjJPjkr.defaultProps={height:40,width:40};addPropertyControls(FramerC2wjJPjkr,{L1CHGKmch:{title:\"Link\",type:ControlType.Link},LEHI7lfAU:{__defaultAssetReference:\"data:framer/asset-reference,q3UqnCneuu4CxjbEc2nAv9LzSQ.png?originalFilename=MaterialSymbolsLightCallOutline.png&preferredSize=auto\",title:\"image\",type:ControlType.ResponsiveImage}});addFonts(FramerC2wjJPjkr,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerC2wjJPjkr\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"L1CHGKmch\\\":\\\"link\\\",\\\"LEHI7lfAU\\\":\\\"image\\\"}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"40\",\"framerIntrinsicWidth\":\"40\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./C2wjJPjkr.map", "// Generated by Framer (e010222)\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*as sharedStyle from\"https://framerusercontent.com/modules/g29okqvL9VqW95nk6kuL/NfOJpVlLwitoyYWYIRlE/WdLuzRwdy.js\";const cycleOrder=[\"Q72wyT1j0\",\"agsG6NJFF\",\"QyVPo6YCw\",\"EMaXo_odS\"];const serializationHash=\"framer-DWqbw\";const variantClassNames={agsG6NJFF:\"framer-v-8e0tc1\",EMaXo_odS:\"framer-v-zd5qud\",Q72wyT1j0:\"framer-v-pcu3fw\",QyVPo6YCw:\"framer-v-19gtirs\"};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 Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"mobile-closed\":\"EMaXo_odS\",\"mobile-open\":\"QyVPo6YCw\",closed:\"Q72wyT1j0\",open:\"agsG6NJFF\"};const getProps=({height,id,plain,width,...props})=>{return{...props,qLOeDv7fD:plain??props.qLOeDv7fD??\"Spark is an advanced analytics \\xa0and metric tools provide insights into team performance.Spark is an advanced analytics \\xa0and metric tools provide insights into team performance.Spark is an advanced analytics \\xa0and metric tools provide insights into team performance.Spark is an advanced analytics \\xa0and metric tools provide insights into team performance.Spark is an advanced analytics \\xa0and metric tools provide insights into team performance.Spark is an advanced analytics \\xa0and metric tools provide insights into team performance.Spark is an advanced analytics \\xa0and metric tools provide insights into team performance.Spark is an advanced analytics \\xa0and metric tools provide insights into team performance.Spark is an advanced analytics \\xa0and metric tools provide insights into team performance.Spark is an advanced analytics \\xa0and metric tools provide insights into team performance.Spark is an advanced analytics \\xa0and metric tools provide insights into team performance.Spark is an advanced analytics \\xa0and metric tools provide insights into team performance.\",variant:humanReadableVariantMap[props.variant]??props.variant??\"Q72wyT1j0\"};};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,qLOeDv7fD,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Q72wyT1j0\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapcfcwhc=activeVariantCallback(async(...args)=>{setVariant(\"agsG6NJFF\");});const onTap17b0txo=activeVariantCallback(async(...args)=>{setVariant(\"Q72wyT1j0\");});const onTap10065t9=activeVariantCallback(async(...args)=>{setVariant(\"EMaXo_odS\");});const onTap4dtehl=activeVariantCallback(async(...args)=>{setVariant(\"QyVPo6YCw\");});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];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(serializationHash,...sharedStyleClassNames,\"framer-pcu3fw\",className,classNames),\"data-border\":true,\"data-framer-name\":\"closed\",layoutDependency:layoutDependency,layoutId:\"Q72wyT1j0\",ref:ref??ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-18488be5-3648-4d98-b1e8-94881ff0fb68, rgba(38, 38, 38, 0.48))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-9e4d3cd9-c6a1-4d3f-93c0-3bd54ca04155, rgb(27, 27, 27))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,...style},...addPropertyOverrides({agsG6NJFF:{\"data-framer-name\":\"open\"},EMaXo_odS:{\"data-framer-name\":\"mobile-closed\"},QyVPo6YCw:{\"data-framer-name\":\"mobile-open\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-mn21p9\",layoutDependency:layoutDependency,layoutId:\"PQCZUc1qW\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-lrm6yi\",\"data-styles-preset\":\"WdLuzRwdy\",children:\"Spark is an advanced analytics \\xa0and metric tools provide insights into team performance.Spark is an advanced analytics \\xa0and metric tools provide insights into team performance.Spark is an advanced analytics \\xa0and metric tools provide insights into team performance.Spark is an advanced analytics \\xa0and metric tools provide insights into team performance.Spark is an advanced analytics \\xa0and metric tools provide insights into team performance.Spark is an advanced analytics \\xa0and metric tools provide insights into team performance.Spark is an advanced analytics \\xa0and metric tools provide insights into team performance.Spark is an advanced analytics \\xa0and metric tools provide insights into team performance.Spark is an advanced analytics \\xa0and metric tools provide insights into team performance.Spark is an advanced analytics \\xa0and metric tools provide insights into team performance.Spark is an advanced analytics \\xa0and metric tools provide insights into team performance.Spark is an advanced analytics \\xa0and metric tools provide insights into team performance.\"})}),className:\"framer-1vmvkxv\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"kVrIXnhZl\",text:qLOeDv7fD,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ayjzwg\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"gYr3ZShsr\",onTap:onTapcfcwhc,...addPropertyOverrides({agsG6NJFF:{onTap:onTap17b0txo},EMaXo_odS:{onTap:onTap4dtehl},QyVPo6YCw:{onTap:onTap10065t9}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-lrm6yi\",\"data-styles-preset\":\"WdLuzRwdy\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(230, 230, 230)))\"},children:\"Read More\"})}),className:\"framer-c8gadi\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"mOcPXdSf0\",style:{\"--extracted-r6o4lv\":\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(230, 230, 230))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{EMaXo_odS:{\"--extracted-r6o4lv\":\"var(--token-7cfab920-9d1e-4f38-8c7a-a58d533b8508, rgb(255, 255, 255))\"},QyVPo6YCw:{\"--extracted-r6o4lv\":\"var(--token-7cfab920-9d1e-4f38-8c7a-a58d533b8508, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({agsG6NJFF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-lrm6yi\",\"data-styles-preset\":\"WdLuzRwdy\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(230, 230, 230)))\"},children:\"Read less\"})})},EMaXo_odS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-lrm6yi\",\"data-styles-preset\":\"WdLuzRwdy\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7cfab920-9d1e-4f38-8c7a-a58d533b8508, rgb(255, 255, 255)))\"},children:\"Read more\"})})},QyVPo6YCw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-lrm6yi\",\"data-styles-preset\":\"WdLuzRwdy\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7cfab920-9d1e-4f38-8c7a-a58d533b8508, rgb(255, 255, 255)))\"},children:\"Read Less\"})})}},baseVariant,gestureVariant)})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-DWqbw.framer-1aqpuo4, .framer-DWqbw .framer-1aqpuo4 { display: block; }\",\".framer-DWqbw.framer-pcu3fw { align-content: flex-end; align-items: flex-end; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 358px; justify-content: center; overflow: visible; padding: 20px; position: relative; width: 853px; }\",\".framer-DWqbw .framer-mn21p9 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-DWqbw .framer-1vmvkxv { -webkit-user-select: none; flex: 1 0 0px; height: 100%; pointer-events: auto; position: relative; user-select: none; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-DWqbw .framer-1ayjzwg { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 12px; justify-content: center; overflow: visible; padding: 20px; position: relative; width: min-content; }\",\".framer-DWqbw .framer-c8gadi { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-DWqbw.framer-pcu3fw, .framer-DWqbw .framer-mn21p9, .framer-DWqbw .framer-1ayjzwg { gap: 0px; } .framer-DWqbw.framer-pcu3fw > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-DWqbw.framer-pcu3fw > :first-child { margin-top: 0px; } .framer-DWqbw.framer-pcu3fw > :last-child { margin-bottom: 0px; } .framer-DWqbw .framer-mn21p9 > *, .framer-DWqbw .framer-1ayjzwg > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-DWqbw .framer-mn21p9 > :first-child, .framer-DWqbw .framer-1ayjzwg > :first-child { margin-left: 0px; } .framer-DWqbw .framer-mn21p9 > :last-child, .framer-DWqbw .framer-1ayjzwg > :last-child { margin-right: 0px; } }\",\".framer-DWqbw.framer-v-8e0tc1.framer-pcu3fw { height: min-content; }\",\".framer-DWqbw.framer-v-8e0tc1 .framer-mn21p9, .framer-DWqbw.framer-v-19gtirs .framer-mn21p9 { flex: none; height: min-content; }\",\".framer-DWqbw.framer-v-8e0tc1 .framer-1vmvkxv { height: auto; order: 0; }\",\".framer-DWqbw.framer-v-19gtirs.framer-pcu3fw, .framer-DWqbw.framer-v-zd5qud.framer-pcu3fw { height: min-content; width: 390px; }\",\".framer-DWqbw.framer-v-19gtirs .framer-1vmvkxv { height: auto; }\",\".framer-DWqbw.framer-v-zd5qud .framer-mn21p9 { flex: none; height: 268px; }\",...sharedStyle.css,'.framer-DWqbw[data-border=\"true\"]::after, .framer-DWqbw [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 358\n * @framerIntrinsicWidth 853\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"agsG6NJFF\":{\"layout\":[\"fixed\",\"auto\"]},\"QyVPo6YCw\":{\"layout\":[\"fixed\",\"auto\"]},\"EMaXo_odS\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"qLOeDv7fD\":\"plain\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerhQO27tbpj=withCSS(Component,css,\"framer-DWqbw\");export default FramerhQO27tbpj;FramerhQO27tbpj.displayName=\"expandable text section\";FramerhQO27tbpj.defaultProps={height:358,width:853};addPropertyControls(FramerhQO27tbpj,{variant:{options:[\"Q72wyT1j0\",\"agsG6NJFF\",\"QyVPo6YCw\",\"EMaXo_odS\"],optionTitles:[\"closed\",\"open\",\"mobile-open\",\"mobile-closed\"],title:\"Variant\",type:ControlType.Enum},qLOeDv7fD:{defaultValue:\"Spark is an advanced analytics \\xa0and metric tools provide insights into team performance.Spark is an advanced analytics \\xa0and metric tools provide insights into team performance.Spark is an advanced analytics \\xa0and metric tools provide insights into team performance.Spark is an advanced analytics \\xa0and metric tools provide insights into team performance.Spark is an advanced analytics \\xa0and metric tools provide insights into team performance.Spark is an advanced analytics \\xa0and metric tools provide insights into team performance.Spark is an advanced analytics \\xa0and metric tools provide insights into team performance.Spark is an advanced analytics \\xa0and metric tools provide insights into team performance.Spark is an advanced analytics \\xa0and metric tools provide insights into team performance.Spark is an advanced analytics \\xa0and metric tools provide insights into team performance.Spark is an advanced analytics \\xa0and metric tools provide insights into team performance.Spark is an advanced analytics \\xa0and metric tools provide insights into team performance.\",displayTextArea:false,title:\"plain\",type:ControlType.String}});addFonts(FramerhQO27tbpj,[{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\":\"FramerhQO27tbpj\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"358\",\"framerVariables\":\"{\\\"qLOeDv7fD\\\":\\\"plain\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"agsG6NJFF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QyVPo6YCw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"EMaXo_odS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"853\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (e2fa450)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"vcUfg7ZWk\",\"dlYs0ijY0\",\"gM61cGVfi\",\"cDfIYwJF_\",\"Zkbw12kX5\",\"hE5WhePHe\",\"ToMoB4GQF\",\"s1RHvEUFZ\",\"rceUzMTX6\",\"cx96sb7mF\"];const serializationHash=\"framer-6G2bI\";const variantClassNames={cDfIYwJF_:\"framer-v-1yix6ea\",cx96sb7mF:\"framer-v-nuhdjp\",dlYs0ijY0:\"framer-v-kpwx4y\",gM61cGVfi:\"framer-v-1talzda\",hE5WhePHe:\"framer-v-qo9mmy\",rceUzMTX6:\"framer-v-1n7q6su\",s1RHvEUFZ:\"framer-v-1bzxd4r\",ToMoB4GQF:\"framer-v-163brw\",vcUfg7ZWk:\"framer-v-1c3ddd9\",Zkbw12kX5:\"framer-v-qytkfh\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const 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!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Phone 1\":\"hE5WhePHe\",\"phone 2\":\"ToMoB4GQF\",\"phone 3\":\"s1RHvEUFZ\",\"phone 4\":\"rceUzMTX6\",\"phone 5\":\"cx96sb7mF\",\"Variant 1\":\"vcUfg7ZWk\",\"Variant 2\":\"dlYs0ijY0\",\"Variant 3\":\"gM61cGVfi\",\"Variant 4\":\"cDfIYwJF_\",\"Variant 5\":\"Zkbw12kX5\"};const getProps=({height,id,image1,image2,image3,image4,image5,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4,_humanReadableVariantMap_props_variant,_ref5;return{...props,CSJMaxJE9:(_ref=image3!==null&&image3!==void 0?image3:props.CSJMaxJE9)!==null&&_ref!==void 0?_ref:{src:\"https://framerusercontent.com/images/MSZztcarKn30jK47OK82hKTPsrI.svg\"},f1NIVGMR7:(_ref1=image2!==null&&image2!==void 0?image2:props.f1NIVGMR7)!==null&&_ref1!==void 0?_ref1:{src:\"https://framerusercontent.com/images/MSZztcarKn30jK47OK82hKTPsrI.svg\"},KIdFZbFpS:(_ref2=image1!==null&&image1!==void 0?image1:props.KIdFZbFpS)!==null&&_ref2!==void 0?_ref2:{src:\"https://framerusercontent.com/images/MSZztcarKn30jK47OK82hKTPsrI.svg\"},qTCmCEMLg:(_ref3=image4!==null&&image4!==void 0?image4:props.qTCmCEMLg)!==null&&_ref3!==void 0?_ref3:{src:\"https://framerusercontent.com/images/MSZztcarKn30jK47OK82hKTPsrI.svg\"},raUN0gqyA:(_ref4=image5!==null&&image5!==void 0?image5:props.raUN0gqyA)!==null&&_ref4!==void 0?_ref4:{src:\"https://framerusercontent.com/images/MSZztcarKn30jK47OK82hKTPsrI.svg\"},variant:(_ref5=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref5!==void 0?_ref5:\"vcUfg7ZWk\"};};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,KIdFZbFpS,f1NIVGMR7,CSJMaxJE9,qTCmCEMLg,raUN0gqyA,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"vcUfg7ZWk\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1w9s960=activeVariantCallback(async(...args)=>{setVariant(\"vcUfg7ZWk\");});const onTap1gw8wyj=activeVariantCallback(async(...args)=>{setVariant(\"hE5WhePHe\");});const onTap6o1ef4=activeVariantCallback(async(...args)=>{setVariant(\"dlYs0ijY0\");});const onTapt3tnkt=activeVariantCallback(async(...args)=>{setVariant(\"ToMoB4GQF\");});const onTap7tqq7y=activeVariantCallback(async(...args)=>{setVariant(\"gM61cGVfi\");});const onTap1uh1hef=activeVariantCallback(async(...args)=>{setVariant(\"s1RHvEUFZ\");});const onTap1yf1rjs=activeVariantCallback(async(...args)=>{setVariant(\"cDfIYwJF_\");});const onTap1ndgfta=activeVariantCallback(async(...args)=>{setVariant(\"rceUzMTX6\");});const onTap18p630i=activeVariantCallback(async(...args)=>{setVariant(\"Zkbw12kX5\");});const onTapovdve6=activeVariantCallback(async(...args)=>{setVariant(\"cx96sb7mF\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"dlYs0ijY0\",\"gM61cGVfi\",\"cDfIYwJF_\",\"Zkbw12kX5\",\"ToMoB4GQF\",\"s1RHvEUFZ\",\"rceUzMTX6\",\"cx96sb7mF\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"dlYs0ijY0\",\"ToMoB4GQF\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if([\"gM61cGVfi\",\"s1RHvEUFZ\"].includes(baseVariant))return true;return false;};const isDisplayed3=()=>{if([\"cDfIYwJF_\",\"rceUzMTX6\"].includes(baseVariant))return true;return false;};const isDisplayed4=()=>{if([\"Zkbw12kX5\",\"cx96sb7mF\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1c3ddd9\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"vcUfg7ZWk\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({cDfIYwJF_:{\"data-framer-name\":\"Variant 4\"},cx96sb7mF:{\"data-framer-name\":\"phone 5\"},dlYs0ijY0:{\"data-framer-name\":\"Variant 2\"},gM61cGVfi:{\"data-framer-name\":\"Variant 3\"},hE5WhePHe:{\"data-framer-name\":\"Phone 1\"},rceUzMTX6:{\"data-framer-name\":\"phone 4\"},s1RHvEUFZ:{\"data-framer-name\":\"phone 3\"},ToMoB4GQF:{\"data-framer-name\":\"phone 2\"},Zkbw12kX5:{\"data-framer-name\":\"Variant 5\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*1)/2)),pixelHeight:7360,pixelWidth:4912,sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 351px, 1px)`,...toResponsiveImage(KIdFZbFpS)},className:\"framer-10t6qvj\",\"data-framer-name\":\"photo 1\",layoutDependency:layoutDependency,layoutId:\"mqXofuYSa\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},...addPropertyOverrides({hE5WhePHe:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||526)-0-(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||526)-0-(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||526)-0)*.23+10))/1)*1+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||526)-0)*.23+10))/2+0+0)),pixelHeight:7360,pixelWidth:4912,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(KIdFZbFpS)}}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:768,pixelWidth:1024,...toResponsiveImage(f1NIVGMR7)},className:\"framer-16w3v34\",\"data-framer-name\":\"photo 2\",layoutDependency:layoutDependency,layoutId:\"N01QcNTo9\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},...addPropertyOverrides({dlYs0ijY0:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*1)/2)),pixelHeight:768,pixelWidth:1024,sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 351px, 1px)`,...toResponsiveImage(f1NIVGMR7)}},ToMoB4GQF:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*.23+10))/1)*1+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*.23+10))/2+0+0)),pixelHeight:768,pixelWidth:1024,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(f1NIVGMR7)}}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:4896,pixelWidth:3264,...toResponsiveImage(CSJMaxJE9)},className:\"framer-1k8gvy3\",\"data-framer-name\":\"photo 3\",layoutDependency:layoutDependency,layoutId:\"LSM5lOh1t\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},...addPropertyOverrides({gM61cGVfi:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*1)/2)),pixelHeight:4896,pixelWidth:3264,sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 351px, 1px)`,...toResponsiveImage(CSJMaxJE9)}},s1RHvEUFZ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*.23+10))/1)*1+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*.23+10))/2+0+0)),pixelHeight:4896,pixelWidth:3264,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(CSJMaxJE9)}}},baseVariant,gestureVariant)}),isDisplayed3()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:768,pixelWidth:1024,...toResponsiveImage(qTCmCEMLg)},className:\"framer-1bj2x9a\",\"data-framer-name\":\"Photo 4\",layoutDependency:layoutDependency,layoutId:\"Uk9MHDBKW\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},...addPropertyOverrides({cDfIYwJF_:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*1)/2)),pixelHeight:768,pixelWidth:1024,sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 351px, 1px)`,...toResponsiveImage(qTCmCEMLg)}},rceUzMTX6:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*.23+10))/1)*1+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*.23+10))/2+0+0)),pixelHeight:768,pixelWidth:1024,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(qTCmCEMLg)}}},baseVariant,gestureVariant)}),isDisplayed4()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:768,pixelWidth:1024,...toResponsiveImage(raUN0gqyA)},className:\"framer-mn08ug\",\"data-framer-name\":\"photo 5\",layoutDependency:layoutDependency,layoutId:\"LQNSitN6E\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},...addPropertyOverrides({cx96sb7mF:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*.23+10))/1)*1+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*.23+10))/2+0+0)),pixelHeight:768,pixelWidth:1024,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(raUN0gqyA)}},Zkbw12kX5:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*1)/2)),pixelHeight:768,pixelWidth:1024,sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 351px, 1px)`,...toResponsiveImage(raUN0gqyA)}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2xy47d\",layoutDependency:layoutDependency,layoutId:\"SSVNuMTSf\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*1)/2)+0+(0*(((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*1-0-16)/3)+0)),sizes:\"166.5px\",...toResponsiveImage(KIdFZbFpS)},className:\"framer-e7x83k\",\"data-framer-name\":\"Rectangle 7\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"ehu4rAA4H\",onTap:onTap1w9s960,style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},variants:{hE5WhePHe:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}},...addPropertyOverrides({cx96sb7mF:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*.23+10))/1)*1+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*.23+10))/2+Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*.23+10))/1)*1+10)+0+0),sizes:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 32px) / 5, 50px)`,...toResponsiveImage(KIdFZbFpS)},onTap:onTap1gw8wyj},hE5WhePHe:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||526)-0-(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||526)-0-(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||526)-0)*.23+10))/1)*1+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||526)-0)*.23+10))/2+Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||526)-0-(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||526)-0)*.23+10))/1)*1+10)+0+0),sizes:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 32px) / 5, 50px)`,...toResponsiveImage(KIdFZbFpS)},onTap:onTap1gw8wyj},rceUzMTX6:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*.23+10))/1)*1+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*.23+10))/2+Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*.23+10))/1)*1+10)+0+0),sizes:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 32px) / 5, 50px)`,...toResponsiveImage(KIdFZbFpS)},onTap:onTap1gw8wyj},s1RHvEUFZ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*.23+10))/1)*1+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*.23+10))/2+Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*.23+10))/1)*1+10)+0+0),sizes:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 32px) / 5, 50px)`,...toResponsiveImage(KIdFZbFpS)},onTap:onTap1gw8wyj},ToMoB4GQF:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*.23+10))/1)*1+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*.23+10))/2+Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*.23+10))/1)*1+10)+0+0),sizes:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 32px) / 5, 50px)`,...toResponsiveImage(KIdFZbFpS)},onTap:onTap1gw8wyj}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*1)/2)+0+(0*(((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*1-0-16)/3)+0)),sizes:\"166.5px\",...toResponsiveImage(f1NIVGMR7)},className:\"framer-inehkc\",\"data-framer-name\":\"Rectangle 8\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"mpxWFvVTV\",onTap:onTap6o1ef4,style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},...addPropertyOverrides({cx96sb7mF:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*.23+10))/1)*1+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*.23+10))/2+Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*.23+10))/1)*1+10)+0+0),sizes:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 32px) / 5, 50px)`,...toResponsiveImage(f1NIVGMR7)},onTap:onTapt3tnkt},hE5WhePHe:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||526)-0-(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||526)-0-(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||526)-0)*.23+10))/1)*1+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||526)-0)*.23+10))/2+Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||526)-0-(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||526)-0)*.23+10))/1)*1+10)+0+0),sizes:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 32px) / 5, 50px)`,...toResponsiveImage(f1NIVGMR7)},onTap:onTapt3tnkt},rceUzMTX6:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*.23+10))/1)*1+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*.23+10))/2+Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*.23+10))/1)*1+10)+0+0),sizes:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 32px) / 5, 50px)`,...toResponsiveImage(f1NIVGMR7)},onTap:onTapt3tnkt},s1RHvEUFZ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*.23+10))/1)*1+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*.23+10))/2+Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*.23+10))/1)*1+10)+0+0),sizes:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 32px) / 5, 50px)`,...toResponsiveImage(f1NIVGMR7)},onTap:onTapt3tnkt},ToMoB4GQF:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*.23+10))/1)*1+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*.23+10))/2+Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*.23+10))/1)*1+10)+0+0),sizes:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 32px) / 5, 50px)`,...toResponsiveImage(f1NIVGMR7)},onTap:onTapt3tnkt}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*1)/2)+0+(1*(((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*1-0-16)/3)+8)),pixelHeight:4500,pixelWidth:3e3,sizes:\"166.5px\",...toResponsiveImage(CSJMaxJE9)},className:\"framer-rcm8w1\",\"data-framer-name\":\"Rectangle 8\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"UAWQkti9_\",onTap:onTap7tqq7y,style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},...addPropertyOverrides({cx96sb7mF:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*.23+10))/1)*1+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*.23+10))/2+Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*.23+10))/1)*1+10)+0+0),pixelHeight:4500,pixelWidth:3e3,sizes:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 32px) / 5, 50px)`,...toResponsiveImage(CSJMaxJE9)},onTap:onTap1uh1hef},hE5WhePHe:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||526)-0-(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||526)-0-(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||526)-0)*.23+10))/1)*1+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||526)-0)*.23+10))/2+Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||526)-0-(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||526)-0)*.23+10))/1)*1+10)+0+0),pixelHeight:4500,pixelWidth:3e3,sizes:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 32px) / 5, 50px)`,...toResponsiveImage(CSJMaxJE9)},onTap:onTap1uh1hef},rceUzMTX6:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*.23+10))/1)*1+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*.23+10))/2+Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*.23+10))/1)*1+10)+0+0),pixelHeight:4500,pixelWidth:3e3,sizes:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 32px) / 5, 50px)`,...toResponsiveImage(CSJMaxJE9)},onTap:onTap1uh1hef},s1RHvEUFZ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*.23+10))/1)*1+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*.23+10))/2+Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*.23+10))/1)*1+10)+0+0),pixelHeight:4500,pixelWidth:3e3,sizes:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 32px) / 5, 50px)`,...toResponsiveImage(CSJMaxJE9)},onTap:onTap1uh1hef},ToMoB4GQF:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*.23+10))/1)*1+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*.23+10))/2+Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*.23+10))/1)*1+10)+0+0),pixelHeight:4500,pixelWidth:3e3,sizes:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 32px) / 5, 50px)`,...toResponsiveImage(CSJMaxJE9)},onTap:onTap1uh1hef}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*1)/2)+0+(1*(((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*1-0-16)/3)+8)),pixelHeight:3554,pixelWidth:2843,sizes:\"166.5px\",...toResponsiveImage(qTCmCEMLg)},className:\"framer-ep19g1\",\"data-framer-name\":\"Rectangle 8\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"xLM310j4P\",onTap:onTap1yf1rjs,style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},...addPropertyOverrides({cx96sb7mF:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*.23+10))/1)*1+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*.23+10))/2+Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*.23+10))/1)*1+10)+0+0),pixelHeight:3554,pixelWidth:2843,sizes:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 32px) / 5, 50px)`,...toResponsiveImage(qTCmCEMLg)},onTap:onTap1ndgfta},hE5WhePHe:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||526)-0-(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||526)-0-(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||526)-0)*.23+10))/1)*1+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||526)-0)*.23+10))/2+Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||526)-0-(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||526)-0)*.23+10))/1)*1+10)+0+0),pixelHeight:3554,pixelWidth:2843,sizes:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 32px) / 5, 50px)`,...toResponsiveImage(qTCmCEMLg)},onTap:onTap1ndgfta},rceUzMTX6:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*.23+10))/1)*1+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*.23+10))/2+Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*.23+10))/1)*1+10)+0+0),pixelHeight:3554,pixelWidth:2843,sizes:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 32px) / 5, 50px)`,...toResponsiveImage(qTCmCEMLg)},onTap:onTap1ndgfta},s1RHvEUFZ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*.23+10))/1)*1+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*.23+10))/2+Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*.23+10))/1)*1+10)+0+0),pixelHeight:3554,pixelWidth:2843,sizes:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 32px) / 5, 50px)`,...toResponsiveImage(qTCmCEMLg)},onTap:onTap1ndgfta},ToMoB4GQF:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*.23+10))/1)*1+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*.23+10))/2+Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*.23+10))/1)*1+10)+0+0),pixelHeight:3554,pixelWidth:2843,sizes:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 32px) / 5, 50px)`,...toResponsiveImage(qTCmCEMLg)},onTap:onTap1ndgfta}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*1)/2)+0+(2*(((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*1-0-16)/3)+16)),pixelHeight:3091,pixelWidth:2048,sizes:\"166.5px\",...toResponsiveImage(raUN0gqyA)},className:\"framer-37g9vg\",\"data-framer-name\":\"Rectangle 8\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"jmGRc1R_l\",onTap:onTap18p630i,style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},...addPropertyOverrides({cx96sb7mF:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*.23+10))/1)*1+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*.23+10))/2+Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*.23+10))/1)*1+10)+0+0),pixelHeight:3091,pixelWidth:2048,sizes:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 32px) / 5, 50px)`,...toResponsiveImage(raUN0gqyA)},onTap:onTapovdve6},hE5WhePHe:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||526)-0-(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||526)-0-(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||526)-0)*.23+10))/1)*1+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||526)-0)*.23+10))/2+Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||526)-0-(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||526)-0)*.23+10))/1)*1+10)+0+0),pixelHeight:3091,pixelWidth:2048,sizes:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 32px) / 5, 50px)`,...toResponsiveImage(raUN0gqyA)},onTap:onTapovdve6},rceUzMTX6:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*.23+10))/1)*1+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*.23+10))/2+Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*.23+10))/1)*1+10)+0+0),pixelHeight:3091,pixelWidth:2048,sizes:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 32px) / 5, 50px)`,...toResponsiveImage(raUN0gqyA)},onTap:onTapovdve6},s1RHvEUFZ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*.23+10))/1)*1+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*.23+10))/2+Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*.23+10))/1)*1+10)+0+0),pixelHeight:3091,pixelWidth:2048,sizes:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 32px) / 5, 50px)`,...toResponsiveImage(raUN0gqyA)},onTap:onTapovdve6},ToMoB4GQF:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*.23+10))/1)*1+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*.23+10))/2+Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0-(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||527)-0)*.23+10))/1)*1+10)+0+0),pixelHeight:3091,pixelWidth:2048,sizes:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 32px) / 5, 50px)`,...toResponsiveImage(raUN0gqyA)},onTap:onTapovdve6}},baseVariant,gestureVariant)})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-6G2bI.framer-1nz5yty, .framer-6G2bI .framer-1nz5yty { display: block; }\",\".framer-6G2bI.framer-1c3ddd9 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 527px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 724px; }\",\".framer-6G2bI .framer-10t6qvj { flex: 1 0 0px; height: 100%; pointer-events: none; position: relative; width: 1px; }\",\".framer-6G2bI .framer-16w3v34, .framer-6G2bI .framer-1k8gvy3, .framer-6G2bI .framer-1bj2x9a, .framer-6G2bI .framer-mn08ug { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-6G2bI .framer-2xy47d { display: grid; flex: none; gap: 8px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: 100%; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 341px; }\",\".framer-6G2bI .framer-e7x83k, .framer-6G2bI .framer-inehkc, .framer-6G2bI .framer-rcm8w1, .framer-6G2bI .framer-ep19g1, .framer-6G2bI .framer-37g9vg { align-self: start; cursor: pointer; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-6G2bI.framer-1c3ddd9 { gap: 0px; } .framer-6G2bI.framer-1c3ddd9 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-6G2bI.framer-1c3ddd9 > :first-child { margin-left: 0px; } .framer-6G2bI.framer-1c3ddd9 > :last-child { margin-right: 0px; } }\",\".framer-6G2bI.framer-v-qo9mmy.framer-1c3ddd9 { flex-direction: column; height: 526px; width: 389px; }\",\".framer-6G2bI.framer-v-qo9mmy .framer-10t6qvj, .framer-6G2bI.framer-v-163brw .framer-16w3v34, .framer-6G2bI.framer-v-1bzxd4r .framer-1k8gvy3, .framer-6G2bI.framer-v-1n7q6su .framer-1bj2x9a, .framer-6G2bI.framer-v-nuhdjp .framer-mn08ug { height: 1px; width: 100%; }\",\".framer-6G2bI.framer-v-qo9mmy .framer-2xy47d, .framer-6G2bI.framer-v-163brw .framer-2xy47d, .framer-6G2bI.framer-v-1bzxd4r .framer-2xy47d, .framer-6G2bI.framer-v-1n7q6su .framer-2xy47d, .framer-6G2bI.framer-v-nuhdjp .framer-2xy47d { grid-auto-rows: 200px; grid-template-columns: repeat(5, minmax(50px, 1fr)); grid-template-rows: repeat(1, 200px); height: 23%; width: 100%; }\",\".framer-6G2bI.framer-v-qo9mmy .framer-e7x83k, .framer-6G2bI.framer-v-qo9mmy .framer-inehkc, .framer-6G2bI.framer-v-qo9mmy .framer-rcm8w1, .framer-6G2bI.framer-v-qo9mmy .framer-ep19g1, .framer-6G2bI.framer-v-qo9mmy .framer-37g9vg, .framer-6G2bI.framer-v-163brw .framer-e7x83k, .framer-6G2bI.framer-v-163brw .framer-inehkc, .framer-6G2bI.framer-v-163brw .framer-rcm8w1, .framer-6G2bI.framer-v-163brw .framer-ep19g1, .framer-6G2bI.framer-v-163brw .framer-37g9vg, .framer-6G2bI.framer-v-1bzxd4r .framer-e7x83k, .framer-6G2bI.framer-v-1bzxd4r .framer-inehkc, .framer-6G2bI.framer-v-1bzxd4r .framer-rcm8w1, .framer-6G2bI.framer-v-1bzxd4r .framer-ep19g1, .framer-6G2bI.framer-v-1bzxd4r .framer-37g9vg, .framer-6G2bI.framer-v-1n7q6su .framer-e7x83k, .framer-6G2bI.framer-v-1n7q6su .framer-inehkc, .framer-6G2bI.framer-v-1n7q6su .framer-rcm8w1, .framer-6G2bI.framer-v-1n7q6su .framer-ep19g1, .framer-6G2bI.framer-v-1n7q6su .framer-37g9vg, .framer-6G2bI.framer-v-nuhdjp .framer-e7x83k, .framer-6G2bI.framer-v-nuhdjp .framer-inehkc, .framer-6G2bI.framer-v-nuhdjp .framer-rcm8w1, .framer-6G2bI.framer-v-nuhdjp .framer-ep19g1, .framer-6G2bI.framer-v-nuhdjp .framer-37g9vg { height: 70px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-6G2bI.framer-v-qo9mmy.framer-1c3ddd9 { gap: 0px; } .framer-6G2bI.framer-v-qo9mmy.framer-1c3ddd9 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-6G2bI.framer-v-qo9mmy.framer-1c3ddd9 > :first-child { margin-top: 0px; } .framer-6G2bI.framer-v-qo9mmy.framer-1c3ddd9 > :last-child { margin-bottom: 0px; } }\",\".framer-6G2bI.framer-v-163brw.framer-1c3ddd9, .framer-6G2bI.framer-v-1bzxd4r.framer-1c3ddd9, .framer-6G2bI.framer-v-1n7q6su.framer-1c3ddd9, .framer-6G2bI.framer-v-nuhdjp.framer-1c3ddd9 { flex-direction: column; width: 390px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-6G2bI.framer-v-163brw.framer-1c3ddd9 { gap: 0px; } .framer-6G2bI.framer-v-163brw.framer-1c3ddd9 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-6G2bI.framer-v-163brw.framer-1c3ddd9 > :first-child { margin-top: 0px; } .framer-6G2bI.framer-v-163brw.framer-1c3ddd9 > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-6G2bI.framer-v-1bzxd4r.framer-1c3ddd9 { gap: 0px; } .framer-6G2bI.framer-v-1bzxd4r.framer-1c3ddd9 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-6G2bI.framer-v-1bzxd4r.framer-1c3ddd9 > :first-child { margin-top: 0px; } .framer-6G2bI.framer-v-1bzxd4r.framer-1c3ddd9 > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-6G2bI.framer-v-1n7q6su.framer-1c3ddd9 { gap: 0px; } .framer-6G2bI.framer-v-1n7q6su.framer-1c3ddd9 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-6G2bI.framer-v-1n7q6su.framer-1c3ddd9 > :first-child { margin-top: 0px; } .framer-6G2bI.framer-v-1n7q6su.framer-1c3ddd9 > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-6G2bI.framer-v-nuhdjp.framer-1c3ddd9 { gap: 0px; } .framer-6G2bI.framer-v-nuhdjp.framer-1c3ddd9 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-6G2bI.framer-v-nuhdjp.framer-1c3ddd9 > :first-child { margin-top: 0px; } .framer-6G2bI.framer-v-nuhdjp.framer-1c3ddd9 > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 527\n * @framerIntrinsicWidth 724\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"dlYs0ijY0\":{\"layout\":[\"fixed\",\"fixed\"]},\"gM61cGVfi\":{\"layout\":[\"fixed\",\"fixed\"]},\"cDfIYwJF_\":{\"layout\":[\"fixed\",\"fixed\"]},\"Zkbw12kX5\":{\"layout\":[\"fixed\",\"fixed\"]},\"hE5WhePHe\":{\"layout\":[\"fixed\",\"fixed\"]},\"ToMoB4GQF\":{\"layout\":[\"fixed\",\"fixed\"]},\"s1RHvEUFZ\":{\"layout\":[\"fixed\",\"fixed\"]},\"rceUzMTX6\":{\"layout\":[\"fixed\",\"fixed\"]},\"cx96sb7mF\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"KIdFZbFpS\":\"image1\",\"f1NIVGMR7\":\"image2\",\"CSJMaxJE9\":\"image3\",\"qTCmCEMLg\":\"image4\",\"raUN0gqyA\":\"image5\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerp0MO9RQ_L=withCSS(Component,css,\"framer-6G2bI\");export default Framerp0MO9RQ_L;Framerp0MO9RQ_L.displayName=\"property Image Gallery\";Framerp0MO9RQ_L.defaultProps={height:527,width:724};addPropertyControls(Framerp0MO9RQ_L,{variant:{options:[\"vcUfg7ZWk\",\"dlYs0ijY0\",\"gM61cGVfi\",\"cDfIYwJF_\",\"Zkbw12kX5\",\"hE5WhePHe\",\"ToMoB4GQF\",\"s1RHvEUFZ\",\"rceUzMTX6\",\"cx96sb7mF\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 4\",\"Variant 5\",\"Phone 1\",\"phone 2\",\"phone 3\",\"phone 4\",\"phone 5\"],title:\"Variant\",type:ControlType.Enum},KIdFZbFpS:{__defaultAssetReference:\"data:framer/asset-reference,MSZztcarKn30jK47OK82hKTPsrI.svg?originalFilename=Image+Coming+soon+%282%29.svg&preferredSize=auto\",title:\"Image 1\",type:ControlType.ResponsiveImage},f1NIVGMR7:{__defaultAssetReference:\"data:framer/asset-reference,MSZztcarKn30jK47OK82hKTPsrI.svg?originalFilename=Image+Coming+soon+%282%29.svg&preferredSize=auto\",title:\"Image 2\",type:ControlType.ResponsiveImage},CSJMaxJE9:{__defaultAssetReference:\"data:framer/asset-reference,MSZztcarKn30jK47OK82hKTPsrI.svg?originalFilename=Image+Coming+soon+%282%29.svg&preferredSize=auto\",title:\"Image 3\",type:ControlType.ResponsiveImage},qTCmCEMLg:{__defaultAssetReference:\"data:framer/asset-reference,MSZztcarKn30jK47OK82hKTPsrI.svg?originalFilename=Image+Coming+soon+%282%29.svg&preferredSize=auto\",title:\"Image 4\",type:ControlType.ResponsiveImage},raUN0gqyA:{__defaultAssetReference:\"data:framer/asset-reference,MSZztcarKn30jK47OK82hKTPsrI.svg?originalFilename=Image+Coming+soon+%282%29.svg&preferredSize=auto\",title:\"Image 5\",type:ControlType.ResponsiveImage}});addFonts(Framerp0MO9RQ_L,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerp0MO9RQ_L\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"527\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"724\",\"framerVariables\":\"{\\\"KIdFZbFpS\\\":\\\"image1\\\",\\\"f1NIVGMR7\\\":\\\"image2\\\",\\\"CSJMaxJE9\\\":\\\"image3\\\",\\\"qTCmCEMLg\\\":\\\"image4\\\",\\\"raUN0gqyA\\\":\\\"image5\\\"}\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"dlYs0ijY0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"gM61cGVfi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"cDfIYwJF_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Zkbw12kX5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"hE5WhePHe\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ToMoB4GQF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"s1RHvEUFZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"rceUzMTX6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"cx96sb7mF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./p0MO9RQ_L.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";export function Dynamic_icon_link(props){const{phoneNumber,subCommunity,propertyId,community,city,buttonImage,width,height}=props;const inquiryText=`I want to inquire for the property ${propertyId} in ${subCommunity}, ${community}, ${city}.`;const whatsappLink=`https://wa.me/${phoneNumber}?text=${encodeURIComponent(inquiryText)}`;return /*#__PURE__*/_jsx(\"a\",{href:whatsappLink,target:\"_blank\",rel:\"noopener noreferrer\",style:{display:\"inline-block\",width,height},children:/*#__PURE__*/_jsx(\"img\",{src:buttonImage,alt:\"Contact Us\",style:{width:\"100%\",height:\"100%\",objectFit:\"cover\"}})});}Dynamic_icon_link.defaultProps={width:100,height:100};addPropertyControls(Dynamic_icon_link,{propertyId:{type:ControlType.String,title:\"id\"},phoneNumber:{type:ControlType.String,title:\"Phone Number\"},subCommunity:{type:ControlType.String,title:\"Sub Community\"},community:{type:ControlType.String,title:\"Community\"},city:{type:ControlType.String,title:\"City\"},buttonImage:{type:ControlType.Image,title:\"Button Image\"},width:{type:ControlType.Number,title:\"Width\",min:0},height:{type:ControlType.Number,title:\"Height\",min:0}});\nexport const __FramerMetadata__ = {\"exports\":{\"Dynamic_icon_link\":{\"type\":\"reactComponent\",\"name\":\"Dynamic_icon_link\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Dynamic_icon_link.map", "// Generated by Framer (6aa4fc0)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,Fetcher,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import GoogleMaps from\"https://framerusercontent.com/modules/Hbc0lxqGSRzFG6uMT9yO/OPmIEDVRw3amYB3GBzWp/GoogleMaps.js\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/P1XRxus9CQiWIYNrkBAa/Carousel.js\";import KeyFeature from\"#framer/local/canvasComponent/AS9Q8qA07/AS9Q8qA07.js\";import InquireForPropertyForm from\"#framer/local/canvasComponent/BTTGHjpeT/BTTGHjpeT.js\";import IconButtonLink from\"#framer/local/canvasComponent/C2wjJPjkr/C2wjJPjkr.js\";import Button from\"#framer/local/canvasComponent/GulOZoMnJ/GulOZoMnJ.js\";import ExpandableTextSection from\"#framer/local/canvasComponent/hQO27tbpj/hQO27tbpj.js\";import Topbar from\"#framer/local/canvasComponent/MEfngGPVR/MEfngGPVR.js\";import PropertyImageGallery from\"#framer/local/canvasComponent/p0MO9RQ_L/p0MO9RQ_L.js\";import ProcessCard from\"#framer/local/canvasComponent/PCgd3WvOA/PCgd3WvOA.js\";import Cursor from\"#framer/local/canvasComponent/t3kQNA4Z8/t3kQNA4Z8.js\";import Footer01 from\"#framer/local/canvasComponent/TWlCA1Uhf/TWlCA1Uhf.js\";import{Dynamic_icon_link}from\"#framer/local/codeFile/caIZz99/Dynamic_icon_link.js\";import PropertiesPropertyFinder from\"#framer/local/collection/sfD52ERFp/sfD52ERFp.js\";import*as sharedStyle1 from\"#framer/local/css/h6mDQwmL_/h6mDQwmL_.js\";import*as sharedStyle from\"#framer/local/css/HRBsjwLer/HRBsjwLer.js\";import*as sharedStyle5 from\"#framer/local/css/N_lPEgiD9/N_lPEgiD9.js\";import*as sharedStyle6 from\"#framer/local/css/qvAaSoY3f/qvAaSoY3f.js\";import*as sharedStyle3 from\"#framer/local/css/WdLuzRwdy/WdLuzRwdy.js\";import*as sharedStyle2 from\"#framer/local/css/X7ylXautb/X7ylXautb.js\";import*as sharedStyle4 from\"#framer/local/css/yywTLQrM9/yywTLQrM9.js\";import metadataProvider from\"#framer/local/webPageMetadata/jkgbHAJKQ/jkgbHAJKQ.js\";const IconButtonLinkFonts=getFonts(IconButtonLink);const Dynamic_icon_linkFonts=getFonts(Dynamic_icon_link);const TopbarFonts=getFonts(Topbar);const PropertyImageGalleryFonts=getFonts(PropertyImageGallery);const ExpandableTextSectionFonts=getFonts(ExpandableTextSection);const KeyFeatureFonts=getFonts(KeyFeature);const GoogleMapsFonts=getFonts(GoogleMaps);const InquireForPropertyFormFonts=getFonts(InquireForPropertyForm);const CarouselFonts=getFonts(Carousel);const ButtonFonts=getFonts(Button);const ContainerWithFX=withFX(Container);const ProcessCardFonts=getFonts(ProcessCard);const Footer01Fonts=getFonts(Footer01);const CursorFonts=getFonts(Cursor);const breakpoints={HI16lR3UC:\"(min-width: 1200px) and (max-width: 1405px)\",kOaX8FoK_:\"(max-width: 809px)\",LKjezwvNE:\"(min-width: 1406px)\",yMD1aUvmB:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-WhOmA\";const variantClassNames={HI16lR3UC:\"framer-v-jks6dt\",kOaX8FoK_:\"framer-v-ffgcnf\",LKjezwvNE:\"framer-v-47psr9\",yMD1aUvmB:\"framer-v-1bp9myx\"};const equals=(a,b)=>{return typeof a===\"string\"&&typeof b===\"string\"?a.toLowerCase()===b.toLowerCase():a===b;};const negate=value=>{return!value;};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 toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const toString=value=>{return typeof value===\"string\"?value:String(value);};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:26};const transition1={damping:30,delay:.1,mass:1,stiffness:152,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20};const transition2={damping:30,delay:0,mass:1,stiffness:150,type:\"spring\"};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop Large 2\":\"LKjezwvNE\",Desktop:\"HI16lR3UC\",Phone:\"kOaX8FoK_\",Tablet:\"yMD1aUvmB\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"HI16lR3UC\"};};const transition3={damping:47,delay:0,mass:.4,stiffness:187,type:\"spring\"};const cursor={alignment:\"center\",component:Cursor,offset:{x:5,y:8},placement:\"bottom\",transition:transition3,variant:\"ga7_bA5yv\"};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:{alias:\"jkgbHAJKQ\",data:PropertiesPropertyFinder,type:\"Collection\"},select:[{collection:\"jkgbHAJKQ\",name:\"gDXROzUHK\",type:\"Identifier\"},{collection:\"jkgbHAJKQ\",name:\"b89Nm6zLn\",type:\"Identifier\"},{collection:\"jkgbHAJKQ\",name:\"V_8Vv4Aky\",type:\"Identifier\"},{collection:\"jkgbHAJKQ\",name:\"riI1kOXpY\",type:\"Identifier\"},{collection:\"jkgbHAJKQ\",name:\"Gz0bKJrzQ\",type:\"Identifier\"},{collection:\"jkgbHAJKQ\",name:\"DZujJi4uU\",type:\"Identifier\"},{collection:\"jkgbHAJKQ\",name:\"WTi9F9bsu\",type:\"Identifier\"},{collection:\"jkgbHAJKQ\",name:\"vJThjf2f1\",type:\"Identifier\"},{collection:\"jkgbHAJKQ\",name:\"kv6I7Y0A2\",type:\"Identifier\"},{collection:\"jkgbHAJKQ\",name:\"EJE2EKsVw\",type:\"Identifier\"},{collection:\"jkgbHAJKQ\",name:\"uAY_aW64Z\",type:\"Identifier\"},{collection:\"jkgbHAJKQ\",name:\"fovXL8TyE\",type:\"Identifier\"},{collection:\"jkgbHAJKQ\",name:\"xxg8YrrgA\",type:\"Identifier\"},{collection:\"jkgbHAJKQ\",name:\"rSzbFRjGf\",type:\"Identifier\"},{collection:\"jkgbHAJKQ\",name:\"hgC_h60j9\",type:\"Identifier\"},{collection:\"jkgbHAJKQ\",name:\"LIgomMNCR\",type:\"Identifier\"},{collection:\"jkgbHAJKQ\",name:\"YzTwhwbax\",type:\"Identifier\"},{collection:\"jkgbHAJKQ\",name:\"ffgWqkvKe\",type:\"Identifier\"},{collection:\"jkgbHAJKQ\",name:\"fObtImQGi\",type:\"Identifier\"},{collection:\"jkgbHAJKQ\",name:\"m5W4ecJ2A\",type:\"Identifier\"},{collection:\"jkgbHAJKQ\",name:\"Xlb45JdAD\",type:\"Identifier\"},{collection:\"jkgbHAJKQ\",name:\"IGyWjeSrF\",type:\"Identifier\"},{collection:\"jkgbHAJKQ\",name:\"ZU5OHb93M\",type:\"Identifier\"},{collection:\"jkgbHAJKQ\",name:\"tG4oh0DaF\",type:\"Identifier\"},{collection:\"jkgbHAJKQ\",name:\"SgNqcmdV7\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"jkgbHAJKQ\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,SgNqcmdV7=getFromCurrentRouteData(\"SgNqcmdV7\")??0,uAY_aW64Z=getFromCurrentRouteData(\"uAY_aW64Z\")??0,EJE2EKsVw=getFromCurrentRouteData(\"EJE2EKsVw\")??\"\",gDXROzUHK=getFromCurrentRouteData(\"gDXROzUHK\")??\"\",Gz0bKJrzQ=getFromCurrentRouteData(\"Gz0bKJrzQ\")??\"\",riI1kOXpY=getFromCurrentRouteData(\"riI1kOXpY\")??\"\",V_8Vv4Aky=getFromCurrentRouteData(\"V_8Vv4Aky\")??\"\",rSzbFRjGf=getFromCurrentRouteData(\"rSzbFRjGf\"),hgC_h60j9=getFromCurrentRouteData(\"hgC_h60j9\"),LIgomMNCR=getFromCurrentRouteData(\"LIgomMNCR\"),YzTwhwbax=getFromCurrentRouteData(\"YzTwhwbax\"),ffgWqkvKe=getFromCurrentRouteData(\"ffgWqkvKe\"),fovXL8TyE=getFromCurrentRouteData(\"fovXL8TyE\")??\"\",WTi9F9bsu=getFromCurrentRouteData(\"WTi9F9bsu\")??0,vJThjf2f1=getFromCurrentRouteData(\"vJThjf2f1\")??0,DZujJi4uU=getFromCurrentRouteData(\"DZujJi4uU\")??0,xxg8YrrgA=getFromCurrentRouteData(\"xxg8YrrgA\")??\"\",tG4oh0DaF=getFromCurrentRouteData(\"tG4oh0DaF\")??\"\",kv6I7Y0A2=getFromCurrentRouteData(\"kv6I7Y0A2\")??\"\",fObtImQGi=getFromCurrentRouteData(\"fObtImQGi\"),m5W4ecJ2A=getFromCurrentRouteData(\"m5W4ecJ2A\"),Xlb45JdAD=getFromCurrentRouteData(\"Xlb45JdAD\"),IGyWjeSrF=getFromCurrentRouteData(\"IGyWjeSrF\"),ZU5OHb93M=getFromCurrentRouteData(\"ZU5OHb93M\")??0,b89Nm6zLniFEOq3izs,fovXL8TyEiFEOq3izs,LIgomMNCRiFEOq3izs,riI1kOXpYiFEOq3izs,V_8Vv4AkyiFEOq3izs,kv6I7Y0A2iFEOq3izs,DZujJi4uUiFEOq3izs,vJThjf2f1iFEOq3izs,WTi9F9bsuiFEOq3izs,SgNqcmdV7iFEOq3izs,idiFEOq3izs,b89Nm6zLnRJH6t3DbR,fovXL8TyERJH6t3DbR,LIgomMNCRRJH6t3DbR,riI1kOXpYRJH6t3DbR,V_8Vv4AkyRJH6t3DbR,kv6I7Y0A2RJH6t3DbR,DZujJi4uURJH6t3DbR,vJThjf2f1RJH6t3DbR,WTi9F9bsuRJH6t3DbR,uAY_aW64ZRJH6t3DbR,idRJH6t3DbR,b89Nm6zLn=getFromCurrentRouteData(\"b89Nm6zLn\")??\"\",...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 sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"kOaX8FoK_\")return true;return false;};const visible=negate(equals(SgNqcmdV7,0));const activeLocaleCode=useLocaleCode();const textContent=numberToString(SgNqcmdV7,{currency:\"AED\",currencyDisplay:\"symbol\",locale:\"\",minimumFractionDigits:0,notation:\"standard\",style:\"currency\"},activeLocaleCode);const visible1=equals(SgNqcmdV7,0);const textContent1=numberToString(uAY_aW64Z,{currency:\"AED\",currencyDisplay:\"symbol\",locale:\"\",minimumFractionDigits:0,notation:\"standard\",style:\"currency\"},activeLocaleCode);const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"kOaX8FoK_\")return false;return true;};const visible2=isSet(Gz0bKJrzQ);const visible3=isSet(riI1kOXpY);const visible4=negate(equals(gDXROzUHK,\"0\"));const textContent2=numberToString(WTi9F9bsu,{locale:\"\",notation:\"standard\",style:\"decimal\"},activeLocaleCode);const visible5=equals(gDXROzUHK,\"0\");const textContent3=numberToString(vJThjf2f1,{locale:\"\",notation:\"standard\",style:\"decimal\"},activeLocaleCode);const textContent4=numberToString(DZujJi4uU,{locale:\"\",notation:\"standard\",style:\"decimal\"},activeLocaleCode);const textContent5=numberToString(ZU5OHb93M,{locale:\"\",notation:\"standard\",style:\"decimal\",useGrouping:false},activeLocaleCode);const elementId=useRouteElementId(\"jPPn9ktY9\");const ref1=React.useRef(null);const router=useRouter();const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"yMD1aUvmB\")return false;return true;};const elementId1=useRouteElementId(\"sjJ1NsN9M\");const ref2=React.useRef(null);const visible6=equals(riI1kOXpY,riI1kOXpY);useCustomCursors({\"11e2ngx\":cursor});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"HI16lR3UC\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-6486a9ac-e9e8-4ced-becb-afb4c654ba35, rgb(10, 10, 10)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-jks6dt\",className),\"data-framer-cursor\":\"11e2ngx\",ref:refBinding,style:{...style},children:[isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-158q4ud hidden-jks6dt hidden-1bp9myx hidden-47psr9\",\"data-border\":true,\"data-framer-name\":\"Banner\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10m5zua\",\"data-framer-name\":\"Text Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VXJiYW5pc3QtNTAw\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"Price\"})}),className:\"framer-gmmhbn\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Urbanist-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b1mh74\",children:[visible&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pr6cdb\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7VXJiYW5pc3Qtc2VtaWJvbGQ=\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(230, 230, 230))\"},children:\"AED\\xa07,599,999\"})}),className:\"framer-m7roj1\",\"data-framer-name\":\"price\",fonts:[\"FS;Urbanist-semibold\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true})}),visible1&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1iqj3w1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7VXJiYW5pc3Qtc2VtaWJvbGQ=\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(230, 230, 230))\"},children:\"AED\\xa00\"})}),className:\"framer-1gmixf9\",\"data-framer-name\":\"price\",fonts:[\"FS;Urbanist-semibold\"],text:textContent1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7VXJiYW5pc3Qtc2VtaWJvbGQ=\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(230, 230, 230))\"},children:\"/\"})}),className:\"framer-18oagam\",\"data-framer-name\":\"price\",fonts:[\"FS;Urbanist-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7VXJiYW5pc3Qtc2VtaWJvbGQ=\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(230, 230, 230))\"},children:\"Content\"})}),className:\"framer-1za6i0\",\"data-framer-name\":\"price\",fonts:[\"FS;Urbanist-semibold\"],text:EJE2EKsVw,verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uw0a7j\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kOaX8FoK_:{y:945}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"40px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-s4iext-container\",nodeId:\"R9xmZNuHY\",scopeId:\"jkgbHAJKQ\",children:/*#__PURE__*/_jsx(IconButtonLink,{height:\"100%\",id:\"R9xmZNuHY\",L1CHGKmch:\"tel:+971527390836\",layoutId:\"R9xmZNuHY\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1szkcx3-container\",isAuthoredByUser:true,nodeId:\"SCqtAGEOB\",scopeId:\"jkgbHAJKQ\",children:/*#__PURE__*/_jsx(Dynamic_icon_link,{buttonImage:\"https://framerusercontent.com/images/ZTQSB65gEkzLfBKbs710KCmlys.png\",city:V_8Vv4Aky,community:riI1kOXpY,height:\"100%\",id:\"SCqtAGEOB\",layoutId:\"SCqtAGEOB\",phoneNumber:\"971527390836\",propertyId:gDXROzUHK,style:{height:\"100%\",width:\"100%\"},subCommunity:Gz0bKJrzQ,width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:127,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jyedf8-container\",layoutScroll:true,nodeId:\"N2vG4swcqqdy6LWnVM\",scopeId:\"jkgbHAJKQ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kOaX8FoK_:{variant:\"VvxwOXSlC\"},yMD1aUvmB:{variant:\"VvxwOXSlC\"}},children:/*#__PURE__*/_jsx(Topbar,{AicBUTDWj:\"CPIMpz1DQ\",dmElUEbkn:\"CPIMpz1DQ\",ff9GEWBDa:\"CPIMpz1DQ\",FWyclDMs4:\"rgba(0, 0, 0, 0.2)\",height:\"100%\",id:\"N2vG4swcqqdy6LWnVM\",ipam0k6KS:\"CPIMpz1DQ\",layoutId:\"N2vG4swcqqdy6LWnVM\",style:{width:\"100%\"},UEin4MdCF:\"CPIMpz1DQ\",variant:\"BTjPgfaUs\",width:\"100%\",yXFa52VqY:\"CPIMpz1DQ\"})})})}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u02h9g hidden-jks6dt hidden-1bp9myx hidden-47psr9\",\"data-framer-name\":\"menu\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c9h2mt\",\"data-framer-name\":\"Banner\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jav1zz\",\"data-framer-name\":\"Text Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VXJiYW5pc3QtNTAw\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"Price\"})}),className:\"framer-1t6t452\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Urbanist-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1l0ad4i\",children:[visible&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-17bei4b\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7VXJiYW5pc3Qtc2VtaWJvbGQ=\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(230, 230, 230))\"},children:\"AED\\xa07,599,999\"})}),className:\"framer-184s1cm\",\"data-framer-name\":\"price\",fonts:[\"FS;Urbanist-semibold\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true})}),visible1&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6oex70\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7VXJiYW5pc3Qtc2VtaWJvbGQ=\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(230, 230, 230))\"},children:\"AED\\xa00\"})}),className:\"framer-687jps\",\"data-framer-name\":\"price\",fonts:[\"FS;Urbanist-semibold\"],text:textContent1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7VXJiYW5pc3Qtc2VtaWJvbGQ=\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(230, 230, 230))\"},children:\"/\"})}),className:\"framer-2hbwvj\",\"data-framer-name\":\"price\",fonts:[\"FS;Urbanist-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7VXJiYW5pc3Qtc2VtaWJvbGQ=\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(230, 230, 230))\"},children:\"Content\"})}),className:\"framer-1om7uxc\",\"data-framer-name\":\"price\",fonts:[\"FS;Urbanist-semibold\"],text:EJE2EKsVw,verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mx3m0t\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"40px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-lxhd9h-container\",nodeId:\"nCABMFluZ\",scopeId:\"jkgbHAJKQ\",children:/*#__PURE__*/_jsx(IconButtonLink,{height:\"100%\",id:\"nCABMFluZ\",L1CHGKmch:\"tel:+971527390836\",layoutId:\"nCABMFluZ\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-c4gor4-container\",isAuthoredByUser:true,nodeId:\"ZJCALXRL8\",scopeId:\"jkgbHAJKQ\",children:/*#__PURE__*/_jsx(Dynamic_icon_link,{buttonImage:\"https://framerusercontent.com/images/ZTQSB65gEkzLfBKbs710KCmlys.png\",city:V_8Vv4Aky,community:riI1kOXpY,height:\"100%\",id:\"ZJCALXRL8\",layoutId:\"ZJCALXRL8\",phoneNumber:\"971527390836\",propertyId:gDXROzUHK,style:{height:\"100%\",width:\"100%\"},subCommunity:Gz0bKJrzQ,width:\"100%\"})})})]})]}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:357,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1v3fgbx-container hidden-ffgcnf\",nodeId:\"UyrU0A4wU\",scopeId:\"jkgbHAJKQ\",children:/*#__PURE__*/_jsx(PropertyImageGallery,{CSJMaxJE9:toResponsiveImage(LIgomMNCR),f1NIVGMR7:toResponsiveImage(hgC_h60j9),height:\"100%\",id:\"UyrU0A4wU\",KIdFZbFpS:toResponsiveImage(rSzbFRjGf),layoutId:\"UyrU0A4wU\",qTCmCEMLg:toResponsiveImage(YzTwhwbax),raUN0gqyA:toResponsiveImage(ffgWqkvKe),style:{height:\"100%\",width:\"100%\"},variant:\"hE5WhePHe\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qm80rv\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lqf8lj\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1f7wqg9\",\"data-framer-name\":\"Top Titles\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-f01j\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-7dhv8r\",\"data-styles-preset\":\"HRBsjwLer\",children:\"Prime Downtown Location | Fully Fitted | AED 102,256\"})}),className:\"framer-1quk3rp\",\"data-framer-name\":\"Well Furnished Apartment\",fonts:[\"Inter\"],text:fovXL8TyE,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-57y1wf\",children:[visible2&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x4hlck\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7VXJiYW5pc3QtbWVkaXVt\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(230, 230, 230))\"},children:\"The Address Residence Fountain Views\"})}),className:\"framer-k6z9o\",\"data-framer-name\":\"100 Smart Street, LA, USA\",fonts:[\"FS;Urbanist-medium\"],text:Gz0bKJrzQ,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(230, 230, 230))\"},children:\",\"})}),className:\"framer-aw1ri1\",\"data-framer-name\":\"100 Smart Street, LA, USA\",fonts:[\"GF;Montserrat-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),visible3&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x01u1e\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7VXJiYW5pc3QtbWVkaXVt\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(230, 230, 230))\"},children:\"Downtown Dubai\"})}),className:\"framer-17skual\",\"data-framer-name\":\"100 Smart Street, LA, USA\",fonts:[\"FS;Urbanist-medium\"],text:riI1kOXpY,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(230, 230, 230))\"},children:\",\"})}),className:\"framer-muh75k\",\"data-framer-name\":\"100 Smart Street, LA, USA\",fonts:[\"GF;Montserrat-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7VXJiYW5pc3QtbWVkaXVt\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(230, 230, 230))\"},children:\"Dubai\"})}),className:\"framer-rbff67\",\"data-framer-name\":\"100 Smart Street, LA, USA\",fonts:[\"FS;Urbanist-medium\"],text:V_8Vv4Aky,verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h9nlsr\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qltugk\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pgx9bf\",\"data-border\":true,\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vfe75g\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-avh9rk\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x83ca4\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:128,pixelWidth:128,src:\"https://framerusercontent.com/images/9cgrPTjOC3gc29U2ymIS1s6qNY0.png\"},className:\"framer-1gs691g\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-163z7x8\",\"data-styles-preset\":\"h6mDQwmL_\",children:\"Bedrooms\"})}),className:\"framer-1g5cfkr\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xa4wxc\",children:[visible4&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kOaX8FoK_:{text:textContent2}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VXJiYW5pc3QtNjAw\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"2\"})}),className:\"framer-1076rju\",\"data-framer-name\":\"Text\",fonts:[\"GF;Urbanist-600\"],text:gDXROzUHK,verticalAlignment:\"top\",withExternalLayout:true})}),visible5&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VXJiYW5pc3QtNjAw\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Studio\"})}),className:\"framer-74w9z7\",\"data-framer-name\":\"Text\",fonts:[\"GF;Urbanist-600\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-pnmp3u\",\"data-framer-name\":\"Line\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:61,intrinsicWidth:3,svg:'<svg width=\"3\" height=\"61\" viewBox=\"-1 -1 3 61\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.5\" y1=\"2.18557e-08\" x2=\"0.499997\" y2=\"59\" stroke=\"#262626\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i6az8s\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rxex5c\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:128,pixelWidth:128,src:\"https://framerusercontent.com/images/Iagusu7ObMTmEMjZKwYDBc2EFs.png\"},className:\"framer-1dxvqva\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-163z7x8\",\"data-styles-preset\":\"h6mDQwmL_\",children:\"Bathrooms\"})}),className:\"framer-x3hgzp\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VXJiYW5pc3QtNjAw\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"3\"})}),className:\"framer-c0r4d1\",\"data-framer-name\":\"Text\",fonts:[\"GF;Urbanist-600\"],text:textContent3,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z1om4g\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2ec7t1\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:128,pixelWidth:128,src:\"https://framerusercontent.com/images/oG96oFU8JXpwDnMGqgp0cLKHuE.png\"},className:\"framer-w4veis\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-163z7x8\",\"data-styles-preset\":\"h6mDQwmL_\",children:\"Area\"})}),className:\"framer-u7hwzu\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qvrppl\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VXJiYW5pc3QtNjAw\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"1,336.88\"})}),className:\"framer-okd9xt\",\"data-framer-name\":\"Text\",fonts:[\"GF;Urbanist-600\"],text:textContent4,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VXJiYW5pc3QtNjAw\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Square Feet\"})}),className:\"framer-kgzj26\",\"data-framer-name\":\"Text\",fonts:[\"GF;Urbanist-600\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13c6xan\",\"data-framer-name\":\"Text Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-qrpho1\",\"data-styles-preset\":\"X7ylXautb\",children:\"Description\"})}),className:\"framer-60p4jt\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kOaX8FoK_:{width:\"364px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:358,children:/*#__PURE__*/_jsx(Container,{className:\"framer-l1nut5-container\",nodeId:\"YPWt56URC\",scopeId:\"jkgbHAJKQ\",children:/*#__PURE__*/_jsx(ExpandableTextSection,{height:\"100%\",id:\"YPWt56URC\",layoutId:\"YPWt56URC\",qLOeDv7fD:xxg8YrrgA,style:{width:\"100%\"},variant:\"EMaXo_odS\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4wwh5u\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oaac99\",\"data-framer-name\":\"Text Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-qrpho1\",\"data-styles-preset\":\"X7ylXautb\",children:\"RERA Listing Number\"})}),className:\"framer-bkggmr\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-60tcsq\",\"data-border\":true,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-lrm6yi\",\"data-styles-preset\":\"WdLuzRwdy\",style:{\"--framer-text-color\":\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(230, 230, 230))\"},children:\"7117594220\"})}),className:\"framer-1gqn3vv\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],text:gDXROzUHK,verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d95x0o\",\"data-border\":true,\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-qrpho1\",\"data-styles-preset\":\"X7ylXautb\",children:\"Key Features and Amenities\"})}),className:\"framer-1bzz6e7\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ri5fzd\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsx(Fetcher,{requests:[{cacheDuration:0,credentials:\"same-origin\",errorFallbackValue:\"Error\",fallbackValue:\"loading...\",resultKeyPath:\"0.name\",resultOutputType:\"string\",url:`https://xxeal5.buildship.run/amenities?id=${gDXROzUHK}`}],children:fetchResult=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kOaX8FoK_:{width:\"330px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xb8r4b-container\",nodeId:\"Xs7pbK9Qv\",scopeId:\"jkgbHAJKQ\",children:/*#__PURE__*/_jsx(KeyFeature,{height:\"100%\",id:\"Xs7pbK9Qv\",jDsZGkkfz:toString(fetchResult[0]),layoutId:\"Xs7pbK9Qv\",style:{width:\"100%\"},variant:\"SY6xPb59v\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Fetcher,{requests:[{cacheDuration:0,credentials:\"same-origin\",errorFallbackValue:\"Error\",fallbackValue:\"loading...\",resultKeyPath:\"1.name\",resultOutputType:\"string\",url:`https://xxeal5.buildship.run/amenities?id=${gDXROzUHK}`}],children:fetchResult1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kOaX8FoK_:{width:\"330px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vbipnc-container\",nodeId:\"N6i0BlzIx\",scopeId:\"jkgbHAJKQ\",children:/*#__PURE__*/_jsx(KeyFeature,{height:\"100%\",id:\"N6i0BlzIx\",jDsZGkkfz:toString(fetchResult1[0]),layoutId:\"N6i0BlzIx\",style:{width:\"100%\"},variant:\"NiGXN_tRs\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Fetcher,{requests:[{cacheDuration:0,credentials:\"same-origin\",errorFallbackValue:\"Error\",fallbackValue:\"loading...\",resultKeyPath:\"3.name\",resultOutputType:\"string\",url:`https://xxeal5.buildship.run/amenities?id=${gDXROzUHK}`}],children:fetchResult2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kOaX8FoK_:{width:\"330px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,children:/*#__PURE__*/_jsx(Container,{className:\"framer-9ajwvx-container\",nodeId:\"ryPECjCGd\",scopeId:\"jkgbHAJKQ\",children:/*#__PURE__*/_jsx(KeyFeature,{height:\"100%\",id:\"ryPECjCGd\",jDsZGkkfz:toString(fetchResult2[0]),layoutId:\"ryPECjCGd\",style:{width:\"100%\"},variant:\"zhIiF9KGm\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Fetcher,{requests:[{cacheDuration:0,credentials:\"same-origin\",errorFallbackValue:\"Error\",fallbackValue:\"loading...\",resultKeyPath:\"4.name\",resultOutputType:\"string\",url:`https://xxeal5.buildship.run/amenities?id=${gDXROzUHK}`}],children:fetchResult3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kOaX8FoK_:{width:\"330px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,children:/*#__PURE__*/_jsx(Container,{className:\"framer-9z014x-container\",nodeId:\"OK0gtiE1C\",scopeId:\"jkgbHAJKQ\",children:/*#__PURE__*/_jsx(KeyFeature,{height:\"100%\",id:\"OK0gtiE1C\",jDsZGkkfz:toString(fetchResult3[0]),layoutId:\"OK0gtiE1C\",style:{width:\"100%\"},variant:\"NiGXN_tRs\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Fetcher,{requests:[{cacheDuration:0,credentials:\"same-origin\",errorFallbackValue:\"Error\",fallbackValue:\"loading...\",resultKeyPath:\"5.name\",resultOutputType:\"string\",url:`https://xxeal5.buildship.run/amenities?id=${gDXROzUHK}`}],children:fetchResult4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kOaX8FoK_:{width:\"330px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,children:/*#__PURE__*/_jsx(Container,{className:\"framer-y0u0x8-container\",nodeId:\"W47BPOU7q\",scopeId:\"jkgbHAJKQ\",children:/*#__PURE__*/_jsx(KeyFeature,{height:\"100%\",id:\"W47BPOU7q\",jDsZGkkfz:toString(fetchResult4[0]),layoutId:\"W47BPOU7q\",style:{width:\"100%\"},variant:\"NiGXN_tRs\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Fetcher,{requests:[{cacheDuration:0,credentials:\"same-origin\",errorFallbackValue:\"Error\",fallbackValue:\"loading...\",resultKeyPath:\"6.name\",resultOutputType:\"string\",url:`https://xxeal5.buildship.run/amenities?id=${gDXROzUHK}`}],children:fetchResult5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kOaX8FoK_:{width:\"330px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bxo8pn-container\",nodeId:\"RU4BqQ9qp\",scopeId:\"jkgbHAJKQ\",children:/*#__PURE__*/_jsx(KeyFeature,{height:\"100%\",id:\"RU4BqQ9qp\",jDsZGkkfz:toString(fetchResult5[0]),layoutId:\"RU4BqQ9qp\",style:{width:\"100%\"},variant:\"zhIiF9KGm\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Fetcher,{requests:[{cacheDuration:0,credentials:\"same-origin\",errorFallbackValue:\"Error\",fallbackValue:\"loading...\",resultKeyPath:\"7.name\",resultOutputType:\"string\",url:`https://xxeal5.buildship.run/amenities?id=${gDXROzUHK}`}],children:fetchResult6=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kOaX8FoK_:{width:\"330px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,children:/*#__PURE__*/_jsx(Container,{className:\"framer-d2gq3s-container\",nodeId:\"DGznhywYZ\",scopeId:\"jkgbHAJKQ\",children:/*#__PURE__*/_jsx(KeyFeature,{height:\"100%\",id:\"DGznhywYZ\",jDsZGkkfz:toString(fetchResult6[0]),layoutId:\"DGznhywYZ\",style:{width:\"100%\"},variant:\"SY6xPb59v\",width:\"100%\"})})})})})]})]})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a0m97l\",\"data-border\":true,\"data-framer-name\":\"Large Map\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-r8y80b\",\"data-framer-name\":\"description\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-qrpho1\",\"data-styles-preset\":\"X7ylXautb\",children:\"Apartment Location\"})}),className:\"framer-zetb9q\",\"data-framer-name\":\"Apartment Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yr4xqu-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"pFgKq6bO3\",scopeId:\"jkgbHAJKQ\",children:/*#__PURE__*/_jsx(GoogleMaps,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,coordinates:tG4oh0DaF,height:\"100%\",id:\"pFgKq6bO3\",isMixedBorderRadius:false,layoutId:\"pFgKq6bO3\",style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,width:\"100%\",zoom:14})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yzetf0\",\"data-border\":true,\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c43rb1\",\"data-framer-name\":\"Text Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-y4yd6i\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-f336c8\",\"data-styles-preset\":\"yywTLQrM9\",children:\"Inquire About this\"})}),className:\"framer-1g9acqu\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VXJiYW5pc3QtNjAw\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Apartment\"})}),className:\"framer-b1wyvt\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Urbanist-600\"],text:kv6I7Y0A2,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-lrm6yi\",\"data-styles-preset\":\"WdLuzRwdy\",children:\"Interested in this property? Fill out the form below, and our real estate experts will get back to you with more details, including scheduling a viewing and answering any questions you may have.\"})}),className:\"framer-adtgmd\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kOaX8FoK_:{width:\"330px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:966,children:/*#__PURE__*/_jsx(Container,{className:\"framer-efpmye-container\",nodeId:\"SnvTMEgZO\",scopeId:\"jkgbHAJKQ\",children:/*#__PURE__*/_jsx(InquireForPropertyForm,{C7wI_c1Gn:gDXROzUHK,e5w2mXqK4:V_8Vv4Aky,FoQfNY33Y:Gz0bKJrzQ,height:\"100%\",id:\"SnvTMEgZO\",iE7Wh0rXc:riI1kOXpY,layoutId:\"SnvTMEgZO\",style:{width:\"100%\"},variant:\"XN49KAo1E\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1oa1urz\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-e0o80s-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"URkqpFSjw\",scopeId:\"jkgbHAJKQ\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:16,fadeObject:{fadeAlpha:.65,fadeContent:true,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:33},gap:10,height:\"100%\",id:\"URkqpFSjw\",layoutId:\"URkqpFSjw\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"var(--token-441e6b96-cded-437c-bbd4-5862cce7caef, rgb(182, 158, 94))\",dotsGap:10,dotsInset:10,dotSize:4,dotsOpacity:.5,dotsPadding:6,dotsRadius:50,showProgressDots:true,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"stretch\",widthColumns:2,widthInset:0,widthType:\"stretch\"},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1200,pixelWidth:906,sizes:\"800px\",...toResponsiveImage(rSzbFRjGf)},className:\"framer-1o0rgsl\",\"data-framer-name\":\"image 1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1200,pixelWidth:960,sizes:\"800px\",...toResponsiveImage(hgC_h60j9)},className:\"framer-xm5oy4\",\"data-framer-name\":\"image 2\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1200,pixelWidth:960,sizes:\"800px\",...toResponsiveImage(LIgomMNCR)},className:\"framer-tbketu\",\"data-framer-name\":\"image 3\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1200,pixelWidth:673,sizes:\"800px\",...toResponsiveImage(YzTwhwbax)},className:\"framer-6kyi91\",\"data-framer-name\":\"image 4\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1200,pixelWidth:673,sizes:\"800px\",...toResponsiveImage(ffgWqkvKe)},className:\"framer-6juuwn\",\"data-framer-name\":\"image 5\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1200,pixelWidth:673,sizes:\"800px\",...toResponsiveImage(fObtImQGi)},className:\"framer-tfbvd6\",\"data-framer-name\":\"image 6\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1200,pixelWidth:673,sizes:\"800px\",...toResponsiveImage(m5W4ecJ2A)},className:\"framer-1jl2r9i\",\"data-framer-name\":\"image 7\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1200,pixelWidth:673,sizes:\"800px\",...toResponsiveImage(Xlb45JdAD)},className:\"framer-lktnie\",\"data-framer-name\":\"image 8\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1200,pixelWidth:673,sizes:\"800px\",...toResponsiveImage(IGyWjeSrF)},className:\"framer-he8wjd\",\"data-framer-name\":\"image 9\"})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jjy7i3 hidden-ffgcnf\",\"data-framer-name\":\"menu\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mmz5w6\",\"data-framer-name\":\"Banner\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t0dbic\",\"data-framer-name\":\"Text Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-lrm6yi\",\"data-styles-preset\":\"WdLuzRwdy\",children:\"Price\"})}),className:\"framer-pww0hx\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s6ugpb\",children:[visible&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-zxfyg1\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7VXJiYW5pc3Qtc2VtaWJvbGQ=\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(230, 230, 230))\"},children:\"AED\\xa07,599,999\"})}),className:\"framer-1kin5b7\",\"data-framer-name\":\"price\",fonts:[\"FS;Urbanist-semibold\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true})}),visible1&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-154u4sj\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-f336c8\",\"data-styles-preset\":\"yywTLQrM9\",children:\"AED\\xa0102,256\"})}),className:\"framer-jhr5lo\",\"data-framer-name\":\"price\",fonts:[\"Inter\"],text:textContent1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7VXJiYW5pc3Qtc2VtaWJvbGQ=\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(230, 230, 230))\"},children:\"/\"})}),className:\"framer-vdmi6q\",\"data-framer-name\":\"price\",fonts:[\"FS;Urbanist-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-f336c8\",\"data-styles-preset\":\"yywTLQrM9\",children:\"year\"})}),className:\"framer-dded1w\",\"data-framer-name\":\"price\",fonts:[\"Inter\"],text:EJE2EKsVw,verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bx9e2f\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"40px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gi7t46-container\",nodeId:\"fHAYeAlKx\",scopeId:\"jkgbHAJKQ\",children:/*#__PURE__*/_jsx(IconButtonLink,{height:\"100%\",id:\"fHAYeAlKx\",L1CHGKmch:\"tel:+971527390836\",layoutId:\"fHAYeAlKx\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vn0pke-container\",isAuthoredByUser:true,nodeId:\"ljE3EU7Lr\",scopeId:\"jkgbHAJKQ\",children:/*#__PURE__*/_jsx(Dynamic_icon_link,{buttonImage:\"https://framerusercontent.com/images/ZTQSB65gEkzLfBKbs710KCmlys.png\",city:V_8Vv4Aky,community:riI1kOXpY,height:\"100%\",id:\"ljE3EU7Lr\",layoutId:\"ljE3EU7Lr\",phoneNumber:\"971527390836\",propertyId:gDXROzUHK,style:{height:\"100%\",width:\"100%\"},subCommunity:Gz0bKJrzQ,width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cd60vk\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1t1qt0m-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"F5pAaFuvf\",scopeId:\"jkgbHAJKQ\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"var(--token-d877da4c-001e-4298-9b19-d68799a1cefa, rgba(143, 127, 83, 0.4))\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:16,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:10,height:\"100%\",id:\"F5pAaFuvf\",layoutId:\"F5pAaFuvf\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"stretch\",widthColumns:2,widthInset:0,widthType:\"stretch\"},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1200,pixelWidth:906,sizes:\"800px\",...toResponsiveImage(rSzbFRjGf)},className:\"framer-1o0rgsl\",\"data-framer-name\":\"image 1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1200,pixelWidth:960,sizes:\"800px\",...toResponsiveImage(hgC_h60j9)},className:\"framer-xm5oy4\",\"data-framer-name\":\"image 2\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1200,pixelWidth:960,sizes:\"800px\",...toResponsiveImage(LIgomMNCR)},className:\"framer-tbketu\",\"data-framer-name\":\"image 3\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1200,pixelWidth:673,sizes:\"800px\",...toResponsiveImage(YzTwhwbax)},className:\"framer-6kyi91\",\"data-framer-name\":\"image 4\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1200,pixelWidth:673,sizes:\"800px\",...toResponsiveImage(ffgWqkvKe)},className:\"framer-6juuwn\",\"data-framer-name\":\"image 5\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1200,pixelWidth:673,sizes:\"800px\",...toResponsiveImage(fObtImQGi)},className:\"framer-tfbvd6\",\"data-framer-name\":\"image 6\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1200,pixelWidth:673,sizes:\"800px\",...toResponsiveImage(m5W4ecJ2A)},className:\"framer-1jl2r9i\",\"data-framer-name\":\"image 7\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1200,pixelWidth:673,sizes:\"800px\",...toResponsiveImage(Xlb45JdAD)},className:\"framer-lktnie\",\"data-framer-name\":\"image 8\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1200,pixelWidth:673,sizes:\"800px\",...toResponsiveImage(IGyWjeSrF)},className:\"framer-he8wjd\",\"data-framer-name\":\"image 9\"})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-140mdfz\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lswmzs\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rlx4gg\",\"data-framer-name\":\"Top Titles\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yv5xj9\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-199w4lq\",\"data-styles-preset\":\"N_lPEgiD9\",style:{\"--framer-text-alignment\":\"left\"},children:\"Prime Downtown Location | Fully Fitted | AED 102,256\"})}),className:\"framer-1wb7w3k\",\"data-framer-name\":\"Well Furnished Apartment\",fonts:[\"Inter\"],text:fovXL8TyE,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b2zugw\",children:[visible2&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1unx3kp\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-znltd1\",\"data-styles-preset\":\"qvAaSoY3f\",children:\"M Hotel Downtown by Millennium\"})}),className:\"framer-44xlzj\",\"data-framer-name\":\"100 Smart Street, LA, USA\",fonts:[\"Inter\"],text:Gz0bKJrzQ,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(230, 230, 230))\"},children:\",\"})}),className:\"framer-9apv03\",\"data-framer-name\":\"100 Smart Street, LA, USA\",fonts:[\"GF;Montserrat-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),visible3&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x65l90\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-znltd1\",\"data-styles-preset\":\"qvAaSoY3f\",children:\"Business Bay\"})}),className:\"framer-12jaz3o\",\"data-framer-name\":\"100 Smart Street, LA, USA\",fonts:[\"Inter\"],text:riI1kOXpY,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(230, 230, 230))\"},children:\",\"})}),className:\"framer-119f3o3\",\"data-framer-name\":\"100 Smart Street, LA, USA\",fonts:[\"GF;Montserrat-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-znltd1\",\"data-styles-preset\":\"qvAaSoY3f\",children:\"Dubai\"})}),className:\"framer-x870si\",\"data-framer-name\":\"100 Smart Street, LA, USA\",fonts:[\"Inter\"],text:V_8Vv4Aky,verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1knhkfr\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1btolo2\",\"data-border\":true,\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fmn3n7\",\"data-border\":true,\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-24wycl\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1iep4mz\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9eouzw\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:128,pixelWidth:128,src:\"https://framerusercontent.com/images/9cgrPTjOC3gc29U2ymIS1s6qNY0.png\"},className:\"framer-8nhicx\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-163z7x8\",\"data-styles-preset\":\"h6mDQwmL_\",children:\"Bedrooms\"})}),className:\"framer-1hiawq0\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-21qy83\",children:[visible4&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-f336c8\",\"data-styles-preset\":\"yywTLQrM9\",children:\"0\"})}),className:\"framer-14392u8\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],text:textContent2,verticalAlignment:\"top\",withExternalLayout:true}),visible5&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VXJiYW5pc3QtNjAw\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Studio\"})}),className:\"framer-18hfbj0\",\"data-framer-name\":\"Text\",fonts:[\"GF;Urbanist-600\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-5iah3h\",\"data-framer-name\":\"Line\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:61,intrinsicWidth:3,svg:'<svg width=\"3\" height=\"61\" viewBox=\"-1 -1 3 61\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.5\" y1=\"2.18557e-08\" x2=\"0.499997\" y2=\"59\" stroke=\"#262626\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-170sojn\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yufp80\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:128,pixelWidth:128,src:\"https://framerusercontent.com/images/Iagusu7ObMTmEMjZKwYDBc2EFs.png\"},className:\"framer-k9hzn6\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-163z7x8\",\"data-styles-preset\":\"h6mDQwmL_\",children:\"Bathrooms\"})}),className:\"framer-3ztc13\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-f336c8\",\"data-styles-preset\":\"yywTLQrM9\",children:\"0\"})}),className:\"framer-1337t0i\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],text:textContent3,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1m9k252\",\"data-framer-name\":\"Line\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:61,intrinsicWidth:3,svg:'<svg width=\"3\" height=\"61\" viewBox=\"-1 -1 3 61\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.5\" y1=\"2.18557e-08\" x2=\"0.499997\" y2=\"59\" stroke=\"#262626\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bks2g2\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-155falg\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:128,pixelWidth:128,src:\"https://framerusercontent.com/images/oG96oFU8JXpwDnMGqgp0cLKHuE.png\"},className:\"framer-16h7fui\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-163z7x8\",\"data-styles-preset\":\"h6mDQwmL_\",children:\"Area\"})}),className:\"framer-12ck7e9\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ppusp1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-f336c8\",\"data-styles-preset\":\"yywTLQrM9\",children:\"538.19\"})}),className:\"framer-19s5lmt\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],text:textContent4,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-f336c8\",\"data-styles-preset\":\"yywTLQrM9\",children:\"Square Feet\"})}),className:\"framer-cdiutf\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jxgleu\",\"data-framer-name\":\"Text Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yMD1aUvmB:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:358,width:`calc(max(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px, 1px) - 80px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ltwf7c-container\",nodeId:\"MfQG4yUFJ\",scopeId:\"jkgbHAJKQ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yMD1aUvmB:{variant:\"EMaXo_odS\"}},children:/*#__PURE__*/_jsx(ExpandableTextSection,{height:\"100%\",id:\"MfQG4yUFJ\",layoutId:\"MfQG4yUFJ\",qLOeDv7fD:xxg8YrrgA,style:{width:\"100%\"},variant:\"Q72wyT1j0\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-199w4lq\",\"data-styles-preset\":\"N_lPEgiD9\",style:{\"--framer-text-alignment\":\"left\"},children:\"Description\"})}),className:\"framer-19crtec\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8loidu\",\"data-border\":true,\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1966sp2\",\"data-framer-name\":\"Text Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-199w4lq\",\"data-styles-preset\":\"N_lPEgiD9\",style:{\"--framer-text-alignment\":\"left\"},children:\"RERA Listing Number\"})}),className:\"framer-1rpyftt\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-c0pqjt\",\"data-border\":true,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-lrm6yi\",\"data-styles-preset\":\"WdLuzRwdy\",style:{\"--framer-text-color\":\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(230, 230, 230))\"},children:\"7117594220\"})}),className:\"framer-et8rv6\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],text:textContent5,verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kyaem5\",\"data-border\":true,\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-199w4lq\",\"data-styles-preset\":\"N_lPEgiD9\",children:\"Key Features and Amenities\"})}),className:\"framer-17z4dqe\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17d2pxs\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsx(Fetcher,{requests:[{cacheDuration:0,credentials:\"same-origin\",errorFallbackValue:\"Error\",fallbackValue:\"loading...\",resultKeyPath:\"0.name\",resultOutputType:\"string\",url:`https://xxeal5.buildship.run/amenities?id=${gDXROzUHK}`}],children:fetchResult7=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yMD1aUvmB:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,width:`calc(max(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px, 1px) - 80px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-6g75i0-container\",nodeId:\"tAqPI4N7v\",scopeId:\"jkgbHAJKQ\",children:/*#__PURE__*/_jsx(KeyFeature,{height:\"100%\",id:\"tAqPI4N7v\",jDsZGkkfz:toString(fetchResult7[0]),layoutId:\"tAqPI4N7v\",style:{width:\"100%\"},variant:\"SY6xPb59v\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Fetcher,{requests:[{cacheDuration:0,credentials:\"same-origin\",errorFallbackValue:\"Error\",fallbackValue:\"loading...\",resultKeyPath:\"1.name\",resultOutputType:\"string\",url:`https://xxeal5.buildship.run/amenities?id=${gDXROzUHK}`}],children:fetchResult8=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yMD1aUvmB:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,width:`calc(max(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px, 1px) - 80px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-m895fe-container\",nodeId:\"pcB1GWie3\",scopeId:\"jkgbHAJKQ\",children:/*#__PURE__*/_jsx(KeyFeature,{height:\"100%\",id:\"pcB1GWie3\",jDsZGkkfz:toString(fetchResult8[0]),layoutId:\"pcB1GWie3\",style:{width:\"100%\"},variant:\"NiGXN_tRs\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Fetcher,{requests:[{cacheDuration:0,credentials:\"same-origin\",errorFallbackValue:\"Error\",fallbackValue:\"loading...\",resultKeyPath:\"3.name\",resultOutputType:\"string\",url:`https://xxeal5.buildship.run/amenities?id=${gDXROzUHK}`}],children:fetchResult9=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yMD1aUvmB:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,width:`calc(max(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px, 1px) - 80px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-131yb23-container\",nodeId:\"Y8YkRcDdf\",scopeId:\"jkgbHAJKQ\",children:/*#__PURE__*/_jsx(KeyFeature,{height:\"100%\",id:\"Y8YkRcDdf\",jDsZGkkfz:toString(fetchResult9[0]),layoutId:\"Y8YkRcDdf\",style:{width:\"100%\"},variant:\"zhIiF9KGm\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Fetcher,{requests:[{cacheDuration:0,credentials:\"same-origin\",errorFallbackValue:\"Error\",fallbackValue:\"loading...\",resultKeyPath:\"4.name\",resultOutputType:\"string\",url:`https://xxeal5.buildship.run/amenities?id=${gDXROzUHK}`}],children:fetchResult10=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yMD1aUvmB:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,width:`calc(max(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px, 1px) - 80px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-19v849i-container\",nodeId:\"trWEjkGPP\",scopeId:\"jkgbHAJKQ\",children:/*#__PURE__*/_jsx(KeyFeature,{height:\"100%\",id:\"trWEjkGPP\",jDsZGkkfz:toString(fetchResult10[0]),layoutId:\"trWEjkGPP\",style:{width:\"100%\"},variant:\"NiGXN_tRs\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Fetcher,{requests:[{cacheDuration:0,credentials:\"same-origin\",errorFallbackValue:\"Error\",fallbackValue:\"loading...\",resultKeyPath:\"5.name\",resultOutputType:\"string\",url:`https://xxeal5.buildship.run/amenities?id=${gDXROzUHK}`}],children:fetchResult11=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yMD1aUvmB:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,width:`calc(max(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px, 1px) - 80px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-i9r7xc-container\",nodeId:\"f7QzBwrES\",scopeId:\"jkgbHAJKQ\",children:/*#__PURE__*/_jsx(KeyFeature,{height:\"100%\",id:\"f7QzBwrES\",jDsZGkkfz:toString(fetchResult11[0]),layoutId:\"f7QzBwrES\",style:{width:\"100%\"},variant:\"NiGXN_tRs\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Fetcher,{requests:[{cacheDuration:0,credentials:\"same-origin\",errorFallbackValue:\"Error\",fallbackValue:\"loading...\",resultKeyPath:\"6.name\",resultOutputType:\"string\",url:`https://xxeal5.buildship.run/amenities?id=${gDXROzUHK}`}],children:fetchResult12=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yMD1aUvmB:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,width:`calc(max(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px, 1px) - 80px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uayq0m-container\",nodeId:\"Haqrm10OG\",scopeId:\"jkgbHAJKQ\",children:/*#__PURE__*/_jsx(KeyFeature,{height:\"100%\",id:\"Haqrm10OG\",jDsZGkkfz:toString(fetchResult12[0]),layoutId:\"Haqrm10OG\",style:{width:\"100%\"},variant:\"zhIiF9KGm\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Fetcher,{requests:[{cacheDuration:0,credentials:\"same-origin\",errorFallbackValue:\"Error\",fallbackValue:\"loading...\",resultKeyPath:\"7.name\",resultOutputType:\"string\",url:`https://xxeal5.buildship.run/amenities?id=${gDXROzUHK}`}],children:fetchResult13=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yMD1aUvmB:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,width:`calc(max(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px, 1px) - 80px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-mm5h22-container\",nodeId:\"iuYwO1OSC\",scopeId:\"jkgbHAJKQ\",children:/*#__PURE__*/_jsx(KeyFeature,{height:\"100%\",id:\"iuYwO1OSC\",jDsZGkkfz:toString(fetchResult13[0]),layoutId:\"iuYwO1OSC\",style:{width:\"100%\"},variant:\"SY6xPb59v\",width:\"100%\"})})})})})]})]})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16i0bif\",\"data-border\":true,\"data-framer-name\":\"Large Map\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1swec9l\",\"data-framer-name\":\"description\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yMD1aUvmB:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7VXJiYW5pc3QtYm9sZA==\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(230, 230, 230))\"},children:\"Description\"})}),fonts:[\"FS;Urbanist-bold\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-199w4lq\",\"data-styles-preset\":\"N_lPEgiD9\",children:\"Apartment Location\"})}),className:\"framer-1gk33ac\",\"data-framer-name\":\"Apartment Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-aocd2n-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"g8vZ3UopN\",scopeId:\"jkgbHAJKQ\",children:/*#__PURE__*/_jsx(GoogleMaps,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,coordinates:tG4oh0DaF,height:\"100%\",id:\"g8vZ3UopN\",isMixedBorderRadius:false,layoutId:\"g8vZ3UopN\",style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,width:\"100%\",zoom:14})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tq8v2h\",\"data-border\":true,\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gxnt7b\",\"data-framer-name\":\"Text Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ur3dqt\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yMD1aUvmB:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VXJiYW5pc3QtNjAw\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Inquire About this \"})}),fonts:[\"GF;Urbanist-600\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-199w4lq\",\"data-styles-preset\":\"N_lPEgiD9\",style:{\"--framer-text-alignment\":\"left\"},children:\"Inquire About this\"})}),className:\"framer-jiay06\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-199w4lq\",\"data-styles-preset\":\"N_lPEgiD9\",style:{\"--framer-text-alignment\":\"left\"},children:\"Office Space\"})}),className:\"framer-157qvr8\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],text:kv6I7Y0A2,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-lrm6yi\",\"data-styles-preset\":\"WdLuzRwdy\",children:\"Interested in this property? Fill out the form below, and our real estate experts will get back to you with more details, including scheduling a viewing and answering any questions you may have.\"})}),className:\"framer-1adofh\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yMD1aUvmB:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:966,width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 120px) * 0.6 - 34px, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bafnwb-container\",nodeId:\"YdHqdsMh1\",scopeId:\"jkgbHAJKQ\",children:/*#__PURE__*/_jsx(InquireForPropertyForm,{C7wI_c1Gn:gDXROzUHK,e5w2mXqK4:V_8Vv4Aky,FoQfNY33Y:Gz0bKJrzQ,height:\"100%\",id:\"YdHqdsMh1\",iE7Wh0rXc:riI1kOXpY,layoutId:\"YdHqdsMh1\",style:{width:\"100%\"},variant:\"ufLksuYIe\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-o4bvbh\",\"data-framer-name\":\"Latest properties\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2ripg9\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-g3ax4f\",\"data-framer-name\":\"heading + location\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5vl2dv\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i0ja48\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-199w4lq\",\"data-styles-preset\":\"N_lPEgiD9\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-441e6b96-cded-437c-bbd4-5862cce7caef, rgb(182, 158, 94))\"},children:\"Business Bay\"})}),className:\"framer-34kawg\",\"data-framer-name\":\"Guide to Our Marketing Process\",fonts:[\"Inter\"],text:riI1kOXpY,verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-199w4lq\",\"data-styles-preset\":\"N_lPEgiD9\",children:\"Office Space\"})}),className:\"framer-1lucas1\",\"data-framer-name\":\"Guide to Our Marketing Process\",fonts:[\"Inter\"],text:kv6I7Y0A2,verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-199w4lq\",\"data-styles-preset\":\"N_lPEgiD9\",style:{\"--framer-text-alignment\":\"left\"},children:\"For Sale\"})}),className:\"framer-1abqxp\",\"data-framer-name\":\"Guide to Our Marketing Process\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"luU6Z7VA_\"},implicitPathVariables:undefined},{href:{webPageId:\"luU6Z7VA_\"},implicitPathVariables:undefined},{href:{webPageId:\"luU6Z7VA_\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yMD1aUvmB:{width:\"169px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:57,width:\"200px\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yMD1aUvmB:{__targetOpacity:.87}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-z2m30d-container\",nodeId:\"pVC54NZov\",rendersWithMotion:true,scopeId:\"jkgbHAJKQ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LKjezwvNE:{ovlJVBqUg:resolvedLinks[2]},yMD1aUvmB:{ovlJVBqUg:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"pVC54NZov\",iejb8yWnj:\"View all Properties\",layoutId:\"pVC54NZov\",ovlJVBqUg:resolvedLinks[0],style:{width:\"100%\"},variant:\"OLk37zJLK\",whsoPXfNt:\"8px\",width:\"100%\"})})})})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k05rfs\",\"data-framer-name\":\"Home Featured properties container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-3e38ug\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1e02xcr\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kOaX8FoK_:{query:{from:{alias:\"iFEOq3izs\",data:PropertiesPropertyFinder,type:\"Collection\"},limit:{type:\"LiteralValue\",value:6},offset:{type:\"LiteralValue\",value:5},select:[{collection:\"iFEOq3izs\",name:\"b89Nm6zLn\",type:\"Identifier\"},{collection:\"iFEOq3izs\",name:\"fovXL8TyE\",type:\"Identifier\"},{collection:\"iFEOq3izs\",name:\"LIgomMNCR\",type:\"Identifier\"},{collection:\"iFEOq3izs\",name:\"riI1kOXpY\",type:\"Identifier\"},{collection:\"iFEOq3izs\",name:\"V_8Vv4Aky\",type:\"Identifier\"},{collection:\"iFEOq3izs\",name:\"kv6I7Y0A2\",type:\"Identifier\"},{collection:\"iFEOq3izs\",name:\"DZujJi4uU\",type:\"Identifier\"},{collection:\"iFEOq3izs\",name:\"vJThjf2f1\",type:\"Identifier\"},{collection:\"iFEOq3izs\",name:\"WTi9F9bsu\",type:\"Identifier\"},{collection:\"iFEOq3izs\",name:\"SgNqcmdV7\",type:\"Identifier\"},{collection:\"iFEOq3izs\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{collection:\"iFEOq3izs\",name:\"SgNqcmdV7\",type:\"Identifier\"},operator:\">\",right:{type:\"LiteralValue\",value:0},type:\"BinaryOperation\"},operator:\"and\",right:{left:{left:{collection:\"iFEOq3izs\",name:\"Hw6tGQmwb\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:null},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"iFEOq3izs\",name:\"Hw6tGQmwb\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}},LKjezwvNE:{query:{from:{alias:\"iFEOq3izs\",data:PropertiesPropertyFinder,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},offset:{type:\"LiteralValue\",value:5},select:[{collection:\"iFEOq3izs\",name:\"b89Nm6zLn\",type:\"Identifier\"},{collection:\"iFEOq3izs\",name:\"fovXL8TyE\",type:\"Identifier\"},{collection:\"iFEOq3izs\",name:\"LIgomMNCR\",type:\"Identifier\"},{collection:\"iFEOq3izs\",name:\"riI1kOXpY\",type:\"Identifier\"},{collection:\"iFEOq3izs\",name:\"V_8Vv4Aky\",type:\"Identifier\"},{collection:\"iFEOq3izs\",name:\"kv6I7Y0A2\",type:\"Identifier\"},{collection:\"iFEOq3izs\",name:\"DZujJi4uU\",type:\"Identifier\"},{collection:\"iFEOq3izs\",name:\"vJThjf2f1\",type:\"Identifier\"},{collection:\"iFEOq3izs\",name:\"WTi9F9bsu\",type:\"Identifier\"},{collection:\"iFEOq3izs\",name:\"SgNqcmdV7\",type:\"Identifier\"},{collection:\"iFEOq3izs\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{collection:\"iFEOq3izs\",name:\"SgNqcmdV7\",type:\"Identifier\"},operator:\">\",right:{type:\"LiteralValue\",value:0},type:\"BinaryOperation\"},operator:\"and\",right:{left:{left:{collection:\"iFEOq3izs\",name:\"Hw6tGQmwb\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:null},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"iFEOq3izs\",name:\"Hw6tGQmwb\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}},yMD1aUvmB:{query:{from:{alias:\"iFEOq3izs\",data:PropertiesPropertyFinder,type:\"Collection\"},limit:{type:\"LiteralValue\",value:6},offset:{type:\"LiteralValue\",value:5},select:[{collection:\"iFEOq3izs\",name:\"b89Nm6zLn\",type:\"Identifier\"},{collection:\"iFEOq3izs\",name:\"fovXL8TyE\",type:\"Identifier\"},{collection:\"iFEOq3izs\",name:\"LIgomMNCR\",type:\"Identifier\"},{collection:\"iFEOq3izs\",name:\"riI1kOXpY\",type:\"Identifier\"},{collection:\"iFEOq3izs\",name:\"V_8Vv4Aky\",type:\"Identifier\"},{collection:\"iFEOq3izs\",name:\"kv6I7Y0A2\",type:\"Identifier\"},{collection:\"iFEOq3izs\",name:\"DZujJi4uU\",type:\"Identifier\"},{collection:\"iFEOq3izs\",name:\"vJThjf2f1\",type:\"Identifier\"},{collection:\"iFEOq3izs\",name:\"WTi9F9bsu\",type:\"Identifier\"},{collection:\"iFEOq3izs\",name:\"SgNqcmdV7\",type:\"Identifier\"},{collection:\"iFEOq3izs\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{collection:\"iFEOq3izs\",name:\"SgNqcmdV7\",type:\"Identifier\"},operator:\">\",right:{type:\"LiteralValue\",value:0},type:\"BinaryOperation\"},operator:\"and\",right:{left:{left:{collection:\"iFEOq3izs\",name:\"Hw6tGQmwb\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:null},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"iFEOq3izs\",name:\"Hw6tGQmwb\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}}},children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"iFEOq3izs\",data:PropertiesPropertyFinder,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},offset:{type:\"LiteralValue\",value:5},select:[{collection:\"iFEOq3izs\",name:\"b89Nm6zLn\",type:\"Identifier\"},{collection:\"iFEOq3izs\",name:\"fovXL8TyE\",type:\"Identifier\"},{collection:\"iFEOq3izs\",name:\"LIgomMNCR\",type:\"Identifier\"},{collection:\"iFEOq3izs\",name:\"riI1kOXpY\",type:\"Identifier\"},{collection:\"iFEOq3izs\",name:\"V_8Vv4Aky\",type:\"Identifier\"},{collection:\"iFEOq3izs\",name:\"kv6I7Y0A2\",type:\"Identifier\"},{collection:\"iFEOq3izs\",name:\"DZujJi4uU\",type:\"Identifier\"},{collection:\"iFEOq3izs\",name:\"vJThjf2f1\",type:\"Identifier\"},{collection:\"iFEOq3izs\",name:\"WTi9F9bsu\",type:\"Identifier\"},{collection:\"iFEOq3izs\",name:\"SgNqcmdV7\",type:\"Identifier\"},{collection:\"iFEOq3izs\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{collection:\"iFEOq3izs\",name:\"SgNqcmdV7\",type:\"Identifier\"},operator:\">\",right:{type:\"LiteralValue\",value:0},type:\"BinaryOperation\"},operator:\"and\",right:{left:{left:{collection:\"iFEOq3izs\",name:\"Hw6tGQmwb\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:null},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"iFEOq3izs\",name:\"Hw6tGQmwb\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({b89Nm6zLn:b89Nm6zLniFEOq3izs,DZujJi4uU:DZujJi4uUiFEOq3izs,fovXL8TyE:fovXL8TyEiFEOq3izs,id:idiFEOq3izs,kv6I7Y0A2:kv6I7Y0A2iFEOq3izs,LIgomMNCR:LIgomMNCRiFEOq3izs,riI1kOXpY:riI1kOXpYiFEOq3izs,SgNqcmdV7:SgNqcmdV7iFEOq3izs,V_8Vv4Aky:V_8Vv4AkyiFEOq3izs,vJThjf2f1:vJThjf2f1iFEOq3izs,WTi9F9bsu:WTi9F9bsuiFEOq3izs},index)=>{b89Nm6zLniFEOq3izs??=\"\";fovXL8TyEiFEOq3izs??=\"\";riI1kOXpYiFEOq3izs??=\"\";V_8Vv4AkyiFEOq3izs??=\"\";kv6I7Y0A2iFEOq3izs??=\"\";DZujJi4uUiFEOq3izs??=0;vJThjf2f1iFEOq3izs??=0;WTi9F9bsuiFEOq3izs??=0;SgNqcmdV7iFEOq3izs??=0;return /*#__PURE__*/_jsx(LayoutGroup,{id:`iFEOq3izs-${idiFEOq3izs}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{b89Nm6zLn:b89Nm6zLniFEOq3izs},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{b89Nm6zLn:b89Nm6zLniFEOq3izs},webPageId:\"jkgbHAJKQ\"},motionChild:true,nodeId:\"jt7Qu3vbo\",scopeId:\"jkgbHAJKQ\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-obc5fc framer-bagu1b\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LKjezwvNE:{width:`max((max(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1300px) - 88px) / 4, 50px)`},yMD1aUvmB:{width:\"357px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:494,width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 152px) / 3, 50px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1n16jso-container\",nodeId:\"LIN10ipEK\",rendersWithMotion:true,scopeId:\"jkgbHAJKQ\",children:/*#__PURE__*/_jsx(ProcessCard,{aZjENQa2w:riI1kOXpYiFEOq3izs,Cc5P4BNMz:V_8Vv4AkyiFEOq3izs,dqTaJmhNO:toString(vJThjf2f1iFEOq3izs),gy4TtVoqD:toResponsiveImage(LIgomMNCRiFEOq3izs),height:\"100%\",id:\"LIN10ipEK\",layoutId:\"LIN10ipEK\",LpjdPHqsW:numberToString(DZujJi4uUiFEOq3izs,{locale:\"\",notation:\"standard\",style:\"decimal\"},activeLocaleCode),NltlZruIW:kv6I7Y0A2iFEOq3izs,sGqvtPPuv:fovXL8TyEiFEOq3izs,style:{width:\"100%\"},tvfHQp1LW:toString(WTi9F9bsuiFEOq3izs),v_cULN5bM:SgNqcmdV7iFEOq3izs,variant:\"znBUtL1eW\",width:\"100%\"})})})})})})})},idiFEOq3izs);})})})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:57,width:\"222px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lh1q9a-container hidden-1bp9myx\",nodeId:\"CneRtWbJ0\",scopeId:\"jkgbHAJKQ\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"CneRtWbJ0\",iejb8yWnj:\"Next\",layoutId:\"CneRtWbJ0\",style:{width:\"100%\"},variant:\"OLk37zJLK\",whsoPXfNt:\"10px\",width:\"100%\"})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16nei5f\",\"data-framer-name\":\"Latest properties\",id:elementId1,ref:ref2,children:visible6&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cfkgj9\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-uzw2jt\",\"data-framer-name\":\"heading + location\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1an0srz\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rxsgtk\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-199w4lq\",\"data-styles-preset\":\"N_lPEgiD9\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-441e6b96-cded-437c-bbd4-5862cce7caef, rgb(182, 158, 94))\"},children:\"Business Bay\"})}),className:\"framer-1xza9sf\",\"data-framer-name\":\"Guide to Our Marketing Process\",fonts:[\"Inter\"],text:riI1kOXpY,verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-199w4lq\",\"data-styles-preset\":\"N_lPEgiD9\",children:\"Office Space\"})}),className:\"framer-kvezo6\",\"data-framer-name\":\"Guide to Our Marketing Process\",fonts:[\"Inter\"],text:kv6I7Y0A2,verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-199w4lq\",\"data-styles-preset\":\"N_lPEgiD9\",style:{\"--framer-text-alignment\":\"left\"},children:\"For Rent\"})}),className:\"framer-117qclj\",\"data-framer-name\":\"Guide to Our Marketing Process\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"LR7hA9Fk0\"},implicitPathVariables:undefined},{href:{webPageId:\"LR7hA9Fk0\"},implicitPathVariables:undefined},{href:{webPageId:\"LR7hA9Fk0\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yMD1aUvmB:{width:\"169px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:57,width:\"200px\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1pc944n-container\",nodeId:\"rhXF8F_EG\",rendersWithMotion:true,scopeId:\"jkgbHAJKQ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LKjezwvNE:{ovlJVBqUg:resolvedLinks1[2]},yMD1aUvmB:{ovlJVBqUg:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"rhXF8F_EG\",iejb8yWnj:\"View all Properties\",layoutId:\"rhXF8F_EG\",ovlJVBqUg:resolvedLinks1[0],style:{width:\"100%\"},variant:\"OLk37zJLK\",whsoPXfNt:\"8px\",width:\"100%\"})})})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qru9vg\",\"data-framer-name\":\"Home Featured properties container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-if1g0i\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kOaX8FoK_:{query:{from:{alias:\"RJH6t3DbR\",data:PropertiesPropertyFinder,type:\"Collection\"},limit:{type:\"LiteralValue\",value:6},offset:{type:\"LiteralValue\",value:5},select:[{collection:\"RJH6t3DbR\",name:\"b89Nm6zLn\",type:\"Identifier\"},{collection:\"RJH6t3DbR\",name:\"fovXL8TyE\",type:\"Identifier\"},{collection:\"RJH6t3DbR\",name:\"LIgomMNCR\",type:\"Identifier\"},{collection:\"RJH6t3DbR\",name:\"riI1kOXpY\",type:\"Identifier\"},{collection:\"RJH6t3DbR\",name:\"V_8Vv4Aky\",type:\"Identifier\"},{collection:\"RJH6t3DbR\",name:\"kv6I7Y0A2\",type:\"Identifier\"},{collection:\"RJH6t3DbR\",name:\"DZujJi4uU\",type:\"Identifier\"},{collection:\"RJH6t3DbR\",name:\"vJThjf2f1\",type:\"Identifier\"},{collection:\"RJH6t3DbR\",name:\"WTi9F9bsu\",type:\"Identifier\"},{collection:\"RJH6t3DbR\",name:\"uAY_aW64Z\",type:\"Identifier\"},{collection:\"RJH6t3DbR\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{collection:\"RJH6t3DbR\",name:\"uAY_aW64Z\",type:\"Identifier\"},operator:\">\",right:{type:\"LiteralValue\",value:0},type:\"BinaryOperation\"},operator:\"and\",right:{left:{left:{collection:\"RJH6t3DbR\",name:\"Hw6tGQmwb\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:null},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"RJH6t3DbR\",name:\"Hw6tGQmwb\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}},LKjezwvNE:{query:{from:{alias:\"RJH6t3DbR\",data:PropertiesPropertyFinder,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},offset:{type:\"LiteralValue\",value:5},select:[{collection:\"RJH6t3DbR\",name:\"b89Nm6zLn\",type:\"Identifier\"},{collection:\"RJH6t3DbR\",name:\"fovXL8TyE\",type:\"Identifier\"},{collection:\"RJH6t3DbR\",name:\"LIgomMNCR\",type:\"Identifier\"},{collection:\"RJH6t3DbR\",name:\"riI1kOXpY\",type:\"Identifier\"},{collection:\"RJH6t3DbR\",name:\"V_8Vv4Aky\",type:\"Identifier\"},{collection:\"RJH6t3DbR\",name:\"kv6I7Y0A2\",type:\"Identifier\"},{collection:\"RJH6t3DbR\",name:\"DZujJi4uU\",type:\"Identifier\"},{collection:\"RJH6t3DbR\",name:\"vJThjf2f1\",type:\"Identifier\"},{collection:\"RJH6t3DbR\",name:\"WTi9F9bsu\",type:\"Identifier\"},{collection:\"RJH6t3DbR\",name:\"uAY_aW64Z\",type:\"Identifier\"},{collection:\"RJH6t3DbR\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{collection:\"RJH6t3DbR\",name:\"uAY_aW64Z\",type:\"Identifier\"},operator:\">\",right:{type:\"LiteralValue\",value:0},type:\"BinaryOperation\"},operator:\"and\",right:{left:{left:{collection:\"RJH6t3DbR\",name:\"Hw6tGQmwb\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:null},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"RJH6t3DbR\",name:\"Hw6tGQmwb\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}},yMD1aUvmB:{query:{from:{alias:\"RJH6t3DbR\",data:PropertiesPropertyFinder,type:\"Collection\"},limit:{type:\"LiteralValue\",value:6},offset:{type:\"LiteralValue\",value:5},select:[{collection:\"RJH6t3DbR\",name:\"b89Nm6zLn\",type:\"Identifier\"},{collection:\"RJH6t3DbR\",name:\"fovXL8TyE\",type:\"Identifier\"},{collection:\"RJH6t3DbR\",name:\"LIgomMNCR\",type:\"Identifier\"},{collection:\"RJH6t3DbR\",name:\"riI1kOXpY\",type:\"Identifier\"},{collection:\"RJH6t3DbR\",name:\"V_8Vv4Aky\",type:\"Identifier\"},{collection:\"RJH6t3DbR\",name:\"kv6I7Y0A2\",type:\"Identifier\"},{collection:\"RJH6t3DbR\",name:\"DZujJi4uU\",type:\"Identifier\"},{collection:\"RJH6t3DbR\",name:\"vJThjf2f1\",type:\"Identifier\"},{collection:\"RJH6t3DbR\",name:\"WTi9F9bsu\",type:\"Identifier\"},{collection:\"RJH6t3DbR\",name:\"uAY_aW64Z\",type:\"Identifier\"},{collection:\"RJH6t3DbR\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{collection:\"RJH6t3DbR\",name:\"uAY_aW64Z\",type:\"Identifier\"},operator:\">\",right:{type:\"LiteralValue\",value:0},type:\"BinaryOperation\"},operator:\"and\",right:{left:{left:{collection:\"RJH6t3DbR\",name:\"Hw6tGQmwb\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:null},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"RJH6t3DbR\",name:\"Hw6tGQmwb\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}}},children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"RJH6t3DbR\",data:PropertiesPropertyFinder,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},offset:{type:\"LiteralValue\",value:5},select:[{collection:\"RJH6t3DbR\",name:\"b89Nm6zLn\",type:\"Identifier\"},{collection:\"RJH6t3DbR\",name:\"fovXL8TyE\",type:\"Identifier\"},{collection:\"RJH6t3DbR\",name:\"LIgomMNCR\",type:\"Identifier\"},{collection:\"RJH6t3DbR\",name:\"riI1kOXpY\",type:\"Identifier\"},{collection:\"RJH6t3DbR\",name:\"V_8Vv4Aky\",type:\"Identifier\"},{collection:\"RJH6t3DbR\",name:\"kv6I7Y0A2\",type:\"Identifier\"},{collection:\"RJH6t3DbR\",name:\"DZujJi4uU\",type:\"Identifier\"},{collection:\"RJH6t3DbR\",name:\"vJThjf2f1\",type:\"Identifier\"},{collection:\"RJH6t3DbR\",name:\"WTi9F9bsu\",type:\"Identifier\"},{collection:\"RJH6t3DbR\",name:\"uAY_aW64Z\",type:\"Identifier\"},{collection:\"RJH6t3DbR\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{collection:\"RJH6t3DbR\",name:\"uAY_aW64Z\",type:\"Identifier\"},operator:\">\",right:{type:\"LiteralValue\",value:0},type:\"BinaryOperation\"},operator:\"and\",right:{left:{left:{collection:\"RJH6t3DbR\",name:\"Hw6tGQmwb\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:null},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"RJH6t3DbR\",name:\"Hw6tGQmwb\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({b89Nm6zLn:b89Nm6zLnRJH6t3DbR,DZujJi4uU:DZujJi4uURJH6t3DbR,fovXL8TyE:fovXL8TyERJH6t3DbR,id:idRJH6t3DbR,kv6I7Y0A2:kv6I7Y0A2RJH6t3DbR,LIgomMNCR:LIgomMNCRRJH6t3DbR,riI1kOXpY:riI1kOXpYRJH6t3DbR,uAY_aW64Z:uAY_aW64ZRJH6t3DbR,V_8Vv4Aky:V_8Vv4AkyRJH6t3DbR,vJThjf2f1:vJThjf2f1RJH6t3DbR,WTi9F9bsu:WTi9F9bsuRJH6t3DbR},index1)=>{b89Nm6zLnRJH6t3DbR??=\"\";fovXL8TyERJH6t3DbR??=\"\";riI1kOXpYRJH6t3DbR??=\"\";V_8Vv4AkyRJH6t3DbR??=\"\";kv6I7Y0A2RJH6t3DbR??=\"\";DZujJi4uURJH6t3DbR??=0;vJThjf2f1RJH6t3DbR??=0;WTi9F9bsuRJH6t3DbR??=0;uAY_aW64ZRJH6t3DbR??=0;return /*#__PURE__*/_jsx(LayoutGroup,{id:`RJH6t3DbR-${idRJH6t3DbR}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{b89Nm6zLn:b89Nm6zLnRJH6t3DbR},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{b89Nm6zLn:b89Nm6zLnRJH6t3DbR},webPageId:\"jkgbHAJKQ\"},motionChild:true,nodeId:\"o2ROiFYW4\",scopeId:\"jkgbHAJKQ\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-aivejr framer-bagu1b\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LKjezwvNE:{width:`max((max(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px, 1300px) - 88px) / 4, 50px)`},yMD1aUvmB:{width:\"357px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:494,width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 152px) / 3, 50px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-5wcbhl-container\",nodeId:\"wxnGJ_T6J\",rendersWithMotion:true,scopeId:\"jkgbHAJKQ\",children:/*#__PURE__*/_jsx(ProcessCard,{aZjENQa2w:riI1kOXpYRJH6t3DbR,Cc5P4BNMz:V_8Vv4AkyRJH6t3DbR,dqTaJmhNO:toString(vJThjf2f1RJH6t3DbR),gy4TtVoqD:toResponsiveImage(LIgomMNCRRJH6t3DbR),height:\"100%\",id:\"wxnGJ_T6J\",layoutId:\"wxnGJ_T6J\",LpjdPHqsW:toString(DZujJi4uURJH6t3DbR),NltlZruIW:kv6I7Y0A2RJH6t3DbR,sGqvtPPuv:fovXL8TyERJH6t3DbR,style:{width:\"100%\"},tvfHQp1LW:toString(WTi9F9bsuRJH6t3DbR),v_cULN5bM:uAY_aW64ZRJH6t3DbR,variant:\"znBUtL1eW\",width:\"100%\"})})})})})})})},idRJH6t3DbR);})})})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:57,width:\"222px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qb0d3o-container hidden-1bp9myx\",nodeId:\"adxlnKnpk\",scopeId:\"jkgbHAJKQ\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"adxlnKnpk\",iejb8yWnj:\"Next\",layoutId:\"adxlnKnpk\",style:{width:\"100%\"},variant:\"OLk37zJLK\",whsoPXfNt:\"10px\",width:\"100%\"})})})]})]})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1051,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-orxo3n-container\",nodeId:\"N2vG4swcqu39z7nN_C\",scopeId:\"jkgbHAJKQ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kOaX8FoK_:{variant:\"OE4fKaA14\"},yMD1aUvmB:{variant:\"LUcecYIHZ\"}},children:/*#__PURE__*/_jsx(Footer01,{height:\"100%\",id:\"N2vG4swcqu39z7nN_C\",kJioNOIcr:b89Nm6zLn,layoutId:\"N2vG4swcqu39z7nN_C\",style:{width:\"100%\"},variant:\"vAuQ97LzG\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-WhOmA.framer-bagu1b, .framer-WhOmA .framer-bagu1b { display: block; }\",\".framer-WhOmA.framer-jks6dt { align-content: center; align-items: center; background-color: var(--token-6486a9ac-e9e8-4ced-becb-afb4c654ba35, #0a0a0a); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 150px 0px 0px 0px; position: relative; width: 1200px; }\",\".framer-WhOmA .framer-158q4ud { --border-bottom-width: 1px; --border-color: var(--token-d877da4c-001e-4298-9b19-d68799a1cefa, rgba(143, 127, 83, 0.4)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-9e4d3cd9-c6a1-4d3f-93c0-3bd54ca04155, #1b1b1b); bottom: 0px; box-shadow: 0px -0.3010936508871964px 0.2107655556210375px -1.1666666666666665px rgba(255, 255, 255, 0.11), 0px -1.1442666516217286px 0.80098665613521px -2.333333333333333px rgba(255, 255, 255, 0.1), 0px -5px 3.5px -3.5px rgba(255, 255, 255, 0.05); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 70px; justify-content: space-between; left: calc(50.00000000000002% - 100% / 2); overflow: visible; padding: 0px 20px 0px 20px; position: fixed; width: 100%; z-index: 1; }\",\".framer-WhOmA .framer-10m5zua, .framer-WhOmA .framer-1jav1zz, .framer-WhOmA .framer-t0dbic { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-WhOmA .framer-gmmhbn, .framer-WhOmA .framer-1t6t452, .framer-WhOmA .framer-pww0hx { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 97px; word-break: break-word; word-wrap: break-word; }\",\".framer-WhOmA .framer-1b1mh74, .framer-WhOmA .framer-1l0ad4i, .framer-WhOmA .framer-1s6ugpb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 202%; }\",\".framer-WhOmA .framer-1pr6cdb, .framer-WhOmA .framer-17bei4b, .framer-WhOmA .framer-zxfyg1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 60%; z-index: 0; }\",\".framer-WhOmA .framer-m7roj1, .framer-WhOmA .framer-1gmixf9, .framer-WhOmA .framer-18oagam, .framer-WhOmA .framer-1za6i0, .framer-WhOmA .framer-184s1cm, .framer-WhOmA .framer-687jps, .framer-WhOmA .framer-2hbwvj, .framer-WhOmA .framer-1om7uxc, .framer-WhOmA .framer-1kin5b7, .framer-WhOmA .framer-jhr5lo, .framer-WhOmA .framer-vdmi6q, .framer-WhOmA .framer-dded1w { --framer-paragraph-spacing: 0px; flex: none; height: 27px; position: relative; white-space: pre; width: auto; }\",\".framer-WhOmA .framer-1iqj3w1, .framer-WhOmA .framer-6oex70, .framer-WhOmA .framer-154u4sj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 60%; z-index: 0; }\",\".framer-WhOmA .framer-uw0a7j, .framer-WhOmA .framer-mx3m0t, .framer-WhOmA .framer-bx9e2f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-WhOmA .framer-s4iext-container, .framer-WhOmA .framer-1szkcx3-container, .framer-WhOmA .framer-lxhd9h-container, .framer-WhOmA .framer-c4gor4-container, .framer-WhOmA .framer-1gi7t46-container, .framer-WhOmA .framer-1vn0pke-container { flex: none; height: 40px; position: relative; width: 40px; }\",\".framer-WhOmA .framer-1jyedf8-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 1; }\",\".framer-WhOmA .framer-u02h9g { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 19px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px 10px 0px 10px; position: relative; width: 390px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-WhOmA .framer-1c9h2mt, .framer-WhOmA .framer-1mmz5w6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 97%; }\",\".framer-WhOmA .framer-1v3fgbx-container { flex: none; height: 357px; position: relative; width: 100%; }\",\".framer-WhOmA .framer-1qm80rv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 100%; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-WhOmA .framer-lqf8lj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-WhOmA .framer-1f7wqg9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 10px; position: relative; width: 100%; }\",\".framer-WhOmA .framer-f01j, .framer-WhOmA .framer-yv5xj9 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-WhOmA .framer-1quk3rp, .framer-WhOmA .framer-1g9acqu, .framer-WhOmA .framer-b1wyvt, .framer-WhOmA .framer-adtgmd, .framer-WhOmA .framer-1wb7w3k, .framer-WhOmA .framer-jiay06, .framer-WhOmA .framer-157qvr8, .framer-WhOmA .framer-1adofh { --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-WhOmA .framer-57y1wf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-WhOmA .framer-1x4hlck, .framer-WhOmA .framer-1x01u1e, .framer-WhOmA .framer-1unx3kp, .framer-WhOmA .framer-1x65l90 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-WhOmA .framer-k6z9o, .framer-WhOmA .framer-aw1ri1, .framer-WhOmA .framer-17skual, .framer-WhOmA .framer-muh75k, .framer-WhOmA .framer-rbff67, .framer-WhOmA .framer-44xlzj, .framer-WhOmA .framer-9apv03, .framer-WhOmA .framer-12jaz3o, .framer-WhOmA .framer-119f3o3, .framer-WhOmA .framer-x870si { --framer-paragraph-spacing: 0px; flex: none; height: 25px; position: relative; white-space: pre; width: auto; }\",\".framer-WhOmA .framer-1h9nlsr, .framer-WhOmA .framer-1ri5fzd, .framer-WhOmA .framer-17d2pxs { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-WhOmA .framer-qltugk, .framer-WhOmA .framer-4wwh5u { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 3px; position: relative; width: 100%; }\",\".framer-WhOmA .framer-pgx9bf { --border-bottom-width: 0px; --border-color: #262626; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-WhOmA .framer-vfe75g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 141px; }\",\".framer-WhOmA .framer-avh9rk, .framer-WhOmA .framer-1iep4mz, .framer-WhOmA .framer-170sojn, .framer-WhOmA .framer-bks2g2 { 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: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-WhOmA .framer-1x83ca4 { 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; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-WhOmA .framer-1gs691g, .framer-WhOmA .framer-1dxvqva, .framer-WhOmA .framer-w4veis, .framer-WhOmA .framer-8nhicx, .framer-WhOmA .framer-k9hzn6, .framer-WhOmA .framer-16h7fui { flex: none; height: 21px; position: relative; width: 20px; }\",\".framer-WhOmA .framer-1g5cfkr, .framer-WhOmA .framer-u7hwzu, .framer-WhOmA .framer-1hiawq0, .framer-WhOmA .framer-3ztc13, .framer-WhOmA .framer-12ck7e9 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 146px; word-break: break-word; word-wrap: break-word; }\",\".framer-WhOmA .framer-1xa4wxc, .framer-WhOmA .framer-1b2zugw, .framer-WhOmA .framer-21qy83 { 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-WhOmA .framer-1076rju, .framer-WhOmA .framer-74w9z7, .framer-WhOmA .framer-x3hgzp, .framer-WhOmA .framer-c0r4d1, .framer-WhOmA .framer-okd9xt, .framer-WhOmA .framer-kgzj26, .framer-WhOmA .framer-14392u8, .framer-WhOmA .framer-18hfbj0, .framer-WhOmA .framer-19s5lmt, .framer-WhOmA .framer-cdiutf, .framer-WhOmA .framer-1gk33ac, .framer-WhOmA .framer-1lucas1, .framer-WhOmA .framer-1abqxp, .framer-WhOmA .framer-1xza9sf, .framer-WhOmA .framer-kvezo6, .framer-WhOmA .framer-117qclj { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-WhOmA .framer-pnmp3u, .framer-WhOmA .framer-5iah3h, .framer-WhOmA .framer-1m9k252 { flex: none; height: 61px; position: relative; width: 3px; }\",\".framer-WhOmA .framer-i6az8s { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: 60px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 157px; }\",\".framer-WhOmA .framer-1rxex5c { 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; overflow: visible; padding: 0px; position: relative; width: 27px; }\",\".framer-WhOmA .framer-z1om4g { 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: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-WhOmA .framer-2ec7t1 { 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; overflow: visible; padding: 0px; position: relative; width: 77px; }\",\".framer-WhOmA .framer-qvrppl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-WhOmA .framer-13c6xan, .framer-WhOmA .framer-1oaac99, .framer-WhOmA .framer-jxgleu, .framer-WhOmA .framer-1966sp2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-WhOmA .framer-60p4jt, .framer-WhOmA .framer-bkggmr, .framer-WhOmA .framer-1bzz6e7, .framer-WhOmA .framer-19crtec, .framer-WhOmA .framer-1rpyftt, .framer-WhOmA .framer-17z4dqe { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 550px; word-break: break-word; word-wrap: break-word; }\",\".framer-WhOmA .framer-l1nut5-container, .framer-WhOmA .framer-1xb8r4b-container, .framer-WhOmA .framer-1vbipnc-container, .framer-WhOmA .framer-9ajwvx-container, .framer-WhOmA .framer-9z014x-container, .framer-WhOmA .framer-y0u0x8-container, .framer-WhOmA .framer-1bxo8pn-container, .framer-WhOmA .framer-d2gq3s-container, .framer-WhOmA .framer-efpmye-container, .framer-WhOmA .framer-ltwf7c-container, .framer-WhOmA .framer-6g75i0-container, .framer-WhOmA .framer-m895fe-container, .framer-WhOmA .framer-131yb23-container, .framer-WhOmA .framer-19v849i-container, .framer-WhOmA .framer-i9r7xc-container, .framer-WhOmA .framer-1uayq0m-container, .framer-WhOmA .framer-mm5h22-container, .framer-WhOmA .framer-1n16jso-container, .framer-WhOmA .framer-5wcbhl-container, .framer-WhOmA .framer-orxo3n-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-WhOmA .framer-60tcsq, .framer-WhOmA .framer-c0pqjt { --border-bottom-width: 1px; --border-color: var(--token-18488be5-3648-4d98-b1e8-94881ff0fb68, rgba(51, 51, 51, 0.48)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 20px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-WhOmA .framer-1gqn3vv, .framer-WhOmA .framer-et8rv6 { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-WhOmA .framer-1d95x0o { --border-bottom-width: 1px; --border-color: #262626; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px; position: relative; width: 100%; }\",\".framer-WhOmA .framer-a0m97l { --border-bottom-width: 1px; --border-color: var(--token-18488be5-3648-4d98-b1e8-94881ff0fb68, rgba(51, 51, 51, 0.48)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 426px; justify-content: center; padding: 20px; position: relative; width: 100%; }\",\".framer-WhOmA .framer-r8y80b, .framer-WhOmA .framer-1swec9l { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-WhOmA .framer-zetb9q { --framer-paragraph-spacing: 0px; flex: none; height: 29px; position: relative; white-space: pre-wrap; width: 363px; word-break: break-word; word-wrap: break-word; }\",\".framer-WhOmA .framer-1yr4xqu-container, .framer-WhOmA .framer-e0o80s-container, .framer-WhOmA .framer-1t1qt0m-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-WhOmA .framer-1yzetf0 { --border-bottom-width: 1px; --border-color: var(--token-18488be5-3648-4d98-b1e8-94881ff0fb68, rgba(51, 51, 51, 0.48)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 33px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px; position: relative; width: 100%; }\",\".framer-WhOmA .framer-1c43rb1 { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-WhOmA .framer-y4yd6i, .framer-WhOmA .framer-ur3dqt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-WhOmA .framer-1oa1urz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 260px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-WhOmA .framer-1o0rgsl { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; height: 541px; position: relative; width: 800px; }\",\".framer-WhOmA .framer-xm5oy4, .framer-WhOmA .framer-tbketu, .framer-WhOmA .framer-6kyi91, .framer-WhOmA .framer-6juuwn, .framer-WhOmA .framer-tfbvd6, .framer-WhOmA .framer-1jl2r9i, .framer-WhOmA .framer-lktnie, .framer-WhOmA .framer-he8wjd { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; height: 540px; position: relative; width: 800px; }\",\".framer-WhOmA .framer-jjy7i3 { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px 20px 0px 20px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-WhOmA .framer-1cd60vk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 800px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-WhOmA .framer-140mdfz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 100%; overflow: hidden; padding: 40px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-WhOmA .framer-lswmzs { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-WhOmA .framer-1rlx4gg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 97px; justify-content: space-between; overflow: hidden; padding: 10px; position: relative; width: 100%; }\",\".framer-WhOmA .framer-1knhkfr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-WhOmA .framer-1btolo2, .framer-WhOmA .framer-8loidu { --border-bottom-width: 1px; --border-color: var(--token-18488be5-3648-4d98-b1e8-94881ff0fb68, rgba(181, 158, 94, 0.48)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 40px; position: relative; width: 100%; }\",\".framer-WhOmA .framer-1fmn3n7 { --border-bottom-width: 0px; --border-color: #262626; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-WhOmA .framer-24wycl { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-WhOmA .framer-9eouzw, .framer-WhOmA .framer-yufp80, .framer-WhOmA .framer-155falg { 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; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-WhOmA .framer-1337t0i { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 170px; word-break: break-word; word-wrap: break-word; }\",\".framer-WhOmA .framer-ppusp1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-WhOmA .framer-1kyaem5 { --border-bottom-width: 1px; --border-color: #262626; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 40px; position: relative; width: 100%; }\",\".framer-WhOmA .framer-16i0bif { --border-bottom-width: 1px; --border-color: var(--token-18488be5-3648-4d98-b1e8-94881ff0fb68, rgba(51, 51, 51, 0.48)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 40px; position: relative; width: 100%; }\",\".framer-WhOmA .framer-aocd2n-container { flex: none; height: 307px; position: relative; width: 100%; }\",\".framer-WhOmA .framer-1tq8v2h { --border-bottom-width: 1px; --border-color: var(--token-18488be5-3648-4d98-b1e8-94881ff0fb68, rgba(51, 51, 51, 0.48)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 34px; height: min-content; justify-content: flex-start; overflow: visible; padding: 40px; position: relative; width: 100%; }\",\".framer-WhOmA .framer-gxnt7b { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 40%; }\",\".framer-WhOmA .framer-1bafnwb-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-WhOmA .framer-o4bvbh, .framer-WhOmA .framer-16nei5f { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-WhOmA .framer-2ripg9, .framer-WhOmA .framer-1cfkgj9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-WhOmA .framer-g3ax4f, .framer-WhOmA .framer-uzw2jt { 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 20px 0px 20px; position: relative; width: 100%; }\",\".framer-WhOmA .framer-5vl2dv, .framer-WhOmA .framer-1an0srz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-WhOmA .framer-i0ja48, .framer-WhOmA .framer-rxsgtk { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-WhOmA .framer-34kawg { --framer-paragraph-spacing: 0px; flex: none; height: 39px; position: relative; white-space: pre-wrap; width: 240px; word-break: break-word; word-wrap: break-word; }\",\".framer-WhOmA .framer-z2m30d-container, .framer-WhOmA .framer-1pc944n-container { flex: none; height: auto; position: relative; width: 200px; }\",\".framer-WhOmA .framer-1k05rfs, .framer-WhOmA .framer-qru9vg { align-content: flex-end; align-items: flex-end; background-color: var(--token-6486a9ac-e9e8-4ced-becb-afb4c654ba35, #1b1b1b); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 20px; position: relative; width: 100%; }\",\".framer-WhOmA .framer-3e38ug { background-color: #99eeff; flex: none; height: 1px; overflow: hidden; position: relative; width: 1px; }\",\".framer-WhOmA .framer-1e02xcr, .framer-WhOmA .framer-if1g0i { display: grid; flex: none; gap: 16px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(50px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-WhOmA .framer-obc5fc, .framer-WhOmA .framer-aivejr { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 40px; height: 100%; justify-content: flex-start; justify-self: start; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-WhOmA .framer-1lh1q9a-container, .framer-WhOmA .framer-1qb0d3o-container { flex: none; height: auto; position: relative; width: 222px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,'.framer-WhOmA[data-border=\"true\"]::after, .framer-WhOmA [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-WhOmA.framer-jks6dt { width: 810px; } .framer-WhOmA .framer-1jyedf8-container { order: 1; } .framer-WhOmA .framer-jjy7i3 { order: 2; } .framer-WhOmA .framer-1mmz5w6 { order: 0; } .framer-WhOmA .framer-1cd60vk { height: 540px; order: 2; } .framer-WhOmA .framer-140mdfz { flex-direction: column; order: 3; } .framer-WhOmA .framer-lswmzs { flex: none; order: 0; width: 100%; } .framer-WhOmA .framer-16i0bif { order: 4; } .framer-WhOmA .framer-1tq8v2h { flex-direction: column; order: 5; } .framer-WhOmA .framer-gxnt7b { width: 100%; } .framer-WhOmA .framer-ur3dqt { flex-direction: row; justify-content: flex-start; } .framer-WhOmA .framer-jiay06, .framer-WhOmA .framer-157qvr8 { white-space: pre; width: auto; } .framer-WhOmA .framer-1bafnwb-container { flex: none; width: 100%; } .framer-WhOmA .framer-o4bvbh { order: 6; overflow: hidden; } .framer-WhOmA .framer-34kawg { height: auto; white-space: pre; width: auto; } .framer-WhOmA .framer-z2m30d-container { opacity: 0.87; width: 169px; } .framer-WhOmA .framer-1k05rfs, .framer-WhOmA .framer-qru9vg { width: 770px; } .framer-WhOmA .framer-1e02xcr, .framer-WhOmA .framer-if1g0i { grid-template-columns: repeat(2, minmax(50px, 1fr)); } .framer-WhOmA .framer-1n16jso-container, .framer-WhOmA .framer-5wcbhl-container { flex: 1 0 0px; width: 1px; } .framer-WhOmA .framer-16nei5f { order: 7; overflow: hidden; } .framer-WhOmA .framer-1pc944n-container { width: 169px; } .framer-WhOmA .framer-orxo3n-container { order: 5; }}\",\"@media (max-width: 809px) { .framer-WhOmA.framer-jks6dt { padding: 150px 0px 65px 0px; width: 390px; } .framer-WhOmA .framer-1c9h2mt { order: 0; } .framer-WhOmA .framer-1qm80rv { order: 3; } .framer-WhOmA .framer-a0m97l { order: 4; } .framer-WhOmA .framer-1yzetf0 { order: 5; } .framer-WhOmA .framer-1oa1urz { order: 2; }}\",\"@media (min-width: 1406px) { .framer-WhOmA.framer-jks6dt { width: 1406px; } .framer-WhOmA .framer-1jyedf8-container { order: 1; } .framer-WhOmA .framer-jjy7i3 { order: 3; } .framer-WhOmA .framer-g3ax4f, .framer-WhOmA .framer-uzw2jt { order: 0; } .framer-WhOmA .framer-1k05rfs, .framer-WhOmA .framer-qru9vg { min-width: 1300px; order: 1; } .framer-WhOmA .framer-1e02xcr, .framer-WhOmA .framer-if1g0i { grid-template-columns: repeat(4, minmax(50px, 1fr)); } .framer-WhOmA .framer-1n16jso-container, .framer-WhOmA .framer-5wcbhl-container { flex: 1 0 0px; width: 1px; } .framer-WhOmA .framer-orxo3n-container { order: 5; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6984\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"yMD1aUvmB\":{\"layout\":[\"fixed\",\"auto\"]},\"kOaX8FoK_\":{\"layout\":[\"fixed\",\"auto\"]},\"LKjezwvNE\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"jPPn9ktY9\":{\"pattern\":\":jPPn9ktY9\",\"name\":\"trigger-process\"},\"sjJ1NsN9M\":{\"pattern\":\":sjJ1NsN9M\",\"name\":\"trigger-process\"}}\n * @framerResponsiveScreen\n */const FramerjkgbHAJKQ=withCSS(Component,css,\"framer-WhOmA\");export default FramerjkgbHAJKQ;FramerjkgbHAJKQ.displayName=\"Page\";FramerjkgbHAJKQ.defaultProps={height:6984,width:1200};addFonts(FramerjkgbHAJKQ,[{explicitInter:true,fonts:[{family:\"Urbanist\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/urbanist/v15/L0xjDF02iFML4hGCyOCpRdycFsGxSrqD-R4fE5OrS8SlKw.woff2\",weight:\"500\"},{family:\"Urbanist\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NWFQAWEPGN3FR4FYMX6PY5M2HVOQSZWU/IIWY67X24KIURE4HBNGWYFMHSEMIVC2G/QAJFELFQRETRXRXDQOALZZUXNPM2U5VX.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://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:\"Urbanist\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/RFRIJEFDDNYP2G3SPLVDDAM6LQXTHLSW/F4KOPAGTNOYCQKYEBAKSIKS536ETV6GN/AEP5JZTJJB3JMLBFSBTZLRSVGYD73SDZ.woff2\",weight:\"500\"},{family:\"Montserrat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v29/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Ew7Y3tcoqK5.woff2\",weight:\"500\"},{family:\"Urbanist\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/urbanist/v15/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDFRkfE5OrS8SlKw.woff2\",weight:\"600\"},{family:\"Urbanist\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/Y3L2ZYYP26QQ73LRHQEGMGHU7HLMLCIE/5WHYQ3VUOWNEN3Y7DIOEXY5R4W6MYIPF/SS2LIWIFT3QZUKOLJ7TGBEFWHF3TFYQD.woff2\",weight:\"700\"}]},...IconButtonLinkFonts,...Dynamic_icon_linkFonts,...TopbarFonts,...PropertyImageGalleryFonts,...ExpandableTextSectionFonts,...KeyFeatureFonts,...GoogleMapsFonts,...InquireForPropertyFormFonts,...CarouselFonts,...ButtonFonts,...ProcessCardFonts,...Footer01Fonts,...CursorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerjkgbHAJKQ\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"yMD1aUvmB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kOaX8FoK_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LKjezwvNE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicHeight\":\"6984\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerScrollSections\":\"{\\\"jPPn9ktY9\\\":{\\\"pattern\\\":\\\":jPPn9ktY9\\\",\\\"name\\\":\\\"trigger-process\\\"},\\\"sjJ1NsN9M\\\":{\\\"pattern\\\":\\\":sjJ1NsN9M\\\",\\\"name\\\":\\\"trigger-process\\\"}}\",\"framerResponsiveScreen\":\"\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["clamp", "e", "progress", "e", "calcMaskWidth", "inset", "width", "useIsMouse", "isMouseDevice", "setIsMouseDevice", "ye", "fe", "Z", "window", "checkLimit", "progress", "target", "edgeOpacity", "moreItems", "buttonRef", "transition", "animate", "useGUI", "initialMoreItems", "initialAlpha", "pe", "useMotionValue", "fadeOpacity", "useTransform", "buttonOpacity", "v", "pointerEvents", "cursor", "buttonStyle", "baseButtonStyles", "setAriaVisible", "element", "useScrollLimits", "container", "axis", "scrollInfo", "updateCurrentScroll", "targetScroll", "checkLimits", "measureItems", "ue", "stopScroll", "scroll", "info", "stopResize", "resize", "Carousel", "slots", "gap", "align", "sizingObject", "fadeObject", "arrowObject", "snapObject", "progressObject", "ariaLabel", "borderRadius", "effectsObject", "props", "filteredSlots", "numItems", "j", "isCanvas", "RenderTarget", "padding", "usePadding", "axisLabel", "fadeContent", "fadeWidth", "fadeInset", "fadeTransition", "fadeAlpha", "snap", "snapEdge", "fluid", "widthType", "widthInset", "widthColumns", "heightType", "heightInset", "heightRows", "showScrollbar", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowPadding", "currentScroll", "newScroll", "start", "end", "startMaskInset", "endMaskInset", "baseWidth", "startMaskWidth", "endMaskWidth", "direction", "mask", "latest", "carouselRef", "numPages", "setNumPages", "itemStyle", "childStyle", "scrollOverflow", "containerStyle", "baseContainerStyle", "carouselStyle", "baseCarouselStyle", "carouselA11y", "itemA11y", "itemSizes", "te", "targetLength", "containerLength", "scrollLength", "current", "i", "newNumPages", "findNextItem", "delta", "children", "scrollTarget", "item", "length", "threshold", "isReducedMotion", "useReducedMotion", "goto", "scrollTo", "options", "gotoPage", "page", "gotoDelta", "pageLength", "currentPage", "clamp", "p", "Placeholder", "dots", "dotsBlurStyle", "isSelected", "Dot", "dotStyle", "u", "motion", "child", "index", "_child_props", "q", "controlsStyles", "dotsContainerStyle", "MouseStyles", "addPropertyControls", "ControlType", "paddingControl", "selectedOpacity", "unselectedOpacity", "total", "opacity", "_scrollInfo_current", "_scrollInfo_current1", "minScroll", "maxScroll", "inlinePadding", "top", "bottom", "right", "left", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "baseContainerStyle", "baseCarouselStyle", "baseButtonStyles", "controlsStyles", "dotsContainerStyle", "dotStyle", "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", "name1", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "jDsZGkkfz", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "FramerAS9Q8qA07", "withCSS", "AS9Q8qA07_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "ThankYouNoteFonts", "getFonts", "PRewxZeRH_default", "ButtonCopyFonts", "KOVuQKfUs_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "formVariants", "form", "currentVariant", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "city", "community", "height", "id", "propertyId", "subCommunity", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "C7wI_c1Gn", "FoQfNY33Y", "iE7Wh0rXc", "e5w2mXqK4", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onSuccess1vtbes3", "args", "onSuccesscirguz", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "FormContainer", "formState", "u", "l", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "FormPlainTextInput2", "SVG", "Link", "css", "FramerBTTGHjpeT", "withCSS", "BTTGHjpeT_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "toResponsiveImage", "value", "transition1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "image", "link", "width", "props", "_ref", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "L1CHGKmch", "LEHI7lfAU", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "Image2", "cx", "serializationHash", "css", "FramerC2wjJPjkr", "withCSS", "C2wjJPjkr_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "plain", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "qLOeDv7fD", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapcfcwhc", "args", "onTap17b0txo", "onTap10065t9", "onTap4dtehl", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "css", "FramerhQO27tbpj", "withCSS", "hQO27tbpj_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "image1", "image2", "image3", "image4", "image5", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_humanReadableVariantMap_props_variant", "_ref5", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "KIdFZbFpS", "f1NIVGMR7", "CSJMaxJE9", "qTCmCEMLg", "raUN0gqyA", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1w9s960", "args", "onTap1gw8wyj", "onTap6o1ef4", "onTapt3tnkt", "onTap7tqq7y", "onTap1uh1hef", "onTap1yf1rjs", "onTap1ndgfta", "onTap18p630i", "onTapovdve6", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Image2", "getLoadingLazyAtYPosition", "css", "Framerp0MO9RQ_L", "withCSS", "p0MO9RQ_L_default", "addPropertyControls", "ControlType", "addFonts", "Dynamic_icon_link", "props", "phoneNumber", "subCommunity", "propertyId", "community", "city", "buttonImage", "width", "height", "inquiryText", "whatsappLink", "p", "addPropertyControls", "ControlType", "IconButtonLinkFonts", "getFonts", "C2wjJPjkr_default", "Dynamic_icon_linkFonts", "Dynamic_icon_link", "TopbarFonts", "MEfngGPVR_default", "PropertyImageGalleryFonts", "p0MO9RQ_L_default", "ExpandableTextSectionFonts", "hQO27tbpj_default", "KeyFeatureFonts", "AS9Q8qA07_default", "GoogleMapsFonts", "GoogleMaps", "InquireForPropertyFormFonts", "BTTGHjpeT_default", "CarouselFonts", "Carousel", "ButtonFonts", "GulOZoMnJ_default", "ContainerWithFX", "withFX", "Container", "ProcessCardFonts", "PCgd3WvOA_default", "Footer01Fonts", "TWlCA1Uhf_default", "CursorFonts", "t3kQNA4Z8_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "equals", "a", "b", "negate", "value", "numberToString", "options", "activeLocale", "fallbackLocale", "locale", "useGrouping", "notation", "compactDisplay", "style", "currency", "currencyDisplay", "unit", "unitDisplay", "minimumFractionDigits", "maximumFractionDigits", "minimumIntegerDigits", "formatOptions", "number", "toResponsiveImage", "isSet", "toString", "animation", "transition1", "animation1", "transition2", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "transition3", "cursor", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "sfD52ERFp_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "className", "layoutId", "variant", "SgNqcmdV7", "uAY_aW64Z", "EJE2EKsVw", "gDXROzUHK", "Gz0bKJrzQ", "riI1kOXpY", "V_8Vv4Aky", "rSzbFRjGf", "hgC_h60j9", "LIgomMNCR", "YzTwhwbax", "ffgWqkvKe", "fovXL8TyE", "WTi9F9bsu", "vJThjf2f1", "DZujJi4uU", "xxg8YrrgA", "tG4oh0DaF", "kv6I7Y0A2", "fObtImQGi", "m5W4ecJ2A", "Xlb45JdAD", "IGyWjeSrF", "ZU5OHb93M", "b89Nm6zLniFEOq3izs", "fovXL8TyEiFEOq3izs", "LIgomMNCRiFEOq3izs", "riI1kOXpYiFEOq3izs", "V_8Vv4AkyiFEOq3izs", "kv6I7Y0A2iFEOq3izs", "DZujJi4uUiFEOq3izs", "vJThjf2f1iFEOq3izs", "WTi9F9bsuiFEOq3izs", "SgNqcmdV7iFEOq3izs", "idiFEOq3izs", "b89Nm6zLnRJH6t3DbR", "fovXL8TyERJH6t3DbR", "LIgomMNCRRJH6t3DbR", "riI1kOXpYRJH6t3DbR", "V_8Vv4AkyRJH6t3DbR", "kv6I7Y0A2RJH6t3DbR", "DZujJi4uURJH6t3DbR", "vJThjf2f1RJH6t3DbR", "WTi9F9bsuRJH6t3DbR", "uAY_aW64ZRJH6t3DbR", "idRJH6t3DbR", "b89Nm6zLn", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "visible", "activeLocaleCode", "useLocaleCode", "textContent", "visible1", "textContent1", "isDisplayed1", "visible2", "visible3", "visible4", "textContent2", "visible5", "textContent3", "textContent4", "textContent5", "elementId", "useRouteElementId", "ref1", "router", "useRouter", "isDisplayed2", "elementId1", "ref2", "visible6", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "RichText2", "x", "PropertyOverrides2", "ComponentViewportProvider", "Image2", "SVG", "Fetcher", "fetchResult", "fetchResult1", "fetchResult2", "fetchResult3", "fetchResult4", "fetchResult5", "fetchResult6", "fetchResult7", "fetchResult8", "fetchResult9", "fetchResult10", "fetchResult11", "fetchResult12", "fetchResult13", "ResolveLinks", "resolvedLinks", "ChildrenCanSuspend", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "Link", "resolvedLinks1", "collection1", "paginationInfo1", "loadMore1", "index1", "css", "FramerjkgbHAJKQ", "withCSS", "jkgbHAJKQ_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
