{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/RjL2koqXAemCvcGHfWM4/Video.js", "ssg:https://framerusercontent.com/modules/e7MbFCWxt8AkMfFgdIBe/G4WRGFe2GH6IHfBpr0AA/XZwwdBqvj.js", "ssg:https://framerusercontent.com/modules/rWyJIGXLtyp9BffOwBj0/QPWre6hCktwD9LZZ4SMC/fDSvA50Js.js", "ssg:https://framerusercontent.com/modules/lh49d9zu4G46jA9Vs5vq/U42rEsWfN1MW1N87LUc9/EeQBFmlsb.js", "ssg:https://framerusercontent.com/modules/6yVQZbkJnQz8WvBfOi03/xgOE1Y8H8EtdufwgePX2/QcY7Vd7wJ.js", "ssg:https://framerusercontent.com/modules/mbmeSmKZAGwFF02Kazv3/cUAYZcv4lRJlR6qTkuyo/I6wwEbg3k.js", "ssg:https://framerusercontent.com/modules/eITKNhQASqe0tar1tcXX/m0wATvpHmEnvPTwvjKTx/SS1r1P8ZF.js", "ssg:https://framerusercontent.com/modules/xGsVJofpHzCG0mredejh/fx3zZHyT80LVFIWIi0fc/vOEoMqLN7.js", "ssg:https://framerusercontent.com/modules/sfkwEUCJvC7BoH9OisV5/BFZNzywWvaIeXAnOshtp/zwRhr_e0k.js", "ssg:https://framerusercontent.com/modules/xYd2CsybBU9F7nTvb11S/tz4L8CW1KjQZZkIXMVlk/kijJLQmPV.js", "ssg:https://framerusercontent.com/modules/94kEgFX47WNaKoBN0vbD/53U9TfLO7hRRYgxHRP2r/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", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framerusercontent.com/modules/G4IfyjvwmaeSBpdb4TWu/OIjZRBmWDcIE2B6qgG1j/index.js\";// https://framer.com/m/framer/default-utils.js@^0.45.0\nimport{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));const defaultVideo=\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\";// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const isPlayingRef=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{// default props\nsrcType=\"URL\",srcUrl,srcFile=\"\",posterEnabled=false,controls=false,playing=true,loop=true,muted=true,playsinline=true,restartOnEnter=false,objectFit=\"cover\",backgroundColor=\"rgba(0,0,0,0)\",radius=0,volume=25,startTime:startTimeProp=0,poster,playing:playingProp,progress,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);const isCloseToViewport=isOnCanvas?false:useInView(videoRef,{margin:\"0px 0px 100px 100px\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress,isPlaying}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);/**\n     * The Video component has some effects that sync the video element with props\n     * like `startTime`, `progress`, etc. React calls these effects whenever these\n     * props change. However, it also calls them on the first mount, and this is\n     * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n     * the video was hydrated, the initial `useEffect` call will reset the video\n     * state. To avoid this, we use this flag.\n     */const isMountedAndReadyForProgressChanges=useRef(false);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges.current){isMountedAndReadyForProgressChanges.current=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:autoplayBehavior===\"on-mount\",preload:isPlaying.current?\"auto\":isOnCanvas&&!poster?\"metadata\":autoplayBehavior!==\"on-mount\"&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled&&!srcFile&&srcUrl===defaultVideo?\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\":posterEnabled&&poster?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",defaultValue:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",hidden(props){return props.srcType===\"Upload\";}},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\",description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted,defaultValue:25},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicWidth\":\"200\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"112\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (2c4b293)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Plus Jakarta Sans-regular\",\"FS;Plus Jakarta Sans-bold\",\"FS;Plus Jakarta Sans-bold italic\",\"FS;Plus Jakarta Sans-italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Plus Jakarta Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TX2N2Q6ZO2LBO34H72H5RVJTBQFGU4GV/ZICVNTLTT4V7CCIJPWNY363N6LIP2AET/OUUAK2X2MEGEKC6ULA4CFSBY4PE5EGPV.woff2\",weight:\"400\"},{family:\"Plus Jakarta Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/AJVGEOXGB2ALQKAZEK2LDOLCVBCMCOIT/LDEP4R7SNNABDEG433DCQGM2A7YCBHLU/OWABOLGBAKFVLPZ756IYS6EKYKU54K3I.woff2\",weight:\"700\"},{family:\"Plus Jakarta Sans\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/57U2OK2BISA74Z4RT4CRD5GR4O3PNVPY/K4TDAPUNBYK24HOCNW4JIOTEXSAE2BEF/GV5XODI2YD2DJA5RVTMJOSDHYESL7IYT.woff2\",weight:\"700\"},{family:\"Plus Jakarta Sans\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/UCVXDNZGT5A6V6IG4FWRDHOLGWGQQV4M/TH4CJJ2LCTVPQVYTQSEXOUCHE4FDIZON/LPCI46BISLFAK3QOD4U4IAMRBITTSFAP.woff2\",weight:\"400\"}]}];export const css=['.framer-IIfMV .framer-styles-preset-rhsqmo:not(.rich-text-wrapper), .framer-IIfMV .framer-styles-preset-rhsqmo.rich-text-wrapper p { --framer-font-family: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-italic: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-4f0d248b-dffe-4cf2-8c35-09b2f177ee52, #5c5a53); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-IIfMV .framer-styles-preset-rhsqmo:not(.rich-text-wrapper), .framer-IIfMV .framer-styles-preset-rhsqmo.rich-text-wrapper p { --framer-font-family: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-italic: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 11px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-4f0d248b-dffe-4cf2-8c35-09b2f177ee52, #5c5a53); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-IIfMV .framer-styles-preset-rhsqmo:not(.rich-text-wrapper), .framer-IIfMV .framer-styles-preset-rhsqmo.rich-text-wrapper p { --framer-font-family: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-italic: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 9px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-4f0d248b-dffe-4cf2-8c35-09b2f177ee52, #5c5a53); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-IIfMV\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (b0164a3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/a5hd7blCeNQJxRAA8fuz/eKnsid5Q9YsXTGiqHU3D/PhT5RH6uk.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/e7MbFCWxt8AkMfFgdIBe/G4WRGFe2GH6IHfBpr0AA/XZwwdBqvj.js\";const serializationHash=\"framer-1ADBV\";const variantClassNames={Qpt1CFVVV:\"framer-v-ffuyju\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const getProps=({height,id,link,promotionContent,title,width,...props})=>{var _ref,_ref1;return{...props,bNmXIkaZ0:link!==null&&link!==void 0?link:props.bNmXIkaZ0,ChyL1jB4u:(_ref=promotionContent!==null&&promotionContent!==void 0?promotionContent:props.ChyL1jB4u)!==null&&_ref!==void 0?_ref:\"20% For First Time Bookings\",dT6JT2VSh:(_ref1=title!==null&&title!==void 0?title:props.dT6JT2VSh)!==null&&_ref1!==void 0?_ref1:\"Special Offers\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Variants=motion.create(React.Fragment);const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,bNmXIkaZ0,dT6JT2VSh,ChyL1jB4u,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"Qpt1CFVVV\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:bNmXIkaZ0,nodeId:\"Qpt1CFVVV\",children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-ffuyju\",className,classNames)} framer-hcpubx`,\"data-framer-name\":\"default\",layoutDependency:layoutDependency,layoutId:\"Qpt1CFVVV\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-0700bea1-2843-4b21-9b22-a81b56210641, rgb(211, 174, 123))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,...style},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-yf4t41\",layoutDependency:layoutDependency,layoutId:\"a4ZWNVKSp\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-rhsqmo\",\"data-styles-preset\":\"XZwwdBqvj\",children:\"Summer Offers\"})}),className:\"framer-116udbx\",\"data-framer-name\":\"Special Offers\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"AogPa19EG\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:dT6JT2VSh,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1goq7md\",\"data-framer-name\":\"bottom\",layoutDependency:layoutDependency,layoutId:\"bVzr4Dfng\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1m1lk2s\",\"data-styles-preset\":\"PhT5RH6uk\",children:\"30% for family booking\"})}),className:\"framer-1b916dz\",\"data-framer-name\":\"20% For First Time Bookings\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"vTq9q5B5m\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:ChyL1jB4u,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-sy7qip\",\"data-framer-name\":\"Frame 30\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:19,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"IkEoJtTxR\",svg:'<svg width=\"20\" height=\"19\" viewBox=\"0 0 20 19\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M6 5.21411L18.5276 17.7418\" stroke=\"black\"/>\\n<path d=\"M19 6V18H7\" stroke=\"black\"/>\\n</svg>\\n',withExternalLayout:true})]})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-1ADBV.framer-hcpubx, .framer-1ADBV .framer-hcpubx { display: block; }\",\".framer-1ADBV.framer-ffuyju { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 94px; justify-content: flex-start; overflow: hidden; padding: 15px 20px 15px 20px; position: relative; text-decoration: none; width: 290px; will-change: var(--framer-will-change-override, transform); }\",\".framer-1ADBV .framer-yf4t41 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-1ADBV .framer-116udbx { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-1ADBV .framer-1goq7md { 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-1ADBV .framer-1b916dz { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-1ADBV .framer-sy7qip { flex: none; height: 19px; position: relative; width: 20px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-1ADBV.framer-ffuyju, .framer-1ADBV .framer-yf4t41 { gap: 0px; } .framer-1ADBV.framer-ffuyju > *, .framer-1ADBV .framer-yf4t41 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-1ADBV.framer-ffuyju > :first-child, .framer-1ADBV .framer-yf4t41 > :first-child { margin-top: 0px; } .framer-1ADBV.framer-ffuyju > :last-child, .framer-1ADBV .framer-yf4t41 > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 94\n * @framerIntrinsicWidth 290\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"bNmXIkaZ0\":\"link\",\"dT6JT2VSh\":\"title\",\"ChyL1jB4u\":\"promotionContent\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerfDSvA50Js=withCSS(Component,css,\"framer-1ADBV\");export default FramerfDSvA50Js;FramerfDSvA50Js.displayName=\"notification/ active\";FramerfDSvA50Js.defaultProps={height:94,width:290};addPropertyControls(FramerfDSvA50Js,{bNmXIkaZ0:{title:\"Link\",type:ControlType.Link},dT6JT2VSh:{defaultValue:\"Special Offers\",displayTextArea:false,title:\"Title\",type:ControlType.String},ChyL1jB4u:{defaultValue:\"20% For First Time Bookings\",displayTextArea:false,title:\"promotion content\",type:ControlType.String}});addFonts(FramerfDSvA50Js,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerfDSvA50Js\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"94\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"290\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"bNmXIkaZ0\\\":\\\"link\\\",\\\"dT6JT2VSh\\\":\\\"title\\\",\\\"ChyL1jB4u\\\":\\\"promotionContent\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./fDSvA50Js.map", "// Generated by Framer (38f2e7f)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Playwrite BE VLG-300\",\"GF;Playwrite BE VLG-regular\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Playwrite BE VLG\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/playwritebevlg/v1/GFD8WBdug3mQSvrAT9AL6fd4ZkB-a2sDmg3dy2W0blKivPCJMiyBIkNg.woff2\",weight:\"300\"},{family:\"Playwrite BE VLG\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/playwritebevlg/v1/GFD8WBdug3mQSvrAT9AL6fd4ZkB-a2sDmg3dy2W0blL8vPCJMiyBIkNg.woff2\",weight:\"400\"}]}];export const css=['.framer-d0cyq .framer-styles-preset-t64z8c:not(.rich-text-wrapper), .framer-d0cyq .framer-styles-preset-t64z8c.rich-text-wrapper h5 { --framer-font-family: \"Playwrite BE VLG\", sans-serif; --framer-font-family-bold: \"Playwrite BE VLG\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 28px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 300; --framer-font-weight-bold: 400; --framer-letter-spacing: 0em; --framer-line-height: 200%; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: var(--token-4f0d248b-dffe-4cf2-8c35-09b2f177ee52, #5c5a53); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-d0cyq .framer-styles-preset-t64z8c:not(.rich-text-wrapper), .framer-d0cyq .framer-styles-preset-t64z8c.rich-text-wrapper h5 { --framer-font-family: \"Playwrite BE VLG\", sans-serif; --framer-font-family-bold: \"Playwrite BE VLG\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 22px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 300; --framer-font-weight-bold: 400; --framer-letter-spacing: 0em; --framer-line-height: 200%; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: var(--token-4f0d248b-dffe-4cf2-8c35-09b2f177ee52, #5c5a53); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-d0cyq .framer-styles-preset-t64z8c:not(.rich-text-wrapper), .framer-d0cyq .framer-styles-preset-t64z8c.rich-text-wrapper h5 { --framer-font-family: \"Playwrite BE VLG\", sans-serif; --framer-font-family-bold: \"Playwrite BE VLG\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 300; --framer-font-weight-bold: 400; --framer-letter-spacing: 0em; --framer-line-height: 200%; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: var(--token-4f0d248b-dffe-4cf2-8c35-09b2f177ee52, #5c5a53); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-d0cyq\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (38f2e7f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"cFLE4fRbh\",\"a5UtGj5aT\"];const serializationHash=\"framer-66f8G\";const variantClassNames={a5UtGj5aT:\"framer-v-1wpe22m\",cFLE4fRbh:\"framer-v-12egoiw\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"4 stars\":\"cFLE4fRbh\",\"5 stars\":\"a5UtGj5aT\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"cFLE4fRbh\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"cFLE4fRbh\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-12egoiw\",className,classNames),\"data-framer-name\":\"4 stars\",layoutDependency:layoutDependency,layoutId:\"cFLE4fRbh\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({a5UtGj5aT:{\"data-framer-name\":\"5 stars\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||24)-0-24)/2)),pixelHeight:25,pixelWidth:24,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/yuTCCmrfNbpfuripKrXt7sU9wY.svg\"},className:\"framer-1mx6i5z\",\"data-framer-name\":\"icon\",layoutDependency:layoutDependency,layoutId:\"DNQM_64fv\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||24)-0-24)/2)),pixelHeight:25,pixelWidth:24,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/yuTCCmrfNbpfuripKrXt7sU9wY.svg\"},className:\"framer-1c73hds\",\"data-framer-name\":\"icon\",layoutDependency:layoutDependency,layoutId:\"Dl7g7qyuh\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||24)-0-24)/2)),pixelHeight:25,pixelWidth:24,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/yuTCCmrfNbpfuripKrXt7sU9wY.svg\"},className:\"framer-nxh1im\",\"data-framer-name\":\"icon\",layoutDependency:layoutDependency,layoutId:\"UfZMJLRpr\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||24)-0-24)/2)),pixelHeight:25,pixelWidth:24,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/yuTCCmrfNbpfuripKrXt7sU9wY.svg\"},className:\"framer-1fb63t5\",\"data-framer-name\":\"icon\",layoutDependency:layoutDependency,layoutId:\"rn_6Dit2M\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||24)-0-24)/2)),pixelHeight:25,pixelWidth:24,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/7jxCIEssIS2hSDdTqYf9BnUpvvs.svg\"},className:\"framer-1q6nvf4\",\"data-framer-name\":\"icon\",layoutDependency:layoutDependency,layoutId:\"NRlkOySAA\",...addPropertyOverrides({a5UtGj5aT:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||24)-0-24)/2)),pixelHeight:25,pixelWidth:24,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/yuTCCmrfNbpfuripKrXt7sU9wY.svg\"}}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-66f8G.framer-nmf9ou, .framer-66f8G .framer-nmf9ou { display: block; }\",\".framer-66f8G.framer-12egoiw { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-66f8G .framer-1mx6i5z, .framer-66f8G .framer-1c73hds, .framer-66f8G .framer-nxh1im, .framer-66f8G .framer-1fb63t5, .framer-66f8G .framer-1q6nvf4 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); overflow: hidden; position: relative; width: 24px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-66f8G.framer-12egoiw { gap: 0px; } .framer-66f8G.framer-12egoiw > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-66f8G.framer-12egoiw > :first-child { margin-left: 0px; } .framer-66f8G.framer-12egoiw > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 24\n * @framerIntrinsicWidth 140\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"a5UtGj5aT\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerQcY7Vd7wJ=withCSS(Component,css,\"framer-66f8G\");export default FramerQcY7Vd7wJ;FramerQcY7Vd7wJ.displayName=\"rating stars\";FramerQcY7Vd7wJ.defaultProps={height:24,width:140};addPropertyControls(FramerQcY7Vd7wJ,{variant:{options:[\"cFLE4fRbh\",\"a5UtGj5aT\"],optionTitles:[\"4 stars\",\"5 stars\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerQcY7Vd7wJ,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerQcY7Vd7wJ\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"140\",\"framerIntrinsicHeight\":\"24\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"a5UtGj5aT\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./QcY7Vd7wJ.map", "// Generated by Framer (552ec80)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getPropertyControls,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/lh49d9zu4G46jA9Vs5vq/U42rEsWfN1MW1N87LUc9/EeQBFmlsb.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/fHLX3aS4xqX2g6sVUyQ4/Zbv5KCnz1aPo3OJajLHh/tEdgefO23.js\";import RatingStars from\"https://framerusercontent.com/modules/6yVQZbkJnQz8WvBfOi03/xgOE1Y8H8EtdufwgePX2/QcY7Vd7wJ.js\";const RatingStarsFonts=getFonts(RatingStars);const RatingStarsControls=getPropertyControls(RatingStars);const serializationHash=\"framer-ocLkg\";const variantClassNames={DnFhD71Fm:\"framer-v-18fpin8\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableEnumMap={\"4 stars\":\"cFLE4fRbh\",\"5 stars\":\"a5UtGj5aT\"};const getProps=({clientInfo,height,id,quoteDetail,ratingStats,width,...props})=>{var _humanReadableEnumMap_ratingStats,_ref,_ref1,_ref2,_ref3;return{...props,fVOc4DcWy:(_ref1=(_ref=(_humanReadableEnumMap_ratingStats=humanReadableEnumMap[ratingStats])!==null&&_humanReadableEnumMap_ratingStats!==void 0?_humanReadableEnumMap_ratingStats:ratingStats)!==null&&_ref!==void 0?_ref:props.fVOc4DcWy)!==null&&_ref1!==void 0?_ref1:\"cFLE4fRbh\",Q9lTlPJS1:(_ref2=clientInfo!==null&&clientInfo!==void 0?clientInfo:props.Q9lTlPJS1)!==null&&_ref2!==void 0?_ref2:\"Ore & Carter, Couple\",Usp7hA8gj:(_ref3=quoteDetail!==null&&quoteDetail!==void 0?quoteDetail:props.Usp7hA8gj)!==null&&_ref3!==void 0?_ref3:'\"Choosing The Reign Hall was the best decision we made for our wedding. From the breathtaking decor to the seamless flow of the day, everything exceeded our expectations. The staff were attentive, making sure each detail was perfect and that our guests felt welcomed and pampered. It was truly a magical experience, and The Reign Hall will forever hold a special place in our hearts.\"'};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,Usp7hA8gj,Q9lTlPJS1,fVOc4DcWy,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"DnFhD71Fm\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-18fpin8\",className,classNames),\"data-framer-name\":\"default\",layoutDependency:layoutDependency,layoutId:\"DnFhD71Fm\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18kknon\",\"data-framer-name\":\"main\",layoutDependency:layoutDependency,layoutId:\"KcwhwloBW\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+0),pixelHeight:41,pixelWidth:45,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/0UtjpqZjxakv0dXRlWVRbyqP34.svg\"},className:\"framer-18njuj5\",\"data-framer-name\":\"icon\",layoutDependency:layoutDependency,layoutId:\"j64zFlHbw\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h5,{className:\"framer-styles-preset-t64z8c\",\"data-styles-preset\":\"EeQBFmlsb\",style:{\"--framer-text-alignment\":\"center\"},children:[\"We came as a couple Christmas weekend in NYC.\",/*#__PURE__*/_jsx(motion.br,{}),\"The Wallace was a great choice that we will return to again. Check in and out was effortless. Rooms are brand new and immaculate. Our standard king room felt spacious\"]})}),className:\"framer-1o33q5z\",\"data-framer-name\":\"We came as a couple Christmas weekend in NYC.\\u2028The Wallace was a great choice that we will return to again. Check in and out was effortless. Rooms are brand new and immaculate. Our standard king room felt spacious\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"cqkaW651C\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:Usp7hA8gj,verticalAlignment:\"bottom\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fj5tld\",\"data-framer-name\":\"rating\",layoutDependency:layoutDependency,layoutId:\"l65zP50WU\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+206+.8000000000000007,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-4uzqz3-container\",layoutDependency:layoutDependency,layoutId:\"gIOExYSIM-container\",children:/*#__PURE__*/_jsx(RatingStars,{height:\"100%\",id:\"gIOExYSIM\",layoutId:\"gIOExYSIM\",variant:fVOc4DcWy,width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-15wei3n\",\"data-styles-preset\":\"tEdgefO23\",children:\"Marie Dubois, Forbes\"})}),className:\"framer-1thsxg9\",\"data-framer-name\":\"Marie Dubois, Forbes\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"bLcxJlf7D\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:Q9lTlPJS1,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ocLkg.framer-dybrzv, .framer-ocLkg .framer-dybrzv { display: block; }\",\".framer-ocLkg.framer-18fpin8 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1170px; overflow: visible; padding: 0px; position: relative; width: 1170px; }\",\".framer-ocLkg .framer-18kknon { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 85%; }\",\".framer-ocLkg .framer-18njuj5 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 50px); overflow: hidden; position: relative; width: 50px; }\",\".framer-ocLkg .framer-1o33q5z { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-ocLkg .framer-1fj5tld { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-ocLkg .framer-4uzqz3-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-ocLkg .framer-1thsxg9 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ocLkg.framer-18fpin8, .framer-ocLkg .framer-18kknon, .framer-ocLkg .framer-1fj5tld { gap: 0px; } .framer-ocLkg.framer-18fpin8 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-ocLkg.framer-18fpin8 > :first-child, .framer-ocLkg .framer-18kknon > :first-child { margin-top: 0px; } .framer-ocLkg.framer-18fpin8 > :last-child, .framer-ocLkg .framer-18kknon > :last-child { margin-bottom: 0px; } .framer-ocLkg .framer-18kknon > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-ocLkg .framer-1fj5tld > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-ocLkg .framer-1fj5tld > :first-child { margin-left: 0px; } .framer-ocLkg .framer-1fj5tld > :last-child { margin-right: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 511.5\n * @framerIntrinsicWidth 1170\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1170px\",null,null]}}}\n * @framerVariables {\"Usp7hA8gj\":\"quoteDetail\",\"Q9lTlPJS1\":\"clientInfo\",\"fVOc4DcWy\":\"ratingStats\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerI6wwEbg3k=withCSS(Component,css,\"framer-ocLkg\");export default FramerI6wwEbg3k;FramerI6wwEbg3k.displayName=\"quote\";FramerI6wwEbg3k.defaultProps={height:511.5,width:1170};addPropertyControls(FramerI6wwEbg3k,{Usp7hA8gj:{defaultValue:'\"Choosing The Reign Hall was the best decision we made for our wedding. From the breathtaking decor to the seamless flow of the day, everything exceeded our expectations. The staff were attentive, making sure each detail was perfect and that our guests felt welcomed and pampered. It was truly a magical experience, and The Reign Hall will forever hold a special place in our hearts.\"',displayTextArea:true,title:\"quote detail\",type:ControlType.String},Q9lTlPJS1:{defaultValue:\"Ore & Carter, Couple\",displayTextArea:false,title:\"client info\",type:ControlType.String},fVOc4DcWy:(RatingStarsControls===null||RatingStarsControls===void 0?void 0:RatingStarsControls[\"variant\"])&&{...RatingStarsControls[\"variant\"],defaultValue:\"cFLE4fRbh\",description:undefined,hidden:undefined,title:\"rating stats\"}});addFonts(FramerI6wwEbg3k,[{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\"}]},...RatingStarsFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerI6wwEbg3k\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"Usp7hA8gj\\\":\\\"quoteDetail\\\",\\\"Q9lTlPJS1\\\":\\\"clientInfo\\\",\\\"fVOc4DcWy\\\":\\\"ratingStats\\\"}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1170\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1170px\\\",null,null]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"511.5\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./I6wwEbg3k.map", "// Generated by Framer (552ec80)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/fMlHeESeCkfDFkEEVEOC/itvX5oYhOASzklPbD6oO/ljmMcjGRc.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/fHLX3aS4xqX2g6sVUyQ4/Zbv5KCnz1aPo3OJajLHh/tEdgefO23.js\";const enabledGestures={XMNWhyKqZ:{hover:true}};const serializationHash=\"framer-9ofRA\";const variantClassNames={XMNWhyKqZ:\"framer-v-epxvhy\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,image,link,shortDescription,title,width,...props})=>{var _ref,_ref1;return{...props,c5OSoIMWX:link!==null&&link!==void 0?link:props.c5OSoIMWX,leXyi8tNy:(_ref=shortDescription!==null&&shortDescription!==void 0?shortDescription:props.leXyi8tNy)!==null&&_ref!==void 0?_ref:\"Enjoy hassle-free events at The Reign Hall with our spacious, complimentary on-site parking. Plenty of room for all your guests\u2014making arrival easy and convenient!\",mo4vSJAxl:image!==null&&image!==void 0?image:props.mo4vSJAxl,QhtsKq919:(_ref1=title!==null&&title!==void 0?title:props.QhtsKq919)!==null&&_ref1!==void 0?_ref1:\"Free & ample parking\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,mo4vSJAxl,QhtsKq919,leXyi8tNy,c5OSoIMWX,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"XMNWhyKqZ\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:c5OSoIMWX,nodeId:\"XMNWhyKqZ\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-epxvhy\",className,classNames)} framer-1enzhy6`,\"data-framer-name\":\"default\",layoutDependency:layoutDependency,layoutId:\"XMNWhyKqZ\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"XMNWhyKqZ-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-oqogdc\",\"data-framer-name\":\"top\",layoutDependency:layoutDependency,layoutId:\"MBhrI4wC_\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0),sizes:\"568px\",...toResponsiveImage(mo4vSJAxl),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1ivnwav\",\"data-framer-name\":\"img\",layoutDependency:layoutDependency,layoutId:\"fobX_t9wG\",transformTemplate:transformTemplate1,...addPropertyOverrides({\"XMNWhyKqZ-hover\":{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+410-424),sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} + 40px)`,...toResponsiveImage(mo4vSJAxl),...{positionX:\"center\",positionY:\"center\"}},transformTemplate:undefined}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vz8z1a\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"PAFJCl6KT\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-a0vjrw\",\"data-styles-preset\":\"ljmMcjGRc\",children:\"Restaurant & Bar\"})}),className:\"framer-1i69ray\",\"data-framer-name\":\"Free & ample Parking\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"h35Yx7sWm\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:QhtsKq919,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-15wei3n\",\"data-styles-preset\":\"tEdgefO23\",children:\"Savor exquisite flavors in an ambiance that captures the essence \"})}),className:\"framer-fw0x8h\",\"data-framer-name\":\"Hassle free parking\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"p6VPMKH7_\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:leXyi8tNy,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-9ofRA.framer-1enzhy6, .framer-9ofRA .framer-1enzhy6 { display: block; }\",\".framer-9ofRA.framer-epxvhy { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 568px; }\",\".framer-9ofRA .framer-oqogdc { flex: none; height: 410px; overflow: hidden; position: relative; width: 100%; }\",\".framer-9ofRA .framer-1ivnwav { aspect-ratio: 1.3853658536585365 / 1; bottom: 0px; flex: none; left: 50%; overflow: hidden; position: absolute; top: 0px; width: var(--framer-aspect-ratio-supported, 568px); }\",\".framer-9ofRA .framer-1vz8z1a { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-9ofRA .framer-1i69ray, .framer-9ofRA .framer-fw0x8h { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-9ofRA.framer-epxvhy, .framer-9ofRA .framer-1vz8z1a { gap: 0px; } .framer-9ofRA.framer-epxvhy > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-9ofRA.framer-epxvhy > :first-child, .framer-9ofRA .framer-1vz8z1a > :first-child { margin-top: 0px; } .framer-9ofRA.framer-epxvhy > :last-child, .framer-9ofRA .framer-1vz8z1a > :last-child { margin-bottom: 0px; } .framer-9ofRA .framer-1vz8z1a > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } }\",\".framer-9ofRA.framer-v-epxvhy.hover .framer-1ivnwav { bottom: -15px; height: var(--framer-aspect-ratio-supported, 439px); left: -20px; right: -20px; top: unset; width: unset; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 562.5\n * @framerIntrinsicWidth 568\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"KiNrpqRVc\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"mo4vSJAxl\":\"image\",\"QhtsKq919\":\"title\",\"leXyi8tNy\":\"shortDescription\",\"c5OSoIMWX\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerSS1r1P8ZF=withCSS(Component,css,\"framer-9ofRA\");export default FramerSS1r1P8ZF;FramerSS1r1P8ZF.displayName=\"service/landscape\";FramerSS1r1P8ZF.defaultProps={height:562.5,width:568};addPropertyControls(FramerSS1r1P8ZF,{mo4vSJAxl:{title:\"image\",type:ControlType.ResponsiveImage},QhtsKq919:{defaultValue:\"Free & ample parking\",displayTextArea:false,title:\"Title\",type:ControlType.String},leXyi8tNy:{defaultValue:\"Enjoy hassle-free events at The Reign Hall with our spacious, complimentary on-site parking. Plenty of room for all your guests\u2014making arrival easy and convenient!\",displayTextArea:true,title:\"short description\",type:ControlType.String},c5OSoIMWX:{title:\"Link\",type:ControlType.Link}});addFonts(FramerSS1r1P8ZF,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerSS1r1P8ZF\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"mo4vSJAxl\\\":\\\"image\\\",\\\"QhtsKq919\\\":\\\"title\\\",\\\"leXyi8tNy\\\":\\\"shortDescription\\\",\\\"c5OSoIMWX\\\":\\\"link\\\"}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"568\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KiNrpqRVc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"562.5\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SS1r1P8ZF.map", "// Generated by Framer (552ec80)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/e7MbFCWxt8AkMfFgdIBe/G4WRGFe2GH6IHfBpr0AA/XZwwdBqvj.js\";const serializationHash=\"framer-clk3q\";const variantClassNames={Ym8ReiJvp:\"framer-v-1gl6or4\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,image,title,width,...props})=>{var _ref;return{...props,Brug2gFQc:image!==null&&image!==void 0?image:props.Brug2gFQc,gqMTfgjIe:(_ref=title!==null&&title!==void 0?title:props.gqMTfgjIe)!==null&&_ref!==void 0?_ref:\"GARDEN\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,gqMTfgjIe,Brug2gFQc,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"Ym8ReiJvp\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1gl6or4\",className,classNames),\"data-framer-name\":\"default\",layoutDependency:layoutDependency,layoutId:\"Ym8ReiJvp\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0),sizes:\"60px\",...toResponsiveImage(Brug2gFQc),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-13bkcaw\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"AowRFQgRR\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-rhsqmo\",\"data-styles-preset\":\"XZwwdBqvj\",children:\"GARDEN\"})}),className:\"framer-1ed306m\",\"data-framer-name\":\"GARDEN\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"SuUz9NwdO\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:gqMTfgjIe,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-clk3q.framer-2pkdm6, .framer-clk3q .framer-2pkdm6 { display: block; }\",\".framer-clk3q.framer-1gl6or4 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-clk3q .framer-13bkcaw { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 60px); position: relative; width: 60px; }\",\".framer-clk3q .framer-1ed306m { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-clk3q.framer-1gl6or4 { gap: 0px; } .framer-clk3q.framer-1gl6or4 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-clk3q.framer-1gl6or4 > :first-child { margin-top: 0px; } .framer-clk3q.framer-1gl6or4 > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 100\n * @framerIntrinsicWidth 60\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"gqMTfgjIe\":\"title\",\"Brug2gFQc\":\"image\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramervOEoMqLN7=withCSS(Component,css,\"framer-clk3q\");export default FramervOEoMqLN7;FramervOEoMqLN7.displayName=\"amenities\";FramervOEoMqLN7.defaultProps={height:100,width:60};addPropertyControls(FramervOEoMqLN7,{gqMTfgjIe:{defaultValue:\"GARDEN\",displayTextArea:false,title:\"title\",type:ControlType.String},Brug2gFQc:{title:\"image\",type:ControlType.ResponsiveImage}});addFonts(FramervOEoMqLN7,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramervOEoMqLN7\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"60\",\"framerIntrinsicHeight\":\"100\",\"framerVariables\":\"{\\\"gqMTfgjIe\\\":\\\"title\\\",\\\"Brug2gFQc\\\":\\\"image\\\"}\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./vOEoMqLN7.map", "// Generated by Framer (552ec80)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/fMlHeESeCkfDFkEEVEOC/itvX5oYhOASzklPbD6oO/ljmMcjGRc.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/fHLX3aS4xqX2g6sVUyQ4/Zbv5KCnz1aPo3OJajLHh/tEdgefO23.js\";const enabledGestures={AhbAqnNwl:{hover:true},OrAgGyyEn:{hover:true}};const cycleOrder=[\"OrAgGyyEn\",\"AhbAqnNwl\"];const serializationHash=\"framer-4yS4p\";const variantClassNames={AhbAqnNwl:\"framer-v-7z32ps\",OrAgGyyEn:\"framer-v-el1nih\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={default:\"OrAgGyyEn\",mobile:\"AhbAqnNwl\"};const getProps=({height,id,image,link,shortDescription,title,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1,_ref2;return{...props,DGcJgGRcH:image!==null&&image!==void 0?image:props.DGcJgGRcH,nXQyDsERq:(_ref=shortDescription!==null&&shortDescription!==void 0?shortDescription:props.nXQyDsERq)!==null&&_ref!==void 0?_ref:\"At The Reign Hall, we offer three unique spaces designed to host a variety of gatherings, each with its own charm and capacity to meet the needs of your event.\",q01hRsVO1:link!==null&&link!==void 0?link:props.q01hRsVO1,variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"OrAgGyyEn\",wGHX9YDyA:(_ref2=title!==null&&title!==void 0?title:props.wGHX9YDyA)!==null&&_ref2!==void 0?_ref2:\"Spaces\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,DGcJgGRcH,wGHX9YDyA,nXQyDsERq,q01hRsVO1,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"OrAgGyyEn\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapyr0pzn=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"OrAgGyyEn\");});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:q01hRsVO1,nodeId:\"OrAgGyyEn\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-el1nih\",className,classNames)} framer-1j371bv`,\"data-framer-name\":\"default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"OrAgGyyEn\",onTap:onTapyr0pzn,ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"AhbAqnNwl-hover\":{\"data-framer-name\":undefined},\"OrAgGyyEn-hover\":{\"data-framer-name\":undefined},AhbAqnNwl:{\"data-framer-name\":\"mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1c07okf\",\"data-framer-name\":\"top\",layoutDependency:layoutDependency,layoutId:\"hX_cKezHL\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0),sizes:\"470px\",...toResponsiveImage(DGcJgGRcH),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-116z3uw\",\"data-framer-name\":\"img\",layoutDependency:layoutDependency,layoutId:\"xQM2ZCUqJ\",transformTemplate:transformTemplate1,...addPropertyOverrides({\"AhbAqnNwl-hover\":{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+-17.446808510638306),sizes:\"510px\",...toResponsiveImage(DGcJgGRcH),...{positionX:\"center\",positionY:\"center\"}},transformTemplate:undefined},\"OrAgGyyEn-hover\":{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+600-625),sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} + 40px)`,...toResponsiveImage(DGcJgGRcH),...{positionX:\"center\",positionY:\"center\"}},transformTemplate:undefined},AhbAqnNwl:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+0),sizes:\"470px\",...toResponsiveImage(DGcJgGRcH),...{positionX:\"center\",positionY:\"center\"}},transformTemplate:undefined}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ot6568\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"D8v9YkmqR\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-a0vjrw\",\"data-styles-preset\":\"ljmMcjGRc\",children:\"Room & Suites\"})}),className:\"framer-17r5xm2\",\"data-framer-name\":\"Room & Suites\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"yl1aMeuUl\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:wGHX9YDyA,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-15wei3n\",\"data-styles-preset\":\"tEdgefO23\",children:\"Carefully luxury rooms designed for\\xa0your comfort\"})}),className:\"framer-1vtsukt\",\"data-framer-name\":\"Carefully luxury rooms designed for\\xa0your comfort\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"VBA47lhS3\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:nXQyDsERq,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-4yS4p.framer-1j371bv, .framer-4yS4p .framer-1j371bv { display: block; }\",\".framer-4yS4p.framer-el1nih { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 470px; }\",\".framer-4yS4p .framer-1c07okf { aspect-ratio: 0.7833333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 600px); overflow: hidden; position: relative; width: 100%; }\",\".framer-4yS4p .framer-116z3uw { aspect-ratio: 0.7833333333333333 / 1; bottom: 0px; flex: none; left: 50%; overflow: hidden; position: absolute; top: 0px; width: var(--framer-aspect-ratio-supported, 470px); }\",\".framer-4yS4p .framer-1ot6568 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-4yS4p .framer-17r5xm2, .framer-4yS4p .framer-1vtsukt { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-4yS4p.framer-el1nih, .framer-4yS4p .framer-1ot6568 { gap: 0px; } .framer-4yS4p.framer-el1nih > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-4yS4p.framer-el1nih > :first-child, .framer-4yS4p .framer-1ot6568 > :first-child { margin-top: 0px; } .framer-4yS4p.framer-el1nih > :last-child, .framer-4yS4p .framer-1ot6568 > :last-child { margin-bottom: 0px; } .framer-4yS4p .framer-1ot6568 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } }\",\".framer-4yS4p.framer-v-7z32ps .framer-1c07okf { align-content: center; align-items: center; aspect-ratio: unset; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 410px; justify-content: center; padding: 0px; }\",\".framer-4yS4p.framer-v-7z32ps .framer-116z3uw { aspect-ratio: 1.146341463414634 / 1; bottom: unset; height: 410px; left: unset; position: relative; top: unset; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-4yS4p.framer-v-7z32ps .framer-1c07okf { gap: 0px; } .framer-4yS4p.framer-v-7z32ps .framer-1c07okf > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-4yS4p.framer-v-7z32ps .framer-1c07okf > :first-child { margin-top: 0px; } .framer-4yS4p.framer-v-7z32ps .framer-1c07okf > :last-child { margin-bottom: 0px; } }\",\".framer-4yS4p.framer-v-el1nih.hover .framer-116z3uw { bottom: -26px; height: var(--framer-aspect-ratio-supported, 651px); left: -20px; right: -20px; top: unset; width: unset; }\",\".framer-4yS4p.framer-v-7z32ps.hover .framer-1c07okf { aspect-ratio: unset; }\",\".framer-4yS4p.framer-v-7z32ps.hover .framer-116z3uw { bottom: unset; height: 445px; left: unset; top: unset; width: var(--framer-aspect-ratio-supported, 510px); }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 752.5\n * @framerIntrinsicWidth 470\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"AhbAqnNwl\":{\"layout\":[\"fixed\",\"auto\"]},\"GhxyVMbmn\":{\"layout\":[\"fixed\",\"auto\"]},\"ZonMYcvlG\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"DGcJgGRcH\":\"image\",\"wGHX9YDyA\":\"title\",\"nXQyDsERq\":\"shortDescription\",\"q01hRsVO1\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerzwRhr_e0k=withCSS(Component,css,\"framer-4yS4p\");export default FramerzwRhr_e0k;FramerzwRhr_e0k.displayName=\"service/poirtrait\";FramerzwRhr_e0k.defaultProps={height:752.5,width:470};addPropertyControls(FramerzwRhr_e0k,{variant:{options:[\"OrAgGyyEn\",\"AhbAqnNwl\"],optionTitles:[\"default\",\"mobile\"],title:\"Variant\",type:ControlType.Enum},DGcJgGRcH:{title:\"image\",type:ControlType.ResponsiveImage},wGHX9YDyA:{defaultValue:\"Spaces\",displayTextArea:false,title:\"title\",type:ControlType.String},nXQyDsERq:{defaultValue:\"At The Reign Hall, we offer three unique spaces designed to host a variety of gatherings, each with its own charm and capacity to meet the needs of your event.\",displayTextArea:true,title:\"short description\",type:ControlType.String},q01hRsVO1:{title:\"Link\",type:ControlType.Link}});addFonts(FramerzwRhr_e0k,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerzwRhr_e0k\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"AhbAqnNwl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GhxyVMbmn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZonMYcvlG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"470\",\"framerIntrinsicHeight\":\"752.5\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"DGcJgGRcH\\\":\\\"image\\\",\\\"wGHX9YDyA\\\":\\\"title\\\",\\\"nXQyDsERq\\\":\\\"shortDescription\\\",\\\"q01hRsVO1\\\":\\\"link\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./zwRhr_e0k.map", "// Generated by Framer (552ec80)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Inria Serif-regular\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-SemiBoldItalic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Inria Serif\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inriaserif/v16/fC1lPYxPY3rXxEndZJAzN0SpfSzNr0Ck.woff2\",weight:\"400\"},{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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{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/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{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/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{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/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{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/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/vxBnBhH8768IFAXAb4Qf6wQHKs.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/zSsEuoJdh8mcFVk976C05ZfQr8.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/b8ezwLrN7h2AUoPEENcsTMVJ0.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/mvNEIBLyHbscgHtwfsByjXUz3XY.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/6FI2EneKzM3qBy5foOZXey7coCA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/qrVgiXNd6RuQjETYQiVQ9nqCk.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/NHHeAKJVP0ZWHk5YZnQQChIsBM.woff2\",weight:\"600\"}]}];export const css=['.framer-DrltZ .framer-styles-preset-1u3pz5v:not(.rich-text-wrapper), .framer-DrltZ .framer-styles-preset-1u3pz5v.rich-text-wrapper h6 { --framer-font-family: \"Inria Serif\", \"Inria Serif Placeholder\", serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 44px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 600; --framer-letter-spacing: 0em; --framer-line-height: 120%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-4f0d248b-dffe-4cf2-8c35-09b2f177ee52, #5c5a53); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-DrltZ\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (c76752e)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,ResolveLinks,RichText,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import*as ReactDOM from\"react-dom\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/RjL2koqXAemCvcGHfWM4/Video.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/7NqHJHRwGJKPr4gYnAGm/SlideShow.js\";import NotificationActive from\"#framer/local/canvasComponent/fDSvA50Js/fDSvA50Js.js\";import Instagram from\"#framer/local/canvasComponent/fHnS08wzt/fHnS08wzt.js\";import LineScroll from\"#framer/local/canvasComponent/GtD2dyCs0/GtD2dyCs0.js\";import Quote from\"#framer/local/canvasComponent/I6wwEbg3k/I6wwEbg3k.js\";import Footer from\"#framer/local/canvasComponent/kYcg4iWv5/kYcg4iWv5.js\";import Navigation from\"#framer/local/canvasComponent/NDRZM3oNo/NDRZM3oNo.js\";import ButtonSecondary from\"#framer/local/canvasComponent/pcNAJTV1E/pcNAJTV1E.js\";import SocialCon from\"#framer/local/canvasComponent/Rjni9bKKQ/Rjni9bKKQ.js\";import ServiceLandscape from\"#framer/local/canvasComponent/SS1r1P8ZF/SS1r1P8ZF.js\";import Amenities from\"#framer/local/canvasComponent/vOEoMqLN7/vOEoMqLN7.js\";import OverlayMain from\"#framer/local/canvasComponent/WyrPfNk0M/WyrPfNk0M.js\";import ServicePoirtrait from\"#framer/local/canvasComponent/zwRhr_e0k/zwRhr_e0k.js\";import*as sharedStyle from\"#framer/local/css/amnXrLX9R/amnXrLX9R.js\";import*as sharedStyle6 from\"#framer/local/css/E61ePppjL/E61ePppjL.js\";import*as sharedStyle5 from\"#framer/local/css/kijJLQmPV/kijJLQmPV.js\";import*as sharedStyle2 from\"#framer/local/css/liPOOyzV7/liPOOyzV7.js\";import*as sharedStyle4 from\"#framer/local/css/ljmMcjGRc/ljmMcjGRc.js\";import*as sharedStyle3 from\"#framer/local/css/tEdgefO23/tEdgefO23.js\";import*as sharedStyle1 from\"#framer/local/css/wQZb7al3r/wQZb7al3r.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavigationFonts=getFonts(Navigation);const OverlayMainFonts=getFonts(OverlayMain);const VideoFonts=getFonts(Video);const LineScrollFonts=getFonts(LineScroll);const NotificationActiveFonts=getFonts(NotificationActive);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const SocialConFonts=getFonts(SocialCon);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const ButtonSecondaryFonts=getFonts(ButtonSecondary);const ImageWithFX=withFX(Image);const TickerFonts=getFonts(Ticker);const ServicePoirtraitFonts=getFonts(ServicePoirtrait);const ContainerWithFX=withFX(Container);const ServiceLandscapeFonts=getFonts(ServiceLandscape);const SlideshowFonts=getFonts(Slideshow);const MotionSectionWithFX=withFX(motion.section);const AmenitiesFonts=getFonts(Amenities);const QuoteFonts=getFonts(Quote);const InstagramFonts=getFonts(Instagram);const FooterFonts=getFonts(Footer);const breakpoints={amtdxzT7Y:\"(max-width: 809px)\",vIlonMz6f:\"(min-width: 810px) and (max-width: 1199px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-Ssx3d\";const variantClassNames={amtdxzT7Y:\"framer-v-cw1wdb\",vIlonMz6f:\"framer-v-1i7jjba\",WQLkyLRf1:\"framer-v-72rtr7\"};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const transition1={bounce:.4,delay:1,duration:.4,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const transition2={bounce:.2,delay:.5,duration:.5,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-150,y:0};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const animation4={filter:\"blur(10px)\",opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition3={bounce:0,delay:.05,duration:.4,type:\"spring\"};const textEffect={effect:animation4,tokenization:\"character\",transition:transition3,trigger:\"onMount\",type:\"appear\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,x:0,y:0};const transition4={damping:60,delay:.3,mass:1,stiffness:500,type:\"spring\"};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transition:transition4,x:0,y:0};const transition5={damping:60,delay:0,mass:1.2,stiffness:200,type:\"spring\"};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:0};const animation8={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:25};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:150,y:0};const transition6={bounce:.2,delay:0,duration:.2,type:\"spring\"};const transition7={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation10={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7,x:0,y:0};const transition8={bounce:.2,delay:.2,duration:.2,type:\"spring\"};const transition9={bounce:.2,delay:.4,duration:.2,type:\"spring\"};const transition10={bounce:.2,delay:.6,duration:.2,type:\"spring\"};const transition11={bounce:.2,delay:.8,duration:.2,type:\"spring\"};const transition12={bounce:.2,delay:1,duration:.2,type:\"spring\"};const transition13={bounce:.2,delay:1.2,duration:.2,type:\"spring\"};const transition14={bounce:.2,delay:1.4,duration:.2,type:\"spring\"};const transition15={bounce:.2,delay:1.6,duration:.2,type:\"spring\"};const transition16={bounce:.2,delay:1.8,duration:.2,type:\"spring\"};const transition17={bounce:.2,delay:2,duration:.2,type:\"spring\"};const transition18={bounce:.2,delay:2.2,duration:.2,type:\"spring\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"amtdxzT7Y\",Tablet:\"vIlonMz6f\"};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,...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{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const PXkex2QTe3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const onTap1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"amtdxzT7Y\")return false;return true;};const router=useRouter();const elementId=useRouteElementId(\"WmBaUz324\");const ref2=React.useRef(null);const elementId1=useRouteElementId(\"R_smXBrnB\");const ref3=React.useRef(null);const elementId2=useRouteElementId(\"c0WCF4IG8\");const ref4=React.useRef(null);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__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); } @media (max-width: 809px) { html body { background: var(--token-70bfcb62-c866-4f38-89a2-989ea94dd38b, rgb(255, 255, 255)) } }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:106,width:`calc(${componentViewport?.width||\"100vw\"} * 0.96)`,y:(componentViewport?.y||0)+20,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-sxupqi-container\",id:\"sxupqi\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{amtdxzT7Y:{variant:\"rF_Qo714p\"},vIlonMz6f:{variant:\"t7XwcG_u_\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"rGs9ufUyy\",layoutId:\"rGs9ufUyy\",PXkex2QTe:PXkex2QTe3bnx0g({overlay}),style:{width:\"100%\"},variant:\"MIW2N9YVA\",width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}},className:cx(scopingClassNames,\"framer-1fj5ow5\"),\"data-framer-portal-id\":\"sxupqi\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"sBNa8N9D1\"),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:28,pixelWidth:28,src:\"https://framerusercontent.com/images/CQx6gdjuYQ0U6v99fhJQocDoi4E.svg\"},className:cx(scopingClassNames,\"framer-1m7iecd\"),\"data-framer-portal-id\":\"sxupqi\",onTap:onTap1wnntms({overlay})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"50vw\",children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-1w7qflm-container\"),\"data-framer-portal-id\":\"sxupqi\",children:/*#__PURE__*/_jsx(OverlayMain,{height:\"100%\",id:\"Ski8EsyyW\",layoutId:\"Ski8EsyyW\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),getContainer())})})]})})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-15j3oux\",\"data-framer-name\":\"hero\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p2uf10\",\"data-framer-name\":\"bg\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hzwkf5-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"var(--token-4f0d248b-dffe-4cf2-8c35-09b2f177ee52, rgb(92, 90, 83))\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"loz2Y1Gtf\",isMixedBorderRadius:false,layoutId:\"loz2Y1Gtf\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcType:\"URL\",srcUrl:\"https://cdn.pixabay.com/video/2021/12/30/102952-661305156_small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ojtu5b\",\"data-framer-name\":\"opacity\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{amtdxzT7Y:{y:(componentViewport?.y||0)+0+0+17053025658242404e-29+700-60},vIlonMz6f:{y:(componentViewport?.y||0)+0+0+17053025658242404e-29+800-60}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"1px\",y:(componentViewport?.y||0)+0+0+22737367544323206e-29+1e3-60,children:/*#__PURE__*/_jsx(Container,{className:\"framer-uxdr9z-container\",children:/*#__PURE__*/_jsx(LineScroll,{height:\"100%\",id:\"OMMFddJ1f\",layoutId:\"OMMFddJ1f\",style:{height:\"100%\",width:\"100%\"},variant:\"Az1V81i2z\",width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-6uszob hidden-cw1wdb\",\"data-framer-name\":\"notification\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"UMF9MfuGj\"},implicitPathVariables:undefined},{href:{webPageId:\"UMF9MfuGj\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vIlonMz6f:{y:(componentViewport?.y||0)+0+0+17053025658242404e-29+800-127+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:94,width:\"290px\",y:(componentViewport?.y||0)+0+0+22737367544323206e-29+1e3-127+0+0,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-j184ft-container\",\"data-framer-appear-id\":\"j184ft\",initial:animation1,optimized:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vIlonMz6f:{bNmXIkaZ0:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(NotificationActive,{bNmXIkaZ0:resolvedLinks[0],ChyL1jB4u:\"20% For First Time Bookings\",dT6JT2VSh:\"Special Offers\",height:\"100%\",id:\"HfteJyEiB\",layoutId:\"HfteJyEiB\",style:{width:\"100%\"},width:\"100%\"})})})})})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation2,className:\"framer-mtaeod hidden-cw1wdb\",\"data-framer-appear-id\":\"mtaeod\",\"data-framer-name\":\"social connect\",initial:animation3,optimized:true,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3iefvc\",\"data-framer-name\":\"social icon\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vIlonMz6f:{y:(componentViewport?.y||0)+0+0+800-164+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:\"24px\",y:(componentViewport?.y||0)+0+0+1e3-164+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-32yz73-container\",children:/*#__PURE__*/_jsx(SocialCon,{bkyqs1ZgM:\"https://www.facebook.com/profile.php?id=61569612115396&sk=about\",height:\"100%\",id:\"rpmUlVRlx\",layoutId:\"rpmUlVRlx\",qqzw4q6RN:addImageAlt({src:\"https://framerusercontent.com/images/WgcuxEXkKVbMUYCCItNPp2zevo.svg\"},\"Facebook\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vIlonMz6f:{y:(componentViewport?.y||0)+0+0+800-164+0+0+0+54}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:\"24px\",y:(componentViewport?.y||0)+0+0+1e3-164+0+0+0+54,children:/*#__PURE__*/_jsx(Container,{className:\"framer-euxsyr-container\",children:/*#__PURE__*/_jsx(SocialCon,{bkyqs1ZgM:\"https://www.instagram.com/thereignhallon/profilecard/?igsh=bDAydmgzeG5qOTdj\",height:\"100%\",id:\"f3t5kZN5m\",layoutId:\"f3t5kZN5m\",qqzw4q6RN:addImageAlt({src:\"https://framerusercontent.com/images/dlUJMMgKHZ9E3Nbv2uVYWSFEE.svg\"},\"instagram\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vIlonMz6f:{y:(componentViewport?.y||0)+0+0+800-164+0+0+0+108}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:\"24px\",y:(componentViewport?.y||0)+0+0+1e3-164+0+0+0+108,children:/*#__PURE__*/_jsx(Container,{className:\"framer-17i6fl5-container\",children:/*#__PURE__*/_jsx(SocialCon,{bkyqs1ZgM:\"https://x.com/thereignhallON\",height:\"100%\",id:\"iYrHYtEj1\",layoutId:\"iYrHYtEj1\",qqzw4q6RN:addImageAlt({src:\"https://framerusercontent.com/images/VqmL4JfzNf2CVxuHMqnrHQCjW1g.svg\"},\"twitter X\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ozgawi\",\"data-framer-name\":\"title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{amtdxzT7Y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-v4r7jh\",\"data-styles-preset\":\"wQZb7al3r\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-feab4c57-71fb-4c6c-8afb-ab5a55b12cae, rgb(229, 225, 207))\"},children:\"Premium event space in Bolton, Ontario\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1ngat7p\",\"data-styles-preset\":\"amnXrLX9R\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-feab4c57-71fb-4c6c-8afb-ab5a55b12cae, rgb(229, 225, 207))\"},children:\"Premium event space in Bolton, Ontario\"})}),className:\"framer-1b48ndz\",\"data-framer-name\":\"Journey with us in\\xa0 pursuit of the rare\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h6\",{className:\"framer-styles-preset-ktv0v1\",\"data-styles-preset\":\"liPOOyzV7\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-feab4c57-71fb-4c6c-8afb-ab5a55b12cae, rgb(229, 225, 207))\"},children:[\" \",/*#__PURE__*/_jsx(\"br\",{}),\"8841B George Bolton Parkway, Bolton, Ontario. L7E 2X8\"]})}),className:\"framer-ek8qw7\",\"data-framer-name\":\"Welcome to Chateau Luxury Hotel\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"main\",{className:\"framer-1bsxk17\",\"data-framer-name\":\"main\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-6mwmz\",\"data-framer-name\":\"line\"}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-tnqd79\",\"data-framer-name\":\"\\xecntroducing\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rw4nuz\",\"data-framer-name\":\"left\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-5t39o4\",\"data-framer-name\":\"top\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-v4r7jh\",\"data-styles-preset\":\"wQZb7al3r\",children:\"Your event is our priority\"})}),className:\"framer-17cxzs9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15wei3n\",\"data-styles-preset\":\"tEdgefO23\",children:\"We prioritize excellence in every aspect of our service, ensuring that every guest feels like royalty. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15wei3n\",\"data-styles-preset\":\"tEdgefO23\",children:\"The Reign Hall was born from a deep-seated passion for orchestrating truly exquisite event experiences that not only meet expectations but leave a lasting impression on all who walk through our doors.\\xa0\"})]}),className:\"framer-1y58isf\",\"data-framer-name\":\"Discover a unique blend of exclusivity and charm in Hellerup. Our boutique hotel establishes a deep connection to Hellerup\u2019s historical allure. This is more than just a stay. Experience a place where past elegance meets present-day luxurious comfort. Embrace a timeless atmosphere that preserves the heritage of the location.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"M4GRN4nmN\"},implicitPathVariables:undefined},{href:{webPageId:\"M4GRN4nmN\"},implicitPathVariables:undefined},{href:{webPageId:\"M4GRN4nmN\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{amtdxzT7Y:{y:(componentViewport?.y||0)+0+700+0+60+80+0+0+416.4},vIlonMz6f:{y:(componentViewport?.y||0)+0+800+0+60+80+0+0+416.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:43,y:(componentViewport?.y||0)+0+1e3+0+60+154.3+0+416.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-xeiaxh-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{amtdxzT7Y:{qyTackNTU:resolvedLinks1[2]},vIlonMz6f:{qyTackNTU:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(ButtonSecondary,{height:\"100%\",id:\"GMbtihtSs\",layoutId:\"GMbtihtSs\",qyTackNTU:resolvedLinks1[0],Re3j1imCb:\"VIEW SPACES\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uj4s4h\",\"data-framer-name\":\"image\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{amtdxzT7Y:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+700+0+60+80+499.4+0),pixelHeight:2039,pixelWidth:1530,sizes:`calc(min(${componentViewport?.width||\"100vw\"} * 0.94, 1170px) * 0.84)`,src:\"https://framerusercontent.com/images/JcaXguwOeUV1eAPyibEfQeDXQ.png\",srcSet:\"https://framerusercontent.com/images/JcaXguwOeUV1eAPyibEfQeDXQ.png?scale-down-to=1024 768w,https://framerusercontent.com/images/JcaXguwOeUV1eAPyibEfQeDXQ.png 1530w\"}},vIlonMz6f:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+800+0+60+80+529.4+0),pixelHeight:2039,pixelWidth:1530,sizes:\"603px\",src:\"https://framerusercontent.com/images/JcaXguwOeUV1eAPyibEfQeDXQ.png\",srcSet:\"https://framerusercontent.com/images/JcaXguwOeUV1eAPyibEfQeDXQ.png?scale-down-to=1024 768w,https://framerusercontent.com/images/JcaXguwOeUV1eAPyibEfQeDXQ.png 1530w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1e3+0+60+80+0),pixelHeight:2039,pixelWidth:1530,sizes:\"453px\",src:\"https://framerusercontent.com/images/JcaXguwOeUV1eAPyibEfQeDXQ.png\",srcSet:\"https://framerusercontent.com/images/JcaXguwOeUV1eAPyibEfQeDXQ.png?scale-down-to=1024 768w,https://framerusercontent.com/images/JcaXguwOeUV1eAPyibEfQeDXQ.png 1530w\"},className:\"framer-1kg0sj4\",\"data-framer-name\":\"big\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{amtdxzT7Y:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+700+0+60+80+499.4+821.3333333333334-424),pixelHeight:2057,pixelWidth:1543,sizes:`calc(min(${componentViewport?.width||\"100vw\"} * 0.94, 1170px) * 0.44)`,src:\"https://framerusercontent.com/images/s89eM0ScMiL7jLrUBFB42KjmE.png\",srcSet:\"https://framerusercontent.com/images/s89eM0ScMiL7jLrUBFB42KjmE.png?scale-down-to=1024 768w,https://framerusercontent.com/images/s89eM0ScMiL7jLrUBFB42KjmE.png?scale-down-to=2048 1536w,https://framerusercontent.com/images/s89eM0ScMiL7jLrUBFB42KjmE.png 1543w\"}},vIlonMz6f:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+800+0+60+80+529.4+821.3333333333334-424),pixelHeight:2057,pixelWidth:1543,sizes:\"427px\",src:\"https://framerusercontent.com/images/s89eM0ScMiL7jLrUBFB42KjmE.png\",srcSet:\"https://framerusercontent.com/images/s89eM0ScMiL7jLrUBFB42KjmE.png?scale-down-to=1024 768w,https://framerusercontent.com/images/s89eM0ScMiL7jLrUBFB42KjmE.png?scale-down-to=2048 1536w,https://framerusercontent.com/images/s89eM0ScMiL7jLrUBFB42KjmE.png 1543w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1e3+0+60+80+608-285),pixelHeight:2057,pixelWidth:1543,sizes:\"287px\",src:\"https://framerusercontent.com/images/s89eM0ScMiL7jLrUBFB42KjmE.png\",srcSet:\"https://framerusercontent.com/images/s89eM0ScMiL7jLrUBFB42KjmE.png?scale-down-to=1024 768w,https://framerusercontent.com/images/s89eM0ScMiL7jLrUBFB42KjmE.png?scale-down-to=2048 1536w,https://framerusercontent.com/images/s89eM0ScMiL7jLrUBFB42KjmE.png 1543w\"},className:\"framer-1nv8dq8\",\"data-framer-name\":\"small\"})})]})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1lukcmt\",\"data-framer-name\":\"Recommended by\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hq0q4d\",\"data-framer-name\":\"content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-ktv0v1\",\"data-styles-preset\":\"liPOOyzV7\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-3e7dfb49-add8-4346-b9ae-9efcda94326a, rgb(202, 204, 207))\"},children:\"Recommended by\"})}),className:\"framer-kbbs7v\",\"data-framer-name\":\"READ BY PROFESSIONALS WORKING AT:\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation7,className:\"framer-1nitc2o-container\",\"data-framer-appear-id\":\"1nitc2o\",initial:animation8,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{amtdxzT7Y:{gap:10}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:0,overflow:false},gap:80,height:\"100%\",hoverFactor:1,id:\"hmdAwBUFq\",layoutId:\"hmdAwBUFq\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:25,intrinsicWidth:116,pixelHeight:41,pixelWidth:140,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/lt76srIAhJNmQba1Q9FjFGLdCAc.png\"},className:\"framer-bmmorx\",\"data-framer-name\":\"client logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:37,intrinsicWidth:116,pixelHeight:41,pixelWidth:104,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/xCtgMiovmdMA6phhZIeHwHIoNo.png\"},className:\"framer-1gpooa4\",\"data-framer-name\":\"client logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:29,intrinsicWidth:118,pixelHeight:25,pixelWidth:162,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/6q1AsSI3g17WoeH0auArRig3GPg.png\"},className:\"framer-1nsv0ij\",\"data-framer-name\":\"client logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:39,intrinsicWidth:116,pixelHeight:40,pixelWidth:109,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/bgWHTkhEJ0tlY9E2OghUBRZ4y8.png\"},className:\"framer-1unddym\",\"data-framer-name\":\"client logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:31,intrinsicWidth:116,pixelHeight:34,pixelWidth:109,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/c1ujPFaEillK59xNDVdgJjcX5aw.png\"},className:\"framer-197xhfh\",\"data-framer-name\":\"client logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:39,intrinsicWidth:133,pixelHeight:37,pixelWidth:118,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/YxecEbZsiJ7IGi2K1bpTMSsR0.png\"},className:\"framer-i184n8\",\"data-framer-name\":\"client logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:39,intrinsicWidth:133,pixelHeight:40,pixelWidth:210,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Ujzucy2nPsMxwoeK5JlUbQEa2RU.svg\"},className:\"framer-rhsqux\",\"data-framer-name\":\"client logo\"})],speed:50,style:{height:\"100%\",maxHeight:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-17pg4aj\",\"data-framer-name\":\"services\",id:elementId,ref:ref2,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v5s15y\",\"data-framer-name\":\"top\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"M4GRN4nmN\"},implicitPathVariables:undefined},{href:{webPageId:\"M4GRN4nmN\"},implicitPathVariables:undefined},{href:{webPageId:\"M4GRN4nmN\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{amtdxzT7Y:{width:`min(${componentViewport?.width||\"100vw\"} * 0.94, 1170px)`,y:(componentViewport?.y||0)+0+700+0+1798.7333333333333+80+0+0+0},vIlonMz6f:{width:`calc(min(${componentViewport?.width||\"100vw\"} * 0.9605, 1170px) * 0.48)`,y:(componentViewport?.y||0)+0+800+0+1828.7333333333333+80+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:752,width:\"470px\",y:(componentViewport?.y||0)+0+1e3+0+1086+80+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1qe595d-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{amtdxzT7Y:{q01hRsVO1:resolvedLinks2[2],variant:\"AhbAqnNwl\"},vIlonMz6f:{q01hRsVO1:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(ServicePoirtrait,{DGcJgGRcH:addImageAlt({src:\"https://framerusercontent.com/images/bz995TGIWxyLj5USAP3bCZwDvg.png\",srcSet:\"https://framerusercontent.com/images/bz995TGIWxyLj5USAP3bCZwDvg.png?scale-down-to=1024 768w,https://framerusercontent.com/images/bz995TGIWxyLj5USAP3bCZwDvg.png?scale-down-to=2048 1536w,https://framerusercontent.com/images/bz995TGIWxyLj5USAP3bCZwDvg.png 1625w\"},\"\"),height:\"100%\",id:\"W5Wq_iHzY\",layoutId:\"W5Wq_iHzY\",nXQyDsERq:\"At The Reign Hall, we offer three unique spaces designed to host a variety of gatherings, each with its own charm and capacity to meet the needs of your event.\",q01hRsVO1:resolvedLinks2[0],style:{width:\"100%\"},variant:\"OrAgGyyEn\",wGHX9YDyA:\"Event Spaces\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"X4nrFoeKh\"},implicitPathVariables:undefined},{href:{webPageId:\"X4nrFoeKh\"},implicitPathVariables:undefined},{href:{webPageId:\"X4nrFoeKh\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{amtdxzT7Y:{width:`min(${componentViewport?.width||\"100vw\"} * 0.94, 1170px)`,y:(componentViewport?.y||0)+0+700+0+1798.7333333333333+80+0+0+782},vIlonMz6f:{width:`calc(min(${componentViewport?.width||\"100vw\"} * 0.9605, 1170px) * 0.48)`,y:(componentViewport?.y||0)+0+800+0+1828.7333333333333+80+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:562,width:\"568px\",y:(componentViewport?.y||0)+0+1e3+0+1086+80+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1u0s8uz-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{amtdxzT7Y:{c5OSoIMWX:resolvedLinks3[2]},vIlonMz6f:{c5OSoIMWX:resolvedLinks3[1],leXyi8tNy:\"Enjoy hassle-free events at The Reign Hall with our spacious, complimentary on-site parking. Plenty of room for all your guests\u2014making arrival easy and convenient!\"}},children:/*#__PURE__*/_jsx(ServiceLandscape,{c5OSoIMWX:resolvedLinks3[0],height:\"100%\",id:\"sRBkewQJY\",layoutId:\"sRBkewQJY\",leXyi8tNy:\"Explore expert tips, inspiring stories, and behind-the-scenes insights from The Reign Hall. From hosting the perfect celebration to creating impactful corporate gatherings, we\u2019re here to elevate your event experience.\",mo4vSJAxl:addImageAlt({src:\"https://framerusercontent.com/images/6hr57f3X8WJPnVbdtiCKPr1uIOQ.png\",srcSet:\"https://framerusercontent.com/images/6hr57f3X8WJPnVbdtiCKPr1uIOQ.png?scale-down-to=1024 682w,https://framerusercontent.com/images/6hr57f3X8WJPnVbdtiCKPr1uIOQ.png?scale-down-to=2048 1365w,https://framerusercontent.com/images/6hr57f3X8WJPnVbdtiCKPr1uIOQ.png 1500w\"},\"\"),QhtsKq919:\"Your Guide to Elegance\",style:{width:\"100%\"},width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yjjvjj\",\"data-framer-name\":\"bottom\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"WPVEaNlqz\"},implicitPathVariables:undefined},{href:{webPageId:\"WPVEaNlqz\"},implicitPathVariables:undefined},{href:{webPageId:\"WPVEaNlqz\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{amtdxzT7Y:{width:`min(${componentViewport?.width||\"100vw\"} * 0.94, 1170px)`,y:(componentViewport?.y||0)+0+700+0+1798.7333333333333+80+1354+0+0},vIlonMz6f:{width:`calc(min(${componentViewport?.width||\"100vw\"} * 0.9605, 1170px) * 0.48)`,y:(componentViewport?.y||0)+0+800+0+1828.7333333333333+80+762+0+190}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:562,width:\"568px\",y:(componentViewport?.y||0)+0+1e3+0+1086+80+762+0+190,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1wewxqx-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{amtdxzT7Y:{c5OSoIMWX:resolvedLinks4[2]},vIlonMz6f:{c5OSoIMWX:resolvedLinks4[1]}},children:/*#__PURE__*/_jsx(ServiceLandscape,{c5OSoIMWX:resolvedLinks4[0],height:\"100%\",id:\"GZwB24oxC\",layoutId:\"GZwB24oxC\",leXyi8tNy:\"Weddings. Corporate Events. Recitals. Cultural Events. Parties. \\nWorkshop/Seminars. Award Ceremonies. \",mo4vSJAxl:addImageAlt({src:\"https://framerusercontent.com/images/WVts9DBnwrTi82JuYPuRFKoqcNE.jpg\",srcSet:\"https://framerusercontent.com/images/WVts9DBnwrTi82JuYPuRFKoqcNE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/WVts9DBnwrTi82JuYPuRFKoqcNE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/WVts9DBnwrTi82JuYPuRFKoqcNE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/WVts9DBnwrTi82JuYPuRFKoqcNE.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/WVts9DBnwrTi82JuYPuRFKoqcNE.jpg 6000w\"},\"\"),QhtsKq919:\"Event Types\",style:{width:\"100%\"},width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"UMF9MfuGj\"},implicitPathVariables:undefined},{href:{webPageId:\"UMF9MfuGj\"},implicitPathVariables:undefined},{href:{webPageId:\"UMF9MfuGj\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{amtdxzT7Y:{width:`min(${componentViewport?.width||\"100vw\"} * 0.94, 1170px)`,y:(componentViewport?.y||0)+0+700+0+1798.7333333333333+80+1354+0+592},vIlonMz6f:{width:`calc(min(${componentViewport?.width||\"100vw\"} * 0.9605, 1170px) * 0.48)`,y:(componentViewport?.y||0)+0+800+0+1828.7333333333333+80+762+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:752,width:\"470px\",y:(componentViewport?.y||0)+0+1e3+0+1086+80+762+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-nn2neo-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{amtdxzT7Y:{q01hRsVO1:resolvedLinks5[2],variant:\"AhbAqnNwl\"},vIlonMz6f:{nXQyDsERq:\"Carefully luxury rooms designed for\\xa0your comfort\",q01hRsVO1:resolvedLinks5[1]}},children:/*#__PURE__*/_jsx(ServicePoirtrait,{DGcJgGRcH:addImageAlt({src:\"https://framerusercontent.com/images/KjbEbYxQK7MNNvpF2vRANj2FRI.png\",srcSet:\"https://framerusercontent.com/images/KjbEbYxQK7MNNvpF2vRANj2FRI.png?scale-down-to=512 512w,https://framerusercontent.com/images/KjbEbYxQK7MNNvpF2vRANj2FRI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/KjbEbYxQK7MNNvpF2vRANj2FRI.png 1921w\"},\"\"),height:\"100%\",id:\"pMA2FW5jn\",layoutId:\"pMA2FW5jn\",nXQyDsERq:\"Book now and enjoy exclusive rates for your next unforgettable event at The Reign Hall!\",q01hRsVO1:resolvedLinks5[0],style:{width:\"100%\"},variant:\"OrAgGyyEn\",wGHX9YDyA:\"Latest Offers\",width:\"100%\"})})})})})})]})]}),/*#__PURE__*/_jsxs(MotionSectionWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-3s7kaz\",\"data-framer-name\":\"gallery\",id:elementId1,ref:ref3,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sfw47v\",\"data-framer-name\":\"left\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{amtdxzT7Y:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+700+0+4656.733333333334+0+0+0+288.2),pixelHeight:4199,pixelWidth:2904,positionX:\"center\",positionY:\"center\",sizes:\"134px\",src:\"https://framerusercontent.com/images/Ce0CPu88dQ3aIIkNlhBMUebw.png\",srcSet:\"https://framerusercontent.com/images/Ce0CPu88dQ3aIIkNlhBMUebw.png?scale-down-to=1024 708w,https://framerusercontent.com/images/Ce0CPu88dQ3aIIkNlhBMUebw.png?scale-down-to=2048 1416w,https://framerusercontent.com/images/Ce0CPu88dQ3aIIkNlhBMUebw.png?scale-down-to=4096 2832w,https://framerusercontent.com/images/Ce0CPu88dQ3aIIkNlhBMUebw.png 2904w\"}},vIlonMz6f:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+800+0+3502.7333333333336+0+0+288.2),pixelHeight:4199,pixelWidth:2904,positionX:\"center\",positionY:\"center\",sizes:\"134px\",src:\"https://framerusercontent.com/images/Ce0CPu88dQ3aIIkNlhBMUebw.png\",srcSet:\"https://framerusercontent.com/images/Ce0CPu88dQ3aIIkNlhBMUebw.png?scale-down-to=1024 708w,https://framerusercontent.com/images/Ce0CPu88dQ3aIIkNlhBMUebw.png?scale-down-to=2048 1416w,https://framerusercontent.com/images/Ce0CPu88dQ3aIIkNlhBMUebw.png?scale-down-to=4096 2832w,https://framerusercontent.com/images/Ce0CPu88dQ3aIIkNlhBMUebw.png 2904w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1e3+0+2760+0+0+388.2),pixelHeight:4199,pixelWidth:2904,positionX:\"center\",positionY:\"center\",sizes:\"134px\",src:\"https://framerusercontent.com/images/Ce0CPu88dQ3aIIkNlhBMUebw.png\",srcSet:\"https://framerusercontent.com/images/Ce0CPu88dQ3aIIkNlhBMUebw.png?scale-down-to=1024 708w,https://framerusercontent.com/images/Ce0CPu88dQ3aIIkNlhBMUebw.png?scale-down-to=2048 1416w,https://framerusercontent.com/images/Ce0CPu88dQ3aIIkNlhBMUebw.png?scale-down-to=4096 2832w,https://framerusercontent.com/images/Ce0CPu88dQ3aIIkNlhBMUebw.png 2904w\"},className:\"framer-nqf3gb\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-a0vjrw\",\"data-styles-preset\":\"ljmMcjGRc\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4f0d248b-dffe-4cf2-8c35-09b2f177ee52, rgb(92, 90, 83))\"},children:\"The Reign Hall was born from a vision to blend luxury with true professionalism & excellence.\"})}),className:\"framer-1okcjns\",\"data-framer-name\":\"At Chateau Hotel, everything works in mysterious & perfect harmony, elevating each stay to a remarkable\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-g3yfa8-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:5,height:\"100%\",id:\"FTz5eshO1\",intervalControl:4,itemAmount:1,layoutId:\"FTz5eshO1\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1125,pixelWidth:1500,sizes:\"800px\",src:\"https://framerusercontent.com/images/NwMDb0lMYAGtYz05JWVP0XFlAc.png\",srcSet:\"https://framerusercontent.com/images/NwMDb0lMYAGtYz05JWVP0XFlAc.png?scale-down-to=512 512w,https://framerusercontent.com/images/NwMDb0lMYAGtYz05JWVP0XFlAc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NwMDb0lMYAGtYz05JWVP0XFlAc.png 1500w\"},className:\"framer-z8wuyt\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1484,pixelWidth:1979,sizes:\"800px\",src:\"https://framerusercontent.com/images/HylROU8WmMCaNWKzTixn9Y2eI.png\",srcSet:\"https://framerusercontent.com/images/HylROU8WmMCaNWKzTixn9Y2eI.png?scale-down-to=512 512w,https://framerusercontent.com/images/HylROU8WmMCaNWKzTixn9Y2eI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HylROU8WmMCaNWKzTixn9Y2eI.png 1979w\"},className:\"framer-2jr2ni\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1125,pixelWidth:1500,sizes:\"800px\",src:\"https://framerusercontent.com/images/i2fLJQTiLFPROjhyPBqEbnEBTA.png\",srcSet:\"https://framerusercontent.com/images/i2fLJQTiLFPROjhyPBqEbnEBTA.png?scale-down-to=512 512w,https://framerusercontent.com/images/i2fLJQTiLFPROjhyPBqEbnEBTA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/i2fLJQTiLFPROjhyPBqEbnEBTA.png 1500w\"},className:\"framer-kmw0g7\",\"data-framer-name\":\"image\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{bounce:.2,delay:0,duration:.5,type:\"spring\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(MotionSectionWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-42ko1z\",\"data-framer-name\":\"amenities\",id:elementId2,ref:ref4,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-tqygyk-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:5,height:\"100%\",id:\"oS9d1W6Qi\",intervalControl:4,itemAmount:1,layoutId:\"oS9d1W6Qi\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:791,pixelWidth:1500,sizes:\"800px\",src:\"https://framerusercontent.com/images/0lptsXsZQt6bzEKfwIFFWQ0OGUM.png\",srcSet:\"https://framerusercontent.com/images/0lptsXsZQt6bzEKfwIFFWQ0OGUM.png?scale-down-to=512 512w,https://framerusercontent.com/images/0lptsXsZQt6bzEKfwIFFWQ0OGUM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0lptsXsZQt6bzEKfwIFFWQ0OGUM.png 1500w\"},className:\"framer-1kfz6va\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2246,pixelWidth:1500,sizes:\"800px\",src:\"https://framerusercontent.com/images/gAg2R2f8URstX60q5d08xi15Ty8.png\",srcSet:\"https://framerusercontent.com/images/gAg2R2f8URstX60q5d08xi15Ty8.png?scale-down-to=1024 683w,https://framerusercontent.com/images/gAg2R2f8URstX60q5d08xi15Ty8.png?scale-down-to=2048 1367w,https://framerusercontent.com/images/gAg2R2f8URstX60q5d08xi15Ty8.png 1500w\"},className:\"framer-13mh3rh\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2250,pixelWidth:1500,sizes:\"800px\",src:\"https://framerusercontent.com/images/6hr57f3X8WJPnVbdtiCKPr1uIOQ.png\",srcSet:\"https://framerusercontent.com/images/6hr57f3X8WJPnVbdtiCKPr1uIOQ.png?scale-down-to=1024 682w,https://framerusercontent.com/images/6hr57f3X8WJPnVbdtiCKPr1uIOQ.png?scale-down-to=2048 1365w,https://framerusercontent.com/images/6hr57f3X8WJPnVbdtiCKPr1uIOQ.png 1500w\"},className:\"framer-sc006a\",\"data-framer-name\":\"image\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{bounce:.2,delay:0,duration:.5,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2vh9eb\",\"data-framer-name\":\"left\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-5tynd3\",\"data-framer-name\":\"content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bo5v55\",\"data-framer-name\":\"header\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-ktv0v1\",\"data-styles-preset\":\"liPOOyzV7\",style:{\"--framer-text-alignment\":\"center\"},children:\"Reasons you'll love hosting with us\"})}),className:\"framer-qahwen\",\"data-framer-name\":\"Reason you'll love staying with us\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1u3pz5v\",\"data-styles-preset\":\"kijJLQmPV\",style:{\"--framer-text-alignment\":\"center\"},children:\"Your event, Our passion.\"})}),className:\"framer-1ebrel6\",\"data-framer-name\":\"We make our hotel your home.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cmv203\",\"data-framer-name\":\"listing\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{amtdxzT7Y:{width:`max((${componentViewport?.width||\"100vw\"} - 60px) / 3, 50px)`,y:(componentViewport?.y||0)+0+700+0+6256.733333333334+0+0+0+126.60000000000002+0+0+0+116.8+0+0},vIlonMz6f:{width:`max((max(${componentViewport?.width||\"100vw\"} / 2, 1px) * 0.8 - 60px) / 3, 50px)`,y:(componentViewport?.y||0)+0+800+0+4302.733333333334+0+0+96.60000000000002+0+0+0+116.8+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,width:\"130px\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation9,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref4,target:\"animate\"}],__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1xfzx7f-container\",children:/*#__PURE__*/_jsx(Amenities,{Brug2gFQc:addImageAlt({src:\"https://framerusercontent.com/images/LcqIPp7zB68v69RokU21rK07vE.png\"},\"\"),gqMTfgjIe:\"FLEXIBLE SEATING\",height:\"100%\",id:\"eUTzW6Wje\",layoutId:\"eUTzW6Wje\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{amtdxzT7Y:{width:`max((${componentViewport?.width||\"100vw\"} - 60px) / 3, 50px)`,y:(componentViewport?.y||0)+0+700+0+6256.733333333334+0+0+0+126.60000000000002+0+0+0+116.8+0+0},vIlonMz6f:{width:`max((max(${componentViewport?.width||\"100vw\"} / 2, 1px) * 0.8 - 60px) / 3, 50px)`,y:(componentViewport?.y||0)+0+800+0+4302.733333333334+0+0+96.60000000000002+0+0+0+116.8+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,width:\"130px\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation9,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref4,target:\"animate\"}],__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-12tcp4u-container\",children:/*#__PURE__*/_jsx(Amenities,{Brug2gFQc:addImageAlt({src:\"https://framerusercontent.com/images/hHbuYhe4fg6U93wS8pthozVHj0.png\"},\"\"),gqMTfgjIe:\"LED WALL\",height:\"100%\",id:\"K_OGcI0Nd\",layoutId:\"K_OGcI0Nd\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{amtdxzT7Y:{width:`max((${componentViewport?.width||\"100vw\"} - 60px) / 3, 50px)`,y:(componentViewport?.y||0)+0+700+0+6256.733333333334+0+0+0+126.60000000000002+0+0+0+116.8+0+0},vIlonMz6f:{width:`max((max(${componentViewport?.width||\"100vw\"} / 2, 1px) * 0.8 - 60px) / 3, 50px)`,y:(componentViewport?.y||0)+0+800+0+4302.733333333334+0+0+96.60000000000002+0+0+0+116.8+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,width:\"130px\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation9,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref4,target:\"animate\"}],__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-avd9r9-container\",children:/*#__PURE__*/_jsx(Amenities,{Brug2gFQc:addImageAlt({src:\"https://framerusercontent.com/images/ldSNe44cWT70du7gSvMcQ6ANCHo.png\"},\"\"),gqMTfgjIe:\"CAR PARKING\",height:\"100%\",id:\"ptqAcwRJi\",layoutId:\"ptqAcwRJi\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{amtdxzT7Y:{width:`max((${componentViewport?.width||\"100vw\"} - 60px) / 3, 50px)`,y:(componentViewport?.y||0)+0+700+0+6256.733333333334+0+0+0+126.60000000000002+0+0+0+116.8+0+110},vIlonMz6f:{width:`max((max(${componentViewport?.width||\"100vw\"} / 2, 1px) * 0.8 - 60px) / 3, 50px)`,y:(componentViewport?.y||0)+0+800+0+4302.733333333334+0+0+96.60000000000002+0+0+0+116.8+0+130}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,width:\"130px\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation9,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref4,target:\"animate\"}],__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-9xhuyh-container\",children:/*#__PURE__*/_jsx(Amenities,{Brug2gFQc:addImageAlt({src:\"https://framerusercontent.com/images/F7g3ArBpFiku8DBYGXh9O9prf5s.png\"},\"\"),gqMTfgjIe:\"PRO LIGHTING\",height:\"100%\",id:\"FBXorQiT0\",layoutId:\"FBXorQiT0\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{amtdxzT7Y:{width:`max((${componentViewport?.width||\"100vw\"} - 60px) / 3, 50px)`,y:(componentViewport?.y||0)+0+700+0+6256.733333333334+0+0+0+126.60000000000002+0+0+0+116.8+0+110},vIlonMz6f:{width:`max((max(${componentViewport?.width||\"100vw\"} / 2, 1px) * 0.8 - 60px) / 3, 50px)`,y:(componentViewport?.y||0)+0+800+0+4302.733333333334+0+0+96.60000000000002+0+0+0+116.8+0+130}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,width:\"130px\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation9,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref4,target:\"animate\"}],__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-180144h-container\",children:/*#__PURE__*/_jsx(Amenities,{Brug2gFQc:addImageAlt({src:\"https://framerusercontent.com/images/tVwt2aNR68lDQ8w4qImSscAilNU.png\"},\"\"),gqMTfgjIe:\"HD PROJECTOR\",height:\"100%\",id:\"yEbNosze0\",layoutId:\"yEbNosze0\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{amtdxzT7Y:{width:`max((${componentViewport?.width||\"100vw\"} - 60px) / 3, 50px)`,y:(componentViewport?.y||0)+0+700+0+6256.733333333334+0+0+0+126.60000000000002+0+0+0+116.8+0+110},vIlonMz6f:{width:`max((max(${componentViewport?.width||\"100vw\"} / 2, 1px) * 0.8 - 60px) / 3, 50px)`,y:(componentViewport?.y||0)+0+800+0+4302.733333333334+0+0+96.60000000000002+0+0+0+116.8+0+130}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,width:\"130px\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation9,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref4,target:\"animate\"}],__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ohazn6-container\",children:/*#__PURE__*/_jsx(Amenities,{Brug2gFQc:addImageAlt({src:\"https://framerusercontent.com/images/kHLqpTPePdQ8V5moMOQD7ELA.png\"},\"\"),gqMTfgjIe:\"REFRIDGERATOR\",height:\"100%\",id:\"W_U2MQSos\",layoutId:\"W_U2MQSos\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{amtdxzT7Y:{width:`max((${componentViewport?.width||\"100vw\"} - 60px) / 3, 50px)`,y:(componentViewport?.y||0)+0+700+0+6256.733333333334+0+0+0+126.60000000000002+0+0+0+116.8+0+220},vIlonMz6f:{width:`max((max(${componentViewport?.width||\"100vw\"} / 2, 1px) * 0.8 - 60px) / 3, 50px)`,y:(componentViewport?.y||0)+0+800+0+4302.733333333334+0+0+96.60000000000002+0+0+0+116.8+0+260}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,width:\"130px\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation9,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref4,target:\"animate\"}],__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-xynlhk-container\",children:/*#__PURE__*/_jsx(Amenities,{Brug2gFQc:addImageAlt({src:\"https://framerusercontent.com/images/jxId7MChL7P5Cz0zPo5w9f13Z5M.png\"},\"\"),gqMTfgjIe:\"SECURE LOCATION\",height:\"100%\",id:\"Ht6cQmwCh\",layoutId:\"Ht6cQmwCh\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{amtdxzT7Y:{width:`max((${componentViewport?.width||\"100vw\"} - 60px) / 3, 50px)`,y:(componentViewport?.y||0)+0+700+0+6256.733333333334+0+0+0+126.60000000000002+0+0+0+116.8+0+220},vIlonMz6f:{width:`max((max(${componentViewport?.width||\"100vw\"} / 2, 1px) * 0.8 - 60px) / 3, 50px)`,y:(componentViewport?.y||0)+0+800+0+4302.733333333334+0+0+96.60000000000002+0+0+0+116.8+0+260}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,width:\"130px\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition14},__framer__animateOnce:true,__framer__enter:animation9,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref4,target:\"animate\"}],__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-108ac3e-container\",children:/*#__PURE__*/_jsx(Amenities,{Brug2gFQc:addImageAlt({src:\"https://framerusercontent.com/images/tdtAJ5rVXTVXo6nD3P4zG1g1hQ.png\"},\"\"),gqMTfgjIe:\"WIFI\",height:\"100%\",id:\"uZseHzWy2\",layoutId:\"uZseHzWy2\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{amtdxzT7Y:{width:`max((${componentViewport?.width||\"100vw\"} - 60px) / 3, 50px)`,y:(componentViewport?.y||0)+0+700+0+6256.733333333334+0+0+0+126.60000000000002+0+0+0+116.8+0+220},vIlonMz6f:{width:`max((max(${componentViewport?.width||\"100vw\"} / 2, 1px) * 0.8 - 60px) / 3, 50px)`,y:(componentViewport?.y||0)+0+800+0+4302.733333333334+0+0+96.60000000000002+0+0+0+116.8+0+260}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,width:\"130px\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition15},__framer__animateOnce:true,__framer__enter:animation9,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref4,target:\"animate\"}],__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-s9e91n-container\",children:/*#__PURE__*/_jsx(Amenities,{Brug2gFQc:addImageAlt({src:\"https://framerusercontent.com/images/0RMnYeBnL0k43hZME7RJ7C3vZA.png\"},\"\"),gqMTfgjIe:\"HI-DEF SOUND\",height:\"100%\",id:\"x6YBk2Nau\",layoutId:\"x6YBk2Nau\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{amtdxzT7Y:{width:`max((${componentViewport?.width||\"100vw\"} - 60px) / 3, 50px)`,y:(componentViewport?.y||0)+0+700+0+6256.733333333334+0+0+0+126.60000000000002+0+0+0+116.8+0+330},vIlonMz6f:{width:`max((max(${componentViewport?.width||\"100vw\"} / 2, 1px) * 0.8 - 60px) / 3, 50px)`,y:(componentViewport?.y||0)+0+800+0+4302.733333333334+0+0+96.60000000000002+0+0+0+116.8+0+390}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,width:\"130px\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition16},__framer__animateOnce:true,__framer__enter:animation9,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref4,target:\"animate\"}],__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ryau0m-container\",children:/*#__PURE__*/_jsx(Amenities,{Brug2gFQc:addImageAlt({src:\"https://framerusercontent.com/images/9paBie3GcPPNVXx0Mh9vxbdZPcA.png\"},\"\"),gqMTfgjIe:\"GREEN ROOM\",height:\"100%\",id:\"wLi_rHrp_\",layoutId:\"wLi_rHrp_\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{amtdxzT7Y:{width:`max((${componentViewport?.width||\"100vw\"} - 60px) / 3, 50px)`,y:(componentViewport?.y||0)+0+700+0+6256.733333333334+0+0+0+126.60000000000002+0+0+0+116.8+0+330},vIlonMz6f:{width:`max((max(${componentViewport?.width||\"100vw\"} / 2, 1px) * 0.8 - 60px) / 3, 50px)`,y:(componentViewport?.y||0)+0+800+0+4302.733333333334+0+0+96.60000000000002+0+0+0+116.8+0+390}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,width:\"130px\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition17},__framer__animateOnce:true,__framer__enter:animation9,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref4,target:\"animate\"}],__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-jqjwap-container\",children:/*#__PURE__*/_jsx(Amenities,{Brug2gFQc:addImageAlt({src:\"https://framerusercontent.com/images/NboZaculyaoq2jKwlqAXjSOPbE.png\"},\"\"),gqMTfgjIe:\"ACCESIBILITY\",height:\"100%\",id:\"sJSAuBOpj\",layoutId:\"sJSAuBOpj\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{amtdxzT7Y:{width:`max((${componentViewport?.width||\"100vw\"} - 60px) / 3, 50px)`,y:(componentViewport?.y||0)+0+700+0+6256.733333333334+0+0+0+126.60000000000002+0+0+0+116.8+0+330},vIlonMz6f:{width:`max((max(${componentViewport?.width||\"100vw\"} / 2, 1px) * 0.8 - 60px) / 3, 50px)`,y:(componentViewport?.y||0)+0+800+0+4302.733333333334+0+0+96.60000000000002+0+0+0+116.8+0+390}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,width:\"130px\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition18},__framer__animateOnce:true,__framer__enter:animation9,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref4,target:\"animate\"}],__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-jj93h1-container\",children:/*#__PURE__*/_jsx(Amenities,{Brug2gFQc:addImageAlt({src:\"https://framerusercontent.com/images/iAOtJp8ZvI9YTVybkeutBO9eI.png\"},\"\"),gqMTfgjIe:\"COMMITTED STAFF\",height:\"100%\",id:\"vkAhtyWPo\",layoutId:\"vkAhtyWPo\",style:{width:\"100%\"},width:\"100%\"})})})})]})]})})})]}),/*#__PURE__*/_jsxs(MotionSectionWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1n8y1sq\",\"data-framer-name\":\"offer\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16ro0p8\",\"data-framer-name\":\"left\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wfy65i\",\"data-framer-name\":\"top\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1j4powc\",\"data-styles-preset\":\"E61ePppjL\",children:\"Premium Venue for all your event needs\"})}),className:\"framer-1v1j5nq\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15wei3n\",\"data-styles-preset\":\"tEdgefO23\",children:\"At The Reign Hall, we offer three distinct event spaces to suit your needs. Our grandest hall comfortably accommodates 150-170 guests with round tables, or up to 400 in a concert-style arrangement. The second hall is perfect for more intimate gatherings, seating 70-100 people. Lastly, our elegant foyer provides a welcoming space for up to 100 guests. Each venue is designed to create an unforgettable experience tailored to your event.\"})}),className:\"framer-14zguw7\",\"data-framer-name\":\"Choose from 11 enchanting venues, ranging from the pristine white sand of Playa Cayo Levantado,Olah beach and the Olah Beach Club to the intimate Yubarta spiritual alcove, Santa Yuca restaurant, or the exclusive Signature Villa. Each venue offers its own unique charm and ambiance, perfect for exchanging your vows and celebrating your love in perfect harmony with nature.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"bIl4Wl_jz\"},implicitPathVariables:undefined},{href:{webPageId:\"bIl4Wl_jz\"},implicitPathVariables:undefined},{href:{webPageId:\"bIl4Wl_jz\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{amtdxzT7Y:{y:(componentViewport?.y||0)+0+700+0+7856.733333333334+80+0+0+0+0+225.2},vIlonMz6f:{y:(componentViewport?.y||0)+0+800+0+5102.733333333334+80+0+0+0+225.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:43,y:(componentViewport?.y||0)+0+1e3+0+4760+80+0+0+0+225.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-zazbw-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{amtdxzT7Y:{qyTackNTU:resolvedLinks6[2]},vIlonMz6f:{qyTackNTU:resolvedLinks6[1]}},children:/*#__PURE__*/_jsx(ButtonSecondary,{height:\"100%\",id:\"g2ZRcHnJ5\",layoutId:\"g2ZRcHnJ5\",qyTackNTU:resolvedLinks6[0],Re3j1imCb:\"BOOK YOUR EVENT\",width:\"100%\"})})})})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vIlonMz6f:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+800+0+5102.733333333334+80+0+308.2),pixelHeight:1125,pixelWidth:1500,sizes:`calc(min(${componentViewport?.width||\"100vw\"} * 0.96, 1170px) * 0.48)`,src:\"https://framerusercontent.com/images/wFoUlQ1k2ogQ9YltDmv1Ghp7CXE.png\",srcSet:\"https://framerusercontent.com/images/wFoUlQ1k2ogQ9YltDmv1Ghp7CXE.png?scale-down-to=512 512w,https://framerusercontent.com/images/wFoUlQ1k2ogQ9YltDmv1Ghp7CXE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wFoUlQ1k2ogQ9YltDmv1Ghp7CXE.png 1500w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1e3+0+4760+80+0+348.2),pixelHeight:1125,pixelWidth:1500,sizes:\"500px\",src:\"https://framerusercontent.com/images/wFoUlQ1k2ogQ9YltDmv1Ghp7CXE.png\",srcSet:\"https://framerusercontent.com/images/wFoUlQ1k2ogQ9YltDmv1Ghp7CXE.png?scale-down-to=512 512w,https://framerusercontent.com/images/wFoUlQ1k2ogQ9YltDmv1Ghp7CXE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wFoUlQ1k2ogQ9YltDmv1Ghp7CXE.png 1500w\"},className:\"framer-1xgcf4t hidden-cw1wdb\",\"data-framer-name\":\"image\"})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{amtdxzT7Y:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+700+0+7856.733333333334+80+298.2),pixelHeight:1e3,pixelWidth:1500,sizes:`min(${componentViewport?.width||\"100vw\"} * 0.94, 1170px)`,src:\"https://framerusercontent.com/images/bhLDvb2kwXT3shtJi1bzPD4mmg.png\",srcSet:\"https://framerusercontent.com/images/bhLDvb2kwXT3shtJi1bzPD4mmg.png?scale-down-to=512 512w,https://framerusercontent.com/images/bhLDvb2kwXT3shtJi1bzPD4mmg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bhLDvb2kwXT3shtJi1bzPD4mmg.png 1500w\"}},vIlonMz6f:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+800+0+5102.733333333334+80),pixelHeight:1e3,pixelWidth:1500,sizes:`calc(min(${componentViewport?.width||\"100vw\"} * 0.96, 1170px) * 0.48)`,src:\"https://framerusercontent.com/images/bhLDvb2kwXT3shtJi1bzPD4mmg.png\",srcSet:\"https://framerusercontent.com/images/bhLDvb2kwXT3shtJi1bzPD4mmg.png?scale-down-to=512 512w,https://framerusercontent.com/images/bhLDvb2kwXT3shtJi1bzPD4mmg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bhLDvb2kwXT3shtJi1bzPD4mmg.png 1500w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1e3+0+4760+80),pixelHeight:1e3,pixelWidth:1500,sizes:\"570px\",src:\"https://framerusercontent.com/images/bhLDvb2kwXT3shtJi1bzPD4mmg.png\",srcSet:\"https://framerusercontent.com/images/bhLDvb2kwXT3shtJi1bzPD4mmg.png?scale-down-to=512 512w,https://framerusercontent.com/images/bhLDvb2kwXT3shtJi1bzPD4mmg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bhLDvb2kwXT3shtJi1bzPD4mmg.png 1500w\"},className:\"framer-19ie6hj\",\"data-framer-name\":\"image\"})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ibnnai-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"XOLb6nqVC\",intervalControl:3,itemAmount:1,layoutId:\"XOLb6nqVC\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(255, 255, 255, 0)\",dotsBlur:0,dotsFill:\"var(--token-4f0d248b-dffe-4cf2-8c35-09b2f177ee52, rgb(92, 90, 83))\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.2,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:511,width:\"1200px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-40m5ag-container\",children:/*#__PURE__*/_jsx(Quote,{fVOc4DcWy:\"cFLE4fRbh\",height:\"100%\",id:\"SAkdwourb\",layoutId:\"SAkdwourb\",Q9lTlPJS1:\"Ore & Carter, Couple\",style:{width:\"100%\"},Usp7hA8gj:'\"Choosing The Reign Hall was the best decision we made for our wedding. From the breathtaking decor to the seamless flow of the day, everything exceeded our expectations. The staff were attentive, making sure each detail was perfect and that our guests felt welcomed and pampered. It was truly a magical experience, and The Reign Hall will forever hold a special place in our hearts.\"',width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:520,width:\"1200px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qn04bq-container\",children:/*#__PURE__*/_jsx(Quote,{fVOc4DcWy:\"a5UtGj5aT\",height:\"100%\",id:\"bNxtTPu87\",layoutId:\"bNxtTPu87\",Q9lTlPJS1:\"Pastor Subuola Awoleri, Celebrant\",style:{height:\"100%\",width:\"100%\"},Usp7hA8gj:'\"Celebrating my birthday at The Reign Hall was an absolute joy. The space radiated elegance, and the team went above and beyond to create an atmosphere of warmth and sophistication. The seamless coordination and attention to detail made my day memorable not just for me, but for everyone who attended. Thank you, The Reign Hall, for making my milestone celebration unforgettable.\"',width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:520,width:\"1200px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-5xjkjc-container\",children:/*#__PURE__*/_jsx(Quote,{fVOc4DcWy:\"a5UtGj5aT\",height:\"100%\",id:\"F_chvhCIy\",layoutId:\"F_chvhCIy\",Q9lTlPJS1:\"Chioma Roberts, Guest\",style:{height:\"100%\",width:\"100%\"},Usp7hA8gj:'\"As a guest at an event hosted at The Reign Hall, I was thoroughly impressed by the venue\\'s ambiance and the quality of service. The setting was both luxurious and inviting, and every detail was carefully thought out. It\u2019s a place that truly elevates any occasion, and I look forward to returning soon!\"',width:\"100%\"})})})],startFrom:0,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{amtdxzT7Y:{width:`calc(${componentViewport?.width||\"100vw\"} * 0.94)`,y:(componentViewport?.y||0)+0+700+0+9381.933333333334},vIlonMz6f:{width:`calc(${componentViewport?.width||\"100vw\"} * 0.96)`,y:(componentViewport?.y||0)+0+800+0+6522.733333333334}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:610,width:\"1170px\",y:(componentViewport?.y||0)+0+1e3+0+6218,children:/*#__PURE__*/_jsx(Container,{className:\"framer-xk818n-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{amtdxzT7Y:{variant:\"uozAHFAgU\"},vIlonMz6f:{y6fWuokc4:30}},children:/*#__PURE__*/_jsx(Instagram,{height:\"100%\",hkuSjw5gz:addImageAlt({src:\"https://framerusercontent.com/images/SGqdElub9JKxYNPdDduvi6deVtc.png\",srcSet:\"https://framerusercontent.com/images/SGqdElub9JKxYNPdDduvi6deVtc.png?scale-down-to=512 512w,https://framerusercontent.com/images/SGqdElub9JKxYNPdDduvi6deVtc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/SGqdElub9JKxYNPdDduvi6deVtc.png 1500w\"},\"\"),id:\"UdkRLX6eJ\",Jdg5UVCcA:addImageAlt({src:\"https://framerusercontent.com/images/NwMDb0lMYAGtYz05JWVP0XFlAc.png\",srcSet:\"https://framerusercontent.com/images/NwMDb0lMYAGtYz05JWVP0XFlAc.png?scale-down-to=512 512w,https://framerusercontent.com/images/NwMDb0lMYAGtYz05JWVP0XFlAc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NwMDb0lMYAGtYz05JWVP0XFlAc.png 1500w\"},\"\"),layoutId:\"UdkRLX6eJ\",rTCh8urmv:\"https://www.instagram.com/p/C_vu0G6vzg1/?igsh=c3dreTBqOW1tM3Jo\",style:{width:\"100%\"},variant:\"Nd7tna8Kx\",width:\"100%\",y6fWuokc4:40,yatVjOErd:addImageAlt({src:\"https://framerusercontent.com/images/1BkXIHq7whiy0ZQgfwhNsqNlNs.png\",srcSet:\"https://framerusercontent.com/images/1BkXIHq7whiy0ZQgfwhNsqNlNs.png?scale-down-to=512 512w,https://framerusercontent.com/images/1BkXIHq7whiy0ZQgfwhNsqNlNs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/1BkXIHq7whiy0ZQgfwhNsqNlNs.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/1BkXIHq7whiy0ZQgfwhNsqNlNs.png 2178w\"},\"\"),zGNq7B0dI:addImageAlt({src:\"https://framerusercontent.com/images/i2fLJQTiLFPROjhyPBqEbnEBTA.png\",srcSet:\"https://framerusercontent.com/images/i2fLJQTiLFPROjhyPBqEbnEBTA.png?scale-down-to=512 512w,https://framerusercontent.com/images/i2fLJQTiLFPROjhyPBqEbnEBTA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/i2fLJQTiLFPROjhyPBqEbnEBTA.png 1500w\"},\"\")})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{amtdxzT7Y:{y:(componentViewport?.y||0)+0+10691.933333333334},vIlonMz6f:{y:(componentViewport?.y||0)+0+7932.733333333334}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:840,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+7828,children:/*#__PURE__*/_jsx(Container,{className:\"framer-wqql8l-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{amtdxzT7Y:{style:{width:\"100%\"},variant:\"xTdg44nT9\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"QL3CBkNoh\",layoutId:\"QL3CBkNoh\",style:{height:\"100%\",width:\"100%\"},variant:\"aEcqSeB7N\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Ssx3d.framer-lux5qc, .framer-Ssx3d .framer-lux5qc { display: block; }\",\".framer-Ssx3d.framer-72rtr7 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-Ssx3d .framer-sxupqi-container { flex: none; height: auto; left: 50%; position: absolute; top: 20px; transform: translateX(-50%); width: 96%; z-index: 1; }\",'.framer-Ssx3d.framer-1fj5ow5 { background-color: var(--token-4f0d248b-dffe-4cf2-8c35-09b2f177ee52, #5c5a53) /* {\"name\":\"secondary\"} */; inset: 0px; position: fixed; user-select: none; z-index: 2; }',\".framer-Ssx3d.framer-1m7iecd { cursor: pointer; flex: none; height: 30px; left: 30px; position: fixed; top: 60px; width: 30px; z-index: 2; }\",\".framer-Ssx3d.framer-1w7qflm-container { flex: none; height: 640px; left: calc(50.00000000000002% - 50% / 2); position: fixed; top: calc(50.00000000000002% - 640px / 2); width: 50%; z-index: 3; }\",\".framer-Ssx3d .framer-15j3oux { flex: none; height: 100vh; overflow: hidden; position: relative; width: 100%; }\",\".framer-Ssx3d .framer-1p2uf10 { flex: none; height: 100vh; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 100vh / 2); width: 100%; }\",\".framer-Ssx3d .framer-1hzwkf5-container { flex: none; height: 100vh; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: 0px; width: 100%; }\",\".framer-Ssx3d .framer-1ojtu5b { background-color: #52514e; flex: none; height: 100vh; left: 0px; opacity: 0.8; overflow: hidden; position: absolute; top: 0px; width: 100%; }\",\".framer-Ssx3d .framer-uxdr9z-container { bottom: 0px; flex: none; height: 60px; left: calc(50.00000000000002% - 1px / 2); position: absolute; width: 1px; }\",\".framer-Ssx3d .framer-6uszob { align-content: flex-start; align-items: flex-start; bottom: 33px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; left: 85px; overflow: visible; padding: 0px; position: absolute; width: min-content; }\",\".framer-Ssx3d .framer-j184ft-container { flex: none; height: auto; position: relative; width: 290px; }\",\".framer-Ssx3d .framer-mtaeod { align-content: center; align-items: center; bottom: 32px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; left: 30px; overflow: visible; padding: 0px; position: absolute; width: 24px; }\",\".framer-Ssx3d .framer-3iefvc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Ssx3d .framer-32yz73-container, .framer-Ssx3d .framer-euxsyr-container, .framer-Ssx3d .framer-17i6fl5-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-Ssx3d .framer-1ozgawi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 70%; z-index: 1; }\",\".framer-Ssx3d .framer-1b48ndz, .framer-Ssx3d .framer-ek8qw7, .framer-Ssx3d .framer-17cxzs9, .framer-Ssx3d .framer-1y58isf, .framer-Ssx3d .framer-1okcjns, .framer-Ssx3d .framer-qahwen, .framer-Ssx3d .framer-1ebrel6, .framer-Ssx3d .framer-1v1j5nq, .framer-Ssx3d .framer-14zguw7 { --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-Ssx3d .framer-1bsxk17 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Ssx3d .framer-6mwmz { background-color: var(--token-4f0d248b-dffe-4cf2-8c35-09b2f177ee52, #5c5a53); flex: none; height: 60px; overflow: hidden; position: relative; width: 1px; }\",\".framer-Ssx3d .framer-tnqd79 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 70px; height: min-content; justify-content: center; max-width: 1170px; overflow: visible; padding: 80px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-Ssx3d .framer-rw4nuz { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Ssx3d .framer-5t39o4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Ssx3d .framer-xeiaxh-container, .framer-Ssx3d .framer-zazbw-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-Ssx3d .framer-uj4s4h { flex: none; height: 608px; overflow: hidden; position: relative; width: 570px; }\",\".framer-Ssx3d .framer-1kg0sj4 { flex: none; height: 510px; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 453px; }\",\".framer-Ssx3d .framer-1nv8dq8 { bottom: 0px; flex: none; height: 285px; left: 283px; overflow: hidden; position: absolute; width: 287px; }\",\".framer-Ssx3d .framer-1lukcmt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 1170px; overflow: hidden; padding: 80px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-Ssx3d .framer-1hq0q4d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Ssx3d .framer-kbbs7v { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Ssx3d .framer-1nitc2o-container { flex: none; height: 50px; max-height: 100%; position: relative; width: 100%; }\",\".framer-Ssx3d .framer-bmmorx, .framer-Ssx3d .framer-1nsv0ij, .framer-Ssx3d .framer-197xhfh { aspect-ratio: 4.25 / 1; height: var(--framer-aspect-ratio-supported, 40px); position: relative; width: 170px; }\",\".framer-Ssx3d .framer-1gpooa4, .framer-Ssx3d .framer-1unddym, .framer-Ssx3d .framer-i184n8, .framer-Ssx3d .framer-rhsqux { height: 40px; position: relative; width: 170px; }\",\".framer-Ssx3d .framer-17pg4aj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 1170px; overflow: visible; padding: 80px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-Ssx3d .framer-1v5s15y { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 130px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Ssx3d .framer-1qe595d-container, .framer-Ssx3d .framer-nn2neo-container { flex: none; height: auto; position: relative; width: 470px; }\",\".framer-Ssx3d .framer-1u0s8uz-container, .framer-Ssx3d .framer-1wewxqx-container { flex: none; height: auto; position: relative; width: 568px; }\",\".framer-Ssx3d .framer-1yjjvjj { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 130px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Ssx3d .framer-3s7kaz { align-content: center; align-items: center; background-color: var(--token-a2bc71ae-ddf5-4a86-b46b-b28375e88aa3, #f7f7ee); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 100vh; justify-content: center; overflow: hidden; padding: 0px; position: sticky; top: 0px; width: 100%; will-change: transform; z-index: 1; }\",\".framer-Ssx3d .framer-sfw47v { align-content: center; align-items: center; background-color: var(--token-0725af89-4e5c-42ef-a312-879b5c9798b3, rgba(209, 173, 123, 0.5)); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 100vh; justify-content: center; overflow: visible; padding: 0px 80px 0px 80px; position: relative; width: 50%; }\",\".framer-Ssx3d .framer-nqf3gb { flex: none; height: 158px; position: relative; width: 134px; }\",\".framer-Ssx3d .framer-g3yfa8-container, .framer-Ssx3d .framer-tqygyk-container { flex: none; height: 100%; position: relative; width: 50%; }\",\".framer-Ssx3d .framer-z8wuyt, .framer-Ssx3d .framer-2jr2ni, .framer-Ssx3d .framer-kmw0g7, .framer-Ssx3d .framer-1kfz6va, .framer-Ssx3d .framer-13mh3rh, .framer-Ssx3d .framer-sc006a { aspect-ratio: 0.8 / 1; height: var(--framer-aspect-ratio-supported, 1000px); overflow: hidden; position: relative; width: 800px; }\",\".framer-Ssx3d .framer-42ko1z { align-content: center; align-items: center; background-color: var(--token-0725af89-4e5c-42ef-a312-879b5c9798b3, rgba(209, 173, 123, 0.5)); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 100vh; justify-content: center; overflow: hidden; padding: 0px; position: sticky; top: 0px; width: 100%; will-change: transform; z-index: 1; }\",\".framer-Ssx3d .framer-2vh9eb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 30px 0px 30px; position: relative; width: 50%; }\",\".framer-Ssx3d .framer-5tynd3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Ssx3d .framer-bo5v55 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Ssx3d .framer-cmv203 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Ssx3d .framer-1xfzx7f-container, .framer-Ssx3d .framer-12tcp4u-container, .framer-Ssx3d .framer-avd9r9-container, .framer-Ssx3d .framer-9xhuyh-container, .framer-Ssx3d .framer-180144h-container, .framer-Ssx3d .framer-1ohazn6-container, .framer-Ssx3d .framer-xynlhk-container, .framer-Ssx3d .framer-108ac3e-container, .framer-Ssx3d .framer-s9e91n-container, .framer-Ssx3d .framer-1ryau0m-container, .framer-Ssx3d .framer-jqjwap-container, .framer-Ssx3d .framer-jj93h1-container { flex: none; height: auto; position: relative; width: 130px; }\",\".framer-Ssx3d .framer-1n8y1sq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: flex-start; max-width: 1170px; overflow: visible; padding: 80px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-Ssx3d .framer-16ro0p8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 500px; }\",\".framer-Ssx3d .framer-wfy65i { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Ssx3d .framer-1xgcf4t { flex: none; height: 320px; overflow: hidden; position: relative; width: 100%; }\",\".framer-Ssx3d .framer-19ie6hj { flex: none; height: 698px; overflow: hidden; position: relative; width: 570px; }\",\".framer-Ssx3d .framer-ibnnai-container { flex: none; height: 600px; max-width: 1170px; position: relative; width: 100%; }\",\".framer-Ssx3d .framer-40m5ag-container { height: auto; position: relative; width: 1200px; }\",\".framer-Ssx3d .framer-1qn04bq-container, .framer-Ssx3d .framer-5xjkjc-container { height: 520px; position: relative; width: 1200px; }\",\".framer-Ssx3d .framer-xk818n-container { flex: none; height: auto; position: relative; width: 1170px; }\",\".framer-Ssx3d .framer-wqql8l-container { flex: none; height: 840px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Ssx3d.framer-72rtr7, .framer-Ssx3d .framer-6uszob, .framer-Ssx3d .framer-mtaeod, .framer-Ssx3d .framer-3iefvc, .framer-Ssx3d .framer-1ozgawi, .framer-Ssx3d .framer-1bsxk17, .framer-Ssx3d .framer-tnqd79, .framer-Ssx3d .framer-rw4nuz, .framer-Ssx3d .framer-5t39o4, .framer-Ssx3d .framer-1lukcmt, .framer-Ssx3d .framer-1hq0q4d, .framer-Ssx3d .framer-17pg4aj, .framer-Ssx3d .framer-1v5s15y, .framer-Ssx3d .framer-1yjjvjj, .framer-Ssx3d .framer-3s7kaz, .framer-Ssx3d .framer-sfw47v, .framer-Ssx3d .framer-42ko1z, .framer-Ssx3d .framer-2vh9eb, .framer-Ssx3d .framer-5tynd3, .framer-Ssx3d .framer-bo5v55, .framer-Ssx3d .framer-cmv203, .framer-Ssx3d .framer-1n8y1sq, .framer-Ssx3d .framer-16ro0p8, .framer-Ssx3d .framer-wfy65i { gap: 0px; } .framer-Ssx3d.framer-72rtr7 > *, .framer-Ssx3d .framer-1bsxk17 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Ssx3d.framer-72rtr7 > :first-child, .framer-Ssx3d .framer-6uszob > :first-child, .framer-Ssx3d .framer-mtaeod > :first-child, .framer-Ssx3d .framer-3iefvc > :first-child, .framer-Ssx3d .framer-1ozgawi > :first-child, .framer-Ssx3d .framer-1bsxk17 > :first-child, .framer-Ssx3d .framer-rw4nuz > :first-child, .framer-Ssx3d .framer-5t39o4 > :first-child, .framer-Ssx3d .framer-1lukcmt > :first-child, .framer-Ssx3d .framer-1hq0q4d > :first-child, .framer-Ssx3d .framer-17pg4aj > :first-child, .framer-Ssx3d .framer-sfw47v > :first-child, .framer-Ssx3d .framer-2vh9eb > :first-child, .framer-Ssx3d .framer-5tynd3 > :first-child, .framer-Ssx3d .framer-bo5v55 > :first-child, .framer-Ssx3d .framer-16ro0p8 > :first-child, .framer-Ssx3d .framer-wfy65i > :first-child { margin-top: 0px; } .framer-Ssx3d.framer-72rtr7 > :last-child, .framer-Ssx3d .framer-6uszob > :last-child, .framer-Ssx3d .framer-mtaeod > :last-child, .framer-Ssx3d .framer-3iefvc > :last-child, .framer-Ssx3d .framer-1ozgawi > :last-child, .framer-Ssx3d .framer-1bsxk17 > :last-child, .framer-Ssx3d .framer-rw4nuz > :last-child, .framer-Ssx3d .framer-5t39o4 > :last-child, .framer-Ssx3d .framer-1lukcmt > :last-child, .framer-Ssx3d .framer-1hq0q4d > :last-child, .framer-Ssx3d .framer-17pg4aj > :last-child, .framer-Ssx3d .framer-sfw47v > :last-child, .framer-Ssx3d .framer-2vh9eb > :last-child, .framer-Ssx3d .framer-5tynd3 > :last-child, .framer-Ssx3d .framer-bo5v55 > :last-child, .framer-Ssx3d .framer-16ro0p8 > :last-child, .framer-Ssx3d .framer-wfy65i > :last-child { margin-bottom: 0px; } .framer-Ssx3d .framer-6uszob > *, .framer-Ssx3d .framer-5t39o4 > *, .framer-Ssx3d .framer-17pg4aj > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Ssx3d .framer-mtaeod > *, .framer-Ssx3d .framer-3iefvc > *, .framer-Ssx3d .framer-rw4nuz > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-Ssx3d .framer-1ozgawi > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-Ssx3d .framer-tnqd79 > * { margin: 0px; margin-left: calc(70px / 2); margin-right: calc(70px / 2); } .framer-Ssx3d .framer-tnqd79 > :first-child, .framer-Ssx3d .framer-1v5s15y > :first-child, .framer-Ssx3d .framer-1yjjvjj > :first-child, .framer-Ssx3d .framer-3s7kaz > :first-child, .framer-Ssx3d .framer-42ko1z > :first-child, .framer-Ssx3d .framer-cmv203 > :first-child, .framer-Ssx3d .framer-1n8y1sq > :first-child { margin-left: 0px; } .framer-Ssx3d .framer-tnqd79 > :last-child, .framer-Ssx3d .framer-1v5s15y > :last-child, .framer-Ssx3d .framer-1yjjvjj > :last-child, .framer-Ssx3d .framer-3s7kaz > :last-child, .framer-Ssx3d .framer-42ko1z > :last-child, .framer-Ssx3d .framer-cmv203 > :last-child, .framer-Ssx3d .framer-1n8y1sq > :last-child { margin-right: 0px; } .framer-Ssx3d .framer-1lukcmt > *, .framer-Ssx3d .framer-1hq0q4d > *, .framer-Ssx3d .framer-sfw47v > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-Ssx3d .framer-1v5s15y > *, .framer-Ssx3d .framer-1yjjvjj > * { margin: 0px; margin-left: calc(130px / 2); margin-right: calc(130px / 2); } .framer-Ssx3d .framer-3s7kaz > *, .framer-Ssx3d .framer-42ko1z > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-Ssx3d .framer-2vh9eb > *, .framer-Ssx3d .framer-bo5v55 > *, .framer-Ssx3d .framer-wfy65i > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-Ssx3d .framer-5tynd3 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-Ssx3d .framer-cmv203 > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-Ssx3d .framer-1n8y1sq > * { margin: 0px; margin-left: calc(100px / 2); margin-right: calc(100px / 2); } .framer-Ssx3d .framer-16ro0p8 > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,\"@media (min-width: 810px) and (max-width: 1199px) { .framer-Ssx3d.framer-72rtr7 { width: 810px; } .framer-Ssx3d .framer-15j3oux, .framer-Ssx3d .framer-1ojtu5b, .framer-Ssx3d .framer-3s7kaz, .framer-Ssx3d .framer-g3yfa8-container, .framer-Ssx3d .framer-42ko1z { height: 80vh; } .framer-Ssx3d .framer-1p2uf10 { height: 80vh; top: calc(50.00000000000002% - 80vh / 2); } .framer-Ssx3d .framer-1ozgawi { width: 80%; } .framer-Ssx3d .framer-tnqd79 { flex-direction: column; width: 96%; } .framer-Ssx3d .framer-rw4nuz { flex: none; width: 100%; } .framer-Ssx3d .framer-uj4s4h { aspect-ratio: 0.9375 / 1; height: 821px; width: var(--framer-aspect-ratio-supported, 770px); } .framer-Ssx3d .framer-1kg0sj4 { aspect-ratio: 0.888235294117647 / 1; height: var(--framer-aspect-ratio-supported, 679px); width: 603px; } .framer-Ssx3d .framer-1nv8dq8 { aspect-ratio: 1.0070175438596491 / 1; height: var(--framer-aspect-ratio-supported, 424px); left: unset; right: 0px; width: 427px; } .framer-Ssx3d .framer-1lukcmt, .framer-Ssx3d .framer-17pg4aj, .framer-Ssx3d .framer-xk818n-container { width: 96%; } .framer-Ssx3d .framer-1v5s15y, .framer-Ssx3d .framer-1yjjvjj { gap: 30px; } .framer-Ssx3d .framer-1qe595d-container, .framer-Ssx3d .framer-1u0s8uz-container, .framer-Ssx3d .framer-1wewxqx-container, .framer-Ssx3d .framer-nn2neo-container { width: 48%; } .framer-Ssx3d .framer-sfw47v { height: 80vh; padding: 0px 30px 0px 30px; } .framer-Ssx3d .framer-tqygyk-container { height: 80vh; order: 0; } .framer-Ssx3d .framer-2vh9eb { flex: 1 0 0px; height: 80vh; justify-content: center; order: 1; padding: 0px; width: 1px; } .framer-Ssx3d .framer-5tynd3 { gap: 30px; width: 80%; } .framer-Ssx3d .framer-bo5v55, .framer-Ssx3d .framer-qahwen, .framer-Ssx3d .framer-1v1j5nq { order: 0; } .framer-Ssx3d .framer-1ebrel6, .framer-Ssx3d .framer-14zguw7 { order: 1; } .framer-Ssx3d .framer-cmv203 { align-content: unset; align-items: unset; display: grid; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); order: 2; } .framer-Ssx3d .framer-1xfzx7f-container, .framer-Ssx3d .framer-12tcp4u-container, .framer-Ssx3d .framer-avd9r9-container, .framer-Ssx3d .framer-9xhuyh-container, .framer-Ssx3d .framer-180144h-container, .framer-Ssx3d .framer-1ohazn6-container, .framer-Ssx3d .framer-xynlhk-container, .framer-Ssx3d .framer-108ac3e-container, .framer-Ssx3d .framer-s9e91n-container, .framer-Ssx3d .framer-1ryau0m-container, .framer-Ssx3d .framer-jqjwap-container, .framer-Ssx3d .framer-jj93h1-container { align-self: start; height: 100%; justify-self: start; width: 100%; } .framer-Ssx3d .framer-1n8y1sq { gap: 30px; width: 96%; } .framer-Ssx3d .framer-16ro0p8 { gap: 40px; order: 0; width: 48%; } .framer-Ssx3d .framer-zazbw-container { order: 2; } .framer-Ssx3d .framer-1xgcf4t { height: 240px; } .framer-Ssx3d .framer-19ie6hj { height: 600px; order: 1; width: 48%; } .framer-Ssx3d .framer-ibnnai-container { height: 660px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Ssx3d .framer-tnqd79, .framer-Ssx3d .framer-1v5s15y, .framer-Ssx3d .framer-1yjjvjj, .framer-Ssx3d .framer-5tynd3, .framer-Ssx3d .framer-cmv203, .framer-Ssx3d .framer-1n8y1sq, .framer-Ssx3d .framer-16ro0p8 { gap: 0px; } .framer-Ssx3d .framer-tnqd79 > * { margin: 0px; margin-bottom: calc(70px / 2); margin-top: calc(70px / 2); } .framer-Ssx3d .framer-tnqd79 > :first-child, .framer-Ssx3d .framer-5tynd3 > :first-child, .framer-Ssx3d .framer-16ro0p8 > :first-child { margin-top: 0px; } .framer-Ssx3d .framer-tnqd79 > :last-child, .framer-Ssx3d .framer-5tynd3 > :last-child, .framer-Ssx3d .framer-16ro0p8 > :last-child { margin-bottom: 0px; } .framer-Ssx3d .framer-1v5s15y > *, .framer-Ssx3d .framer-1yjjvjj > *, .framer-Ssx3d .framer-1n8y1sq > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-Ssx3d .framer-1v5s15y > :first-child, .framer-Ssx3d .framer-1yjjvjj > :first-child, .framer-Ssx3d .framer-1n8y1sq > :first-child { margin-left: 0px; } .framer-Ssx3d .framer-1v5s15y > :last-child, .framer-Ssx3d .framer-1yjjvjj > :last-child, .framer-Ssx3d .framer-1n8y1sq > :last-child { margin-right: 0px; } .framer-Ssx3d .framer-5tynd3 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-Ssx3d .framer-cmv203 > *, .framer-Ssx3d .framer-cmv203 > :first-child, .framer-Ssx3d .framer-cmv203 > :last-child { margin: 0px; } .framer-Ssx3d .framer-16ro0p8 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } }}\",\"@media (max-width: 809px) { .framer-Ssx3d.framer-72rtr7 { background-color: var(--token-70bfcb62-c866-4f38-89a2-989ea94dd38b, #ffffff); width: 390px; } .framer-Ssx3d .framer-15j3oux, .framer-Ssx3d .framer-1ojtu5b { height: 70vh; } .framer-Ssx3d .framer-1p2uf10 { height: 70vh; top: calc(50.00000000000002% - 70vh / 2); } .framer-Ssx3d .framer-1ozgawi { width: 90%; } .framer-Ssx3d .framer-ek8qw7 { width: 80%; } .framer-Ssx3d .framer-tnqd79 { flex-direction: column; gap: 40px; width: 94%; } .framer-Ssx3d .framer-rw4nuz { flex: none; width: 100%; } .framer-Ssx3d .framer-uj4s4h { aspect-ratio: 0.9375 / 1; height: var(--framer-aspect-ratio-supported, 391px); width: 100%; } .framer-Ssx3d .framer-1kg0sj4 { aspect-ratio: 0.888235294117647 / 1; height: var(--framer-aspect-ratio-supported, 347px); width: 84%; } .framer-Ssx3d .framer-1nv8dq8 { aspect-ratio: 1.0070175438596491 / 1; height: var(--framer-aspect-ratio-supported, 160px); left: unset; right: 0px; width: 44%; } .framer-Ssx3d .framer-1lukcmt, .framer-Ssx3d .framer-17pg4aj, .framer-Ssx3d .framer-xk818n-container { width: 94%; } .framer-Ssx3d .framer-1v5s15y { flex-direction: column; gap: 30px; } .framer-Ssx3d .framer-1qe595d-container, .framer-Ssx3d .framer-1u0s8uz-container, .framer-Ssx3d .framer-1wewxqx-container, .framer-Ssx3d .framer-nn2neo-container, .framer-Ssx3d .framer-16ro0p8 { width: 100%; } .framer-Ssx3d .framer-1yjjvjj { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 30px; } .framer-Ssx3d .framer-3s7kaz, .framer-Ssx3d .framer-42ko1z { flex-direction: column; height: min-content; } .framer-Ssx3d .framer-sfw47v { height: 80vh; padding: 0px 30px 0px 30px; width: 100%; } .framer-Ssx3d .framer-g3yfa8-container { height: 80vh; width: 100%; } .framer-Ssx3d .framer-tqygyk-container { height: 80vh; order: 1; width: 100%; } .framer-Ssx3d .framer-2vh9eb { height: 80vh; justify-content: center; order: 0; padding: 0px 20px 0px 20px; width: 100%; } .framer-Ssx3d .framer-5tynd3 { gap: 30px; } .framer-Ssx3d .framer-cmv203 { align-content: unset; align-items: unset; display: grid; gap: 10px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); } .framer-Ssx3d .framer-1xfzx7f-container, .framer-Ssx3d .framer-12tcp4u-container, .framer-Ssx3d .framer-avd9r9-container, .framer-Ssx3d .framer-9xhuyh-container, .framer-Ssx3d .framer-180144h-container, .framer-Ssx3d .framer-1ohazn6-container, .framer-Ssx3d .framer-xynlhk-container, .framer-Ssx3d .framer-108ac3e-container, .framer-Ssx3d .framer-s9e91n-container, .framer-Ssx3d .framer-1ryau0m-container, .framer-Ssx3d .framer-jqjwap-container, .framer-Ssx3d .framer-jj93h1-container { align-self: start; height: 100%; justify-self: start; width: 100%; } .framer-Ssx3d .framer-1n8y1sq { flex-direction: column; gap: 30px; width: 94%; } .framer-Ssx3d .framer-19ie6hj { height: 420px; width: 100%; } .framer-Ssx3d .framer-ibnnai-container { height: 647px; } .framer-Ssx3d .framer-wqql8l-container { height: auto; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Ssx3d .framer-tnqd79, .framer-Ssx3d .framer-1v5s15y, .framer-Ssx3d .framer-1yjjvjj, .framer-Ssx3d .framer-3s7kaz, .framer-Ssx3d .framer-42ko1z, .framer-Ssx3d .framer-5tynd3, .framer-Ssx3d .framer-cmv203, .framer-Ssx3d .framer-1n8y1sq { gap: 0px; } .framer-Ssx3d .framer-tnqd79 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-Ssx3d .framer-tnqd79 > :first-child, .framer-Ssx3d .framer-1v5s15y > :first-child, .framer-Ssx3d .framer-1yjjvjj > :first-child, .framer-Ssx3d .framer-3s7kaz > :first-child, .framer-Ssx3d .framer-42ko1z > :first-child, .framer-Ssx3d .framer-5tynd3 > :first-child, .framer-Ssx3d .framer-1n8y1sq > :first-child { margin-top: 0px; } .framer-Ssx3d .framer-tnqd79 > :last-child, .framer-Ssx3d .framer-1v5s15y > :last-child, .framer-Ssx3d .framer-1yjjvjj > :last-child, .framer-Ssx3d .framer-3s7kaz > :last-child, .framer-Ssx3d .framer-42ko1z > :last-child, .framer-Ssx3d .framer-5tynd3 > :last-child, .framer-Ssx3d .framer-1n8y1sq > :last-child { margin-bottom: 0px; } .framer-Ssx3d .framer-1v5s15y > *, .framer-Ssx3d .framer-1yjjvjj > *, .framer-Ssx3d .framer-5tynd3 > *, .framer-Ssx3d .framer-1n8y1sq > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-Ssx3d .framer-3s7kaz > *, .framer-Ssx3d .framer-42ko1z > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Ssx3d .framer-cmv203 > *, .framer-Ssx3d .framer-cmv203 > :first-child, .framer-Ssx3d .framer-cmv203 > :last-child { margin: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 8151.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"vIlonMz6f\":{\"layout\":[\"fixed\",\"auto\"]},\"amtdxzT7Y\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"WmBaUz324\":{\"pattern\":\":WmBaUz324\",\"name\":\"services\"},\"R_smXBrnB\":{\"pattern\":\":R_smXBrnB\",\"name\":\"gallery\"},\"c0WCF4IG8\":{\"pattern\":\":c0WCF4IG8\",\"name\":\"amenities\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-Ssx3d\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:8151.5,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...NavigationFonts,...OverlayMainFonts,...VideoFonts,...LineScrollFonts,...NotificationActiveFonts,...SocialConFonts,...ButtonSecondaryFonts,...TickerFonts,...ServicePoirtraitFonts,...ServiceLandscapeFonts,...SlideshowFonts,...AmenitiesFonts,...QuoteFonts,...InstagramFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerScrollSections\":\"{\\\"WmBaUz324\\\":{\\\"pattern\\\":\\\":WmBaUz324\\\",\\\"name\\\":\\\"services\\\"},\\\"R_smXBrnB\\\":{\\\"pattern\\\":\\\":R_smXBrnB\\\",\\\"name\\\":\\\"gallery\\\"},\\\"c0WCF4IG8\\\":{\\\"pattern\\\":\\\":c0WCF4IG8\\\",\\\"name\\\":\\\"amenities\\\"}}\",\"framerComponentViewportWidth\":\"true\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicHeight\":\"8151.5\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vIlonMz6f\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"amtdxzT7Y\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1200\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__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", "i", "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", "ObjectFitType", "SrcType", "defaultVideo", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "X", "srcType", "srcUrl", "srcFile", "posterEnabled", "playing", "restartOnEnter", "objectFit", "backgroundColor", "radius", "volume", "startTimeProp", "poster", "progress", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "ue", "isMountedAndReadyForProgressChanges", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "fontStore", "fonts", "css", "className", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "getProps", "height", "id", "link", "promotionContent", "title", "width", "props", "_ref", "_ref1", "createLayoutDependency", "variants", "Variants", "motion", "x", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "bNmXIkaZ0", "dT6JT2VSh", "ChyL1jB4u", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "RichText2", "SVG", "css", "FramerfDSvA50Js", "withCSS", "fDSvA50Js_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Image2", "getLoadingLazyAtYPosition", "css", "FramerQcY7Vd7wJ", "withCSS", "QcY7Vd7wJ_default", "addPropertyControls", "ControlType", "addFonts", "RatingStarsFonts", "getFonts", "QcY7Vd7wJ_default", "RatingStarsControls", "getPropertyControls", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "getProps", "clientInfo", "height", "id", "quoteDetail", "ratingStats", "width", "props", "_humanReadableEnumMap_ratingStats", "_ref", "_ref1", "_ref2", "_ref3", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "Usp7hA8gj", "Q9lTlPJS1", "fVOc4DcWy", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "ComponentViewportProvider", "QcY7Vd7wJ_default", "css", "FramerI6wwEbg3k", "withCSS", "I6wwEbg3k_default", "addPropertyControls", "ControlType", "RatingStarsControls", "addFonts", "RatingStarsFonts", "getFontsFromSharedStyle", "fonts", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "transformTemplate1", "_", "t", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "image", "link", "shortDescription", "title", "width", "props", "_ref", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "mo4vSJAxl", "QhtsKq919", "leXyi8tNy", "c5OSoIMWX", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "FramerSS1r1P8ZF", "withCSS", "SS1r1P8ZF_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "serializationHash", "variantClassNames", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "image", "title", "width", "props", "_ref", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "gqMTfgjIe", "Brug2gFQc", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "FramervOEoMqLN7", "withCSS", "vOEoMqLN7_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "transformTemplate1", "_", "t", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "image", "link", "shortDescription", "title", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "DGcJgGRcH", "wGHX9YDyA", "nXQyDsERq", "q01hRsVO1", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapyr0pzn", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "FramerzwRhr_e0k", "withCSS", "zwRhr_e0k_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "NavigationFonts", "getFonts", "NDRZM3oNo_default", "OverlayMainFonts", "WyrPfNk0M_default", "VideoFonts", "Video", "LineScrollFonts", "GtD2dyCs0_default", "NotificationActiveFonts", "fDSvA50Js_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "SocialConFonts", "Rjni9bKKQ_default", "MotionDivWithOptimizedAppearEffect", "motion", "ButtonSecondaryFonts", "pcNAJTV1E_default", "ImageWithFX", "withFX", "Image2", "TickerFonts", "Ticker", "ServicePoirtraitFonts", "zwRhr_e0k_default", "ContainerWithFX", "ServiceLandscapeFonts", "SS1r1P8ZF_default", "SlideshowFonts", "Slideshow", "MotionSectionWithFX", "AmenitiesFonts", "vOEoMqLN7_default", "QuoteFonts", "I6wwEbg3k_default", "InstagramFonts", "fHnS08wzt_default", "FooterFonts", "kYcg4iWv5_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "addImageAlt", "image", "alt", "animation4", "transition3", "textEffect", "animation5", "transition4", "animation6", "transition5", "animation7", "animation8", "animation9", "transition6", "transition7", "animation10", "transition8", "transition9", "transition10", "transition11", "transition12", "transition13", "transition14", "transition15", "transition16", "transition17", "transition18", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "PXkex2QTe3bnx0g", "overlay", "loadMore", "args", "onTap1wnntms", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "router", "useRouter", "elementId", "useRouteElementId", "ref2", "elementId1", "ref3", "elementId2", "ref4", "defaultLayoutId", "ae", "useCustomCursors", "componentViewport", "useComponentViewport", "GeneratedComponentContext", "u", "LayoutGroup", "l", "ComponentViewportProvider", "PropertyOverrides2", "AnimatePresence", "Ga", "x", "ResolveLinks", "resolvedLinks", "RichText2", "resolvedLinks1", "getLoadingLazyAtYPosition", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
