{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/itgi9RK8CLwe9MFuhYeS/SlideShow.js", "ssg:https://framerusercontent.com/modules/rOHVL2RWANaaJxQY1bhs/q2Hs0yeyGUYgwryZbyrn/kW5QAP_yC.js"],
  "sourcesContent": ["import{useState,useEffect}from\"react\";export const isBrowser=()=>typeof document===\"object\";export function usePageVisibility(){if(!isBrowser())return;const[isVisible,setIsVisible]=useState(!document.hidden);useEffect(()=>{const onVisibilityChange=()=>setIsVisible(!document.hidden);document.addEventListener(\"visibilitychange\",onVisibilityChange,false);return()=>{document.removeEventListener(\"visibilitychange\",onVisibilityChange);};},[]);return isVisible;}\nexport const __FramerMetadata__ = {\"exports\":{\"isBrowser\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePageVisibility\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UsePageVisibility.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{resize}from\"@motionone/dom\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{animate,LayoutGroup,mix,motion,frame,useInView,useMotionValue,useTransform,wrap}from\"framer-motion\";import{Children,cloneElement,forwardRef,startTransition,useCallback,useEffect,useLayoutEffect,useMemo,useRef,useState}from\"react\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js\";// Using opacity: 0.001 instead of 0 as an LCP hack. (opacity: 0.001 is still 0\n// to a human eye but makes Google think the elements are visible)\nconst OPACITY_0=.001;function awaitRefCallback(element,controller){let refCallbackResolve;const refCallbackPromise=new Promise((resolve,reject)=>{refCallbackResolve=resolve;controller.signal.addEventListener(\"abort\",()=>reject);// resolve immediately if it exists\nconst current=element.current;if(current)resolve(current);}).catch(()=>{});// we need to listen to the ref setter, so let's override `current` - we can do that, because we don't use React's `useRef` hook for those refs.\nlet current=element.current;Object.defineProperty(element,\"current\",{get(){return current;},set(node){current=node;if(node===null){// React calls with null when the element is unmounted\ncontroller.abort();return;}refCallbackResolve(node);},configurable:true});return refCallbackPromise;}/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots,startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const hasChildren=Children.count(filteredSlots)>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return filteredSlots.map(index=>({current:null}));},[filteredSlots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null,viewportLength:null});/* For pausing on hover */const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */const dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{const firstChild=childrenRef[0].current;const lastChild=childrenRef[filteredSlots.length-1].current;if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=firstChild?isHorizontal?firstChild.offsetLeft:firstChild.offsetTop:0;const end=lastChild?isHorizontal?lastChild.offsetLeft+lastChild.offsetWidth:lastChild.offsetTop+lastChild.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=firstChild?isHorizontal?firstChild.offsetWidth:firstChild.offsetHeight:0;const itemWidth=firstChild?firstChild.offsetWidth:0;const itemHeight=firstChild?firstChild.offsetHeight:0;const viewportLength=isHorizontal?Math.max(document.documentElement.clientWidth||0,window.innerWidth||0,parentRef.current.offsetWidth):Math.max(document.documentElement.clientHeight||0,window.innerHeight||0,parentRef.current.offsetHeight);startTransition(()=>setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight,viewportLength}));}},[hasChildren]);const scheduleMeasure=useCallback(async()=>{const controller=new AbortController;/**\n         * The elements in the set are refs of children. If they're wrapped in Suspense, they could mount later than the parent.\n         * Thus, we wait for each ref to be set step by step if required.\n         */const firstChild=childrenRef[0];const lastChild=childrenRef[filteredSlots.length-1];if(!isCanvas&&(!firstChild.current||!lastChild.current))try{await Promise.all([awaitRefCallback(firstChild,controller),awaitRefCallback(lastChild,controller)]);}catch{controller.abort();}frame.read(measure);},[measure]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{if(hasChildren)scheduleMeasure();},[hasChildren,itemAmount]);/**\n     * Track whether this is the initial resize event. By default this will fire on mount,\n     * which we do in the useEffect. We should only fire it on subsequent resizes.\n     */const initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){scheduleMeasure();setIsResizing(true);}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>setIsResizing(false),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=filteredSlots?.length;const childrenSize=isCanvas?0:size?.children;const itemWithGap=size?.item+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);/* Check for browser window visibility *//* Otherwise, it will re-play all the item increments */const visibilityRef=useRef(null);const isInView=useInView(visibilityRef);const isVisible=usePageVisibility()&&isInView;const factor=isInverted?1:-1;/* The x and y values to start from */const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */const canvasPosition=isHorizontal?-startFrom*(size?.itemWidth+gap):-startFrom*(size?.itemHeight+gap);/* Calculate the new value to animate to */const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping *//* Instead of 0 to a negative full duplicated row, we start with an offset */const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point *//* The subtraction of a full row of children is for overflow */useLayoutEffect(()=>{if(size?.children===null)return;/* Initial measure */// if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     *//* Next and previous function, animates the X */const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover){timeoutRef.current=setTimeout(()=>{setCurrentItem(currentItem+1);switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=delta=>{if(!isInverted){setCurrentItem(currentItem+delta);}else{setCurrentItem(currentItem-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){setCurrentItem(currentItem+goto);}else{setCurrentItem(currentItem-gotoInverted);}};/**\n     * Drag\n     */const handleDragStart=()=>{setIsDragging(true);};const handleDragEnd=(event,{offset,velocity})=>{setIsDragging(false);const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200// Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch *//* For velocity use only */const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta);}if(isHalfOfPrev){setDelta(-itemDelta);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */let childCounter=0;/**\n     * Sizing\n     * */const columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */for(let index=0;index<duplicateBy;index++){dupedChildren.push(...Children.map(filteredSlots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===filteredSlots.length-1){ref=childrenRef[1];}return /*#__PURE__*/_jsx(Slide,{ref:childrenRef[childIndex],slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:filteredSlots?.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/**\n     * Dots\n     */const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<filteredSlots?.length;i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:size?.item!==null?1:OPACITY_0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();setIsMouseDown(true);},onMouseUp:()=>setIsMouseDown(false),ref:visibilityRef,children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/_jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?OPACITY_0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:OPACITY_0},transition:transitionControl,children:[/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});}/* Default Properties */Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover}}},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},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:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},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:-100,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:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component 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:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */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\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */const Slide=/*#__PURE__*/forwardRef(function Component(props,ref){const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;/**\n     * Unique offsets + scroll range [0, 1, 1, 0]\n     */const childOffset=(size?.item+gap)*childCounter;const scrollRange=[-size?.item,0,size?.parent-size?.item+gap,size?.parent].map(val=>val-childOffset);/**\n     * Effects\n     */const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.on(\"change\",newValue=>{ref.current?.setAttribute(\"aria-hidden\",!newValue);});},[]);const visibility=isCanvas?\"visible\":useTransform(wrappedValue,[scrollRange[0]-size.viewportLength,mix(scrollRange[1],scrollRange[2],.5),scrollRange[3]+size.viewportLength],[\"hidden\",\"visible\",\"hidden\"]);return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref,key:slideKey+\"child\",style:{...child.props?.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0,visibility},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},child.props?.children)})});});function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item *//* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;const top=!isHorizontal&&index>0?inlinePadding:padding;const bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;const right=isHorizontal&&index!==total-1?inlinePadding:padding;const left=isHorizontal&&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},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});}/* Dot Styles */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\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (ff6f0b6)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,NotFoundError,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useQueryData,useRouteElementId,useRouter,useSiteRefs,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import GoogleMaps from\"https://framerusercontent.com/modules/Hbc0lxqGSRzFG6uMT9yO/OPmIEDVRw3amYB3GBzWp/GoogleMaps.js\";import SVG from\"https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/6iIIX4SzvuX6GX8XtSv5/SVG_Prod.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/CzcVr5U1VFk6uNcyYvJq/SmoothScroll_Prod.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/itgi9RK8CLwe9MFuhYeS/SlideShow.js\";import PropertyCarousel from\"#framer/local/canvasComponent/B8TQW_quH/B8TQW_quH.js\";import Badge from\"#framer/local/canvasComponent/e4Nw5o3Q1/e4Nw5o3Q1.js\";import CustomCursor from\"#framer/local/canvasComponent/mj875Rm3P/mj875Rm3P.js\";import Button from\"#framer/local/canvasComponent/s19kqWzwC/s19kqWzwC.js\";import Properties,{enumToDisplayNameFunctions}from\"#framer/local/collection/SAiEKZXtR/SAiEKZXtR.js\";import*as sharedStyle3 from\"#framer/local/css/atuzcynch/atuzcynch.js\";import*as sharedStyle1 from\"#framer/local/css/GTsvJRUTL/GTsvJRUTL.js\";import*as sharedStyle4 from\"#framer/local/css/ksSkaofOc/ksSkaofOc.js\";import*as sharedStyle2 from\"#framer/local/css/PttbQGFPx/PttbQGFPx.js\";import*as sharedStyle from\"#framer/local/css/zfW8CJM85/zfW8CJM85.js\";import metadataProvider from\"#framer/local/webPageMetadata/kW5QAP_yC/kW5QAP_yC.js\";const SVGFonts=getFonts(SVG);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const ButtonFonts=getFonts(Button);const MotionDivWithFX=withFX(motion.div);const ImageWithFX=withFX(Image);const BadgeFonts=getFonts(Badge);const RichTextWithFX=withFX(RichText);const SlideshowFonts=getFonts(Slideshow);const ContainerWithFX=withFX(Container);const GoogleMapsFonts=getFonts(GoogleMaps);const PropertyCarouselFonts=getFonts(PropertyCarousel);const SmoothScrollFonts=getFonts(SmoothScroll);const CustomCursorFonts=getFonts(CustomCursor);const breakpoints={QOczzf6QY:\"(min-width: 1200px)\",rboITrIso:\"(min-width: 810px) and (max-width: 1199px)\",UJo5M36ek:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-MZuN9\";const variantClassNames={QOczzf6QY:\"framer-v-hybdqr\",rboITrIso:\"framer-v-1vg4p0d\",UJo5M36ek:\"framer-v-ws4awr\"};const animation={filter:\"blur(10px)\",opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition1={bounce:0,delay:.025,duration:.2,type:\"spring\"};const textEffect={effect:animation,tokenization:\"character\",transition:transition1,trigger:\"onMount\",type:\"appear\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:30};const transition2={damping:90,delay:.4,mass:1,stiffness:450,type:\"spring\"};const transition3={damping:90,delay:.5,mass:1,stiffness:450,type:\"spring\"};const numberToString=(value,options={},activeLocale)=>{const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;const{useGrouping,notation,compactDisplay,style,currency,currencyDisplay,unit,unitDisplay,minimumFractionDigits,maximumFractionDigits,minimumIntegerDigits}=options;const formatOptions={useGrouping,notation,compactDisplay,style,currency,currencyDisplay,unit,unitDisplay,minimumFractionDigits,maximumFractionDigits,minimumIntegerDigits};const number=Number(value);try{return number.toLocaleString(locale,formatOptions);}catch{try{return number.toLocaleString(fallbackLocale,formatOptions);}catch{return number.toLocaleString();}}};const suffix=(value,suffix)=>{if(typeof value===\"string\"&&typeof suffix===\"string\"){return value+suffix;}else if(typeof value===\"string\"){return value;}else if(typeof suffix===\"string\"){return suffix;}return\"\";};const transition4={bounce:0,delay:.3,duration:.7,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20};const transition5={damping:90,delay:.6,mass:1,stiffness:450,type:\"spring\"};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const transition6={damping:90,delay:.7,mass:1,stiffness:450,type:\"spring\"};const transition7={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"QOczzf6QY\",Phone:\"UJo5M36ek\",Tablet:\"rboITrIso\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"QOczzf6QY\"};};const cursor={component:CustomCursor,transition:transition7,variant:\"rjU12QaJa\"};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"kW5QAP_yC\",data:Properties,type:\"Collection\"},select:[{collection:\"kW5QAP_yC\",name:\"IIeVFlG3H\",type:\"Identifier\"},{collection:\"kW5QAP_yC\",name:\"MnNvfbmy_\",type:\"Identifier\"},{collection:\"kW5QAP_yC\",name:\"yrORUPMiv\",type:\"Identifier\"},{collection:\"kW5QAP_yC\",name:\"mNxBqTwi3\",type:\"Identifier\"},{collection:\"kW5QAP_yC\",name:\"vEZD5uSki\",type:\"Identifier\"},{collection:\"kW5QAP_yC\",name:\"Qf4srNrnX\",type:\"Identifier\"},{collection:\"kW5QAP_yC\",name:\"d4RE61Eo0\",type:\"Identifier\"},{collection:\"kW5QAP_yC\",name:\"xoDqVldQl\",type:\"Identifier\"},{collection:\"kW5QAP_yC\",name:\"hAbdeVeZJ\",type:\"Identifier\"},{collection:\"kW5QAP_yC\",name:\"RUTn5vHr9\",type:\"Identifier\"},{collection:\"kW5QAP_yC\",name:\"dcERDv01p\",type:\"Identifier\"},{collection:\"kW5QAP_yC\",name:\"fuVe737_P\",type:\"Identifier\"},{collection:\"kW5QAP_yC\",name:\"ns4cw40St\",type:\"Identifier\"},{collection:\"kW5QAP_yC\",name:\"ixjdrpolK\",type:\"Identifier\"},{collection:\"kW5QAP_yC\",name:\"rMm7onOS2\",type:\"Identifier\"},{collection:\"kW5QAP_yC\",name:\"H7u5mPDED\",type:\"Identifier\"},{collection:\"kW5QAP_yC\",name:\"NGH59Sjad\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"kW5QAP_yC\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,IIeVFlG3H=getFromCurrentRouteData(\"IIeVFlG3H\")??\"\",d4RE61Eo0=getFromCurrentRouteData(\"d4RE61Eo0\"),dcERDv01p=getFromCurrentRouteData(\"dcERDv01p\")??0,H7u5mPDED=getFromCurrentRouteData(\"H7u5mPDED\")??\"\",yrORUPMiv=getFromCurrentRouteData(\"yrORUPMiv\"),mNxBqTwi3=getFromCurrentRouteData(\"mNxBqTwi3\")??0,vEZD5uSki=getFromCurrentRouteData(\"vEZD5uSki\")??0,Qf4srNrnX=getFromCurrentRouteData(\"Qf4srNrnX\")??\"\",MnNvfbmy_=getFromCurrentRouteData(\"MnNvfbmy_\")??\"\",xoDqVldQl=getFromCurrentRouteData(\"xoDqVldQl\"),hAbdeVeZJ=getFromCurrentRouteData(\"hAbdeVeZJ\"),RUTn5vHr9=getFromCurrentRouteData(\"RUTn5vHr9\"),fuVe737_P=getFromCurrentRouteData(\"fuVe737_P\"),ns4cw40St=getFromCurrentRouteData(\"ns4cw40St\"),ixjdrpolK=getFromCurrentRouteData(\"ixjdrpolK\"),rMm7onOS2=getFromCurrentRouteData(\"rMm7onOS2\"),NGH59Sjad=getFromCurrentRouteData(\"NGH59Sjad\")??\"\",...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];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const elementId=useRouteElementId(\"wbjcTfAmS\");const ref2=React.useRef(null);const activeLocaleCode=useLocaleCode();const textContent=numberToString(dcERDv01p,{currency:\"USD\",currencyDisplay:\"symbol\",locale:\"\",notation:\"standard\",style:\"currency\"},activeLocaleCode);const textContent1=enumToDisplayNameFunctions[\"yrORUPMiv\"]?.(yrORUPMiv,activeLocale);const textContent2=suffix(numberToString(mNxBqTwi3,{locale:\"\",notation:\"standard\",style:\"decimal\"},activeLocaleCode),\" Beds\");const textContent3=suffix(numberToString(vEZD5uSki,{locale:\"\",notation:\"standard\",style:\"decimal\"},activeLocaleCode),\" Baths\");const router=useRouter();const elementId1=useRouteElementId(\"lUcIS5Yw9\");const ref3=React.useRef(null);const visible=isSet(xoDqVldQl);const visible1=isSet(hAbdeVeZJ);const visible2=isSet(RUTn5vHr9);const visible3=isSet(fuVe737_P);const elementId2=useRouteElementId(\"M5x2dq66s\");const ref4=React.useRef(null);const elementId3=useRouteElementId(\"nGYrdvzwB\");const ref5=React.useRef(null);const elementId4=useRouteElementId(\"Mk2VcApuj\");const dynamicRef=useSiteRefs();const defaultLayoutId=React.useId();useCustomCursors({\"4andc0\":cursor});const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"QOczzf6QY\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-ae158fbc-0634-43cb-9348-24c1b8bc9d32, rgb(221, 221, 221)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-hybdqr\",className),ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14045sd\",\"data-framer-name\":\"PROPERTY DETAIL\",id:elementId,ref:ref2,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rboITrIso:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VXJiYW5pc3QtcmVndWxhcg==\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-size\":\"70px\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"80px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(43, 43, 40)\",\"--framer-text-transform\":\"inherit\"},children:\"The Oakridge Apartments Copy\"})}),fonts:[\"GF;Urbanist-regular\"]},UJo5M36ek:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VXJiYW5pc3QtcmVndWxhcg==\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"72px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(43, 43, 40)\",\"--framer-text-transform\":\"inherit\"},children:\"The Oakridge Apartments Copy\"})}),fonts:[\"GF;Urbanist-regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-ef4agm\",\"data-styles-preset\":\"zfW8CJM85\",style:{\"--framer-text-alignment\":\"left\"},children:\"Content\"})}),className:\"framer-fvoo4x\",\"data-framer-name\":\"h1\",effect:textEffect,fonts:[\"Inter\"],text:IIeVFlG3H,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rboITrIso:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+140+420),sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 50px)`,...toResponsiveImage(d4RE61Eo0)}},UJo5M36ek:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+115+380),sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 30px)`,...toResponsiveImage(d4RE61Eo0)}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+140+109),sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 60px)`,...toResponsiveImage(d4RE61Eo0)},className:\"framer-8314pb\",\"data-framer-name\":\"property detailed\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-17hxqsk\",\"data-framer-name\":\"container detailed\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sl4r0h\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13bwmuz\",\"data-framer-name\":\"TITLE\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-2x8ywo\",\"data-styles-preset\":\"GTsvJRUTL\",children:\"$0.00\"})}),className:\"framer-drmdwt\",\"data-framer-name\":\"h1\",effect:textEffect,fonts:[\"Inter\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nvsew3\",\"data-framer-name\":\"LOCATION\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-of72ek-container\",children:/*#__PURE__*/_jsx(SVG,{customColor:\"var(--token-eebb0645-6dcb-49d2-b958-b6fda4f4f0c5, rgb(55, 60, 66))\",customPadding:0,customStrokeWidth:1.5,customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" color=\"#030712\" fill=\"none\">     <path d=\"M13.6177 21.367C13.1841 21.773 12.6044 22 12.0011 22C11.3978 22 10.8182 21.773 10.3845 21.367C6.41302 17.626 1.09076 13.4469 3.68627 7.37966C5.08963 4.09916 8.45834 2 12.0011 2C15.5439 2 18.9126 4.09916 20.316 7.37966C22.9082 13.4393 17.599 17.6389 13.6177 21.367Z\" stroke=\"currentColor\" stroke-width=\"1.5\" />     <path d=\"M15.5 11C15.5 12.933 13.933 14.5 12 14.5C10.067 14.5 8.5 12.933 8.5 11C8.5 9.067 10.067 7.5 12 7.5C13.933 7.5 15.5 9.067 15.5 11Z\" stroke=\"currentColor\" stroke-width=\"1.5\" /> </svg>',description:\"\",height:\"100%\",id:\"c8GE3gsld\",layoutId:\"c8GE3gsld\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},title:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1xq2zak\",\"data-styles-preset\":\"PttbQGFPx\",style:{\"--framer-text-color\":\"var(--token-071a5baa-88d0-4cb6-9ba4-2ac73fb44e50, rgb(43, 43, 40))\"},children:\"Content\"})}),className:\"framer-1t1eevg\",\"data-framer-name\":\"321 Forest Road, Greenfield, USA\",fonts:[\"Inter\"],text:H7u5mPDED,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h6pkzs\",\"data-framer-name\":\"INFO\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18uh067\",\"data-framer-name\":\"beds amount\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-azyx24-container\",children:/*#__PURE__*/_jsx(SVG,{customColor:\"var(--token-8c591b83-7686-406e-a516-bf5085872cdc, rgb(227, 176, 75))\",customPadding:0,customStrokeWidth:1.5,customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" color=\"#030712\" fill=\"none\">     <path d=\"M15.0002 17C14.2007 17.6224 13.1504 18 12.0002 18C10.8499 18 9.79971 17.6224 9.00018 17\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" />     <path d=\"M2.35157 13.2135C1.99855 10.9162 1.82204 9.76763 2.25635 8.74938C2.69065 7.73112 3.65421 7.03443 5.58132 5.64106L7.02117 4.6C9.41847 2.86667 10.6171 2 12.0002 2C13.3832 2 14.5819 2.86667 16.9792 4.6L18.419 5.64106C20.3462 7.03443 21.3097 7.73112 21.744 8.74938C22.1783 9.76763 22.0018 10.9162 21.6488 13.2135L21.3478 15.1724C20.8473 18.4289 20.5971 20.0572 19.4292 21.0286C18.2613 22 16.5538 22 13.139 22H10.8614C7.44652 22 5.73909 22 4.57118 21.0286C3.40327 20.0572 3.15305 18.4289 2.65261 15.1724L2.35157 13.2135Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\" /> </svg>',description:\"\",height:\"100%\",id:\"BN4mlyc_3\",layoutId:\"BN4mlyc_3\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},title:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1xq2zak\",\"data-styles-preset\":\"PttbQGFPx\",style:{\"--framer-text-color\":\"var(--token-071a5baa-88d0-4cb6-9ba4-2ac73fb44e50, rgb(43, 43, 40))\"},children:\"Content\"})}),className:\"framer-1lw4rtv\",\"data-framer-name\":\"Cottage\",fonts:[\"Inter\"],text:textContent1,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6abnkt\",\"data-framer-name\":\"beds amount\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-mv3w9x-container\",children:/*#__PURE__*/_jsx(SVG,{customColor:\"var(--token-8c591b83-7686-406e-a516-bf5085872cdc, rgb(227, 176, 75))\",customPadding:0,customStrokeWidth:1.5,customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" color=\"#030712\" fill=\"none\">     <path d=\"M22 17.5H2\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" />     <path d=\"M22 21V16C22 14.1144 22 13.1716 21.4142 12.5858C20.8284 12 19.8856 12 18 12H6C4.11438 12 3.17157 12 2.58579 12.5858C2 13.1716 2 14.1144 2 16V21\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" />     <path d=\"M11 12V10.2134C11 9.83272 10.9428 9.70541 10.6497 9.55538C10.0395 9.24292 9.29865 9 8.5 9C7.70135 9 6.96055 9.24292 6.35025 9.55538C6.05721 9.70541 6 9.83272 6 10.2134L6 12\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" />     <path d=\"M18 12V10.2134C18 9.83272 17.9428 9.70541 17.6497 9.55538C17.0395 9.24292 16.2987 9 15.5 9C14.7013 9 13.9605 9.24292 13.3503 9.55538C13.0572 9.70541 13 9.83272 13 10.2134L13 12\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" />     <path d=\"M21 12V7.36057C21 6.66893 21 6.32311 20.8079 5.99653C20.6157 5.66995 20.342 5.50091 19.7944 5.16283C17.5869 3.79978 14.8993 3 12 3C9.10067 3 6.41314 3.79978 4.20558 5.16283C3.65804 5.50091 3.38427 5.66995 3.19213 5.99653C3 6.32311 3 6.66893 3 7.36057V12\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" /> </svg>',description:\"\",height:\"100%\",id:\"bgy_8dkgj\",layoutId:\"bgy_8dkgj\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},title:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1xq2zak\",\"data-styles-preset\":\"PttbQGFPx\",style:{\"--framer-text-color\":\"var(--token-071a5baa-88d0-4cb6-9ba4-2ac73fb44e50, rgb(43, 43, 40))\"},children:\"0 Beds\"})}),className:\"framer-nqxqgk\",\"data-framer-name\":\"3 bed\",fonts:[\"Inter\"],text:textContent2,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17wmilu\",\"data-framer-name\":\"bathroom amount\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qhej9r-container\",children:/*#__PURE__*/_jsx(SVG,{customColor:\"var(--token-8c591b83-7686-406e-a516-bf5085872cdc, rgb(227, 176, 75))\",customPadding:0,customStrokeWidth:1.5,customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" color=\"#030712\" fill=\"none\">     <path d=\"M6 20L5 21M18 20L19 21\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" />     <path d=\"M3 12V13C3 16.2998 3 17.9497 4.02513 18.9749C5.05025 20 6.70017 20 10 20H14C17.2998 20 18.9497 20 19.9749 18.9749C21 17.9497 21 16.2998 21 13V12\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" />     <path d=\"M2 12H22\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" />     <path d=\"M4 12V5.5234C4 4.12977 5.12977 3 6.5234 3C7.64166 3 8.62654 3.73598 8.94339 4.80841L9 5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" />     <path d=\"M8 6L10.5 4\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" /> </svg>',description:\"\",height:\"100%\",id:\"btS35rxv8\",layoutId:\"btS35rxv8\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},title:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1xq2zak\",\"data-styles-preset\":\"PttbQGFPx\",style:{\"--framer-text-color\":\"var(--token-071a5baa-88d0-4cb6-9ba4-2ac73fb44e50, rgb(43, 43, 40))\"},children:\"0 Baths\"})}),className:\"framer-1gywd20\",\"data-framer-name\":\"2 bath\",fonts:[\"Inter\"],text:textContent3,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uivkge\",\"data-framer-name\":\"size amount\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-16yn2lo-container\",children:/*#__PURE__*/_jsx(SVG,{customColor:\"var(--token-8c591b83-7686-406e-a516-bf5085872cdc, rgb(227, 176, 75))\",customPadding:0,customStrokeWidth:1.5,customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" color=\"#030712\" fill=\"none\">     <path d=\"M11.9902 8.98595V3.31543\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" />     <path d=\"M11.9902 20.6705V15\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" />     <path d=\"M20.6702 12.0001L14.9999 11.9482\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" />     <path d=\"M9.00031 12.0001L3.33002 11.9482\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" />     <path d=\"M14.9999 5.99998C14.9999 5.99998 12.7904 3.00001 11.9999 3C11.2093 2.99999 8.99995 6 8.99995 6\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" />     <path d=\"M5.99993 15C5.99993 15 2.99996 12.7905 2.99995 12C2.99994 11.2094 5.99995 9 5.99995 9\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" />     <path d=\"M17.9999 9C17.9999 9 20.9999 11.2095 20.9999 12C20.9999 12.7906 17.9999 15 17.9999 15\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" />     <path d=\"M8.99995 18C8.99995 18 11.2094 21 11.9999 21C12.7905 21 14.9999 18 14.9999 18\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" /> </svg>',description:\"\",height:\"100%\",id:\"a4CG7EiRG\",layoutId:\"a4CG7EiRG\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},title:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1xq2zak\",\"data-styles-preset\":\"PttbQGFPx\",style:{\"--framer-text-color\":\"var(--token-071a5baa-88d0-4cb6-9ba4-2ac73fb44e50, rgb(43, 43, 40))\"},children:\"Content\"})}),className:\"framer-qmmjum\",\"data-framer-name\":\"1800 sq ft\",fonts:[\"Inter\"],text:Qf4srNrnX,verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hk4xkf\",\"data-framer-name\":\"DESCRIPTION\",children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-4odoy6\",\"data-styles-preset\":\"atuzcynch\",children:\"Content\"})}),className:\"framer-10yb46z\",\"data-framer-appear-id\":\"10yb46z\",\"data-framer-name\":\"subtitle\",fonts:[\"Inter\"],initial:animation3,optimized:true,text:MnNvfbmy_,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"AhcJHmcFw\"},implicitPathVariables:undefined},{href:{webPageId:\"AhcJHmcFw\"},implicitPathVariables:undefined},{href:{webPageId:\"AhcJHmcFw\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UJo5M36ek:{width:`calc(max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 70px, 1px) - 60px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"369px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1d3zjou-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rboITrIso:{TbajidPz6:resolvedLinks[2]},UJo5M36ek:{TbajidPz6:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(Button,{fTULNZYxz:\"var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255))\",g0e9eEWSg:\"rgb(255, 255, 255)\",height:\"100%\",id:\"LTfQ7Je9K\",k3JhaMy5_:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M13.5 5L20.5 12L13.5 19M3.5 12L20 12\" stroke=\"black\" stroke-width=\"2\"/> </svg>',layoutId:\"LTfQ7Je9K\",Lzyfez8Rw:\"var(--token-8c591b83-7686-406e-a516-bf5085872cdc, rgb(227, 176, 75))\",mKVpWCoSL:\"var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255))\",Oon8L041D:\"var(--token-071a5baa-88d0-4cb6-9ba4-2ac73fb44e50, rgb(43, 43, 40))\",style:{width:\"100%\"},TbajidPz6:resolvedLinks[0],VArIlTNTt:\"Contact agent\",width:\"100%\"})})})})})})]})]})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-k3n9hl\",\"data-framer-name\":\"GALLERY\",id:elementId1,ref:ref3,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jqf6do\",\"data-framer-name\":\"HEADER\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uaz27n\",\"data-framer-name\":\"TITLE\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rboITrIso:{y:(componentViewport?.y||0)+0+1237+0+0+0+0+0+0},UJo5M36ek:{y:(componentViewport?.y||0)+0+1337+0+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,y:(componentViewport?.y||0)+0+936+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1a200pd-container\",children:/*#__PURE__*/_jsx(Badge,{FQ8rivNZ3:ref3,height:\"100%\",id:\"vWRRJ2zfN\",layoutId:\"vWRRJ2zfN\",width:\"100%\",XYR9Jx_W5:\"Gallery\"})})})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref3,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-2x8ywo\",\"data-styles-preset\":\"GTsvJRUTL\",children:\"Discover Every Angle of Your Future Home.\"})}),className:\"framer-1uolsw2\",\"data-framer-name\":\"Building Trust, One Home at a Time\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref3,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8751ci\",\"data-styles-preset\":\"ksSkaofOc\",children:\"Step inside and explore the beauty of this property with our curated gallery. From breathtaking interiors to stunning outdoor views, get a closer look at every detail that makes this home special.\"})}),className:\"framer-xdpste\",\"data-framer-name\":\"With years of experience in the real estate industry, we are committed to helping you find, buy, or sell properties that perfectly meet your needs. Our team provides personalized service and expert guidance every step of the way.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18xlmyd\",\"data-framer-name\":\"IMAGES\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w4qa3w\",\"data-framer-name\":\"rows\",children:[visible&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rboITrIso:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1237+0+330+0+0+0),sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 50px, 1px)`,...toResponsiveImage(d4RE61Eo0)}},UJo5M36ek:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1337+0+330+0+0+0+0),sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 30px)`,...toResponsiveImage(d4RE61Eo0)}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref3,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+936+0+330+0+0+0),sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 60px, 1px)`,...toResponsiveImage(d4RE61Eo0)},className:\"framer-13kepgo\",\"data-framer-name\":\"image 1\"})}),visible&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rboITrIso:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1237+0+330+0+0+401),sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 50px, 1px)`,...toResponsiveImage(xoDqVldQl)}},UJo5M36ek:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1337+0+330+0+0+0+401),sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 30px)`,...toResponsiveImage(xoDqVldQl)}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref3,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+936+0+330+0+0+401),sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 60px, 1px)`,...toResponsiveImage(xoDqVldQl)},className:\"framer-1ukme5h\",\"data-framer-name\":\"image 2\"})})]}),visible1&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vl5phk\",\"data-framer-name\":\"rows\",children:[visible1&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rboITrIso:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1237+0+330+0+0+0),sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 50px, 1px)`,...toResponsiveImage(hAbdeVeZJ)}},UJo5M36ek:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1337+0+330+0+993+0+0),sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 30px)`,...toResponsiveImage(hAbdeVeZJ)}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref3,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+936+0+330+0+0+0),sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 60px, 1px)`,...toResponsiveImage(hAbdeVeZJ)},className:\"framer-1ldn4ml\",\"data-framer-name\":\"image 2\"})}),visible2&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rboITrIso:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1237+0+330+0+0+592),sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 50px, 1px)`,...toResponsiveImage(RUTn5vHr9)}},UJo5M36ek:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1337+0+330+0+993+0+592),sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 30px)`,...toResponsiveImage(RUTn5vHr9)}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref3,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+936+0+330+0+0+592),sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 60px, 1px)`,...toResponsiveImage(RUTn5vHr9)},className:\"framer-1srplyc\",\"data-framer-name\":\"image 1\"})})]})]})]}),visible3&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s3rxiu\",\"data-framer-name\":\"NEARBY LOCATION\",id:elementId2,ref:ref4,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18xtcdf\",\"data-framer-name\":\"HEADER\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1obudnf\",\"data-framer-name\":\"TITLE\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rboITrIso:{y:(componentViewport?.y||0)+0+2640+0+0+0+0+0+0},UJo5M36ek:{y:(componentViewport?.y||0)+0+3683+0+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,y:(componentViewport?.y||0)+0+2349+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mt0px5-container\",children:/*#__PURE__*/_jsx(Badge,{FQ8rivNZ3:ref4,height:\"100%\",id:\"nX4yGHlQq\",layoutId:\"nX4yGHlQq\",width:\"100%\",XYR9Jx_W5:\"Nearby Attractions and Amenities\"})})})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref4,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-2x8ywo\",\"data-styles-preset\":\"GTsvJRUTL\",style:{\"--framer-text-alignment\":\"center\"},children:\"Discover What's Nearby\"})}),className:\"framer-zxgns4\",\"data-framer-name\":\"Building Trust, One Home at a Time\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref4,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8751ci\",\"data-styles-preset\":\"ksSkaofOc\",style:{\"--framer-text-alignment\":\"center\"},children:\"Explore the vibrant attractions and convenient amenities surrounding our properties. From parks and schools to trendy cafes and cultural hubs, each location offers unique highlights to complement your lifestyle. Find the perfect balance of comfort, convenience, and adventure right at your doorstep.\"})}),className:\"framer-103qtph\",\"data-framer-name\":\"With years of experience in the real estate industry, we are committed to helping you find, buy, or sell properties that perfectly meet your needs. Our team provides personalized service and expert guidance every step of the way.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref4,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-h427p7-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rboITrIso:{itemAmount:2},UJo5M36ek:{itemAmount:1}},children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"right\",dragControl:true,effectsOptions:{effectsHover:false,effectsOpacity:.8,effectsPerspective:1200,effectsRotate:20,effectsScale:.7},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"CGZOxgBQh\",intervalControl:6,itemAmount:3,layoutId:\"CGZOxgBQh\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:true,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"410px\",...toResponsiveImage(fuVe737_P)},className:\"framer-hwmiud\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"410px\",...toResponsiveImage(ns4cw40St)},className:\"framer-1y9xyia\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"410px\",...toResponsiveImage(ixjdrpolK)},className:\"framer-11qtc06\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"410px\",...toResponsiveImage(rMm7onOS2)},className:\"framer-p2yrth\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o8d736\",\"data-framer-name\":\"MAP LOCATION\",id:elementId3,ref:ref5,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1o3ij01\",\"data-framer-name\":\"HEADER\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3jevff\",\"data-framer-name\":\"TITLE\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rboITrIso:{y:(componentViewport?.y||0)+0+3860+0+0+0+0+0+0},UJo5M36ek:{y:(componentViewport?.y||0)+0+4853+0+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,y:(componentViewport?.y||0)+0+3579+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gmawap-container\",children:/*#__PURE__*/_jsx(Badge,{FQ8rivNZ3:ref5,height:\"100%\",id:\"kyHFzUctZ\",layoutId:\"kyHFzUctZ\",width:\"100%\",XYR9Jx_W5:\"Map Location\"})})})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref5,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-2x8ywo\",\"data-styles-preset\":\"GTsvJRUTL\",children:\"See Where Your Future Home Awaits\"})}),className:\"framer-kj3g9k\",\"data-framer-name\":\"Real Stories from Satisfied Homeowners and Investors\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref5,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8751ci\",\"data-styles-preset\":\"ksSkaofOc\",children:\"Explore the exact location of this property and get a feel for the neighborhood. Use the interactive map to view nearby amenities, public transport, and major landmarks, helping you picture life in this vibrant area.\"})}),className:\"framer-1usvq6p\",\"data-framer-name\":\"Our clients\u2019 success is our top priority. Here\u2019s what they have to say about their experiences working with us. From first-time homebuyers to seasoned investors, we\u2019re proud to have helped them achieve their real estate goals.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref5,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1g8f2pr-container\",children:/*#__PURE__*/_jsx(GoogleMaps,{borderRadius:40,bottomLeftRadius:40,bottomRightRadius:40,coordinates:NGH59Sjad,height:\"100%\",id:\"uEOAVMsxe\",isMixedBorderRadius:false,layoutId:\"uEOAVMsxe\",style:{height:\"100%\",width:\"100%\"},topLeftRadius:40,topRightRadius:40,width:\"100%\",zoom:15})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jedqir\",\"data-framer-name\":\"PROPERTYES\",id:elementId4,ref:dynamicRef(elementId4),children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hjre6y\",\"data-framer-name\":\"HEADER\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p53prx\",\"data-framer-name\":\"TITLE\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rboITrIso:{y:(componentViewport?.y||0)+0+4763+0+0+0+0+0+0},UJo5M36ek:{y:(componentViewport?.y||0)+0+5706+0+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,y:(componentViewport?.y||0)+0+4162+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-r3ndmf-container\",children:/*#__PURE__*/_jsx(Badge,{FQ8rivNZ3:dynamicRef(elementId4),height:\"100%\",id:\"Wi4nYhrfF\",layoutId:\"Wi4nYhrfF\",width:\"100%\",XYR9Jx_W5:\"Featured Properties\"})})})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:dynamicRef(elementId4),target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-2x8ywo\",\"data-styles-preset\":\"GTsvJRUTL\",style:{\"--framer-text-alignment\":\"center\"},children:\"Explore Similar Listings\"})}),className:\"framer-11brqmw\",\"data-framer-name\":\"Building Trust, One Home at a Time\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:dynamicRef(elementId4),target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8751ci\",\"data-styles-preset\":\"ksSkaofOc\",style:{\"--framer-text-alignment\":\"center\"},children:\"Not quite what you\u2019re looking for? Discover other properties in our portfolio that may be the perfect fit. Each featured property offers unique charm, quality, and location to suit a variety of lifestyles and preferences.\"})}),className:\"framer-1hriwj4\",\"data-framer-name\":\"With years of experience in the real estate industry, we are committed to helping you find, buy, or sell properties that perfectly meet your needs. Our team provides personalized service and expert guidance every step of the way.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rboITrIso:{width:`min(${componentViewport?.width||\"100vw\"}, 1440px)`,y:(componentViewport?.y||0)+0+4763+0+330},UJo5M36ek:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 30px)`,y:(componentViewport?.y||0)+0+5706+0+330}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:640,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 60px)`,y:(componentViewport?.y||0)+0+4162+0+330,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:dynamicRef(elementId4),target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1rfp8u7-container\",\"data-framer-cursor\":\"4andc0\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UJo5M36ek:{EwOJuNO5i:\"column\"}},children:/*#__PURE__*/_jsx(PropertyCarousel,{EwOJuNO5i:\"row\",height:\"100%\",id:\"Fp4ZsR9D1\",layoutId:\"Fp4ZsR9D1\",style:{width:\"100%\"},width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-m5s5qu-container\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"ldgoGOova\",intensity:20,layoutId:\"ldgoGOova\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-MZuN9.framer-lox379, .framer-MZuN9 .framer-lox379 { display: block; }\",\".framer-MZuN9.framer-hybdqr { align-content: center; align-items: center; background-color: var(--token-ae158fbc-0634-43cb-9348-24c1b8bc9d32, #dddddd); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-MZuN9 .framer-14045sd { 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: center; max-width: 1440px; overflow: hidden; padding: 140px 30px 0px 30px; position: relative; width: 100%; }\",\".framer-MZuN9 .framer-fvoo4x, .framer-MZuN9 .framer-drmdwt, .framer-MZuN9 .framer-10yb46z { --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-MZuN9 .framer-8314pb { align-content: center; align-items: center; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 587px; justify-content: flex-start; overflow: hidden; padding: 30px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-MZuN9 .framer-17hxqsk { -webkit-backdrop-filter: blur(10px); align-content: flex-start; align-items: flex-start; backdrop-filter: blur(10px); background: linear-gradient(120.18223234450362deg, rgba(239, 239, 239, 0.6) 0%, rgba(255, 255, 255, 0.07999999821186066) 100%); border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 100%; justify-content: center; overflow: hidden; padding: 40px 30px 40px 30px; position: relative; width: 429px; will-change: var(--framer-will-change-override, transform); }\",\".framer-MZuN9 .framer-1sl4r0h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-MZuN9 .framer-13bwmuz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 7px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-MZuN9 .framer-1nvsew3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-MZuN9 .framer-of72ek-container { flex: none; height: 22px; position: relative; width: 22px; }\",\".framer-MZuN9 .framer-1t1eevg, .framer-MZuN9 .framer-1lw4rtv, .framer-MZuN9 .framer-nqxqgk, .framer-MZuN9 .framer-1gywd20, .framer-MZuN9 .framer-qmmjum { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-MZuN9 .framer-h6pkzs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-MZuN9 .framer-18uh067, .framer-MZuN9 .framer-6abnkt, .framer-MZuN9 .framer-17wmilu, .framer-MZuN9 .framer-1uivkge { 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: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-MZuN9 .framer-azyx24-container, .framer-MZuN9 .framer-mv3w9x-container, .framer-MZuN9 .framer-1qhej9r-container, .framer-MZuN9 .framer-16yn2lo-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 26px); position: relative; width: 26px; }\",\".framer-MZuN9 .framer-hk4xkf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-MZuN9 .framer-1d3zjou-container, .framer-MZuN9 .framer-1rfp8u7-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-MZuN9 .framer-k3n9hl, .framer-MZuN9 .framer-s3rxiu, .framer-MZuN9 .framer-1jedqir { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: visible; padding: 0px 30px 0px 30px; position: relative; width: 100%; }\",\".framer-MZuN9 .framer-jqf6do { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-MZuN9 .framer-1uaz27n, .framer-MZuN9 .framer-3jevff { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-MZuN9 .framer-1a200pd-container, .framer-MZuN9 .framer-1mt0px5-container, .framer-MZuN9 .framer-1gmawap-container, .framer-MZuN9 .framer-r3ndmf-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-MZuN9 .framer-1uolsw2, .framer-MZuN9 .framer-zxgns4, .framer-MZuN9 .framer-11brqmw { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 635px; word-break: break-word; word-wrap: break-word; }\",\".framer-MZuN9 .framer-xdpste, .framer-MZuN9 .framer-103qtph, .framer-MZuN9 .framer-1hriwj4 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 668px; word-break: break-word; word-wrap: break-word; }\",\".framer-MZuN9 .framer-18xlmyd { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-MZuN9 .framer-1w4qa3w, .framer-MZuN9 .framer-vl5phk { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-MZuN9 .framer-13kepgo, .framer-MZuN9 .framer-1srplyc { border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; flex: none; height: 391px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-MZuN9 .framer-1ukme5h, .framer-MZuN9 .framer-1ldn4ml { border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; flex: none; height: 582px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-MZuN9 .framer-18xtcdf, .framer-MZuN9 .framer-hjre6y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-MZuN9 .framer-1obudnf, .framer-MZuN9 .framer-1p53prx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-MZuN9 .framer-h427p7-container { flex: none; height: 80vh; position: relative; width: 100%; }\",\".framer-MZuN9 .framer-hwmiud, .framer-MZuN9 .framer-1y9xyia, .framer-MZuN9 .framer-11qtc06, .framer-MZuN9 .framer-p2yrth { border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; height: 639px; overflow: hidden; position: relative; width: 410px; will-change: var(--framer-will-change-override, transform); }\",\".framer-MZuN9 .framer-o8d736 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: visible; padding: 0px 30px 0px 30px; position: relative; width: 100%; }\",\".framer-MZuN9 .framer-1o3ij01 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 609px; }\",\".framer-MZuN9 .framer-kj3g9k, .framer-MZuN9 .framer-1usvq6p { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 609px; word-break: break-word; word-wrap: break-word; }\",\".framer-MZuN9 .framer-1g8f2pr-container { flex: 1 0 0px; height: 483px; position: relative; width: 1px; }\",\".framer-MZuN9 .framer-m5s5qu-container { bottom: 0px; flex: none; height: auto; left: 50%; position: absolute; transform: translateX(-50%); width: auto; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-MZuN9.framer-hybdqr, .framer-MZuN9 .framer-14045sd, .framer-MZuN9 .framer-8314pb, .framer-MZuN9 .framer-17hxqsk, .framer-MZuN9 .framer-1sl4r0h, .framer-MZuN9 .framer-13bwmuz, .framer-MZuN9 .framer-1nvsew3, .framer-MZuN9 .framer-h6pkzs, .framer-MZuN9 .framer-18uh067, .framer-MZuN9 .framer-6abnkt, .framer-MZuN9 .framer-17wmilu, .framer-MZuN9 .framer-1uivkge, .framer-MZuN9 .framer-hk4xkf, .framer-MZuN9 .framer-k3n9hl, .framer-MZuN9 .framer-jqf6do, .framer-MZuN9 .framer-1uaz27n, .framer-MZuN9 .framer-18xlmyd, .framer-MZuN9 .framer-1w4qa3w, .framer-MZuN9 .framer-vl5phk, .framer-MZuN9 .framer-s3rxiu, .framer-MZuN9 .framer-18xtcdf, .framer-MZuN9 .framer-1obudnf, .framer-MZuN9 .framer-o8d736, .framer-MZuN9 .framer-1o3ij01, .framer-MZuN9 .framer-3jevff, .framer-MZuN9 .framer-1jedqir, .framer-MZuN9 .framer-hjre6y, .framer-MZuN9 .framer-1p53prx { gap: 0px; } .framer-MZuN9.framer-hybdqr > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-MZuN9.framer-hybdqr > :first-child, .framer-MZuN9 .framer-14045sd > :first-child, .framer-MZuN9 .framer-17hxqsk > :first-child, .framer-MZuN9 .framer-1sl4r0h > :first-child, .framer-MZuN9 .framer-13bwmuz > :first-child, .framer-MZuN9 .framer-hk4xkf > :first-child, .framer-MZuN9 .framer-k3n9hl > :first-child, .framer-MZuN9 .framer-jqf6do > :first-child, .framer-MZuN9 .framer-1uaz27n > :first-child, .framer-MZuN9 .framer-1w4qa3w > :first-child, .framer-MZuN9 .framer-vl5phk > :first-child, .framer-MZuN9 .framer-s3rxiu > :first-child, .framer-MZuN9 .framer-18xtcdf > :first-child, .framer-MZuN9 .framer-1obudnf > :first-child, .framer-MZuN9 .framer-1o3ij01 > :first-child, .framer-MZuN9 .framer-3jevff > :first-child, .framer-MZuN9 .framer-1jedqir > :first-child, .framer-MZuN9 .framer-hjre6y > :first-child, .framer-MZuN9 .framer-1p53prx > :first-child { margin-top: 0px; } .framer-MZuN9.framer-hybdqr > :last-child, .framer-MZuN9 .framer-14045sd > :last-child, .framer-MZuN9 .framer-17hxqsk > :last-child, .framer-MZuN9 .framer-1sl4r0h > :last-child, .framer-MZuN9 .framer-13bwmuz > :last-child, .framer-MZuN9 .framer-hk4xkf > :last-child, .framer-MZuN9 .framer-k3n9hl > :last-child, .framer-MZuN9 .framer-jqf6do > :last-child, .framer-MZuN9 .framer-1uaz27n > :last-child, .framer-MZuN9 .framer-1w4qa3w > :last-child, .framer-MZuN9 .framer-vl5phk > :last-child, .framer-MZuN9 .framer-s3rxiu > :last-child, .framer-MZuN9 .framer-18xtcdf > :last-child, .framer-MZuN9 .framer-1obudnf > :last-child, .framer-MZuN9 .framer-1o3ij01 > :last-child, .framer-MZuN9 .framer-3jevff > :last-child, .framer-MZuN9 .framer-1jedqir > :last-child, .framer-MZuN9 .framer-hjre6y > :last-child, .framer-MZuN9 .framer-1p53prx > :last-child { margin-bottom: 0px; } .framer-MZuN9 .framer-14045sd > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-MZuN9 .framer-8314pb > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-MZuN9 .framer-8314pb > :first-child, .framer-MZuN9 .framer-1nvsew3 > :first-child, .framer-MZuN9 .framer-h6pkzs > :first-child, .framer-MZuN9 .framer-18uh067 > :first-child, .framer-MZuN9 .framer-6abnkt > :first-child, .framer-MZuN9 .framer-17wmilu > :first-child, .framer-MZuN9 .framer-1uivkge > :first-child, .framer-MZuN9 .framer-18xlmyd > :first-child, .framer-MZuN9 .framer-o8d736 > :first-child { margin-left: 0px; } .framer-MZuN9 .framer-8314pb > :last-child, .framer-MZuN9 .framer-1nvsew3 > :last-child, .framer-MZuN9 .framer-h6pkzs > :last-child, .framer-MZuN9 .framer-18uh067 > :last-child, .framer-MZuN9 .framer-6abnkt > :last-child, .framer-MZuN9 .framer-17wmilu > :last-child, .framer-MZuN9 .framer-1uivkge > :last-child, .framer-MZuN9 .framer-18xlmyd > :last-child, .framer-MZuN9 .framer-o8d736 > :last-child { margin-right: 0px; } .framer-MZuN9 .framer-17hxqsk > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-MZuN9 .framer-1sl4r0h > *, .framer-MZuN9 .framer-jqf6do > *, .framer-MZuN9 .framer-18xtcdf > *, .framer-MZuN9 .framer-1o3ij01 > *, .framer-MZuN9 .framer-hjre6y > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-MZuN9 .framer-13bwmuz > * { margin: 0px; margin-bottom: calc(7px / 2); margin-top: calc(7px / 2); } .framer-MZuN9 .framer-1nvsew3 > * { margin: 0px; margin-left: calc(2px / 2); margin-right: calc(2px / 2); } .framer-MZuN9 .framer-h6pkzs > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-MZuN9 .framer-18uh067 > *, .framer-MZuN9 .framer-6abnkt > *, .framer-MZuN9 .framer-17wmilu > *, .framer-MZuN9 .framer-1uivkge > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-MZuN9 .framer-hk4xkf > *, .framer-MZuN9 .framer-1w4qa3w > *, .framer-MZuN9 .framer-vl5phk > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-MZuN9 .framer-k3n9hl > *, .framer-MZuN9 .framer-s3rxiu > *, .framer-MZuN9 .framer-1jedqir > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-MZuN9 .framer-1uaz27n > *, .framer-MZuN9 .framer-1obudnf > *, .framer-MZuN9 .framer-3jevff > *, .framer-MZuN9 .framer-1p53prx > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-MZuN9 .framer-18xlmyd > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-MZuN9 .framer-o8d736 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,\"@media (max-width: 809px) { .framer-MZuN9.framer-hybdqr { gap: 40px; width: 390px; } .framer-MZuN9 .framer-14045sd { padding: 115px 15px 0px 15px; } .framer-MZuN9 .framer-8314pb { align-content: flex-start; align-items: flex-start; height: 802px; padding: 20px; } .framer-MZuN9 .framer-17hxqsk { flex: 1 0 0px; height: min-content; justify-content: flex-start; width: 1px; } .framer-MZuN9 .framer-azyx24-container, .framer-MZuN9 .framer-mv3w9x-container { height: var(--framer-aspect-ratio-supported, 24px); } .framer-MZuN9 .framer-1qhej9r-container, .framer-MZuN9 .framer-16yn2lo-container { height: var(--framer-aspect-ratio-supported, 28px); } .framer-MZuN9 .framer-k3n9hl, .framer-MZuN9 .framer-s3rxiu, .framer-MZuN9 .framer-1jedqir { padding: 0px 15px 0px 15px; } .framer-MZuN9 .framer-jqf6do, .framer-MZuN9 .framer-18xtcdf, .framer-MZuN9 .framer-hjre6y { order: 0; } .framer-MZuN9 .framer-1uolsw2, .framer-MZuN9 .framer-xdpste, .framer-MZuN9 .framer-zxgns4, .framer-MZuN9 .framer-103qtph, .framer-MZuN9 .framer-kj3g9k, .framer-MZuN9 .framer-1usvq6p, .framer-MZuN9 .framer-11brqmw, .framer-MZuN9 .framer-1hriwj4 { width: 100%; } .framer-MZuN9 .framer-18xlmyd { flex-direction: column; order: 1; } .framer-MZuN9 .framer-1w4qa3w, .framer-MZuN9 .framer-vl5phk { flex: none; width: 100%; } .framer-MZuN9 .framer-h427p7-container, .framer-MZuN9 .framer-1rfp8u7-container { order: 1; } .framer-MZuN9 .framer-o8d736 { flex-direction: column; padding: 0px 15px 0px 15px; } .framer-MZuN9 .framer-1o3ij01 { order: 0; padding: 0px 15px 0px 15px; width: 100%; } .framer-MZuN9 .framer-1g8f2pr-container { flex: none; order: 1; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-MZuN9.framer-hybdqr, .framer-MZuN9 .framer-18xlmyd, .framer-MZuN9 .framer-o8d736 { gap: 0px; } .framer-MZuN9.framer-hybdqr > *, .framer-MZuN9 .framer-o8d736 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-MZuN9.framer-hybdqr > :first-child, .framer-MZuN9 .framer-18xlmyd > :first-child, .framer-MZuN9 .framer-o8d736 > :first-child { margin-top: 0px; } .framer-MZuN9.framer-hybdqr > :last-child, .framer-MZuN9 .framer-18xlmyd > :last-child, .framer-MZuN9 .framer-o8d736 > :last-child { margin-bottom: 0px; } .framer-MZuN9 .framer-18xlmyd > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }}\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-MZuN9.framer-hybdqr { gap: 90px; width: 810px; } .framer-MZuN9 .framer-14045sd { padding: 140px 25px 0px 25px; } .framer-MZuN9 .framer-azyx24-container, .framer-MZuN9 .framer-mv3w9x-container { height: var(--framer-aspect-ratio-supported, 24px); } .framer-MZuN9 .framer-1qhej9r-container, .framer-MZuN9 .framer-16yn2lo-container { height: var(--framer-aspect-ratio-supported, 28px); } .framer-MZuN9 .framer-k3n9hl { padding: 0px 25px 0px 25px; } .framer-MZuN9 .framer-jqf6do, .framer-MZuN9 .framer-18xtcdf, .framer-MZuN9 .framer-hjre6y { order: 0; } .framer-MZuN9 .framer-18xlmyd, .framer-MZuN9 .framer-h427p7-container, .framer-MZuN9 .framer-1rfp8u7-container { order: 1; } .framer-MZuN9 .framer-s3rxiu, .framer-MZuN9 .framer-1jedqir { padding: 0px; } .framer-MZuN9 .framer-o8d736 { flex-direction: column; padding: 0px 25px 0px 25px; } .framer-MZuN9 .framer-1o3ij01 { order: 0; width: 100%; } .framer-MZuN9 .framer-1g8f2pr-container { flex: none; order: 1; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-MZuN9.framer-hybdqr, .framer-MZuN9 .framer-o8d736 { gap: 0px; } .framer-MZuN9.framer-hybdqr > * { margin: 0px; margin-bottom: calc(90px / 2); margin-top: calc(90px / 2); } .framer-MZuN9.framer-hybdqr > :first-child, .framer-MZuN9 .framer-o8d736 > :first-child { margin-top: 0px; } .framer-MZuN9.framer-hybdqr > :last-child, .framer-MZuN9 .framer-o8d736 > :last-child { margin-bottom: 0px; } .framer-MZuN9 .framer-o8d736 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5926\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"UJo5M36ek\":{\"layout\":[\"fixed\",\"auto\"]},\"rboITrIso\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerLayoutTemplateProps {\"aV_Ffu5sh\":{\"href\":{\"webPageId\":\"kW5QAP_yC\",\"hash\":\":Mk2VcApuj\"},\"refKey\":true},\"xruG8Bdj1\":\"avORpAe19\",\"l_zTGzjO0\":\"WrT9tQBBF\",\"HaUpephZL\":\"i3Nwc9jDZ\"}\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"wbjcTfAmS\":{\"pattern\":\":wbjcTfAmS\",\"name\":\"hero\"},\"lUcIS5Yw9\":{\"pattern\":\":lUcIS5Yw9\",\"name\":\"gallery\"},\"M5x2dq66s\":{\"pattern\":\":M5x2dq66s\",\"name\":\"nearby-location\"},\"nGYrdvzwB\":{\"pattern\":\":nGYrdvzwB\",\"name\":\"map-location\"},\"Mk2VcApuj\":{\"pattern\":\":Mk2VcApuj\",\"name\":\"properties\"}}\n * @framerResponsiveScreen\n */const FramerkW5QAP_yC=withCSS(Component,css,\"framer-MZuN9\");export default FramerkW5QAP_yC;FramerkW5QAP_yC.displayName=\"Aboutus\";FramerkW5QAP_yC.defaultProps={height:5926,width:1200};addFonts(FramerkW5QAP_yC,[{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:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/urbanist/v15/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDyx4fE5OrS8SlKw.woff2\",weight:\"400\"}]},...SVGFonts,...ButtonFonts,...BadgeFonts,...SlideshowFonts,...GoogleMapsFonts,...PropertyCarouselFonts,...SmoothScrollFonts,...CustomCursorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerkW5QAP_yC\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerScrollSections\":\"{\\\"wbjcTfAmS\\\":{\\\"pattern\\\":\\\":wbjcTfAmS\\\",\\\"name\\\":\\\"hero\\\"},\\\"lUcIS5Yw9\\\":{\\\"pattern\\\":\\\":lUcIS5Yw9\\\",\\\"name\\\":\\\"gallery\\\"},\\\"M5x2dq66s\\\":{\\\"pattern\\\":\\\":M5x2dq66s\\\",\\\"name\\\":\\\"nearby-location\\\"},\\\"nGYrdvzwB\\\":{\\\"pattern\\\":\\\":nGYrdvzwB\\\",\\\"name\\\":\\\"map-location\\\"},\\\"Mk2VcApuj\\\":{\\\"pattern\\\":\\\":Mk2VcApuj\\\",\\\"name\\\":\\\"properties\\\"}}\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UJo5M36ek\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rboITrIso\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicWidth\":\"1200\",\"framerIntrinsicHeight\":\"5926\",\"framerLayoutTemplateProps\":\"{\\\"aV_Ffu5sh\\\":{\\\"href\\\":{\\\"webPageId\\\":\\\"kW5QAP_yC\\\",\\\"hash\\\":\\\":Mk2VcApuj\\\"},\\\"refKey\\\":true},\\\"xruG8Bdj1\\\":\\\"avORpAe19\\\",\\\"l_zTGzjO0\\\":\\\"WrT9tQBBF\\\",\\\"HaUpephZL\\\":\\\"i3Nwc9jDZ\\\"}\",\"framerAcceptsLayoutTemplate\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["isBrowser", "usePageVisibility", "isVisible", "setIsVisible", "ye", "ue", "onVisibilityChange", "OPACITY_0", "awaitRefCallback", "element", "controller", "refCallbackResolve", "refCallbackPromise", "resolve", "reject", "current", "node", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "firstChild", "lastChild", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "viewportLength", "window", "Z", "scheduleMeasure", "frame", "fe", "initialResize", "ue", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "visibilityRef", "isInView", "useInView", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "setDelta", "delta", "setPage", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "Y", "slideKey", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "visibility", "mix", "LayoutGroup", "q", "selectedOpacity", "total", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "SVGFonts", "getFonts", "SVG_Prod_default", "RichTextWithOptimizedAppearEffect", "withOptimizedAppearEffect", "RichText2", "ButtonFonts", "s19kqWzwC_default", "MotionDivWithFX", "withFX", "motion", "ImageWithFX", "Image2", "BadgeFonts", "e4Nw5o3Q1_default", "RichTextWithFX", "SlideshowFonts", "Slideshow", "ContainerWithFX", "Container", "GoogleMapsFonts", "GoogleMaps", "PropertyCarouselFonts", "B8TQW_quH_default", "SmoothScrollFonts", "SmoothScroll", "CustomCursorFonts", "mj875Rm3P_default", "breakpoints", "serializationHash", "variantClassNames", "animation", "transition1", "textEffect", "toResponsiveImage", "value", "animation1", "transition2", "transition3", "numberToString", "options", "activeLocale", "fallbackLocale", "locale", "useGrouping", "notation", "compactDisplay", "style", "currency", "currencyDisplay", "unit", "unitDisplay", "minimumFractionDigits", "maximumFractionDigits", "minimumIntegerDigits", "formatOptions", "number", "suffix", "transition4", "animation2", "animation3", "transition5", "isSet", "transition6", "transition7", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "cursor", "mj875Rm3P_default", "Component", "Y", "ref", "setLocale", "useLocaleInfo", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "useQueryData", "SAiEKZXtR_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "className", "layoutId", "variant", "IIeVFlG3H", "d4RE61Eo0", "dcERDv01p", "H7u5mPDED", "yrORUPMiv", "mNxBqTwi3", "vEZD5uSki", "Qf4srNrnX", "MnNvfbmy_", "xoDqVldQl", "hAbdeVeZJ", "RUTn5vHr9", "fuVe737_P", "ns4cw40St", "ixjdrpolK", "rMm7onOS2", "NGH59Sjad", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "ref1", "pe", "elementId", "useRouteElementId", "ref2", "activeLocaleCode", "useLocaleCode", "textContent", "textContent1", "enumToDisplayNameFunctions", "textContent2", "textContent3", "router", "useRouter", "elementId1", "ref3", "visible", "visible1", "visible2", "visible3", "elementId2", "ref4", "elementId3", "ref5", "elementId4", "dynamicRef", "useSiteRefs", "defaultLayoutId", "ae", "useCustomCursors", "componentViewport", "useComponentViewport", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "PropertyOverrides2", "x", "RichText2", "getLoadingLazyAtYPosition", "ImageWithFX", "MotionDivWithFX", "ComponentViewportProvider", "Container", "SVG_Prod_default", "RichTextWithOptimizedAppearEffect", "ResolveLinks", "resolvedLinks", "s19kqWzwC_default", "e4Nw5o3Q1_default", "RichTextWithFX", "ContainerWithFX", "Slideshow", "Image2", "GoogleMaps", "B8TQW_quH_default", "SmoothScroll", "css", "FramerkW5QAP_yC", "withCSS", "kW5QAP_yC_default", "addFonts", "SVGFonts", "ButtonFonts", "BadgeFonts", "SlideshowFonts", "GoogleMapsFonts", "PropertyCarouselFonts", "SmoothScrollFonts", "CustomCursorFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
