{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/Hbc0lxqGSRzFG6uMT9yO/jZfB18ggDrqER5ihmIsa/GoogleMaps.js", "ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/DDzyuYPF56TuI0bfUu2z/YouTube.js", "ssg:https://framerusercontent.com/modules/z3vwTKIlbN4xfnV4jSVC/MigM9bqYSF0S6lVO3dRN/DxFBwEjuu.js", "ssg:https://framerusercontent.com/modules/8gNrju59GARDwObcnjyY/5LGAGFF4Z9pmgArAZMHy/U5lDzGU1O.js", "ssg:https://framerusercontent.com/modules/xii92soM5WuAepu1KGpG/Ebr7xKQw9yNbskgTllAW/zNfbNVgkD.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,motion}from\"framer\";import{containerStyles,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";const coordinatesRegex=/^((?:\\-?|\\+?)?\\d+(?:\\.\\d+)?),\\s*((?:\\-?|\\+?)?\\d+(?:\\.\\d+)?)$/;/**\n * GOOGLE MAPS\n *\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 400\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function GoogleMaps({coordinates,zoom,style,...props}){const borderRadius=useRadius(props);return /*#__PURE__*/_jsx(motion.div,{style:{...style,...containerStyles,overflow:\"hidden\",borderRadius},...props,children:/*#__PURE__*/_jsx(\"iframe\",{style:{height:\"100%\",width:\"100%\",border:0},src:`https://maps.google.com/maps?q=${encodeURIComponent(coordinates)}&z=${zoom}&output=embed`})});}addPropertyControls(GoogleMaps,{coordinates:{type:ControlType.String,title:\"Location\",placeholder:\"Framer B.V.\",defaultValue:\"Framer B.V.\",description:\"The name of the place or its GPS coordinates.\"},zoom:{type:ControlType.Number,step:1,min:0,max:25,title:\"Zoom\",defaultValue:15},...borderRadiusControl});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"GoogleMaps\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"400\",\"framerIntrinsicWidth\":\"600\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./GoogleMaps.map", "import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{useReducer,useState}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,title,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==\"Off\";const showThumbnail=onCanvas||thumbnail!==\"Off\"&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/_jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL,originalSearchParams]=parsedURL;const searchParams=embedURL.searchParams;if(originalSearchParams){for(const[param,value]of originalSearchParams){searchParams.set(param,value);}}// https://developers.google.com/youtube/player_parameters\nsearchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(!showVideo){// if a browser does not support `loading=lazy`, make sure the video doesn't start playing in the background\nsearchParams.set(\"autoplay\",\"0\");}else if(isAutoplay||// when there is no thumbnail, we don't want to autoplay, unless video is started\nshowThumbnail&&showVideo){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===\"Loop\"){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}const iframeProps={title:title||\"Youtube Video\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",src:embedURL.href,frameBorder:\"0\",onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp};return /*#__PURE__*/_jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onKeyDown:startVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:// Safari sometimes struggles to render border-radius:\n// - on the canvas when changing from 0 to any other value\n// - or when rendering an iframe\nhasBorderRadius&&(showVideo||onCanvas)?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},role:\"presentation\",children:[isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),showThumbnail&&/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://i.ytimg.com\"}),/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",src:getThumbnailURL(videoId,thumbnail),style:{...videoStyle,objectFit:\"cover\"}})]}),!onCanvas?/*#__PURE__*/_jsx(\"iframe\",{loading:!showVideo?\"lazy\":undefined,style:!showVideo?{...videoStyle,display:\"none\"}:videoStyle,...iframeProps}):null,showVideo?null:/*#__PURE__*/_jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===\"Off\";}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==\"Off\";}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:\"Off\",shouldMute:true,thumbnail:\"Medium Quality\",isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL,null];}const searchParams=url.searchParams;if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");const page=pathSegments[0];// https://www.youtube.com/watch?v=Fop2oskTug8\nif(page===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL=getEmbedURL(videoId);return[videoId,embedURL,searchParams];}// https://www.youtube.com/embed/Fop2oskTug8\nif(page===\"embed\"){const videoId=pathSegments[1];return[videoId,url,searchParams];}// https://www.youtube.com/shorts/zwMEhBq4kYM / https://www.youtube.com/live/XlWSzaluBKk\nif(page===\"shorts\"||page===\"live\"){const videoId=pathSegments[1];const embedURL=getEmbedURL(videoId);return[videoId,embedURL,searchParams];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId=url.pathname.slice(1);const embedURL=getEmbedURL(videoId);return[videoId,embedURL,searchParams];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst pre=\"https://i.ytimg.com/vi_webp/\";const ext=\"webp\";switch(res){case\"Low Quality\":return`${pre}${videoId}/hqdefault.${ext}`;case\"Medium Quality\":return`${pre}${videoId}/sddefault.${ext}`;case\"High Quality\":return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/_jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/_jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/_jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/_jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/_jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"315\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"560\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "// Generated by Framer (56d1180)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Cormorant Garamond-regular\",\"GF;Cormorant Garamond-700\",\"GF;Cormorant Garamond-700italic\",\"GF;Cormorant Garamond-italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Cormorant Garamond\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/cormorantgaramond/v16/co3bmX5slCNuHLi8bLeY9MK7whWMhyjoq3FLsS6V7w.woff2\",weight:\"400\"},{family:\"Cormorant Garamond\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/cormorantgaramond/v16/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQEl5vvAWJ5heb_w.woff2\",weight:\"700\"},{family:\"Cormorant Garamond\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/cormorantgaramond/v16/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEPzvA-IxBKL_y94.woff2\",weight:\"700\"},{family:\"Cormorant Garamond\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/cormorantgaramond/v16/co3ZmX5slCNuHLi8bLeY9MK7whWMhyjYrHtKkyuF7w6C.woff2\",weight:\"400\"}]}];export const css=['.framer-79OCN .framer-styles-preset-162x3a3:not(.rich-text-wrapper), .framer-79OCN .framer-styles-preset-162x3a3.rich-text-wrapper h5 { --framer-font-family: \"Cormorant Garamond\", \"Cormorant Garamond Placeholder\", serif; --framer-font-family-bold: \"Cormorant Garamond\", \"Cormorant Garamond Placeholder\", serif; --framer-font-family-bold-italic: \"Cormorant Garamond\", \"Cormorant Garamond Placeholder\", serif; --framer-font-family-italic: \"Cormorant Garamond\", \"Cormorant Garamond Placeholder\", serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 2px; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-9690f1af-73b1-4856-86a3-60b151469b90, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: uppercase; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-79OCN .framer-styles-preset-162x3a3:not(.rich-text-wrapper), .framer-79OCN .framer-styles-preset-162x3a3.rich-text-wrapper h5 { --framer-font-family: \"Cormorant Garamond\", \"Cormorant Garamond Placeholder\", serif; --framer-font-family-bold: \"Cormorant Garamond\", \"Cormorant Garamond Placeholder\", serif; --framer-font-family-bold-italic: \"Cormorant Garamond\", \"Cormorant Garamond Placeholder\", serif; --framer-font-family-italic: \"Cormorant Garamond\", \"Cormorant Garamond Placeholder\", serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 2px; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-9690f1af-73b1-4856-86a3-60b151469b90, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: uppercase; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-79OCN .framer-styles-preset-162x3a3:not(.rich-text-wrapper), .framer-79OCN .framer-styles-preset-162x3a3.rich-text-wrapper h5 { --framer-font-family: \"Cormorant Garamond\", \"Cormorant Garamond Placeholder\", serif; --framer-font-family-bold: \"Cormorant Garamond\", \"Cormorant Garamond Placeholder\", serif; --framer-font-family-bold-italic: \"Cormorant Garamond\", \"Cormorant Garamond Placeholder\", serif; --framer-font-family-italic: \"Cormorant Garamond\", \"Cormorant Garamond Placeholder\", serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 2px; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-9690f1af-73b1-4856-86a3-60b151469b90, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: uppercase; } }'];export const className=\"framer-79OCN\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (c90df04)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-M9fA8 .framer-styles-preset-r4q802 {  }\"];export const className=\"framer-M9fA8\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (890879b)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,SVG,useActiveVariantCallback,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useQueryData,useRouter,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import GoogleMaps from\"https://framerusercontent.com/modules/Hbc0lxqGSRzFG6uMT9yO/jZfB18ggDrqER5ihmIsa/GoogleMaps.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/DDzyuYPF56TuI0bfUu2z/YouTube.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/vzgdvq3ezmf3RWurtT17/SlideShow.js\";import FooterFooter from\"#framer/local/canvasComponent/bpgLRx_fm/bpgLRx_fm.js\";import NavigationNavigationBar from\"#framer/local/canvasComponent/CDXrBD85Z/CDXrBD85Z.js\";import CTAFloating from\"#framer/local/canvasComponent/F8YMfkL9k/F8YMfkL9k.js\";import PropertyCardsSales from\"#framer/local/canvasComponent/gQLRJJzBP/gQLRJJzBP.js\";import IconsCloseIcon from\"#framer/local/canvasComponent/iTyGBGKyx/iTyGBGKyx.js\";import CMSImagePropertyDetailsImage from\"#framer/local/canvasComponent/kVisvl0aL/kVisvl0aL.js\";import FooterStatisticsBlock from\"#framer/local/canvasComponent/XPwjCI4II/XPwjCI4II.js\";import ContactUsPopupForSales from\"#framer/local/canvasComponent/YsaB4qyrN/YsaB4qyrN.js\";import PropertySales,{enumToDisplayNameFunctions}from\"#framer/local/collection/rqwUpuqhz/rqwUpuqhz.js\";import*as sharedStyle3 from\"#framer/local/css/dd_87Duto/dd_87Duto.js\";import*as sharedStyle5 from\"#framer/local/css/DxFBwEjuu/DxFBwEjuu.js\";import*as sharedStyle from\"#framer/local/css/Fxc33Ad3y/Fxc33Ad3y.js\";import*as sharedStyle2 from\"#framer/local/css/kldiaxVMl/kldiaxVMl.js\";import*as sharedStyle4 from\"#framer/local/css/U5lDzGU1O/U5lDzGU1O.js\";import*as sharedStyle1 from\"#framer/local/css/UrMGXKmhm/UrMGXKmhm.js\";import*as sharedStyle6 from\"#framer/local/css/Vdiqa4F7g/Vdiqa4F7g.js\";import metadataProvider from\"#framer/local/webPageMetadata/zNfbNVgkD/zNfbNVgkD.js\";const CTAFloatingFonts=getFonts(CTAFloating);const ContactUsPopupForSalesFonts=getFonts(ContactUsPopupForSales);const IconsCloseIconFonts=getFonts(IconsCloseIcon);const NavigationNavigationBarFonts=getFonts(NavigationNavigationBar);const ContainerWithFX=withFX(Container);const MotionDivWithFX=withFX(motion.div);const CMSImagePropertyDetailsImageFonts=getFonts(CMSImagePropertyDetailsImage);const SlideshowFonts=getFonts(Slideshow);const YouTubeFonts=getFonts(YouTube);const GoogleMapsFonts=getFonts(GoogleMaps);const PropertyCardsSalesFonts=getFonts(PropertyCardsSales);const FooterStatisticsBlockFonts=getFonts(FooterStatisticsBlock);const FooterFooterFonts=getFonts(FooterFooter);const breakpoints={Co1hG6rJ_:\"(max-width: 809px)\",DbKcudEPu:\"(min-width: 1200px)\",RWTdoYlGz:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-u3ikn\";const variantClassNames={Co1hG6rJ_:\"framer-v-1xlq4dc\",DbKcudEPu:\"framer-v-1loafdk\",RWTdoYlGz:\"framer-v-1omovmk\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const transition1={damping:20,delay:0,mass:1,stiffness:120,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-50};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:80};const transition2={damping:20,delay:0,mass:1,stiffness:80,type:\"spring\"};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"DbKcudEPu\",Phone:\"Co1hG6rJ_\",Tablet:\"RWTdoYlGz\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"DbKcudEPu\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"zNfbNVgkD\",data:PropertySales,type:\"Collection\"},select:[{collection:\"zNfbNVgkD\",name:\"mlcjGOXrn\",type:\"Identifier\"},{collection:\"zNfbNVgkD\",name:\"hr0BwsJAl\",type:\"Identifier\"},{collection:\"zNfbNVgkD\",name:\"JJmmDLtcM\",type:\"Identifier\"},{collection:\"zNfbNVgkD\",name:\"qNwaeF3rg\",type:\"Identifier\"},{collection:\"zNfbNVgkD\",name:\"BonztObEy\",type:\"Identifier\"},{collection:\"zNfbNVgkD\",name:\"h7ystWsvC\",type:\"Identifier\"},{collection:\"zNfbNVgkD\",name:\"ByZGmPmKy\",type:\"Identifier\"},{collection:\"zNfbNVgkD\",name:\"SwiykBFNr\",type:\"Identifier\"},{collection:\"zNfbNVgkD\",name:\"a0hNbc4bJ\",type:\"Identifier\"},{collection:\"zNfbNVgkD\",name:\"UOhzQlF6j\",type:\"Identifier\"},{collection:\"zNfbNVgkD\",name:\"yznxsAJwt\",type:\"Identifier\"},{collection:\"zNfbNVgkD\",name:\"RQrqIPIqF\",type:\"Identifier\"},{collection:\"zNfbNVgkD\",name:\"hasC5K9iR\",type:\"Identifier\"},{collection:\"zNfbNVgkD\",name:\"GVcvdg8ke\",type:\"Identifier\"},{collection:\"zNfbNVgkD\",name:\"j9T6akqY5\",type:\"Identifier\"},{collection:\"zNfbNVgkD\",name:\"WZS2aeYt5\",type:\"Identifier\"},{collection:\"zNfbNVgkD\",name:\"UoNjJVKzy\",type:\"Identifier\"},{collection:\"zNfbNVgkD\",name:\"mNEtu1I25\",type:\"Identifier\"},{collection:\"zNfbNVgkD\",name:\"uPHy_0yPT\",type:\"Identifier\"},{collection:\"zNfbNVgkD\",name:\"y6e5DyczL\",type:\"Identifier\"},{collection:\"zNfbNVgkD\",name:\"xoisChGAx\",type:\"Identifier\"},{collection:\"zNfbNVgkD\",name:\"qbxmgUlNA\",type:\"Identifier\"},{collection:\"zNfbNVgkD\",name:\"dTLLI7rXm\",type:\"Identifier\"},{collection:\"zNfbNVgkD\",name:\"PNv1CPS3o\",type:\"Identifier\"},{collection:\"zNfbNVgkD\",name:\"TKrJQDkXk\",type:\"Identifier\"},{collection:\"zNfbNVgkD\",name:\"uJKFCBCRN\",type:\"Identifier\"},{collection:\"zNfbNVgkD\",name:\"wP2NXemEj\",type:\"Identifier\"},{collection:\"zNfbNVgkD\",name:\"zZpQpHEmT\",type:\"Identifier\"},{collection:\"zNfbNVgkD\",name:\"FxOwB03WU\",type:\"Identifier\"},{collection:\"zNfbNVgkD\",name:\"cHTSOuDwI\",type:\"Identifier\"},{collection:\"zNfbNVgkD\",name:\"uMq0JQ63q\",type:\"Identifier\"},{collection:\"zNfbNVgkD\",name:\"cQdOmrDZb\",type:\"Identifier\"},{collection:\"zNfbNVgkD\",name:\"wpnd9q74Y\",type:\"Identifier\"},{collection:\"zNfbNVgkD\",name:\"aTRh81uQF\",type:\"Identifier\"},{collection:\"zNfbNVgkD\",name:\"n5jlViVBL\",type:\"Identifier\"},{collection:\"zNfbNVgkD\",name:\"TwdKlDzbx\",type:\"Identifier\"},{collection:\"zNfbNVgkD\",name:\"sNmVyAXf9\",type:\"Identifier\"},{collection:\"zNfbNVgkD\",name:\"vVFEsrGa4\",type:\"Identifier\"},{collection:\"zNfbNVgkD\",name:\"S7tUuF55y\",type:\"Identifier\"},{collection:\"zNfbNVgkD\",name:\"mILo0U6ho\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"zNfbNVgkD\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,mlcjGOXrn=getFromCurrentRouteData(\"mlcjGOXrn\")??\"\",JJmmDLtcM=getFromCurrentRouteData(\"JJmmDLtcM\")??\"\",cHTSOuDwI=getFromCurrentRouteData(\"cHTSOuDwI\"),uMq0JQ63q=getFromCurrentRouteData(\"uMq0JQ63q\"),wpnd9q74Y=getFromCurrentRouteData(\"wpnd9q74Y\")??\"\",qNwaeF3rg=getFromCurrentRouteData(\"qNwaeF3rg\"),aTRh81uQF=getFromCurrentRouteData(\"aTRh81uQF\")??\"\",n5jlViVBL=getFromCurrentRouteData(\"n5jlViVBL\")??\"\",TwdKlDzbx=getFromCurrentRouteData(\"TwdKlDzbx\")??\"\",sNmVyAXf9=getFromCurrentRouteData(\"sNmVyAXf9\")??\"\",vVFEsrGa4=getFromCurrentRouteData(\"vVFEsrGa4\")??\"\",BonztObEy=getFromCurrentRouteData(\"BonztObEy\"),h7ystWsvC=getFromCurrentRouteData(\"h7ystWsvC\"),ByZGmPmKy=getFromCurrentRouteData(\"ByZGmPmKy\"),SwiykBFNr=getFromCurrentRouteData(\"SwiykBFNr\"),a0hNbc4bJ=getFromCurrentRouteData(\"a0hNbc4bJ\"),UOhzQlF6j=getFromCurrentRouteData(\"UOhzQlF6j\"),yznxsAJwt=getFromCurrentRouteData(\"yznxsAJwt\"),RQrqIPIqF=getFromCurrentRouteData(\"RQrqIPIqF\"),hasC5K9iR=getFromCurrentRouteData(\"hasC5K9iR\"),GVcvdg8ke=getFromCurrentRouteData(\"GVcvdg8ke\"),j9T6akqY5=getFromCurrentRouteData(\"j9T6akqY5\"),WZS2aeYt5=getFromCurrentRouteData(\"WZS2aeYt5\"),UoNjJVKzy=getFromCurrentRouteData(\"UoNjJVKzy\"),mNEtu1I25=getFromCurrentRouteData(\"mNEtu1I25\"),uPHy_0yPT=getFromCurrentRouteData(\"uPHy_0yPT\"),y6e5DyczL=getFromCurrentRouteData(\"y6e5DyczL\"),xoisChGAx=getFromCurrentRouteData(\"xoisChGAx\"),qbxmgUlNA=getFromCurrentRouteData(\"qbxmgUlNA\"),dTLLI7rXm=getFromCurrentRouteData(\"dTLLI7rXm\"),PNv1CPS3o=getFromCurrentRouteData(\"PNv1CPS3o\"),TKrJQDkXk=getFromCurrentRouteData(\"TKrJQDkXk\"),S7tUuF55y=getFromCurrentRouteData(\"S7tUuF55y\")??\"\",FxOwB03WU=getFromCurrentRouteData(\"FxOwB03WU\")??\"\",mILo0U6ho=getFromCurrentRouteData(\"mILo0U6ho\")??\"\",qNwaeF3rgqJxrgczJG,mlcjGOXrnqJxrgczJG,JJmmDLtcMqJxrgczJG,cHTSOuDwIqJxrgczJG,uMq0JQ63qqJxrgczJG,wpnd9q74YqJxrgczJG,hr0BwsJAlqJxrgczJG,wP2NXemEjqJxrgczJG,idqJxrgczJG,zZpQpHEmT=getFromCurrentRouteData(\"zZpQpHEmT\"),cQdOmrDZb=getFromCurrentRouteData(\"cQdOmrDZb\"),hr0BwsJAl=getFromCurrentRouteData(\"hr0BwsJAl\")??\"\",wP2NXemEj=getFromCurrentRouteData(\"wP2NXemEj\"),...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const e7PotHTp43bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const cVRGnCYOj1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const textContent=enumToDisplayNameFunctions[\"cHTSOuDwI\"]?.(cHTSOuDwI,activeLocale);const textContent1=enumToDisplayNameFunctions[\"uMq0JQ63q\"]?.(uMq0JQ63q,activeLocale);const visible=isSet(qNwaeF3rg);const visible1=isSet(BonztObEy);const visible2=isSet(h7ystWsvC);const visible3=isSet(ByZGmPmKy);const visible4=isSet(SwiykBFNr);const visible5=isSet(a0hNbc4bJ);const visible6=isSet(UOhzQlF6j);const visible7=isSet(yznxsAJwt);const visible8=isSet(RQrqIPIqF);const visible9=isSet(hasC5K9iR);const visible10=isSet(GVcvdg8ke);const visible11=isSet(j9T6akqY5);const visible12=isSet(WZS2aeYt5);const visible13=isSet(UoNjJVKzy);const visible14=isSet(mNEtu1I25);const visible15=isSet(uPHy_0yPT);const visible16=isSet(y6e5DyczL);const visible17=isSet(xoisChGAx);const visible18=isSet(qbxmgUlNA);const visible19=isSet(dTLLI7rXm);const visible20=isSet(PNv1CPS3o);const visible21=isSet(TKrJQDkXk);const router=useRouter();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"DbKcudEPu\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1loafdk\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Co1hG6rJ_:{y:928},RWTdoYlGz:{y:912}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"160px\",y:896,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-1cdbj5m-container\",id:\"1cdbj5m\",layoutScroll:true,nodeId:\"GeuVX8H6v\",scopeId:\"zNfbNVgkD\",children:[/*#__PURE__*/_jsx(CTAFloating,{e7PotHTp4:e7PotHTp43bnx0g({overlay}),height:\"100%\",id:\"GeuVX8H6v\",layoutId:\"GeuVX8H6v\",style:{width:\"100%\"},variant:overlay.visible?\"QqhW660h9\":\"bEy6OW5bX\",width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{damping:20,delay:0,mass:1,stiffness:150,type:\"spring\"}},className:cx(scopingClassNames,\"framer-1799yj2\"),\"data-framer-portal-id\":\"1cdbj5m\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"VAweNgl0S\"),/*#__PURE__*/_jsx(motion.div,{className:cx(scopingClassNames,\"framer-170m6a8\"),\"data-framer-portal-id\":\"1cdbj5m\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Co1hG6rJ_:{transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-1a8tiqn-container\",inComponentSlot:true,nodeId:\"Zu7CgyvM2\",rendersWithMotion:true,scopeId:\"zNfbNVgkD\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Co1hG6rJ_:{style:{width:\"100%\"},variant:\"t4Rb4Zrne\"},RWTdoYlGz:{style:{width:\"100%\"},variant:\"xiEmMowxC\"}},children:/*#__PURE__*/_jsx(ContactUsPopupForSales,{height:\"100%\",id:\"Zu7CgyvM2\",layoutId:\"Zu7CgyvM2\",style:{height:\"100%\",width:\"100%\"},variant:\"Prm641pUf\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"32px\",children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-bj1rkh-container\"),\"data-framer-name\":\"Close-icon\",\"data-framer-portal-id\":\"1cdbj5m\",inComponentSlot:true,name:\"Close-icon\",nodeId:\"J4YhYoPTb\",rendersWithMotion:true,scopeId:\"zNfbNVgkD\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Co1hG6rJ_:{variant:\"akRttTv4R\"},RWTdoYlGz:{variant:\"akRttTv4R\"}},children:/*#__PURE__*/_jsx(IconsCloseIcon,{cVRGnCYOj:cVRGnCYOj1wnntms({overlay}),height:\"100%\",id:\"J4YhYoPTb\",layoutId:\"J4YhYoPTb\",name:\"Close-icon\",style:{height:\"100%\",width:\"100%\"},variant:\"FrtV56bYZ\",width:\"100%\"})})})})]}),getContainer())})})]})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-f36g6m\",\"data-framer-name\":\"Top\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Co1hG6rJ_:{width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`},RWTdoYlGz:{width:`calc(${componentViewport?.width||\"100vw\"} - 80px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:`calc(${componentViewport?.width||\"100vw\"} - 112px)`,y:(componentViewport?.y||0)+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:animation},__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-k40x3h-container\",nodeId:\"ZM40I21V0\",rendersWithMotion:true,scopeId:\"zNfbNVgkD\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Co1hG6rJ_:{variant:\"b43Y1HJ9X\"}},children:/*#__PURE__*/_jsx(NavigationNavigationBar,{height:\"100%\",id:\"ZM40I21V0\",layoutId:\"ZM40I21V0\",style:{width:\"100%\"},variant:\"fCVopMAr8\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xf3i4e\",\"data-framer-name\":\"Property Name, Price\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w9wlcs\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-18egl5g\",\"data-framer-name\":\"Tag\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14npl34\",\"data-styles-preset\":\"Fxc33Ad3y\",style:{\"--framer-text-color\":\"var(--token-9690f1af-73b1-4856-86a3-60b151469b90, rgb(46, 65, 87))\"},children:\"Sales\"})}),className:\"framer-vrli0d\",\"data-framer-name\":\"Sales\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Co1hG6rJ_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-11ff4tf\",\"data-styles-preset\":\"UrMGXKmhm\",style:{\"--framer-text-color\":\"var(--token-ebf30c9d-e4c4-4efc-bab5-5099c2b4a033, rgb(255, 255, 255))\"},children:\"Single apartment\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-11ff4tf\",\"data-styles-preset\":\"UrMGXKmhm\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-ebf30c9d-e4c4-4efc-bab5-5099c2b4a033, rgb(255, 255, 255))\"},children:\"Single apartment\"})}),className:\"framer-p5s61u\",\"data-framer-name\":\"Gorgeous Villa for Rent\",fonts:[\"Inter\"],text:mlcjGOXrn,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Co1hG6rJ_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7QWZhY2FkIEZsdXgtMjAw\",\"--framer-font-family\":'\"Afacad Flux\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"200\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-ebf30c9d-e4c4-4efc-bab5-5099c2b4a033, rgb(255, 255, 255))\"},children:\"$3,950,000\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7QWZhY2FkIEZsdXgtMjAw\",\"--framer-font-family\":'\"Afacad Flux\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"200\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"36px\",\"--framer-text-color\":\"var(--token-ebf30c9d-e4c4-4efc-bab5-5099c2b4a033, rgb(255, 255, 255))\"},children:\"$3,950,000\"})}),className:\"framer-1gzk5ll\",\"data-framer-name\":\"Gorgeous Villa for Rent\",fonts:[\"GF;Afacad Flux-200\"],text:JJmmDLtcM,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14kx0n0\",\"data-framer-name\":\"Metadata\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4e2l5h\",\"data-framer-name\":\"Bedroom\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-otn4lx\",\"data-styles-preset\":\"kldiaxVMl\",style:{\"--framer-text-color\":\"var(--token-ebf30c9d-e4c4-4efc-bab5-5099c2b4a033, rgb(255, 255, 255))\"},children:\"02\"})}),className:\"framer-1shvd72\",\"data-framer-name\":\"03\",fonts:[\"Inter\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-otn4lx\",\"data-styles-preset\":\"kldiaxVMl\",style:{\"--framer-text-color\":\"var(--token-ebf30c9d-e4c4-4efc-bab5-5099c2b4a033, rgb(255, 255, 255))\"},children:\"Bedrooms\"})}),className:\"framer-1l4s2v0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10idsy\",\"data-framer-name\":\"Bathroom\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-otn4lx\",\"data-styles-preset\":\"kldiaxVMl\",style:{\"--framer-text-color\":\"var(--token-ebf30c9d-e4c4-4efc-bab5-5099c2b4a033, rgb(255, 255, 255))\"},children:\"04+\"})}),className:\"framer-1ud5tno\",\"data-framer-name\":\"04\",fonts:[\"Inter\"],text:textContent1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-otn4lx\",\"data-styles-preset\":\"kldiaxVMl\",style:{\"--framer-text-color\":\"var(--token-ebf30c9d-e4c4-4efc-bab5-5099c2b4a033, rgb(255, 255, 255))\"},children:\"Bathrooms\"})}),className:\"framer-149x0nz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ven3kb\",\"data-framer-name\":\"Size\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-otn4lx\",\"data-styles-preset\":\"kldiaxVMl\",style:{\"--framer-text-color\":\"var(--token-ebf30c9d-e4c4-4efc-bab5-5099c2b4a033, rgb(255, 255, 255))\"},children:\"6x78.5 m2\"})}),className:\"framer-ffqo6p\",\"data-framer-name\":\"6x78.5 m2\",fonts:[\"Inter\"],text:wpnd9q74Y,verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13l0ei0\",\"data-framer-name\":\"Gradient\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0),pixelHeight:1e3,pixelWidth:1920,sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(qNwaeF3rg)},className:\"framer-19necr1\",\"data-framer-name\":\"Image\"})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-5iie5b\",\"data-framer-name\":\"Main\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1722c0r\",\"data-framer-name\":\"Description\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-11ff4tf\",\"data-styles-preset\":\"UrMGXKmhm\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9690f1af-73b1-4856-86a3-60b151469b90, rgb(46, 65, 87))\"},children:\"Description\"})}),className:\"framer-1njauug\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:aTRh81uQF,className:\"framer-1oyuxin\",\"data-framer-name\":\"This property is mostly wooded and sits high on a hilltop overlooking the Mohawk River Valley. Located right in the heart of Upstate NYs Amish farm Country, this land is certified organic making it extremely rare! Good road frontage on a paved county road with utilities make it an amazing setting for your dream country getaway! If you like views, you must see this property! Mckinley Hill is situated inside Fort Bonifacio which is a 50 hectares owned by Megaworld. Mckinley Hill is Said to be the Biggest and Grandest Development in Metro manila as of Today. what\u2019s nice about Mckinley Hill this whole 50 hectare is a Master.\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-aexbeb\",h1:\"framer-styles-preset-o3e5h0\",h2:\"framer-styles-preset-1m9bzi2\",h3:\"framer-styles-preset-ci2ngw\",img:\"framer-styles-preset-r4q802\",p:\"framer-styles-preset-1fpjbqc\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1a1wg3\",\"data-framer-name\":\"Amenities & Features\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-11ff4tf\",\"data-styles-preset\":\"UrMGXKmhm\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9690f1af-73b1-4856-86a3-60b151469b90, rgb(46, 65, 87))\"},children:\"Amenities & Features\"})}),className:\"framer-ceu2uo\",\"data-framer-name\":\"Amenities & Features\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o54zd9\",\"data-framer-name\":\"Feature\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2rng83\",\"data-framer-name\":\"Feature\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qg9ltc\",\"data-border\":true,\"data-framer-name\":\"Feature\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-162x3a3\",\"data-styles-preset\":\"DxFBwEjuu\",style:{\"--framer-text-color\":\"var(--token-9690f1af-73b1-4856-86a3-60b151469b90, rgb(46, 65, 87))\"},children:\"Interior Details\"})}),className:\"framer-njm2c9\",\"data-framer-name\":\"Interior Details\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-udqgxa\",\"data-framer-name\":\"Feature\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-otn4lx\",\"data-styles-preset\":\"kldiaxVMl\",children:[\"- Gym/Exercise Room\",/*#__PURE__*/_jsx(\"br\",{}),\"- Spa Room\",/*#__PURE__*/_jsx(\"br\",{}),\"- Game Room\",/*#__PURE__*/_jsx(\"br\",{}),\"- Breakfast Nook\",/*#__PURE__*/_jsx(\"br\",{}),\"- Sauna\",/*#__PURE__*/_jsx(\"br\",{}),\"- Basement\",/*#__PURE__*/_jsx(\"br\",{}),\"- Wet Bar\"]})}),className:\"framer-684p7o\",\"data-framer-name\":\"Equipped Kitchen\",fonts:[\"Inter\"],text:n5jlViVBL,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-znvz2a\",\"data-framer-name\":\"Feature\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qwpxhw\",\"data-border\":true,\"data-framer-name\":\"Feature\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-162x3a3\",\"data-styles-preset\":\"DxFBwEjuu\",style:{\"--framer-text-color\":\"var(--token-9690f1af-73b1-4856-86a3-60b151469b90, rgb(46, 65, 87))\"},children:\"Outdoor details\"})}),className:\"framer-re06my\",\"data-framer-name\":\"Interior Details\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-pj5kjf\",\"data-framer-name\":\"Feature\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-otn4lx\",\"data-styles-preset\":\"kldiaxVMl\",children:[\"- Patio\",/*#__PURE__*/_jsx(\"br\",{}),\"- Outdoor Fireplace\",/*#__PURE__*/_jsx(\"br\",{}),\"- Gazebo\",/*#__PURE__*/_jsx(\"br\",{}),\"- Outdoor Dining Area\",/*#__PURE__*/_jsx(\"br\",{}),\"- Pergola\",/*#__PURE__*/_jsx(\"br\",{}),\"- Garden Pathways\",/*#__PURE__*/_jsx(\"br\",{}),\"- Outdoor Barbecue\"]})}),className:\"framer-13rdahw\",\"data-framer-name\":\"Backyard\",fonts:[\"Inter\"],text:TwdKlDzbx,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ovllco\",\"data-framer-name\":\"Feature\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-9vjqcw\",\"data-border\":true,\"data-framer-name\":\"Feature\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-162x3a3\",\"data-styles-preset\":\"DxFBwEjuu\",style:{\"--framer-text-color\":\"var(--token-9690f1af-73b1-4856-86a3-60b151469b90, rgb(46, 65, 87))\"},children:\"Other Features\"})}),className:\"framer-16yj665\",\"data-framer-name\":\"Interior Details\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-me19p2\",\"data-framer-name\":\"Feature\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-otn4lx\",\"data-styles-preset\":\"kldiaxVMl\",children:[\"- Chair Accessible\",/*#__PURE__*/_jsx(\"br\",{}),\"- Elevator\",/*#__PURE__*/_jsx(\"br\",{}),\"- Fireplace\",/*#__PURE__*/_jsx(\"br\",{}),\"- Smoke detectors\",/*#__PURE__*/_jsx(\"br\",{}),\"- Washer and dryer\",/*#__PURE__*/_jsx(\"br\",{}),\"- WiFi\"]})}),className:\"framer-a498nt\",\"data-framer-name\":\"Chair Accessible\",fonts:[\"Inter\"],text:sNmVyAXf9,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-l9zk6f\",\"data-framer-name\":\"Feature\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jmx8o4\",\"data-border\":true,\"data-framer-name\":\"Feature\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-162x3a3\",\"data-styles-preset\":\"DxFBwEjuu\",style:{\"--framer-text-color\":\"var(--token-9690f1af-73b1-4856-86a3-60b151469b90, rgb(46, 65, 87))\"},children:\"Outgoings\"})}),className:\"framer-1lngbjs\",\"data-framer-name\":\"Interior Details\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ylwb6u\",\"data-framer-name\":\"Feature\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-otn4lx\",\"data-styles-preset\":\"kldiaxVMl\",children:[\"- Central Air\",/*#__PURE__*/_jsx(\"br\",{}),\"- Electricity\",/*#__PURE__*/_jsx(\"br\",{}),\"- Heating\",/*#__PURE__*/_jsx(\"br\",{}),\"- Natural Gas\",/*#__PURE__*/_jsx(\"br\",{}),\"- Ventilation\",/*#__PURE__*/_jsx(\"br\",{}),\"- Water\"]})}),className:\"framer-ge1brk\",\"data-framer-name\":\"Central Air\",fonts:[\"Inter\"],text:vVFEsrGa4,verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1txnmyl-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"sXMJEoe4s\",scopeId:\"zNfbNVgkD\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Co1hG6rJ_:{style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(255, 255, 255, 0.5)\",arrowGap:10,arrowPadding:25,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,leftArrow:\"https://framerusercontent.com/images/bSH8dpZ9gcmQORKbISKsXv7hl1o.png\",rightArrow:\"https://framerusercontent.com/images/utcGXO9oSlbWArePt3kx2oZWCgc.png\",showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1,playOffscreen:false},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:0,height:\"100%\",id:\"sXMJEoe4s\",intervalControl:5,itemAmount:1,layoutId:\"sXMJEoe4s\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:16,dotsRadius:50,showProgressDots:true},slots:[visible&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:220,width:\"340px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-2iqfpy-container\",inComponentSlot:true,nodeId:\"aswYq_ifP\",rendersWithMotion:true,scopeId:\"zNfbNVgkD\",children:/*#__PURE__*/_jsx(CMSImagePropertyDetailsImage,{height:\"100%\",id:\"aswYq_ifP\",layoutId:\"aswYq_ifP\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",YvqhwEYgl:toResponsiveImage(qNwaeF3rg)})})}),visible1&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:220,width:\"340px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-mmtnjm-container\",inComponentSlot:true,nodeId:\"l9FKfHOur\",rendersWithMotion:true,scopeId:\"zNfbNVgkD\",children:/*#__PURE__*/_jsx(CMSImagePropertyDetailsImage,{height:\"100%\",id:\"l9FKfHOur\",layoutId:\"l9FKfHOur\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",YvqhwEYgl:toResponsiveImage(BonztObEy)})})}),visible2&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:220,width:\"340px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-i7pzyn-container\",inComponentSlot:true,nodeId:\"hvaGzAOiG\",rendersWithMotion:true,scopeId:\"zNfbNVgkD\",children:/*#__PURE__*/_jsx(CMSImagePropertyDetailsImage,{height:\"100%\",id:\"hvaGzAOiG\",layoutId:\"hvaGzAOiG\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",YvqhwEYgl:toResponsiveImage(h7ystWsvC)})})}),visible3&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:220,width:\"340px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lxxnqn-container\",inComponentSlot:true,nodeId:\"UFNN_f576\",rendersWithMotion:true,scopeId:\"zNfbNVgkD\",children:/*#__PURE__*/_jsx(CMSImagePropertyDetailsImage,{height:\"100%\",id:\"UFNN_f576\",layoutId:\"UFNN_f576\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",YvqhwEYgl:toResponsiveImage(ByZGmPmKy)})})}),visible4&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:220,width:\"340px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-92673j-container\",inComponentSlot:true,nodeId:\"q9W_Bdw9Y\",rendersWithMotion:true,scopeId:\"zNfbNVgkD\",children:/*#__PURE__*/_jsx(CMSImagePropertyDetailsImage,{height:\"100%\",id:\"q9W_Bdw9Y\",layoutId:\"q9W_Bdw9Y\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",YvqhwEYgl:toResponsiveImage(SwiykBFNr)})})}),visible5&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:220,width:\"340px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-680070-container\",inComponentSlot:true,nodeId:\"oyWcujdxj\",rendersWithMotion:true,scopeId:\"zNfbNVgkD\",children:/*#__PURE__*/_jsx(CMSImagePropertyDetailsImage,{height:\"100%\",id:\"oyWcujdxj\",layoutId:\"oyWcujdxj\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",YvqhwEYgl:toResponsiveImage(a0hNbc4bJ)})})}),visible6&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:220,width:\"340px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-ch0kpz-container\",inComponentSlot:true,nodeId:\"qBUVyzC7b\",rendersWithMotion:true,scopeId:\"zNfbNVgkD\",children:/*#__PURE__*/_jsx(CMSImagePropertyDetailsImage,{height:\"100%\",id:\"qBUVyzC7b\",layoutId:\"qBUVyzC7b\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",YvqhwEYgl:toResponsiveImage(UOhzQlF6j)})})}),visible7&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:220,width:\"340px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1s3x0lt-container\",inComponentSlot:true,nodeId:\"Aivcviu9i\",rendersWithMotion:true,scopeId:\"zNfbNVgkD\",children:/*#__PURE__*/_jsx(CMSImagePropertyDetailsImage,{height:\"100%\",id:\"Aivcviu9i\",layoutId:\"Aivcviu9i\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",YvqhwEYgl:toResponsiveImage(yznxsAJwt)})})}),visible8&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:220,width:\"340px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-td9e8v-container\",inComponentSlot:true,nodeId:\"KRcIZ4lzu\",rendersWithMotion:true,scopeId:\"zNfbNVgkD\",children:/*#__PURE__*/_jsx(CMSImagePropertyDetailsImage,{height:\"100%\",id:\"KRcIZ4lzu\",layoutId:\"KRcIZ4lzu\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",YvqhwEYgl:toResponsiveImage(RQrqIPIqF)})})}),visible9&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:220,width:\"340px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lg6wzo-container\",inComponentSlot:true,nodeId:\"Paijge6Pu\",rendersWithMotion:true,scopeId:\"zNfbNVgkD\",children:/*#__PURE__*/_jsx(CMSImagePropertyDetailsImage,{height:\"100%\",id:\"Paijge6Pu\",layoutId:\"Paijge6Pu\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",YvqhwEYgl:toResponsiveImage(hasC5K9iR)})})}),visible10&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:220,width:\"340px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-eha2vg-container\",inComponentSlot:true,nodeId:\"ygR_xIxe6\",rendersWithMotion:true,scopeId:\"zNfbNVgkD\",children:/*#__PURE__*/_jsx(CMSImagePropertyDetailsImage,{height:\"100%\",id:\"ygR_xIxe6\",layoutId:\"ygR_xIxe6\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",YvqhwEYgl:toResponsiveImage(GVcvdg8ke)})})}),visible11&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:220,width:\"340px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1210285-container\",inComponentSlot:true,nodeId:\"dFtgSOtH4\",rendersWithMotion:true,scopeId:\"zNfbNVgkD\",children:/*#__PURE__*/_jsx(CMSImagePropertyDetailsImage,{height:\"100%\",id:\"dFtgSOtH4\",layoutId:\"dFtgSOtH4\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",YvqhwEYgl:toResponsiveImage(j9T6akqY5)})})}),visible12&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:220,width:\"340px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ae70hc-container\",inComponentSlot:true,nodeId:\"fNFqih4sI\",rendersWithMotion:true,scopeId:\"zNfbNVgkD\",children:/*#__PURE__*/_jsx(CMSImagePropertyDetailsImage,{height:\"100%\",id:\"fNFqih4sI\",layoutId:\"fNFqih4sI\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",YvqhwEYgl:toResponsiveImage(WZS2aeYt5)})})}),visible13&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:220,width:\"340px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-98nge1-container\",inComponentSlot:true,nodeId:\"THKxOuRZT\",rendersWithMotion:true,scopeId:\"zNfbNVgkD\",children:/*#__PURE__*/_jsx(CMSImagePropertyDetailsImage,{height:\"100%\",id:\"THKxOuRZT\",layoutId:\"THKxOuRZT\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",YvqhwEYgl:toResponsiveImage(UoNjJVKzy)})})}),visible14&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:220,width:\"340px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-bithsu-container\",inComponentSlot:true,nodeId:\"AirWKFHaj\",rendersWithMotion:true,scopeId:\"zNfbNVgkD\",children:/*#__PURE__*/_jsx(CMSImagePropertyDetailsImage,{height:\"100%\",id:\"AirWKFHaj\",layoutId:\"AirWKFHaj\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",YvqhwEYgl:toResponsiveImage(mNEtu1I25)})})}),visible15&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:220,width:\"340px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-2zfpqp-container\",inComponentSlot:true,nodeId:\"iGbsgil6z\",rendersWithMotion:true,scopeId:\"zNfbNVgkD\",children:/*#__PURE__*/_jsx(CMSImagePropertyDetailsImage,{height:\"100%\",id:\"iGbsgil6z\",layoutId:\"iGbsgil6z\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",YvqhwEYgl:toResponsiveImage(uPHy_0yPT)})})}),visible16&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:220,width:\"340px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-rd4qme-container\",inComponentSlot:true,nodeId:\"qmuzhnyQi\",rendersWithMotion:true,scopeId:\"zNfbNVgkD\",children:/*#__PURE__*/_jsx(CMSImagePropertyDetailsImage,{height:\"100%\",id:\"qmuzhnyQi\",layoutId:\"qmuzhnyQi\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",YvqhwEYgl:toResponsiveImage(y6e5DyczL)})})}),visible17&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:220,width:\"340px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-hfa9c7-container\",inComponentSlot:true,nodeId:\"mBMmPYdSt\",rendersWithMotion:true,scopeId:\"zNfbNVgkD\",children:/*#__PURE__*/_jsx(CMSImagePropertyDetailsImage,{height:\"100%\",id:\"mBMmPYdSt\",layoutId:\"mBMmPYdSt\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",YvqhwEYgl:toResponsiveImage(xoisChGAx)})})}),visible18&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:220,width:\"340px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-iwj58d-container\",inComponentSlot:true,nodeId:\"voyEzSoq0\",rendersWithMotion:true,scopeId:\"zNfbNVgkD\",children:/*#__PURE__*/_jsx(CMSImagePropertyDetailsImage,{height:\"100%\",id:\"voyEzSoq0\",layoutId:\"voyEzSoq0\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",YvqhwEYgl:toResponsiveImage(qbxmgUlNA)})})}),visible19&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:220,width:\"340px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-y670ng-container\",inComponentSlot:true,nodeId:\"BwUDlUVf2\",rendersWithMotion:true,scopeId:\"zNfbNVgkD\",children:/*#__PURE__*/_jsx(CMSImagePropertyDetailsImage,{height:\"100%\",id:\"BwUDlUVf2\",layoutId:\"BwUDlUVf2\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",YvqhwEYgl:toResponsiveImage(dTLLI7rXm)})})}),visible20&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:220,width:\"340px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-dtm6dz-container\",inComponentSlot:true,nodeId:\"VniTREMvh\",rendersWithMotion:true,scopeId:\"zNfbNVgkD\",children:/*#__PURE__*/_jsx(CMSImagePropertyDetailsImage,{height:\"100%\",id:\"VniTREMvh\",layoutId:\"VniTREMvh\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",YvqhwEYgl:toResponsiveImage(PNv1CPS3o)})})}),visible21&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:220,width:\"340px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-eiyc6o-container\",inComponentSlot:true,nodeId:\"ak4Hwnlzn\",rendersWithMotion:true,scopeId:\"zNfbNVgkD\",children:/*#__PURE__*/_jsx(CMSImagePropertyDetailsImage,{height:\"100%\",id:\"ak4Hwnlzn\",layoutId:\"ak4Hwnlzn\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",YvqhwEYgl:toResponsiveImage(TKrJQDkXk)})})})],startFrom:0,style:{height:\"100%\",maxHeight:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qmts4a\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-9kla17\",\"data-framer-name\":\"Youtube\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1680e99-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"xDal9IJ2Q\",rendersWithMotion:true,scopeId:\"zNfbNVgkD\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"xDal9IJ2Q\",isMixedBorderRadius:false,isRed:true,layoutId:\"xDal9IJ2Q\",play:\"Off\",shouldMute:true,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:S7tUuF55y,width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xqqav1\",\"data-framer-name\":\"Map\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-epk5ca\",\"data-framer-name\":\"Address\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-my715m\",\"data-framer-name\":\"Address\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-140ci2\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-msc10t\",\"data-framer-name\":\"map-pin\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.5 8.33325C17.5 14.1666 10 19.1666 10 19.1666C10 19.1666 2.5 14.1666 2.5 8.33325C2.5 6.34413 3.29018 4.43647 4.6967 3.02995C6.10322 1.62343 8.01088 0.833252 10 0.833252C11.9891 0.833252 13.8968 1.62343 15.3033 3.02995C16.7098 4.43647 17.5 6.34413 17.5 8.33325Z\" stroke=\"#2E4157\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M10 10.8333C11.3807 10.8333 12.5 9.71396 12.5 8.33325C12.5 6.95254 11.3807 5.83325 10 5.83325C8.61929 5.83325 7.5 6.95254 7.5 8.33325C7.5 9.71396 8.61929 10.8333 10 10.8333Z\" stroke=\"#2E4157\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Co1hG6rJ_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1fpjbqc\",\"data-styles-preset\":\"dd_87Duto\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-9690f1af-73b1-4856-86a3-60b151469b90, rgb(46, 65, 87))\"},children:\"Apes Hill Barbados Golf Resort & Community, St James, Barbados\"})})},RWTdoYlGz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1fpjbqc\",\"data-styles-preset\":\"dd_87Duto\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-9690f1af-73b1-4856-86a3-60b151469b90, rgb(46, 65, 87))\"},children:\"Apes Hill Barbados Golf Resort & Community, St James, Barbados\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1fpjbqc\",\"data-styles-preset\":\"dd_87Duto\",style:{\"--framer-text-color\":\"var(--token-9690f1af-73b1-4856-86a3-60b151469b90, rgb(46, 65, 87))\"},children:\"Apes Hill Barbados Golf Resort & Community, St James, Barbados\"})}),className:\"framer-a35f2m\",\"data-framer-name\":\"425, Field Kent, Kent, UK\",fonts:[\"Inter\"],text:FxOwB03WU,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__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-d4bt2p-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"hNm4iTIYX\",rendersWithMotion:true,scopeId:\"zNfbNVgkD\",children:/*#__PURE__*/_jsx(GoogleMaps,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,coordinates:mILo0U6ho,height:\"100%\",id:\"hNm4iTIYX\",isMixedBorderRadius:false,layoutId:\"hNm4iTIYX\",style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,width:\"100%\",zoom:15})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ygqry9\",\"data-framer-name\":\"SIMILAR PROPERTIES\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Co1hG6rJ_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-utqn72\",\"data-styles-preset\":\"Vdiqa4F7g\",style:{\"--framer-text-alignment\":\"center\"},children:\"You May Also Like\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-11ff4tf\",\"data-styles-preset\":\"UrMGXKmhm\",style:{\"--framer-text-alignment\":\"center\"},children:\"You May Also Like\"})}),className:\"framer-s3i0fw\",\"data-framer-name\":\"SIMILAR PROPERTIES\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-l9uyl\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RWTdoYlGz:{query:{from:{alias:\"qJxrgczJG\",data:PropertySales,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"qJxrgczJG\",name:\"qNwaeF3rg\",type:\"Identifier\"},{collection:\"qJxrgczJG\",name:\"mlcjGOXrn\",type:\"Identifier\"},{collection:\"qJxrgczJG\",name:\"JJmmDLtcM\",type:\"Identifier\"},{collection:\"qJxrgczJG\",name:\"cHTSOuDwI\",type:\"Identifier\"},{collection:\"qJxrgczJG\",name:\"uMq0JQ63q\",type:\"Identifier\"},{collection:\"qJxrgczJG\",name:\"wpnd9q74Y\",type:\"Identifier\"},{collection:\"qJxrgczJG\",name:\"hr0BwsJAl\",type:\"Identifier\"},{collection:\"qJxrgczJG\",name:\"wP2NXemEj\",type:\"Identifier\"},{collection:\"qJxrgczJG\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{left:{left:{collection:\"qJxrgczJG\",name:\"wP2NXemEj\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:wP2NXemEj},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"qJxrgczJG\",name:\"zZpQpHEmT\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:zZpQpHEmT},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"qJxrgczJG\",name:\"cQdOmrDZb\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:cQdOmrDZb},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"qJxrgczJG\",name:\"i6Ye5qtyU\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"S7EitatW_\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}}},children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"qJxrgczJG\",data:PropertySales,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"qJxrgczJG\",name:\"qNwaeF3rg\",type:\"Identifier\"},{collection:\"qJxrgczJG\",name:\"mlcjGOXrn\",type:\"Identifier\"},{collection:\"qJxrgczJG\",name:\"JJmmDLtcM\",type:\"Identifier\"},{collection:\"qJxrgczJG\",name:\"cHTSOuDwI\",type:\"Identifier\"},{collection:\"qJxrgczJG\",name:\"uMq0JQ63q\",type:\"Identifier\"},{collection:\"qJxrgczJG\",name:\"wpnd9q74Y\",type:\"Identifier\"},{collection:\"qJxrgczJG\",name:\"hr0BwsJAl\",type:\"Identifier\"},{collection:\"qJxrgczJG\",name:\"wP2NXemEj\",type:\"Identifier\"},{collection:\"qJxrgczJG\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{left:{left:{collection:\"qJxrgczJG\",name:\"zZpQpHEmT\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:zZpQpHEmT},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"qJxrgczJG\",name:\"cQdOmrDZb\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:cQdOmrDZb},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"qJxrgczJG\",name:\"i6Ye5qtyU\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"S7EitatW_\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"qJxrgczJG\",name:\"hr0BwsJAl\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:hr0BwsJAl},type:\"BinaryOperation\"}},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({cHTSOuDwI:cHTSOuDwIqJxrgczJG,hr0BwsJAl:hr0BwsJAlqJxrgczJG,id:idqJxrgczJG,JJmmDLtcM:JJmmDLtcMqJxrgczJG,mlcjGOXrn:mlcjGOXrnqJxrgczJG,qNwaeF3rg:qNwaeF3rgqJxrgczJG,uMq0JQ63q:uMq0JQ63qqJxrgczJG,wP2NXemEj:wP2NXemEjqJxrgczJG,wpnd9q74Y:wpnd9q74YqJxrgczJG},index)=>{mlcjGOXrnqJxrgczJG??=\"\";JJmmDLtcMqJxrgczJG??=\"\";wpnd9q74YqJxrgczJG??=\"\";hr0BwsJAlqJxrgczJG??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`qJxrgczJG-${idqJxrgczJG}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{hr0BwsJAl:hr0BwsJAlqJxrgczJG},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{hr0BwsJAl:hr0BwsJAlqJxrgczJG},webPageId:\"zNfbNVgkD\"},implicitPathVariables:undefined},{href:{pathVariables:{hr0BwsJAl:hr0BwsJAlqJxrgczJG},webPageId:\"zNfbNVgkD\"},implicitPathVariables:undefined},{href:{pathVariables:{hr0BwsJAl:hr0BwsJAlqJxrgczJG},webPageId:\"zNfbNVgkD\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Co1hG6rJ_:{width:`max(${componentViewport?.width||\"100vw\"}, 50px)`,y:(componentViewport?.y||0)+0+3708.8+80+79+0+0},RWTdoYlGz:{width:`max(${componentViewport?.width||\"100vw\"}, 50px)`,y:(componentViewport?.y||0)+0+3154.4+80+96+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:340,width:`max((${componentViewport?.width||\"100vw\"} - 12px) / 2, 50px)`,y:(componentViewport?.y||0)+0+3639.2+100+104+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-i2c2kq-container\",nodeId:\"EGVt0JjV1\",scopeId:\"zNfbNVgkD\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Co1hG6rJ_:{BOVNazO5w:resolvedLinks[2],variant:\"Lltv8E1Em\"},RWTdoYlGz:{BOVNazO5w:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(PropertyCardsSales,{BOVNazO5w:resolvedLinks[0],BZnpvDGAe:\"\",DNe9ByU4Z:toResponsiveImage(qNwaeF3rgqJxrgczJG),dnFQEv2sR:\"\",f24uVjy__:wpnd9q74YqJxrgczJG,gsbRFEArf:mlcjGOXrnqJxrgczJG,height:\"100%\",id:\"EGVt0JjV1\",layoutId:\"EGVt0JjV1\",lI6QdNAFF:enumToDisplayNameFunctions[\"cHTSOuDwI\"]?.(cHTSOuDwIqJxrgczJG,activeLocale),mALZotUxA:enumToDisplayNameFunctions[\"wP2NXemEj\"]?.(wP2NXemEjqJxrgczJG,activeLocale),qjQWhcjRX:JJmmDLtcMqJxrgczJG,style:{width:\"100%\"},suKQda91b:enumToDisplayNameFunctions[\"uMq0JQ63q\"]?.(uMq0JQ63qqJxrgczJG,activeLocale),variant:\"Z5bBGjsce\",width:\"100%\"})})})})})})})},idqJxrgczJG);})})})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ijtgj3\",\"data-framer-name\":\"footer\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Co1hG6rJ_:{width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,y:(componentViewport?.y||0)+0+4559.8+0+0},RWTdoYlGz:{width:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,y:(componentViewport?.y||0)+0+4022.4+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:194,width:`calc(${componentViewport?.width||\"100vw\"} - 112px)`,y:(componentViewport?.y||0)+0+4535.2+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ew2tz2-container\",nodeId:\"REg22hFAH\",scopeId:\"zNfbNVgkD\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Co1hG6rJ_:{variant:\"LvasdIEuH\"},RWTdoYlGz:{variant:\"FC1n2us5i\"}},children:/*#__PURE__*/_jsx(FooterStatisticsBlock,{height:\"100%\",id:\"REg22hFAH\",layoutId:\"REg22hFAH\",style:{width:\"100%\"},variant:\"LZ97wNpKw\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Co1hG6rJ_:{width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,y:(componentViewport?.y||0)+0+4559.8+0+194},RWTdoYlGz:{width:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,y:(componentViewport?.y||0)+0+4022.4+0+194}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:216,width:`calc(${componentViewport?.width||\"100vw\"} - 112px)`,y:(componentViewport?.y||0)+0+4535.2+0+194,children:/*#__PURE__*/_jsx(Container,{className:\"framer-174nkvl-container\",nodeId:\"G19C57WzN\",scopeId:\"zNfbNVgkD\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Co1hG6rJ_:{variant:\"IgwxYtcaq\"},RWTdoYlGz:{variant:\"QJYDdCUjp\"}},children:/*#__PURE__*/_jsx(FooterFooter,{height:\"100%\",id:\"G19C57WzN\",layoutId:\"G19C57WzN\",style:{width:\"100%\"},variant:\"cv6Gpapk1\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-u3ikn.framer-1e743yg, .framer-u3ikn .framer-1e743yg { display: block; }\",\".framer-u3ikn.framer-1loafdk { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-u3ikn .framer-1cdbj5m-container { bottom: 56px; flex: none; height: auto; position: fixed; right: 56px; width: 160px; z-index: 5; }\",'.framer-u3ikn.framer-1799yj2 { background-color: var(--token-9d81adc5-af25-40c2-a8a8-fa0813d21657, rgba(46, 65, 87, 0.6)) /* {\"name\":\"Dark blue 60%\"} */; inset: 0px; position: fixed; user-select: none; z-index: 2; }',\".framer-u3ikn.framer-170m6a8 { flex: none; height: 100vh; left: 0px; overflow: auto; position: fixed; right: 0px; top: 0px; z-index: 6; }\",\".framer-u3ikn .framer-1a8tiqn-container { flex: none; height: 100vh; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: 0px; width: 100%; }\",\".framer-u3ikn.framer-bj1rkh-container { flex: none; height: 32px; position: fixed; right: 56px; top: 56px; width: 32px; z-index: 10; }\",\".framer-u3ikn .framer-f36g6m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100vh; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-u3ikn .framer-k40x3h-container { flex: none; height: auto; left: 56px; position: absolute; right: 56px; top: 0px; z-index: 6; }\",\".framer-u3ikn .framer-xf3i4e { align-content: flex-start; align-items: flex-start; bottom: 56px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; left: 56px; overflow: hidden; padding: 0px; position: absolute; width: min-content; z-index: 2; }\",\".framer-u3ikn .framer-w9wlcs { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: auto; }\",\".framer-u3ikn .framer-18egl5g { -webkit-backdrop-filter: blur(15px); align-content: center; align-items: center; backdrop-filter: blur(15px); background-color: var(--token-acb9c27a-2dd9-4752-a406-6aab5d84cb95, rgba(255, 255, 255, 0.7)); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 4px 12px 6px 12px; position: relative; width: min-content; }\",\".framer-u3ikn .framer-vrli0d, .framer-u3ikn .framer-p5s61u, .framer-u3ikn .framer-1gzk5ll, .framer-u3ikn .framer-1shvd72, .framer-u3ikn .framer-1l4s2v0, .framer-u3ikn .framer-1ud5tno, .framer-u3ikn .framer-149x0nz, .framer-u3ikn .framer-ffqo6p, .framer-u3ikn .framer-njm2c9, .framer-u3ikn .framer-684p7o, .framer-u3ikn .framer-re06my, .framer-u3ikn .framer-13rdahw, .framer-u3ikn .framer-16yj665, .framer-u3ikn .framer-a498nt, .framer-u3ikn .framer-1lngbjs, .framer-u3ikn .framer-ge1brk, .framer-u3ikn .framer-a35f2m, .framer-u3ikn .framer-s3i0fw { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-u3ikn .framer-14kx0n0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-u3ikn .framer-4e2l5h, .framer-u3ikn .framer-10idsy, .framer-u3ikn .framer-1ven3kb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-u3ikn .framer-13l0ei0 { background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 38.21310268285003%, rgba(0, 0, 0, 0.6) 100%); bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-u3ikn .framer-19necr1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100vh; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-u3ikn .framer-5iie5b { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 56px 100px 56px; position: relative; width: 100%; }\",\".framer-u3ikn .framer-1722c0r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 1088px; }\",\".framer-u3ikn .framer-1njauug, .framer-u3ikn .framer-1oyuxin, .framer-u3ikn .framer-ceu2uo { --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-u3ikn .framer-1a1wg3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 1088px; }\",\".framer-u3ikn .framer-o54zd9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-u3ikn .framer-2rng83 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-u3ikn .framer-1qg9ltc, .framer-u3ikn .framer-1qwpxhw, .framer-u3ikn .framer-9vjqcw, .framer-u3ikn .framer-1jmx8o4 { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.2); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 16px 0px; position: relative; width: min-content; }\",\".framer-u3ikn .framer-udqgxa, .framer-u3ikn .framer-pj5kjf, .framer-u3ikn .framer-me19p2, .framer-u3ikn .framer-ylwb6u { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-u3ikn .framer-znvz2a, .framer-u3ikn .framer-1ovllco, .framer-u3ikn .framer-l9zk6f { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-u3ikn .framer-1txnmyl-container { aspect-ratio: 1.875 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 640px); max-height: 800px; position: relative; width: 100%; }\",\".framer-u3ikn .framer-2iqfpy-container, .framer-u3ikn .framer-mmtnjm-container, .framer-u3ikn .framer-i7pzyn-container, .framer-u3ikn .framer-1lxxnqn-container, .framer-u3ikn .framer-92673j-container, .framer-u3ikn .framer-680070-container, .framer-u3ikn .framer-ch0kpz-container, .framer-u3ikn .framer-1s3x0lt-container, .framer-u3ikn .framer-td9e8v-container, .framer-u3ikn .framer-1lg6wzo-container, .framer-u3ikn .framer-eha2vg-container, .framer-u3ikn .framer-1210285-container, .framer-u3ikn .framer-1ae70hc-container, .framer-u3ikn .framer-98nge1-container, .framer-u3ikn .framer-bithsu-container, .framer-u3ikn .framer-2zfpqp-container, .framer-u3ikn .framer-rd4qme-container, .framer-u3ikn .framer-hfa9c7-container, .framer-u3ikn .framer-iwj58d-container, .framer-u3ikn .framer-y670ng-container, .framer-u3ikn .framer-dtm6dz-container, .framer-u3ikn .framer-eiyc6o-container { height: 220px; position: relative; width: 340px; }\",\".framer-u3ikn .framer-1qmts4a { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-u3ikn .framer-9kla17 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 56px 100px 56px; position: relative; width: 1px; }\",\".framer-u3ikn .framer-1680e99-container { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 612px); max-width: 1200px; position: relative; width: 100%; }\",\".framer-u3ikn .framer-xqqav1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 500px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-u3ikn .framer-epk5ca { -webkit-backdrop-filter: blur(15px); align-content: center; align-items: center; backdrop-filter: blur(15px); background-color: var(--token-acb9c27a-2dd9-4752-a406-6aab5d84cb95, rgba(255, 255, 255, 0.7)); bottom: 40px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 64px; justify-content: center; left: 50%; overflow: hidden; padding: 0px 16px 0px 16px; position: absolute; transform: translateX(-50%); width: min-content; z-index: 1; }\",\".framer-u3ikn .framer-my715m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; z-index: 2; }\",\".framer-u3ikn .framer-140ci2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-u3ikn .framer-msc10t { flex: none; height: 18px; position: relative; width: 18px; }\",\".framer-u3ikn .framer-d4bt2p-container { align-self: stretch; flex: 1 0 0px; height: auto; min-height: 100px; position: relative; width: 1px; }\",\".framer-u3ikn .framer-ygqry9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: flex-start; overflow: visible; padding: 100px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-u3ikn .framer-l9uyl { display: grid; flex: none; gap: 12px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-u3ikn .framer-i2c2kq-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-u3ikn .framer-ijtgj3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 56px 0px 56px; position: relative; width: 100%; }\",\".framer-u3ikn .framer-1ew2tz2-container, .framer-u3ikn .framer-174nkvl-container { flex: none; height: auto; position: relative; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,'.framer-u3ikn[data-border=\"true\"]::after, .framer-u3ikn [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-u3ikn.framer-1loafdk { justify-content: flex-start; width: 810px; } .framer-u3ikn .framer-1cdbj5m-container { bottom: 40px; order: 0; right: 40px; } .framer-u3ikn .framer-1a8tiqn-container { height: auto; left: 0px; } .framer-u3ikn .framer-f36g6m { order: 3; } .framer-u3ikn .framer-k40x3h-container { left: 40px; right: 40px; } .framer-u3ikn .framer-xf3i4e { bottom: 40px; left: 40px; } .framer-u3ikn .framer-19necr1 { align-content: flex-end; align-items: flex-end; flex-direction: row; padding: 36px; } .framer-u3ikn .framer-5iie5b { align-content: flex-start; align-items: flex-start; gap: 80px; order: 4; padding: 80px 40px 80px 40px; } .framer-u3ikn .framer-1722c0r, .framer-u3ikn .framer-1a1wg3 { width: 100%; } .framer-u3ikn .framer-o54zd9 { align-content: unset; align-items: unset; display: grid; gap: 32px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); justify-content: center; } .framer-u3ikn .framer-2rng83, .framer-u3ikn .framer-znvz2a, .framer-u3ikn .framer-1ovllco, .framer-u3ikn .framer-l9zk6f { align-self: start; height: 100%; justify-self: start; width: 100%; } .framer-u3ikn .framer-1txnmyl-container { height: var(--framer-aspect-ratio-supported, 432px); order: 7; } .framer-u3ikn .framer-1qmts4a { order: 8; } .framer-u3ikn .framer-9kla17 { padding: 80px 40px 80px 40px; } .framer-u3ikn .framer-1680e99-container { height: var(--framer-aspect-ratio-supported, 411px); } .framer-u3ikn .framer-xqqav1 { align-content: flex-start; align-items: flex-start; min-height: unset; order: 9; } .framer-u3ikn .framer-epk5ca { bottom: unset; padding: 0px; top: 84%; transform: translate(-50%, -50%); } .framer-u3ikn .framer-my715m { align-content: flex-start; align-items: flex-start; gap: 8px; justify-content: center; padding: 0px 16px 0px 16px; } .framer-u3ikn .framer-140ci2 { align-content: flex-start; align-items: flex-start; padding: 4px 0px 0px 0px; } .framer-u3ikn .framer-d4bt2p-container { min-height: 400px; } .framer-u3ikn .framer-ygqry9 { gap: 48px; order: 10; padding: 80px 0px 0px 0px; } .framer-u3ikn .framer-l9uyl { grid-template-columns: repeat(1, minmax(50px, 1fr)); } .framer-u3ikn .framer-ijtgj3 { order: 11; padding: 0px 40px 0px 40px; }}\",\"@media (max-width: 809px) { .framer-u3ikn.framer-1loafdk { justify-content: flex-start; width: 390px; } .framer-u3ikn .framer-1cdbj5m-container { bottom: 24px; order: 0; right: 24px; } .framer-u3ikn .framer-1a8tiqn-container { height: auto; left: 50%; transform: translateX(-50%); } .framer-u3ikn.framer-bj1rkh-container { right: 40px; top: 40px; } .framer-u3ikn .framer-f36g6m { order: 1; } .framer-u3ikn .framer-k40x3h-container { left: 24px; right: 24px; } .framer-u3ikn .framer-xf3i4e { bottom: 100px; left: 24px; right: 24px; width: unset; } .framer-u3ikn .framer-w9wlcs { align-self: unset; width: 100%; } .framer-u3ikn .framer-p5s61u, .framer-u3ikn .framer-1gzk5ll, .framer-u3ikn .framer-s3i0fw { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-u3ikn .framer-14kx0n0 { flex-wrap: wrap; gap: 16px; width: 100%; } .framer-u3ikn .framer-19necr1 { align-content: flex-end; align-items: flex-end; flex-direction: row; padding: 48px 24px 48px 24px; } .framer-u3ikn .framer-5iie5b { align-content: flex-start; align-items: flex-start; gap: 80px; order: 3; padding: 64px 24px 64px 24px; } .framer-u3ikn .framer-1722c0r { gap: 40px; order: 0; width: 100%; } .framer-u3ikn .framer-1a1wg3 { gap: 40px; order: 1; width: 100%; } .framer-u3ikn .framer-o54zd9 { flex-direction: column; gap: 56px; justify-content: flex-start; overflow: hidden; } .framer-u3ikn .framer-1txnmyl-container { aspect-ratio: unset; height: 500px; max-height: unset; min-height: 500px; order: 6; } .framer-u3ikn .framer-1qmts4a { order: 7; } .framer-u3ikn .framer-9kla17 { padding: 64px 24px 64px 24px; } .framer-u3ikn .framer-1680e99-container { height: var(--framer-aspect-ratio-supported, 113px); } .framer-u3ikn .framer-xqqav1 { align-content: flex-start; align-items: flex-start; order: 8; } .framer-u3ikn .framer-epk5ca { bottom: unset; height: min-content; padding: 8px; top: 89%; transform: translate(-50%, -50%); } .framer-u3ikn .framer-my715m { align-content: flex-start; align-items: flex-start; justify-content: center; max-width: 600px; min-width: 100px; width: 262px; } .framer-u3ikn .framer-140ci2 { padding: 3px 0px 0px 0px; } .framer-u3ikn .framer-a35f2m { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-u3ikn .framer-d4bt2p-container { min-height: 300px; } .framer-u3ikn .framer-ygqry9 { gap: 40px; order: 9; padding: 80px 0px 0px 0px; } .framer-u3ikn .framer-l9uyl { grid-template-columns: repeat(1, minmax(50px, 1fr)); } .framer-u3ikn .framer-ijtgj3 { order: 10; padding: 0px 24px 0px 24px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5085\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"RWTdoYlGz\":{\"layout\":[\"fixed\",\"auto\"]},\"Co1hG6rJ_\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerzNfbNVgkD=withCSS(Component,css,\"framer-u3ikn\");export default FramerzNfbNVgkD;FramerzNfbNVgkD.displayName=\"Search\";FramerzNfbNVgkD.defaultProps={height:5085,width:1200};addFonts(FramerzNfbNVgkD,[{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:\"Afacad Flux\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/afacadflux/v2/9oRgNYYQryMlneUPykRmTuH4ET0fri4I5rJVT_CWHKDZnskVK5edscwXZaFqQsJr67E.woff2\",weight:\"200\"}]},...CTAFloatingFonts,...ContactUsPopupForSalesFonts,...IconsCloseIconFonts,...NavigationNavigationBarFonts,...CMSImagePropertyDetailsImageFonts,...SlideshowFonts,...YouTubeFonts,...GoogleMapsFonts,...PropertyCardsSalesFonts,...FooterStatisticsBlockFonts,...FooterFooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerzNfbNVgkD\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"5085\",\"framerColorSyntax\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"RWTdoYlGz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Co1hG6rJ_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerContractVersion\":\"1\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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AAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,Y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",
  "names": ["GoogleMaps", "coordinates", "zoom", "style", "props", "borderRadius", "useRadius", "p", "motion", "containerStyles", "addPropertyControls", "ControlType", "borderRadiusControl", "PlayOptions", "ThumbnailOptions", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "title", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "originalSearchParams", "searchParams", "param", "value", "iframeProps", "u", "wrapperStyle", "l", "getThumbnailURL", "videoStyle", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "page", "res", "pre", "ext", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "CTAFloatingFonts", "getFonts", "F8YMfkL9k_default", "ContactUsPopupForSalesFonts", "YsaB4qyrN_default", "IconsCloseIconFonts", "iTyGBGKyx_default", "NavigationNavigationBarFonts", "CDXrBD85Z_default", "ContainerWithFX", "withFX", "Container", "MotionDivWithFX", "motion", "CMSImagePropertyDetailsImageFonts", "kVisvl0aL_default", "SlideshowFonts", "Slideshow", "YouTubeFonts", "Youtube", "GoogleMapsFonts", "GoogleMaps", "PropertyCardsSalesFonts", "gQLRJJzBP_default", "FooterStatisticsBlockFonts", "XPwjCI4II_default", "FooterFooterFonts", "bpgLRx_fm_default", "breakpoints", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "transition1", "animation", "toResponsiveImage", "value", "animation1", "transition2", "isSet", "QueryData", "query", "pageSize", "data", "useQueryData", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "rqwUpuqhz_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "mlcjGOXrn", "JJmmDLtcM", "cHTSOuDwI", "uMq0JQ63q", "wpnd9q74Y", "qNwaeF3rg", "aTRh81uQF", "n5jlViVBL", "TwdKlDzbx", "sNmVyAXf9", "vVFEsrGa4", "BonztObEy", "h7ystWsvC", "ByZGmPmKy", "SwiykBFNr", "a0hNbc4bJ", "UOhzQlF6j", "yznxsAJwt", "RQrqIPIqF", "hasC5K9iR", "GVcvdg8ke", "j9T6akqY5", "WZS2aeYt5", "UoNjJVKzy", "mNEtu1I25", "uPHy_0yPT", "y6e5DyczL", "xoisChGAx", "qbxmgUlNA", "dTLLI7rXm", "PNv1CPS3o", "TKrJQDkXk", "S7tUuF55y", "FxOwB03WU", "mILo0U6ho", "qNwaeF3rgqJxrgczJG", "mlcjGOXrnqJxrgczJG", "JJmmDLtcMqJxrgczJG", "cHTSOuDwIqJxrgczJG", "uMq0JQ63qqJxrgczJG", "wpnd9q74YqJxrgczJG", "hr0BwsJAlqJxrgczJG", "wP2NXemEjqJxrgczJG", "idqJxrgczJG", "zZpQpHEmT", "cQdOmrDZb", "hr0BwsJAl", "wP2NXemEj", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "e7PotHTp43bnx0g", "overlay", "loadMore", "args", "cVRGnCYOj1wnntms", "scopingClassNames", "cx", "textContent", "enumToDisplayNameFunctions", "textContent1", "visible1", "visible2", "visible3", "visible4", "visible5", "visible6", "visible7", "visible8", "visible9", "visible10", "visible11", "visible12", "visible13", "visible14", "visible15", "visible16", "visible17", "visible18", "visible19", "visible20", "visible21", "router", "useRouter", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "l", "PropertyOverrides2", "ComponentViewportProvider", "Container", "F8YMfkL9k_default", "AnimatePresence", "Ga", "x", "YsaB4qyrN_default", "iTyGBGKyx_default", "ContainerWithFX", "CDXrBD85Z_default", "RichText", "Image2", "getLoadingLazyAtYPosition", "MotionDivWithFX", "Slideshow", "kVisvl0aL_default", "Youtube", "SVG", "GoogleMaps", "ChildrenCanSuspend", "collection", "paginationInfo", "index", "PathVariablesContext", "ResolveLinks", "resolvedLinks", "gQLRJJzBP_default", "XPwjCI4II_default", "bpgLRx_fm_default", "css", "FramerzNfbNVgkD", "withCSS", "zNfbNVgkD_default", "addFonts", "CTAFloatingFonts", "ContactUsPopupForSalesFonts", "IconsCloseIconFonts", "NavigationNavigationBarFonts", "CMSImagePropertyDetailsImageFonts", "SlideshowFonts", "YouTubeFonts", "GoogleMapsFonts", "PropertyCardsSalesFonts", "FooterStatisticsBlockFonts", "FooterFooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
