{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/bamMgJhjMszHbcnxCtZj/20nHFbpxFqdlchR1dDZF/Noise.js", "ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/Z4QJ2YpzpVnWRfR6Ccgg/Video.js", "ssg:https://framerusercontent.com/modules/Lk58cPpRj5YRlGMRtgGc/7iTEsZeKhrnJqYUFncZ1/xEnMTqk3e.js", "ssg:https://framerusercontent.com/modules/DqjEExaBqeQ3H9WnNKzv/vQEGmnevdrAchG6asVra/xEnMTqk3e.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";/**\n * Noise\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 200\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export default function Noise(props){const{opacity,backgroundSize,borderRadius}=props;return /*#__PURE__*/ _jsx(\"div\",{style:{...containerStyle,opacity,backgroundSize,borderRadius}});};Noise.defaultProps={opacity:.5,backgroundSize:128,radius:0};addPropertyControls(Noise,{backgroundSize:{title:\"Size\",type:ControlType.Number,min:64,max:256},opacity:{title:\"Opacity\",type:ControlType.Number,step:.1,displayStepper:true,max:1,min:0},borderRadius:{title:\"Radius\",type:ControlType.Number,min:0,max:1e3,step:1,displayStepper:true}});const containerStyle={width:\"100%\",height:\"100%\",backgroundSize:\"256px 256px\",backgroundRepeat:\"repeat\",backgroundImage:\"url('https://framerusercontent.com/images/rR6HYXBrMmX4cRpXfXUOvpvpB0.png')\"};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Noise\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"200\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Noise.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://framer.com/m/framer/default-utils.js@^0.45.0\";import{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={}));// 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 setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const isPlaying=videoRef.current.currentTime>0&&videoRef.current.onplaying&&!videoRef.current.paused&&!videoRef.current.ended&&videoRef.current.readyState>videoRef.current.HAVE_CURRENT_DATA;if(!isPlaying&&videoRef.current&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;videoRef.current.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();},[]);return{play,pause,setProgress};}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;}/**\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 */let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing:playingProp,muted,playsinline,controls,progress,objectFit,backgroundColor,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,posterEnabled,startTime:startTimeProp,volume,loop}=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);// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress}=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]);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges){isMountedAndReadyForProgressChanges=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=()=>{if(!videoRef.current)return;if(videoRef.current.currentTime<.3)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:autoplayBehavior!==\"on-mount\"&&posterEnabled?\"metadata\":\"auto\",poster:posterEnabled?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\";Video.defaultProps={srcType:\"URL\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",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:0};const groupsRegex=/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu;function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(groupsRegex)||[];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\",placeholder:\"../example.mp4\",hidden(props){return props.srcType===\"Upload\";},description:\"Hosted video file URL. For YouTube, use the YouTube component.\"},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\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options: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\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"112\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"200\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (8f9ffef)\nimport{LazyValue}from\"framer\";const valuesByLocaleId={eV2KpysM6:new LazyValue(()=>import(\"./xEnMTqk3e-0.js\"))};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values.read()[key];if(value)return value;}locale=locale.fallback;}}function preload(locale){const promises=[];while(locale){const values=valuesByLocaleId[locale.id];if(values){const promise=values.preload();if(promise)promises.push(promise);}locale=locale.fallback;}if(promises.length>0)return Promise.all(promises);}export function usePreloadLocalizedValues(locale){const preloadPromise=preload(locale);if(preloadPromise)throw preloadPromise;}\nexport const __FramerMetadata__ = {\"exports\":{\"usePreloadLocalizedValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (8f9ffef)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useMetadata,useQueryData,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Noise from\"https://framerusercontent.com/modules/bamMgJhjMszHbcnxCtZj/20nHFbpxFqdlchR1dDZF/Noise.js\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/Z4QJ2YpzpVnWRfR6Ccgg/Video.js\";import FooterJustified4 from\"#framer/local/canvasComponent/a2YE_Bf0Y/a2YE_Bf0Y.js\";import FineButton from\"#framer/local/canvasComponent/HAnapJgwU/HAnapJgwU.js\";import Navigation from\"#framer/local/canvasComponent/mdNIWhGS2/mdNIWhGS2.js\";import Button from\"#framer/local/canvasComponent/YBAUKkDWh/YBAUKkDWh.js\";import Calendar from\"#framer/local/collection/YZ71NKruT/YZ71NKruT.js\";import*as sharedStyle from\"#framer/local/css/A8p2OeFED/A8p2OeFED.js\";import*as sharedStyle1 from\"#framer/local/css/HOdt6v173/HOdt6v173.js\";import*as sharedStyle2 from\"#framer/local/css/jinrtx9vo/jinrtx9vo.js\";import*as sharedStyle3 from\"#framer/local/css/VS3Burc9v/VS3Burc9v.js\";import getLocalizedValue,{usePreloadLocalizedValues}from\"#framer/local/localization/xEnMTqk3e/xEnMTqk3e.js\";import metadataProvider from\"#framer/local/webPageMetadata/xEnMTqk3e/xEnMTqk3e.js\";const NavigationFonts=getFonts(Navigation);const NavigationWithVariantAppearEffect=withVariantAppearEffect(Navigation);const VideoFonts=getFonts(Video);const NoiseFonts=getFonts(Noise);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const FeatherFonts=getFonts(Feather);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const FineButtonFonts=getFonts(FineButton);const MotionDivWithFX=withFX(motion.div);const ButtonFonts=getFonts(Button);const ImageWithFX=withFX(Image);const FooterJustified4Fonts=getFonts(FooterJustified4);const breakpoints={ezxlLgdkb:\"(min-width: 1440px)\",K9uzW5S4w:\"(max-width: 809px)\",sPDqcH2Nc:\"(min-width: 810px) and (max-width: 1199px)\",YNZc5ZqtC:\"(min-width: 1200px) and (max-width: 1439px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-kQh4y\";const variantClassNames={ezxlLgdkb:\"framer-v-49pdk2\",K9uzW5S4w:\"framer-v-1rl2jqu\",sPDqcH2Nc:\"framer-v-x807u\",YNZc5ZqtC:\"framer-v-bseg4z\"};const transition1={damping:64,delay:0,mass:1,stiffness:200,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:180};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition2={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const sharedDateFormatter=(value,formatOptions,locale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const fallbackLocale=\"en-US\";try{return date.toLocaleString(locale||fallbackLocale,formatOptions);}catch{return date.toLocaleString(fallbackLocale,formatOptions);}};const dateOptions={dateStyle:\"medium\",timeZone:\"UTC\"};const toDateString=(value,activeLocale)=>{return sharedDateFormatter(value,dateOptions,activeLocale);};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={big:\"ezxlLgdkb\",Desktop:\"YNZc5ZqtC\",Phone:\"K9uzW5S4w\",Tablet:\"sPDqcH2Nc\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"YNZc5ZqtC\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,CtG5WOLZCBUBuqlhhw,DWd3cKJcNBUBuqlhhw,E2gwteORWBUBuqlhhw,L24ckOGjyBUBuqlhhw,IBJQRZtOPBUBuqlhhw,LSARbCLL1BUBuqlhhw,idBUBuqlhhw,...restProps}=getProps(props);const metadata=React.useMemo(()=>metadataProvider(undefined,activeLocale),[undefined,activeLocale]);useMetadata(metadata);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);usePreloadLocalizedValues(activeLocale);const elementId=useRouteElementId(\"t2hWPw5te\");const isDisplayed=()=>{if(!isBrowser())return true;if([\"sPDqcH2Nc\",\"K9uzW5S4w\"].includes(baseVariant))return false;return true;};const elementId1=useRouteElementId(\"N1iYSx6AG\");const ref2=React.useRef(null);const router=useRouter();const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"K9uzW5S4w\")return false;return true;};const activeLocaleCode=useLocaleCode();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"YNZc5ZqtC\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(228, 224, 220); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-bseg4z\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{K9uzW5S4w:{y:(componentViewport?.y||0)+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:68,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ydyl6l-container\",nodeId:\"lBObrpumZ\",rendersWithMotion:true,scopeId:\"xEnMTqk3e\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{K9uzW5S4w:{__framer__targets:[{ref:ref1,target:\"c7jxTpQNN\"}],variant:\"YXjVwvMzE\"},sPDqcH2Nc:{variant:\"y5r8Krli5\"}},children:/*#__PURE__*/_jsx(NavigationWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref1,target:\"PMDNQapAx\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"lBObrpumZ\",layoutId:\"lBObrpumZ\",style:{width:\"100%\"},variant:\"zjDK1dS0T\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sxjw9c\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cektvf-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"fQxctk9am\",scopeId:\"xEnMTqk3e\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"fQxctk9am\",isMixedBorderRadius:false,layoutId:\"fQxctk9am\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/AfYdNBzeQLeZwhW4SfFiPgTIyg.mp4\",srcType:\"Upload\",srcUrl:getLocalizedValue(\"v0\",activeLocale)??\"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-an5hwi-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"BZK1vzPY0\",scopeId:\"xEnMTqk3e\",children:/*#__PURE__*/_jsx(Noise,{backgroundSize:128,borderRadius:0,height:\"100%\",id:\"BZK1vzPY0\",layoutId:\"BZK1vzPY0\",opacity:.5,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-43sy1h\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-fqyke1\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1l2zo4c\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mv5y7p\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{K9uzW5S4w:{children:getLocalizedValue(\"v3\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0YzNyBXaWNrbG93IExpZ2h0\",\"--framer-font-family\":'\"F37 Wicklow Light\", \"F37 Wicklow Light Placeholder\", sans-serif',\"--framer-font-size\":\"88px\",\"--framer-letter-spacing\":\"1px\",\"--framer-line-height\":\"0.9em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b2975073-164e-427f-8746-d4a0a5664fce, rgb(255, 255, 255))\"},children:\"Be a Guest of Your Present\"})})},sPDqcH2Nc:{children:getLocalizedValue(\"v2\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0YzNyBXaWNrbG93IExpZ2h0\",\"--framer-font-family\":'\"F37 Wicklow Light\", \"F37 Wicklow Light Placeholder\", sans-serif',\"--framer-font-size\":\"135px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"0.9em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b2975073-164e-427f-8746-d4a0a5664fce, rgb(255, 255, 255))\"},children:\"Be a Guest of Your Present\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0YzNyBXaWNrbG93IExpZ2h0\",\"--framer-font-family\":'\"F37 Wicklow Light\", \"F37 Wicklow Light Placeholder\", sans-serif',\"--framer-font-size\":\"135px\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"0.9em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b2975073-164e-427f-8746-d4a0a5664fce, rgb(255, 255, 255))\"},children:\"Be a Guest of Your Present\"})}),className:\"framer-1srvndt\",\"data-framer-appear-id\":\"1srvndt\",fonts:[\"CUSTOM;F37 Wicklow Light\"],initial:animation1,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{K9uzW5S4w:{children:getLocalizedValue(\"v6\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0YzNyBXaWNrbG93IExpZ2h0\",\"--framer-font-family\":'\"F37 Wicklow Light\", \"F37 Wicklow Light Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-letter-spacing\":\"1px\",\"--framer-line-height\":\"0.9em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b2975073-164e-427f-8746-d4a0a5664fce, rgb(255, 255, 255))\"},children:\"Land Your Senses\"})})},sPDqcH2Nc:{children:getLocalizedValue(\"v5\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0YzNyBXaWNrbG93IExpZ2h0\",\"--framer-font-family\":'\"F37 Wicklow Light\", \"F37 Wicklow Light Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"0.9em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b2975073-164e-427f-8746-d4a0a5664fce, rgb(255, 255, 255))\"},children:\"Land Your Senses\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:getLocalizedValue(\"v4\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0YzNyBXaWNrbG93IExpZ2h0\",\"--framer-font-family\":'\"F37 Wicklow Light\", \"F37 Wicklow Light Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"0.9em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b2975073-164e-427f-8746-d4a0a5664fce, rgb(255, 255, 255))\"},children:\"Land Your Senses\"})}),className:\"framer-1dl7ua0\",\"data-framer-appear-id\":\"1dl7ua0\",fonts:[\"CUSTOM;F37 Wicklow Light\"],initial:animation1,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kg52x6\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ezxlLgdkb:{background:{alt:\"michelin 2024 logotype\",fit:\"fit\",pixelHeight:63,pixelWidth:474,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/JMTAO3qfWCrNI9mEPXIxlzHhfY.png\"}},K9uzW5S4w:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+68+0+0+0+341.4581+0+152.7+0+0),pixelHeight:63,pixelWidth:474,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/JMTAO3qfWCrNI9mEPXIxlzHhfY.png\"}},sPDqcH2Nc:{background:{alt:\"\",fit:\"fit\",pixelHeight:73,pixelWidth:476,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/f7sajxXukIafcjKp0objBBbz0BI.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:119,pixelWidth:601,positionX:\"center\",positionY:\"center\",sizes:\"203px\",src:\"https://framerusercontent.com/images/dm1h4v5FIPH1PH7FP1Qjf3ddc.png\",srcSet:\"https://framerusercontent.com/images/dm1h4v5FIPH1PH7FP1Qjf3ddc.png?scale-down-to=512 512w,https://framerusercontent.com/images/dm1h4v5FIPH1PH7FP1Qjf3ddc.png 601w\"},className:\"framer-1mu2ab1\"})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-1pfkz19-container\",\"data-framer-appear-id\":\"1pfkz19\",initial:animation1,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"F3bjHpr2s\",optimized:true,rendersWithMotion:true,scopeId:\"xEnMTqk3e\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-3c17ba5d-be30-4618-bffc-f1faa914f096, rgb(228, 224, 220))\",height:\"100%\",iconSearch:getLocalizedValue(\"v7\",activeLocale)??\"Home\",iconSelection:\"arrow-down\",id:\"F3bjHpr2s\",layoutId:\"F3bjHpr2s\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18mj1vl\",\"data-framer-name\":\"2 Columns Text Image\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z0at5p\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ezxlLgdkb:{children:getLocalizedValue(\"v9\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-3qnztw\",\"data-styles-preset\":\"A8p2OeFED\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Impeccable interiors\",/*#__PURE__*/_jsx(\"br\",{}),\"surrounded by nature.\"]})})},K9uzW5S4w:{children:getLocalizedValue(\"v9\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-3qnztw\",\"data-styles-preset\":\"A8p2OeFED\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Impeccable interiors\",/*#__PURE__*/_jsx(\"br\",{}),\"surrounded by nature.\"]})}),transformTemplate:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v8\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-3qnztw\",\"data-styles-preset\":\"A8p2OeFED\",children:[\"Impeccable interiors\",/*#__PURE__*/_jsx(\"br\",{}),\"surrounded by nature.\"]})}),className:\"framer-vjtdbq\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1flyc7i\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ezxlLgdkb:{background:{alt:getLocalizedValue(\"v10\",activeLocale)??\"Two-story suite with terrace swing, sofas, table, and private pool. Surrounded by lush palm jungle at Be Tulum.\",fit:\"fill\",intrinsicHeight:1125,intrinsicWidth:1500,pixelHeight:750,pixelWidth:1e3,positionX:\"center\",positionY:\"bottom\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.4889)`,src:\"https://framerusercontent.com/images/J6J8cTXkoLCyFSg5vPNgBNmZg.webp\",srcSet:\"https://framerusercontent.com/images/J6J8cTXkoLCyFSg5vPNgBNmZg.webp?scale-down-to=512 512w,https://framerusercontent.com/images/J6J8cTXkoLCyFSg5vPNgBNmZg.webp 1000w\"}},K9uzW5S4w:{background:{alt:getLocalizedValue(\"v10\",activeLocale)??\"Two-story suite with terrace swing, sofas, table, and private pool. Surrounded by lush palm jungle at Be Tulum.\",fit:\"fill\",intrinsicHeight:1125,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+988.6161+0+0+0+636.2+0+0),pixelHeight:750,pixelWidth:1e3,positionX:\"center\",positionY:\"bottom\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/J6J8cTXkoLCyFSg5vPNgBNmZg.webp\",srcSet:\"https://framerusercontent.com/images/J6J8cTXkoLCyFSg5vPNgBNmZg.webp?scale-down-to=512 512w,https://framerusercontent.com/images/J6J8cTXkoLCyFSg5vPNgBNmZg.webp 1000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:getLocalizedValue(\"v10\",activeLocale)??\"Two-story suite with terrace swing, sofas, table, and private pool. Surrounded by lush palm jungle at Be Tulum.\",fit:\"fill\",intrinsicHeight:1125,intrinsicWidth:1500,pixelHeight:750,pixelWidth:1e3,positionX:\"center\",positionY:\"bottom\",sizes:`calc(${componentViewport?.width||\"100vw\"} / 2)`,src:\"https://framerusercontent.com/images/J6J8cTXkoLCyFSg5vPNgBNmZg.webp\",srcSet:\"https://framerusercontent.com/images/J6J8cTXkoLCyFSg5vPNgBNmZg.webp?scale-down-to=512 512w,https://framerusercontent.com/images/J6J8cTXkoLCyFSg5vPNgBNmZg.webp 1000w\"},className:\"framer-dboq9x\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1v4gjq4\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15g2udr\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qvi2v2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v11\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-3qnztw\",\"data-styles-preset\":\"A8p2OeFED\",children:\"Discover the high-end simplicity of BE Destination Tulum and savor the moment through your senses.\\xa0\"})}),className:\"framer-rubp84\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4gcs49\"})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ezxlLgdkb:{children:getLocalizedValue(\"v15\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1xst9br\",\"data-styles-preset\":\"HOdt6v173\",children:\"On the Caribbean shores with pristine beaches as the backdrop, BE Destination Tulum is a resort hotel where luxury seamlessly merges with nature. BE Destination Tulum's architecture and design are masterfully crafted to complement the innate beauty of its surroundings.\\xa0\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1xst9br\",\"data-styles-preset\":\"HOdt6v173\",children:\"The spa and wellness programs are thoughtfully designed to restore and rejuvenate, offering a gateway to being present.\\xa0\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1xst9br\",\"data-styles-preset\":\"HOdt6v173\",children:\"Immerse yourself in exquisite gastronomy at Mare'zia Beach, delight in the inspired Mexican cuisine at Oc\\xfamare, and relish in the cultural events hosted in our sky terrace and beach club.\\xa0\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1xst9br\",\"data-styles-preset\":\"HOdt6v173\",children:\"Come and be a guest of your present.\\xa0\"})]})},K9uzW5S4w:{children:getLocalizedValue(\"v14\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1xst9br\",\"data-styles-preset\":\"HOdt6v173\",children:\"On the Caribbean shores with pristine beaches as the backdrop, BE Destination Tulum is a resort hotel where luxury seamlessly merges with nature. BE Destination Tulum's architecture and design are masterfully crafted to complement the innate beauty of its surroundings.\\xa0\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1xst9br\",\"data-styles-preset\":\"HOdt6v173\",children:\"The spa and wellness programs are thoughtfully designed to restore and rejuvenate, offering a gateway to being present.\\xa0\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1xst9br\",\"data-styles-preset\":\"HOdt6v173\",children:\"Immerse yourself in exquisite gastronomy at Mare'zia Beach, delight in the inspired Mexican cuisine at Oc\\xfamare, and relish in the cultural events hosted in our sky terrace and beach club.\\xa0\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1xst9br\",\"data-styles-preset\":\"HOdt6v173\",children:\"Come and be a guest of your present.\\xa0\"})]})},sPDqcH2Nc:{children:getLocalizedValue(\"v13\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1xst9br\",\"data-styles-preset\":\"HOdt6v173\",children:\"On the Caribbean shores with pristine beaches as the backdrop, BE Destination Tulum is a resort hotel where luxury seamlessly merges with nature. BE Destination Tulum's architecture and design are masterfully crafted to complement the innate beauty of its surroundings.\\xa0\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1xst9br\",\"data-styles-preset\":\"HOdt6v173\",children:\"The spa and wellness programs are thoughtfully designed to restore and rejuvenate, offering a gateway to being present.\\xa0\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1xst9br\",\"data-styles-preset\":\"HOdt6v173\",children:\"Immerse yourself in exquisite gastronomy at Mare'zia Beach, delight in the inspired Mexican cuisine at Oc\\xfamare, and relish in the cultural events hosted in our sky terrace and beach club.\\xa0\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1xst9br\",\"data-styles-preset\":\"HOdt6v173\",children:\"Come and be a guest of your present.\\xa0\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v12\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1xst9br\",\"data-styles-preset\":\"HOdt6v173\",children:\"On the Caribbean shores with pristine beaches as the backdrop, BE Destination Tulum is a resort hotel where luxury seamlessly merges with nature. BE Destination Tulum's architecture and design are masterfully crafted to complement the innate beauty of its surroundings.\\xa0\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1xst9br\",\"data-styles-preset\":\"HOdt6v173\",children:\"The spa and wellness programs are thoughtfully designed to restore and rejuvenate, offering a gateway to being present.\\xa0\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1xst9br\",\"data-styles-preset\":\"HOdt6v173\",children:\"Immerse yourself in exquisite gastronomy at Mare'zia Beach, delight in the inspired Mexican cuisine at Oc\\xfamare, and relish in the cultural events hosted in our sky terrace and beach club.\\xa0\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1xst9br\",\"data-styles-preset\":\"HOdt6v173\",children:\"Come and be a guest of your present.\\xa0\"})]}),className:\"framer-akdute\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-nc3kz7 hidden-x807u hidden-1rl2jqu\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ezxlLgdkb:{background:{alt:getLocalizedValue(\"v16\",activeLocale)??\"Sunny suite with large windows reflecting sunlight. Unique architecture surrounded by jungle at Be Tulum.\",fit:\"fill\",intrinsicHeight:901,intrinsicWidth:597,pixelHeight:901,pixelWidth:597,positionX:\"50.8%\",positionY:\"66.7%\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.4549)`,src:\"https://framerusercontent.com/images/JbMGAjhGphng1A9w62kIXk9rs.webp\",srcSet:\"https://framerusercontent.com/images/JbMGAjhGphng1A9w62kIXk9rs.webp 597w\"}},K9uzW5S4w:{background:{alt:getLocalizedValue(\"v16\",activeLocale)??\"Sunny suite with large windows reflecting sunlight. Unique architecture surrounded by jungle at Be Tulum.\",fit:\"fill\",intrinsicHeight:901,intrinsicWidth:597,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+988.6161+0+1276.5422),pixelHeight:901,pixelWidth:597,positionX:\"50.8%\",positionY:\"66.7%\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.8462)`,src:\"https://framerusercontent.com/images/JbMGAjhGphng1A9w62kIXk9rs.webp\",srcSet:\"https://framerusercontent.com/images/JbMGAjhGphng1A9w62kIXk9rs.webp 597w\"}},sPDqcH2Nc:{background:{alt:getLocalizedValue(\"v16\",activeLocale)??\"Sunny suite with large windows reflecting sunlight. Unique architecture surrounded by jungle at Be Tulum.\",fit:\"fill\",intrinsicHeight:901,intrinsicWidth:597,pixelHeight:901,pixelWidth:597,positionX:\"50.8%\",positionY:\"66.7%\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.4333)`,src:\"https://framerusercontent.com/images/JbMGAjhGphng1A9w62kIXk9rs.webp\",srcSet:\"https://framerusercontent.com/images/JbMGAjhGphng1A9w62kIXk9rs.webp 597w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:getLocalizedValue(\"v16\",activeLocale)??\"Sunny suite with large windows reflecting sunlight. Unique architecture surrounded by jungle at Be Tulum.\",fit:\"fill\",intrinsicHeight:901,intrinsicWidth:597,pixelHeight:901,pixelWidth:597,positionX:\"50.8%\",positionY:\"66.7%\",sizes:`calc(${componentViewport?.width||\"100vw\"} / 2.537)`,src:\"https://framerusercontent.com/images/JbMGAjhGphng1A9w62kIXk9rs.webp\",srcSet:\"https://framerusercontent.com/images/JbMGAjhGphng1A9w62kIXk9rs.webp 597w\"},className:\"framer-4sce7u\"})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mznrdu\",\"data-framer-name\":\"Templates\",id:elementId1,ref:ref2,children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-y2lqzf\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9qtx2y\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-hlj2wg\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{K9uzW5S4w:{background:{alt:getLocalizedValue(\"v17\",activeLocale)??\"Interior suite with private pool, bed, coffee table, and harmonious furniture. Jungle ambiance at Be Tulum.\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1440,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2453.6161+30+0+28+0+0+0+0),pixelHeight:600,pixelWidth:800,sizes:`calc(${componentViewport?.width||\"100vw\"} - 60px)`,src:\"https://framerusercontent.com/images/6b2bqM0tPEEz7VwLHj6BtOtlVg.webp\",srcSet:\"https://framerusercontent.com/images/6b2bqM0tPEEz7VwLHj6BtOtlVg.webp?scale-down-to=512 512w,https://framerusercontent.com/images/6b2bqM0tPEEz7VwLHj6BtOtlVg.webp 800w\"}},sPDqcH2Nc:{background:{alt:getLocalizedValue(\"v17\",activeLocale)??\"Interior suite with private pool, bed, coffee table, and harmonious furniture. Jungle ambiance at Be Tulum.\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1440,pixelHeight:600,pixelWidth:800,sizes:`max((${componentViewport?.width||\"100vw\"} - 146px) / 3, 1px)`,src:\"https://framerusercontent.com/images/6b2bqM0tPEEz7VwLHj6BtOtlVg.webp\",srcSet:\"https://framerusercontent.com/images/6b2bqM0tPEEz7VwLHj6BtOtlVg.webp?scale-down-to=512 512w,https://framerusercontent.com/images/6b2bqM0tPEEz7VwLHj6BtOtlVg.webp 800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:getLocalizedValue(\"v17\",activeLocale)??\"Interior suite with private pool, bed, coffee table, and harmonious furniture. Jungle ambiance at Be Tulum.\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1440,pixelHeight:600,pixelWidth:800,sizes:`max((${componentViewport?.width||\"100vw\"} - 140px) / 3, 1px)`,src:\"https://framerusercontent.com/images/6b2bqM0tPEEz7VwLHj6BtOtlVg.webp\",srcSet:\"https://framerusercontent.com/images/6b2bqM0tPEEz7VwLHj6BtOtlVg.webp?scale-down-to=512 512w,https://framerusercontent.com/images/6b2bqM0tPEEz7VwLHj6BtOtlVg.webp 800w\"},className:\"framer-blco1\",\"data-framer-name\":\"Image\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1warcus\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1om7ika\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{K9uzW5S4w:{children:getLocalizedValue(\"v19\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1y54gk8\",\"data-styles-preset\":\"jinrtx9vo\",style:{\"--framer-text-alignment\":\"left\"},children:\"Experience High-End Simplicity\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v18\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1y54gk8\",\"data-styles-preset\":\"jinrtx9vo\",children:\"Experience High-End Simplicity\"})}),className:\"framer-1xjqci1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v20\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-3qnztw\",\"data-styles-preset\":\"A8p2OeFED\",children:\"Suites\"})}),className:\"framer-i1g9eo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-dvv2kz\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1od1pxy\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"MgdPZPGY5\"},implicitPathVariables:undefined},{href:{webPageId:\"MgdPZPGY5\"},implicitPathVariables:undefined},{href:{webPageId:\"MgdPZPGY5\"},implicitPathVariables:undefined},{href:{webPageId:\"MgdPZPGY5\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1su3bk7-container\",nodeId:\"f2XnV5wrO\",scopeId:\"xEnMTqk3e\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ezxlLgdkb:{ucDkTUcW_:resolvedLinks[3]},K9uzW5S4w:{ucDkTUcW_:resolvedLinks[2],xmKiaukJS:14},sPDqcH2Nc:{ucDkTUcW_:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(FineButton,{DvcoCha11:getLocalizedValue(\"v21\",activeLocale)??\"VIEW MORE\",height:\"100%\",id:\"f2XnV5wrO\",layoutId:\"f2XnV5wrO\",style:{height:\"100%\"},ucDkTUcW_:resolvedLinks[0],variant:\"b4RVKX0_u\",width:\"100%\",xmKiaukJS:11})})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tu544h\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{K9uzW5S4w:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:790,intrinsicWidth:1185,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2453.6161+30+0+28+643+0+0),pixelHeight:600,pixelWidth:800,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 60px)`,src:\"https://framerusercontent.com/images/48QkvDBlGuMPnHfj4BHIwVsxTFQ.jpeg\",srcSet:\"https://framerusercontent.com/images/48QkvDBlGuMPnHfj4BHIwVsxTFQ.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/48QkvDBlGuMPnHfj4BHIwVsxTFQ.jpeg 800w\"}},sPDqcH2Nc:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:790,intrinsicWidth:1185,pixelHeight:600,pixelWidth:800,positionX:\"center\",positionY:\"center\",sizes:`max((${componentViewport?.width||\"100vw\"} - 146px) / 3, 1px)`,src:\"https://framerusercontent.com/images/48QkvDBlGuMPnHfj4BHIwVsxTFQ.jpeg\",srcSet:\"https://framerusercontent.com/images/48QkvDBlGuMPnHfj4BHIwVsxTFQ.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/48QkvDBlGuMPnHfj4BHIwVsxTFQ.jpeg 800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:790,intrinsicWidth:1185,pixelHeight:600,pixelWidth:800,positionX:\"center\",positionY:\"center\",sizes:`max((${componentViewport?.width||\"100vw\"} - 140px) / 3, 1px)`,src:\"https://framerusercontent.com/images/48QkvDBlGuMPnHfj4BHIwVsxTFQ.jpeg\",srcSet:\"https://framerusercontent.com/images/48QkvDBlGuMPnHfj4BHIwVsxTFQ.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/48QkvDBlGuMPnHfj4BHIwVsxTFQ.jpeg 800w\"},className:\"framer-1q9eiy6\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sgfi6n\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ti0jlr\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{K9uzW5S4w:{children:getLocalizedValue(\"v23\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1y54gk8\",\"data-styles-preset\":\"jinrtx9vo\",style:{\"--framer-text-alignment\":\"left\"},children:\"prepare to be pampered\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v22\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1y54gk8\",\"data-styles-preset\":\"jinrtx9vo\",children:\"prepare to be pampered\"})}),className:\"framer-spkkbs\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ezxlLgdkb:{children:getLocalizedValue(\"v25\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-3qnztw\",\"data-styles-preset\":\"A8p2OeFED\",children:\"Premier Suites\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v24\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-3qnztw\",\"data-styles-preset\":\"A8p2OeFED\",style:{\"--framer-text-color\":\"var(--token-a8ce1255-33a4-4cd6-a3c6-1fbffe557549, rgb(60, 57, 54))\"},children:\"Premier Suites\"})}),className:\"framer-3x2kz9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7vcgix\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-joxdph\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"wznDVUZjG\"},implicitPathVariables:undefined},{href:{webPageId:\"wznDVUZjG\"},implicitPathVariables:undefined},{href:{webPageId:\"wznDVUZjG\"},implicitPathVariables:undefined},{href:{webPageId:\"gjOmPBET6\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1y1shai-container\",nodeId:\"MXOybjW56\",scopeId:\"xEnMTqk3e\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ezxlLgdkb:{ucDkTUcW_:resolvedLinks1[3]},K9uzW5S4w:{ucDkTUcW_:resolvedLinks1[2],xmKiaukJS:14},sPDqcH2Nc:{ucDkTUcW_:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(FineButton,{DvcoCha11:getLocalizedValue(\"v21\",activeLocale)??\"VIEW MORE\",height:\"100%\",id:\"MXOybjW56\",layoutId:\"MXOybjW56\",style:{height:\"100%\"},ucDkTUcW_:resolvedLinks1[0],variant:\"b4RVKX0_u\",width:\"100%\",xmKiaukJS:11})})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1guowq8\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-y21uop\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ezxlLgdkb:{background:{alt:getLocalizedValue(\"v29\",activeLocale)??\"Luxurious villa with large sofas, great lighting, and unique harmony. Carpeted with spectacular jungle views at Be Tulum.\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1500,pixelHeight:1e3,pixelWidth:1500,sizes:`max((${componentViewport?.width||\"100vw\"} - 140px) / 3, 1px)`,src:\"https://framerusercontent.com/images/HqeFHIMw5deYhMPYYxyE3EkVKJQ.jpg\",srcSet:\"https://framerusercontent.com/images/HqeFHIMw5deYhMPYYxyE3EkVKJQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/HqeFHIMw5deYhMPYYxyE3EkVKJQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/HqeFHIMw5deYhMPYYxyE3EkVKJQ.jpg 1500w\"}},K9uzW5S4w:{background:{alt:getLocalizedValue(\"v28\",activeLocale)??\"Luxurious villa with large sofas, great lighting, and unique harmony. Carpeted with spectacular jungle views at Be Tulum.\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2453.6161+30+0+28+1217.2+0+0+0),pixelHeight:1e3,pixelWidth:1500,sizes:`calc(${componentViewport?.width||\"100vw\"} - 60px)`,src:\"https://framerusercontent.com/images/HqeFHIMw5deYhMPYYxyE3EkVKJQ.jpg\",srcSet:\"https://framerusercontent.com/images/HqeFHIMw5deYhMPYYxyE3EkVKJQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/HqeFHIMw5deYhMPYYxyE3EkVKJQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/HqeFHIMw5deYhMPYYxyE3EkVKJQ.jpg 1500w\"}},sPDqcH2Nc:{background:{alt:getLocalizedValue(\"v27\",activeLocale)??\"Luxurious villa with large sofas, great lighting, and unique harmony. Carpeted with spectacular jungle views at Be Tulum.\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1500,pixelHeight:1e3,pixelWidth:1500,sizes:`max((${componentViewport?.width||\"100vw\"} - 146px) / 3, 1px)`,src:\"https://framerusercontent.com/images/HqeFHIMw5deYhMPYYxyE3EkVKJQ.jpg\",srcSet:\"https://framerusercontent.com/images/HqeFHIMw5deYhMPYYxyE3EkVKJQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/HqeFHIMw5deYhMPYYxyE3EkVKJQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/HqeFHIMw5deYhMPYYxyE3EkVKJQ.jpg 1500w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:getLocalizedValue(\"v26\",activeLocale)??\"Luxurious villa with large sofas, great lighting, and unique harmony. Carpeted with spectacular jungle views at Be Tulum.\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1500,pixelHeight:533,pixelWidth:800,sizes:`max((${componentViewport?.width||\"100vw\"} - 140px) / 3, 1px)`,src:\"https://framerusercontent.com/images/hs92I1NP3aLAoLBoEWS7gR2OjU.webp\",srcSet:\"https://framerusercontent.com/images/hs92I1NP3aLAoLBoEWS7gR2OjU.webp?scale-down-to=512 512w,https://framerusercontent.com/images/hs92I1NP3aLAoLBoEWS7gR2OjU.webp 800w\"},className:\"framer-1heoaj5\",\"data-framer-name\":\"image\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10nitcj\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zlewgc\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{K9uzW5S4w:{children:getLocalizedValue(\"v31\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1y54gk8\",\"data-styles-preset\":\"jinrtx9vo\",style:{\"--framer-text-alignment\":\"left\"},children:\"SAVOR THE MOMENT\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v30\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1y54gk8\",\"data-styles-preset\":\"jinrtx9vo\",children:\"SAVOR THE MOMENT\"})}),className:\"framer-1662kn7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ezxlLgdkb:{children:getLocalizedValue(\"v33\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-3qnztw\",\"data-styles-preset\":\"A8p2OeFED\",children:\"Villa\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v32\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-3qnztw\",\"data-styles-preset\":\"A8p2OeFED\",style:{\"--framer-text-color\":\"var(--token-a8ce1255-33a4-4cd6-a3c6-1fbffe557549, rgb(60, 57, 54))\"},children:\"Villa\"})}),className:\"framer-1q9blrw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-gg3ev9\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-d01uf6\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ku5oeAQvm\"},implicitPathVariables:undefined},{href:{webPageId:\"ku5oeAQvm\"},implicitPathVariables:undefined},{href:{webPageId:\"ku5oeAQvm\"},implicitPathVariables:undefined},{href:{webPageId:\"gjOmPBET6\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-912m9d-container\",nodeId:\"ESNU4jgAE\",scopeId:\"xEnMTqk3e\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ezxlLgdkb:{ucDkTUcW_:resolvedLinks2[3]},K9uzW5S4w:{ucDkTUcW_:resolvedLinks2[2],xmKiaukJS:14},sPDqcH2Nc:{ucDkTUcW_:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(FineButton,{DvcoCha11:getLocalizedValue(\"v21\",activeLocale)??\"VIEW MORE\",height:\"100%\",id:\"ESNU4jgAE\",layoutId:\"ESNU4jgAE\",style:{height:\"100%\"},ucDkTUcW_:resolvedLinks2[0],variant:\"b4RVKX0_u\",width:\"100%\",xmKiaukJS:11})})})})})})]})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-usm8xv\",\"data-framer-name\":\"Grid 1\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1y4t08v\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v34\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1y54gk8\",\"data-styles-preset\":\"jinrtx9vo\",style:{\"--framer-text-alignment\":\"center\"},children:\"special offers\"})}),className:\"framer-iecdgp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13vnlk1\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v043m6\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-110m14l\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ezxlLgdkb:{background:{alt:getLocalizedValue(\"v35\",activeLocale)??\"Pool area surrounded by jungle ambiance with loungers and tranquility at Be Tulum.\",fit:\"fill\",intrinsicHeight:960,intrinsicWidth:960,pixelHeight:360,pixelWidth:700,positionX:\"center\",positionY:\"bottom\",sizes:`max(max(${componentViewport?.width||\"100vw\"} - 80px, 1px) * 0.5022, 1px)`,src:\"https://framerusercontent.com/images/hlmCOt4o9TIwuc9CqnUL9GrHXM.webp\",srcSet:\"https://framerusercontent.com/images/hlmCOt4o9TIwuc9CqnUL9GrHXM.webp?scale-down-to=512 512w,https://framerusercontent.com/images/hlmCOt4o9TIwuc9CqnUL9GrHXM.webp 700w\"}},K9uzW5S4w:{background:{alt:getLocalizedValue(\"v35\",activeLocale)??\"Pool area surrounded by jungle ambiance with loungers and tranquility at Be Tulum.\",fit:\"fill\",intrinsicHeight:960,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4315.0161+3+65.2+0+0+0+0+0),pixelHeight:360,pixelWidth:700,positionX:\"center\",positionY:\"bottom\",sizes:`max((${componentViewport?.width||\"100vw\"} - 20px) * 0.95, 200px)`,src:\"https://framerusercontent.com/images/hlmCOt4o9TIwuc9CqnUL9GrHXM.webp\",srcSet:\"https://framerusercontent.com/images/hlmCOt4o9TIwuc9CqnUL9GrHXM.webp?scale-down-to=512 512w,https://framerusercontent.com/images/hlmCOt4o9TIwuc9CqnUL9GrHXM.webp 700w\"}},sPDqcH2Nc:{background:{alt:getLocalizedValue(\"v35\",activeLocale)??\"Pool area surrounded by jungle ambiance with loungers and tranquility at Be Tulum.\",fit:\"fill\",intrinsicHeight:960,intrinsicWidth:960,pixelHeight:360,pixelWidth:700,positionX:\"center\",positionY:\"bottom\",sizes:`calc(max(${componentViewport?.width||\"100vw\"} - 60px, 50px) * 1.004)`,src:\"https://framerusercontent.com/images/hlmCOt4o9TIwuc9CqnUL9GrHXM.webp\",srcSet:\"https://framerusercontent.com/images/hlmCOt4o9TIwuc9CqnUL9GrHXM.webp?scale-down-to=512 512w,https://framerusercontent.com/images/hlmCOt4o9TIwuc9CqnUL9GrHXM.webp 700w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:getLocalizedValue(\"v35\",activeLocale)??\"Pool area surrounded by jungle ambiance with loungers and tranquility at Be Tulum.\",fit:\"fill\",intrinsicHeight:960,intrinsicWidth:960,pixelHeight:360,pixelWidth:700,positionX:\"center\",positionY:\"bottom\",sizes:`calc(max(${componentViewport?.width||\"100vw\"} - 80px, 1px) / 2)`,src:\"https://framerusercontent.com/images/hlmCOt4o9TIwuc9CqnUL9GrHXM.webp\",srcSet:\"https://framerusercontent.com/images/hlmCOt4o9TIwuc9CqnUL9GrHXM.webp?scale-down-to=512 512w,https://framerusercontent.com/images/hlmCOt4o9TIwuc9CqnUL9GrHXM.webp 700w\"},className:\"framer-1vsckb6\",\"data-framer-name\":\"Slide1_0006_BETULUM2_56597\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-pk2kun\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-alq6cb\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14hl8ep\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{K9uzW5S4w:{children:getLocalizedValue(\"v37\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-ekhiuq\",\"data-styles-preset\":\"VS3Burc9v\",style:{\"--framer-text-alignment\":\"center\"},children:\"The Future Present\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v36\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-ekhiuq\",\"data-styles-preset\":\"VS3Burc9v\",style:{\"--framer-text-alignment\":\"left\"},children:\"The Future Present\"})}),className:\"framer-7oj000\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wr4mi7\"}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v38\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1xst9br\",\"data-styles-preset\":\"HOdt6v173\",style:{\"--framer-text-color\":\"var(--token-a8ce1255-33a4-4cd6-a3c6-1fbffe557549, rgb(60, 57, 54))\"},children:\"Designed for the discerning mind seeking luxury and foresight, enjoy up to 20% savings on any of our suites and villas when you commit to your stay at least 14 days in advance\u2026\"})}),className:\"framer-ft4dg0 hidden-1rl2jqu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z9l2hg\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-182qton-container\",nodeId:\"UmhimqQGd\",scopeId:\"xEnMTqk3e\",children:/*#__PURE__*/_jsx(Button,{G_aeq7Vma:getLocalizedValue(\"v39\",activeLocale)??\"BOOK NOW\",height:\"100%\",id:\"UmhimqQGd\",layoutId:\"UmhimqQGd\",OIQoOdQsq:false,style:{height:\"100%\",width:\"100%\"},variant:\"f98v5CPUZ\",width:\"100%\",xvMCaCgtT:\"https://reservation.bedestination.com/?Hotel=10764&Chain=26418&arrive=2025-06-27&depart=2025-06-28&adult=1&child=0&promo=PLANAHEAD\"})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"MQBMwqY6Q\"},implicitPathVariables:undefined},{href:{webPageId:\"MQBMwqY6Q\"},implicitPathVariables:undefined},{href:{webPageId:\"MQBMwqY6Q\"},implicitPathVariables:undefined},{href:{webPageId:\"MQBMwqY6Q\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-2spa6x-container\",nodeId:\"Z82fxwdgN\",scopeId:\"xEnMTqk3e\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ezxlLgdkb:{ucDkTUcW_:resolvedLinks3[3]},K9uzW5S4w:{ucDkTUcW_:resolvedLinks3[2],xmKiaukJS:14},sPDqcH2Nc:{ucDkTUcW_:resolvedLinks3[1]}},children:/*#__PURE__*/_jsx(FineButton,{DvcoCha11:getLocalizedValue(\"v40\",activeLocale)??\" All Special Offers\",height:\"100%\",id:\"Z82fxwdgN\",layoutId:\"Z82fxwdgN\",style:{height:\"100%\"},ucDkTUcW_:resolvedLinks3[0],variant:\"b4RVKX0_u\",width:\"100%\",xmKiaukJS:11})})})})})]})]})})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qrhax9\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ezxlLgdkb:{background:{alt:getLocalizedValue(\"v41\",activeLocale)??\"Beach club with unique and comfortable loungers. Jungle ambiance with large palms and sand at Be Tulum.\",fit:\"fill\",intrinsicHeight:774,intrinsicWidth:1500,pixelHeight:619,pixelWidth:1200,positionX:\"47.6%\",positionY:\"bottom\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/6UDXlYWlPjPw2KdfTIfC9QrPA.webp\",srcSet:\"https://framerusercontent.com/images/6UDXlYWlPjPw2KdfTIfC9QrPA.webp?scale-down-to=512 512w,https://framerusercontent.com/images/6UDXlYWlPjPw2KdfTIfC9QrPA.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/6UDXlYWlPjPw2KdfTIfC9QrPA.webp 1200w\"}},K9uzW5S4w:{__framer__parallaxTransformEnabled:undefined,background:{alt:getLocalizedValue(\"v41\",activeLocale)??\"Beach club with unique and comfortable loungers. Jungle ambiance with large palms and sand at Be Tulum.\",fit:\"fill\",intrinsicHeight:774,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4875.4161+-63.5541),pixelHeight:619,pixelWidth:1200,positionX:\"47.6%\",positionY:\"53.5%\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/6UDXlYWlPjPw2KdfTIfC9QrPA.webp\",srcSet:\"https://framerusercontent.com/images/6UDXlYWlPjPw2KdfTIfC9QrPA.webp?scale-down-to=512 512w,https://framerusercontent.com/images/6UDXlYWlPjPw2KdfTIfC9QrPA.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/6UDXlYWlPjPw2KdfTIfC9QrPA.webp 1200w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:true,__framer__offset:400,__framer__parallaxTransformEnabled:true,__framer__speed:90,__perspectiveFX:false,__targetOpacity:1,background:{alt:getLocalizedValue(\"v41\",activeLocale)??\"Beach club with unique and comfortable loungers. Jungle ambiance with large palms and sand at Be Tulum.\",fit:\"fill\",intrinsicHeight:774,intrinsicWidth:1500,pixelHeight:619,pixelWidth:1200,positionX:\"47.6%\",positionY:\"53.5%\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/6UDXlYWlPjPw2KdfTIfC9QrPA.webp\",srcSet:\"https://framerusercontent.com/images/6UDXlYWlPjPw2KdfTIfC9QrPA.webp?scale-down-to=512 512w,https://framerusercontent.com/images/6UDXlYWlPjPw2KdfTIfC9QrPA.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/6UDXlYWlPjPw2KdfTIfC9QrPA.webp 1200w\"},className:\"framer-1sahh79\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ygkdd2\",\"data-framer-name\":\"Grid 1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v42\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1y54gk8\",\"data-styles-preset\":\"jinrtx9vo\",style:{\"--framer-text-alignment\":\"center\"},children:\"LET YOUR SENSES BE THE PATHWAY TO THE NOW\\xa0\"})}),className:\"framer-1m2r03t\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i8ch2a\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-107gpj9\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1p4922c\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ezxlLgdkb:{background:{alt:getLocalizedValue(\"v43\",activeLocale)??\"Woman entering the spa area with towels, ready for relaxation at Be Tulum.\",fit:\"fill\",intrinsicHeight:769,intrinsicWidth:950,pixelHeight:486,pixelWidth:600,sizes:`calc((${componentViewport?.width||\"100vw\"} - 80px) * 0.31)`,src:\"https://framerusercontent.com/images/uDDISE053UZoNpjmGep9sArGRRk.webp\",srcSet:\"https://framerusercontent.com/images/uDDISE053UZoNpjmGep9sArGRRk.webp?scale-down-to=512 512w,https://framerusercontent.com/images/uDDISE053UZoNpjmGep9sArGRRk.webp 600w\"}},K9uzW5S4w:{background:{alt:getLocalizedValue(\"v43\",activeLocale)??\"Woman entering the spa area with towels, ready for relaxation at Be Tulum.\",fit:\"fill\",intrinsicHeight:769,intrinsicWidth:950,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5230.8663+45+136+0+0+0+0+0+0),pixelHeight:486,pixelWidth:600,sizes:`max((${componentViewport?.width||\"100vw\"} - 20px) * 0.95, 200px)`,src:\"https://framerusercontent.com/images/uDDISE053UZoNpjmGep9sArGRRk.webp\",srcSet:\"https://framerusercontent.com/images/uDDISE053UZoNpjmGep9sArGRRk.webp?scale-down-to=512 512w,https://framerusercontent.com/images/uDDISE053UZoNpjmGep9sArGRRk.webp 600w\"}},sPDqcH2Nc:{background:{alt:getLocalizedValue(\"v43\",activeLocale)??\"Woman entering the spa area with towels, ready for relaxation at Be Tulum.\",fit:\"fill\",intrinsicHeight:769,intrinsicWidth:950,pixelHeight:486,pixelWidth:600,sizes:`max((${componentViewport?.width||\"100vw\"} - 98px) / 3, 200px)`,src:\"https://framerusercontent.com/images/uDDISE053UZoNpjmGep9sArGRRk.webp\",srcSet:\"https://framerusercontent.com/images/uDDISE053UZoNpjmGep9sArGRRk.webp?scale-down-to=512 512w,https://framerusercontent.com/images/uDDISE053UZoNpjmGep9sArGRRk.webp 600w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:getLocalizedValue(\"v43\",activeLocale)??\"Woman entering the spa area with towels, ready for relaxation at Be Tulum.\",fit:\"fill\",intrinsicHeight:769,intrinsicWidth:950,pixelHeight:486,pixelWidth:600,sizes:`max((${componentViewport?.width||\"100vw\"} - 124px) / 3, 1px)`,src:\"https://framerusercontent.com/images/uDDISE053UZoNpjmGep9sArGRRk.webp\",srcSet:\"https://framerusercontent.com/images/uDDISE053UZoNpjmGep9sArGRRk.webp?scale-down-to=512 512w,https://framerusercontent.com/images/uDDISE053UZoNpjmGep9sArGRRk.webp 600w\"},className:\"framer-9et0i\",\"data-framer-name\":\"Image\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-137og82\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uga3tx\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v44\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-3qnztw\",\"data-styles-preset\":\"A8p2OeFED\",children:\"Spa & Wellness\"})}),className:\"framer-1n4vcwh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v45\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1xst9br\",\"data-styles-preset\":\"HOdt6v173\",children:\"Relish your senses at our premium Mayan Spa - your gateway to deep relaxation and exploring the profound wisdom of the Mayan culture.\\xa0\"})}),className:\"framer-1drfkvc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"jwNNXvZdI\"},implicitPathVariables:undefined},{href:{webPageId:\"jwNNXvZdI\"},implicitPathVariables:undefined},{href:{webPageId:\"jwNNXvZdI\"},implicitPathVariables:undefined},{href:{webPageId:\"jwNNXvZdI\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-feherv-container\",nodeId:\"XOwdMgZYt\",scopeId:\"xEnMTqk3e\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ezxlLgdkb:{ucDkTUcW_:resolvedLinks4[3]},K9uzW5S4w:{ucDkTUcW_:resolvedLinks4[2],xmKiaukJS:14},sPDqcH2Nc:{ucDkTUcW_:resolvedLinks4[1]}},children:/*#__PURE__*/_jsx(FineButton,{DvcoCha11:getLocalizedValue(\"v21\",activeLocale)??\"VIEW MORE\",height:\"100%\",id:\"XOwdMgZYt\",layoutId:\"XOwdMgZYt\",style:{height:\"100%\"},ucDkTUcW_:resolvedLinks4[0],variant:\"b4RVKX0_u\",width:\"100%\",xmKiaukJS:11})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11dulle\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-rhrreq\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ezxlLgdkb:{background:{alt:getLocalizedValue(\"v46\",activeLocale)??\"Exquisite taco with avocado, lime, and salsa. Culinary delight at Be Tulum\",fit:\"fill\",intrinsicHeight:891,intrinsicWidth:1192,pixelHeight:448,pixelWidth:600,sizes:`calc((${componentViewport?.width||\"100vw\"} - 80px) * 0.31)`,src:\"https://framerusercontent.com/images/F48fdvzbAoTAKpyCpjn8QK5lrPc.webp\",srcSet:\"https://framerusercontent.com/images/F48fdvzbAoTAKpyCpjn8QK5lrPc.webp?scale-down-to=512 512w,https://framerusercontent.com/images/F48fdvzbAoTAKpyCpjn8QK5lrPc.webp 600w\"}},K9uzW5S4w:{background:{alt:getLocalizedValue(\"v46\",activeLocale)??\"Exquisite taco with avocado, lime, and salsa. Culinary delight at Be Tulum\",fit:\"fill\",intrinsicHeight:891,intrinsicWidth:1192,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5230.8663+45+136+0+551.2+0+0+0+0),pixelHeight:448,pixelWidth:600,sizes:`max((${componentViewport?.width||\"100vw\"} - 20px) * 0.95, 200px)`,src:\"https://framerusercontent.com/images/F48fdvzbAoTAKpyCpjn8QK5lrPc.webp\",srcSet:\"https://framerusercontent.com/images/F48fdvzbAoTAKpyCpjn8QK5lrPc.webp?scale-down-to=512 512w,https://framerusercontent.com/images/F48fdvzbAoTAKpyCpjn8QK5lrPc.webp 600w\"}},sPDqcH2Nc:{background:{alt:getLocalizedValue(\"v46\",activeLocale)??\"Exquisite taco with avocado, lime, and salsa. Culinary delight at Be Tulum\",fit:\"fill\",intrinsicHeight:891,intrinsicWidth:1192,pixelHeight:448,pixelWidth:600,sizes:`max((${componentViewport?.width||\"100vw\"} - 98px) / 3, 200px)`,src:\"https://framerusercontent.com/images/F48fdvzbAoTAKpyCpjn8QK5lrPc.webp\",srcSet:\"https://framerusercontent.com/images/F48fdvzbAoTAKpyCpjn8QK5lrPc.webp?scale-down-to=512 512w,https://framerusercontent.com/images/F48fdvzbAoTAKpyCpjn8QK5lrPc.webp 600w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:getLocalizedValue(\"v46\",activeLocale)??\"Exquisite taco with avocado, lime, and salsa. Culinary delight at Be Tulum\",fit:\"fill\",intrinsicHeight:891,intrinsicWidth:1192,pixelHeight:448,pixelWidth:600,sizes:`max((${componentViewport?.width||\"100vw\"} - 124px) / 3, 1px)`,src:\"https://framerusercontent.com/images/F48fdvzbAoTAKpyCpjn8QK5lrPc.webp\",srcSet:\"https://framerusercontent.com/images/F48fdvzbAoTAKpyCpjn8QK5lrPc.webp?scale-down-to=512 512w,https://framerusercontent.com/images/F48fdvzbAoTAKpyCpjn8QK5lrPc.webp 600w\"},className:\"framer-1a6cshx\",\"data-framer-name\":\"Image\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18if18w\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bgvd5n\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v47\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-3qnztw\",\"data-styles-preset\":\"A8p2OeFED\",children:\"Dining\"})}),className:\"framer-16ek8sh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v48\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1xst9br\",\"data-styles-preset\":\"HOdt6v173\",children:\"Indulge in a world of culinary delights, where each bite is a carefully crafted blend of flavors designed to elevate your dining experience.\"})}),className:\"framer-103znmc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"E_evsSgB2\"},implicitPathVariables:undefined},{href:{webPageId:\"E_evsSgB2\"},implicitPathVariables:undefined},{href:{webPageId:\"E_evsSgB2\"},implicitPathVariables:undefined},{href:{webPageId:\"E_evsSgB2\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-wyfd3i-container\",nodeId:\"gIJb2Lz62\",scopeId:\"xEnMTqk3e\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ezxlLgdkb:{ucDkTUcW_:resolvedLinks5[3]},K9uzW5S4w:{ucDkTUcW_:resolvedLinks5[2],xmKiaukJS:14},sPDqcH2Nc:{ucDkTUcW_:resolvedLinks5[1]}},children:/*#__PURE__*/_jsx(FineButton,{DvcoCha11:getLocalizedValue(\"v21\",activeLocale)??\"VIEW MORE\",height:\"100%\",id:\"gIJb2Lz62\",layoutId:\"gIJb2Lz62\",style:{height:\"100%\"},ucDkTUcW_:resolvedLinks5[0],variant:\"b4RVKX0_u\",width:\"100%\",xmKiaukJS:11})})})})})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tqmkxx\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-o1djrx\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ezxlLgdkb:{background:{alt:getLocalizedValue(\"v49\",activeLocale)??\"Exquisite red cocktail with ice, served in a crystal glass at Be Tulum.\",fit:\"fill\",intrinsicHeight:324,intrinsicWidth:503,pixelHeight:386,pixelWidth:600,sizes:`calc((${componentViewport?.width||\"100vw\"} - 80px) * 0.31)`,src:\"https://framerusercontent.com/images/vICeaamQyf4FN7OW485tJXgw4mA.webp?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/vICeaamQyf4FN7OW485tJXgw4mA.webp?scale-down-to=512 512w,https://framerusercontent.com/images/vICeaamQyf4FN7OW485tJXgw4mA.webp 600w\"}},K9uzW5S4w:{background:{alt:getLocalizedValue(\"v49\",activeLocale)??\"Exquisite red cocktail with ice, served in a crystal glass at Be Tulum.\",fit:\"fill\",intrinsicHeight:324,intrinsicWidth:503,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5230.8663+45+136+0+1102.4+0+0+0+0),pixelHeight:386,pixelWidth:600,sizes:`max((${componentViewport?.width||\"100vw\"} - 20px) * 0.95, 200px)`,src:\"https://framerusercontent.com/images/vICeaamQyf4FN7OW485tJXgw4mA.webp?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/vICeaamQyf4FN7OW485tJXgw4mA.webp?scale-down-to=512 512w,https://framerusercontent.com/images/vICeaamQyf4FN7OW485tJXgw4mA.webp 600w\"}},sPDqcH2Nc:{background:{alt:getLocalizedValue(\"v49\",activeLocale)??\"Exquisite red cocktail with ice, served in a crystal glass at Be Tulum.\",fit:\"fill\",intrinsicHeight:324,intrinsicWidth:503,pixelHeight:386,pixelWidth:600,sizes:`max((${componentViewport?.width||\"100vw\"} - 98px) / 3, 200px)`,src:\"https://framerusercontent.com/images/vICeaamQyf4FN7OW485tJXgw4mA.webp?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/vICeaamQyf4FN7OW485tJXgw4mA.webp?scale-down-to=512 512w,https://framerusercontent.com/images/vICeaamQyf4FN7OW485tJXgw4mA.webp 600w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:getLocalizedValue(\"v49\",activeLocale)??\"Exquisite red cocktail with ice, served in a crystal glass at Be Tulum.\",fit:\"fill\",intrinsicHeight:324,intrinsicWidth:503,pixelHeight:386,pixelWidth:600,sizes:`max((${componentViewport?.width||\"100vw\"} - 124px) / 3, 1px)`,src:\"https://framerusercontent.com/images/vICeaamQyf4FN7OW485tJXgw4mA.webp?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/vICeaamQyf4FN7OW485tJXgw4mA.webp?scale-down-to=512 512w,https://framerusercontent.com/images/vICeaamQyf4FN7OW485tJXgw4mA.webp 600w\"},className:\"framer-15jejsx\",\"data-framer-name\":\"Image\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w90eh1\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1m4kivu\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v50\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-3qnztw\",\"data-styles-preset\":\"A8p2OeFED\",children:\"Celebration\"})}),className:\"framer-1w5gza8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v51\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1xst9br\",\"data-styles-preset\":\"HOdt6v173\",children:\"Elevate your celebratory experiences, such as weddings and private gatherings, with the unique essence and precise service of BE Destination Tulum.\\xa0\"})}),className:\"framer-1j5913j\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"AIdcCahOb\"},implicitPathVariables:undefined},{href:{webPageId:\"AIdcCahOb\"},implicitPathVariables:undefined},{href:{webPageId:\"AIdcCahOb\"},implicitPathVariables:undefined},{href:{webPageId:\"AIdcCahOb\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kvw1ac-container\",nodeId:\"V5GL_ZBCS\",scopeId:\"xEnMTqk3e\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ezxlLgdkb:{ucDkTUcW_:resolvedLinks6[3]},K9uzW5S4w:{ucDkTUcW_:resolvedLinks6[2],xmKiaukJS:14},sPDqcH2Nc:{ucDkTUcW_:resolvedLinks6[1]}},children:/*#__PURE__*/_jsx(FineButton,{DvcoCha11:getLocalizedValue(\"v21\",activeLocale)??\"VIEW MORE\",height:\"100%\",id:\"V5GL_ZBCS\",layoutId:\"V5GL_ZBCS\",style:{height:\"100%\"},ucDkTUcW_:resolvedLinks6[0],variant:\"b4RVKX0_u\",width:\"100%\",xmKiaukJS:11})})})})})]})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bof6zg\",\"data-framer-name\":\"2 Columns Image Text\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-g8wwvl\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v52\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1y54gk8\",\"data-styles-preset\":\"jinrtx9vo\",style:{\"--framer-text-alignment\":\"center\"},children:\"calendar upcomings\"})}),className:\"framer-1hiva1h\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6fu0r7\",\"data-framer-name\":\"Grid 1\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dovvqo\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-178gtfr\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sPDqcH2Nc:{query:{from:{alias:\"BUBuqlhhw\",data:Calendar,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},select:[{collection:\"BUBuqlhhw\",name:\"CtG5WOLZC\",type:\"Identifier\"},{collection:\"BUBuqlhhw\",name:\"DWd3cKJcN\",type:\"Identifier\"},{collection:\"BUBuqlhhw\",name:\"E2gwteORW\",type:\"Identifier\"},{collection:\"BUBuqlhhw\",name:\"L24ckOGjy\",type:\"Identifier\"},{collection:\"BUBuqlhhw\",name:\"IBJQRZtOP\",type:\"Identifier\"},{collection:\"BUBuqlhhw\",name:\"LSARbCLL1\",type:\"Identifier\"},{collection:\"BUBuqlhhw\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"BUBuqlhhw\",name:\"TSVToRkmV\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"hOuinXLFj\"},type:\"BinaryOperation\"}}}},children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"BUBuqlhhw\",data:Calendar,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},select:[{collection:\"BUBuqlhhw\",name:\"CtG5WOLZC\",type:\"Identifier\"},{collection:\"BUBuqlhhw\",name:\"DWd3cKJcN\",type:\"Identifier\"},{collection:\"BUBuqlhhw\",name:\"E2gwteORW\",type:\"Identifier\"},{collection:\"BUBuqlhhw\",name:\"L24ckOGjy\",type:\"Identifier\"},{collection:\"BUBuqlhhw\",name:\"IBJQRZtOP\",type:\"Identifier\"},{collection:\"BUBuqlhhw\",name:\"LSARbCLL1\",type:\"Identifier\"},{collection:\"BUBuqlhhw\",name:\"id\",type:\"Identifier\"}],where:{collection:\"BUBuqlhhw\",name:\"n9oFGlq6z\",type:\"Identifier\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({CtG5WOLZC:CtG5WOLZCBUBuqlhhw,DWd3cKJcN:DWd3cKJcNBUBuqlhhw,E2gwteORW:E2gwteORWBUBuqlhhw,IBJQRZtOP:IBJQRZtOPBUBuqlhhw,id:idBUBuqlhhw,L24ckOGjy:L24ckOGjyBUBuqlhhw,LSARbCLL1:LSARbCLL1BUBuqlhhw},index)=>{CtG5WOLZCBUBuqlhhw??=\"\";E2gwteORWBUBuqlhhw??=\"\";L24ckOGjyBUBuqlhhw??=\"\";LSARbCLL1BUBuqlhhw??=\"\";const textContent=toDateString(IBJQRZtOPBUBuqlhhw,activeLocaleCode);return /*#__PURE__*/_jsx(LayoutGroup,{id:`BUBuqlhhw-${idBUBuqlhhw}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{CtG5WOLZC:CtG5WOLZCBUBuqlhhw},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{CtG5WOLZC:CtG5WOLZCBUBuqlhhw},webPageId:\"SOP2aMLFD\"},motionChild:true,nodeId:\"qIXqdoeym\",scopeId:\"xEnMTqk3e\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-qx517y framer-1wrhnwk\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{K9uzW5S4w:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7077.4663+0+35.2+0+0+0+0+0+0+0),sizes:`max((${componentViewport?.width||\"100vw\"} - 60px) / 2, 1px)`,...toResponsiveImage(DWd3cKJcNBUBuqlhhw)}},sPDqcH2Nc:{background:{alt:\"\",fit:\"fill\",sizes:`max(${componentViewport?.width||\"100vw\"} - 80px, 200px)`,...toResponsiveImage(DWd3cKJcNBUBuqlhhw)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:`max(${componentViewport?.width||\"100vw\"} - 80px, 1px)`,...toResponsiveImage(DWd3cKJcNBUBuqlhhw)},className:\"framer-1tyl53z\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nwatl0\",\"data-framer-name\":\"Post\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ezxlLgdkb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO0YzNyBXaWNrbG93IE1lZGl1bQ==\",\"--framer-font-family\":'\"F37 Wicklow Medium\", \"F37 Wicklow Medium Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-letter-spacing\":\"0.2em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\",\"--framer-text-transform\":\"uppercase\"},children:\"Be Sessions\"})})},K9uzW5S4w:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO0YzNyBXaWNrbG93IE1lZGl1bQ==\",\"--framer-font-family\":'\"F37 Wicklow Medium\", \"F37 Wicklow Medium Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"0.16em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\",\"--framer-text-transform\":\"uppercase\"},children:\"Be Sessions\"})})},sPDqcH2Nc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO0YzNyBXaWNrbG93IE1lZGl1bQ==\",\"--framer-font-family\":'\"F37 Wicklow Medium\", \"F37 Wicklow Medium Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"0.16em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\",\"--framer-text-transform\":\"uppercase\"},children:\"Be Sessions\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO0YzNyBXaWNrbG93IE1lZGl1bQ==\",\"--framer-font-family\":'\"F37 Wicklow Medium\", \"F37 Wicklow Medium Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"0.16em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\",\"--framer-text-transform\":\"uppercase\"},children:\"Be Sessions\"})}),className:\"framer-gpcyxd\",\"data-framer-name\":\"Title\",fonts:[\"CUSTOM;F37 Wicklow Medium\"],text:E2gwteORWBUBuqlhhw,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-ekhiuq\",\"data-styles-preset\":\"VS3Burc9v\",children:\"Muta\"})}),className:\"framer-1qndgwr\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:L24ckOGjyBUBuqlhhw,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lvzqn3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0YzNyBXaWNrbG93IExpZ2h0\",\"--framer-font-family\":'\"F37 Wicklow Light\", \"F37 Wicklow Light Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-letter-spacing\":\"0.1em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(153, 153, 153)\",\"--framer-text-transform\":\"uppercase\"},children:\"Jul 15, 2024\"})}),className:\"framer-1keh31v\",\"data-framer-name\":\"Date\",fonts:[\"CUSTOM;F37 Wicklow Light\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0YzNyBXaWNrbG93IExpZ2h0\",\"--framer-font-family\":'\"F37 Wicklow Light\", \"F37 Wicklow Light Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-letter-spacing\":\"0.1em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(153, 153, 153)\",\"--framer-text-transform\":\"uppercase\"},children:\"at Maresias\"})}),className:\"framer-7p9rnj\",\"data-framer-name\":\"Date\",fonts:[\"CUSTOM;F37 Wicklow Light\"],text:LSARbCLL1BUBuqlhhw,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})})},idBUBuqlhhw);})})})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1d1digq\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"p4gCxza95\"},implicitPathVariables:undefined},{href:{webPageId:\"p4gCxza95\"},implicitPathVariables:undefined},{href:{webPageId:\"p4gCxza95\"},implicitPathVariables:undefined},{href:{webPageId:\"p4gCxza95\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rf4cxf-container\",nodeId:\"FVd6txrRg\",scopeId:\"xEnMTqk3e\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ezxlLgdkb:{ucDkTUcW_:resolvedLinks7[3]},K9uzW5S4w:{ucDkTUcW_:resolvedLinks7[2],xmKiaukJS:14},sPDqcH2Nc:{ucDkTUcW_:resolvedLinks7[1]}},children:/*#__PURE__*/_jsx(FineButton,{DvcoCha11:getLocalizedValue(\"v21\",activeLocale)??\"VIEW MORE\",height:\"100%\",id:\"FVd6txrRg\",layoutId:\"FVd6txrRg\",style:{height:\"100%\"},ucDkTUcW_:resolvedLinks7[0],variant:\"b4RVKX0_u\",width:\"100%\",xmKiaukJS:11})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18c9hre\",\"data-framer-name\":\"MUSIC\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-f7sxfd\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{K9uzW5S4w:{children:getLocalizedValue(\"v55\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0YzNyBXaWNrbG93IFJlZ3VsYXI=\",\"--framer-font-family\":'\"F37 Wicklow Regular\", \"F37 Wicklow Regular Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"0.3em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-a8ce1255-33a4-4cd6-a3c6-1fbffe557549, rgb(60, 57, 54))\",\"--framer-text-transform\":\"uppercase\"},children:\"DISCOVER NEW MUSIC WITH us\"})}),fonts:[\"CUSTOM;F37 Wicklow Regular\"]},sPDqcH2Nc:{children:getLocalizedValue(\"v54\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0YzNyBXaWNrbG93IExpZ2h0\",\"--framer-font-family\":'\"F37 Wicklow Light\", \"F37 Wicklow Light Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"0.4em\",\"--framer-line-height\":\"0.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a8ce1255-33a4-4cd6-a3c6-1fbffe557549, rgb(60, 57, 54))\",\"--framer-text-transform\":\"uppercase\"},children:\"DISCOVER NEW MUSIC WITH us\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v53\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0YzNyBXaWNrbG93IExpZ2h0\",\"--framer-font-family\":'\"F37 Wicklow Light\", \"F37 Wicklow Light Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"0.66em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a8ce1255-33a4-4cd6-a3c6-1fbffe557549, rgb(60, 57, 54))\",\"--framer-text-transform\":\"uppercase\"},children:\"DISCOVER NEW MUSIC WITH us\"})}),className:\"framer-12vzsfm\",fonts:[\"CUSTOM;F37 Wicklow Light\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10cdc26\",children:/*#__PURE__*/_jsx(Link,{href:\"https://soundcloud.com/betulummusic\",motionChild:true,nodeId:\"fVs60_5aR\",scopeId:\"xEnMTqk3e\",children:/*#__PURE__*/_jsx(motion.a,{\"aria-label\":\"Go to Be Tulum Soundcloud\",className:\"framer-1rmbuon framer-1wrhnwk\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ezxlLgdkb:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 36 17\"><path d=\"M 29.771 6.783 C 30.901 6.499 31.989 6.531 33.021 7.029 C 34.907 7.939 35.974 9.505 35.988 11.692 C 36.002 13.91 34.926 15.497 33.044 16.47 C 32.389 16.809 31.68 16.944 30.951 16.944 C 26.898 16.946 22.844 16.945 18.79 16.945 C 18.012 16.945 17.606 16.515 17.606 15.689 C 17.606 11.132 17.607 6.576 17.605 2.02 C 17.605 1.472 17.817 1.081 18.282 0.815 C 19.515 0.108 20.848 -0.048 22.216 0.011 C 25.701 0.162 28.771 2.808 29.68 6.425 C 29.708 6.537 29.737 6.649 29.77 6.782 Z M 14.952 8.484 C 15.026 7.204 15.153 4.991 15.284 2.778 C 15.299 2.528 15.459 2.362 15.671 2.354 C 15.89 2.346 16.07 2.518 16.089 2.774 C 16.321 5.893 16.567 9.013 16.438 12.144 C 16.378 13.583 16.219 15.017 16.098 16.453 C 16.072 16.757 15.923 16.909 15.689 16.912 C 15.445 16.914 15.312 16.76 15.271 16.434 C 14.978 14.105 14.897 11.766 14.952 8.484 Z M 11.481 10.643 C 11.498 12.566 11.382 14.481 11.139 16.387 C 11.135 16.413 11.129 16.44 11.126 16.467 C 11.081 16.838 10.95 17 10.701 16.993 C 10.465 16.986 10.341 16.81 10.297 16.465 C 10.051 14.55 9.905 12.624 9.961 10.695 C 10.024 8.507 10.18 6.322 10.301 4.136 C 10.319 3.813 10.47 3.65 10.707 3.639 C 10.905 3.631 11.109 3.816 11.136 4.139 C 11.32 6.304 11.485 8.468 11.481 10.643 Z M 13.982 10.496 C 13.976 12.482 13.857 14.46 13.623 16.43 C 13.584 16.76 13.432 16.928 13.182 16.926 C 12.935 16.924 12.791 16.749 12.755 16.419 C 12.439 13.5 12.359 10.574 12.513 7.642 C 12.567 6.607 12.674 5.576 12.759 4.543 C 12.786 4.218 12.943 4.036 13.186 4.033 C 13.427 4.03 13.586 4.212 13.624 4.534 C 13.86 6.514 13.976 8.501 13.982 10.496 Z M 9.005 10.842 C 9.003 12.728 8.88 14.606 8.639 16.475 C 8.602 16.765 8.45 16.933 8.224 16.94 C 7.998 16.947 7.838 16.789 7.802 16.491 C 7.541 14.387 7.406 12.273 7.476 10.153 C 7.527 8.597 7.669 7.044 7.778 5.49 C 7.81 5.033 7.951 4.848 8.219 4.843 C 8.482 4.839 8.612 5.012 8.67 5.477 C 8.894 7.258 9.001 9.046 9.005 10.842 Z M 2.475 11.577 C 2.475 10.286 2.573 9.003 2.789 7.731 C 2.843 7.413 2.986 7.25 3.217 7.241 C 3.457 7.231 3.604 7.389 3.669 7.726 C 4.077 9.831 4.098 11.95 3.887 14.078 C 3.821 14.749 3.735 15.419 3.656 16.09 C 3.62 16.394 3.489 16.529 3.236 16.533 C 2.979 16.537 2.843 16.416 2.814 16.102 C 2.674 14.596 2.543 13.09 2.409 11.584 Z M 6.584 11.786 C 6.431 13.372 6.278 14.958 6.121 16.544 C 6.095 16.798 5.927 16.948 5.713 16.943 C 5.484 16.937 5.34 16.784 5.314 16.469 C 5.196 15.096 5.061 13.723 4.982 12.347 C 4.9 10.929 5.024 9.519 5.296 8.126 C 5.344 7.876 5.449 7.701 5.708 7.694 C 5.967 7.686 6.087 7.856 6.142 8.103 C 6.409 9.312 6.506 10.54 6.514 11.778 C 6.538 11.781 6.561 11.784 6.585 11.786 Z M 1.61 11.672 C 1.448 12.71 1.289 13.749 1.119 14.786 C 1.085 14.994 0.935 15.114 0.732 15.115 C 0.529 15.116 0.387 14.997 0.346 14.787 C -0.028 12.88 -0.179 10.97 0.31 9.055 C 0.366 8.837 0.501 8.71 0.711 8.703 C 0.935 8.695 1.075 8.825 1.143 9.051 C 1.397 9.9 1.534 10.767 1.535 11.658 C 1.56 11.662 1.585 11.667 1.611 11.671 Z\" fill=\"var(--token-567a3fdb-2206-449f-bef7-f1d14b893c45, rgb(156, 146, 137)) /* {&quot;name&quot;:&quot;oscuromedio&quot;} */\"></path></svg>',svgContentId:9889946925},K9uzW5S4w:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 31 15\"><path d=\"M 25.636 5.985 C 26.609 5.734 27.546 5.763 28.435 6.202 C 30.058 7.005 30.978 8.387 30.989 10.316 C 31.001 12.273 30.075 13.673 28.455 14.532 C 27.89 14.831 27.28 14.95 26.652 14.951 C 23.162 14.953 19.671 14.952 16.18 14.951 C 15.51 14.951 15.161 14.572 15.161 13.843 C 15.16 9.823 15.161 5.803 15.159 1.782 C 15.159 1.299 15.343 0.954 15.743 0.719 C 16.804 0.095 17.953 -0.042 19.131 0.01 C 22.132 0.143 24.775 2.477 25.558 5.669 C 25.582 5.768 25.607 5.867 25.636 5.984 Z M 12.875 7.486 C 12.939 6.357 13.049 4.404 13.161 2.452 C 13.174 2.231 13.312 2.084 13.495 2.077 C 13.683 2.07 13.838 2.222 13.855 2.448 C 14.055 5.199 14.266 7.952 14.155 10.715 C 14.104 11.985 13.966 13.25 13.862 14.517 C 13.84 14.786 13.712 14.92 13.51 14.922 C 13.3 14.925 13.185 14.788 13.15 14.5 C 12.898 12.446 12.828 10.382 12.875 7.486 Z M 9.886 9.391 C 9.901 11.088 9.801 12.777 9.592 14.459 C 9.589 14.482 9.583 14.506 9.581 14.529 C 9.542 14.857 9.429 15 9.215 14.994 C 9.012 14.988 8.905 14.832 8.866 14.528 C 8.655 12.838 8.529 11.139 8.577 9.437 C 8.632 7.506 8.766 5.578 8.87 3.649 C 8.885 3.364 9.016 3.22 9.22 3.211 C 9.39 3.204 9.566 3.367 9.589 3.652 C 9.748 5.562 9.89 7.472 9.886 9.391 Z M 12.04 9.261 C 12.035 11.014 11.933 12.759 11.731 14.497 C 11.697 14.788 11.566 14.936 11.351 14.935 C 11.138 14.933 11.014 14.779 10.984 14.487 C 10.711 11.912 10.643 9.33 10.775 6.743 C 10.821 5.83 10.914 4.92 10.987 4.008 C 11.01 3.722 11.145 3.561 11.354 3.558 C 11.562 3.556 11.699 3.717 11.732 4.001 C 11.935 5.747 12.035 7.501 12.04 9.261 Z M 7.754 9.567 C 7.753 11.231 7.647 12.888 7.44 14.537 C 7.407 14.793 7.277 14.941 7.082 14.947 C 6.887 14.953 6.75 14.814 6.718 14.551 C 6.494 12.695 6.377 10.829 6.437 8.959 C 6.482 7.586 6.603 6.215 6.698 4.844 C 6.726 4.441 6.847 4.278 7.078 4.274 C 7.304 4.269 7.416 4.422 7.466 4.833 C 7.658 6.404 7.75 7.982 7.754 9.567 Z M 2.131 10.215 C 2.131 9.075 2.216 7.944 2.402 6.821 C 2.448 6.541 2.571 6.397 2.77 6.389 C 2.976 6.38 3.103 6.52 3.16 6.817 C 3.511 8.674 3.529 10.544 3.348 12.421 C 3.29 13.014 3.216 13.605 3.148 14.197 C 3.117 14.465 3.004 14.584 2.787 14.588 C 2.565 14.591 2.448 14.485 2.423 14.207 C 2.302 12.879 2.19 11.55 2.075 10.221 Z M 5.67 10.399 C 5.537 11.798 5.406 13.198 5.27 14.597 C 5.249 14.821 5.104 14.954 4.919 14.95 C 4.723 14.945 4.599 14.809 4.576 14.531 C 4.475 13.32 4.358 12.109 4.29 10.895 C 4.22 9.643 4.326 8.4 4.56 7.17 C 4.602 6.949 4.693 6.795 4.915 6.789 C 5.138 6.782 5.242 6.932 5.289 7.149 C 5.519 8.217 5.602 9.3 5.609 10.393 C 5.63 10.395 5.65 10.397 5.67 10.399 Z M 1.387 10.298 C 1.247 11.215 1.11 12.131 0.964 13.046 C 0.934 13.23 0.805 13.336 0.631 13.337 C 0.456 13.338 0.333 13.233 0.298 13.048 C -0.024 11.365 -0.155 9.679 0.267 7.99 C 0.315 7.797 0.431 7.685 0.612 7.679 C 0.805 7.672 0.926 7.787 0.984 7.986 C 1.203 8.735 1.321 9.501 1.321 10.286 C 1.343 10.29 1.365 10.294 1.387 10.298 Z\" fill=\"var(--token-567a3fdb-2206-449f-bef7-f1d14b893c45, rgb(156, 146, 137)) /* {&quot;name&quot;:&quot;oscuromedio&quot;} */\"></path></svg>',svgContentId:9480794353}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-y5gld4\",\"data-framer-name\":\"SOUNCLOUDbetulum\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 19 9\"><path d=\"M 15.712 3.591 C 16.309 3.441 16.883 3.458 17.428 3.721 C 18.423 4.203 18.986 5.032 18.993 6.19 C 19.001 7.364 18.433 8.204 17.44 8.719 C 17.094 8.899 16.72 8.97 16.335 8.97 C 14.196 8.972 12.056 8.971 9.917 8.971 C 9.506 8.971 9.292 8.743 9.292 8.306 C 9.292 5.894 9.292 3.482 9.291 1.069 C 9.291 0.779 9.404 0.572 9.649 0.432 C 10.299 0.057 11.003 -0.025 11.725 0.006 C 13.565 0.086 15.185 1.486 15.664 3.401 C 15.679 3.461 15.695 3.52 15.712 3.591 Z M 7.891 4.492 C 7.93 3.814 7.998 2.642 8.067 1.471 C 8.074 1.339 8.159 1.251 8.271 1.246 C 8.387 1.242 8.482 1.333 8.492 1.469 C 8.614 3.12 8.744 4.771 8.676 6.429 C 8.644 7.191 8.56 7.95 8.496 8.71 C 8.483 8.871 8.404 8.952 8.28 8.953 C 8.152 8.955 8.081 8.873 8.06 8.7 C 7.905 7.467 7.862 6.229 7.891 4.492 Z M 6.059 5.635 C 6.069 6.653 6.007 7.666 5.879 8.675 C 5.877 8.689 5.874 8.703 5.872 8.718 C 5.848 8.914 5.779 9 5.648 8.996 C 5.523 8.993 5.458 8.899 5.434 8.717 C 5.305 7.703 5.227 6.684 5.257 5.662 C 5.29 4.504 5.373 3.347 5.436 2.19 C 5.446 2.018 5.526 1.932 5.651 1.927 C 5.755 1.922 5.863 2.02 5.877 2.191 C 5.975 3.337 6.062 4.483 6.059 5.635 Z M 7.38 5.557 C 7.376 6.608 7.314 7.655 7.19 8.698 C 7.169 8.873 7.089 8.962 6.957 8.961 C 6.827 8.96 6.751 8.867 6.732 8.692 C 6.565 7.147 6.523 5.598 6.604 4.046 C 6.632 3.498 6.689 2.952 6.734 2.405 C 6.748 2.233 6.831 2.136 6.959 2.135 C 7.086 2.134 7.17 2.23 7.191 2.4 C 7.315 3.448 7.376 4.501 7.38 5.557 Z M 4.753 5.74 C 4.752 6.739 4.687 7.733 4.56 8.722 C 4.54 8.876 4.46 8.964 4.34 8.968 C 4.221 8.972 4.137 8.889 4.118 8.731 C 3.98 7.617 3.909 6.497 3.945 5.375 C 3.973 4.551 4.047 3.729 4.105 2.906 C 4.122 2.664 4.196 2.567 4.338 2.564 C 4.476 2.562 4.545 2.653 4.576 2.9 C 4.694 3.842 4.75 4.789 4.753 5.74 Z M 1.306 6.129 C 1.306 5.445 1.358 4.766 1.472 4.093 C 1.5 3.924 1.576 3.838 1.698 3.833 C 1.824 3.828 1.902 3.912 1.937 4.09 C 2.152 5.205 2.163 6.326 2.052 7.453 C 2.016 7.809 1.971 8.163 1.929 8.518 C 1.91 8.679 1.841 8.751 1.708 8.753 C 1.572 8.755 1.5 8.691 1.485 8.524 C 1.411 7.727 1.342 6.93 1.272 6.133 Z M 3.475 6.24 C 3.394 7.079 3.314 7.919 3.23 8.758 C 3.217 8.893 3.128 8.972 3.015 8.97 C 2.895 8.967 2.819 8.886 2.804 8.719 C 2.743 7.992 2.671 7.265 2.629 6.537 C 2.586 5.786 2.652 5.04 2.795 4.302 C 2.821 4.17 2.876 4.077 3.012 4.073 C 3.149 4.069 3.213 4.159 3.241 4.29 C 3.383 4.93 3.434 5.58 3.438 6.236 C 3.45 6.237 3.463 6.238 3.475 6.24 Z M 0.85 6.179 C 0.764 6.729 0.68 7.279 0.591 7.828 C 0.572 7.938 0.493 8.001 0.387 8.002 C 0.279 8.003 0.204 7.94 0.182 7.829 C -0.015 6.819 -0.095 5.808 0.163 4.794 C 0.193 4.678 0.264 4.611 0.375 4.607 C 0.493 4.603 0.568 4.672 0.603 4.792 C 0.737 5.241 0.809 5.7 0.81 6.172 C 0.823 6.174 0.837 6.176 0.85 6.179 Z\" fill=\"var(--token-567a3fdb-2206-449f-bef7-f1d14b893c45, rgb(156, 146, 137)) /* {&quot;name&quot;:&quot;oscuromedio&quot;} */\"></path></svg>',svgContentId:12517322704,withExternalLayout:true})})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{K9uzW5S4w:{y:(componentViewport?.y||0)+0+7449.6663}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:820,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1sjc34u-container\",nodeId:\"z331pelDE\",scopeId:\"xEnMTqk3e\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{K9uzW5S4w:{variant:\"bFeLjgOds\"},sPDqcH2Nc:{variant:\"JtCcqEWWH\"}},children:/*#__PURE__*/_jsx(FooterJustified4,{height:\"100%\",id:\"z331pelDE\",layoutId:\"z331pelDE\",style:{width:\"100%\"},variant:\"NvBDBAH49\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://wa.me/+18669484065\",motionChild:true,nodeId:\"TIoiPs2pZ\",openInNewTab:true,scopeId:\"xEnMTqk3e\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-10ens30 framer-1wrhnwk\",\"data-framer-name\":\"whatsappicontransparente\",fill:\"black\",intrinsicHeight:639,intrinsicWidth:636,svg:'<svg id=\"Capa_2\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 636.29 638.93\"><defs><style>.cls-1{fill:#9a928a;stroke-width:0}</style></defs><g id=\"Capa_1-2\"><path class=\"cls-1\" d=\"M0 638.93c8.03-29.38 15.79-57.75 23.55-86.13 6.6-24.14 13.32-48.24 19.63-72.45.78-3.01.29-7.12-1.2-9.86-78.96-144.9-36.44-323.05 100.09-415.68 65.51-44.44 138.42-63 216.79-51.46C490.4 22.71 578.37 97.26 621.02 222.64c39.33 115.6.43 250.48-91.49 330.87-49.11 42.95-105.63 69.48-170.28 77.74-64.63 8.25-126.26-2.67-184.36-32.34-5.1-2.61-9.54-3.17-15.06-1.7-51.12 13.65-102.31 27.05-153.49 40.5-1.68.44-3.42.67-6.34 1.23Zm75.98-75.06c2.06-.45 3.09-.64 4.11-.91 28.7-7.52 57.44-14.89 86.06-22.68 6.41-1.74 11.43-1.18 17.37 2.25 77.27 44.59 157.88 51.22 239.8 15.85 113.66-49.07 174.87-164.64 154.78-287.43C558.65 152.07 452.64 58.57 331.96 54.06c-66.67-2.49-126.66 16.42-178.34 58.77-59.69 48.91-92.31 112.51-97.11 189.55-3.57 57.27 11.02 110.25 42.25 158.48 2.76 4.26 3.34 7.96 1.94 12.91-8.35 29.62-16.32 59.34-24.72 90.09Z\"/><path d=\"M75.98 563.87c8.39-30.76 16.36-60.48 24.72-90.09 1.4-4.96.82-8.65-1.94-12.91-31.23-48.22-45.82-101.21-42.25-158.48 4.8-77.04 37.43-140.65 97.11-189.55 51.68-42.35 111.67-61.26 178.34-58.77 120.68 4.51 226.7 98 246.14 216.89 20.08 122.79-41.12 238.36-154.78 287.43-81.92 35.37-162.53 28.73-239.8-15.85-5.94-3.43-10.96-3.99-17.37-2.25-28.62 7.79-57.36 15.16-86.06 22.68-1.01.27-2.05.46-4.11.91ZM216.1 171.39c-15.56-3.02-26.2 3.95-35.63 15.04-21.64 25.46-26.63 54.31-18.41 85.93 6.77 26.08 21.92 47.69 37.71 68.93 43.95 59.12 98.69 103.17 170.81 123.26 28.73 8 55.75 6.28 81.51-10.39 21.09-13.64 27.89-33.38 27.23-56.88-.08-2.75-2.29-6.77-4.64-7.94-22.39-11.13-44.96-21.88-67.62-32.47-6.53-3.05-11.64-.72-16.03 5.15-7.56 10.11-15.81 19.71-23.7 29.57-4.36 5.45-9.51 6.39-15.94 3.82-47.02-18.74-83.01-50.2-108.81-93.62-3.4-5.72-3.24-10.45 1.07-15.73 6.72-8.23 12.88-16.92 19.26-25.43 4.13-5.51 4.19-11.14 1.45-17.48-7.81-18.09-15.56-36.22-22.64-54.6-4.74-12.31-11.11-20.97-25.63-17.18Z\" style=\"fill:#e3e0dc;stroke-width:0\"/><path class=\"cls-1\" d=\"M216.1 171.39c14.51-3.79 20.88 4.87 25.63 17.18 7.08 18.38 14.83 36.51 22.64 54.6 2.74 6.34 2.68 11.96-1.45 17.48-6.38 8.51-12.54 17.2-19.26 25.43-4.31 5.28-4.46 10.01-1.07 15.73 25.79 43.42 61.79 74.88 108.81 93.62 6.44 2.57 11.58 1.63 15.94-3.82 7.9-9.86 16.15-19.45 23.7-29.57 4.39-5.88 9.5-8.21 16.03-5.15 22.65 10.58 45.23 21.34 67.62 32.47 2.35 1.17 4.56 5.18 4.64 7.94.65 23.5-6.15 43.24-27.23 56.88-25.77 16.67-52.79 18.39-81.51 10.39-72.13-20.09-126.86-64.14-170.81-123.26-15.79-21.24-30.94-42.85-37.71-68.93-8.21-31.62-3.23-60.47 18.41-85.93 9.43-11.09 20.07-18.06 35.63-15.04Z\"/></g></svg>',withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-kQh4y.framer-1wrhnwk, .framer-kQh4y .framer-1wrhnwk { display: block; }\",\".framer-kQh4y.framer-bseg4z { align-content: center; align-items: center; background-color: #e4e0dc; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-kQh4y .framer-1ydyl6l-container { flex: none; height: auto; position: sticky; top: 0px; width: 100%; z-index: 6; }\",\".framer-kQh4y .framer-1sxjw9c { flex: none; gap: 10px; height: 100vh; left: 0px; overflow: hidden; position: fixed; right: 0px; top: 0px; z-index: 0; }\",\".framer-kQh4y .framer-1cektvf-container { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: 0px; width: 100%; z-index: 0; }\",\".framer-kQh4y .framer-an5hwi-container { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); opacity: 0.2; position: absolute; top: 0px; width: 100%; z-index: 0; }\",\".framer-kQh4y .framer-43sy1h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: 92vh; justify-content: flex-start; overflow: hidden; padding: 0px 0px 15px 0px; position: relative; width: 100%; }\",\".framer-kQh4y .framer-fqyke1 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 459px; height: 1px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-kQh4y .framer-1l2zo4c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 42px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-kQh4y .framer-1mv5y7p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-kQh4y .framer-1srvndt { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 75%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-kQh4y .framer-1dl7ua0 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-kQh4y .framer-kg52x6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-kQh4y .framer-1mu2ab1 { flex: none; height: 38px; overflow: hidden; position: relative; width: 203px; }\",\".framer-kQh4y .framer-1pfkz19-container { flex: none; height: 19px; position: relative; width: 21px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-kQh4y .framer-18mj1vl { align-content: center; align-items: center; background-color: #e4e0dc; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 170px; height: 934px; justify-content: center; overflow: hidden; padding: 66px 0px 20px 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-kQh4y .framer-z0at5p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 102%; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-kQh4y .framer-vjtdbq { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 23%; position: absolute; top: 98%; transform: translate(-50%, -50%); white-space: pre; width: auto; z-index: 1; }\",\".framer-kQh4y .framer-1flyc7i { align-content: flex-end; align-items: flex-end; 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: 50%; }\",\".framer-kQh4y .framer-dboq9x { flex: none; height: 664px; overflow: hidden; position: relative; width: 100%; }\",\".framer-kQh4y .framer-1v4gjq4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 80%; justify-content: center; overflow: visible; padding: 20px 0px 20px 0px; position: relative; width: 47%; }\",\".framer-kQh4y .framer-15g2udr { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 17px; height: 1px; justify-content: flex-start; max-width: 2018px; padding: 0px; position: relative; width: 86%; }\",\".framer-kQh4y .framer-qvi2v2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 19px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-kQh4y .framer-rubp84 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 97%; word-break: break-word; word-wrap: break-word; }\",\".framer-kQh4y .framer-4gcs49, .framer-kQh4y .framer-nc3kz7 { background-color: var(--token-a8ce1255-33a4-4cd6-a3c6-1fbffe557549, #3c3936); flex: none; height: 1px; opacity: 0.41; overflow: hidden; position: relative; width: 100%; }\",\".framer-kQh4y .framer-akdute, .framer-kQh4y .framer-1drfkvc, .framer-kQh4y .framer-103znmc, .framer-kQh4y .framer-1j5913j { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-kQh4y .framer-4sce7u { bottom: 21px; flex: none; height: 38%; overflow: hidden; position: absolute; right: 38px; width: 39%; z-index: 1; }\",\".framer-kQh4y .framer-1mznrdu { align-content: center; align-items: center; background-color: var(--token-3c17ba5d-be30-4618-bffc-f1faa914f096, #e4e0dc); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 88px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 40px 40px 40px; position: relative; width: 100%; z-index: 2; }\",\".framer-kQh4y .framer-y2lqzf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 28px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-kQh4y .framer-9qtx2y, .framer-kQh4y .framer-1tu544h, .framer-kQh4y .framer-1guowq8 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-kQh4y .framer-hlj2wg, .framer-kQh4y .framer-1q9eiy6, .framer-kQh4y .framer-y21uop { flex: none; height: 350px; overflow: hidden; position: relative; width: 100%; }\",\".framer-kQh4y .framer-blco1 { bottom: 0px; flex: none; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: 0px; width: 100%; }\",\".framer-kQh4y .framer-1warcus, .framer-kQh4y .framer-sgfi6n, .framer-kQh4y .framer-10nitcj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: center; padding: 0px 0px 30px 0px; position: relative; width: 100%; }\",\".framer-kQh4y .framer-1om7ika { 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: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-kQh4y .framer-1xjqci1, .framer-kQh4y .framer-i1g9eo, .framer-kQh4y .framer-spkkbs, .framer-kQh4y .framer-3x2kz9, .framer-kQh4y .framer-1662kn7, .framer-kQh4y .framer-1q9blrw, .framer-kQh4y .framer-iecdgp, .framer-kQh4y .framer-7oj000, .framer-kQh4y .framer-1m2r03t, .framer-kQh4y .framer-1n4vcwh, .framer-kQh4y .framer-16ek8sh, .framer-kQh4y .framer-1w5gza8, .framer-kQh4y .framer-1hiva1h { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-kQh4y .framer-dvv2kz, .framer-kQh4y .framer-7vcgix, .framer-kQh4y .framer-gg3ev9, .framer-kQh4y .framer-1wr4mi7 { background-color: var(--token-a8ce1255-33a4-4cd6-a3c6-1fbffe557549, #3c3936); flex: none; height: 1px; opacity: 0.5; overflow: hidden; position: relative; width: 100%; }\",\".framer-kQh4y .framer-1od1pxy, .framer-kQh4y .framer-joxdph, .framer-kQh4y .framer-d01uf6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 33px; justify-content: flex-end; overflow: visible; padding: 15px 0px 15px 0px; position: relative; width: 100%; }\",\".framer-kQh4y .framer-1su3bk7-container, .framer-kQh4y .framer-1y1shai-container, .framer-kQh4y .framer-912m9d-container, .framer-kQh4y .framer-2spa6x-container, .framer-kQh4y .framer-feherv-container, .framer-kQh4y .framer-wyfd3i-container, .framer-kQh4y .framer-1kvw1ac-container, .framer-kQh4y .framer-1rf4cxf-container { flex: none; height: 33px; position: relative; width: auto; }\",\".framer-kQh4y .framer-1ti0jlr, .framer-kQh4y .framer-zlewgc { 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: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-kQh4y .framer-1heoaj5 { flex: none; height: 450px; left: 0px; overflow: visible; position: absolute; top: 0px; width: 100%; }\",\".framer-kQh4y .framer-usm8xv { align-content: center; align-items: center; background-color: var(--token-3c17ba5d-be30-4618-bffc-f1faa914f096, #e4e0dc); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 23px; height: 462px; justify-content: center; overflow: hidden; padding: 14px 40px 37px 40px; position: relative; width: 100%; z-index: 2; }\",\".framer-kQh4y .framer-1y4t08v { background-color: var(--token-567a3fdb-2206-449f-bef7-f1d14b893c45, #9c9289); flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-kQh4y .framer-13vnlk1 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: 1px; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-kQh4y .framer-1v043m6 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-kQh4y .framer-110m14l { flex: none; height: 100%; overflow: hidden; position: relative; width: 50%; }\",\".framer-kQh4y .framer-1vsckb6 { flex: none; height: 100%; left: 0px; overflow: visible; position: absolute; top: 0px; width: 100%; }\",\".framer-kQh4y .framer-pk2kun { align-content: center; align-items: center; background-color: var(--token-b2975073-164e-427f-8746-d4a0a5664fce, #ffffff); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: hidden; padding: 30px 50px 30px 50px; position: relative; width: 50%; }\",\".framer-kQh4y .framer-alq6cb { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 34px; height: 100%; justify-content: center; max-width: 2018px; padding: 0px; position: relative; width: 1px; }\",\".framer-kQh4y .framer-14hl8ep { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 19px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-kQh4y .framer-ft4dg0 { flex: none; height: auto; opacity: 0.55; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-kQh4y .framer-z9l2hg { 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-kQh4y .framer-182qton-container { flex: none; height: 39px; position: relative; width: 100%; }\",\".framer-kQh4y .framer-qrhax9 { background-color: var(--token-3c17ba5d-be30-4618-bffc-f1faa914f096, #e4e0dc); flex: none; gap: 10px; height: 61.5vh; overflow: hidden; position: relative; width: 100%; z-index: 2; }\",\".framer-kQh4y .framer-1sahh79 { flex: none; height: 124%; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: calc(44.15011037527596% - 124.06181015452538% / 2); width: 100%; }\",\".framer-kQh4y .framer-1ygkdd2 { align-content: center; align-items: center; background-color: var(--token-3c17ba5d-be30-4618-bffc-f1faa914f096, #e4e0dc); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 45px; height: min-content; justify-content: center; overflow: hidden; padding: 45px 40px 50px 40px; position: relative; width: 100%; z-index: 2; }\",\".framer-kQh4y .framer-i8ch2a { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-kQh4y .framer-107gpj9, .framer-kQh4y .framer-11dulle, .framer-kQh4y .framer-1tqmkxx { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-kQh4y .framer-1p4922c, .framer-kQh4y .framer-rhrreq, .framer-kQh4y .framer-o1djrx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 284px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-kQh4y .framer-9et0i, .framer-kQh4y .framer-1a6cshx, .framer-kQh4y .framer-15jejsx { flex: 1 0 0px; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-kQh4y .framer-137og82 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-kQh4y .framer-1uga3tx, .framer-kQh4y .framer-1m4kivu { 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: center; padding: 0px; position: relative; width: 100%; }\",\".framer-kQh4y .framer-18if18w, .framer-kQh4y .framer-1w90eh1 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-kQh4y .framer-bgvd5n { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-kQh4y .framer-bof6zg { align-content: center; align-items: center; background-color: var(--token-3c17ba5d-be30-4618-bffc-f1faa914f096, #e4e0dc); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 40px 51px 40px; position: relative; width: 100%; z-index: 2; }\",\".framer-kQh4y .framer-g8wwvl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 6px 0px; position: relative; width: 100%; }\",\".framer-kQh4y .framer-6fu0r7 { align-content: center; align-items: center; background-color: var(--token-3c17ba5d-be30-4618-bffc-f1faa914f096, #e4e0dc); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 6px 0px 0px 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-kQh4y .framer-1dovvqo { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-kQh4y .framer-178gtfr { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-kQh4y .framer-qx517y { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: wrap; gap: 0px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; text-decoration: none; width: 1px; }\",\".framer-kQh4y .framer-1tyl53z { flex: none; height: 241px; position: relative; width: 100%; }\",\".framer-kQh4y .framer-1nwatl0 { align-content: flex-start; align-items: flex-start; background-color: var(--token-b2975073-164e-427f-8746-d4a0a5664fce, #ffffff); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: 90px; justify-content: flex-start; min-width: 150px; padding: 25px 10px 25px 10px; position: relative; width: 1px; }\",\".framer-kQh4y .framer-gpcyxd, .framer-kQh4y .framer-1qndgwr { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-kQh4y .framer-1lvzqn3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 16px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-kQh4y .framer-1keh31v, .framer-kQh4y .framer-7p9rnj { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-kQh4y .framer-1d1digq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 32px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-kQh4y .framer-18c9hre { align-content: center; align-items: center; background-color: #cfc9c4; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 52px; height: 39px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-kQh4y .framer-f7sxfd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 29px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 71%; }\",\".framer-kQh4y .framer-12vzsfm { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-kQh4y .framer-10cdc26 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 19px; height: 25px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 7%; }\",\".framer-kQh4y .framer-1rmbuon { align-content: center; align-items: center; background-color: var(--token-3c17ba5d-be30-4618-bffc-f1faa914f096, #e4e0dc); border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 25px; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 31px; }\",\".framer-kQh4y .framer-y5gld4 { flex: none; height: 9px; position: relative; width: 19px; }\",\".framer-kQh4y .framer-1sjc34u-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-kQh4y .framer-10ens30 { aspect-ratio: 0.9953051643192489 / 1; bottom: 47px; flex: none; height: var(--framer-aspect-ratio-supported, 35px); position: fixed; right: 36px; text-decoration: none; width: 35px; z-index: 10; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,\"@media (min-width: 810px) and (max-width: 1199px) { .framer-kQh4y.framer-bseg4z { width: 810px; } .framer-kQh4y .framer-43sy1h { height: 93vh; } .framer-kQh4y .framer-1l2zo4c { gap: 28px; } .framer-kQh4y .framer-1srvndt { width: 80%; } .framer-kQh4y .framer-1mu2ab1 { height: 49px; width: 215px; } .framer-kQh4y .framer-18mj1vl { gap: 14px; height: 907px; justify-content: flex-start; padding: 60px 0px 20px 0px; } .framer-kQh4y .framer-z0at5p { align-content: flex-start; align-items: flex-start; flex: 1 0 0px; height: 1px; } .framer-kQh4y .framer-vjtdbq { left: 26%; top: 84%; white-space: pre-wrap; width: 30%; word-break: break-word; word-wrap: break-word; } .framer-kQh4y .framer-1flyc7i { height: 541px; } .framer-kQh4y .framer-dboq9x { height: 100%; } .framer-kQh4y .framer-1v4gjq4 { height: 100%; justify-content: flex-start; padding: 5px 40px 20px 20px; width: 48%; } .framer-kQh4y .framer-15g2udr { flex: none; gap: 26px; height: min-content; width: 100%; } .framer-kQh4y .framer-rubp84 { width: 100%; } .framer-kQh4y .framer-4sce7u { bottom: 20px; height: 29%; right: 37px; width: 43%; } .framer-kQh4y .framer-1mznrdu { padding: 35px 40px 35px 40px; } .framer-kQh4y .framer-y2lqzf { gap: 33px; } .framer-kQh4y .framer-usm8xv { height: min-content; padding: 14px 30px 10px 30px; } .framer-kQh4y .framer-13vnlk1 { align-content: unset; align-items: unset; display: grid; flex: none; gap: 19px; grid-auto-rows: min-content; grid-template-columns: repeat(1, minmax(50px, 1fr)); grid-template-rows: repeat(3, min-content); height: min-content; justify-content: center; } .framer-kQh4y .framer-1v043m6 { align-self: center; flex: none; flex-direction: column; height: min-content; justify-self: center; width: 100%; } .framer-kQh4y .framer-110m14l { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 359px; justify-content: center; order: 0; padding: 0px; width: 100%; } .framer-kQh4y .framer-1vsckb6 { left: unset; position: relative; top: unset; width: 100%; } .framer-kQh4y .framer-pk2kun { height: min-content; order: 1; width: 100%; } .framer-kQh4y .framer-alq6cb { height: min-content; } .framer-kQh4y .framer-qrhax9 { height: 45.64814814814815vh; } .framer-kQh4y .framer-1ygkdd2 { padding: 45px 30px 10px 30px; } .framer-kQh4y .framer-i8ch2a { align-content: unset; align-items: unset; display: grid; gap: 19px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(200px, 1fr)); grid-template-rows: repeat(3, min-content); } .framer-kQh4y .framer-107gpj9, .framer-kQh4y .framer-11dulle, .framer-kQh4y .framer-1tqmkxx { align-self: start; flex: none; justify-self: start; width: 100%; } .framer-kQh4y .framer-bof6zg { padding: 0px 40px 40px 40px; } .framer-kQh4y .framer-g8wwvl { padding: 0px 0px 16px 0px; } .framer-kQh4y .framer-6fu0r7 { padding: 7px 0px 0px 0px; } .framer-kQh4y .framer-1dovvqo { flex-direction: column; gap: 0px; } .framer-kQh4y .framer-178gtfr { align-content: unset; align-items: unset; display: grid; flex: none; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(1, minmax(200px, 1fr)); justify-content: center; width: 100%; } .framer-kQh4y .framer-qx517y { align-self: start; flex: none; height: 100%; justify-self: start; width: 100%; } .framer-kQh4y .framer-1nwatl0 { height: 115px; justify-content: center; } .framer-kQh4y .framer-1lvzqn3 { gap: 18px; } .framer-kQh4y .framer-1d1digq { padding: 20px 0px 0px 0px; } .framer-kQh4y .framer-18c9hre { gap: 25px; height: 53px; } .framer-kQh4y .framer-f7sxfd { width: 82%; } .framer-kQh4y .framer-1rmbuon { height: 24px; width: 83%; } .framer-kQh4y .framer-10ens30 { height: var(--framer-aspect-ratio-supported, 46px); width: 46px; }}\",\"@media (max-width: 809px) { .framer-kQh4y.framer-bseg4z { width: 390px; } .framer-kQh4y .framer-43sy1h { height: 92.06161137440758vh; } .framer-kQh4y .framer-1l2zo4c { align-content: flex-end; align-items: flex-end; gap: 23px; justify-content: center; } .framer-kQh4y .framer-1mv5y7p { gap: 19px; justify-content: flex-end; order: 0; } .framer-kQh4y .framer-1srvndt { width: 90%; } .framer-kQh4y .framer-1dl7ua0 { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-kQh4y .framer-kg52x6 { gap: 11px; order: 1; padding: 0px 0px 0px 10px; width: 100%; } .framer-kQh4y .framer-1mu2ab1 { width: 163px; } .framer-kQh4y .framer-1pfkz19-container { height: 21px; width: 22px; } .framer-kQh4y .framer-18mj1vl { gap: 51px; height: 1465px; justify-content: flex-start; padding: 0px 0px 10px 0px; } .framer-kQh4y .framer-z0at5p { flex-direction: column; gap: 34px; height: min-content; justify-content: flex-start; order: 0; } .framer-kQh4y .framer-vjtdbq { left: unset; order: 2; position: relative; top: unset; transform: unset; white-space: pre-wrap; width: 74%; word-break: break-word; word-wrap: break-word; } .framer-kQh4y .framer-1flyc7i { align-content: center; align-items: center; height: 52.014218009478675vh; order: 1; width: 100%; } .framer-kQh4y .framer-dboq9x { flex: 1 0 0px; height: 1px; } .framer-kQh4y .framer-1v4gjq4 { align-content: center; align-items: center; gap: 38px; height: min-content; justify-content: flex-start; order: 0; padding: 50px 20px 44px 20px; width: 100%; } .framer-kQh4y .framer-15g2udr { flex: none; gap: 26px; height: min-content; width: 95%; } .framer-kQh4y .framer-qvi2v2 { gap: 26px; } .framer-kQh4y .framer-rubp84 { width: 99%; } .framer-kQh4y .framer-4sce7u { bottom: unset; flex: 1 0 0px; height: 1px; order: 2; position: relative; right: unset; width: 85%; } .framer-kQh4y .framer-1mznrdu { padding: 30px 30px 20px 30px; } .framer-kQh4y .framer-y2lqzf, .framer-kQh4y .framer-1dovvqo { flex-direction: column; gap: 8px; } .framer-kQh4y .framer-9qtx2y { flex: none; height: 635px; width: 100%; } .framer-kQh4y .framer-1tu544h, .framer-kQh4y .framer-1guowq8 { flex: none; width: 100%; } .framer-kQh4y .framer-1q9eiy6, .framer-kQh4y .framer-y21uop { height: 300px; } .framer-kQh4y .framer-1heoaj5 { bottom: 0px; height: unset; left: calc(50.00000000000002% - 100% / 2); } .framer-kQh4y .framer-usm8xv { height: min-content; padding: 3px 10px 37px 10px; } .framer-kQh4y .framer-iecdgp, .framer-kQh4y .framer-1hiva1h { width: 79%; } .framer-kQh4y .framer-13vnlk1 { align-content: unset; align-items: unset; display: grid; flex: none; gap: 38px; grid-auto-rows: min-content; grid-template-columns: repeat(1, minmax(200px, 1fr)); grid-template-rows: repeat(1, min-content); height: min-content; justify-content: center; width: 95%; } .framer-kQh4y .framer-1v043m6 { align-self: start; flex: none; flex-direction: column; height: min-content; justify-self: start; width: 100%; } .framer-kQh4y .framer-110m14l { height: 233px; width: 100%; } .framer-kQh4y .framer-pk2kun { height: min-content; padding: 26px 50px 26px 50px; width: 100%; } .framer-kQh4y .framer-alq6cb { height: min-content; } .framer-kQh4y .framer-14hl8ep { width: 100%; } .framer-kQh4y .framer-qrhax9 { height: 35.54502369668246vh; } .framer-kQh4y .framer-1ygkdd2 { padding: 45px 10px 50px 10px; } .framer-kQh4y .framer-1m2r03t { width: 103%; } .framer-kQh4y .framer-i8ch2a { align-content: unset; align-items: unset; display: grid; gap: 38px; grid-auto-rows: min-content; grid-template-columns: repeat(1, minmax(200px, 1fr)); grid-template-rows: repeat(1, min-content); width: 95%; } .framer-kQh4y .framer-107gpj9, .framer-kQh4y .framer-11dulle, .framer-kQh4y .framer-1tqmkxx { align-self: start; flex: none; justify-self: start; width: 100%; } .framer-kQh4y .framer-bof6zg { padding: 0px 30px 51px 30px; } .framer-kQh4y .framer-g8wwvl { padding: 0px 0px 17px 0px; } .framer-kQh4y .framer-6fu0r7 { padding: 0px; } .framer-kQh4y .framer-178gtfr { flex: none; flex-direction: column; gap: 15px; width: 100%; } .framer-kQh4y .framer-qx517y { flex: none; flex-wrap: nowrap; height: 127px; justify-content: center; width: 100%; } .framer-kQh4y .framer-1tyl53z { flex: 1 0 0px; height: 100%; width: 1px; } .framer-kQh4y .framer-1nwatl0 { align-content: center; align-items: center; height: 100%; justify-content: center; padding: 15px 10px 15px 10px; } .framer-kQh4y .framer-1lvzqn3 { flex-direction: column; gap: 0px; height: min-content; } .framer-kQh4y .framer-1d1digq { padding: 30px 0px 0px 0px; } .framer-kQh4y .framer-18c9hre { height: 96px; overflow: visible; } .framer-kQh4y .framer-f7sxfd { gap: unset; height: 46%; justify-content: space-between; width: 74%; } .framer-kQh4y .framer-12vzsfm { white-space: pre-wrap; width: 207px; word-break: break-word; word-wrap: break-word; } .framer-kQh4y .framer-10cdc26 { gap: 30px; height: min-content; width: 21%; } .framer-kQh4y .framer-1rmbuon { height: 48px; width: 51px; } .framer-kQh4y .framer-y5gld4 { height: 15px; width: 31px; } .framer-kQh4y .framer-10ens30 { bottom: 30px; height: var(--framer-aspect-ratio-supported, 42px); right: 25px; width: 42px; }}\",\"@media (min-width: 1440px) { .framer-kQh4y.framer-bseg4z { width: 1440px; } .framer-kQh4y .framer-1srvndt { width: 61%; } .framer-kQh4y .framer-kg52x6 { gap: 12px; } .framer-kQh4y .framer-18mj1vl { height: 997px; } .framer-kQh4y .framer-z0at5p { align-content: flex-start; align-items: flex-start; height: 101%; padding: 100px 0px 0px 0px; } .framer-kQh4y .framer-vjtdbq { left: 24%; top: 99%; } .framer-kQh4y .framer-1flyc7i { width: 49%; } .framer-kQh4y .framer-dboq9x { height: 708px; } .framer-kQh4y .framer-1v4gjq4 { height: min-content; justify-content: flex-start; padding: 0px; width: 48%; } .framer-kQh4y .framer-15g2udr { flex: none; gap: 31px; height: min-content; width: 93%; } .framer-kQh4y .framer-rubp84 { width: 100%; } .framer-kQh4y .framer-4sce7u { bottom: 51px; height: 41%; right: 40px; width: 45%; } .framer-kQh4y .framer-1mznrdu { height: 824px; } .framer-kQh4y .framer-1warcus { justify-content: flex-start; padding: 0px; } .framer-kQh4y .framer-1q9eiy6, .framer-kQh4y .framer-y21uop { order: 0; } .framer-kQh4y .framer-sgfi6n, .framer-kQh4y .framer-10nitcj { justify-content: flex-start; order: 1; } .framer-kQh4y .framer-usm8xv { height: 554px; padding: 12px 40px 37px 40px; } .framer-kQh4y .framer-13vnlk1 { flex: none; height: 78%; } .framer-kQh4y .framer-110m14l { flex: 1 0 0px; width: 1px; } .framer-kQh4y .framer-pk2kun { width: 50%; } .framer-kQh4y .framer-alq6cb { gap: 68px; } .framer-kQh4y .framer-qrhax9 { height: 71.25vh; } .framer-kQh4y .framer-1ygkdd2 { padding: 60px 40px 50px 40px; } .framer-kQh4y .framer-107gpj9, .framer-kQh4y .framer-11dulle, .framer-kQh4y .framer-1tqmkxx { flex: none; width: 31%; } .framer-kQh4y .framer-bof6zg { padding: 0px 40px 40px 40px; } .framer-kQh4y .framer-6fu0r7 { padding: 10px 0px 0px 0px; } .framer-kQh4y .framer-1dovvqo { align-content: center; align-items: center; gap: unset; justify-content: space-between; } .framer-kQh4y .framer-1tyl53z { height: 326px; } .framer-kQh4y .framer-1nwatl0 { align-content: center; align-items: center; gap: 9px; height: 109px; justify-content: center; padding: 25px 15px 25px 15px; } .framer-kQh4y .framer-1d1digq { padding: 12px 0px 0px 0px; } .framer-kQh4y .framer-18c9hre { gap: 57px; height: 50px; } .framer-kQh4y .framer-10cdc26 { width: 5%; } .framer-kQh4y .framer-1rmbuon { height: 27px; width: 48px; } .framer-kQh4y .framer-y5gld4 { height: 17px; width: 36px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5261\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"sPDqcH2Nc\":{\"layout\":[\"fixed\",\"auto\"]},\"K9uzW5S4w\":{\"layout\":[\"fixed\",\"auto\"]},\"ezxlLgdkb\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"t2hWPw5te\":{\"pattern\":\":t2hWPw5te\",\"name\":\"hero\"},\"N1iYSx6AG\":{\"pattern\":\":N1iYSx6AG\",\"name\":\"rooms\"}}\n * @framerResponsiveScreen\n */const FramerxEnMTqk3e=withCSS(Component,css,\"framer-kQh4y\");export default FramerxEnMTqk3e;FramerxEnMTqk3e.displayName=\"Home\";FramerxEnMTqk3e.defaultProps={height:5261,width:1200};addFonts(FramerxEnMTqk3e,[{explicitInter:true,fonts:[{family:\"F37 Wicklow Light\",source:\"custom\",url:\"https://framerusercontent.com/assets/Ku8xHWBD3Qbn1e6AC6MmWEFXVc.woff2\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"F37 Wicklow Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/5V5ZgUmCttUOqb3pcg11WUa4A7c.woff2\"},{family:\"F37 Wicklow Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/MJeD6Fqv5aekUlZquaVNl7E5W9I.woff2\"}]},...NavigationFonts,...VideoFonts,...NoiseFonts,...FeatherFonts,...FineButtonFonts,...ButtonFonts,...FooterJustified4Fonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerxEnMTqk3e\",\"slots\":[],\"annotations\":{\"framerScrollSections\":\"{\\\"t2hWPw5te\\\":{\\\"pattern\\\":\\\":t2hWPw5te\\\",\\\"name\\\":\\\"hero\\\"},\\\"N1iYSx6AG\\\":{\\\"pattern\\\":\\\":N1iYSx6AG\\\",\\\"name\\\":\\\"rooms\\\"}}\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"5261\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"sPDqcH2Nc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"K9uzW5S4w\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ezxlLgdkb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerResponsiveScreen\":\"\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["Noise", "props", "opacity", "backgroundSize", "borderRadius", "p", "containerStyle", "addPropertyControls", "ControlType", "ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "progress", "objectFit", "backgroundColor", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "posterEnabled", "startTimeProp", "volume", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "startTime", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "groupsRegex", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "valuesByLocaleId", "LazyValue", "getLocalizedValue", "key", "locale", "values", "value", "preload", "promises", "promise", "usePreloadLocalizedValues", "preloadPromise", "NavigationFonts", "getFonts", "mdNIWhGS2_default", "NavigationWithVariantAppearEffect", "withVariantAppearEffect", "VideoFonts", "Video", "NoiseFonts", "Noise", "RichTextWithOptimizedAppearEffect", "withOptimizedAppearEffect", "RichText", "FeatherFonts", "Icon", "ContainerWithOptimizedAppearEffect", "Container", "FineButtonFonts", "HAnapJgwU_default", "MotionDivWithFX", "withFX", "motion", "ButtonFonts", "YBAUKkDWh_default", "ImageWithFX", "Image2", "FooterJustified4Fonts", "a2YE_Bf0Y_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transformTemplate1", "_", "t", "animation2", "transition2", "animation3", "toResponsiveImage", "value", "sharedDateFormatter", "formatOptions", "locale", "date", "fallbackLocale", "dateOptions", "toDateString", "activeLocale", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "CtG5WOLZCBUBuqlhhw", "DWd3cKJcNBUBuqlhhw", "E2gwteORWBUBuqlhhw", "L24ckOGjyBUBuqlhhw", "IBJQRZtOPBUBuqlhhw", "LSARbCLL1BUBuqlhhw", "idBUBuqlhhw", "restProps", "metadata", "se", "useMetadata", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "ref1", "usePreloadLocalizedValues", "elementId", "useRouteElementId", "isDisplayed", "elementId1", "ref2", "router", "useRouter", "isDisplayed1", "activeLocaleCode", "useLocaleCode", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "getLocalizedValue", "x", "getLoadingLazyAtYPosition", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "ChildrenCanSuspend", "YZ71NKruT_default", "collection", "paginationInfo", "loadMore", "l", "index", "textContent", "PathVariablesContext", "Link", "resolvedLinks7", "SVG", "css", "FramerxEnMTqk3e", "withCSS", "xEnMTqk3e_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
