{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/3z3cnMmPPHtEgWzAllJS/w7mDj43zf3Uuy1pWer2S/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){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 infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* 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:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (48da836)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withFX,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import Footer from\"#framer/local/canvasComponent/GgdFUtGAF/GgdFUtGAF.js\";import Nav from\"#framer/local/canvasComponent/ieuy8fRE2/ieuy8fRE2.js\";import Button from\"#framer/local/canvasComponent/iqKpwvLsS/iqKpwvLsS.js\";import RoomCard from\"#framer/local/canvasComponent/Mk0oz1D4m/Mk0oz1D4m.js\";import ButtonHero from\"#framer/local/canvasComponent/tFZa52ygl/tFZa52ygl.js\";import ButtonWithIcon from\"#framer/local/canvasComponent/UBX3bnWf0/UBX3bnWf0.js\";import Quartos from\"#framer/local/collection/Q66w_5ghx/Q66w_5ghx.js\";import*as sharedStyle1 from\"#framer/local/css/d0WA5d5b_/d0WA5d5b_.js\";import*as sharedStyle from\"#framer/local/css/H73t_W1ak/H73t_W1ak.js\";import*as sharedStyle3 from\"#framer/local/css/tittoIAe8/tittoIAe8.js\";import*as sharedStyle2 from\"#framer/local/css/xJ2wgdMZ0/xJ2wgdMZ0.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavFonts=getFonts(Nav);const NavWithVariantAppearEffect=withVariantAppearEffect(Nav);const ContainerWithFX=withFX(Container);const ButtonHeroFonts=getFonts(ButtonHero);const MotionDivWithFX=withFX(motion.div);const ButtonWithIconFonts=getFonts(ButtonWithIcon);const ImageWithFX=withFX(Image);const PhosphorFonts=getFonts(Phosphor);const TickerFonts=getFonts(Ticker);const ButtonFonts=getFonts(Button);const MotionSectionWithFX=withFX(motion.section);const RoomCardFonts=getFonts(RoomCard);const FooterFonts=getFonts(Footer);const breakpoints={kZ6fwR6Vk:\"(max-width: 809px)\",UFSIcBAOo:\"(min-width: 810px) and (max-width: 1199px)\",uI6TuZ1UR:\"(min-width: 1200px) and (max-width: 1559px)\",WQLkyLRf1:\"(min-width: 1560px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-137kf\";const variantClassNames={kZ6fwR6Vk:\"framer-v-16e3t2y\",UFSIcBAOo:\"framer-v-1mrfbca\",uI6TuZ1UR:\"framer-v-jj8utt\",WQLkyLRf1:\"framer-v-72rtr7\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-50};const transition1={damping:50,delay:0,mass:1,stiffness:100,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:-50};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:50};const transition2={damping:50,delay:.2,mass:1,stiffness:100,type:\"spring\"};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:50};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:150,y:0};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:150,y:0};const transition3={damping:50,delay:.1,mass:1,stiffness:100,type:\"spring\"};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:150,y:0};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:150};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:100,y:0};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:100,y:0};const transition4={damping:50,delay:.3,mass:1,stiffness:100,type:\"spring\"};const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:150,y:0};const animation13={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-150,y:0};const animation14={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:-150,y:0};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value}});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Laptop:\"uI6TuZ1UR\",Phone:\"kZ6fwR6Vk\",Tablet:\"UFSIcBAOo\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,TaWV0ODwBFzvHHs92g,IMNmiivHpFzvHHs92g,IoIiY6vC_FzvHHs92g,PuYurhAXKFzvHHs92g,RLliPhS6YFzvHHs92g,uRzhvgJIgFzvHHs92g,idFzvHHs92g,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const ref2=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"kZ6fwR6Vk\")return false;return true;};const router=useRouter();const elementId=useRouteElementId(\"vkxZc50A0\");const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"kZ6fwR6Vk\")return true;return false;};const defaultLayoutId=React.useId();useCustomCursors({});const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:104,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-9i1qns-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kZ6fwR6Vk:{__framer__targets:[{ref:ref2,target:\"VyM0ZEVGS\"}],variant:\"KDzwv72qe\"},UFSIcBAOo:{__framer__targets:[{ref:ref2,target:\"soOPiNIPi\"}],variant:\"qCccLIqny\"}},children:/*#__PURE__*/_jsx(NavWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref2,target:\"QMlHCoKCI\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"QTpQLz1_s\",layoutId:\"QTpQLz1_s\",style:{width:\"100%\"},variant:\"AyocQ7FLW\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c2xfq1\",\"data-framer-name\":\"Hero\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:921,intrinsicWidth:1920,pixelHeight:2392,pixelWidth:2729,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/6ELso8XcYPJpDW0FIxFsDZnY3KI.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/6ELso8XcYPJpDW0FIxFsDZnY3KI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/6ELso8XcYPJpDW0FIxFsDZnY3KI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/6ELso8XcYPJpDW0FIxFsDZnY3KI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/6ELso8XcYPJpDW0FIxFsDZnY3KI.jpg 2729w\"},className:\"framer-48702u\",\"data-framer-name\":\"BG Image\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-jvq64g\",\"data-framer-name\":\"Gradient\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bow1fw\",\"data-framer-name\":\"Hero Content\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-773oe9\",\"data-framer-name\":\"Top\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-1qobf4s\",\"data-styles-preset\":\"H73t_W1ak\",style:{\"--framer-text-color\":\"var(--token-ce16a6ab-b965-4173-bcd7-639c448a6533, rgb(255, 255, 255))\"},children:[\"Viva o melhor\",/*#__PURE__*/_jsx(\"br\",{}),\"de Rond\\xf4nia.\"]})}),className:\"framer-1cpm12g\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:210,children:/*#__PURE__*/_jsx(Container,{className:\"framer-kliotj-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kZ6fwR6Vk:{variant:\"INIXrVG_r\"},UFSIcBAOo:{variant:\"vRDBBMUbk\"},uI6TuZ1UR:{variant:\"vQJlSgTKa\"}},children:/*#__PURE__*/_jsx(ButtonHero,{height:\"100%\",id:\"r4OsWcV_U\",layoutId:\"r4OsWcV_U\",qlF82iuHs:true,UREL1yiPB:\"https://linktr.ee/catuaihotel?utm_source=linktree_profile_share&ltsid=56501be8-42af-4afd-849d-c6e622a5a9c3\",variant:\"wRV0aoe4O\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-mizucj\",\"data-framer-name\":\"Bottom\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yyd6s9\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dbtuql\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1er78qb\",\"data-styles-preset\":\"d0WA5d5b_\",style:{\"--framer-text-color\":\"var(--token-ce16a6ab-b965-4173-bcd7-639c448a6533, rgb(255, 255, 255))\"},children:\"Experimente acomoda\\xe7\\xf5es requintadas, comodidades de classe mundial e um servi\\xe7o personalizado projetado para superar suas expectativas.\"})}),className:\"framer-780s7t\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Gb1_jqHUW\"},implicitPathVariables:undefined},{href:{webPageId:\"Gb1_jqHUW\"},implicitPathVariables:undefined},{href:{webPageId:\"Gb1_jqHUW\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,children:/*#__PURE__*/_jsx(Container,{className:\"framer-bz2pqw-container hidden-16e3t2y\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UFSIcBAOo:{z7K7pxZPb:resolvedLinks[2]},uI6TuZ1UR:{z7K7pxZPb:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(ButtonWithIcon,{B0eLCip3m:\"Ver apartamentos\",GJPwsKfou:\"var(--token-ce16a6ab-b965-4173-bcd7-639c448a6533, rgb(255, 255, 255))\",height:\"100%\",id:\"Xh0BPvypr\",Kd3ZunuEn:{borderColor:'var(--token-ce16a6ab-b965-4173-bcd7-639c448a6533, rgb(255, 255, 255)) /* {\"name\":\"White\"} */',borderStyle:\"solid\",borderWidth:1},layoutId:\"Xh0BPvypr\",Lj5jS1RdU:\"ArrowUpRight\",NbJmyk_a5:\"var(--token-564427ef-92c1-4e0d-be6a-50ecc1afab8b, rgb(30, 30, 30))\",width:\"100%\",z7K7pxZPb:resolvedLinks[0]})})})})})]})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m62g2e\",\"data-framer-name\":\"Body\",id:elementId,ref:ref2,children:[/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1b4tcg2\",\"data-framer-name\":\"Intro\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-cqryb7\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qv8mea\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-onq7jl\",\"data-styles-preset\":\"xJ2wgdMZ0\",style:{\"--framer-text-alignment\":\"center\"},children:\"Seja bem vindo(a) AO SEU LaR em Rond\\xf4nia.\"})}),className:\"framer-vdmiji\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1er78qb\",\"data-styles-preset\":\"d0WA5d5b_\",style:{\"--framer-text-alignment\":\"center\"},children:\"A nossa rede de hot\\xe9is conta com 2 unidades, uma em Cacoal e a outra em Jaru, ambas equipadas com as melhores comodidades da regi\\xe3o. Tanto para o seu conforto, como para o seu Evento Corporativo.\"})}),className:\"framer-t8szph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f943am\",\"data-framer-name\":\"Images Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xz96ww\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":ujjkwzoiW\",webPageId:\"Gb1_jqHUW\"},nodeId:\"HrVwo2rlK\",openInNewTab:false,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kZ6fwR6Vk:{background:{alt:\"Hotel Inside\",fit:\"fill\",pixelHeight:853,pixelWidth:1280,sizes:`min(max(${componentViewport?.width||\"100vw\"} - 48px, 1px), 820px)`,src:\"https://framerusercontent.com/images/vg6ghMdfdZeomW7rq8xYwOHSB4.jpg\",srcSet:\"https://framerusercontent.com/images/vg6ghMdfdZeomW7rq8xYwOHSB4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/vg6ghMdfdZeomW7rq8xYwOHSB4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/vg6ghMdfdZeomW7rq8xYwOHSB4.jpg 1280w\"}},UFSIcBAOo:{background:{alt:\"Hotel Inside\",fit:\"fill\",pixelHeight:853,pixelWidth:1280,sizes:`min(max(${componentViewport?.width||\"100vw\"} / 2 - 40px, 1px), 820px)`,src:\"https://framerusercontent.com/images/vg6ghMdfdZeomW7rq8xYwOHSB4.jpg\",srcSet:\"https://framerusercontent.com/images/vg6ghMdfdZeomW7rq8xYwOHSB4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/vg6ghMdfdZeomW7rq8xYwOHSB4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/vg6ghMdfdZeomW7rq8xYwOHSB4.jpg 1280w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,as:\"a\",background:{alt:\"Hotel Inside\",fit:\"fill\",pixelHeight:853,pixelWidth:1280,sizes:`min(max(${componentViewport?.width||\"100vw\"} / 2 - 32px, 1px), 820px)`,src:\"https://framerusercontent.com/images/vg6ghMdfdZeomW7rq8xYwOHSB4.jpg\",srcSet:\"https://framerusercontent.com/images/vg6ghMdfdZeomW7rq8xYwOHSB4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/vg6ghMdfdZeomW7rq8xYwOHSB4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/vg6ghMdfdZeomW7rq8xYwOHSB4.jpg 1280w\"},className:\"framer-19p3w75 framer-lux5qc\",\"data-framer-name\":\"Image 1\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1qobf4s\",\"data-styles-preset\":\"H73t_W1ak\",style:{\"--framer-text-color\":\"var(--token-ce16a6ab-b965-4173-bcd7-639c448a6533, rgb(255, 255, 255))\"},children:\"Catua\\xcd JARU\"})}),className:\"framer-12evvao\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hnojyn\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":Lus28v7_X\",webPageId:\"Gb1_jqHUW\"},nodeId:\"Zwa5rnA3a\",openInNewTab:false,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kZ6fwR6Vk:{background:{alt:\"Pool\",fit:\"fill\",pixelHeight:1284,pixelWidth:1504,sizes:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,src:\"https://framerusercontent.com/images/o7hS41tJSB2HDsszkuiMSvZNKeg.png\",srcSet:\"https://framerusercontent.com/images/o7hS41tJSB2HDsszkuiMSvZNKeg.png?scale-down-to=512 512w,https://framerusercontent.com/images/o7hS41tJSB2HDsszkuiMSvZNKeg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/o7hS41tJSB2HDsszkuiMSvZNKeg.png 1504w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,as:\"a\",background:{alt:\"Pool\",fit:\"fill\",pixelHeight:1284,pixelWidth:1504,sizes:`calc(max(${componentViewport?.width||\"100vw\"} / 2, 1px) - 64px)`,src:\"https://framerusercontent.com/images/o7hS41tJSB2HDsszkuiMSvZNKeg.png\",srcSet:\"https://framerusercontent.com/images/o7hS41tJSB2HDsszkuiMSvZNKeg.png?scale-down-to=512 512w,https://framerusercontent.com/images/o7hS41tJSB2HDsszkuiMSvZNKeg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/o7hS41tJSB2HDsszkuiMSvZNKeg.png 1504w\"},className:\"framer-9c5elz framer-lux5qc\",\"data-framer-name\":\"Image 2\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1qobf4s\",\"data-styles-preset\":\"H73t_W1ak\",style:{\"--framer-text-color\":\"var(--token-ce16a6ab-b965-4173-bcd7-639c448a6533, rgb(255, 255, 255))\"},children:\"Catua\\xcd CACOAL\"})}),className:\"framer-1jizuqw\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wuugdk\",\"data-framer-name\":\"BG Shape\"})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-14v2hg7\",\"data-framer-name\":\"Services \",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fkp8kb\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-onq7jl\",\"data-styles-preset\":\"xJ2wgdMZ0\",style:{\"--framer-text-alignment\":\"left\"},children:\"DESCUBRA os nossos diferenciais\"})}),className:\"framer-qmmonf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1er78qb\",\"data-styles-preset\":\"d0WA5d5b_\",style:{\"--framer-text-alignment\":\"left\"},children:\"Relaxe com a familia, viva a sua viagem de neg\\xf3cios ou hospede o seu Evento Corporativo, sempre com o padr\\xe3o de Excel\\xeancia Catua\\xed.\"})}),className:\"framer-12x021l\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1osv41n-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kZ6fwR6Vk:{speed:80}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:32,height:\"100%\",hoverFactor:1,id:\"yxKtDSjKx\",layoutId:\"yxKtDSjKx\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:false,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Restaurant\",fit:\"fill\",pixelHeight:1278,pixelWidth:850,sizes:\"400px\",src:\"https://framerusercontent.com/images/WxAZoCD46aSHj42BJLjjkVMSMY.png\",srcSet:\"https://framerusercontent.com/images/WxAZoCD46aSHj42BJLjjkVMSMY.png?scale-down-to=1024 681w,https://framerusercontent.com/images/WxAZoCD46aSHj42BJLjjkVMSMY.png 850w\"},className:\"framer-bix1gd\",\"data-framer-name\":\"Facility Card\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-218e4h\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1np5w0g-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-ce16a6ab-b965-4173-bcd7-639c448a6533, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Presentation\",id:\"eixC8DnUF\",layoutId:\"eixC8DnUF\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1er78qb\",\"data-styles-preset\":\"d0WA5d5b_\",style:{\"--framer-text-color\":\"var(--token-ce16a6ab-b965-4173-bcd7-639c448a6533, rgb(255, 255, 255))\"},children:\"Salas para Eventos - Cacoal\"})}),className:\"framer-dxi4k0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Luxurious Room\",fit:\"fill\",pixelHeight:1286,pixelWidth:1928,positionX:\"17.2%\",positionY:\"51.7%\",sizes:\"400px\",src:\"https://framerusercontent.com/images/54lQSyAnXlSKc7k17KmaMzGbohI.png\",srcSet:\"https://framerusercontent.com/images/54lQSyAnXlSKc7k17KmaMzGbohI.png?scale-down-to=512 512w,https://framerusercontent.com/images/54lQSyAnXlSKc7k17KmaMzGbohI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/54lQSyAnXlSKc7k17KmaMzGbohI.png 1928w\"},className:\"framer-1iiz9uv\",\"data-framer-name\":\"Facility Card\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rmga0w\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xsy0do-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-ce16a6ab-b965-4173-bcd7-639c448a6533, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Champagne\",id:\"vTy3IBemV\",layoutId:\"vTy3IBemV\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1er78qb\",\"data-styles-preset\":\"d0WA5d5b_\",style:{\"--framer-text-color\":\"var(--token-ce16a6ab-b965-4173-bcd7-639c448a6533, rgb(255, 255, 255))\"},children:\"Pub Catua\\xed - Cacoal\"})}),className:\"framer-1wm7dv2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Pool\",fit:\"fill\",pixelHeight:1286,pixelWidth:1038,sizes:\"400px\",src:\"https://framerusercontent.com/images/nvprZcpbhU0gtRT171BHRFhqDQ.png\",srcSet:\"https://framerusercontent.com/images/nvprZcpbhU0gtRT171BHRFhqDQ.png?scale-down-to=1024 826w,https://framerusercontent.com/images/nvprZcpbhU0gtRT171BHRFhqDQ.png 1038w\"},className:\"framer-1gjdrse\",\"data-framer-name\":\"Facility Card\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vggst6\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-s8l50t-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-ce16a6ab-b965-4173-bcd7-639c448a6533, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"SwimmingPool\",id:\"QTBgFLieD\",layoutId:\"QTBgFLieD\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1er78qb\",\"data-styles-preset\":\"d0WA5d5b_\",style:{\"--framer-text-color\":\"var(--token-ce16a6ab-b965-4173-bcd7-639c448a6533, rgb(255, 255, 255))\"},children:\"Piscina - Cacoal\"})}),className:\"framer-t4l9ok\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Night Event\",fit:\"fill\",pixelHeight:1270,pixelWidth:1470,sizes:\"400px\",src:\"https://framerusercontent.com/images/WwB2oYBsImyprvMwunz3gppESo.png\",srcSet:\"https://framerusercontent.com/images/WwB2oYBsImyprvMwunz3gppESo.png?scale-down-to=512 512w,https://framerusercontent.com/images/WwB2oYBsImyprvMwunz3gppESo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WwB2oYBsImyprvMwunz3gppESo.png 1470w\"},className:\"framer-kk7x17\",\"data-framer-name\":\"Facility Card\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-142l860\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ukmbt0-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-ce16a6ab-b965-4173-bcd7-639c448a6533, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Bicycle\",id:\"C286SSxhi\",layoutId:\"C286SSxhi\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1er78qb\",\"data-styles-preset\":\"d0WA5d5b_\",style:{\"--framer-text-color\":\"var(--token-ce16a6ab-b965-4173-bcd7-639c448a6533, rgb(255, 255, 255))\"},children:\"Academia - Cacoal\"})}),className:\"framer-cbx02x\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})],speed:40,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-13osqwe\",\"data-framer-name\":\"Activities CTA\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-rjbge3\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yt5gx6\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-onq7jl\",\"data-styles-preset\":\"xJ2wgdMZ0\",children:\"REALIZE O SEU EVENTO CONOSCO\"})}),className:\"framer-1eaukew\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1er78qb\",\"data-styles-preset\":\"d0WA5d5b_\",children:\"Receba os seus convidados em nossa estrutura pr\\xf3pria para eventos com Salas de Reuni\\xe3o Pivativas e espa\\xe7os para apresenta\\xe7\\xf5es com capacidade para at\\xe9 300 pessoas.\"})}),className:\"framer-161g7fy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"VKwzquGPb\"},implicitPathVariables:undefined},{href:{webPageId:\"VKwzquGPb\"},implicitPathVariables:undefined},{href:{webPageId:\"VKwzquGPb\"},implicitPathVariables:undefined},{href:{webPageId:\"VKwzquGPb\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:58,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qbw4ee-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kZ6fwR6Vk:{PhjHhuR66:resolvedLinks1[3]},UFSIcBAOo:{PhjHhuR66:resolvedLinks1[2]},uI6TuZ1UR:{PhjHhuR66:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"L12O5ZZmi\",layoutId:\"L12O5ZZmi\",MQz7F6Pb7:\"Saiba Mais\",PhjHhuR66:resolvedLinks1[0],variant:\"UEo7B2o26\",width:\"100%\",Xplrk679X:false})})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t74yod\",\"data-framer-name\":\"Images\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kZ6fwR6Vk:{background:{alt:\"Wedding Proposal\",fit:\"fill\",pixelHeight:1282,pixelWidth:1920,positionX:\"31.3%\",positionY:\"57.1%\",sizes:\"171px\",src:\"https://framerusercontent.com/images/EyXfN8EhCtxHmSjLAKQMODvFKmk.png?lossless=1\",srcSet:\"https://framerusercontent.com/images/EyXfN8EhCtxHmSjLAKQMODvFKmk.png?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/EyXfN8EhCtxHmSjLAKQMODvFKmk.png?scale-down-to=1024&lossless=1 1024w,https://framerusercontent.com/images/EyXfN8EhCtxHmSjLAKQMODvFKmk.png?lossless=1 1920w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"Wedding Proposal\",fit:\"fill\",pixelHeight:1282,pixelWidth:1920,positionX:\"31.3%\",positionY:\"57.1%\",sizes:`min(${componentViewport?.width||\"100vw\"} / 4, 470px)`,src:\"https://framerusercontent.com/images/EyXfN8EhCtxHmSjLAKQMODvFKmk.png?lossless=1\",srcSet:\"https://framerusercontent.com/images/EyXfN8EhCtxHmSjLAKQMODvFKmk.png?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/EyXfN8EhCtxHmSjLAKQMODvFKmk.png?scale-down-to=1024&lossless=1 1024w,https://framerusercontent.com/images/EyXfN8EhCtxHmSjLAKQMODvFKmk.png?lossless=1 1920w\"},className:\"framer-op596o\",\"data-framer-name\":\"Image 1\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kZ6fwR6Vk:{background:{alt:\"Scuba Diving\",fit:\"fill\",pixelHeight:1278,pixelWidth:850,sizes:`calc(${componentViewport?.width||\"100vw\"} - 88px)`,src:\"https://framerusercontent.com/images/WxAZoCD46aSHj42BJLjjkVMSMY.png\",srcSet:\"https://framerusercontent.com/images/WxAZoCD46aSHj42BJLjjkVMSMY.png?scale-down-to=1024 681w,https://framerusercontent.com/images/WxAZoCD46aSHj42BJLjjkVMSMY.png 850w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"Scuba Diving\",fit:\"fill\",pixelHeight:1278,pixelWidth:850,sizes:`calc(${componentViewport?.width||\"100vw\"} / 2 - 96px)`,src:\"https://framerusercontent.com/images/WxAZoCD46aSHj42BJLjjkVMSMY.png\",srcSet:\"https://framerusercontent.com/images/WxAZoCD46aSHj42BJLjjkVMSMY.png?scale-down-to=1024 681w,https://framerusercontent.com/images/WxAZoCD46aSHj42BJLjjkVMSMY.png 850w\"},className:\"framer-o4taxa\",\"data-framer-name\":\"Image 2\"})})]})]}),/*#__PURE__*/_jsxs(MotionSectionWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-541gor\",\"data-framer-name\":\"Testimonial Big\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Hotel View\",fit:\"fill\",pixelHeight:1212,pixelWidth:1786,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/C8xB55gStAontxvbGe5meLxMsM.png\",srcSet:\"https://framerusercontent.com/images/C8xB55gStAontxvbGe5meLxMsM.png?scale-down-to=512 512w,https://framerusercontent.com/images/C8xB55gStAontxvbGe5meLxMsM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/C8xB55gStAontxvbGe5meLxMsM.png 1786w\"},className:\"framer-j35srw\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-vnam0m\",\"data-framer-name\":\"Gradient\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-drupbd\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation13,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-4wlpjz\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-12jxjlm-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-ce16a6ab-b965-4173-bcd7-639c448a6533, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Quotes\",id:\"vpZ26IHvH\",layoutId:\"vpZ26IHvH\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1vhr6hc\",\"data-styles-preset\":\"tittoIAe8\",style:{\"--framer-text-color\":\"var(--token-ce16a6ab-b965-4173-bcd7-639c448a6533, rgb(255, 255, 255))\"},children:\"PT\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1vhr6hc\",\"data-styles-preset\":\"tittoIAe8\",style:{\"--framer-text-color\":\"var(--token-ce16a6ab-b965-4173-bcd7-639c448a6533, rgb(255, 255, 255))\"},children:\"Voc\\xea pode pensar que, no meio de Rond\\xf4nia, seria dif\\xedcil encontrar um bom hotel. Mas este \\xe9 o lugar. Equipe eficiente, quartos limpos, caf\\xe9 da manh\\xe3 excelente. Tudo o que voc\\xea encontraria em qualquer grande cidade est\\xe1 aqui. Al\\xe9m disso, transporte gratuito para o aeroporto.\"})]}),className:\"framer-c0x2ng\",\"data-framer-name\":\"Quote\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1vhr6hc\",\"data-styles-preset\":\"tittoIAe8\",style:{\"--framer-text-color\":\"var(--token-ce16a6ab-b965-4173-bcd7-639c448a6533, rgb(255, 255, 255))\"},children:\"US\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1vhr6hc\",\"data-styles-preset\":\"tittoIAe8\",style:{\"--framer-text-color\":\"var(--token-ce16a6ab-b965-4173-bcd7-639c448a6533, rgb(255, 255, 255))\"},children:\"You may think that in the middle of Rond\\xf4nia it would be hard to find a good hotel. This is it. Efficient personel, clean rooms, great breakfast. All you could have in any big city is here. Plus, transport to the airport free.\"})]}),className:\"framer-1904nej\",\"data-framer-name\":\"Quote\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"ul\",{className:\"framer-styles-preset-1er78qb\",\"data-styles-preset\":\"d0WA5d5b_\",style:{\"--framer-text-color\":\"var(--token-ce16a6ab-b965-4173-bcd7-639c448a6533, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"var(--token-ce16a6ab-b965-4173-bcd7-639c448a6533, rgb(255, 255, 255))\"},children:\"Lucia Helena - para o TripAdvisor.\"})})})}),className:\"framer-rydcyp\",\"data-framer-name\":\"Owner\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-qhy6pw\",\"data-framer-name\":\"Trustpilot\"})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-ijomyy\",\"data-framer-name\":\"Rooms\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-c4yin8\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jm743c\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-onq7jl\",\"data-styles-preset\":\"xJ2wgdMZ0\",children:\"Conhe\\xe7a os nossos APARTAMENTOS\"})}),className:\"framer-f7ifg3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Gb1_jqHUW\"},implicitPathVariables:undefined},{href:{webPageId:\"Gb1_jqHUW\"},implicitPathVariables:undefined},{href:{webPageId:\"Gb1_jqHUW\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:58,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1b26ved-container hidden-16e3t2y\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UFSIcBAOo:{PhjHhuR66:resolvedLinks2[2]},uI6TuZ1UR:{PhjHhuR66:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"R7LH3ba0q\",layoutId:\"R7LH3ba0q\",MQz7F6Pb7:\"Ver todos os apartamentos\",PhjHhuR66:resolvedLinks2[0],variant:\"UEo7B2o26\",width:\"100%\",Xplrk679X:false})})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e8pbie\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-18vtbua\",\"data-framer-name\":\"BG Shape\"}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1g926uk\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-dlch0q\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"FzvHHs92g\",data:Quartos,type:\"Collection\"},select:[{collection:\"FzvHHs92g\",name:\"TaWV0ODwB\",type:\"Identifier\"},{collection:\"FzvHHs92g\",name:\"IMNmiivHp\",type:\"Identifier\"},{collection:\"FzvHHs92g\",name:\"IoIiY6vC_\",type:\"Identifier\"},{collection:\"FzvHHs92g\",name:\"PuYurhAXK\",type:\"Identifier\"},{collection:\"FzvHHs92g\",name:\"RLliPhS6Y\",type:\"Identifier\"},{collection:\"FzvHHs92g\",name:\"uRzhvgJIg\",type:\"Identifier\"},{collection:\"FzvHHs92g\",name:\"id\",type:\"Identifier\"}],where:{collection:\"FzvHHs92g\",name:\"s1K7LrOaW\",type:\"Identifier\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({id:idFzvHHs92g,IMNmiivHp:IMNmiivHpFzvHHs92g,IoIiY6vC_:IoIiY6vC_FzvHHs92g,PuYurhAXK:PuYurhAXKFzvHHs92g,RLliPhS6Y:RLliPhS6YFzvHHs92g,TaWV0ODwB:TaWV0ODwBFzvHHs92g,uRzhvgJIg:uRzhvgJIgFzvHHs92g},index)=>{TaWV0ODwBFzvHHs92g??=\"\";IMNmiivHpFzvHHs92g??=\"\";IoIiY6vC_FzvHHs92g??=\"\";PuYurhAXKFzvHHs92g??=\"\";uRzhvgJIgFzvHHs92g??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`FzvHHs92g-${idFzvHHs92g}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{PuYurhAXK:PuYurhAXKFzvHHs92g},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-apehq6\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{PuYurhAXK:PuYurhAXKFzvHHs92g},webPageId:\"ZwDGep7RF\"},implicitPathVariables:undefined},{href:{pathVariables:{PuYurhAXK:PuYurhAXKFzvHHs92g},webPageId:\"ZwDGep7RF\"},implicitPathVariables:undefined},{href:{pathVariables:{PuYurhAXK:PuYurhAXKFzvHHs92g},webPageId:\"ZwDGep7RF\"},implicitPathVariables:undefined},{href:{pathVariables:{PuYurhAXK:PuYurhAXKFzvHHs92g},webPageId:\"ZwDGep7RF\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kZ6fwR6Vk:{height:343,width:`max(min(max(${componentViewport?.width||\"100vw\"} - 48px, 1px), 1640px), 50px)`},UFSIcBAOo:{height:400,width:`max(min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1640px), 50px)`},uI6TuZ1UR:{height:520}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:640,width:`max((max(min(max(${componentViewport?.width||\"100vw\"} - 128px, 1px), 1640px), 1px) - 32px) / 2, 50px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nb2u63-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kZ6fwR6Vk:{Oei04NzyO:resolvedLinks3[3],variant:\"jd_67jmQ7\"},UFSIcBAOo:{Oei04NzyO:resolvedLinks3[2],variant:\"jd_67jmQ7\"},uI6TuZ1UR:{Oei04NzyO:resolvedLinks3[1]}},children:/*#__PURE__*/_jsx(RoomCard,{height:\"100%\",id:\"ZN_w66DjL\",jLyxLIzp1:toResponsiveImage(RLliPhS6YFzvHHs92g),layoutId:\"ZN_w66DjL\",M2uvmrEBu:TaWV0ODwBFzvHHs92g,NbezKcrFd:uRzhvgJIgFzvHHs92g,Oei04NzyO:resolvedLinks3[0],ozeyHMXbu:IMNmiivHpFzvHHs92g,style:{height:\"100%\",width:\"100%\"},variant:\"yfPlKloDM\",width:\"100%\",y3tGcpyZK:IoIiY6vC_FzvHHs92g})})})})})})})})},idFzvHHs92g);})})})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Gb1_jqHUW\"},implicitPathVariables:undefined},{href:{webPageId:\"Gb1_jqHUW\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kZ6fwR6Vk:{height:58}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-dhld06-container hidden-72rtr7 hidden-jj8utt hidden-1mrfbca\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kZ6fwR6Vk:{PhjHhuR66:resolvedLinks4[1]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"Utm3z0GaM\",layoutId:\"Utm3z0GaM\",MQz7F6Pb7:\"View All Rooms\",PhjHhuR66:resolvedLinks4[0],variant:\"UEo7B2o26\",width:\"100%\",Xplrk679X:false})})})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1396,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xjmhdg-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kZ6fwR6Vk:{variant:\"Nt2Lvbd6G\"},UFSIcBAOo:{variant:\"CZ193xi0M\"},uI6TuZ1UR:{variant:\"C0G1BKFsz\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"AMmko0hPq\",layoutId:\"AMmko0hPq\",style:{width:\"100%\"},variant:\"X_uO4IEYG\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-3399e391-f9d3-4781-bcc9-e38e7cf0c7f5, rgb(249, 253, 254)); }\"}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-137kf.framer-lux5qc, .framer-137kf .framer-lux5qc { display: block; }\",\".framer-137kf.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-3399e391-f9d3-4781-bcc9-e38e7cf0c7f5, #f9fdfe); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1560px; }\",\".framer-137kf .framer-9i1qns-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 10; }\",\".framer-137kf .framer-1c2xfq1 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100vh; justify-content: flex-end; overflow: hidden; padding: 64px; position: sticky; top: 0px; width: 100%; will-change: transform; z-index: 1; }\",\".framer-137kf .framer-48702u { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-137kf .framer-jvq64g { background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(0, 0, 0) 100%); bottom: 0px; flex: none; left: 0px; opacity: 0.9; overflow: visible; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-137kf .framer-bow1fw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; max-width: 1640px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-137kf .framer-773oe9 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-137kf .framer-1cpm12g { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; max-width: 509px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-137kf .framer-kliotj-container, .framer-137kf .framer-bz2pqw-container, .framer-137kf .framer-1qbw4ee-container, .framer-137kf .framer-1b26ved-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-137kf .framer-mizucj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-137kf .framer-1yyd6s9 { background-color: var(--token-ce16a6ab-b965-4173-bcd7-639c448a6533, #ffffff); flex: none; height: 1px; opacity: 0.7; overflow: hidden; position: relative; width: 100%; }\",\".framer-137kf .framer-dbtuql { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-137kf .framer-780s7t { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; max-width: 500px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-137kf .framer-m62g2e { align-content: center; align-items: center; background-color: var(--token-2fa9522a-55e3-4190-83f9-a75668e8e966, #faf2e6); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-137kf .framer-1b4tcg2 { align-content: center; align-items: center; background-color: var(--token-3399e391-f9d3-4781-bcc9-e38e7cf0c7f5, #e3ddd6); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 120px; height: min-content; justify-content: center; padding: 160px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-137kf .framer-cqryb7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px 64px 0px 64px; position: relative; width: 100%; }\",\".framer-137kf .framer-1qv8mea { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 900px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-137kf .framer-vdmiji, .framer-137kf .framer-t8szph, .framer-137kf .framer-c0x2ng, .framer-137kf .framer-1904nej, .framer-137kf .framer-rydcyp { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-137kf .framer-1f943am { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-137kf .framer-1xz96ww { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px 0px 0px 32px; position: relative; width: 50%; z-index: 1; }\",\".framer-137kf .framer-19p3w75 { flex: 1 0 0px; height: 800px; max-width: 820px; position: relative; text-decoration: none; width: 1px; }\",\".framer-137kf .framer-12evvao { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 0px; max-width: 509px; position: absolute; top: 0px; white-space: pre-wrap; width: 509px; word-break: break-word; word-wrap: break-word; }\",\".framer-137kf .framer-1hnojyn { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 32px 0px 32px; position: relative; width: 1px; z-index: 1; }\",\".framer-137kf .framer-9c5elz { flex: none; height: 800px; position: relative; text-decoration: none; width: 100%; }\",\".framer-137kf .framer-1jizuqw { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 0px; max-width: 92%; position: absolute; top: 0px; white-space: pre-wrap; width: 91%; word-break: break-word; word-wrap: break-word; }\",\".framer-137kf .framer-1wuugdk { background-color: var(--token-3399e391-f9d3-4781-bcc9-e38e7cf0c7f5, #f9fdfe); bottom: 0px; flex: none; height: 50%; left: 0px; overflow: hidden; position: absolute; right: 0px; z-index: 0; }\",\".framer-137kf .framer-14v2hg7 { align-content: center; align-items: center; background-color: var(--token-3399e391-f9d3-4781-bcc9-e38e7cf0c7f5, #f9fdfe); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; padding: 160px 64px 160px 64px; position: relative; width: 100%; }\",\".framer-137kf .framer-1fkp8kb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1640px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-137kf .framer-qmmonf, .framer-137kf .framer-12x021l, .framer-137kf .framer-f7ifg3 { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; max-width: 600px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-137kf .framer-1osv41n-container { flex: none; height: 680px; max-width: 1640px; position: relative; width: 100%; }\",\".framer-137kf .framer-bix1gd, .framer-137kf .framer-1iiz9uv, .framer-137kf .framer-1gjdrse, .framer-137kf .framer-kk7x17 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 620px; justify-content: flex-end; overflow: visible; padding: 32px; position: relative; width: 400px; }\",\".framer-137kf .framer-218e4h, .framer-137kf .framer-rmga0w, .framer-137kf .framer-vggst6, .framer-137kf .framer-142l860 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-137kf .framer-1np5w0g-container, .framer-137kf .framer-1xsy0do-container, .framer-137kf .framer-s8l50t-container, .framer-137kf .framer-1ukmbt0-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-137kf .framer-dxi4k0, .framer-137kf .framer-1wm7dv2, .framer-137kf .framer-t4l9ok, .framer-137kf .framer-cbx02x { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-137kf .framer-13osqwe { align-content: center; align-items: center; background-color: var(--token-2fa9522a-55e3-4190-83f9-a75668e8e966, #f8f4ec); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 120px 0px 120px 0px; position: relative; width: 100%; }\",\".framer-137kf .framer-rjbge3 { align-content: flex-end; align-items: flex-end; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: auto; justify-content: center; max-width: 100%; overflow: visible; padding: 0px 0px 0px 64px; position: relative; width: 50%; }\",\".framer-137kf .framer-1yt5gx6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 820px; overflow: hidden; padding: 0px 32px 0px 0px; position: relative; width: 100%; }\",\".framer-137kf .framer-1eaukew, .framer-137kf .framer-161g7fy { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 600px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-137kf .framer-t74yod { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 809px; justify-content: flex-start; max-height: 100vh; overflow: visible; padding: 0px; position: relative; width: 50%; }\",\".framer-137kf .framer-op596o { aspect-ratio: 0.8623853211009175 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 452px); max-width: 470px; position: relative; width: 50%; z-index: 2; }\",\".framer-137kf .framer-o4taxa { bottom: 0px; flex: none; left: 96px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-137kf .framer-541gor { align-content: flex-end; align-items: flex-end; background-color: var(--token-3399e391-f9d3-4781-bcc9-e38e7cf0c7f5, #f9fdfe); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 150vh; justify-content: center; overflow: hidden; padding: 0px 64px 140px 64px; position: relative; width: 100%; }\",\".framer-137kf .framer-j35srw { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-137kf .framer-vnam0m { background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.6) 100%); bottom: 0px; flex: none; left: 0px; opacity: 0.9; overflow: visible; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-137kf .framer-drupbd { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1640px; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 2; }\",\".framer-137kf .framer-4wlpjz { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; max-width: 600px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-137kf .framer-12jxjlm-container { flex: none; height: 32px; position: relative; width: 32px; }\",\".framer-137kf .framer-qhy6pw { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; min-height: 404px; min-width: 9px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-137kf .framer-ijomyy { align-content: center; align-items: center; background-color: var(--token-2fa9522a-55e3-4190-83f9-a75668e8e966, #f8f4ec); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: hidden; padding: 160px 0px 160px 0px; position: relative; width: 100%; }\",\".framer-137kf .framer-c4yin8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 64px 0px 64px; position: relative; width: 100%; }\",\".framer-137kf .framer-1jm743c { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1640px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-137kf .framer-1e8pbie { align-content: flex-end; align-items: flex-end; background-color: var(--token-2fa9522a-55e3-4190-83f9-a75668e8e966, #f8f4ec); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px 64px 0px 64px; position: relative; width: 100%; }\",\".framer-137kf .framer-18vtbua { background-color: #ffffff; bottom: -160px; flex: none; height: 480px; left: 0px; overflow: hidden; position: absolute; right: 0px; z-index: 0; }\",\".framer-137kf .framer-1g926uk { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 1640px; overflow: hidden; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-137kf .framer-dlch0q { display: grid; flex: 1 0 0px; gap: 32px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-137kf .framer-apehq6 { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 40px; height: 100%; justify-content: flex-start; justify-self: start; padding: 0px; position: relative; width: 100%; }\",\".framer-137kf .framer-1nb2u63-container { flex: 1 0 0px; height: 640px; position: relative; width: 1px; }\",\".framer-137kf .framer-dhld06-container { flex: none; height: auto; position: relative; width: auto; z-index: 1; }\",\".framer-137kf .framer-1xjmhdg-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-137kf.framer-72rtr7, .framer-137kf .framer-1c2xfq1, .framer-137kf .framer-bow1fw, .framer-137kf .framer-mizucj, .framer-137kf .framer-m62g2e, .framer-137kf .framer-1b4tcg2, .framer-137kf .framer-cqryb7, .framer-137kf .framer-1qv8mea, .framer-137kf .framer-1f943am, .framer-137kf .framer-1xz96ww, .framer-137kf .framer-1hnojyn, .framer-137kf .framer-14v2hg7, .framer-137kf .framer-bix1gd, .framer-137kf .framer-1iiz9uv, .framer-137kf .framer-1gjdrse, .framer-137kf .framer-kk7x17, .framer-137kf .framer-13osqwe, .framer-137kf .framer-rjbge3, .framer-137kf .framer-1yt5gx6, .framer-137kf .framer-t74yod, .framer-137kf .framer-541gor, .framer-137kf .framer-4wlpjz, .framer-137kf .framer-qhy6pw, .framer-137kf .framer-ijomyy, .framer-137kf .framer-c4yin8, .framer-137kf .framer-1e8pbie, .framer-137kf .framer-1g926uk, .framer-137kf .framer-apehq6 { gap: 0px; } .framer-137kf.framer-72rtr7 > *, .framer-137kf .framer-m62g2e > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-137kf.framer-72rtr7 > :first-child, .framer-137kf .framer-1c2xfq1 > :first-child, .framer-137kf .framer-bow1fw > :first-child, .framer-137kf .framer-mizucj > :first-child, .framer-137kf .framer-m62g2e > :first-child, .framer-137kf .framer-1b4tcg2 > :first-child, .framer-137kf .framer-1qv8mea > :first-child, .framer-137kf .framer-14v2hg7 > :first-child, .framer-137kf .framer-bix1gd > :first-child, .framer-137kf .framer-1iiz9uv > :first-child, .framer-137kf .framer-1gjdrse > :first-child, .framer-137kf .framer-kk7x17 > :first-child, .framer-137kf .framer-rjbge3 > :first-child, .framer-137kf .framer-1yt5gx6 > :first-child, .framer-137kf .framer-4wlpjz > :first-child, .framer-137kf .framer-qhy6pw > :first-child, .framer-137kf .framer-ijomyy > :first-child { margin-top: 0px; } .framer-137kf.framer-72rtr7 > :last-child, .framer-137kf .framer-1c2xfq1 > :last-child, .framer-137kf .framer-bow1fw > :last-child, .framer-137kf .framer-mizucj > :last-child, .framer-137kf .framer-m62g2e > :last-child, .framer-137kf .framer-1b4tcg2 > :last-child, .framer-137kf .framer-1qv8mea > :last-child, .framer-137kf .framer-14v2hg7 > :last-child, .framer-137kf .framer-bix1gd > :last-child, .framer-137kf .framer-1iiz9uv > :last-child, .framer-137kf .framer-1gjdrse > :last-child, .framer-137kf .framer-kk7x17 > :last-child, .framer-137kf .framer-rjbge3 > :last-child, .framer-137kf .framer-1yt5gx6 > :last-child, .framer-137kf .framer-4wlpjz > :last-child, .framer-137kf .framer-qhy6pw > :last-child, .framer-137kf .framer-ijomyy > :last-child { margin-bottom: 0px; } .framer-137kf .framer-1c2xfq1 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-137kf .framer-bow1fw > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-137kf .framer-mizucj > *, .framer-137kf .framer-1qv8mea > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-137kf .framer-1b4tcg2 > * { margin: 0px; margin-bottom: calc(120px / 2); margin-top: calc(120px / 2); } .framer-137kf .framer-cqryb7 > *, .framer-137kf .framer-apehq6 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-137kf .framer-cqryb7 > :first-child, .framer-137kf .framer-1f943am > :first-child, .framer-137kf .framer-1xz96ww > :first-child, .framer-137kf .framer-1hnojyn > :first-child, .framer-137kf .framer-13osqwe > :first-child, .framer-137kf .framer-t74yod > :first-child, .framer-137kf .framer-541gor > :first-child, .framer-137kf .framer-c4yin8 > :first-child, .framer-137kf .framer-1e8pbie > :first-child, .framer-137kf .framer-1g926uk > :first-child, .framer-137kf .framer-apehq6 > :first-child { margin-left: 0px; } .framer-137kf .framer-cqryb7 > :last-child, .framer-137kf .framer-1f943am > :last-child, .framer-137kf .framer-1xz96ww > :last-child, .framer-137kf .framer-1hnojyn > :last-child, .framer-137kf .framer-13osqwe > :last-child, .framer-137kf .framer-t74yod > :last-child, .framer-137kf .framer-541gor > :last-child, .framer-137kf .framer-c4yin8 > :last-child, .framer-137kf .framer-1e8pbie > :last-child, .framer-137kf .framer-1g926uk > :last-child, .framer-137kf .framer-apehq6 > :last-child { margin-right: 0px; } .framer-137kf .framer-1f943am > *, .framer-137kf .framer-1hnojyn > *, .framer-137kf .framer-13osqwe > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-137kf .framer-1xz96ww > *, .framer-137kf .framer-t74yod > *, .framer-137kf .framer-541gor > *, .framer-137kf .framer-c4yin8 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-137kf .framer-14v2hg7 > *, .framer-137kf .framer-ijomyy > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-137kf .framer-bix1gd > *, .framer-137kf .framer-1iiz9uv > *, .framer-137kf .framer-1gjdrse > *, .framer-137kf .framer-kk7x17 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-137kf .framer-rjbge3 > *, .framer-137kf .framer-1yt5gx6 > *, .framer-137kf .framer-4wlpjz > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-137kf .framer-qhy6pw > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-137kf .framer-1e8pbie > *, .framer-137kf .framer-1g926uk > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,\"@media (min-width: 1200px) and (max-width: 1559px) { .framer-137kf.framer-72rtr7 { width: 1200px; } .framer-137kf .framer-1b4tcg2 { gap: 80px; } .framer-137kf .framer-19p3w75, .framer-137kf .framer-9c5elz, .framer-137kf .framer-t74yod { height: 600px; } .framer-137kf .framer-1fkp8kb { gap: 32px; justify-content: flex-start; } .framer-137kf .framer-1osv41n-container { height: 540px; } .framer-137kf .framer-op596o { height: var(--framer-aspect-ratio-supported, 348px); } .framer-137kf .framer-541gor { height: 120vh; } .framer-137kf .framer-18vtbua { height: 420px; } .framer-137kf .framer-1nb2u63-container { height: 520px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-137kf .framer-1b4tcg2, .framer-137kf .framer-1fkp8kb { gap: 0px; } .framer-137kf .framer-1b4tcg2 > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-137kf .framer-1b4tcg2 > :first-child { margin-top: 0px; } .framer-137kf .framer-1b4tcg2 > :last-child { margin-bottom: 0px; } .framer-137kf .framer-1fkp8kb > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-137kf .framer-1fkp8kb > :first-child { margin-left: 0px; } .framer-137kf .framer-1fkp8kb > :last-child { margin-right: 0px; } }}\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-137kf.framer-72rtr7 { width: 810px; } .framer-137kf .framer-1c2xfq1 { padding: 40px; } .framer-137kf .framer-dbtuql { flex-direction: column; gap: 32px; justify-content: flex-start; } .framer-137kf .framer-780s7t, .framer-137kf .framer-4wlpjz { flex: none; width: 100%; } .framer-137kf .framer-cqryb7, .framer-137kf .framer-c4yin8, .framer-137kf .framer-1e8pbie { padding: 0px 40px 0px 40px; } .framer-137kf .framer-1xz96ww, .framer-137kf .framer-rjbge3 { padding: 0px 0px 0px 40px; } .framer-137kf .framer-19p3w75, .framer-137kf .framer-9c5elz, .framer-137kf .framer-t74yod { height: 600px; } .framer-137kf .framer-14v2hg7 { padding: 160px 40px 160px 40px; } .framer-137kf .framer-1fkp8kb { gap: 32px; justify-content: flex-start; } .framer-137kf .framer-op596o { aspect-ratio: 0.6766666666666666 / 1; height: var(--framer-aspect-ratio-supported, 299px); } .framer-137kf .framer-541gor { height: 100vh; padding: 0px 40px 96px 40px; } .framer-137kf .framer-drupbd { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 80px; justify-content: flex-start; } .framer-137kf .framer-18vtbua { height: 340px; } .framer-137kf .framer-1g926uk { flex-direction: column; } .framer-137kf .framer-dlch0q { flex: none; grid-template-columns: repeat(1, minmax(50px, 1fr)); width: 100%; } .framer-137kf .framer-1nb2u63-container { height: 400px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-137kf .framer-dbtuql, .framer-137kf .framer-1fkp8kb, .framer-137kf .framer-drupbd, .framer-137kf .framer-1g926uk { gap: 0px; } .framer-137kf .framer-dbtuql > *, .framer-137kf .framer-1g926uk > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-137kf .framer-dbtuql > :first-child, .framer-137kf .framer-drupbd > :first-child, .framer-137kf .framer-1g926uk > :first-child { margin-top: 0px; } .framer-137kf .framer-dbtuql > :last-child, .framer-137kf .framer-drupbd > :last-child, .framer-137kf .framer-1g926uk > :last-child { margin-bottom: 0px; } .framer-137kf .framer-1fkp8kb > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-137kf .framer-1fkp8kb > :first-child { margin-left: 0px; } .framer-137kf .framer-1fkp8kb > :last-child { margin-right: 0px; } .framer-137kf .framer-drupbd > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } }}\",\"@media (max-width: 809px) { .framer-137kf.framer-72rtr7 { width: 390px; } .framer-137kf .framer-1c2xfq1 { padding: 40px 24px 40px 24px; } .framer-137kf .framer-bow1fw, .framer-137kf .framer-mizucj { gap: 32px; } .framer-137kf .framer-773oe9 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 24px; justify-content: flex-start; } .framer-137kf .framer-1cpm12g { flex: none; order: 1; width: 100%; } .framer-137kf .framer-kliotj-container { order: 0; } .framer-137kf .framer-dbtuql { flex-direction: column; gap: 32px; justify-content: flex-start; } .framer-137kf .framer-780s7t, .framer-137kf .framer-qmmonf, .framer-137kf .framer-12x021l, .framer-137kf .framer-4wlpjz { flex: none; width: 100%; } .framer-137kf .framer-1b4tcg2 { gap: 64px; padding: 96px 0px 0px 0px; } .framer-137kf .framer-cqryb7, .framer-137kf .framer-c4yin8, .framer-137kf .framer-1e8pbie { padding: 0px 24px 0px 24px; } .framer-137kf .framer-1f943am { flex-direction: column; gap: 32px; } .framer-137kf .framer-1xz96ww { gap: 0px; justify-content: center; padding: 0px 24px 0px 24px; width: 100%; } .framer-137kf .framer-19p3w75 { height: 320px; } .framer-137kf .framer-1hnojyn { flex: none; height: 400px; padding: 0px 24px 0px 24px; width: 100%; } .framer-137kf .framer-9c5elz { height: 100%; } .framer-137kf .framer-1wuugdk { height: 200px; } .framer-137kf .framer-14v2hg7 { gap: 64px; padding: 96px 24px 96px 24px; } .framer-137kf .framer-1fkp8kb { flex-direction: column; gap: 40px; justify-content: flex-start; } .framer-137kf .framer-1osv41n-container { height: 474px; } .framer-137kf .framer-13osqwe { flex-direction: column; gap: 40px; padding: 96px 0px 96px 0px; } .framer-137kf .framer-rjbge3 { align-self: unset; height: min-content; order: 1; padding: 0px 24px 0px 24px; width: 100%; } .framer-137kf .framer-1yt5gx6 { padding: 0px; } .framer-137kf .framer-t74yod { height: 337px; order: 0; padding: 0px 24px 0px 24px; width: 100%; } .framer-137kf .framer-op596o { aspect-ratio: unset; height: 253px; width: 171px; } .framer-137kf .framer-o4taxa { left: 64px; right: 24px; } .framer-137kf .framer-541gor { height: 120vh; padding: 0px 24px 64px 24px; } .framer-137kf .framer-drupbd { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 64px; justify-content: flex-start; } .framer-137kf .framer-qhy6pw { align-content: flex-start; align-items: flex-start; } .framer-137kf .framer-ijomyy { gap: 64px; padding: 96px 0px 96px 0px; } .framer-137kf .framer-18vtbua { bottom: -218px; height: 388px; } .framer-137kf .framer-1g926uk { flex-direction: column; } .framer-137kf .framer-dlch0q { flex: none; grid-template-columns: repeat(1, minmax(50px, 1fr)); width: 100%; } .framer-137kf .framer-1nb2u63-container { height: 343px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-137kf .framer-bow1fw, .framer-137kf .framer-773oe9, .framer-137kf .framer-mizucj, .framer-137kf .framer-dbtuql, .framer-137kf .framer-1b4tcg2, .framer-137kf .framer-1f943am, .framer-137kf .framer-1xz96ww, .framer-137kf .framer-14v2hg7, .framer-137kf .framer-1fkp8kb, .framer-137kf .framer-13osqwe, .framer-137kf .framer-drupbd, .framer-137kf .framer-ijomyy, .framer-137kf .framer-1g926uk { gap: 0px; } .framer-137kf .framer-bow1fw > *, .framer-137kf .framer-mizucj > *, .framer-137kf .framer-dbtuql > *, .framer-137kf .framer-1f943am > *, .framer-137kf .framer-1g926uk > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-137kf .framer-bow1fw > :first-child, .framer-137kf .framer-773oe9 > :first-child, .framer-137kf .framer-mizucj > :first-child, .framer-137kf .framer-dbtuql > :first-child, .framer-137kf .framer-1b4tcg2 > :first-child, .framer-137kf .framer-1f943am > :first-child, .framer-137kf .framer-14v2hg7 > :first-child, .framer-137kf .framer-1fkp8kb > :first-child, .framer-137kf .framer-13osqwe > :first-child, .framer-137kf .framer-drupbd > :first-child, .framer-137kf .framer-ijomyy > :first-child, .framer-137kf .framer-1g926uk > :first-child { margin-top: 0px; } .framer-137kf .framer-bow1fw > :last-child, .framer-137kf .framer-773oe9 > :last-child, .framer-137kf .framer-mizucj > :last-child, .framer-137kf .framer-dbtuql > :last-child, .framer-137kf .framer-1b4tcg2 > :last-child, .framer-137kf .framer-1f943am > :last-child, .framer-137kf .framer-14v2hg7 > :last-child, .framer-137kf .framer-1fkp8kb > :last-child, .framer-137kf .framer-13osqwe > :last-child, .framer-137kf .framer-drupbd > :last-child, .framer-137kf .framer-ijomyy > :last-child, .framer-137kf .framer-1g926uk > :last-child { margin-bottom: 0px; } .framer-137kf .framer-773oe9 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-137kf .framer-1b4tcg2 > *, .framer-137kf .framer-14v2hg7 > *, .framer-137kf .framer-drupbd > *, .framer-137kf .framer-ijomyy > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-137kf .framer-1xz96ww > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-137kf .framer-1xz96ww > :first-child { margin-left: 0px; } .framer-137kf .framer-1xz96ww > :last-child { margin-right: 0px; } .framer-137kf .framer-1fkp8kb > *, .framer-137kf .framer-13osqwe > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 8622.5\n * @framerIntrinsicWidth 1560\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"uI6TuZ1UR\":{\"layout\":[\"fixed\",\"auto\"]},\"UFSIcBAOo\":{\"layout\":[\"fixed\",\"auto\"]},\"kZ6fwR6Vk\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerLayoutTemplateCompatible true\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-137kf\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:8622.5,width:1560};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\"}]},...NavFonts,...ButtonHeroFonts,...ButtonWithIconFonts,...PhosphorFonts,...TickerFonts,...ButtonFonts,...RoomCardFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"8622.5\",\"framerIntrinsicWidth\":\"1560\",\"framerContractVersion\":\"1\",\"framerResponsiveScreen\":\"\",\"framerImmutableVariables\":\"true\",\"framerLayoutTemplateCompatible\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uI6TuZ1UR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UFSIcBAOo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kZ6fwR6Vk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "NavFonts", "getFonts", "ieuy8fRE2_default", "NavWithVariantAppearEffect", "withVariantAppearEffect", "ContainerWithFX", "withFX", "Container", "ButtonHeroFonts", "tFZa52ygl_default", "MotionDivWithFX", "motion", "ButtonWithIconFonts", "UBX3bnWf0_default", "ImageWithFX", "Image2", "PhosphorFonts", "Icon", "TickerFonts", "Ticker", "ButtonFonts", "iqKpwvLsS_default", "MotionSectionWithFX", "RoomCardFonts", "Mk0oz1D4m_default", "FooterFonts", "GgdFUtGAF_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "animation2", "animation3", "transition2", "animation4", "animation5", "animation6", "transition3", "animation7", "animation8", "animation9", "animation10", "animation11", "transition4", "animation12", "animation13", "animation14", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "TaWV0ODwBFzvHHs92g", "IMNmiivHpFzvHHs92g", "IoIiY6vC_FzvHHs92g", "PuYurhAXKFzvHHs92g", "RLliPhS6YFzvHHs92g", "uRzhvgJIgFzvHHs92g", "idFzvHHs92g", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "ref1", "pe", "ref2", "isDisplayed", "router", "useRouter", "elementId", "useRouteElementId", "isDisplayed1", "defaultLayoutId", "ae", "useCustomCursors", "componentViewport", "useComponentViewport", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "PropertyOverrides2", "RichText2", "x", "ResolveLinks", "resolvedLinks", "Link", "resolvedLinks1", "resolvedLinks2", "ChildrenCanSuspend", "Q66w_5ghx_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "resolvedLinks3", "resolvedLinks4", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
