{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/3mKFSGQqKHV82uOV1eBc/TbXI1XaZFNevVKcgIt7G/isMotionValue.js", "ssg:https://framer.com/m/framer/useAutoMotionValue.js@^0.3.0", "ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/jcU3ZxjtR7k7aXRM1azZ/Video.js", "ssg:https://ga.jspm.io/npm:@motionone/utils@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/w90zR0qzeh1mgaDSvD54/Carousel.js", "ssg:https://framerusercontent.com/modules/oG3hOhXtWSfJIxWCSW6R/55eHELoDdzF89zm949dC/cp8wCqVMw.js", "ssg:https://framerusercontent.com/modules/oynw4JrFWRx8A7EtgpdX/VsBoyygrAWCO0dTwSPWH/oJPON8rih.js", "ssg:https://framerusercontent.com/modules/kfAmtnC8iwuL3n6f4JRd/qJeoEQ85bVbBEVv5uLz3/alFHaCPKo.js", "ssg:https://framerusercontent.com/modules/1QWyXSxosMQD2T2CAmPK/NgFFl6O8YIllv2gzGKmM/DIvVXBh6A.js", "ssg:https://framerusercontent.com/modules/2qkO80L7C69CKrSNcoV7/v3d3mMPHMsRE4bRcftqz/YAP816Y5n.js", "ssg:https://framerusercontent.com/modules/vOD7kJ18BOpMzGZh2OxR/fEGpbZj2hz4qWoeXtkTN/augiA20Il.js"],
  "sourcesContent": ["import{MotionValue}from\"framer\";// Basic MotionValue check\nexport const isMotionValue=v=>v instanceof MotionValue;\nexport const __FramerMetadata__ = {\"exports\":{\"isMotionValue\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./isMotionValue.map", "import{useCallback,useEffect,useRef}from\"react\";import{motionValue,animate,RenderTarget}from\"framer\";import{isMotionValue}from\"https://framerusercontent.com/modules/3mKFSGQqKHV82uOV1eBc/TbXI1XaZFNevVKcgIt7G/isMotionValue.js\";import{useConstant}from\"https://framerusercontent.com/modules/ExNgrA7EJTKUPpH6vIlN/eiOrSJ2Ab5M9jPCvVwUz/useConstant.js\";export function useAutoMotionValue(inputValue,options){// Put options on a local ref\n// Might wanna just memo instead but it works for now\nconst optionsRef=useRef(options);const animation=useRef();const didInitialMount=useRef(false);const isOnCanvas=RenderTarget.current()===RenderTarget.canvas;// in-progress - trying to figure out effect hooks\nconst onChangeDeps=(options===null||options===void 0?void 0:options.onChangeDeps)?options.onChangeDeps:[];// Memoize the onChange handler\nconst onChange=useCallback(options===null||options===void 0?void 0:options.onChange,[...onChangeDeps,]);// Optionally scale the value from props\nconst transformer=useCallback(value=>{var ref;return((ref=optionsRef.current)===null||ref===void 0?void 0:ref.transform)?optionsRef.current.transform(value):value;},[]);// Create new MotionValue from inputValue\nconst value1=useConstant(()=>isMotionValue(inputValue)?inputValue:motionValue(transformer(inputValue)));// Setting value from prop change\nuseEffect(()=>{if(!isMotionValue(inputValue)&&didInitialMount.current){var ref,ref1;const newValue=transformer(inputValue);(ref=animation.current)===null||ref===void 0?void 0:ref.stop();// Call change callback\nif(onChange)onChange(newValue,value1);// Trigger animation to new value\nif(((ref1=optionsRef.current)===null||ref1===void 0?void 0:ref1.animate)&&!isOnCanvas){var ref2;// @ts-ignore\nanimation.current=animate(value1,newValue,(ref2=optionsRef.current)===null||ref2===void 0?void 0:ref2.transition);}else{value1.set(newValue);}}didInitialMount.current=true;},[inputValue,...onChangeDeps]);return value1;}\nexport const __FramerMetadata__ = {\"exports\":{\"useAutoMotionValue\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./useAutoMotionValue.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useMotionValueEvent}from\"framer-motion\";import{useRef,useEffect,useMemo,useCallback,memo}from\"react\";import{ControlType,addPropertyControls,useIsInCurrentNavigationTarget}from\"framer\";import{useOnEnter,useOnExit,defaultEvents,useIsOnCanvas,useIsBrowserSafari,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{useAutoMotionValue}from\"https://framer.com/m/framer/useAutoMotionValue.js@^0.3.0\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */ export function Video(props){const newProps=getProps(props);return /*#__PURE__*/ _jsx(VideoMemo,{...newProps});}/**\n * For the useEffect hook to change progress of the video on state change.\n * It was causing the video to restart on hydration\n */ let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/ memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing,canvasPlay,muted,playsinline,controls,progress,objectFit,backgroundColor,radius,topLeft,topRight,bottomRight,bottomLeft,isMixed,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,restartOnEnter,posterEnabled,startTime:startTimeProp,volume,loop}=props;const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const videoRef=useRef();const isSafari=useIsBrowserSafari();const requestingPlay=useRef(false);const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const shouldPlay=!isOnCanvas||canvasPlay;const autoPlay=useMemo(()=>playing,[]);const isMuted=useMemo(()=>isOnCanvas?true:muted,[isOnCanvas,muted]);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const isPlaying=videoRef.current.currentTime>0&&videoRef.current.onplaying&&!videoRef.current.paused&&!videoRef.current.ended&&videoRef.current.readyState>videoRef.current.HAVE_CURRENT_DATA;if(!isPlaying&&videoRef.current&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;videoRef.current.play().catch(e=>{}) // It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();},[]);// Pause/play via props\nuseEffect(()=>{if(playing&&shouldPlay)play();else pause();},[playing,canvasPlay]);// Change progress via prop\nuseEffect(()=>{if(isMountedAndReadyForProgressChanges)setProgress(startTime*.01);else isMountedAndReadyForProgressChanges=true;},[startTimeProp,srcFile,srcUrl]);const videoProgress=useAutoMotionValue(progress,{transform:value=>value*.01,onChange:newValue=>{setProgress(newValue);}});// Allow scrubbing with MotionValue\nuseMotionValueEvent(videoProgress,\"change\",latest=>{if(!isOnCanvas)setProgress(latest);});// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{if(srcType===SrcType.Url)return srcUrl;if(srcType===SrcType.Video)return srcFile;},[srcType,srcFile,srcUrl]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoPlay){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=volume/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{if(videoRef.current&&videoRef.current.currentTime<.3)setProgress(startTime*.01);if(shouldPlay&&videoRef.current&&autoPlay)play();};return /*#__PURE__*/ _jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>{return onSeeked===null||onSeeked===void 0?void 0:onSeeked(e);},onPause:e=>{return onPause===null||onPause===void 0?void 0:onPause(e);},onPlay:e=>{return onPlay===null||onPlay===void 0?void 0:onPlay(e);},onEnded:e=>{return onEnd===null||onEnd===void 0?void 0:onEnd(e);},autoPlay:autoPlay&&shouldPlay,poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isMuted,playsInline:playsinline,style:{width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";Video.defaultProps={srcType:SrcType.Url,srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",srcFile:\"\",posterEnabled:false,controls:false,autoPlay:true,canvasPlay:false,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:ObjectFitType.Cover,backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime:0};addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[SrcType.Url,SrcType.Video]},srcUrl:{type:ControlType.String,title:\" \",placeholder:\"../example.mp4\",hidden(props){return props.srcType===SrcType.Video;},description:\"Hosted video file URL. For Youtube, use the Youtube component.\"},srcFile:{type:ControlType.File,title:\" \",allowedFileTypes:[\"mp4\"],hidden(props){return props.srcType===SrcType.Url;}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:[ObjectFitType.Cover,ObjectFitType.Fill,ObjectFitType.Contain,ObjectFitType.ScaleDown,ObjectFitType.None,]},canvasPlay:{type:ControlType.Boolean,title:\"On Canvas\",enabledTitle:\"Play\",disabledTitle:\"Pause\",hidden(props){return props.autoPlay===false;}},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"112\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isString=t=>\"string\"===typeof t;const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let r=0;for(;r<o-2;r++)if(s<e[r+1])break;let f=clamp(0,1,progress(e[r],e[r+1],s));const c=getEasingForSegment(n,r);f=c(f);return mix(t[r],t[r+1],f)}}const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useCallback,useLayoutEffect,useEffect,useState,useRef,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{scroll,resize}from\"@motionone/dom\";import{clamp,progress}from\"@motionone/utils\";import{animate,motion,useMotionValue,useTransform,useReducedMotion}from\"framer-motion\";import{usePadding,paddingControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * Calculate the width of the fade mask. Fade width and inset are provided\n * as percentages. There's a fade on the left and the right, so we return\n * a maximum of 50%.\n */ function calcMaskWidth([inset,width]){return inset+(100-inset)*(width/100)*.5;}/**\n * Use media queries to determine if this device uses a mouse as\n * the primary input.\n */ function useIsMouse(){const[isMouseDevice,setIsMouseDevice]=useState(false);useLayoutEffect(()=>{setIsMouseDevice(window.matchMedia(\"(pointer:fine)\").matches);},[]);return isMouseDevice;}/**\n * This checks a scroll position against the available scrollable\n * range. If we have hit an edge, start/end, we fade out the pagination\n * controls and mask. Likewise if we've just moved away from an edge we\n * fade them back in.\n */ function checkLimit(progress,target,{edgeOpacity,moreItems,buttonRef},transition){if(moreItems.current&&progress===target){moreItems.current=false;animate(edgeOpacity,1,transition);buttonRef.current.setAttribute(\"disabled\",\"\");}else if(!moreItems.current&&progress!==target){moreItems.current=true;animate(edgeOpacity,0,transition);buttonRef.current.removeAttribute(\"disabled\");}}function useGUI(initialMoreItems,initialAlpha){const moreItems=useRef(initialMoreItems);const edgeOpacity=useMotionValue(moreItems.current?0:1);const fadeOpacity=useTransform(edgeOpacity,[0,1],[initialAlpha||0,1]);const buttonOpacity=useTransform(edgeOpacity,v=>1-v);const buttonRef=useRef(null);/**\n     * Returns a pointer-events CSS value for a given opacity.\n     * The threshold here is arbitrary, the theory being we\n     * should only enable pointer-events when the button is\n     * somewhat visible.\n     */ const pointerEvents=useTransform(buttonOpacity,v=>v>.2?\"auto\":\"none\");/**\n     * Returns a cursor CSS value for a given pointer-events value.\n     * So only indicate\n     */ const cursor=useTransform(pointerEvents,v=>v===\"auto\"?\"pointer\":\"default\");const buttonStyle={...baseButtonStyles,opacity:buttonOpacity,pointerEvents,cursor};return{moreItems,fadeOpacity,edgeOpacity,buttonStyle,buttonRef};}function setAriaVisible({element}){element.setAttribute(\"aria-hidden\",false);}function useScrollLimits(container,axis,scrollInfo,updateCurrentScroll,targetScroll,checkLimits,measureItems){useEffect(()=>{if(!container.current)return;const updateScrollInfo=info=>{scrollInfo.current=info[axis];/**\n             * If we've reached our target scroll, delete it.\n             * This way we know when to make calculations based on the\n             * actual current scroll or the target scroll.\n             */ if(info[axis].current===targetScroll.current){targetScroll.current=undefined;}updateCurrentScroll(info[axis].current);checkLimits();};const stopScroll=scroll(updateScrollInfo,{container:container.current,axis});const stopResize=resize(container.current,()=>{measureItems();checkLimits();});return()=>{stopScroll();stopResize();};},[checkLimits,measureItems]);}/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */ export default function Carousel({slots,gap,axis,align,sizingObject,fadeObject,arrowObject,snapObject,progressObject,ariaLabel,borderRadius,effectsObject,...props}){const numItems=Children.count(slots);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const padding=usePadding(props);const axisLabel=axis?\"x\":\"y\";const{fadeContent,fadeWidth,fadeInset,fadeTransition,fadeAlpha}=fadeObject;const{snap,snapEdge,fluid}=snapObject;const{widthType,widthInset,widthColumns,heightType,heightInset,heightRows}=sizingObject;const{showScrollbar,showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressObject;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowPadding}=arrowObject;/**\n     * The latest scroll info on the scrollable axis as reported by Motion One.\n     */ const scrollInfo=useRef(undefined);/**\n     * The target scroll we're currently animating to, calculated when\n     * a user presses a pagination button.\n     */ const targetScroll=useRef(undefined);/**\n     * If we're performing a scroll animation, return the target scroll instead\n     * of the latest scroll position. This will help users paginate through\n     * a carousel much quicker.\n     */ const currentScroll=useMotionValue(0);const updateCurrentScroll=newScroll=>{currentScroll.set(targetScroll.current!==undefined?targetScroll.current:newScroll);};/**\n     * We only want to display pagination buttons if the user has enabled the setting\n     * and this is actually a mouse device.\n     */ const isMouseDevice=useIsMouse();/**\n     * Create all the motion values for the GUI at each end of the carousel.\n     */ const start=useGUI(false,fadeAlpha);const end=useGUI(true,fadeAlpha);const startMaskInset=useMotionValue(fadeInset*.5);const endMaskInset=useTransform(startMaskInset,v=>100-v);const baseWidth=useMotionValue(fadeWidth);const startMaskWidth=useTransform([startMaskInset,baseWidth],calcMaskWidth);const endMaskWidth=useTransform(startMaskWidth,v=>100-v);const direction=useMotionValue(axis?\"right\":\"bottom\");const mask=useTransform([direction,start.fadeOpacity,startMaskInset,startMaskWidth,end.fadeOpacity,endMaskInset,endMaskWidth,],latest=>{return`linear-gradient(to ${latest[0]}, rgb(0, 0, 0, ${latest[1]}) ${latest[2]}%, rgb(0, 0, 0, 1) ${latest[3]}%, rgba(0, 0, 0, 1) ${latest[6]}%, rgb(0, 0, 0, ${latest[4]}) ${latest[5]}%)`;});const carouselRef=useRef(null);/**\n     * Dots state\n     */ const[numPages,setNumPages]=useState(isCanvas?4:1);/**\n     * Generate styles for components.\n     */ const itemStyle={scrollSnapAlign:snapEdge,flexShrink:0};const childStyle={};if(align===\"stretch\"){if(axis){childStyle.height=\"100%\";itemStyle.height=\"auto\";}else{childStyle.width=\"100%\";itemStyle.width=\"auto\";}}if(!fluid){itemStyle.scrollSnapStop=\"always\";}if(widthType===\"stretch\"){itemStyle.width=`calc(100% - ${widthInset||0}px)`;childStyle.width=\"100%\";}else if(widthType===\"columns\"){itemStyle.width=`calc(${100/widthColumns}% - ${gap}px + ${gap/widthColumns}px)`;childStyle.width=\"100%\";}if(heightType===\"stretch\"){itemStyle.height=`calc(100% - ${heightInset||0}px)`;childStyle.height=\"100%\";}else if(heightType===\"rows\"){itemStyle.height=`calc(${100/heightRows}% - ${gap}px + ${gap/heightRows}px)`;childStyle.height=\"100%\";}const scrollOverflow=isCanvas?\"hidden\":\"auto\";const containerStyle={...baseContainerStyle,padding};const carouselStyle={...baseCarouselStyle,gap,alignItems:align,flexDirection:axis?\"row\":\"column\",overflowX:axis?scrollOverflow:\"hidden\",overflowY:axis?\"hidden\":scrollOverflow,scrollSnapType:snap?`${axisLabel} mandatory`:undefined,WebkitOverflowScrolling:\"touch\",WebkitMaskImage:fadeContent?mask:undefined,MozMaskImage:fadeContent?mask:undefined,maskImage:fadeContent?mask:undefined,borderRadius};const carouselA11y={[\"aria-roledescription\"]:\"carousel\"};if(ariaLabel){carouselA11y[\"aria-title\"]=ariaLabel;}const itemA11y={};if(align===\"stretch\"){itemA11y[\"aria-role\"]=\"group\";itemA11y[\"aria-roledescription\"]=\"slide\";}if(!isCanvas){const itemSizes=useRef([]);useScrollLimits(carouselRef,axisLabel,scrollInfo,updateCurrentScroll,targetScroll,useCallback(()=>{if(!scrollInfo.current)return;const{targetLength,containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();if(!targetLength&&!containerLength)return;if(targetLength>containerLength){checkLimit(current,0,start,fadeTransition);checkLimit(current,scrollLength,end,fadeTransition);for(let i=0;i<itemSizes.current.length;i++){const{element,start:start1,end:end1}=itemSizes.current[i];if(end1<current||start1>current+containerLength){element.setAttribute(\"aria-hidden\",true);}else{element.setAttribute(\"aria-hidden\",false);}}}else{checkLimit(0,0,start,fadeTransition);checkLimit(1,1,end,fadeTransition);itemSizes.current.forEach(setAriaVisible);}// This used to be Math.ceil, which would round 3.05 to 4.\n// This now uses Math.round to ensure people get a perfect amount of dots\n// when using Columns or Rows \u2014\u00A0Benjamin\n/**\n                 * Update by Matt: changing back to ceil, might break dots but round was incorrectly\n                 * paginating for all widths - overshooting items at shorter viewports and\n                 * not paginating at all for wide.\n                 */ let newNumPages=Math.ceil(targetLength/containerLength);if(!isNaN(newNumPages)){// If the number of dots is 65% of the number of items, make it 100%\nif(newNumPages/numItems>.65)newNumPages=numItems;if(newNumPages!==numPages)setNumPages(newNumPages);}},[numPages]),useCallback(()=>{if(!carouselRef.current)return;itemSizes.current=Array.from(carouselRef.current.children).map(element=>{return axis?{element,start:element.offsetLeft,end:element.offsetLeft+element.offsetWidth}:{element,start:element.offsetTop,end:element.offsetTop+element.offsetHeight};});},[]));}/**\n     * On the canvas, we want to keep the motion values updated\n     * with the latest props. Outside of the canvas these will never\n     * update.\n     */ if(isCanvas){useEffect(()=>{baseWidth.set(fadeWidth);},[fadeWidth]);useEffect(()=>{startMaskInset.set(fadeInset*.5);},[fadeInset]);useEffect(()=>{direction.set(axis?\"right\":\"bottom\");},[axis]);}const findNextItem=(delta,target)=>{if(!scrollInfo.current)return;const{current}=scrollInfo.current;const{children}=carouselRef.current;let scrollTarget;let i=delta===1?0:children.length-1;while(scrollTarget===undefined){const item=children[i];const start=axis?item.offsetLeft:item.offsetTop;const length=axis?item.offsetWidth:item.offsetHeight;const end=start+length;const threshold=.05;if(delta===1){const visibility=progress(start,end,target);if(visibility<1-threshold){scrollTarget=start;}else if(i===children.length-1){scrollTarget=end;}}else if(delta===-1){const visibility1=progress(start,end,target);if(visibility1>threshold){scrollTarget=end;}else if(i===0){scrollTarget=start;}}i+=delta;}return scrollTarget;};const isReducedMotion=useReducedMotion();const goto=scrollTo=>{targetScroll.current=scrollTo;const options=axis?{left:scrollTo}:{top:scrollTo};carouselRef.current.scrollTo({...options,behavior:isReducedMotion?\"auto\":\"smooth\"});};const gotoPage=page=>{if(!scrollInfo.current)return;const{scrollLength}=scrollInfo.current;goto(page*(scrollLength/(numPages-1)));};const gotoDelta=delta=>()=>{if(!scrollInfo.current)return;const{containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();const pageLength=scrollLength/numPages;const currentPage=clamp(0,numPages-1,Math.floor(current/pageLength));gotoPage(currentPage+delta);};/**\n     * Return placeholder if no children\n     */ if(numItems===0){return /*#__PURE__*/ _jsx(Placeholder,{});}const dots=[];const dotsBlurStyle={};if(numPages>1&&showProgressDots&&!showScrollbar){for(let i=0;i<numPages;i++){const isSelected=isCanvas&&!i||false;dots.push(/*#__PURE__*/ _jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,isSelected:isSelected,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>gotoPage(i),currentScroll:currentScroll,scrollInfo:scrollInfo,total:numPages,index:i,gap:dotsGap,padding:dotsPadding,axis:axis}));}if(dotsBlur){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}return /*#__PURE__*/ _jsxs(\"section\",{style:containerStyle,...carouselA11y,children:[/*#__PURE__*/ _jsx(motion.ul,{ref:carouselRef,style:carouselStyle,className:\"framer--carousel\",\"data-show-scrollbar\":showScrollbar,\"aria-atomic\":\"false\",\"aria-live\":\"polite\",onWheel:()=>targetScroll.current=undefined,children:Children.map(slots,(child,index)=>{var ref;/*#__PURE__*/ return _jsx(\"li\",{style:itemStyle,...itemA11y,\"aria-label\":`${index+1} of ${numItems}`,children:/*#__PURE__*/ cloneElement(child,{...child.props,style:{...(ref=child.props)===null||ref===void 0?void 0:ref.style,...childStyle}})});})}),/*#__PURE__*/ _jsxs(\"fieldset\",{style:{...controlsStyles,padding:arrowPadding,display:\"flex\",flexDirection:axis?\"row\":\"column\"},\"aria-label\":\"Carousel pagination controls\",className:\"framer--carousel-controls\",\"data-show-mouse-controls\":showMouseControls,children:[/*#__PURE__*/ _jsx(motion.button,{ref:start.buttonRef,type:\"button\",style:{...start.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/ _jsx(\"img\",{alt:\"\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\"})}),/*#__PURE__*/ _jsx(motion.button,{ref:end.buttonRef,type:\"button\",style:{...end.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/ _jsx(\"img\",{alt:\"\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\"})}),dots.length>1?/*#__PURE__*/ _jsx(\"div\",{style:{...dotsContainerStyle,left:axis?\"50%\":dotsInset,top:!axis?\"50%\":\"unset\",transform:axis?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:axis?\"row\":\"column\",bottom:axis?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,...dotsBlurStyle},children:dots}):null]}),/*#__PURE__*/ _jsx(MouseStyles,{})]});};/* Default Properties */ Carousel.defaultProps={gap:10,padding:10,progressObject:{showScrollbar:false,showProgressDots:false},sizingObject:{widthType:\"auto\",widthOffset:0,widthColumns:2,heightType:\"auto\",heightOffset:0,heightRows:2},borderRadius:0};/* Property Controls */ addPropertyControls(Carousel,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},axis:{type:ControlType.Enum,title:\"Direction\",options:[true,false],optionIcons:[\"direction-horizontal\",\"direction-vertical\"],displaySegmentedControl:true},align:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{axis:{true:[\"align-top\",\"align-middle\",\"align-bottom\"],false:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},...paddingControl,sizingObject:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Enum,title:\"Width\",options:[\"auto\",\"stretch\",\"columns\"],optionTitles:[\"Auto\",\"Stretch\",\"Columns\"],defaultValue:\"auto\"},widthInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.widthType!==\"stretch\"},widthColumns:{type:ControlType.Number,title:\"Columns\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.widthType!==\"columns\"},heightType:{type:ControlType.Enum,title:\"Height\",options:[\"auto\",\"stretch\",\"rows\"],optionTitles:[\"Auto\",\"Stretch\",\"Rows\"],defaultValue:\"auto\"},heightInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.heightType!==\"stretch\"},heightRows:{type:ControlType.Number,title:\"Rows\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.heightType!==\"rows\"}}},snapObject:{type:ControlType.Object,title:\"Snapping\",controls:{snap:{type:ControlType.Boolean,title:\"Enable\"},snapEdge:{type:ControlType.Enum,title:\"Edge\",options:[\"start\",\"center\",\"end\"],optionTitles:[\"Left\",\"Center\",\"Right\"],defaultValue:\"center\",hidden:props=>!props.snap},fluid:{type:ControlType.Boolean,title:\"Fluid\",defaultValue:false,hidden:props=>!props.snap}}},fadeObject:{type:ControlType.Object,title:\"Fading\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Enable\",defaultValue:false},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",hidden:props=>!props.fadeContent,min:0,max:1,step:.05,defaultValue:0},fadeTransition:{type:ControlType.Transition,title:\"Transition\",hidden:props=>!props.fadeContent}}},progressObject:{type:ControlType.Object,title:\"Progress\",controls:{showScrollbar:{type:ControlType.Boolean,title:\"Scroll Bar\",defaultValue:false},showProgressDots:{type:ControlType.Boolean,title:\"Dots\",defaultValue:false,hidden:props=>props.showScrollbar},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:4,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}},arrowObject:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:true},arrowFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showMouseControls},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:40,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls}}},ariaLabel:{type:ControlType.String,title:\"Aria Label\",placeholder:\"Movies...\"},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0}});function Dot({currentScroll,scrollInfo,isSelected,selectedOpacity,opacity:unselectedOpacity,total,index,dotStyle,buttonStyle,gap,padding,axis,...props}){const opacity=useTransform(currentScroll,v=>{var ref,ref1;if(!((ref=scrollInfo.current)===null||ref===void 0?void 0:ref.scrollLength)){return index===0?selectedOpacity:unselectedOpacity;}const pageLength=((ref1=scrollInfo.current)===null||ref1===void 0?void 0:ref1.scrollLength)/total;const minScroll=pageLength*index;const maxScroll=minScroll+pageLength;const isSelected=v>=minScroll&&(index<total-1?v<maxScroll:index===total-1);return isSelected?selectedOpacity:unselectedOpacity;});const inlinePadding=gap/2;let top=!axis&&index>0?inlinePadding:padding;let bottom=!axis&&index!==total-1?inlinePadding:padding;let right=axis&&index!==total-1?inlinePadding:padding;let left=axis&&index>0?inlinePadding:padding;return /*#__PURE__*/ _jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/ _jsx(motion.div,{style:{...dotStyle,opacity}})});}function Placeholder(){return /*#__PURE__*/ _jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/ _jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/ _jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/ _jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to swipe between.\"})]});}function MouseStyles(){return /*#__PURE__*/ _jsx(\"div\",{dangerouslySetInnerHTML:{__html:`<style>@media (pointer: fine) {\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar {\n                    display: none;\n                    -webkit-appearance: none;\n                    width: 0;\n                    height: 0;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar-thumb {\n                    display: none;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"] {\n                    scrollbar-width: none;\n                    scrollbar-height: none;\n                }\n            }</style>`}});}/* Styles */ const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:130,lineHeight:1.5,textAlign:\"center\"};const labelStyle={clip:\"rect(0 0 0 0)\",WebkitClipPath:\"inset(50%)\",clipPath:\"inset(50%)\",height:1,width:1,margin:-1,padding:0,overflow:\"hidden\",position:\"absolute\",whiteSpace:\"nowrap\"};/**\n * GUI styles\n */ const baseContainerStyle={display:\"flex\",overflow:\"hidden\",width:\"100%\",height:\"100%\",position:\"relative\"};const baseCarouselStyle={padding:0,margin:0,listStyle:\"none\",position:\"relative\",display:\"flex\",flex:\"1 1 100%\",width:\"100%\",height:\"100%\"};const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",top:0,left:0,right:0,bottom:0,pointerEvents:\"none\",border:0,padding:0,margin:0};/**\n * Dot styles\n */ const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Carousel\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.map", "// Generated by Framer (d9af232)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/AexNDb5sL01om4Cp5LiX/eUsvcxXaf9hQBplTlypm/OPqAtIrZ0.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/2VMn7ym8vgB6D90HPRYn/d6IAkpt7CY92apb61WUo/xZndidUCt.js\";const enabledGestures={Cg06m06cz:{hover:true}};const cycleOrder=[\"Cg06m06cz\"];const serializationHash=\"framer-ryoRT\";const variantClassNames={Cg06m06cz:\"framer-v-1pl5q23\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.5,ease:[.64,.34,.33,.86],type:\"tween\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition2={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({description,height,id,image,title,width,...props})=>{var _ref,_ref1,_ref2;return{...props,BTbl7j5nl:(_ref=description!==null&&description!==void 0?description:props.BTbl7j5nl)!==null&&_ref!==void 0?_ref:\"Fall asleep to nature sounds and wake to beautiful sunrise. Our 5 rooms offer breathtaking experiences every moment\",r7nWn2hEo:(_ref1=image!==null&&image!==void 0?image:props.r7nWn2hEo)!==null&&_ref1!==void 0?_ref1:{src:\"https://framerusercontent.com/images/h4eeXvPpq0KULjbZ8BkwjwZNK40.webp\",srcSet:\"https://framerusercontent.com/images/h4eeXvPpq0KULjbZ8BkwjwZNK40.webp 667w\"},YP9fpaph3:(_ref2=title!==null&&title!==void 0?title:props.YP9fpaph3)!==null&&_ref2!==void 0?_ref2:\"Dining Room\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,r7nWn2hEo,YP9fpaph3,BTbl7j5nl,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Cg06m06cz\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(gestureVariant===\"Cg06m06cz-hover\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:667,pixelHeight:1e3,pixelWidth:667,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/h4eeXvPpq0KULjbZ8BkwjwZNK40.webp\",srcSet:\"https://framerusercontent.com/images/h4eeXvPpq0KULjbZ8BkwjwZNK40.webp 667w\"},className:cx(serializationHash,...sharedStyleClassNames,\"framer-1pl5q23\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"Cg06m06cz\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"Cg06m06cz-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(r7nWn2hEo)},className:\"framer-hy50gt\",layoutDependency:layoutDependency,layoutId:\"kUoQrYBbx\",...addPropertyOverrides({\"Cg06m06cz-hover\":{background:{alt:\"\",fit:\"fill\",sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 1.1)`,...toResponsiveImage(r7nWn2hEo)}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6bb4ih\",layoutDependency:layoutDependency,layoutId:\"wkNlLSjym\",style:{backdropFilter:\"blur(43px)\",backgroundColor:\"var(--token-71e3013e-c9c6-437d-b1e2-86bd87173ee8, rgb(255, 255, 255))\",WebkitBackdropFilter:\"blur(43px)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-zeqyv\",\"data-styles-preset\":\"OPqAtIrZ0\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-ad0b327b-ba31-46e6-a7aa-3b6a4238bea1, rgb(12, 10, 9)))\"},children:\"Dining Room\"})}),className:\"framer-7rpjoe\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"mLm6UYvMP\",style:{\"--extracted-1eung3n\":\"var(--token-ad0b327b-ba31-46e6-a7aa-3b6a4238bea1, rgb(12, 10, 9))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:YP9fpaph3,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1c1cd512-08e8-45e6-9cb5-945bc972f037, rgb(68, 64, 60)))\"},children:\"Fall asleep to nature sounds and wake to beautiful sunrise. Our 5 rooms offer breathtaking experiences every moment\"})}),className:\"framer-2b70qo\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ceV8svlmG\",style:{\"--extracted-r6o4lv\":\"var(--token-1c1cd512-08e8-45e6-9cb5-945bc972f037, rgb(68, 64, 60))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:BTbl7j5nl,verticalAlignment:\"top\",withExternalLayout:true})]})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ryoRT.framer-16fpg7e, .framer-ryoRT .framer-16fpg7e { display: block; }\",\".framer-ryoRT.framer-1pl5q23 { align-content: flex-end; align-items: flex-end; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 640px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 384px; }\",\".framer-ryoRT .framer-hy50gt { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; }\",\".framer-ryoRT .framer-6bb4ih { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 24px; position: relative; width: 1px; }\",\".framer-ryoRT .framer-7rpjoe, .framer-ryoRT .framer-2b70qo { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ryoRT.framer-1pl5q23, .framer-ryoRT .framer-6bb4ih { gap: 0px; } .framer-ryoRT.framer-1pl5q23 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-ryoRT.framer-1pl5q23 > :first-child { margin-left: 0px; } .framer-ryoRT.framer-1pl5q23 > :last-child { margin-right: 0px; } .framer-ryoRT .framer-6bb4ih > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-ryoRT .framer-6bb4ih > :first-child { margin-top: 0px; } .framer-ryoRT .framer-6bb4ih > :last-child { margin-bottom: 0px; } }\",\".framer-ryoRT.framer-v-1pl5q23.hover .framer-hy50gt { height: 110%; left: calc(50.00000000000002% - 110.00000000000001% / 2); top: calc(50.00000000000002% - 110.00000000000001% / 2); width: 110%; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 640\n * @framerIntrinsicWidth 384\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"OxbSWj8Rn\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"r7nWn2hEo\":\"image\",\"YP9fpaph3\":\"title\",\"BTbl7j5nl\":\"description\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framercp8wCqVMw=withCSS(Component,css,\"framer-ryoRT\");export default Framercp8wCqVMw;Framercp8wCqVMw.displayName=\"Interior Card\";Framercp8wCqVMw.defaultProps={height:640,width:384};addPropertyControls(Framercp8wCqVMw,{r7nWn2hEo:{__defaultAssetReference:\"data:framer/asset-reference,h4eeXvPpq0KULjbZ8BkwjwZNK40.webp?originalFilename=betulla-003.webp&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},YP9fpaph3:{defaultValue:\"Dining Room\",displayTextArea:false,title:\"Title\",type:ControlType.String},BTbl7j5nl:{defaultValue:\"Fall asleep to nature sounds and wake to beautiful sunrise. Our 5 rooms offer breathtaking experiences every moment\",displayTextArea:false,title:\"Description\",type:ControlType.String}});addFonts(Framercp8wCqVMw,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framercp8wCqVMw\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"640\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"r7nWn2hEo\\\":\\\"image\\\",\\\"YP9fpaph3\\\":\\\"title\\\",\\\"BTbl7j5nl\\\":\\\"description\\\"}\",\"framerIntrinsicWidth\":\"384\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"OxbSWj8Rn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./cp8wCqVMw.map", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"GF;Gothic A1-regular\"]);export const fonts=[{family:\"Gothic A1\",moduleAsset:{localModuleIdentifier:\"local-module:css/oJPON8rih:default\",url:\"https://fonts.gstatic.com/s/gothica1/v13/CSR94z5ZnPydRjlCCwl6bM0uQNJmvQ.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/gothica1/v13/CSR94z5ZnPydRjlCCwl6bM0uQNJmvQ.ttf\",weight:\"400\"}];export const css=['.framer-sOF31 .framer-styles-preset-18t9sbc:not(.rich-text-wrapper), .framer-sOF31 .framer-styles-preset-18t9sbc.rich-text-wrapper p { --framer-font-family: \"Gothic A1\", \"Gothic A1 Placeholder\", sans-serif; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 160%; --framer-paragraph-spacing: 12px; --framer-text-alignment: center; --framer-text-color: var(--token-bef2be7e-f458-4045-89b1-bb8f421a47e0, #f5f5f4); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1101px) and (min-width: 810px) { .framer-sOF31 .framer-styles-preset-18t9sbc:not(.rich-text-wrapper), .framer-sOF31 .framer-styles-preset-18t9sbc.rich-text-wrapper p { --framer-font-family: \"Gothic A1\", \"Gothic A1 Placeholder\", sans-serif; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 160%; --framer-paragraph-spacing: 12px; --framer-text-alignment: center; --framer-text-color: var(--token-bef2be7e-f458-4045-89b1-bb8f421a47e0, #f5f5f4); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-sOF31 .framer-styles-preset-18t9sbc:not(.rich-text-wrapper), .framer-sOF31 .framer-styles-preset-18t9sbc.rich-text-wrapper p { --framer-font-family: \"Gothic A1\", \"Gothic A1 Placeholder\", sans-serif; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 160%; --framer-paragraph-spacing: 12px; --framer-text-alignment: center; --framer-text-color: var(--token-bef2be7e-f458-4045-89b1-bb8f421a47e0, #f5f5f4); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-sOF31\";\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 (8563fcd)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,RichText,useActiveVariantCallback,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/xAqQJJMKulaAU8gK10ZA/Phosphor.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/oynw4JrFWRx8A7EtgpdX/VsBoyygrAWCO0dTwSPWH/oJPON8rih.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/FIvQ2rRKbp99w8K7I328/qlTzc8yexZR64zVaRJQB/OPqAtIrZ0.js\";const PhosphorFonts=getFonts(Phosphor);const cycleOrder=[\"sCR_9tRSx\",\"puoH_e_1b\"];const variantClassNames={puoH_e_1b:\"framer-v-1rh95wl\",sCR_9tRSx:\"framer-v-rmytfe\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const humanReadableVariantMap={Closed:\"sCR_9tRSx\",Expanded:\"puoH_e_1b\"};const transitions={default:{delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/ _jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Component=/*#__PURE__*/ React.forwardRef(function({id,style,className,width,height,layoutId,variant:outerVariant=\"sCR_9tRSx\",text:KWiCY2jwy=\"Is the security deposit refundable? If so, under what circumstances?\",...restProps},ref){const outerVariantId=humanReadableVariantMap[outerVariant];const variant=outerVariantId||outerVariant;const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"sCR_9tRSx\",transitions,variant,variantClassNames});const layoutDependency=variants.join(\"-\")+restProps.layoutDependency;const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapr2h380=activeVariantCallback(async(...args)=>{setVariant(\"puoH_e_1b\");});const onTap64j7iv=activeVariantCallback(async(...args)=>{setVariant(\"sCR_9tRSx\");});const isDisplayed=()=>{if(baseVariant===\"puoH_e_1b\")return true;return false;};const defaultLayoutId=React.useId();return /*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-KmiAQ\",sharedStyle.className,sharedStyle1.className,classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsx(Transition,{value:transition,children:/*#__PURE__*/ _jsxs(motion.div,{...restProps,className:cx(\"framer-rmytfe\",className),\"data-framer-name\":\"Closed\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"sCR_9tRSx\",onTap:onTapr2h380,ref:ref,style:{backgroundColor:\"var(--token-bef2be7e-f458-4045-89b1-bb8f421a47e0, rgb(245, 245, 244))\",...style},...addPropertyOverrides({puoH_e_1b:{\"data-framer-name\":\"Expanded\",onTap:onTap64j7iv}},baseVariant,gestureVariant),children:[/*#__PURE__*/ _jsxs(motion.div,{className:\"framer-f88lp7\",layoutDependency:layoutDependency,layoutId:\"S3JFisAE8\",children:[/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.h4,{className:\"framer-styles-preset-zeqyv\",\"data-styles-preset\":\"OPqAtIrZ0\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1eung3n)\"},children:\"Is the security deposit refundable? If so, under what circumstances?\"})}),className:\"framer-1i6gt5\",layoutDependency:layoutDependency,layoutId:\"FrddtyZNV\",style:{\"--extracted-1eung3n\":\"var(--token-ad0b327b-ba31-46e6-a7aa-3b6a4238bea1, rgb(12, 10, 9))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:KWiCY2jwy,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/ _jsx(motion.div,{className:\"framer-uf7fb5-container\",layoutDependency:layoutDependency,layoutId:\"e6EtdAMZ8-container\",style:{rotate:0},variants:{puoH_e_1b:{rotate:180}},children:/*#__PURE__*/ _jsx(Phosphor,{color:'var(--token-ad0b327b-ba31-46e6-a7aa-3b6a4238bea1, rgb(12, 10, 9)) /* {\"name\":\"Stone / 950\"} */',height:\"100%\",iconSearch:\"caret down\",iconSelection:\"House\",id:\"e6EtdAMZ8\",layoutId:\"e6EtdAMZ8\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})]}),isDisplayed()&&/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.p,{className:\"framer-styles-preset-18t9sbc\",\"data-styles-preset\":\"oJPON8rih\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"Experience true comfort and tranquility in our beautifully appointed bedrooms. Each room is a sanctuary of serenity, featuring luxurious bedding, soft lighting, and stylish decor. \"})}),className:\"framer-b5olkk\",layoutDependency:layoutDependency,layoutId:\"ZB49FEO_c\",style:{\"--extracted-r6o4lv\":\"var(--token-1c1cd512-08e8-45e6-9cb5-945bc972f037, rgb(68, 64, 60)) \",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=['.framer-KmiAQ [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-KmiAQ .framer-6lhjxf { display: block; }\",\".framer-KmiAQ .framer-rmytfe { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 12px 16px 12px 16px; position: relative; width: 708px; }\",\".framer-KmiAQ .framer-f88lp7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-KmiAQ .framer-1i6gt5 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-KmiAQ .framer-uf7fb5-container { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-KmiAQ .framer-b5olkk { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-KmiAQ .framer-rmytfe, .framer-KmiAQ .framer-f88lp7 { gap: 0px; } .framer-KmiAQ .framer-rmytfe > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-KmiAQ .framer-rmytfe > :first-child { margin-top: 0px; } .framer-KmiAQ .framer-rmytfe > :last-child { margin-bottom: 0px; } .framer-KmiAQ .framer-f88lp7 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-KmiAQ .framer-f88lp7 > :first-child { margin-left: 0px; } .framer-KmiAQ .framer-f88lp7 > :last-child { margin-right: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 44\n * @framerIntrinsicWidth 708\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"puoH_e_1b\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"KWiCY2jwy\":\"text\"}\n */ const FrameralFHaCPKo=withCSS(Component,css,\"framer-KmiAQ\");export default FrameralFHaCPKo;FrameralFHaCPKo.displayName=\"FAQ\";FrameralFHaCPKo.defaultProps={height:44,width:708};addPropertyControls(FrameralFHaCPKo,{variant:{options:[\"sCR_9tRSx\",\"puoH_e_1b\"],optionTitles:[\"Closed\",\"Expanded\"],title:\"Variant\",type:ControlType.Enum},KWiCY2jwy:{defaultValue:\"Is the security deposit refundable? If so, under what circumstances?\",displayTextArea:false,title:\"Text\",type:ControlType.String}});addFonts(FrameralFHaCPKo,[...PhosphorFonts,...sharedStyle.fonts,...sharedStyle1.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameralFHaCPKo\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"puoH_e_1b\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"KWiCY2jwy\\\":\\\"text\\\"}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"708\",\"framerIntrinsicHeight\":\"44\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./alFHaCPKo.map", "// Generated by Framer (3d0c292)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,cx,getFonts,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import FAQ from\"https://framerusercontent.com/modules/kfAmtnC8iwuL3n6f4JRd/qJeoEQ85bVbBEVv5uLz3/alFHaCPKo.js\";const FAQFonts=getFonts(FAQ);const cycleOrder=[\"fcylMquVX\"];const variantClassNames={fcylMquVX:\"framer-v-1mcb190\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const humanReadableVariantMap={};const transitions={default:{damping:60,delay:0,mass:1,stiffness:420,type:\"spring\"}};const Component=/*#__PURE__*/ React.forwardRef(function({id,style,className,width,height,layoutId,variant:outerVariant=\"fcylMquVX\",...restProps},ref){const outerVariantId=humanReadableVariantMap[outerVariant];const variant=outerVariantId||outerVariant;const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"fcylMquVX\",transitions,variant,variantClassNames});const layoutDependency=variants.join(\"-\")+restProps.layoutDependency;const defaultLayoutId=React.useId();return /*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-69s6U\",classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsxs(motion.div,{...restProps,className:cx(\"framer-1mcb190\",className),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"fcylMquVX\",ref:ref,style:{...style},transition:transition,children:[/*#__PURE__*/ _jsx(motion.div,{className:\"framer-19naxw7-container\",layoutDependency:layoutDependency,layoutId:\"BpDb_dnRG-container\",transition:transition,children:/*#__PURE__*/ _jsx(FAQ,{height:\"100%\",id:\"BpDb_dnRG\",layoutId:\"BpDb_dnRG\",style:{width:\"100%\"},text:\"Is the security deposit refundable? If so, under what circumstances?\",variant:\"sCR_9tRSx\",width:\"100%\"})}),/*#__PURE__*/ _jsx(motion.div,{className:\"framer-14fnbf-container\",layoutDependency:layoutDependency,layoutId:\"jD4N7SiL9-container\",transition:transition,children:/*#__PURE__*/ _jsx(FAQ,{height:\"100%\",id:\"jD4N7SiL9\",layoutId:\"jD4N7SiL9\",style:{width:\"100%\"},text:\"Are utilities included in the rent?\",variant:\"sCR_9tRSx\",width:\"100%\"})}),/*#__PURE__*/ _jsx(motion.div,{className:\"framer-179wl43-container\",layoutDependency:layoutDependency,layoutId:\"yhYkP_aBe-container\",transition:transition,children:/*#__PURE__*/ _jsx(FAQ,{height:\"100%\",id:\"yhYkP_aBe\",layoutId:\"yhYkP_aBe\",style:{width:\"100%\"},text:\"Are there any move-in specials or promotions currently available?\",variant:\"sCR_9tRSx\",width:\"100%\"})}),/*#__PURE__*/ _jsx(motion.div,{className:\"framer-w3t9ym-container\",layoutDependency:layoutDependency,layoutId:\"evYkACkKI-container\",transition:transition,children:/*#__PURE__*/ _jsx(FAQ,{height:\"100%\",id:\"evYkACkKI\",layoutId:\"evYkACkKI\",style:{width:\"100%\"},text:\"How do I submit maintenance requests?\",variant:\"sCR_9tRSx\",width:\"100%\"})}),/*#__PURE__*/ _jsx(motion.div,{className:\"framer-ujgrfo-container\",layoutDependency:layoutDependency,layoutId:\"S7U2fBbfJ-container\",transition:transition,children:/*#__PURE__*/ _jsx(FAQ,{height:\"100%\",id:\"S7U2fBbfJ\",layoutId:\"S7U2fBbfJ\",style:{width:\"100%\"},text:\"Is renter's insurance required?\",variant:\"sCR_9tRSx\",width:\"100%\"})}),/*#__PURE__*/ _jsx(motion.div,{className:\"framer-106rz7h-container\",layoutDependency:layoutDependency,layoutId:\"hZ4iAcYhl-container\",transition:transition,children:/*#__PURE__*/ _jsx(FAQ,{height:\"100%\",id:\"hZ4iAcYhl\",layoutId:\"hZ4iAcYhl\",style:{width:\"100%\"},text:\"Are there any penalties for breaking a lease early?\",variant:\"sCR_9tRSx\",width:\"100%\"})})]})})});});const css=['.framer-69s6U [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-69s6U .framer-1hq39sf { display: block; }\",\".framer-69s6U .framer-1mcb190 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 800px; }\",\".framer-69s6U .framer-19naxw7-container, .framer-69s6U .framer-14fnbf-container, .framer-69s6U .framer-179wl43-container, .framer-69s6U .framer-w3t9ym-container, .framer-69s6U .framer-ujgrfo-container, .framer-69s6U .framer-106rz7h-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-69s6U .framer-1mcb190 { gap: 0px; } .framer-69s6U .framer-1mcb190 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-69s6U .framer-1mcb190 > :first-child { margin-top: 0px; } .framer-69s6U .framer-1mcb190 > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 344\n * @framerIntrinsicWidth 800\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n */ const FramerDIvVXBh6A=withCSS(Component,css,\"framer-69s6U\");export default FramerDIvVXBh6A;FramerDIvVXBh6A.displayName=\"FAQ Comp\";FramerDIvVXBh6A.defaultProps={height:344,width:800};addFonts(FramerDIvVXBh6A,[...FAQFonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerDIvVXBh6A\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"800\",\"framerIntrinsicHeight\":\"344\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"GF;Cardo-regular\"]);export const fonts=[{family:\"Cardo\",moduleAsset:{localModuleIdentifier:\"local-module:css/YAP816Y5n:default\",url:\"https://fonts.gstatic.com/s/cardo/v19/wlp_gwjKBV1pqiv_1oAZ2H5O.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/cardo/v19/wlp_gwjKBV1pqiv_1oAZ2H5O.ttf\",weight:\"400\"}];export const css=['.framer-2fbOY .framer-styles-preset-3nqyhf:not(.rich-text-wrapper), .framer-2fbOY .framer-styles-preset-3nqyhf.rich-text-wrapper h1 { --framer-font-family: \"Cardo\", \"Cardo Placeholder\", serif; --framer-font-size: 56px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0px; --framer-line-height: 120%; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-bef2be7e-f458-4045-89b1-bb8f421a47e0, #f5f5f4); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1101px) and (min-width: 810px) { .framer-2fbOY .framer-styles-preset-3nqyhf:not(.rich-text-wrapper), .framer-2fbOY .framer-styles-preset-3nqyhf.rich-text-wrapper h1 { --framer-font-family: \"Cardo\", \"Cardo Placeholder\", serif; --framer-font-size: 48px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0px; --framer-line-height: 120%; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-bef2be7e-f458-4045-89b1-bb8f421a47e0, #f5f5f4); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-2fbOY .framer-styles-preset-3nqyhf:not(.rich-text-wrapper), .framer-2fbOY .framer-styles-preset-3nqyhf.rich-text-wrapper h1 { --framer-font-family: \"Cardo\", \"Cardo Placeholder\", serif; --framer-font-size: 36px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0px; --framer-line-height: 120%; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-bef2be7e-f458-4045-89b1-bb8f421a47e0, #f5f5f4); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-2fbOY\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (0b5b7f5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,PropertyOverrides,ResolveLinks,RichText,SVG,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/FzZ67ct97QwFne6Bf7ku/Ticker.js\";import GoogleMaps from\"https://framerusercontent.com/modules/Hbc0lxqGSRzFG6uMT9yO/OPmIEDVRw3amYB3GBzWp/GoogleMaps.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/jcU3ZxjtR7k7aXRM1azZ/Video.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/9zLIz4fn80IR9zpOx18Q/Embed.js\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/w90zR0qzeh1mgaDSvD54/Carousel.js\";import InteriorCard from\"#framer/local/canvasComponent/cp8wCqVMw/cp8wCqVMw.js\";import FAQComp from\"#framer/local/canvasComponent/DIvVXBh6A/DIvVXBh6A.js\";import Footer from\"#framer/local/canvasComponent/ewkakCpiY/ewkakCpiY.js\";import AmenitiesItem from\"#framer/local/canvasComponent/oClskVcHh/oClskVcHh.js\";import Button from\"#framer/local/canvasComponent/p3lQZRrbP/p3lQZRrbP.js\";import LocationCard from\"#framer/local/canvasComponent/QuHhqhayM/QuHhqhayM.js\";import Navigation from\"#framer/local/canvasComponent/UKdsWqyUR/UKdsWqyUR.js\";import*as sharedStyle3 from\"#framer/local/css/kCach6_Wo/kCach6_Wo.js\";import*as sharedStyle from\"#framer/local/css/oJPON8rih/oJPON8rih.js\";import*as sharedStyle4 from\"#framer/local/css/OPqAtIrZ0/OPqAtIrZ0.js\";import*as sharedStyle2 from\"#framer/local/css/xZndidUCt/xZndidUCt.js\";import*as sharedStyle1 from\"#framer/local/css/YAP816Y5n/YAP816Y5n.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const MotionDivWithFX=withFX(motion.div);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const ImageWithFX=withFX(Image);const ButtonFonts=getFonts(Button);const AmenitiesItemFonts=getFonts(AmenitiesItem);const InteriorCardFonts=getFonts(InteriorCard);const CarouselFonts=getFonts(Carousel);const TickerFonts=getFonts(Ticker);const ContainerWithFX=withFX(Container);const VideoFonts=getFonts(Video);const GoogleMapsFonts=getFonts(GoogleMaps);const RichTextWithFX=withFX(RichText);const LocationCardFonts=getFonts(LocationCard);const FAQCompFonts=getFonts(FAQComp);const FooterFonts=getFonts(Footer);const NavigationFonts=getFonts(Navigation);const NavigationWithVariantAppearEffect=withVariantAppearEffect(Navigation);const EmbedFonts=getFonts(Embed);const cycleOrder=[\"WQLkyLRf1\",\"ohJIUe6_M\",\"IXjTqE2yq\"];const breakpoints={IXjTqE2yq:\"(max-width: 809px)\",ohJIUe6_M:\"(min-width: 810px) and (max-width: 1199px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-v2YmC\";const variantClassNames={IXjTqE2yq:\"framer-v-b30582\",ohJIUe6_M:\"framer-v-rvgfud\",WQLkyLRf1:\"framer-v-72rtr7\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-40};const transition1={damping:40,delay:.4,mass:1,stiffness:160,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:-40};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:40};const transition2={damping:40,delay:.15,mass:1,stiffness:160,type:\"spring\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:40};const transition3={damping:40,delay:.8,mass:1,stiffness:160,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const animation5={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:20};const transition4={delay:0,duration:1.6,ease:[.68,.1,.38,.74],type:\"tween\"};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:16};const transition5={damping:40,delay:0,mass:1,stiffness:160,type:\"spring\"};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:40};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition6={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:0,y:0};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:0,y:0};const transition7={damping:30,delay:0,mass:1,stiffness:160,type:\"spring\"};const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:0};const animation13={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-260,y:0};const transition8={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const animation14={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition8,x:0,y:0};const transition9={damping:40,delay:.1,mass:1,stiffness:160,type:\"spring\"};const transition10={damping:40,delay:.2,mass:1,stiffness:160,type:\"spring\"};const transition11={damping:40,delay:.3,mass:1,stiffness:160,type:\"spring\"};const transition12={damping:40,delay:.5,mass:1,stiffness:160,type:\"spring\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transition13={delay:0,duration:.5,ease:[.48,.12,.15,.81],type:\"tween\"};const animation15={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition13,x:0,y:0};const transition14={delay:0,duration:.5,ease:[.67,.12,.44,.83],type:\"tween\"};const animation16={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition14,x:0,y:0};const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const transformTemplate3=(_,t)=>`translateY(-50%) ${t}`;const animation17={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition15={damping:30,delay:.15,mass:1,stiffness:160,type:\"spring\"};const animation18={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const animation19={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition10,x:0,y:0};const animation20={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-20};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"IXjTqE2yq\",Tablet:\"ohJIUe6_M\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-v2YmC`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-v2YmC`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const ref2=React.useRef(null);const id=useRouteElementId(\"tNr9wSg99\");const ref3=React.useRef(null);const id1=useRouteElementId(\"bzVXFQE_b\");const id2=useRouteElementId(\"YhtzyAb97\");const ref4=React.useRef(null);const router=useRouter();const id3=useRouteElementId(\"TZId_lrxN\");const ref5=React.useRef(null);const id4=useRouteElementId(\"Oz2i5SI8n\");const ref6=React.useRef(null);const id5=useRouteElementId(\"nsYmmk4Du\");const ref7=React.useRef(null);const id6=useRouteElementId(\"KrOQr3lS2\");const ref8=React.useRef(null);const id7=useRouteElementId(\"K5P5mCQvN\");const ref9=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"ohJIUe6_M\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"IXjTqE2yq\")return false;return true;};const id8=useRouteElementId(\"xe8hqlo6e\");const ref10=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-72rtr7\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsxs(\"main\",{className:\"framer-1c7x7dn\",\"data-framer-name\":\"Hero\",name:\"Hero\",tabIndex:0,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IXjTqE2yq:{__framer__styleTransformEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{damping:40,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:440,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref2,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-400}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"Image of Property\",fit:\"fill\",intrinsicHeight:1279,intrinsicWidth:1920,pixelHeight:2165,pixelWidth:3849,src:\"https://framerusercontent.com/images/OajxxcNCNVo8ExnzdylBxZGg0k.jpg\"},className:\"framer-15udj2m\",\"data-framer-name\":\"Hero Img\",name:\"Hero Img\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IXjTqE2yq:{transformTemplate:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref2,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1v3le5r\",\"data-framer-name\":\"Content\",id:id,name:\"Content\",ref:ref3,style:{transformPerspective:1200},transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kjr03r\",\"data-framer-name\":\"Header\",name:\"Header\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IXjTqE2yq:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1bl7udj\",\"data-framer-name\":\"Location\",name:\"Location\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-5w34cs\",\"data-framer-name\":\"Icon\",layout:\"position\",name:\"Icon\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 18.25 11 C 18.25 15 12 19.25 12 19.25 C 12 19.25 5.75 15 5.75 11 C 5.75 7.5 8.686 4.75 12 4.75 C 15.314 4.75 18.25 7.5 18.25 11 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-bef2be7e-f458-4045-89b1-bb8f421a47e0, rgb(245, 245, 244)) /* {&quot;name&quot;:&quot;Stone / 100&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 12 13.25 C 13.243 13.25 14.25 12.243 14.25 11 C 14.25 9.757 13.243 8.75 12 8.75 C 10.757 8.75 9.75 9.757 9.75 11 C 9.75 12.243 10.757 13.25 12 13.25 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-bef2be7e-f458-4045-89b1-bb8f421a47e0, rgb(245, 245, 244)) /* {&quot;name&quot;:&quot;Stone / 100&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:12476892257,withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IXjTqE2yq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-18t9sbc\",\"data-styles-preset\":\"oJPON8rih\",style:{\"--framer-text-color\":\"var(--token-71e3013e-c9c6-437d-b1e2-86bd87173ee8, rgb(255, 255, 255))\"},children:\"Colle Di Val D'elsa, Siena  \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-18t9sbc\",\"data-styles-preset\":\"oJPON8rih\",style:{\"--framer-text-color\":\"var(--token-71e3013e-c9c6-437d-b1e2-86bd87173ee8, rgb(255, 255, 255))\"},children:\"Localita' Collalto, Colle Di Val D'elsa, Siena  \"})}),className:\"framer-vph1aj\",\"data-framer-name\":\"Location\",fonts:[\"Inter\"],name:\"Location\",verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IXjTqE2yq:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1pqvha6\",\"data-framer-name\":\"Header\",name:\"Header\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IXjTqE2yq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-3nqyhf\",\"data-styles-preset\":\"YAP816Y5n\",style:{\"--framer-text-alignment\":\"center\"},children:\"Villa Collalto \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-3nqyhf\",\"data-styles-preset\":\"YAP816Y5n\",children:\"Villa Collalto \"})}),className:\"framer-1hovtuw\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],name:\"Title\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\"},children:\"A warm welcome on behalf of our entire team here at Villa Collalto, an enchanting place where people can come together to share simple yet refined pleasures.\\xa0\"})}),className:\"framer-1yoel40\",\"data-framer-name\":\"Subtitle\",fonts:[\"Inter\"],name:\"Subtitle\",verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IXjTqE2yq:{animate:undefined,initial:undefined,optimized:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation4,className:\"framer-o4lb4i\",\"data-framer-appear-id\":\"o4lb4i\",\"data-framer-name\":\"Scroll Animation\",initial:animation5,name:\"Scroll Animation\",optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-18t9sbc\",\"data-styles-preset\":\"oJPON8rih\",children:\"Scroll to explore\"})}),className:\"framer-1xgnbmm\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],name:\"Title\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation6,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:.4,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition4,__perspectiveFX:false,__targetOpacity:1,className:\"framer-n5bcu2\",\"data-framer-name\":\"Arrow Animation\",name:\"Arrow Animation\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-qiv8r\",\"data-framer-name\":\"Frame 1\",layout:\"position\",name:\"Frame 1\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 17.46 13.75 L 12 19.25 L 6.54 13.75\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-bef2be7e-f458-4045-89b1-bb8f421a47e0, rgb(245, 245, 244)) /* {&quot;name&quot;:&quot;Stone / 100&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 12 18.25 L 12 4.75\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-bef2be7e-f458-4045-89b1-bb8f421a47e0, rgb(245, 245, 244)) /* {&quot;name&quot;:&quot;Stone / 100&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:10055660803,withExternalLayout:true})})]})})]})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nq6tjg\",\"data-framer-name\":\"Scroll Box\",id:id1,name:\"Scroll Box\",ref:ref2,children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:false,__framer__enter:animation2,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1kwbdmq\",\"data-framer-name\":\"Header\",id:id2,name:\"Header\",ref:ref4,style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-12yne2r\",\"data-framer-name\":\"Header\",name:\"Header\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1akaaq5\",\"data-styles-preset\":\"kCach6_Wo\",children:\"Explore the main Villa\"})}),className:\"framer-1p05a9w\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],name:\"Title\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-08227ae4-e555-4489-bf64-cf6b864788ad, rgb(41, 37, 36))\"},children:\"The exterior grounds are meticulously maintained, with a charming garden and a refreshing pool for your ultimate relaxation.\"})}),className:\"framer-1di0y7f\",\"data-framer-name\":\"Subtitle\",fonts:[\"Inter\"],name:\"Subtitle\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"QLGNhqaYZ\"},implicitPathVariables:undefined},{href:{webPageId:\"QLGNhqaYZ\"},implicitPathVariables:undefined},{href:{webPageId:\"QLGNhqaYZ\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-wkfsqu-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IXjTqE2yq:{link:resolvedLinks[2]},ohJIUe6_M:{link:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"LbnxlGwkV\",layoutId:\"LbnxlGwkV\",link:resolvedLinks[0],newTab:false,title:\"Explore Villa\",variant:\"TaszkuIpg\",width:\"100%\"})})})})})]})})})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1yb72y8\",\"data-framer-name\":\"1st Section\",id:id3,name:\"1st Section\",ref:ref5,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jv4gih\",\"data-framer-name\":\"Img\",name:\"Img\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-t2s1il\",\"data-framer-name\":\"- Spacer\",name:\"- Spacer\"}),/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"Image of Property\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1333,loading:\"lazy\",pixelHeight:2268,pixelWidth:4032,src:\"https://framerusercontent.com/images/f4w7KTum3uIjzJo2DSOuqJiUQwg.jpg\"},className:\"framer-3m7ce1\",\"data-framer-name\":\"Img\",name:\"Img\",style:{transformPerspective:1200}})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u1pb1s\",\"data-framer-name\":\"Img\",name:\"Img\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yk8jaz\",\"data-framer-name\":\"- Spacer\",name:\"- Spacer\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IXjTqE2yq:{background:{alt:\"Image of Property\",fit:\"fill\",intrinsicHeight:811,intrinsicWidth:564,loading:\"lazy\",pixelHeight:2268,pixelWidth:4032,sizes:\"calc(max((min(100vw, 1614px) - 110px) / 12, 1px) * 4 + 30px)\",src:\"https://framerusercontent.com/images/7XWRXJJHLT3mtqybvXtNs1gw8.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/7XWRXJJHLT3mtqybvXtNs1gw8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/7XWRXJJHLT3mtqybvXtNs1gw8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/7XWRXJJHLT3mtqybvXtNs1gw8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/7XWRXJJHLT3mtqybvXtNs1gw8.jpg 4032w\"}},ohJIUe6_M:{background:{alt:\"Image of Property\",fit:\"fill\",intrinsicHeight:811,intrinsicWidth:564,loading:\"lazy\",pixelHeight:2268,pixelWidth:4032,sizes:\"calc(max((min(100vw, 1614px) - 110px) / 12, 1px) * 2 + 10px)\",src:\"https://framerusercontent.com/images/7XWRXJJHLT3mtqybvXtNs1gw8.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/7XWRXJJHLT3mtqybvXtNs1gw8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/7XWRXJJHLT3mtqybvXtNs1gw8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/7XWRXJJHLT3mtqybvXtNs1gw8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/7XWRXJJHLT3mtqybvXtNs1gw8.jpg 4032w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"Image of Property\",fit:\"fill\",intrinsicHeight:811,intrinsicWidth:564,loading:\"lazy\",pixelHeight:2268,pixelWidth:4032,sizes:\"calc(max((min(100vw, 1614px) - 110px) / 12, 1px) * 3 + 20px)\",src:\"https://framerusercontent.com/images/7XWRXJJHLT3mtqybvXtNs1gw8.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/7XWRXJJHLT3mtqybvXtNs1gw8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/7XWRXJJHLT3mtqybvXtNs1gw8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/7XWRXJJHLT3mtqybvXtNs1gw8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/7XWRXJJHLT3mtqybvXtNs1gw8.jpg 4032w\"},className:\"framer-1vgm7et\",\"data-framer-name\":\"Img\",name:\"Img\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-kp262h\",\"data-framer-name\":\"- Spacer\",name:\"- Spacer\"}),/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"Image of Property\",fit:\"fill\",intrinsicHeight:811,intrinsicWidth:564,loading:\"lazy\",pixelHeight:2268,pixelWidth:4032,src:\"https://framerusercontent.com/images/BCqm86nGdO5QdlWhdRlNej4NIqs.jpg\"},className:\"framer-1q2dode\",\"data-framer-name\":\"Img\",name:\"Img\",style:{transformPerspective:1200}})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mj42zo\",\"data-framer-name\":\"Img\",name:\"Img\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-kgpewo\",\"data-framer-name\":\"- Spacer\",name:\"- Spacer\"}),/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"Image of Property\",fit:\"fill\",intrinsicHeight:1002,intrinsicWidth:564,loading:\"lazy\",pixelHeight:2268,pixelWidth:4032,src:\"https://framerusercontent.com/images/RyqfpJYbfkGpWRsKiEyzZzjhVEE.jpg\"},className:\"framer-18yy4lh\",\"data-framer-name\":\"Img\",name:\"Img\",style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4m7k1\",\"data-framer-name\":\"- Spacer\",name:\"- Spacer\"}),/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"Image of Property\",fit:\"fill\",intrinsicHeight:1002,intrinsicWidth:564,loading:\"lazy\",pixelHeight:2268,pixelWidth:4032,sizes:\"calc(max((min(100vw, 1614px) - 110px) / 12, 1px) * 3 + 20px)\",src:\"https://framerusercontent.com/images/fhFBLtEaEhB48KA6XR1onIOWE8.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/fhFBLtEaEhB48KA6XR1onIOWE8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/fhFBLtEaEhB48KA6XR1onIOWE8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/fhFBLtEaEhB48KA6XR1onIOWE8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/fhFBLtEaEhB48KA6XR1onIOWE8.jpg 4032w\"},className:\"framer-h5b4ws\",\"data-framer-name\":\"Img\",name:\"Img\",style:{transformPerspective:1200}})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1tyrx9q\",\"data-framer-name\":\"2nd Section\",id:id4,name:\"2nd Section\",ref:ref6,children:[/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"Image of Property\",fit:\"fill\",intrinsicHeight:980,intrinsicWidth:1470,loading:\"lazy\",pixelHeight:4672,pixelWidth:7008,src:\"https://framerusercontent.com/images/XUKYTugOIxD3DZTvRaOxgeSlBbw.jpg?scale-down-to=1024\"},className:\"framer-2y524u\",\"data-framer-name\":\"Img\",name:\"Img\",style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wxkjg4\",\"data-framer-name\":\"Overlay\",name:\"Overlay\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-17gzi0t\",\"data-framer-name\":\"Header\",name:\"Header\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ygerlu\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ohJIUe6_M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1akaaq5\",\"data-styles-preset\":\"kCach6_Wo\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-599fc907-5a8f-456e-980b-343947b495b0, rgb(250, 250, 249))\"},children:'\"From waking up to the stunning views of the forest and meadow to soaking in the hot tub under the starry night sky, every moment felt like a dream.\"'})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1akaaq5\",\"data-styles-preset\":\"kCach6_Wo\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-599fc907-5a8f-456e-980b-343947b495b0, rgb(250, 250, 249))\"},children:'\"From waking up to the stunning views of the forest and meadow to soaking in the hot tub under the starry night sky, every moment felt like a dream.\"'})}),className:\"framer-o535nj\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],name:\"Title\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IXjTqE2yq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-599fc907-5a8f-456e-980b-343947b495b0, rgb(250, 250, 249))\"},children:'\"The amenities were top-notch, and the attention to detail in the design made us feel pampered and relaxed. We can\\'t wait to come back.\"'})})},ohJIUe6_M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-599fc907-5a8f-456e-980b-343947b495b0, rgb(250, 250, 249))\"},children:'\"The amenities were top-notch, and the attention to detail in the design made us feel pampered and relaxed. We can\\'t wait to come back.\"'})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--token-599fc907-5a8f-456e-980b-343947b495b0, rgb(250, 250, 249))\"},children:'\"The amenities were top-notch, and the attention to detail in the design made us feel pampered and relaxed. We can\\'t wait to come back.\"'})}),className:\"framer-8bhszw\",\"data-framer-name\":\"Subtitle\",fonts:[\"Inter\"],name:\"Subtitle\",verticalAlignment:\"top\",withExternalLayout:true})})]})})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-168z7fr\",\"data-framer-name\":\"6th Section\",name:\"6th Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-em610q\",\"data-framer-name\":\"Center Framer\",id:id5,name:\"Center Framer\",ref:ref7,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sc5qia\",\"data-framer-name\":\"Header\",name:\"Header\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1akaaq5\",\"data-styles-preset\":\"kCach6_Wo\",children:\"High quality amenities\"})}),className:\"framer-yjtc4y\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],name:\"Title\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IXjTqE2yq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-08227ae4-e555-4489-bf64-cf6b864788ad, rgb(41, 37, 36))\"},children:\"The Villa amenities, include a stunning pool, elegant interiors, and beautiful outdoor spaces. Designed for relaxation and entertainment, every detail ensures an unforgettable stay.\"})})},ohJIUe6_M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-08227ae4-e555-4489-bf64-cf6b864788ad, rgb(41, 37, 36))\"},children:\"The Villa amenities, include a stunning pool, elegant interiors, and beautiful outdoor spaces. Designed for relaxation and entertainment, every detail ensures an unforgettable stay.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--token-08227ae4-e555-4489-bf64-cf6b864788ad, rgb(41, 37, 36))\"},children:\"The Villa amenities, include a stunning pool, elegant interiors, and beautiful outdoor spaces. Designed for relaxation and entertainment, every detail ensures an unforgettable stay.\"})}),className:\"framer-1qg52yo\",\"data-framer-name\":\"Subtitle\",fonts:[\"Inter\"],name:\"Subtitle\",verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1968jco\",\"data-framer-name\":\"Ametities\",name:\"Ametities\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xysfev\",\"data-framer-name\":\"Row 1\",name:\"Row 1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-k6e2lj\",\"data-framer-name\":\"Column\",name:\"Column\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-zeqyv\",\"data-styles-preset\":\"OPqAtIrZ0\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-ad0b327b-ba31-46e6-a7aa-3b6a4238bea1, rgb(12, 10, 9))\"},children:\"Property\"})}),className:\"framer-vx76ae\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],name:\"Title\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation13,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref7,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-13fea95\",\"data-framer-name\":\"Divider\",name:\"Divider\",style:{transformPerspective:1200}}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1j07adv\",\"data-framer-name\":\"Amenities\",name:\"Amenities\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IXjTqE2yq:{width:\"calc(max((min(100vw, 1070px) - 144px) / 4, 1px) * 2 + 32px)\"},ohJIUe6_M:{width:\"calc(max((min(100vw, 1070px) - 248px) / 8, 1px) * 2 + 24px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"calc(max((min(100vw, 1070px) - 168px) / 8, 1px) * 2 + 24px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-e2u6km-container\",children:/*#__PURE__*/_jsx(AmenitiesItem,{HA25ea1GV:\"users\",height:\"100%\",id:\"JxZlHwVZN\",layoutId:\"JxZlHwVZN\",lImN1j5Wz:\"Up to 32 Guests\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IXjTqE2yq:{width:\"calc(max((min(100vw, 1070px) - 144px) / 4, 1px) * 2 + 32px)\"},ohJIUe6_M:{width:\"calc(max((min(100vw, 1070px) - 248px) / 8, 1px) * 2 + 24px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"calc(max((min(100vw, 1070px) - 168px) / 8, 1px) * 2 + 24px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hh4pmr-container\",children:/*#__PURE__*/_jsx(AmenitiesItem,{HA25ea1GV:\"tree\",height:\"100%\",id:\"Prn1qNs47\",layoutId:\"Prn1qNs47\",lImN1j5Wz:\"Garden\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IXjTqE2yq:{width:\"calc(max((min(100vw, 1070px) - 144px) / 4, 1px) * 2 + 32px)\"},ohJIUe6_M:{width:\"calc(max((min(100vw, 1070px) - 248px) / 8, 1px) * 2 + 24px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"calc(max((min(100vw, 1070px) - 168px) / 8, 1px) * 2 + 24px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-5tj3mo-container\",children:/*#__PURE__*/_jsx(AmenitiesItem,{HA25ea1GV:\"chair\",height:\"100%\",id:\"g1gdLoWhK\",layoutId:\"g1gdLoWhK\",lImN1j5Wz:\"Living Rooms\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IXjTqE2yq:{width:\"calc(max((min(100vw, 1070px) - 144px) / 4, 1px) * 2 + 32px)\"},ohJIUe6_M:{width:\"calc(max((min(100vw, 1070px) - 248px) / 8, 1px) * 2 + 24px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"calc(max((min(100vw, 1070px) - 168px) / 8, 1px) * 2 + 24px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-7bodau-container\",children:/*#__PURE__*/_jsx(AmenitiesItem,{HA25ea1GV:\"bed\",height:\"100%\",id:\"Te9QuQjfV\",layoutId:\"Te9QuQjfV\",lImN1j5Wz:\" 13 Master Bedrooms \",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IXjTqE2yq:{width:\"calc(max((min(100vw, 1070px) - 144px) / 4, 1px) * 2 + 32px)\"},ohJIUe6_M:{width:\"calc(max((min(100vw, 1070px) - 248px) / 8, 1px) * 2 + 24px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"calc(max((min(100vw, 1070px) - 168px) / 8, 1px) * 2 + 24px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-pdwjx7-container\",children:/*#__PURE__*/_jsx(AmenitiesItem,{HA25ea1GV:\"House\",height:\"100%\",id:\"RZQ4e3VUY\",layoutId:\"RZQ4e3VUY\",lImN1j5Wz:\"3 Dining Rooms\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IXjTqE2yq:{width:\"calc(max((min(100vw, 1070px) - 144px) / 4, 1px) * 2 + 32px)\"},ohJIUe6_M:{width:\"calc(max((min(100vw, 1070px) - 248px) / 8, 1px) * 2 + 24px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"calc(max((min(100vw, 1070px) - 168px) / 8, 1px) * 2 + 24px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ikrctf-container\",children:/*#__PURE__*/_jsx(AmenitiesItem,{HA25ea1GV:\"cooking-pot\",height:\"100%\",id:\"bFcw5k158\",layoutId:\"bFcw5k158\",lImN1j5Wz:\"Professional Kitchen\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IXjTqE2yq:{width:\"calc(max((min(100vw, 1070px) - 144px) / 4, 1px) * 2 + 32px)\"},ohJIUe6_M:{width:\"calc(max((min(100vw, 1070px) - 248px) / 8, 1px) * 2 + 24px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"calc(max((min(100vw, 1070px) - 168px) / 8, 1px) * 2 + 24px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yen21z-container\",children:/*#__PURE__*/_jsx(AmenitiesItem,{HA25ea1GV:\"bathtub\",height:\"100%\",id:\"O3LnrezAc\",layoutId:\"O3LnrezAc\",lImN1j5Wz:\"X Bathrooms\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IXjTqE2yq:{width:\"calc(max((min(100vw, 1070px) - 144px) / 4, 1px) * 2 + 32px)\"},ohJIUe6_M:{width:\"calc(max((min(100vw, 1070px) - 248px) / 8, 1px) * 2 + 24px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"calc(max((min(100vw, 1070px) - 168px) / 8, 1px) * 2 + 24px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1aq6ilx-container\",children:/*#__PURE__*/_jsx(AmenitiesItem,{HA25ea1GV:\"house\",height:\"100%\",id:\"x7CJXv8KT\",layoutId:\"x7CJXv8KT\",lImN1j5Wz:\"Dependance / Annex\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IXjTqE2yq:{width:\"calc(max((min(100vw, 1070px) - 144px) / 4, 1px) * 2 + 32px)\"},ohJIUe6_M:{width:\"calc(max((min(100vw, 1070px) - 248px) / 8, 1px) * 2 + 24px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"calc(max((min(100vw, 1070px) - 168px) / 8, 1px) * 2 + 24px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-139us0y-container\",children:/*#__PURE__*/_jsx(AmenitiesItem,{HA25ea1GV:\"park\",height:\"100%\",id:\"SJrn0GiN6\",layoutId:\"SJrn0GiN6\",lImN1j5Wz:\"View Terrasse\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IXjTqE2yq:{width:\"calc(max((min(100vw, 1070px) - 144px) / 4, 1px) * 2 + 32px)\"},ohJIUe6_M:{width:\"calc(max((min(100vw, 1070px) - 248px) / 8, 1px) * 2 + 24px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"calc(max((min(100vw, 1070px) - 168px) / 8, 1px) * 2 + 24px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-fmcig6-container\",children:/*#__PURE__*/_jsx(AmenitiesItem,{HA25ea1GV:\"car\",height:\"100%\",id:\"i3VE31Ryw\",layoutId:\"i3VE31Ryw\",lImN1j5Wz:\"Private Parking\",style:{width:\"100%\"},width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w15dii\",\"data-framer-name\":\"Column\",name:\"Column\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-zeqyv\",\"data-styles-preset\":\"OPqAtIrZ0\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-ad0b327b-ba31-46e6-a7aa-3b6a4238bea1, rgb(12, 10, 9))\"},children:\"Wellness & Relax\"})}),className:\"framer-1a8ma9b\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],name:\"Title\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation13,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref7,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1bvixz4\",\"data-framer-name\":\"Divider\",name:\"Divider\",style:{transformPerspective:1200}}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17ilehd\",\"data-framer-name\":\"Amenities\",name:\"Amenities\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IXjTqE2yq:{width:\"calc(max((min(100vw, 1070px) - 144px) / 4, 1px) * 2 + 32px)\"},ohJIUe6_M:{width:\"calc(max((min(100vw, 1070px) - 248px) / 8, 1px) * 2 + 24px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"calc(max((min(100vw, 1070px) - 168px) / 8, 1px) * 2 + 24px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ouchrc-container\",children:/*#__PURE__*/_jsx(AmenitiesItem,{HA25ea1GV:\"pool\",height:\"100%\",id:\"moreNY9_a\",layoutId:\"moreNY9_a\",lImN1j5Wz:\"Swimming Pool\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IXjTqE2yq:{width:\"calc(max((min(100vw, 1070px) - 144px) / 4, 1px) * 2 + 32px)\"},ohJIUe6_M:{width:\"calc(max((min(100vw, 1070px) - 248px) / 8, 1px) * 2 + 24px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"calc(max((min(100vw, 1070px) - 168px) / 8, 1px) * 2 + 24px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-hn5gko-container\",children:/*#__PURE__*/_jsx(AmenitiesItem,{HA25ea1GV:\"sun-horizon\",height:\"100%\",id:\"HYcrxo5Hu\",layoutId:\"HYcrxo5Hu\",lImN1j5Wz:\"Sundeck with Gazebo\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IXjTqE2yq:{width:\"calc(max((min(100vw, 1070px) - 144px) / 4, 1px) * 2 + 32px)\"},ohJIUe6_M:{width:\"calc(max((min(100vw, 1070px) - 248px) / 8, 1px) * 2 + 24px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"calc(max((min(100vw, 1070px) - 168px) / 8, 1px) * 2 + 24px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-t8215u-container\",children:/*#__PURE__*/_jsx(AmenitiesItem,{HA25ea1GV:\"House\",height:\"100%\",id:\"SumGJAv8M\",layoutId:\"SumGJAv8M\",lImN1j5Wz:\"Heated Jacuzi\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IXjTqE2yq:{width:\"calc(max((min(100vw, 1070px) - 144px) / 4, 1px) * 2 + 32px)\"},ohJIUe6_M:{width:\"calc(max((min(100vw, 1070px) - 248px) / 8, 1px) * 2 + 24px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"calc(max((min(100vw, 1070px) - 168px) / 8, 1px) * 2 + 24px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-i9r29u-container\",children:/*#__PURE__*/_jsx(AmenitiesItem,{HA25ea1GV:\"thermometer\",height:\"100%\",id:\"Vn4exZyRO\",layoutId:\"Vn4exZyRO\",lImN1j5Wz:\"Sauna\",style:{width:\"100%\"},width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r4azqk\",\"data-framer-name\":\"Column\",name:\"Column\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-zeqyv\",\"data-styles-preset\":\"OPqAtIrZ0\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-ad0b327b-ba31-46e6-a7aa-3b6a4238bea1, rgb(12, 10, 9))\"},children:\"Entertainment\"})}),className:\"framer-p8vmpd\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],name:\"Title\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation13,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref7,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-x0tpqz\",\"data-framer-name\":\"Divider\",name:\"Divider\",style:{transformPerspective:1200}}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gnddwd\",\"data-framer-name\":\"Amenities\",name:\"Amenities\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IXjTqE2yq:{width:\"calc(max((min(100vw, 1070px) - 144px) / 4, 1px) * 2 + 32px)\"},ohJIUe6_M:{width:\"calc(max((min(100vw, 1070px) - 248px) / 8, 1px) * 2 + 24px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"calc(max((min(100vw, 1070px) - 168px) / 8, 1px) * 2 + 24px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1diku4d-container\",children:/*#__PURE__*/_jsx(AmenitiesItem,{HA25ea1GV:\"Wi-Fi\",height:\"100%\",id:\"KO56Rm9Ku\",layoutId:\"KO56Rm9Ku\",lImN1j5Wz:\"High speed Wi-Fi\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IXjTqE2yq:{width:\"calc(max((min(100vw, 1070px) - 144px) / 4, 1px) * 2 + 32px)\"},ohJIUe6_M:{width:\"calc(max((min(100vw, 1070px) - 248px) / 8, 1px) * 2 + 24px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"calc(max((min(100vw, 1070px) - 168px) / 8, 1px) * 2 + 24px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-x0fg3n-container\",children:/*#__PURE__*/_jsx(AmenitiesItem,{HA25ea1GV:\"barbell\",height:\"100%\",id:\"LPlhKXvDC\",layoutId:\"LPlhKXvDC\",lImN1j5Wz:\"Gym\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IXjTqE2yq:{width:\"calc(max((min(100vw, 1070px) - 144px) / 4, 1px) * 2 + 32px)\"},ohJIUe6_M:{width:\"calc(max((min(100vw, 1070px) - 248px) / 8, 1px) * 2 + 24px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"calc(max((min(100vw, 1070px) - 168px) / 8, 1px) * 2 + 24px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-g3q2qk-container\",children:/*#__PURE__*/_jsx(AmenitiesItem,{HA25ea1GV:\"tennis-ball\",height:\"100%\",id:\"G_VyXMyj2\",layoutId:\"G_VyXMyj2\",lImN1j5Wz:\"Tennis Court\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IXjTqE2yq:{width:\"calc(max((min(100vw, 1070px) - 144px) / 4, 1px) * 2 + 32px)\"},ohJIUe6_M:{width:\"calc(max((min(100vw, 1070px) - 248px) / 8, 1px) * 2 + 24px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"calc(max((min(100vw, 1070px) - 168px) / 8, 1px) * 2 + 24px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-168qtqj-container\",children:/*#__PURE__*/_jsx(AmenitiesItem,{HA25ea1GV:\"game-controller\",height:\"100%\",id:\"MRVKppomO\",layoutId:\"MRVKppomO\",lImN1j5Wz:\"Gaming Room\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IXjTqE2yq:{width:\"calc(max((min(100vw, 1070px) - 144px) / 4, 1px) * 2 + 32px)\"},ohJIUe6_M:{width:\"calc(max((min(100vw, 1070px) - 248px) / 8, 1px) * 2 + 24px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"calc(max((min(100vw, 1070px) - 168px) / 8, 1px) * 2 + 24px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-w3oxa8-container\",children:/*#__PURE__*/_jsx(AmenitiesItem,{HA25ea1GV:\"television-simple\",height:\"100%\",id:\"xKek69riP\",layoutId:\"xKek69riP\",lImN1j5Wz:\"Satellite TV\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IXjTqE2yq:{width:\"calc(max((min(100vw, 1070px) - 144px) / 4, 1px) * 2 + 32px)\"},ohJIUe6_M:{width:\"calc(max((min(100vw, 1070px) - 248px) / 8, 1px) * 2 + 24px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"calc(max((min(100vw, 1070px) - 168px) / 8, 1px) * 2 + 24px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-u9m95u-container\",children:/*#__PURE__*/_jsx(AmenitiesItem,{HA25ea1GV:\"martini\",height:\"100%\",id:\"Rj6vd7lf_\",layoutId:\"Rj6vd7lf_\",lImN1j5Wz:\"Cocktail Bar\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IXjTqE2yq:{width:\"calc(max((min(100vw, 1070px) - 144px) / 4, 1px) * 2 + 32px)\"},ohJIUe6_M:{width:\"calc(max((min(100vw, 1070px) - 248px) / 8, 1px) * 2 + 24px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"calc(max((min(100vw, 1070px) - 168px) / 8, 1px) * 2 + 24px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-12hsty9-container\",children:/*#__PURE__*/_jsx(AmenitiesItem,{HA25ea1GV:\"flame\",height:\"100%\",id:\"AWlHomqFy\",layoutId:\"AWlHomqFy\",lImN1j5Wz:\"Barbecue\",style:{width:\"100%\"},width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9rb2yy\",\"data-framer-name\":\"Column\",name:\"Column\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-zeqyv\",\"data-styles-preset\":\"OPqAtIrZ0\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-ad0b327b-ba31-46e6-a7aa-3b6a4238bea1, rgb(12, 10, 9))\"},children:\"Heating and Cooling\"})}),className:\"framer-134kbn6\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],name:\"Title\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation13,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref7,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-6r8lpa\",\"data-framer-name\":\"Divider\",name:\"Divider\",style:{transformPerspective:1200}}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d0a2bz\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IXjTqE2yq:{width:\"calc(max((min(100vw, 1070px) - 144px) / 4, 1px) * 2 + 32px)\"},ohJIUe6_M:{width:\"calc(max((min(100vw, 1070px) - 248px) / 8, 1px) * 2 + 24px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"calc(max((min(100vw, 1070px) - 168px) / 8, 1px) * 2 + 24px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kyyn6m-container\",children:/*#__PURE__*/_jsx(AmenitiesItem,{HA25ea1GV:\"wind\",height:\"100%\",id:\"H_i5ELfLY\",layoutId:\"H_i5ELfLY\",lImN1j5Wz:\"Air Conditioning \",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IXjTqE2yq:{width:\"calc(max((min(100vw, 1070px) - 144px) / 4, 1px) * 2 + 32px)\"},ohJIUe6_M:{width:\"calc(max((min(100vw, 1070px) - 248px) / 8, 1px) * 2 + 24px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"calc(max((min(100vw, 1070px) - 168px) / 8, 1px) * 2 + 24px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uckxbs-container\",children:/*#__PURE__*/_jsx(AmenitiesItem,{HA25ea1GV:\"terminal-window\",height:\"100%\",id:\"goOyoV5FW\",layoutId:\"goOyoV5FW\",lImN1j5Wz:\"Smart Termostat\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IXjTqE2yq:{width:\"calc(max((min(100vw, 1070px) - 144px) / 4, 1px) * 2 + 32px)\"},ohJIUe6_M:{width:\"calc(max((min(100vw, 1070px) - 248px) / 8, 1px) * 2 + 24px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"calc(max((min(100vw, 1070px) - 168px) / 8, 1px) * 2 + 24px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-14xlde9-container\",children:/*#__PURE__*/_jsx(AmenitiesItem,{HA25ea1GV:\"campfire\",height:\"100%\",id:\"hWN9Wl1kP\",layoutId:\"hWN9Wl1kP\",lImN1j5Wz:\"Fireplace\",style:{width:\"100%\"},width:\"100%\"})})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ys5aos\",\"data-framer-name\":\"Row 2\",name:\"Row 2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oybkfy\",\"data-framer-name\":\"Column\",name:\"Column\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-zeqyv\",\"data-styles-preset\":\"OPqAtIrZ0\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-ad0b327b-ba31-46e6-a7aa-3b6a4238bea1, rgb(12, 10, 9))\"},children:\"Safety\"})}),className:\"framer-15jz3km\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],name:\"Title\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation13,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref7,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1v8bxbs\",\"data-framer-name\":\"Divider\",name:\"Divider\",style:{transformPerspective:1200}}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f5cobd\",\"data-framer-name\":\"Amenities\",name:\"Amenities\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IXjTqE2yq:{width:\"calc(max((min(100vw, 1070px) - 144px) / 4, 1px) * 2 + 32px)\"},ohJIUe6_M:{width:\"calc(max((min(100vw, 1070px) - 248px) / 8, 1px) * 2 + 24px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"calc(max((min(100vw, 1070px) - 168px) / 8, 1px) * 2 + 24px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1a52e4o-container\",children:/*#__PURE__*/_jsx(AmenitiesItem,{HA25ea1GV:\"shield-check\",height:\"100%\",id:\"VEOGt3QJj\",layoutId:\"VEOGt3QJj\",lImN1j5Wz:\"Smart Security Systems\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IXjTqE2yq:{width:\"calc(max((min(100vw, 1070px) - 144px) / 4, 1px) * 2 + 32px)\"},ohJIUe6_M:{width:\"calc(max((min(100vw, 1070px) - 248px) / 8, 1px) * 2 + 24px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"calc(max((min(100vw, 1070px) - 168px) / 8, 1px) * 2 + 24px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-p8kbr-container\",children:/*#__PURE__*/_jsx(AmenitiesItem,{HA25ea1GV:\"lock-key\",height:\"100%\",id:\"i08Fn2xC_\",layoutId:\"i08Fn2xC_\",lImN1j5Wz:\"Anti-theft Door\",style:{width:\"100%\"},width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s3qsn3\",\"data-framer-name\":\"Column\",name:\"Column\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-zeqyv\",\"data-styles-preset\":\"OPqAtIrZ0\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-ad0b327b-ba31-46e6-a7aa-3b6a4238bea1, rgb(12, 10, 9))\"},children:\"Office\"})}),className:\"framer-p0sa7d\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],name:\"Title\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation13,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref7,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1my6cep\",\"data-framer-name\":\"Divider\",name:\"Divider\",style:{transformPerspective:1200}}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17ww9jt\",\"data-framer-name\":\"Amenities\",name:\"Amenities\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IXjTqE2yq:{width:\"calc(max((min(100vw, 1070px) - 144px) / 4, 1px) * 2 + 32px)\"},ohJIUe6_M:{width:\"calc(max((min(100vw, 1070px) - 248px) / 8, 1px) * 2 + 24px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"calc(max((min(100vw, 1070px) - 168px) / 8, 1px) * 2 + 24px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-h1mut5-container\",children:/*#__PURE__*/_jsx(AmenitiesItem,{HA25ea1GV:\"desk\",height:\"100%\",id:\"zb4qYcWYC\",layoutId:\"zb4qYcWYC\",lImN1j5Wz:\"Desk Space\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IXjTqE2yq:{width:\"calc(max((min(100vw, 1070px) - 144px) / 4, 1px) * 2 + 32px)\"},ohJIUe6_M:{width:\"calc(max((min(100vw, 1070px) - 248px) / 8, 1px) * 2 + 24px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"calc(max((min(100vw, 1070px) - 168px) / 8, 1px) * 2 + 24px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-16ja5ux-container\",children:/*#__PURE__*/_jsx(AmenitiesItem,{HA25ea1GV:\"printer\",height:\"100%\",id:\"pzSYkv689\",layoutId:\"pzSYkv689\",lImN1j5Wz:\"Printer\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IXjTqE2yq:{width:\"calc(max((min(100vw, 1070px) - 144px) / 4, 1px) * 2 + 32px)\"},ohJIUe6_M:{width:\"calc(max((min(100vw, 1070px) - 248px) / 8, 1px) * 2 + 24px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"calc(max((min(100vw, 1070px) - 168px) / 8, 1px) * 2 + 24px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-112669f-container\",children:/*#__PURE__*/_jsx(AmenitiesItem,{HA25ea1GV:\"computer-tower\",height:\"100%\",id:\"dkIwhPF7r\",layoutId:\"dkIwhPF7r\",lImN1j5Wz:\"Office Supplies\",style:{width:\"100%\"},width:\"100%\"})})})})]})]})]})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1sszxm6\",\"data-framer-name\":\"3rd Section\",id:id6,name:\"3rd Section\",ref:ref8,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gm046q\",\"data-framer-name\":\"Explore the state\",name:\"Explore the state\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-mo6mlt\",\"data-framer-name\":\"Header\",name:\"Header\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1akaaq5\",\"data-styles-preset\":\"kCach6_Wo\",children:\"A Tuscan Lifestyle Villa\"})}),className:\"framer-1fzj39b\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],name:\"Title\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IXjTqE2yq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-08227ae4-e555-4489-bf64-cf6b864788ad, rgb(41, 37, 36))\"},children:\"Experience the charm of Villa Collalto, a luxurious Tuscan escape. With its elegant interiors, picturesque gardens, and sparkling pool, your perfect getaway awaits.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-08227ae4-e555-4489-bf64-cf6b864788ad, rgb(41, 37, 36))\"},children:\"Experience the charm of Villa Collalto, a luxurious Tuscan escape. With its elegant interiors, picturesque gardens, and sparkling pool, your perfect getaway awaits.\"})}),className:\"framer-1v276ru\",\"data-framer-name\":\"Subtitle\",fonts:[\"Inter\"],name:\"Subtitle\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"QLGNhqaYZ\"},implicitPathVariables:undefined},{href:{webPageId:\"QLGNhqaYZ\"},implicitPathVariables:undefined},{href:{webPageId:\"QLGNhqaYZ\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vwf0hh-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IXjTqE2yq:{link:resolvedLinks1[2]},ohJIUe6_M:{link:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"MhPioz2fP\",layoutId:\"MhPioz2fP\",link:resolvedLinks1[0],newTab:false,title:\"View Villa\",variant:\"TaszkuIpg\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-wiuisa-container\",\"data-framer-name\":\"Rooms\",name:\"Rooms\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IXjTqE2yq:{arrowObject:{arrowFill:\"var(--token-ad0b327b-ba31-46e6-a7aa-3b6a4238bea1, rgb(12, 10, 9))\",arrowPadding:24,arrowRadius:0,arrowSize:48,showMouseControls:true},gap:12,sizingObject:{heightInset:0,heightRows:2,heightType:\"stretch\",widthColumns:1,widthInset:100,widthType:\"stretch\"}},ohJIUe6_M:{sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"columns\"}}},children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"var(--token-ad0b327b-ba31-46e6-a7aa-3b6a4238bea1, rgb(12, 10, 9))\",arrowPadding:48,arrowRadius:0,arrowSize:48,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:36,height:\"100%\",id:\"trgmfZIbm\",layoutId:\"trgmfZIbm\",name:\"Rooms\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"384px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qpkgup-container\",\"data-framer-name\":\"Garden\",name:\"Garden\",children:/*#__PURE__*/_jsx(InteriorCard,{BTbl7j5nl:\"Discover our tranquil garden oasis featuring a corner bar, large swimming pool with sunbeds overlooking the enchanting Tuscan countryside.\",height:\"100%\",id:\"fqmRa6O6X\",layoutId:\"fqmRa6O6X\",name:\"Garden\",r7nWn2hEo:addImageAlt({src:\"https://framerusercontent.com/images/2guYTUZHSXUN0Tcn2SDZ8XQ79qg.jpg\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\",YP9fpaph3:\"Garden\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"384px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-u6ukxe-container\",\"data-framer-name\":\"Living\",name:\"Living\",children:/*#__PURE__*/_jsx(InteriorCard,{BTbl7j5nl:\"The villa features a grand living room on the first floor, perfect for gatherings, and a second-floor living room with a balcony for scenic views and relaxation.\",height:\"100%\",id:\"t74h1_3SG\",layoutId:\"t74h1_3SG\",name:\"Living\",r7nWn2hEo:addImageAlt({src:\"https://framerusercontent.com/images/xJ4ChhkEQcDb570XAfCsLCFqHso.jpg\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\",YP9fpaph3:\"Living\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"384px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-nh5ac3-container\",\"data-framer-name\":\"Suites\",name:\"Suites\",children:/*#__PURE__*/_jsx(InteriorCard,{BTbl7j5nl:\"Within the villa, you'll find 2 exquisite suites, each adorned with distinctive d\\xe9cor and equipped with a private bathroom.\",height:\"100%\",id:\"kfA6aDDxO\",layoutId:\"kfA6aDDxO\",name:\"Suites\",r7nWn2hEo:addImageAlt({src:\"https://framerusercontent.com/images/kP8fHz56pdbbaef2CyGb5SlAEIo.jpg\",srcSet:\"https://framerusercontent.com/images/kP8fHz56pdbbaef2CyGb5SlAEIo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/kP8fHz56pdbbaef2CyGb5SlAEIo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/kP8fHz56pdbbaef2CyGb5SlAEIo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/kP8fHz56pdbbaef2CyGb5SlAEIo.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/kP8fHz56pdbbaef2CyGb5SlAEIo.jpg 4629w\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\",YP9fpaph3:\"Suites\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"384px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-i2rpbd-container\",\"data-framer-name\":\"Master Bedrooms\",name:\"Master Bedrooms\",children:/*#__PURE__*/_jsx(InteriorCard,{BTbl7j5nl:\"The villa features 11 double bedrooms, each uniquely furnished with stylish colors and patterns, complete with private bathrooms.\",height:\"100%\",id:\"GWAtTjgRy\",layoutId:\"GWAtTjgRy\",name:\"Master Bedrooms\",r7nWn2hEo:addImageAlt({src:\"https://framerusercontent.com/images/cUjSkZtGNkPzqX6UZxhddPuCSDg.jpg\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\",YP9fpaph3:\"Master Bedrooms\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"384px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pmgxd7-container\",\"data-framer-name\":\"Bathrooms\",name:\"Bathrooms\",children:/*#__PURE__*/_jsx(InteriorCard,{BTbl7j5nl:\"The rooms at Villa Collalto comes with beautifully appointed ensuite bathrooms. Each bathroom is a luxurious sanctuary, designed for elegance and comfort.\",height:\"100%\",id:\"tPbbxVOQ8\",layoutId:\"tPbbxVOQ8\",name:\"Bathrooms\",r7nWn2hEo:addImageAlt({src:\"https://framerusercontent.com/images/uEFCbFGaNPQ02QF8q2Wtikwu3Rw.jpg\",srcSet:\"https://framerusercontent.com/images/uEFCbFGaNPQ02QF8q2Wtikwu3Rw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/uEFCbFGaNPQ02QF8q2Wtikwu3Rw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/uEFCbFGaNPQ02QF8q2Wtikwu3Rw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/uEFCbFGaNPQ02QF8q2Wtikwu3Rw.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/uEFCbFGaNPQ02QF8q2Wtikwu3Rw.jpg 4417w\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\",YP9fpaph3:\"Bathrooms\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"384px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-hwplgt-container\",\"data-framer-name\":\"Dependance\",name:\"Dependance\",children:/*#__PURE__*/_jsx(InteriorCard,{BTbl7j5nl:\"Our elegant Dependance within the villa, featuring a tastefully furnished suite on the ground floor and two bedrooms with unique views on the first floor, overlooking the entire property.\",height:\"100%\",id:\"oH9Pbe2ka\",layoutId:\"oH9Pbe2ka\",name:\"Dependance\",r7nWn2hEo:addImageAlt({src:\"https://framerusercontent.com/images/oQsBz4SOLZhCtXhDY24BQ6y7mRk.jpg\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\",YP9fpaph3:\"Dependance\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"384px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-4ff02d-container\",\"data-framer-name\":\"Pool\",name:\"Pool\",children:/*#__PURE__*/_jsx(InteriorCard,{BTbl7j5nl:\"Explore our serene garden oasis featuring a pool measuring 14m x 7m, complete with sunbeds, a gazebo with a view on the Tuscan countryside.\",height:\"100%\",id:\"tRt2CoG6B\",layoutId:\"tRt2CoG6B\",name:\"Pool\",r7nWn2hEo:addImageAlt({src:\"https://framerusercontent.com/images/f4w7KTum3uIjzJo2DSOuqJiUQwg.jpg\",srcSet:\"https://framerusercontent.com/images/f4w7KTum3uIjzJo2DSOuqJiUQwg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/f4w7KTum3uIjzJo2DSOuqJiUQwg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/f4w7KTum3uIjzJo2DSOuqJiUQwg.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/f4w7KTum3uIjzJo2DSOuqJiUQwg.jpg 4032w\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\",YP9fpaph3:\"Pool\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"384px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-jfqpoa-container\",\"data-framer-name\":\"Tennis\",name:\"Tennis\",children:/*#__PURE__*/_jsx(InteriorCard,{BTbl7j5nl:\"Discover our intimate garden tennis court, ideal for enjoying a game in a tranquil outdoor setting.\",height:\"100%\",id:\"VwCFwOa7p\",layoutId:\"VwCFwOa7p\",name:\"Tennis\",r7nWn2hEo:addImageAlt({src:\"https://framerusercontent.com/images/WcIVaSpZjrF5PvAP6hcs2QgxvZI.jpg\",srcSet:\"https://framerusercontent.com/images/WcIVaSpZjrF5PvAP6hcs2QgxvZI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/WcIVaSpZjrF5PvAP6hcs2QgxvZI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/WcIVaSpZjrF5PvAP6hcs2QgxvZI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/WcIVaSpZjrF5PvAP6hcs2QgxvZI.jpg 4063w\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\",YP9fpaph3:\"Tennis Court\"})})})],snapObject:{fluid:true,snap:true,snapEdge:\"center\"},style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IXjTqE2yq:{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,style:{transformPerspective:1200}}},children:/*#__PURE__*/_jsx(ContainerWithFX,{className:\"framer-1nk8cw0-container\",\"data-framer-name\":\"Images Ticker\",name:\"Images Ticker\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"LzsEqbZkz\",layoutId:\"LzsEqbZkz\",name:\"Images Ticker\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:true,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Image of Property\",fit:\"fill\",intrinsicHeight:750,intrinsicWidth:563,pixelHeight:567,pixelWidth:850,src:\"https://framerusercontent.com/images/Qp8jUYG2I434wgJ17v3o4hGGiU.jpg\"},className:\"framer-15quffw\",\"data-framer-name\":\"1\",name:\"1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Image of Property\",fit:\"fill\",intrinsicHeight:5983,intrinsicWidth:3971,pixelHeight:2268,pixelWidth:4032,src:\"https://framerusercontent.com/images/6bJ7TFt26srIbZh8uQEklAguR7w.jpg\"},className:\"framer-1s1zi1j\",\"data-framer-name\":\"4\",name:\"4\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Image of Property\",fit:\"fill\",intrinsicHeight:3648,intrinsicWidth:5472,pixelHeight:2268,pixelWidth:4032,src:\"https://framerusercontent.com/images/fhFBLtEaEhB48KA6XR1onIOWE8.jpg?scale-down-to=1024\"},className:\"framer-irrfru\",\"data-framer-name\":\"2\",name:\"2\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Image of Property\",fit:\"fill\",intrinsicHeight:4803,intrinsicWidth:3160,pixelHeight:2268,pixelWidth:4032,src:\"https://framerusercontent.com/images/RyqfpJYbfkGpWRsKiEyzZzjhVEE.jpg?scale-down-to=1024\"},className:\"framer-1nvv83h\",\"data-framer-name\":\"3\",name:\"3\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Image of Property\",fit:\"fill\",intrinsicHeight:4242,intrinsicWidth:2819,pixelHeight:2268,pixelWidth:4032,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/BCqm86nGdO5QdlWhdRlNej4NIqs.jpg?scale-down-to=1024\"},className:\"framer-g1enx7\",\"data-framer-name\":\"5\",name:\"5\"})],speed:80,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-rz1n71\",\"data-framer-name\":\"5th Section\",name:\"5th Section\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IXjTqE2yq:{background:{alt:\"Image of Mom with Kid\",fit:\"fill\",intrinsicHeight:1031,intrinsicWidth:687,loading:\"lazy\",pixelHeight:4672,pixelWidth:7008,positionX:\"center\",positionY:\"center\",sizes:\"calc(min(100vw, 1070px) - 48px)\",src:\"https://framerusercontent.com/images/H6XTmV8aAkn0eROnPgsLxctDg.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/H6XTmV8aAkn0eROnPgsLxctDg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/H6XTmV8aAkn0eROnPgsLxctDg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/H6XTmV8aAkn0eROnPgsLxctDg.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/H6XTmV8aAkn0eROnPgsLxctDg.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/H6XTmV8aAkn0eROnPgsLxctDg.jpg 7008w\"}},ohJIUe6_M:{background:{alt:\"Image of Mom with Kid\",fit:\"fill\",intrinsicHeight:1031,intrinsicWidth:687,loading:\"lazy\",pixelHeight:4672,pixelWidth:7008,positionX:\"center\",positionY:\"center\",sizes:\"650px\",src:\"https://framerusercontent.com/images/H6XTmV8aAkn0eROnPgsLxctDg.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/H6XTmV8aAkn0eROnPgsLxctDg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/H6XTmV8aAkn0eROnPgsLxctDg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/H6XTmV8aAkn0eROnPgsLxctDg.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/H6XTmV8aAkn0eROnPgsLxctDg.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/H6XTmV8aAkn0eROnPgsLxctDg.jpg 7008w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Image of Mom with Kid\",fit:\"fill\",intrinsicHeight:1031,intrinsicWidth:687,loading:\"lazy\",pixelHeight:4672,pixelWidth:7008,positionX:\"center\",positionY:\"center\",sizes:\"447px\",src:\"https://framerusercontent.com/images/H6XTmV8aAkn0eROnPgsLxctDg.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/H6XTmV8aAkn0eROnPgsLxctDg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/H6XTmV8aAkn0eROnPgsLxctDg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/H6XTmV8aAkn0eROnPgsLxctDg.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/H6XTmV8aAkn0eROnPgsLxctDg.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/H6XTmV8aAkn0eROnPgsLxctDg.jpg 7008w\"},className:\"framer-nmumzp\",\"data-framer-name\":\"Img\",name:\"Img\"})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1oagxi\",\"data-framer-name\":\"Header\",name:\"Header\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1akaaq5\",\"data-styles-preset\":\"kCach6_Wo\",style:{\"--framer-text-alignment\":\"left\"},children:'\"Whether you are looking for a space, for a corporate meeting with breakout space, or social events such as weddings to celebrate, Villa Collalto accommodates groups of different sizes, from intimate reunion to large parties.\"'})}),className:\"framer-e04669\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],name:\"Title\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"sSmczGc00\"},implicitPathVariables:undefined},{href:{webPageId:\"sSmczGc00\"},implicitPathVariables:undefined},{href:{webPageId:\"sSmczGc00\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fgxaxz-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IXjTqE2yq:{link:resolvedLinks2[2]},ohJIUe6_M:{link:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"sqrKcEdHW\",layoutId:\"sqrKcEdHW\",link:resolvedLinks2[0],newTab:false,title:\"Contact\",variant:\"TaszkuIpg\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IXjTqE2yq:{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,style:{transformPerspective:1200}}},children:/*#__PURE__*/_jsx(ContainerWithFX,{className:\"framer-yl82an-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,canvasPlay:false,controls:false,height:\"100%\",id:\"zVQNWSNjO\",isMixedBorderRadius:false,layoutId:\"zVQNWSNjO\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/TaJXpr13Of8qPlFbFek7oqOig6U.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-d6ekqz\",\"data-framer-name\":\"7th Section\",name:\"7th Section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vgufke\",id:id7,ref:ref9,children:[/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition14},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation16,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"Image of Property\",fit:\"fill\",intrinsicHeight:586,intrinsicWidth:391,loading:\"lazy\",pixelHeight:4e3,pixelWidth:6e3,positionX:\"right\",positionY:\"center\",src:\"https://framerusercontent.com/images/bfCtPE31xrviEdy74qWpD6B3Y.jpg?scale-down-to=1024\"},className:\"framer-191fkkp\",\"data-framer-name\":\"Img\",name:\"Img\",style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1opu5k2\",\"data-framer-name\":\"- Spacer\",name:\"- Spacer\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IXjTqE2yq:{background:{alt:\"Image of Property\",fit:\"fill\",intrinsicHeight:391.5,intrinsicWidth:586.5,loading:\"lazy\",pixelHeight:3141,pixelWidth:4711,src:\"https://framerusercontent.com/images/Fcw5CIwrBbh6FLqGUU20Te5JE88.jpg?scale-down-to=1024\"}},ohJIUe6_M:{background:{alt:\"Image of Property\",fit:\"fill\",intrinsicHeight:391.5,intrinsicWidth:586.5,loading:\"lazy\",pixelHeight:3141,pixelWidth:4711,src:\"https://framerusercontent.com/images/Fcw5CIwrBbh6FLqGUU20Te5JE88.jpg?scale-down-to=1024\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition14},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation16,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"Image of Property\",fit:\"fill\",intrinsicHeight:391.5,intrinsicWidth:586.5,loading:\"lazy\",pixelHeight:4e3,pixelWidth:6e3,src:\"https://framerusercontent.com/images/1zHCNhMf7hy7Xc14rrWEJfrsoM.jpg?scale-down-to=1024\"},className:\"framer-kbwv04\",\"data-framer-name\":\"Img\",name:\"Img\",style:{transformPerspective:1200}})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1x72q08 hidden-rvgfud\",\"data-framer-name\":\"- Spacer\",name:\"- Spacer\"}),isDisplayed1()&&/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition14},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation16,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"Image of Property\",fit:\"fill\",intrinsicHeight:879,intrinsicWidth:586.5,loading:\"lazy\",pixelHeight:2268,pixelWidth:4032,src:\"https://framerusercontent.com/images/7XWRXJJHLT3mtqybvXtNs1gw8.jpg?scale-down-to=1024\"},className:\"framer-6bc12x hidden-b30582\",\"data-framer-name\":\"Img\",name:\"Img\",style:{transformPerspective:1200}})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IXjTqE2yq:{transformTemplate:transformTemplate3}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-iwd7m1\",\"data-framer-name\":\"Header\",name:\"Header\",style:{transformPerspective:1200},transformTemplate:transformTemplate2,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IXjTqE2yq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1akaaq5\",\"data-styles-preset\":\"kCach6_Wo\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bef2be7e-f458-4045-89b1-bb8f421a47e0, rgb(245, 245, 244))\"},children:[\"Elegant Nights at \",/*#__PURE__*/_jsx(\"br\",{}),\"Villa Collalto\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1akaaq5\",\"data-styles-preset\":\"kCach6_Wo\",style:{\"--framer-text-color\":\"var(--token-bef2be7e-f458-4045-89b1-bb8f421a47e0, rgb(245, 245, 244))\"},children:\"Elegant Nights at Villa Collalto\"})}),className:\"framer-7cd6y3\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],name:\"Title\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4dba340c-51ba-4c0a-a081-3b53162e14d2, rgb(168, 162, 158))\"},children:\"Celebrate in style at Villa Collalto, where breathtaking Tuscan views and elegant spaces create the ideal setting for any event.\"})}),className:\"framer-11mttg5\",\"data-framer-name\":\"Subtitle\",fonts:[\"Inter\"],name:\"Subtitle\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"sSmczGc00\"},implicitPathVariables:undefined},{href:{webPageId:\"sSmczGc00\"},implicitPathVariables:undefined},{href:{webPageId:\"sSmczGc00\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition15},__framer__animateOnce:true,__framer__enter:animation17,__framer__exit:animation18,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-z1jy3o-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IXjTqE2yq:{link:resolvedLinks3[2]},ohJIUe6_M:{link:resolvedLinks3[1]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"vVF7OWXWE\",layoutId:\"vVF7OWXWE\",link:resolvedLinks3[0],newTab:false,title:\"Book a Night\",variant:\"kcxnV08Ac\",width:\"100%\"})})})})})]})})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-18tqtri\",\"data-framer-name\":\"4th Section\",name:\"4th Section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-eudooi\",\"data-framer-name\":\"Map\",name:\"Map\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1p7xfgz-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(GoogleMaps,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,coordinates:\"43.348542409677925, 11.106808427159105\",height:\"100%\",id:\"F2qTU6T6y\",isMixedBorderRadius:false,layoutId:\"F2qTU6T6y\",style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,width:\"100%\",zoom:13})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-rt0p3\",\"data-framer-name\":\"Overlay\",name:\"Overlay\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-i2kjy3\",\"data-framer-name\":\"Center Frame\",name:\"Center Frame\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pr7kw8\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rfxhg\",\"data-framer-name\":\"Header\",name:\"Header\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IXjTqE2yq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1akaaq5\",\"data-styles-preset\":\"kCach6_Wo\",style:{\"--framer-text-alignment\":\"center\"},children:\"Everything available with a reach of hand. \"})})},ohJIUe6_M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1akaaq5\",\"data-styles-preset\":\"kCach6_Wo\",style:{\"--framer-text-alignment\":\"center\"},children:\"Everything available with a reach of hand. \"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1akaaq5\",\"data-styles-preset\":\"kCach6_Wo\",style:{\"--framer-text-alignment\":\"left\"},children:\"Everything available with a reach of hand. \"})}),className:\"framer-66ji1g\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],name:\"Title\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IXjTqE2yq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ad0b327b-ba31-46e6-a7aa-3b6a4238bea1, rgb(12, 10, 9))\"},children:\"Villa Collalto is nestled in the picturesque Tuscan hills.\\xa0 The expertly restored property is very well located:\\xa0\"})})},ohJIUe6_M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ad0b327b-ba31-46e6-a7aa-3b6a4238bea1, rgb(12, 10, 9))\"},children:\"Villa Collalto is nestled in the picturesque Tuscan hills.\\xa0 The expertly restored property is very well located:\\xa0\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--token-ad0b327b-ba31-46e6-a7aa-3b6a4238bea1, rgb(12, 10, 9))\"},children:\"Villa Collalto is nestled in the picturesque Tuscan hills.\\xa0 The expertly restored property is very well located:\\xa0\"})}),className:\"framer-17zeu7k\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],name:\"Title\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yvss51\",\"data-framer-name\":\"Cards\",name:\"Cards\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IXjTqE2yq:{width:\"max(min(100vw, 1070px) - 48px, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"396px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1z0u9zk-container\",children:/*#__PURE__*/_jsx(LocationCard,{height:\"100%\",id:\"MZp5EnTdP\",layoutId:\"MZp5EnTdP\",p4gBWVvkQ:\"Pisa Internation Airport\",style:{width:\"100%\"},width:\"100%\",XOb4kNjg_:\"Plane Landing\",XULpbFb6U:\"100 km\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IXjTqE2yq:{width:\"max(min(100vw, 1070px) - 48px, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"396px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-129zza2-container\",children:/*#__PURE__*/_jsx(LocationCard,{height:\"100%\",id:\"nBHHBdhhp\",layoutId:\"nBHHBdhhp\",p4gBWVvkQ:\"Train Station\",style:{width:\"100%\"},width:\"100%\",XOb4kNjg_:\"Train\",XULpbFb6U:\"15 km\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IXjTqE2yq:{width:\"max(min(100vw, 1070px) - 48px, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"396px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-lva86a-container\",children:/*#__PURE__*/_jsx(LocationCard,{height:\"100%\",id:\"iaeYQNoGq\",layoutId:\"iaeYQNoGq\",p4gBWVvkQ:\"XXX\",style:{width:\"100%\"},width:\"100%\",XOb4kNjg_:\"martini\",XULpbFb6U:\"350 m\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IXjTqE2yq:{width:\"max(min(100vw, 1070px) - 48px, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"396px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1g7y5yk-container\",children:/*#__PURE__*/_jsx(LocationCard,{height:\"100%\",id:\"VUYSFTT3Q\",layoutId:\"VUYSFTT3Q\",p4gBWVvkQ:\"XXXX\",style:{width:\"100%\"},width:\"100%\",XOb4kNjg_:\"plane landing\",XULpbFb6U:\"3 km\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IXjTqE2yq:{width:\"max(min(100vw, 1070px) - 48px, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"396px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1g2jya9-container\",children:/*#__PURE__*/_jsx(LocationCard,{height:\"100%\",id:\"l0r2b6iBf\",layoutId:\"l0r2b6iBf\",p4gBWVvkQ:\"Train Station\",style:{width:\"100%\"},width:\"100%\",XOb4kNjg_:\"train\",XULpbFb6U:\"1.5 km\"})})})})]})]})})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-k2aebd\",\"data-framer-name\":\"3rd Section\",id:id8,name:\"3rd Section\",ref:ref10,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cprxyh\",\"data-framer-name\":\"FAQ\",name:\"FAQ\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-duwc1e\",\"data-framer-name\":\"Header\",name:\"Header\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IXjTqE2yq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1akaaq5\",\"data-styles-preset\":\"kCach6_Wo\",style:{\"--framer-text-alignment\":\"left\"},children:\"All your questions answered\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1akaaq5\",\"data-styles-preset\":\"kCach6_Wo\",children:\"All your questions answered\"})}),className:\"framer-16scyi8\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],name:\"Title\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IXjTqE2yq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-08227ae4-e555-4489-bf64-cf6b864788ad, rgb(41, 37, 36))\"},children:\"We are happy to answer any question you have, text us at infovillacollalto@gmail.com to get your answers\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-08227ae4-e555-4489-bf64-cf6b864788ad, rgb(41, 37, 36))\"},children:\"We are happy to answer any question you have, text us at infovillacollalto@gmail.com to get your answers\"})}),className:\"framer-1y7jwnb\",\"data-framer-name\":\"Subtitle\",fonts:[\"Inter\"],name:\"Subtitle\",verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-2ulgnq-container\",children:/*#__PURE__*/_jsx(FAQComp,{height:\"100%\",id:\"UZFnqRV0c\",layoutId:\"UZFnqRV0c\",style:{width:\"100%\"},width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-18ji194-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IXjTqE2yq:{variant:\"APwZmw1eD\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"JclFx2sZS\",layoutId:\"JclFx2sZS\",style:{height:\"100%\",width:\"100%\"},variant:\"uYsc3iJaG\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IXjTqE2yq:{animate:undefined,initial:undefined,optimized:undefined,style:{}}},children:/*#__PURE__*/_jsx(Container,{animate:animation19,className:\"framer-ytqde8-container\",\"data-framer-appear-id\":\"ytqde8\",initial:animation20,layoutScroll:true,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IXjTqE2yq:{__framer__targets:[{ref:ref2,target:\"pMWqroGY4\"}],variant:\"XYz6uQrtg\"}},children:/*#__PURE__*/_jsx(NavigationWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref2,target:\"BZvfiS4_B\"},{ref:ref6,target:\"zb5eX7gIP\"},{ref:ref8,target:\"BZvfiS4_B\"},{ref:ref9,target:\"zb5eX7gIP\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"wNMuAwoOv\",layoutId:\"wNMuAwoOv\",style:{width:\"100%\"},variant:\"BVdTsB8VP\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1prsj8k\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wzy1m4-container\",\"data-framer-name\":\"Translate\",name:\"Translate\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:' <div class=\"gtranslate_wrapper\"></div>\\n<script>window.gtranslateSettings = {\"default_language\":\"en\",\"languages\":[\"en\",\"de\",\"it\",],\"wrapper_selector\":\".gtranslate_wrapper\"}</script>\\n<script src=\"https://cdn.gtranslate.net/widgets/latest/float.js\" defer></script>',id:\"aM2CpnFYF\",layoutId:\"aM2CpnFYF\",name:\"Translate\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-v2YmC { background: rgb(252, 251, 250); }`,\".framer-v2YmC.framer-lux5qc, .framer-v2YmC .framer-lux5qc { display: block; }\",\".framer-v2YmC.framer-72rtr7 { align-content: center; align-items: center; background-color: #fcfbfa; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-v2YmC .framer-1c7x7dn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-v2YmC .framer-15udj2m { flex: none; height: 100vh; overflow: hidden; position: sticky; top: 0px; width: 100%; will-change: transform; }\",\".framer-v2YmC .framer-1v3le5r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 96px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 192px; transform: translateX(-50%); width: min-content; }\",\".framer-v2YmC .framer-kjr03r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 50px 0px 0px 0px; position: relative; width: 562px; }\",\".framer-v2YmC .framer-1bl7udj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-v2YmC .framer-5w34cs, .framer-v2YmC .framer-qiv8r { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-v2YmC .framer-vph1aj, .framer-v2YmC .framer-1xgnbmm { --framer-paragraph-spacing: 16px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-v2YmC .framer-1pqvha6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-v2YmC .framer-1hovtuw, .framer-v2YmC .framer-1p05a9w, .framer-v2YmC .framer-yjtc4y, .framer-v2YmC .framer-1fzj39b, .framer-v2YmC .framer-7cd6y3, .framer-v2YmC .framer-16scyi8 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-v2YmC .framer-1yoel40 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 417px; word-break: break-word; word-wrap: break-word; }\",\".framer-v2YmC .framer-o4lb4i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 11px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-v2YmC .framer-n5bcu2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-v2YmC .framer-1nq6tjg { align-content: center; align-items: center; background-color: #fcfbfa; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 40vh; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-v2YmC .framer-1kwbdmq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 436px; }\",\".framer-v2YmC .framer-12yne2r, .framer-v2YmC .framer-mo6mlt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 384px; }\",\".framer-v2YmC .framer-1di0y7f, .framer-v2YmC .framer-1qg52yo, .framer-v2YmC .framer-vx76ae, .framer-v2YmC .framer-1a8ma9b, .framer-v2YmC .framer-p8vmpd, .framer-v2YmC .framer-134kbn6, .framer-v2YmC .framer-15jz3km, .framer-v2YmC .framer-p0sa7d, .framer-v2YmC .framer-1v276ru, .framer-v2YmC .framer-e04669, .framer-v2YmC .framer-66ji1g, .framer-v2YmC .framer-17zeu7k, .framer-v2YmC .framer-1y7jwnb { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-v2YmC .framer-wkfsqu-container, .framer-v2YmC .framer-1vwf0hh-container, .framer-v2YmC .framer-1fgxaxz-container, .framer-v2YmC .framer-z1jy3o-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-v2YmC .framer-1yb72y8 { align-content: center; align-items: center; background-color: #fcfbfa; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 1614px; overflow: hidden; padding: 96px 0px 160px 0px; position: relative; width: 100%; }\",\".framer-v2YmC .framer-jv4gih, .framer-v2YmC .framer-mj42zo { display: grid; flex: none; gap: 10px; grid-auto-rows: min-content; grid-template-columns: repeat(12, minmax(1px, 1fr)); grid-template-rows: repeat(1, min-content); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-v2YmC .framer-t2s1il { align-self: start; flex: none; grid-column: auto / span 3; height: 100px; justify-self: start; overflow: hidden; position: relative; width: 100%; }\",\".framer-v2YmC .framer-3m7ce1 { align-self: start; aspect-ratio: 1.4980842911877394 / 1; flex: none; grid-column: auto / span 6; height: var(--framer-aspect-ratio-supported, 398px); justify-self: start; position: relative; width: 100%; }\",\".framer-v2YmC .framer-u1pb1s { display: grid; flex: none; gap: 10px; grid-auto-rows: min-content; grid-template-columns: repeat(12, minmax(1px, 1fr)); grid-template-rows: repeat(1, min-content); height: min-content; justify-content: end; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-v2YmC .framer-1yk8jaz, .framer-v2YmC .framer-kgpewo { align-self: start; flex: none; height: 100px; justify-self: start; overflow: hidden; position: relative; width: 100%; }\",\".framer-v2YmC .framer-1vgm7et { align-self: start; flex: none; grid-column: auto / span 3; height: 250px; justify-self: start; position: relative; width: 100%; }\",\".framer-v2YmC .framer-kp262h, .framer-v2YmC .framer-4m7k1 { align-self: start; flex: none; grid-column: auto / span 2; height: 100px; justify-self: start; overflow: hidden; position: relative; width: 100%; }\",\".framer-v2YmC .framer-1q2dode { align-self: start; aspect-ratio: 0.989 / 1; flex: none; grid-column: auto / span 5; height: var(--framer-aspect-ratio-supported, 500px); justify-self: start; position: relative; width: 100%; }\",\".framer-v2YmC .framer-18yy4lh { align-self: start; aspect-ratio: 1 / 1; flex: none; grid-column: auto / span 5; height: var(--framer-aspect-ratio-supported, 494px); justify-self: start; position: relative; width: 100%; }\",\".framer-v2YmC .framer-h5b4ws { align-self: start; aspect-ratio: 1 / 1; flex: none; grid-column: auto / span 3; height: var(--framer-aspect-ratio-supported, 293px); justify-self: start; position: relative; width: 100%; }\",\".framer-v2YmC .framer-1tyrx9q, .framer-v2YmC .framer-d6ekqz { align-content: center; align-items: center; background-color: var(--token-ad0b327b-ba31-46e6-a7aa-3b6a4238bea1, #0c0a09); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100vh; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-v2YmC .framer-2y524u { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-v2YmC .framer-1wxkjg4 { background: linear-gradient(90deg, rgba(12, 10, 9, 0.64) 0%, rgba(28, 25, 23, 0) 100%); flex: none; height: 100vh; left: 0px; overflow: hidden; position: absolute; top: calc(50.00000000000002% - 100vh / 2); width: 60%; z-index: 0; }\",\".framer-v2YmC .framer-17gzi0t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; max-width: 1070px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-v2YmC .framer-ygerlu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 660px; }\",\".framer-v2YmC .framer-o535nj { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-v2YmC .framer-8bhszw { --framer-paragraph-spacing: 16px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-v2YmC .framer-168z7fr { align-content: center; align-items: center; background-color: #fcfbfa; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-v2YmC .framer-em610q { align-content: flex-start; align-items: flex-start; background-color: #fcfbfa; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 96px; height: min-content; justify-content: center; max-width: 1070px; overflow: hidden; padding: 164px 0px 164px 0px; position: relative; width: 100%; }\",\".framer-v2YmC .framer-sc5qia { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 500px; }\",\".framer-v2YmC .framer-1968jco { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-v2YmC .framer-1xysfev, .framer-v2YmC .framer-1ys5aos { display: grid; flex: none; gap: 24px; grid-auto-rows: min-content; grid-template-columns: repeat(8, minmax(1px, 1fr)); grid-template-rows: repeat(1, min-content); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-v2YmC .framer-k6e2lj, .framer-v2YmC .framer-w15dii, .framer-v2YmC .framer-1r4azqk, .framer-v2YmC .framer-9rb2yy, .framer-v2YmC .framer-1oybkfy, .framer-v2YmC .framer-s3qsn3 { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; grid-column: auto / span 2; height: auto; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-v2YmC .framer-13fea95, .framer-v2YmC .framer-1bvixz4, .framer-v2YmC .framer-x0tpqz, .framer-v2YmC .framer-6r8lpa, .framer-v2YmC .framer-1v8bxbs, .framer-v2YmC .framer-1my6cep { background-color: #003844; flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-v2YmC .framer-1j07adv, .framer-v2YmC .framer-17ilehd, .framer-v2YmC .framer-gnddwd, .framer-v2YmC .framer-1d0a2bz, .framer-v2YmC .framer-1f5cobd, .framer-v2YmC .framer-17ww9jt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-v2YmC .framer-e2u6km-container, .framer-v2YmC .framer-1hh4pmr-container, .framer-v2YmC .framer-5tj3mo-container, .framer-v2YmC .framer-7bodau-container, .framer-v2YmC .framer-pdwjx7-container, .framer-v2YmC .framer-1ikrctf-container, .framer-v2YmC .framer-1yen21z-container, .framer-v2YmC .framer-1aq6ilx-container, .framer-v2YmC .framer-139us0y-container, .framer-v2YmC .framer-fmcig6-container, .framer-v2YmC .framer-1ouchrc-container, .framer-v2YmC .framer-hn5gko-container, .framer-v2YmC .framer-t8215u-container, .framer-v2YmC .framer-i9r29u-container, .framer-v2YmC .framer-1diku4d-container, .framer-v2YmC .framer-x0fg3n-container, .framer-v2YmC .framer-g3q2qk-container, .framer-v2YmC .framer-168qtqj-container, .framer-v2YmC .framer-w3oxa8-container, .framer-v2YmC .framer-u9m95u-container, .framer-v2YmC .framer-12hsty9-container, .framer-v2YmC .framer-1kyyn6m-container, .framer-v2YmC .framer-1uckxbs-container, .framer-v2YmC .framer-14xlde9-container, .framer-v2YmC .framer-1a52e4o-container, .framer-v2YmC .framer-p8kbr-container, .framer-v2YmC .framer-h1mut5-container, .framer-v2YmC .framer-16ja5ux-container, .framer-v2YmC .framer-112669f-container, .framer-v2YmC .framer-2ulgnq-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-v2YmC .framer-1sszxm6, .framer-v2YmC .framer-k2aebd { align-content: center; align-items: center; background-color: var(--token-71e3013e-c9c6-437d-b1e2-86bd87173ee8, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 180px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 100px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-v2YmC .framer-1gm046q, .framer-v2YmC .framer-1cprxyh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 96px; height: min-content; justify-content: center; max-width: 800px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-v2YmC .framer-wiuisa-container { flex: none; height: 640px; max-width: 1200px; position: relative; width: 100%; }\",\".framer-v2YmC .framer-1qpkgup-container, .framer-v2YmC .framer-u6ukxe-container, .framer-v2YmC .framer-nh5ac3-container, .framer-v2YmC .framer-i2rpbd-container, .framer-v2YmC .framer-1pmgxd7-container, .framer-v2YmC .framer-hwplgt-container, .framer-v2YmC .framer-4ff02d-container, .framer-v2YmC .framer-jfqpoa-container { height: 640px; position: relative; width: 384px; }\",\".framer-v2YmC .framer-1nk8cw0-container, .framer-v2YmC .framer-18ji194-container { flex: none; height: 440px; position: relative; width: 100%; }\",\".framer-v2YmC .framer-15quffw, .framer-v2YmC .framer-g1enx7 { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 440px); overflow: hidden; position: relative; width: 440px; }\",\".framer-v2YmC .framer-1s1zi1j, .framer-v2YmC .framer-irrfru { height: 440px; overflow: hidden; position: relative; width: 700px; }\",\".framer-v2YmC .framer-1nvv83h { height: 440px; overflow: hidden; position: relative; width: 293px; }\",\".framer-v2YmC .framer-rz1n71 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 120px; height: 100vh; justify-content: flex-start; max-width: 1070px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-v2YmC .framer-nmumzp { aspect-ratio: 0.6666666666666666 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 671px); overflow: hidden; position: relative; width: 447px; }\",\".framer-v2YmC .framer-1oagxi { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 500px; }\",\".framer-v2YmC .framer-yl82an-container { flex: none; height: 100vh; position: relative; width: 100%; }\",\".framer-v2YmC .framer-vgufke { display: grid; flex: 1 0 0px; gap: 16px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(12, minmax(1px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: 1px; justify-content: center; max-width: 1614px; overflow: hidden; padding: 64px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-v2YmC .framer-191fkkp { align-self: start; aspect-ratio: 0.6672354948805461 / 1; flex: none; grid-column: auto / span 3; height: var(--framer-aspect-ratio-supported, 432px); justify-self: start; overflow: visible; position: relative; width: 100%; }\",\".framer-v2YmC .framer-1opu5k2 { align-self: start; flex: none; height: 50px; justify-self: start; overflow: hidden; position: relative; width: 100%; }\",\".framer-v2YmC .framer-kbwv04 { align-self: end; aspect-ratio: 1.4980842911877394 / 1; flex: none; grid-column: auto / span 3; height: var(--framer-aspect-ratio-supported, 193px); justify-self: start; overflow: visible; position: relative; width: 100%; }\",\".framer-v2YmC .framer-1x72q08 { align-self: start; flex: none; grid-column: auto / span 2; height: 50px; justify-self: start; overflow: hidden; position: relative; width: 100%; }\",\".framer-v2YmC .framer-6bc12x { align-self: center; aspect-ratio: 0.6672354948805461 / 1; flex: none; grid-column: auto / span 3; height: var(--framer-aspect-ratio-supported, 432px); justify-self: start; overflow: visible; position: relative; width: 100%; }\",\".framer-v2YmC .framer-iwd7m1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 50%; transform: translate(-50%, -50%); width: min-content; z-index: 1; }\",\".framer-v2YmC .framer-11mttg5 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 514px; word-break: break-word; word-wrap: break-word; }\",\".framer-v2YmC .framer-18tqtri { align-content: center; align-items: center; background-color: var(--token-71e3013e-c9c6-437d-b1e2-86bd87173ee8, #ffffff); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 800px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-v2YmC .framer-eudooi { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; justify-content: center; overflow: hidden; padding: 0px; position: absolute; right: 0px; top: 0px; width: 45%; z-index: 1; }\",\".framer-v2YmC .framer-1p7xfgz-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-v2YmC .framer-rt0p3 { background: linear-gradient(89.99999999999991deg, #ffffff 0%, hsla(0, 0%, 100%, 0) 100%); bottom: -2px; flex: none; left: 0px; position: absolute; top: -2px; width: 300px; z-index: 1; }\",\".framer-v2YmC .framer-i2kjy3 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 1070px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-v2YmC .framer-1pr7kw8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 396px; }\",\".framer-v2YmC .framer-1rfxhg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-v2YmC .framer-yvss51 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 396px; }\",\".framer-v2YmC .framer-1z0u9zk-container, .framer-v2YmC .framer-129zza2-container, .framer-v2YmC .framer-lva86a-container, .framer-v2YmC .framer-1g7y5yk-container, .framer-v2YmC .framer-1g2jya9-container { flex: none; height: auto; position: relative; width: 396px; }\",\".framer-v2YmC .framer-duwc1e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 499px; }\",\".framer-v2YmC .framer-ytqde8-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 10; }\",\".framer-v2YmC .framer-1prsj8k { bottom: 23px; flex: none; height: 45px; left: 20px; overflow: hidden; position: absolute; width: 122px; }\",\".framer-v2YmC .framer-1wzy1m4-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-v2YmC.framer-72rtr7, .framer-v2YmC .framer-1c7x7dn, .framer-v2YmC .framer-1v3le5r, .framer-v2YmC .framer-kjr03r, .framer-v2YmC .framer-1bl7udj, .framer-v2YmC .framer-1pqvha6, .framer-v2YmC .framer-o4lb4i, .framer-v2YmC .framer-n5bcu2, .framer-v2YmC .framer-1nq6tjg, .framer-v2YmC .framer-1kwbdmq, .framer-v2YmC .framer-12yne2r, .framer-v2YmC .framer-1yb72y8, .framer-v2YmC .framer-1tyrx9q, .framer-v2YmC .framer-17gzi0t, .framer-v2YmC .framer-ygerlu, .framer-v2YmC .framer-168z7fr, .framer-v2YmC .framer-em610q, .framer-v2YmC .framer-sc5qia, .framer-v2YmC .framer-1968jco, .framer-v2YmC .framer-k6e2lj, .framer-v2YmC .framer-1j07adv, .framer-v2YmC .framer-w15dii, .framer-v2YmC .framer-17ilehd, .framer-v2YmC .framer-1r4azqk, .framer-v2YmC .framer-gnddwd, .framer-v2YmC .framer-9rb2yy, .framer-v2YmC .framer-1d0a2bz, .framer-v2YmC .framer-1oybkfy, .framer-v2YmC .framer-1f5cobd, .framer-v2YmC .framer-s3qsn3, .framer-v2YmC .framer-17ww9jt, .framer-v2YmC .framer-1sszxm6, .framer-v2YmC .framer-1gm046q, .framer-v2YmC .framer-mo6mlt, .framer-v2YmC .framer-rz1n71, .framer-v2YmC .framer-1oagxi, .framer-v2YmC .framer-d6ekqz, .framer-v2YmC .framer-iwd7m1, .framer-v2YmC .framer-18tqtri, .framer-v2YmC .framer-eudooi, .framer-v2YmC .framer-i2kjy3, .framer-v2YmC .framer-1pr7kw8, .framer-v2YmC .framer-1rfxhg, .framer-v2YmC .framer-yvss51, .framer-v2YmC .framer-k2aebd, .framer-v2YmC .framer-1cprxyh, .framer-v2YmC .framer-duwc1e { gap: 0px; } .framer-v2YmC.framer-72rtr7 > *, .framer-v2YmC .framer-1c7x7dn > *, .framer-v2YmC .framer-yvss51 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-v2YmC.framer-72rtr7 > :first-child, .framer-v2YmC .framer-1c7x7dn > :first-child, .framer-v2YmC .framer-1v3le5r > :first-child, .framer-v2YmC .framer-kjr03r > :first-child, .framer-v2YmC .framer-1pqvha6 > :first-child, .framer-v2YmC .framer-o4lb4i > :first-child, .framer-v2YmC .framer-n5bcu2 > :first-child, .framer-v2YmC .framer-1nq6tjg > :first-child, .framer-v2YmC .framer-1kwbdmq > :first-child, .framer-v2YmC .framer-12yne2r > :first-child, .framer-v2YmC .framer-1yb72y8 > :first-child, .framer-v2YmC .framer-1tyrx9q > :first-child, .framer-v2YmC .framer-ygerlu > :first-child, .framer-v2YmC .framer-168z7fr > :first-child, .framer-v2YmC .framer-em610q > :first-child, .framer-v2YmC .framer-sc5qia > :first-child, .framer-v2YmC .framer-1968jco > :first-child, .framer-v2YmC .framer-k6e2lj > :first-child, .framer-v2YmC .framer-1j07adv > :first-child, .framer-v2YmC .framer-w15dii > :first-child, .framer-v2YmC .framer-17ilehd > :first-child, .framer-v2YmC .framer-1r4azqk > :first-child, .framer-v2YmC .framer-gnddwd > :first-child, .framer-v2YmC .framer-9rb2yy > :first-child, .framer-v2YmC .framer-1d0a2bz > :first-child, .framer-v2YmC .framer-1oybkfy > :first-child, .framer-v2YmC .framer-1f5cobd > :first-child, .framer-v2YmC .framer-s3qsn3 > :first-child, .framer-v2YmC .framer-17ww9jt > :first-child, .framer-v2YmC .framer-1sszxm6 > :first-child, .framer-v2YmC .framer-1gm046q > :first-child, .framer-v2YmC .framer-mo6mlt > :first-child, .framer-v2YmC .framer-1oagxi > :first-child, .framer-v2YmC .framer-d6ekqz > :first-child, .framer-v2YmC .framer-iwd7m1 > :first-child, .framer-v2YmC .framer-1pr7kw8 > :first-child, .framer-v2YmC .framer-1rfxhg > :first-child, .framer-v2YmC .framer-yvss51 > :first-child, .framer-v2YmC .framer-k2aebd > :first-child, .framer-v2YmC .framer-1cprxyh > :first-child, .framer-v2YmC .framer-duwc1e > :first-child { margin-top: 0px; } .framer-v2YmC.framer-72rtr7 > :last-child, .framer-v2YmC .framer-1c7x7dn > :last-child, .framer-v2YmC .framer-1v3le5r > :last-child, .framer-v2YmC .framer-kjr03r > :last-child, .framer-v2YmC .framer-1pqvha6 > :last-child, .framer-v2YmC .framer-o4lb4i > :last-child, .framer-v2YmC .framer-n5bcu2 > :last-child, .framer-v2YmC .framer-1nq6tjg > :last-child, .framer-v2YmC .framer-1kwbdmq > :last-child, .framer-v2YmC .framer-12yne2r > :last-child, .framer-v2YmC .framer-1yb72y8 > :last-child, .framer-v2YmC .framer-1tyrx9q > :last-child, .framer-v2YmC .framer-ygerlu > :last-child, .framer-v2YmC .framer-168z7fr > :last-child, .framer-v2YmC .framer-em610q > :last-child, .framer-v2YmC .framer-sc5qia > :last-child, .framer-v2YmC .framer-1968jco > :last-child, .framer-v2YmC .framer-k6e2lj > :last-child, .framer-v2YmC .framer-1j07adv > :last-child, .framer-v2YmC .framer-w15dii > :last-child, .framer-v2YmC .framer-17ilehd > :last-child, .framer-v2YmC .framer-1r4azqk > :last-child, .framer-v2YmC .framer-gnddwd > :last-child, .framer-v2YmC .framer-9rb2yy > :last-child, .framer-v2YmC .framer-1d0a2bz > :last-child, .framer-v2YmC .framer-1oybkfy > :last-child, .framer-v2YmC .framer-1f5cobd > :last-child, .framer-v2YmC .framer-s3qsn3 > :last-child, .framer-v2YmC .framer-17ww9jt > :last-child, .framer-v2YmC .framer-1sszxm6 > :last-child, .framer-v2YmC .framer-1gm046q > :last-child, .framer-v2YmC .framer-mo6mlt > :last-child, .framer-v2YmC .framer-1oagxi > :last-child, .framer-v2YmC .framer-d6ekqz > :last-child, .framer-v2YmC .framer-iwd7m1 > :last-child, .framer-v2YmC .framer-1pr7kw8 > :last-child, .framer-v2YmC .framer-1rfxhg > :last-child, .framer-v2YmC .framer-yvss51 > :last-child, .framer-v2YmC .framer-k2aebd > :last-child, .framer-v2YmC .framer-1cprxyh > :last-child, .framer-v2YmC .framer-duwc1e > :last-child { margin-bottom: 0px; } .framer-v2YmC .framer-1v3le5r > *, .framer-v2YmC .framer-em610q > *, .framer-v2YmC .framer-1gm046q > *, .framer-v2YmC .framer-1cprxyh > * { margin: 0px; margin-bottom: calc(96px / 2); margin-top: calc(96px / 2); } .framer-v2YmC .framer-kjr03r > *, .framer-v2YmC .framer-1968jco > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-v2YmC .framer-1bl7udj > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-v2YmC .framer-1bl7udj > :first-child, .framer-v2YmC .framer-17gzi0t > :first-child, .framer-v2YmC .framer-rz1n71 > :first-child, .framer-v2YmC .framer-18tqtri > :first-child, .framer-v2YmC .framer-eudooi > :first-child, .framer-v2YmC .framer-i2kjy3 > :first-child { margin-left: 0px; } .framer-v2YmC .framer-1bl7udj > :last-child, .framer-v2YmC .framer-17gzi0t > :last-child, .framer-v2YmC .framer-rz1n71 > :last-child, .framer-v2YmC .framer-18tqtri > :last-child, .framer-v2YmC .framer-eudooi > :last-child, .framer-v2YmC .framer-i2kjy3 > :last-child { margin-right: 0px; } .framer-v2YmC .framer-1pqvha6 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-v2YmC .framer-o4lb4i > * { margin: 0px; margin-bottom: calc(11px / 2); margin-top: calc(11px / 2); } .framer-v2YmC .framer-n5bcu2 > *, .framer-v2YmC .framer-1nq6tjg > *, .framer-v2YmC .framer-1tyrx9q > *, .framer-v2YmC .framer-168z7fr > *, .framer-v2YmC .framer-d6ekqz > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-v2YmC .framer-1kwbdmq > *, .framer-v2YmC .framer-k6e2lj > *, .framer-v2YmC .framer-1j07adv > *, .framer-v2YmC .framer-w15dii > *, .framer-v2YmC .framer-17ilehd > *, .framer-v2YmC .framer-1r4azqk > *, .framer-v2YmC .framer-gnddwd > *, .framer-v2YmC .framer-9rb2yy > *, .framer-v2YmC .framer-1d0a2bz > *, .framer-v2YmC .framer-1oybkfy > *, .framer-v2YmC .framer-1f5cobd > *, .framer-v2YmC .framer-s3qsn3 > *, .framer-v2YmC .framer-17ww9jt > *, .framer-v2YmC .framer-1rfxhg > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-v2YmC .framer-12yne2r > *, .framer-v2YmC .framer-ygerlu > *, .framer-v2YmC .framer-sc5qia > *, .framer-v2YmC .framer-mo6mlt > *, .framer-v2YmC .framer-1oagxi > *, .framer-v2YmC .framer-iwd7m1 > *, .framer-v2YmC .framer-duwc1e > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-v2YmC .framer-1yb72y8 > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-v2YmC .framer-17gzi0t > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-v2YmC .framer-1sszxm6 > *, .framer-v2YmC .framer-k2aebd > * { margin: 0px; margin-bottom: calc(180px / 2); margin-top: calc(180px / 2); } .framer-v2YmC .framer-rz1n71 > * { margin: 0px; margin-left: calc(120px / 2); margin-right: calc(120px / 2); } .framer-v2YmC .framer-18tqtri > *, .framer-v2YmC .framer-eudooi > *, .framer-v2YmC .framer-i2kjy3 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-v2YmC .framer-1pr7kw8 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } }\",\"@media (min-width: 1200px) { .framer-v2YmC .hidden-72rtr7 { display: none !important; } }\",`@media (min-width: 810px) and (max-width: 1199px) { .framer-v2YmC .hidden-rvgfud { display: none !important; } .${metadata.bodyClassName}-framer-v2YmC { background: rgb(252, 251, 250); } .framer-v2YmC.framer-72rtr7 { width: 810px; } .framer-v2YmC .framer-1yb72y8 { gap: 60px; padding: 0px 0px 80px 0px; } .framer-v2YmC .framer-3m7ce1 { height: var(--framer-aspect-ratio-supported, 267px); } .framer-v2YmC .framer-1yk8jaz { grid-column: auto / span 2; } .framer-v2YmC .framer-1vgm7et { grid-column: auto / span 2; height: 130px; } .framer-v2YmC .framer-1q2dode { grid-column: auto / span 4; height: var(--framer-aspect-ratio-supported, 267px); } .framer-v2YmC .framer-18yy4lh { grid-column: auto / span 6; height: var(--framer-aspect-ratio-supported, 400px); } .framer-v2YmC .framer-4m7k1 { grid-column: unset; } .framer-v2YmC .framer-h5b4ws { height: var(--framer-aspect-ratio-supported, 195px); } .framer-v2YmC .framer-1wxkjg4 { background: linear-gradient(180deg, rgba(12, 10, 9, 0.64) 0%, rgba(28, 25, 23, 0) 100%); height: 80%; top: 0px; width: 100%; } .framer-v2YmC .framer-17gzi0t { flex: 1 0 0px; flex-direction: column; gap: 128px; height: 1px; justify-content: center; } .framer-v2YmC .framer-em610q { height: 114.62962962962963vh; padding: 160px 40px 128px 40px; } .framer-v2YmC .framer-1oybkfy, .framer-v2YmC .framer-e04669 { order: 0; } .framer-v2YmC .framer-s3qsn3 { order: 1; } .framer-v2YmC .framer-1sszxm6 { padding: 80px 0px 80px 0px; } .framer-v2YmC .framer-1gm046q, .framer-v2YmC .framer-1cprxyh { gap: 64px; max-width: unset; padding: 0px 24px 0px 24px; } .framer-v2YmC .framer-rz1n71 { flex-direction: column; gap: 50px; height: 90vh; max-width: 1080px; padding: 80px 24px 0px 24px; } .framer-v2YmC .framer-nmumzp { aspect-ratio: unset; height: 465px; order: 1; width: 650px; } .framer-v2YmC .framer-1oagxi { gap: 20px; order: 0; width: 650px; } .framer-v2YmC .framer-1fgxaxz-container, .framer-v2YmC .framer-1opu5k2 { order: 2; } .framer-v2YmC .framer-yl82an-container { height: 80vh; } .framer-v2YmC .framer-vgufke { grid-template-columns: repeat(8, minmax(1px, 1fr)); } .framer-v2YmC .framer-191fkkp { grid-column: auto / span 2; height: var(--framer-aspect-ratio-supported, 286px); order: 0; } .framer-v2YmC .framer-kbwv04 { align-self: start; height: var(--framer-aspect-ratio-supported, 196px); justify-self: center; order: 3; } .framer-v2YmC .framer-6bc12x { align-self: end; grid-column: auto / span 2; height: var(--framer-aspect-ratio-supported, 286px); order: 1; } .framer-v2YmC .framer-18tqtri { align-content: flex-start; align-items: flex-start; height: 100vh; } .framer-v2YmC .framer-eudooi { height: 45%; left: 0px; top: unset; width: unset; } .framer-v2YmC .framer-rt0p3 { background: linear-gradient(180deg, #ffffff 0%, hsla(0, 0%, 100%, 0) 100%); bottom: unset; height: 40%; right: 0px; top: 0px; width: unset; } .framer-v2YmC .framer-i2kjy3 { align-content: flex-start; align-items: flex-start; height: 50%; padding: 128px 24px 0px 24px; } .framer-v2YmC .framer-1pr7kw8 { flex: 1 0 0px; gap: 0px; width: 1px; } .framer-v2YmC .framer-1rfxhg { align-content: center; align-items: center; } .framer-v2YmC .framer-yvss51 { padding: 16px; width: 100%; } .framer-v2YmC .framer-k2aebd { padding: 128px 0px 128px 0px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-v2YmC .framer-1yb72y8, .framer-v2YmC .framer-17gzi0t, .framer-v2YmC .framer-1gm046q, .framer-v2YmC .framer-rz1n71, .framer-v2YmC .framer-1oagxi, .framer-v2YmC .framer-1pr7kw8, .framer-v2YmC .framer-1cprxyh { gap: 0px; } .framer-v2YmC .framer-1yb72y8 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-v2YmC .framer-1yb72y8 > :first-child, .framer-v2YmC .framer-17gzi0t > :first-child, .framer-v2YmC .framer-1gm046q > :first-child, .framer-v2YmC .framer-rz1n71 > :first-child, .framer-v2YmC .framer-1oagxi > :first-child, .framer-v2YmC .framer-1pr7kw8 > :first-child, .framer-v2YmC .framer-1cprxyh > :first-child { margin-top: 0px; } .framer-v2YmC .framer-1yb72y8 > :last-child, .framer-v2YmC .framer-17gzi0t > :last-child, .framer-v2YmC .framer-1gm046q > :last-child, .framer-v2YmC .framer-rz1n71 > :last-child, .framer-v2YmC .framer-1oagxi > :last-child, .framer-v2YmC .framer-1pr7kw8 > :last-child, .framer-v2YmC .framer-1cprxyh > :last-child { margin-bottom: 0px; } .framer-v2YmC .framer-17gzi0t > * { margin: 0px; margin-bottom: calc(128px / 2); margin-top: calc(128px / 2); } .framer-v2YmC .framer-1gm046q > *, .framer-v2YmC .framer-1cprxyh > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-v2YmC .framer-rz1n71 > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-v2YmC .framer-1oagxi > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-v2YmC .framer-1pr7kw8 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }}`,`@media (max-width: 809px) { .framer-v2YmC .hidden-b30582 { display: none !important; } .${metadata.bodyClassName}-framer-v2YmC { background: rgb(252, 251, 250); } .framer-v2YmC.framer-72rtr7 { width: 390px; } .framer-v2YmC .framer-15udj2m { position: relative; top: unset; } .framer-v2YmC .framer-1v3le5r { gap: 72px; left: 24px; right: 24px; transform: unset; width: unset; } .framer-v2YmC .framer-kjr03r { gap: 40px; width: 100%; } .framer-v2YmC .framer-1bl7udj { align-content: flex-start; align-items: flex-start; } .framer-v2YmC .framer-1pqvha6, .framer-v2YmC .framer-1yoel40, .framer-v2YmC .framer-12yne2r, .framer-v2YmC .framer-ygerlu, .framer-v2YmC .framer-sc5qia, .framer-v2YmC .framer-11mttg5, .framer-v2YmC .framer-yvss51, .framer-v2YmC .framer-1z0u9zk-container, .framer-v2YmC .framer-129zza2-container, .framer-v2YmC .framer-lva86a-container, .framer-v2YmC .framer-1g7y5yk-container, .framer-v2YmC .framer-1g2jya9-container { width: 100%; } .framer-v2YmC .framer-1hovtuw, .framer-v2YmC .framer-7cd6y3, .framer-v2YmC .framer-16scyi8 { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-v2YmC .framer-1kwbdmq { padding: 0px 24px 0px 24px; width: 100%; } .framer-v2YmC .framer-1yb72y8 { gap: 60px; padding: 0px 0px 48px 0px; } .framer-v2YmC .framer-3m7ce1 { height: var(--framer-aspect-ratio-supported, 127px); } .framer-v2YmC .framer-1vgm7et { grid-column: auto / span 4; height: 100px; } .framer-v2YmC .framer-kp262h, .framer-v2YmC .framer-4m7k1 { grid-column: unset; } .framer-v2YmC .framer-1q2dode { height: var(--framer-aspect-ratio-supported, 159px); } .framer-v2YmC .framer-18yy4lh { height: var(--framer-aspect-ratio-supported, 157px); } .framer-v2YmC .framer-h5b4ws { height: var(--framer-aspect-ratio-supported, 90px); } .framer-v2YmC .framer-1wxkjg4 { background: linear-gradient(180deg, rgba(12, 10, 9, 0.64) 0%, rgba(28, 25, 23, 0) 100%); height: 80%; top: 0px; width: 100%; } .framer-v2YmC .framer-17gzi0t { flex: 1 0 0px; flex-direction: column; gap: 128px; height: 1px; justify-content: center; padding: 0px 24px 0px 24px; } .framer-v2YmC .framer-em610q { padding: 128px 24px 128px 24px; } .framer-v2YmC .framer-1968jco { gap: 32px; } .framer-v2YmC .framer-1xysfev, .framer-v2YmC .framer-1ys5aos { gap: 32px; grid-template-columns: repeat(4, minmax(1px, 1fr)); } .framer-v2YmC .framer-k6e2lj, .framer-v2YmC .framer-w15dii, .framer-v2YmC .framer-1r4azqk, .framer-v2YmC .framer-9rb2yy { gap: 20px; } .framer-v2YmC .framer-1oybkfy { gap: 20px; order: 0; } .framer-v2YmC .framer-s3qsn3 { gap: 20px; order: 1; } .framer-v2YmC .framer-1sszxm6, .framer-v2YmC .framer-k2aebd { padding: 128px 0px 128px 0px; } .framer-v2YmC .framer-1gm046q, .framer-v2YmC .framer-1cprxyh { gap: 64px; max-width: unset; padding: 0px 24px 0px 24px; } .framer-v2YmC .framer-mo6mlt, .framer-v2YmC .framer-duwc1e { align-content: flex-start; align-items: flex-start; width: 100%; } .framer-v2YmC .framer-wiuisa-container { height: 400px; } .framer-v2YmC .framer-rz1n71 { flex-direction: column; gap: 64px; height: min-content; padding: 48px 24px 64px 24px; } .framer-v2YmC .framer-nmumzp { height: var(--framer-aspect-ratio-supported, 513px); order: 1; width: 100%; } .framer-v2YmC .framer-1oagxi { order: 0; width: 100%; } .framer-v2YmC .framer-yl82an-container { height: 60vh; } .framer-v2YmC .framer-d6ekqz { height: min-content; } .framer-v2YmC .framer-vgufke { flex: none; grid-template-columns: repeat(8, minmax(1px, 1fr)); height: 713px; padding: 24px 24px 0px 24px; width: 390px; z-index: 1; } .framer-v2YmC .framer-191fkkp { align-self: end; height: var(--framer-aspect-ratio-supported, 178px); justify-self: end; order: 4; } .framer-v2YmC .framer-1opu5k2 { grid-column: auto / span 3; order: 1; } .framer-v2YmC .framer-kbwv04 { align-self: start; grid-column: auto / span 5; height: var(--framer-aspect-ratio-supported, 139px); justify-self: center; order: 0; } .framer-v2YmC .framer-1x72q08 { align-self: end; grid-column: auto / span 4; order: 3; } .framer-v2YmC .framer-iwd7m1 { gap: 24px; left: 24px; right: 24px; top: 50%; transform: translateY(-50%); width: unset; } .framer-v2YmC .framer-18tqtri { align-content: flex-start; align-items: flex-start; flex-direction: column; height: min-content; } .framer-v2YmC .framer-eudooi { bottom: unset; height: 380px; order: 1; position: relative; right: unset; top: unset; width: 390px; z-index: 0; } .framer-v2YmC .framer-rt0p3 { background: linear-gradient(180deg, #ffffff 0%, hsla(0, 0%, 100%, 0) 100%); bottom: unset; height: 40%; right: 0px; top: 0px; width: unset; } .framer-v2YmC .framer-i2kjy3 { align-content: flex-start; align-items: flex-start; flex: none; order: 0; padding: 128px 24px 0px 24px; width: 100%; } .framer-v2YmC .framer-1pr7kw8 { flex: 1 0 0px; gap: 36px; width: 1px; } .framer-v2YmC .framer-1rfxhg { align-content: center; align-items: center; } .framer-v2YmC .framer-1prsj8k { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; justify-content: center; padding: 0px; } .framer-v2YmC .framer-1wzy1m4-container { bottom: unset; flex: 1 0 0px; height: 100%; left: unset; order: 0; position: relative; right: unset; top: unset; width: 1px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-v2YmC .framer-1v3le5r, .framer-v2YmC .framer-kjr03r, .framer-v2YmC .framer-1yb72y8, .framer-v2YmC .framer-17gzi0t, .framer-v2YmC .framer-1968jco, .framer-v2YmC .framer-1xysfev, .framer-v2YmC .framer-k6e2lj, .framer-v2YmC .framer-w15dii, .framer-v2YmC .framer-1r4azqk, .framer-v2YmC .framer-9rb2yy, .framer-v2YmC .framer-1ys5aos, .framer-v2YmC .framer-1oybkfy, .framer-v2YmC .framer-s3qsn3, .framer-v2YmC .framer-1gm046q, .framer-v2YmC .framer-rz1n71, .framer-v2YmC .framer-iwd7m1, .framer-v2YmC .framer-18tqtri, .framer-v2YmC .framer-1pr7kw8, .framer-v2YmC .framer-1cprxyh, .framer-v2YmC .framer-1prsj8k { gap: 0px; } .framer-v2YmC .framer-1v3le5r > * { margin: 0px; margin-bottom: calc(72px / 2); margin-top: calc(72px / 2); } .framer-v2YmC .framer-1v3le5r > :first-child, .framer-v2YmC .framer-kjr03r > :first-child, .framer-v2YmC .framer-1yb72y8 > :first-child, .framer-v2YmC .framer-17gzi0t > :first-child, .framer-v2YmC .framer-1968jco > :first-child, .framer-v2YmC .framer-k6e2lj > :first-child, .framer-v2YmC .framer-w15dii > :first-child, .framer-v2YmC .framer-1r4azqk > :first-child, .framer-v2YmC .framer-9rb2yy > :first-child, .framer-v2YmC .framer-1oybkfy > :first-child, .framer-v2YmC .framer-s3qsn3 > :first-child, .framer-v2YmC .framer-1gm046q > :first-child, .framer-v2YmC .framer-rz1n71 > :first-child, .framer-v2YmC .framer-iwd7m1 > :first-child, .framer-v2YmC .framer-18tqtri > :first-child, .framer-v2YmC .framer-1pr7kw8 > :first-child, .framer-v2YmC .framer-1cprxyh > :first-child { margin-top: 0px; } .framer-v2YmC .framer-1v3le5r > :last-child, .framer-v2YmC .framer-kjr03r > :last-child, .framer-v2YmC .framer-1yb72y8 > :last-child, .framer-v2YmC .framer-17gzi0t > :last-child, .framer-v2YmC .framer-1968jco > :last-child, .framer-v2YmC .framer-k6e2lj > :last-child, .framer-v2YmC .framer-w15dii > :last-child, .framer-v2YmC .framer-1r4azqk > :last-child, .framer-v2YmC .framer-9rb2yy > :last-child, .framer-v2YmC .framer-1oybkfy > :last-child, .framer-v2YmC .framer-s3qsn3 > :last-child, .framer-v2YmC .framer-1gm046q > :last-child, .framer-v2YmC .framer-rz1n71 > :last-child, .framer-v2YmC .framer-iwd7m1 > :last-child, .framer-v2YmC .framer-18tqtri > :last-child, .framer-v2YmC .framer-1pr7kw8 > :last-child, .framer-v2YmC .framer-1cprxyh > :last-child { margin-bottom: 0px; } .framer-v2YmC .framer-kjr03r > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-v2YmC .framer-1yb72y8 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-v2YmC .framer-17gzi0t > * { margin: 0px; margin-bottom: calc(128px / 2); margin-top: calc(128px / 2); } .framer-v2YmC .framer-1968jco > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-v2YmC .framer-1xysfev > *, .framer-v2YmC .framer-1xysfev > :first-child, .framer-v2YmC .framer-1xysfev > :last-child, .framer-v2YmC .framer-1ys5aos > *, .framer-v2YmC .framer-1ys5aos > :first-child, .framer-v2YmC .framer-1ys5aos > :last-child { margin: 0px; } .framer-v2YmC .framer-k6e2lj > *, .framer-v2YmC .framer-w15dii > *, .framer-v2YmC .framer-1r4azqk > *, .framer-v2YmC .framer-9rb2yy > *, .framer-v2YmC .framer-1oybkfy > *, .framer-v2YmC .framer-s3qsn3 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-v2YmC .framer-1gm046q > *, .framer-v2YmC .framer-rz1n71 > *, .framer-v2YmC .framer-1cprxyh > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-v2YmC .framer-iwd7m1 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-v2YmC .framer-18tqtri > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-v2YmC .framer-1pr7kw8 > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-v2YmC .framer-1prsj8k > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-v2YmC .framer-1prsj8k > :first-child { margin-left: 0px; } .framer-v2YmC .framer-1prsj8k > :last-child { margin-right: 0px; } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 12620.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ohJIUe6_M\":{\"layout\":[\"fixed\",\"auto\"]},\"IXjTqE2yq\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-v2YmC\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:12620.5,width:1200};addFonts(FrameraugiA20Il,[{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\"}]},...ButtonFonts,...AmenitiesItemFonts,...InteriorCardFonts,...CarouselFonts,...TickerFonts,...VideoFonts,...GoogleMapsFonts,...LocationCardFonts,...FAQCompFonts,...FooterFonts,...NavigationFonts,...EmbedFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerResponsiveScreen\":\"\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ohJIUe6_M\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IXjTqE2yq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"12620.5\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["isMotionValue", "v", "MotionValue", "useAutoMotionValue", "inputValue", "options", "optionsRef", "pe", "animation", "didInitialMount", "isOnCanvas", "RenderTarget", "onChangeDeps", "onChange", "te", "transformer", "value", "ref", "value1", "useConstant", "isMotionValue", "motionValue", "ue", "ref1", "newValue", "ref2", "animate2", "ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "playing", "canvasPlay", "muted", "playsinline", "controls", "progress", "objectFit", "backgroundColor", "radius", "isMixed", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "restartOnEnter", "posterEnabled", "startTimeProp", "volume", "loop", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "videoRef", "pe", "isSafari", "useIsBrowserSafari", "requestingPlay", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "startTime", "shouldPlay", "autoPlay", "se", "isMuted", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "e", "pause", "ue", "videoProgress", "useAutoMotionValue", "value", "newValue", "useMotionValueEvent", "latest", "useOnEnter", "useOnExit", "src", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "clamp", "t", "e", "n", "progress", "t", "e", "n", "calcMaskWidth", "inset", "width", "useIsMouse", "isMouseDevice", "setIsMouseDevice", "ye", "fe", "window", "checkLimit", "progress", "target", "edgeOpacity", "moreItems", "buttonRef", "transition", "animate", "useGUI", "initialMoreItems", "initialAlpha", "pe", "useMotionValue", "fadeOpacity", "useTransform", "buttonOpacity", "v", "pointerEvents", "cursor", "buttonStyle", "baseButtonStyles", "setAriaVisible", "element", "useScrollLimits", "container", "axis", "scrollInfo", "updateCurrentScroll", "targetScroll", "checkLimits", "measureItems", "ue", "stopScroll", "scroll", "info", "stopResize", "resize", "Carousel", "slots", "gap", "align", "sizingObject", "fadeObject", "arrowObject", "snapObject", "progressObject", "ariaLabel", "borderRadius", "effectsObject", "props", "numItems", "j", "isCanvas", "RenderTarget", "padding", "usePadding", "axisLabel", "fadeContent", "fadeWidth", "fadeInset", "fadeTransition", "fadeAlpha", "snap", "snapEdge", "fluid", "widthType", "widthInset", "widthColumns", "heightType", "heightInset", "heightRows", "showScrollbar", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowPadding", "currentScroll", "newScroll", "start", "end", "startMaskInset", "endMaskInset", "baseWidth", "startMaskWidth", "endMaskWidth", "direction", "mask", "latest", "carouselRef", "numPages", "setNumPages", "itemStyle", "childStyle", "scrollOverflow", "containerStyle", "baseContainerStyle", "carouselStyle", "baseCarouselStyle", "carouselA11y", "itemA11y", "itemSizes", "te", "targetLength", "containerLength", "scrollLength", "current", "i", "start1", "end1", "newNumPages", "findNextItem", "delta", "children", "scrollTarget", "item", "length", "threshold", "isReducedMotion", "useReducedMotion", "goto", "scrollTo", "options", "gotoPage", "page", "gotoDelta", "pageLength", "currentPage", "clamp", "p", "Placeholder", "dots", "dotsBlurStyle", "isSelected", "Dot", "dotStyle", "u", "motion", "child", "index", "ref", "q", "controlsStyles", "dotsContainerStyle", "MouseStyles", "addPropertyControls", "ControlType", "paddingControl", "selectedOpacity", "unselectedOpacity", "total", "opacity", "ref1", "minScroll", "maxScroll", "inlinePadding", "top", "bottom", "right", "left", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "baseContainerStyle", "baseCarouselStyle", "baseButtonStyles", "controlsStyles", "dotsContainerStyle", "dotStyle", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "transition2", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "description", "height", "id", "image", "title", "width", "props", "_ref", "_ref1", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "r7nWn2hEo", "YP9fpaph3", "BTbl7j5nl", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Image2", "RichText2", "css", "Framercp8wCqVMw", "withCSS", "cp8wCqVMw_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "PhosphorFonts", "getFonts", "Icon", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "humanReadableVariantMap", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Component", "Y", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "KWiCY2jwy", "restProps", "ref", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapr2h380", "args", "onTap64j7iv", "isDisplayed", "defaultLayoutId", "ae", "LayoutGroup", "motion", "cx", "u", "RichText2", "x", "css", "FrameralFHaCPKo", "withCSS", "alFHaCPKo_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "FAQFonts", "getFonts", "alFHaCPKo_default", "cycleOrder", "variantClassNames", "humanReadableVariantMap", "transitions", "Component", "Y", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "restProps", "ref", "variant", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "transition", "variants", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "defaultLayoutId", "ae", "p", "LayoutGroup", "motion", "cx", "u", "alFHaCPKo_default", "css", "FramerDIvVXBh6A", "withCSS", "DIvVXBh6A_default", "addFonts", "FAQFonts", "fontStore", "fonts", "css", "className", "MotionDivWithFX", "withFX", "motion", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "ImageWithFX", "Image2", "ButtonFonts", "getFonts", "p3lQZRrbP_default", "AmenitiesItemFonts", "oClskVcHh_default", "InteriorCardFonts", "cp8wCqVMw_default", "CarouselFonts", "Carousel", "TickerFonts", "Ticker", "ContainerWithFX", "Container", "VideoFonts", "Video", "GoogleMapsFonts", "GoogleMaps", "RichTextWithFX", "RichText2", "LocationCardFonts", "QuHhqhayM_default", "FAQCompFonts", "DIvVXBh6A_default", "FooterFonts", "ewkakCpiY_default", "NavigationFonts", "UKdsWqyUR_default", "NavigationWithVariantAppearEffect", "withVariantAppearEffect", "EmbedFonts", "Embed", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "animation", "transition1", "animation1", "animation2", "transition2", "animation3", "transition3", "animation4", "animation5", "transition4", "animation6", "transition5", "animation7", "animation8", "transition6", "animation9", "animation10", "animation11", "transition7", "animation12", "animation13", "transition8", "animation14", "transition9", "transition10", "transition11", "transition12", "addImageAlt", "image", "alt", "transition13", "animation15", "transition14", "animation16", "transformTemplate2", "transformTemplate3", "animation17", "transition15", "animation18", "animation19", "animation20", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "ref1", "pe", "ref2", "useRouteElementId", "ref3", "id1", "id2", "ref4", "router", "useRouter", "id3", "ref5", "id4", "ref6", "id5", "ref7", "id6", "ref8", "id7", "ref9", "isDisplayed", "isDisplayed1", "id8", "ref10", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "PropertyOverrides2", "ImageWithFX", "MotionDivWithFX", "SVG", "x", "RichText2", "MotionDivWithOptimizedAppearEffect", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "Container", "p3lQZRrbP_default", "oClskVcHh_default", "resolvedLinks1", "Carousel", "cp8wCqVMw_default", "ContainerWithFX", "Ticker", "Image2", "resolvedLinks2", "Video", "resolvedLinks3", "GoogleMaps", "RichTextWithFX", "QuHhqhayM_default", "DIvVXBh6A_default", "ewkakCpiY_default", "NavigationWithVariantAppearEffect", "Embed", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "ButtonFonts", "AmenitiesItemFonts", "InteriorCardFonts", "CarouselFonts", "TickerFonts", "VideoFonts", "GoogleMapsFonts", "LocationCardFonts", "FAQCompFonts", "FooterFonts", "NavigationFonts", "EmbedFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
