{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/LHz3bw67SqHRmnCKTlE6/Ticker.js", "ssg:https://framerusercontent.com/modules/ARFdl6sOzlhoFm5S6rL3/dsScP9YyTiGL2iLqQyuS/MCR7_ssgl.js", "ssg:https://framerusercontent.com/modules/PW8BKmzzV8k7CSKsX6Ae/Bs6BVFwrYd8KQ1Eu3bJF/mnvLFwKli.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,useCallback,cloneElement,startTransition}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots=[],gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const currentTarget=RenderTarget.current();const isCanvas=currentTarget===RenderTarget.canvas||currentTarget===RenderTarget.export;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[{current:null},{current:null}];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=null;let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;startTransition(()=>setSize({parent:parentLength,children:childrenLength}));}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...child.props?.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},child.props?.children)})});});}const isInView=isCanvas?true:useInView(parentRef);if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",willChange:!isInView?undefined:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...child.props?.style,width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},child.props?.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}));}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);const playOrPause=useCallback(()=>{if(!animationRef.current)return;const hidden=document.hidden;if(isInView&&!hidden&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if((!isInView||hidden)&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);useEffect(()=>{playOrPause();},[isInView]);useEffect(()=>{document.addEventListener(\"visibilitychange\",playOrPause);return()=>{document.removeEventListener(\"visibilitychange\",playOrPause);};},[playOrPause]);}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas||!isInView?\"auto\":\"transform\",transform:transformer(0)},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (2fef4c5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"dqAHHD4zh\",\"O7tfHpu5E\",\"bxFBk54Dm\",\"nZnSZxSav\",\"ZdCyLrelH\",\"SQS68qEnS\",\"sXwCHsPC4\",\"IL9HqazEP\",\"slNHoawrk\",\"TyVHjh54Y\",\"mWkmzV4pj\",\"gXf_MXwln\"];const serializationHash=\"framer-QhpeG\";const variantClassNames={bxFBk54Dm:\"framer-v-v31le0\",dqAHHD4zh:\"framer-v-1j2owc\",gXf_MXwln:\"framer-v-4ecsg7\",IL9HqazEP:\"framer-v-g2edr5\",mWkmzV4pj:\"framer-v-aczwgb\",nZnSZxSav:\"framer-v-1loumn\",O7tfHpu5E:\"framer-v-13d6jq5\",slNHoawrk:\"framer-v-c3k6oh\",SQS68qEnS:\"framer-v-1v73as7\",sXwCHsPC4:\"framer-v-a8qswl\",TyVHjh54Y:\"framer-v-eb4mzm\",ZdCyLrelH:\"framer-v-1u3b29u\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"big tab 1\":\"dqAHHD4zh\",\"Big tab 2\":\"ZdCyLrelH\",\"Big tab 3\":\"SQS68qEnS\",\"Laptop tab 1\":\"O7tfHpu5E\",\"Laptop tab 2\":\"sXwCHsPC4\",\"Laptop tab 3\":\"IL9HqazEP\",\"Phone 2\":\"mWkmzV4pj\",\"Phone 3\":\"gXf_MXwln\",\"tab 3\":\"TyVHjh54Y\",\"tablet 2\":\"slNHoawrk\",Phone:\"nZnSZxSav\",Tablet:\"bxFBk54Dm\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"dqAHHD4zh\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"dqAHHD4zh\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap17vsxqn=activeVariantCallback(async(...args)=>{setVariant(\"dqAHHD4zh\");});const onTapoaztkl=activeVariantCallback(async(...args)=>{setVariant(\"O7tfHpu5E\");});const onTapkh4zm7=activeVariantCallback(async(...args)=>{setVariant(\"bxFBk54Dm\");});const onTap11xa4di=activeVariantCallback(async(...args)=>{setVariant(\"nZnSZxSav\");});const onTap15u3goq=activeVariantCallback(async(...args)=>{setVariant(\"ZdCyLrelH\");});const onTappfbd6y=activeVariantCallback(async(...args)=>{setVariant(\"sXwCHsPC4\");});const onTap391lx5=activeVariantCallback(async(...args)=>{setVariant(\"slNHoawrk\");});const onTaposv4r4=activeVariantCallback(async(...args)=>{setVariant(\"mWkmzV4pj\");});const onTapw2efym=activeVariantCallback(async(...args)=>{setVariant(\"SQS68qEnS\");});const onTap4sbrsb=activeVariantCallback(async(...args)=>{setVariant(\"IL9HqazEP\");});const onTapsba21j=activeVariantCallback(async(...args)=>{setVariant(\"TyVHjh54Y\");});const onTapjhb9ki=activeVariantCallback(async(...args)=>{setVariant(\"gXf_MXwln\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1j2owc\",className,classNames),\"data-framer-name\":\"big tab 1\",layoutDependency:layoutDependency,layoutId:\"dqAHHD4zh\",ref:refBinding,style:{...style},...addPropertyOverrides({bxFBk54Dm:{\"data-framer-name\":\"Tablet\"},gXf_MXwln:{\"data-framer-name\":\"Phone 3\"},IL9HqazEP:{\"data-framer-name\":\"Laptop tab 3\"},mWkmzV4pj:{\"data-framer-name\":\"Phone 2\"},nZnSZxSav:{\"data-framer-name\":\"Phone\"},O7tfHpu5E:{\"data-framer-name\":\"Laptop tab 1\"},slNHoawrk:{\"data-framer-name\":\"tablet 2\"},SQS68qEnS:{\"data-framer-name\":\"Big tab 3\"},sXwCHsPC4:{\"data-framer-name\":\"Laptop tab 2\"},TyVHjh54Y:{\"data-framer-name\":\"tab 3\"},ZdCyLrelH:{\"data-framer-name\":\"Big tab 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mkw3q0\",\"data-framer-name\":\"Frame 1321319137\",layoutDependency:layoutDependency,layoutId:\"bZJ5I4BAX\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1t78yxd\",\"data-framer-name\":\"Frame 1321319084\",layoutDependency:layoutDependency,layoutId:\"aHxLl4mha\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay03MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"Book hotels from all around the world\"})}),className:\"framer-1fylog\",\"data-framer-name\":\"Book hotels from all around the world\",fonts:[\"GF;HK Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"oyQYJ6OZl\",style:{\"--extracted-r6o4lv\":\"rgb(28, 28, 28)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({gXf_MXwln:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay03MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"38px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"Book hotels from all around the world\"})})},mWkmzV4pj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay03MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"38px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"Book hotels from all around the world\"})})},nZnSZxSav:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay03MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"38px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"Book hotels from all around the world\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(97, 97, 97))\"},children:\"Find top stays in popular destinations for a perfect getaway.\"})}),className:\"framer-1f0tbwh\",\"data-framer-name\":\"Find top stays in popular destinations for a perfect getaway.\",fonts:[\"GF;HK Grotesk-500\"],layoutDependency:layoutDependency,layoutId:\"M_XTvVkw5\",style:{\"--extracted-r6o4lv\":\"rgb(97, 97, 97)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ukuaqf\",\"data-framer-name\":\"Frame 1321319102\",layoutDependency:layoutDependency,layoutId:\"s5X7J_pNI\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-95ce5n\",\"data-border\":true,\"data-framer-name\":\"Frame 44\",layoutDependency:layoutDependency,layoutId:\"PfycmIbaw\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(7, 143, 61)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(7, 143, 61)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 4px 64px 0px rgba(99, 99, 99, 0.10000000149011612)\"},variants:{gXf_MXwln:{backgroundColor:\"rgba(0, 0, 0, 0)\"},IL9HqazEP:{backgroundColor:\"rgba(0, 0, 0, 0)\"},mWkmzV4pj:{backgroundColor:\"rgba(0, 0, 0, 0)\"},slNHoawrk:{backgroundColor:\"rgba(0, 0, 0, 0)\"},SQS68qEnS:{backgroundColor:\"rgba(0, 0, 0, 0)\"},sXwCHsPC4:{backgroundColor:\"rgba(0, 0, 0, 0)\"},TyVHjh54Y:{backgroundColor:\"rgba(0, 0, 0, 0)\"},ZdCyLrelH:{backgroundColor:\"rgba(0, 0, 0, 0)\"}},...addPropertyOverrides({gXf_MXwln:{\"data-highlight\":true,onTap:onTap11xa4di},IL9HqazEP:{\"data-highlight\":true,onTap:onTapoaztkl},mWkmzV4pj:{\"data-highlight\":true,onTap:onTap11xa4di},slNHoawrk:{\"data-highlight\":true,onTap:onTapkh4zm7},SQS68qEnS:{\"data-highlight\":true,onTap:onTap17vsxqn},sXwCHsPC4:{\"data-highlight\":true,onTap:onTapoaztkl},TyVHjh54Y:{\"data-highlight\":true,onTap:onTapkh4zm7},ZdCyLrelH:{\"data-highlight\":true,onTap:onTap17vsxqn}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Beach\"})}),className:\"framer-pm6u2m\",\"data-framer-name\":\"Beach\",fonts:[\"GF;HK Grotesk-600\"],layoutDependency:layoutDependency,layoutId:\"Rq2rvz1CA\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},variants:{gXf_MXwln:{\"--extracted-r6o4lv\":\"rgb(28, 28, 28)\"},IL9HqazEP:{\"--extracted-r6o4lv\":\"rgb(28, 28, 28)\"},mWkmzV4pj:{\"--extracted-r6o4lv\":\"rgb(28, 28, 28)\"},slNHoawrk:{\"--extracted-r6o4lv\":\"rgb(28, 28, 28)\"},SQS68qEnS:{\"--extracted-r6o4lv\":\"rgb(28, 28, 28)\"},sXwCHsPC4:{\"--extracted-r6o4lv\":\"rgb(28, 28, 28)\"},TyVHjh54Y:{\"--extracted-r6o4lv\":\"rgb(28, 28, 28)\"},ZdCyLrelH:{\"--extracted-r6o4lv\":\"rgb(28, 28, 28)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({gXf_MXwln:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"Beach\"})}),fonts:[\"GF;HK Grotesk-500\"]},IL9HqazEP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"Beach\"})}),fonts:[\"GF;HK Grotesk-500\"]},mWkmzV4pj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"Beach\"})}),fonts:[\"GF;HK Grotesk-500\"]},slNHoawrk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"Beach\"})}),fonts:[\"GF;HK Grotesk-500\"]},SQS68qEnS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"Beach\"})}),fonts:[\"GF;HK Grotesk-500\"]},sXwCHsPC4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"Beach\"})}),fonts:[\"GF;HK Grotesk-500\"]},TyVHjh54Y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"Beach\"})}),fonts:[\"GF;HK Grotesk-500\"]},ZdCyLrelH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"Beach\"})}),fonts:[\"GF;HK Grotesk-500\"]}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-65zy6j\",\"data-border\":true,\"data-framer-name\":\"Frame 1321319097\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"JLEBJ4Gk6\",onTap:onTap15u3goq,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(7, 143, 61)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 4px 64px 0px rgba(99, 99, 99, 0.10000000149011612)\"},variants:{gXf_MXwln:{backgroundColor:\"rgba(0, 0, 0, 0)\"},IL9HqazEP:{backgroundColor:\"rgba(0, 0, 0, 0)\"},mWkmzV4pj:{backgroundColor:\"rgb(7, 143, 61)\"},slNHoawrk:{backgroundColor:\"rgb(7, 143, 61)\"},SQS68qEnS:{backgroundColor:\"rgba(0, 0, 0, 0)\"},sXwCHsPC4:{backgroundColor:\"rgb(7, 143, 61)\"},TyVHjh54Y:{backgroundColor:\"rgba(0, 0, 0, 0)\"},ZdCyLrelH:{backgroundColor:\"rgb(7, 143, 61)\"}},...addPropertyOverrides({bxFBk54Dm:{onTap:onTap391lx5},gXf_MXwln:{onTap:onTaposv4r4},IL9HqazEP:{onTap:onTappfbd6y},mWkmzV4pj:{\"data-highlight\":undefined,onTap:undefined},nZnSZxSav:{onTap:onTaposv4r4},O7tfHpu5E:{onTap:onTappfbd6y},slNHoawrk:{\"data-highlight\":undefined,onTap:undefined},sXwCHsPC4:{\"data-highlight\":undefined,onTap:undefined},TyVHjh54Y:{onTap:onTap391lx5},ZdCyLrelH:{\"data-highlight\":undefined,onTap:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"Family\"})}),className:\"framer-mwe4l8\",\"data-framer-name\":\"Family\",fonts:[\"GF;HK Grotesk-500\"],layoutDependency:layoutDependency,layoutId:\"Pey6jraOq\",style:{\"--extracted-r6o4lv\":\"rgb(28, 28, 28)\",\"--framer-paragraph-spacing\":\"0px\"},variants:{mWkmzV4pj:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},slNHoawrk:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},sXwCHsPC4:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},ZdCyLrelH:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({mWkmzV4pj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Family\"})}),fonts:[\"GF;HK Grotesk-600\"]},slNHoawrk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Family\"})}),fonts:[\"GF;HK Grotesk-600\"]},sXwCHsPC4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Family\"})}),fonts:[\"GF;HK Grotesk-600\"]},ZdCyLrelH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Family\"})}),fonts:[\"GF;HK Grotesk-600\"]}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-13kpq5o\",\"data-border\":true,\"data-framer-name\":\"Frame 1321319098\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"xU62MOuHc\",onTap:onTapw2efym,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(7, 143, 61)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 4px 64px 0px rgba(99, 99, 99, 0.10000000149011612)\"},variants:{gXf_MXwln:{backgroundColor:\"rgb(7, 143, 61)\"},IL9HqazEP:{backgroundColor:\"rgb(7, 143, 61)\"},mWkmzV4pj:{backgroundColor:\"rgba(0, 0, 0, 0)\"},slNHoawrk:{backgroundColor:\"rgba(0, 0, 0, 0)\"},SQS68qEnS:{backgroundColor:\"rgb(7, 143, 61)\"},sXwCHsPC4:{backgroundColor:\"rgba(0, 0, 0, 0)\"},TyVHjh54Y:{backgroundColor:\"rgb(7, 143, 61)\"}},...addPropertyOverrides({bxFBk54Dm:{onTap:onTapsba21j},gXf_MXwln:{\"data-highlight\":undefined,onTap:undefined},IL9HqazEP:{\"data-highlight\":undefined,onTap:undefined},mWkmzV4pj:{onTap:onTapjhb9ki},nZnSZxSav:{onTap:onTapjhb9ki},O7tfHpu5E:{onTap:onTap4sbrsb},slNHoawrk:{onTap:onTapsba21j},SQS68qEnS:{\"data-highlight\":undefined,onTap:undefined},sXwCHsPC4:{onTap:onTap4sbrsb},TyVHjh54Y:{\"data-highlight\":undefined,onTap:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\" City\"})}),className:\"framer-15rt67y\",\"data-framer-name\":\"City\",fonts:[\"GF;HK Grotesk-500\"],layoutDependency:layoutDependency,layoutId:\"Amw6vsfWT\",style:{\"--extracted-r6o4lv\":\"rgb(28, 28, 28)\",\"--framer-paragraph-spacing\":\"0px\"},variants:{gXf_MXwln:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},IL9HqazEP:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},SQS68qEnS:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},TyVHjh54Y:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({gXf_MXwln:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\" City\"})}),fonts:[\"GF;HK Grotesk-600\"]},IL9HqazEP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\" City\"})}),fonts:[\"GF;HK Grotesk-600\"]},SQS68qEnS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\" City\"})}),fonts:[\"GF;HK Grotesk-600\"]},TyVHjh54Y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\" City\"})}),fonts:[\"GF;HK Grotesk-600\"]}},baseVariant,gestureVariant)})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ugfmdd\",\"data-framer-name\":\"Frame 1321319136\",layoutDependency:layoutDependency,layoutId:\"I1WmcanwK\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pbmj5z\",\"data-framer-name\":\"Frame 1321319135\",layoutDependency:layoutDependency,layoutId:\"rOV2XoeiZ\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rl8v82\",\"data-framer-name\":\"Frame 1321319115\",layoutDependency:layoutDependency,layoutId:\"JIhslz0CT\",style:{backgroundColor:\"rgb(243, 244, 246)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+472+0+0+0+16+0),sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 184px) / 3, 1px) - 32px)`,src:\"https://framerusercontent.com/images/89Zf69MfiZNlNPFvWH8YX068xE.jpg\",srcSet:\"https://framerusercontent.com/images/89Zf69MfiZNlNPFvWH8YX068xE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/89Zf69MfiZNlNPFvWH8YX068xE.jpg 550w\"},className:\"framer-1sliken\",\"data-framer-name\":\"Rectangle 3463951\",layoutDependency:layoutDependency,layoutId:\"VMZXYjxYA\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},...addPropertyOverrides({bxFBk54Dm:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+472+0+0+0+16+0),sizes:\"176.6667px\",src:\"https://framerusercontent.com/images/89Zf69MfiZNlNPFvWH8YX068xE.jpg\",srcSet:\"https://framerusercontent.com/images/89Zf69MfiZNlNPFvWH8YX068xE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/89Zf69MfiZNlNPFvWH8YX068xE.jpg 550w\"}},gXf_MXwln:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+20+422+0+0+0+0+16+0),pixelHeight:1288,pixelWidth:1548,sizes:`calc(${componentViewport?.width||\"100vw\"} - 72px)`,src:\"https://framerusercontent.com/images/LJhvUqa7GsTSzhmD6quc4X1iTA.png\",srcSet:\"https://framerusercontent.com/images/LJhvUqa7GsTSzhmD6quc4X1iTA.png?scale-down-to=512 512w,https://framerusercontent.com/images/LJhvUqa7GsTSzhmD6quc4X1iTA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/LJhvUqa7GsTSzhmD6quc4X1iTA.png 1548w\"}},IL9HqazEP:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+472+0+0+0+16+0),pixelHeight:1288,pixelWidth:1548,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 184px) / 3, 1px) - 32px)`,src:\"https://framerusercontent.com/images/LJhvUqa7GsTSzhmD6quc4X1iTA.png\",srcSet:\"https://framerusercontent.com/images/LJhvUqa7GsTSzhmD6quc4X1iTA.png?scale-down-to=512 512w,https://framerusercontent.com/images/LJhvUqa7GsTSzhmD6quc4X1iTA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/LJhvUqa7GsTSzhmD6quc4X1iTA.png 1548w\"}},mWkmzV4pj:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+20+422+0+0+0+0+16+0),pixelHeight:1288,pixelWidth:1548,sizes:`calc(${componentViewport?.width||\"100vw\"} - 72px)`,src:\"https://framerusercontent.com/images/8yDrk4dNRqSAvuPjq5GxZoGvo.png\",srcSet:\"https://framerusercontent.com/images/8yDrk4dNRqSAvuPjq5GxZoGvo.png?scale-down-to=512 512w,https://framerusercontent.com/images/8yDrk4dNRqSAvuPjq5GxZoGvo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8yDrk4dNRqSAvuPjq5GxZoGvo.png 1548w\"}},nZnSZxSav:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+20+422+0+0+0+0+16+0),sizes:`calc(${componentViewport?.width||\"100vw\"} - 72px)`,src:\"https://framerusercontent.com/images/89Zf69MfiZNlNPFvWH8YX068xE.jpg\",srcSet:\"https://framerusercontent.com/images/89Zf69MfiZNlNPFvWH8YX068xE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/89Zf69MfiZNlNPFvWH8YX068xE.jpg 550w\"}},O7tfHpu5E:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+472+0+0+0+16+0),sizes:\"306.6667px\",src:\"https://framerusercontent.com/images/89Zf69MfiZNlNPFvWH8YX068xE.jpg\",srcSet:\"https://framerusercontent.com/images/89Zf69MfiZNlNPFvWH8YX068xE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/89Zf69MfiZNlNPFvWH8YX068xE.jpg 550w\"}},slNHoawrk:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+472+0+0+0+16+0),pixelHeight:1288,pixelWidth:1548,sizes:\"176.6667px\",src:\"https://framerusercontent.com/images/8yDrk4dNRqSAvuPjq5GxZoGvo.png\",srcSet:\"https://framerusercontent.com/images/8yDrk4dNRqSAvuPjq5GxZoGvo.png?scale-down-to=512 512w,https://framerusercontent.com/images/8yDrk4dNRqSAvuPjq5GxZoGvo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8yDrk4dNRqSAvuPjq5GxZoGvo.png 1548w\"}},SQS68qEnS:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+472+0+0+0+16+0),pixelHeight:1288,pixelWidth:1548,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 184px) / 3, 1px) - 32px)`,src:\"https://framerusercontent.com/images/LJhvUqa7GsTSzhmD6quc4X1iTA.png\",srcSet:\"https://framerusercontent.com/images/LJhvUqa7GsTSzhmD6quc4X1iTA.png?scale-down-to=512 512w,https://framerusercontent.com/images/LJhvUqa7GsTSzhmD6quc4X1iTA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/LJhvUqa7GsTSzhmD6quc4X1iTA.png 1548w\"}},sXwCHsPC4:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+472+0+0+0+16+0),pixelHeight:1288,pixelWidth:1548,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 184px) / 3, 1px) - 32px)`,src:\"https://framerusercontent.com/images/8yDrk4dNRqSAvuPjq5GxZoGvo.png\",srcSet:\"https://framerusercontent.com/images/8yDrk4dNRqSAvuPjq5GxZoGvo.png?scale-down-to=512 512w,https://framerusercontent.com/images/8yDrk4dNRqSAvuPjq5GxZoGvo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8yDrk4dNRqSAvuPjq5GxZoGvo.png 1548w\"}},TyVHjh54Y:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+472+0+0+0+16+0),pixelHeight:1288,pixelWidth:1548,sizes:\"176.6667px\",src:\"https://framerusercontent.com/images/LJhvUqa7GsTSzhmD6quc4X1iTA.png\",srcSet:\"https://framerusercontent.com/images/LJhvUqa7GsTSzhmD6quc4X1iTA.png?scale-down-to=512 512w,https://framerusercontent.com/images/LJhvUqa7GsTSzhmD6quc4X1iTA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/LJhvUqa7GsTSzhmD6quc4X1iTA.png 1548w\"}},ZdCyLrelH:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+472+0+0+0+16+0),pixelHeight:1288,pixelWidth:1548,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 184px) / 3, 1px) - 32px)`,src:\"https://framerusercontent.com/images/8yDrk4dNRqSAvuPjq5GxZoGvo.png\",srcSet:\"https://framerusercontent.com/images/8yDrk4dNRqSAvuPjq5GxZoGvo.png?scale-down-to=512 512w,https://framerusercontent.com/images/8yDrk4dNRqSAvuPjq5GxZoGvo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8yDrk4dNRqSAvuPjq5GxZoGvo.png 1548w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ilvvys\",\"data-framer-name\":\"Frame 1321319114\",layoutDependency:layoutDependency,layoutId:\"y4Kd5Pqxo\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-e2zeik\",\"data-framer-name\":\"Frame 1321319112\",layoutDependency:layoutDependency,layoutId:\"F7cV2Iifc\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"The Ritz-Carlton, Dubai\"})}),className:\"framer-1palzgt\",\"data-framer-name\":\"The Ritz-Carlton, Dubai\",fonts:[\"GF;HK Grotesk-600\"],layoutDependency:layoutDependency,layoutId:\"eP53Jnges\",style:{\"--extracted-r6o4lv\":\"rgb(28, 28, 28)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({bxFBk54Dm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"The Ritz-Carlton, Dubai\"})})},gXf_MXwln:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"Golden Royal Hotel & Spa\"})})},IL9HqazEP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"Golden Royal Hotel & Spa\"})})},mWkmzV4pj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"Labranda Hotel Golden Beach\u2026\"})})},slNHoawrk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"Labranda Hotel Golden Beach\u2026\"})})},SQS68qEnS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"Golden Royal Hotel & Spa\"})})},sXwCHsPC4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"Labranda Hotel Golden Beach\u2026\"})})},TyVHjh54Y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"Golden Royal Hotel & Spa\"})})},ZdCyLrelH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"Labranda Hotel Golden Beach\u2026\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-44u5ut\",\"data-framer-name\":\"Frame 1321319111\",layoutDependency:layoutDependency,layoutId:\"FbL9lOyE1\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-znihmu\",\"data-framer-name\":\"location-01\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"VmuvrdA9p\",svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M11.3481 17.8056C10.9867 18.144 10.5037 18.3332 10.0009 18.3332C9.49821 18.3332 9.01515 18.144 8.65374 17.8056C5.34418 14.6882 0.908969 11.2056 3.07189 6.14956C4.24136 3.4158 7.04862 1.6665 10.0009 1.6665C12.9532 1.6665 15.7605 3.4158 16.93 6.14956C19.0902 11.1992 14.6658 14.6989 11.3481 17.8056Z\" stroke=\"#616161\" stroke-width=\"1.2\"/>\\n<path d=\"M12.9167 9.16667C12.9167 10.7775 11.6108 12.0833 10 12.0833C8.38917 12.0833 7.08334 10.7775 7.08334 9.16667C7.08334 7.55584 8.38917 6.25 10 6.25C11.6108 6.25 12.9167 7.55584 12.9167 9.16667Z\" stroke=\"#616161\" stroke-width=\"1.2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(97, 97, 97))\"},children:\"28.43 kilometers from Dubai city center\"})}),className:\"framer-1avqtt0\",\"data-framer-name\":\"28.43 kilometers from Dubai city center\",fonts:[\"GF;HK Grotesk-500\"],layoutDependency:layoutDependency,layoutId:\"cpsRDGeW_\",style:{\"--extracted-r6o4lv\":\"rgb(97, 97, 97)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({gXf_MXwln:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(97, 97, 97))\"},children:\"4.75 kilometers from Paris city center\"})})},IL9HqazEP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(97, 97, 97))\"},children:\"4.75 kilometers from Paris city center\"})})},mWkmzV4pj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(97, 97, 97))\"},children:\"27.84 kilometers from Fuerteventura city center\"})})},slNHoawrk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(97, 97, 97))\"},children:\"27.84 kilometers from Fuerteventura city center\"})})},SQS68qEnS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(97, 97, 97))\"},children:\"4.75 kilometers from Paris city center\"})})},sXwCHsPC4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(97, 97, 97))\"},children:\"27.84 kilometers from Fuerteventura city center\"})})},TyVHjh54Y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(97, 97, 97))\"},children:\"4.75 kilometers from Paris city center\"})})},ZdCyLrelH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(97, 97, 97))\"},children:\"27.84 kilometers from Fuerteventura city center\"})})}},baseVariant,gestureVariant)})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8nvb2x\",\"data-framer-name\":\"Frame 1321319114\",layoutDependency:layoutDependency,layoutId:\"N2MzZMSov\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-13pvgwd\",\"data-framer-name\":\"star\",layoutDependency:layoutDependency,layoutId:\"HabA8slkC\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-id6jvv\",\"data-framer-name\":\"elements\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,layoutDependency:layoutDependency,layoutId:\"I5336:333;1:123985\",svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M9 0.0415039C9.22229 0.0415039 9.42786 0.159573 9.53986 0.351585L12.3242 5.12471L17.4862 6.42658C17.7001 6.48054 17.8698 6.6433 17.9325 6.85482C17.9953 7.06635 17.9419 7.29529 17.792 7.4572L14.265 11.2669L15.5935 17.1965C15.6446 17.4245 15.5642 17.662 15.3852 17.8121C15.2061 17.9622 14.9583 17.9999 14.7427 17.9099L9 15.5105L3.25733 17.9099C3.04173 17.9999 2.7939 17.9622 2.61484 17.8121C2.43579 17.662 2.35542 17.4245 2.4065 17.1965L3.73502 11.2669L0.208038 7.4572C0.0581452 7.29529 0.00472576 7.06635 0.0674862 6.85482C0.130247 6.6433 0.299887 6.48054 0.513828 6.42658L5.67582 5.12471L8.46014 0.351585C8.57215 0.159573 8.77771 0.0415039 9 0.0415039Z\" fill=\"#1C1C1C\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"5.0\"})}),className:\"framer-1dhp3dn\",\"data-framer-name\":\"4.9\",fonts:[\"GF;HK Grotesk-500\"],layoutDependency:layoutDependency,layoutId:\"bKQAJtwfD\",style:{\"--extracted-r6o4lv\":\"rgb(28, 28, 28)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({SQS68qEnS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"4.0\"})})},sXwCHsPC4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"3.0\"})})},ZdCyLrelH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"3.0\"})})}},baseVariant,gestureVariant)})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-obirto\",\"data-framer-name\":\"Frame 1321319116\",layoutDependency:layoutDependency,layoutId:\"kFLNU0SXG\",style:{backgroundColor:\"rgb(243, 244, 246)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+472+0+0+0+16+0),sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 184px) / 3, 1px) - 32px)`,src:\"https://framerusercontent.com/images/K5Jk8UZ8A4YCehDDpX3wnM7yfw.jpg\",srcSet:\"https://framerusercontent.com/images/K5Jk8UZ8A4YCehDDpX3wnM7yfw.jpg 754w\"},className:\"framer-y267u8\",\"data-framer-name\":\"Rectangle 3463951\",layoutDependency:layoutDependency,layoutId:\"IUegK3XPO\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},...addPropertyOverrides({bxFBk54Dm:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+472+0+0+0+16+0),sizes:\"176.6667px\",src:\"https://framerusercontent.com/images/K5Jk8UZ8A4YCehDDpX3wnM7yfw.jpg\",srcSet:\"https://framerusercontent.com/images/K5Jk8UZ8A4YCehDDpX3wnM7yfw.jpg 754w\"}},gXf_MXwln:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+20+422+0+0+0+470+16+0),pixelHeight:1304,pixelWidth:1548,sizes:`calc(${componentViewport?.width||\"100vw\"} - 72px)`,src:\"https://framerusercontent.com/images/FCFceaj2s0hZUNkwTTFz3n396bY.png\",srcSet:\"https://framerusercontent.com/images/FCFceaj2s0hZUNkwTTFz3n396bY.png?scale-down-to=512 512w,https://framerusercontent.com/images/FCFceaj2s0hZUNkwTTFz3n396bY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/FCFceaj2s0hZUNkwTTFz3n396bY.png 1548w\"}},IL9HqazEP:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+472+0+0+0+16+0),pixelHeight:1304,pixelWidth:1548,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 184px) / 3, 1px) - 32px)`,src:\"https://framerusercontent.com/images/FCFceaj2s0hZUNkwTTFz3n396bY.png\",srcSet:\"https://framerusercontent.com/images/FCFceaj2s0hZUNkwTTFz3n396bY.png?scale-down-to=512 512w,https://framerusercontent.com/images/FCFceaj2s0hZUNkwTTFz3n396bY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/FCFceaj2s0hZUNkwTTFz3n396bY.png 1548w\"}},mWkmzV4pj:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+20+422+0+0+0+470+16+0),pixelHeight:1304,pixelWidth:1548,sizes:`calc(${componentViewport?.width||\"100vw\"} - 72px)`,src:\"https://framerusercontent.com/images/JPU7VpodVPaUN1XoRHVX8rAOVo.png\",srcSet:\"https://framerusercontent.com/images/JPU7VpodVPaUN1XoRHVX8rAOVo.png?scale-down-to=512 512w,https://framerusercontent.com/images/JPU7VpodVPaUN1XoRHVX8rAOVo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JPU7VpodVPaUN1XoRHVX8rAOVo.png 1548w\"}},nZnSZxSav:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+20+422+0+0+0+470+16+0),sizes:`calc(${componentViewport?.width||\"100vw\"} - 72px)`,src:\"https://framerusercontent.com/images/K5Jk8UZ8A4YCehDDpX3wnM7yfw.jpg\",srcSet:\"https://framerusercontent.com/images/K5Jk8UZ8A4YCehDDpX3wnM7yfw.jpg 754w\"}},O7tfHpu5E:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+472+0+0+0+16+0),sizes:\"306.6667px\",src:\"https://framerusercontent.com/images/K5Jk8UZ8A4YCehDDpX3wnM7yfw.jpg\",srcSet:\"https://framerusercontent.com/images/K5Jk8UZ8A4YCehDDpX3wnM7yfw.jpg 754w\"}},slNHoawrk:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+472+0+0+0+16+0),pixelHeight:1304,pixelWidth:1548,sizes:\"176.6667px\",src:\"https://framerusercontent.com/images/JPU7VpodVPaUN1XoRHVX8rAOVo.png\",srcSet:\"https://framerusercontent.com/images/JPU7VpodVPaUN1XoRHVX8rAOVo.png?scale-down-to=512 512w,https://framerusercontent.com/images/JPU7VpodVPaUN1XoRHVX8rAOVo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JPU7VpodVPaUN1XoRHVX8rAOVo.png 1548w\"}},SQS68qEnS:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+472+0+0+0+16+0),pixelHeight:1304,pixelWidth:1548,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 184px) / 3, 1px) - 32px)`,src:\"https://framerusercontent.com/images/FCFceaj2s0hZUNkwTTFz3n396bY.png\",srcSet:\"https://framerusercontent.com/images/FCFceaj2s0hZUNkwTTFz3n396bY.png?scale-down-to=512 512w,https://framerusercontent.com/images/FCFceaj2s0hZUNkwTTFz3n396bY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/FCFceaj2s0hZUNkwTTFz3n396bY.png 1548w\"}},sXwCHsPC4:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+472+0+0+0+16+0),pixelHeight:1304,pixelWidth:1548,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 184px) / 3, 1px) - 32px)`,src:\"https://framerusercontent.com/images/JPU7VpodVPaUN1XoRHVX8rAOVo.png\",srcSet:\"https://framerusercontent.com/images/JPU7VpodVPaUN1XoRHVX8rAOVo.png?scale-down-to=512 512w,https://framerusercontent.com/images/JPU7VpodVPaUN1XoRHVX8rAOVo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JPU7VpodVPaUN1XoRHVX8rAOVo.png 1548w\"}},TyVHjh54Y:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+472+0+0+0+16+0),pixelHeight:1304,pixelWidth:1548,sizes:\"176.6667px\",src:\"https://framerusercontent.com/images/FCFceaj2s0hZUNkwTTFz3n396bY.png\",srcSet:\"https://framerusercontent.com/images/FCFceaj2s0hZUNkwTTFz3n396bY.png?scale-down-to=512 512w,https://framerusercontent.com/images/FCFceaj2s0hZUNkwTTFz3n396bY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/FCFceaj2s0hZUNkwTTFz3n396bY.png 1548w\"}},ZdCyLrelH:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+472+0+0+0+16+0),pixelHeight:1304,pixelWidth:1548,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 184px) / 3, 1px) - 32px)`,src:\"https://framerusercontent.com/images/JPU7VpodVPaUN1XoRHVX8rAOVo.png\",srcSet:\"https://framerusercontent.com/images/JPU7VpodVPaUN1XoRHVX8rAOVo.png?scale-down-to=512 512w,https://framerusercontent.com/images/JPU7VpodVPaUN1XoRHVX8rAOVo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JPU7VpodVPaUN1XoRHVX8rAOVo.png 1548w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6zh7b6\",\"data-framer-name\":\"Frame 1321319114\",layoutDependency:layoutDependency,layoutId:\"JCjq9eIgA\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-yyl4h3\",\"data-framer-name\":\"Frame 1321319112\",layoutDependency:layoutDependency,layoutId:\"Kl80aWWP2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"Henann Crystal Sands Resort\"})}),className:\"framer-vyivlr\",\"data-framer-name\":\"Henann Crystal Sands Resort\",fonts:[\"GF;HK Grotesk-600\"],layoutDependency:layoutDependency,layoutId:\"Pg8V01Gi_\",style:{\"--extracted-r6o4lv\":\"rgb(28, 28, 28)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({bxFBk54Dm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"Henann Crystal Sands Resort\"})})},gXf_MXwln:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"Torel Palace Lisbon\"})})},IL9HqazEP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"Torel Palace Lisbon\"})})},mWkmzV4pj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"Bahia Blanca\"})})},slNHoawrk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"Bahia Blanca\"})})},SQS68qEnS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"Torel Palace Lisbon\"})})},sXwCHsPC4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"Bahia Blanca\"})})},TyVHjh54Y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"Torel Palace Lisbon\"})})},ZdCyLrelH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"Bahia Blanca\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lb75aw\",\"data-framer-name\":\"Frame 1321319111\",layoutDependency:layoutDependency,layoutId:\"SK7yGB5f_\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-foprz8\",\"data-framer-name\":\"location-01\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"vjnD5raun\",svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M11.3481 17.8056C10.9867 18.144 10.5037 18.3332 10.0009 18.3332C9.49821 18.3332 9.01515 18.144 8.65374 17.8056C5.34418 14.6882 0.908969 11.2056 3.07189 6.14956C4.24136 3.4158 7.04862 1.6665 10.0009 1.6665C12.9532 1.6665 15.7605 3.4158 16.93 6.14956C19.0902 11.1992 14.6658 14.6989 11.3481 17.8056Z\" stroke=\"#616161\" stroke-width=\"1.2\"/>\\n<path d=\"M12.9166 9.16667C12.9166 10.7775 11.6108 12.0833 9.99998 12.0833C8.38915 12.0833 7.08331 10.7775 7.08331 9.16667C7.08331 7.55584 8.38915 6.25 9.99998 6.25C11.6108 6.25 12.9166 7.55584 12.9166 9.16667Z\" stroke=\"#616161\" stroke-width=\"1.2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(97, 97, 97))\"},children:\"1.02 kilometers from Boracay city center\"})}),className:\"framer-1jsx3yv\",\"data-framer-name\":\"1.02 kilometers from Boracay city center\",fonts:[\"GF;HK Grotesk-500\"],layoutDependency:layoutDependency,layoutId:\"j4dktbsBC\",style:{\"--extracted-r6o4lv\":\"rgb(97, 97, 97)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({gXf_MXwln:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(97, 97, 97))\"},children:\"0.20 kilometers from Lisbon city center\"})})},IL9HqazEP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(97, 97, 97))\"},children:\"0.20 kilometers from Lisbon city center\"})})},mWkmzV4pj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(97, 97, 97))\"},children:\"31.31 kilometers from Lanzarote city center\"})})},slNHoawrk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(97, 97, 97))\"},children:\"31.31 kilometers from Lanzarote city center\"})})},SQS68qEnS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(97, 97, 97))\"},children:\"0.20 kilometers from Lisbon city center\"})})},sXwCHsPC4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(97, 97, 97))\"},children:\"31.31 kilometers from Lanzarote city center\"})})},TyVHjh54Y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(97, 97, 97))\"},children:\"0.20 kilometers from Lisbon city center\"})})},ZdCyLrelH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(97, 97, 97))\"},children:\"31.31 kilometers from Lanzarote city center\"})})}},baseVariant,gestureVariant)})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1thmgnz\",\"data-framer-name\":\"Frame 1321319115\",layoutDependency:layoutDependency,layoutId:\"SATtROe3O\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-qdq1hl\",\"data-framer-name\":\"star\",layoutDependency:layoutDependency,layoutId:\"JRw1hDAss\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1poa86e\",\"data-framer-name\":\"elements\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,layoutDependency:layoutDependency,layoutId:\"I5337:446;1:123985\",svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M8.99997 0.0415039C9.22226 0.0415039 9.42783 0.159573 9.53983 0.351585L12.3242 5.12471L17.4861 6.42658C17.7001 6.48054 17.8697 6.6433 17.9325 6.85482C17.9952 7.06635 17.9418 7.29529 17.7919 7.4572L14.265 11.2669L15.5935 17.1965C15.6446 17.4245 15.5642 17.662 15.3851 17.8121C15.2061 17.9622 14.9582 17.9999 14.7426 17.9099L8.99997 15.5105L3.2573 17.9099C3.0417 17.9999 2.79386 17.9622 2.61481 17.8121C2.43576 17.662 2.35539 17.4245 2.40647 17.1965L3.73499 11.2669L0.208008 7.4572C0.0581147 7.29529 0.00469524 7.06635 0.0674557 6.85482C0.130216 6.6433 0.299856 6.48054 0.513797 6.42658L5.67579 5.12471L8.46011 0.351585C8.57212 0.159573 8.77768 0.0415039 8.99997 0.0415039Z\" fill=\"#1C1C1C\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"5.0\"})}),className:\"framer-18e7c7n\",\"data-framer-name\":\"4.9\",fonts:[\"GF;HK Grotesk-500\"],layoutDependency:layoutDependency,layoutId:\"u7lMuw6WH\",style:{\"--extracted-r6o4lv\":\"rgb(28, 28, 28)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({ZdCyLrelH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"3.0\"})})}},baseVariant,gestureVariant)})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1e2gg8p\",\"data-framer-name\":\"Frame 1321319117\",layoutDependency:layoutDependency,layoutId:\"uI6X_ZaFf\",style:{backgroundColor:\"rgb(243, 244, 246)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+472+0+0+0+16+0),sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 184px) / 3, 1px) - 32px)`,src:\"https://framerusercontent.com/images/in7cQ0jCFUxUHL0Yee84yO01iA.jpg\",srcSet:\"https://framerusercontent.com/images/in7cQ0jCFUxUHL0Yee84yO01iA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/in7cQ0jCFUxUHL0Yee84yO01iA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/in7cQ0jCFUxUHL0Yee84yO01iA.jpg 1280w\"},className:\"framer-1grofm3\",\"data-framer-name\":\"Rectangle 3463951\",layoutDependency:layoutDependency,layoutId:\"WnpI2vyke\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},...addPropertyOverrides({bxFBk54Dm:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+472+0+0+0+16+0),sizes:\"176.6667px\",src:\"https://framerusercontent.com/images/in7cQ0jCFUxUHL0Yee84yO01iA.jpg\",srcSet:\"https://framerusercontent.com/images/in7cQ0jCFUxUHL0Yee84yO01iA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/in7cQ0jCFUxUHL0Yee84yO01iA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/in7cQ0jCFUxUHL0Yee84yO01iA.jpg 1280w\"}},gXf_MXwln:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+20+422+0+0+0+940+16+0),pixelHeight:1304,pixelWidth:1548,sizes:`calc(${componentViewport?.width||\"100vw\"} - 72px)`,src:\"https://framerusercontent.com/images/mbQV0qfHGNyEJaPG1tODRY9Fbv4.png\",srcSet:\"https://framerusercontent.com/images/mbQV0qfHGNyEJaPG1tODRY9Fbv4.png?scale-down-to=512 512w,https://framerusercontent.com/images/mbQV0qfHGNyEJaPG1tODRY9Fbv4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mbQV0qfHGNyEJaPG1tODRY9Fbv4.png 1548w\"}},IL9HqazEP:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+472+0+0+0+16+0),pixelHeight:1304,pixelWidth:1548,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 184px) / 3, 1px) - 32px)`,src:\"https://framerusercontent.com/images/mbQV0qfHGNyEJaPG1tODRY9Fbv4.png\",srcSet:\"https://framerusercontent.com/images/mbQV0qfHGNyEJaPG1tODRY9Fbv4.png?scale-down-to=512 512w,https://framerusercontent.com/images/mbQV0qfHGNyEJaPG1tODRY9Fbv4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mbQV0qfHGNyEJaPG1tODRY9Fbv4.png 1548w\"}},mWkmzV4pj:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+20+422+0+0+0+940+16+0),pixelHeight:1304,pixelWidth:1548,sizes:`calc(${componentViewport?.width||\"100vw\"} - 72px)`,src:\"https://framerusercontent.com/images/JHcjJhPlm4d5mdSKHcGcnU8PK54.png\",srcSet:\"https://framerusercontent.com/images/JHcjJhPlm4d5mdSKHcGcnU8PK54.png?scale-down-to=512 512w,https://framerusercontent.com/images/JHcjJhPlm4d5mdSKHcGcnU8PK54.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JHcjJhPlm4d5mdSKHcGcnU8PK54.png 1548w\"}},nZnSZxSav:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+20+422+0+0+0+940+16+0),sizes:`calc(${componentViewport?.width||\"100vw\"} - 72px)`,src:\"https://framerusercontent.com/images/in7cQ0jCFUxUHL0Yee84yO01iA.jpg\",srcSet:\"https://framerusercontent.com/images/in7cQ0jCFUxUHL0Yee84yO01iA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/in7cQ0jCFUxUHL0Yee84yO01iA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/in7cQ0jCFUxUHL0Yee84yO01iA.jpg 1280w\"}},O7tfHpu5E:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+472+0+0+0+16+0),sizes:\"306.6667px\",src:\"https://framerusercontent.com/images/in7cQ0jCFUxUHL0Yee84yO01iA.jpg\",srcSet:\"https://framerusercontent.com/images/in7cQ0jCFUxUHL0Yee84yO01iA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/in7cQ0jCFUxUHL0Yee84yO01iA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/in7cQ0jCFUxUHL0Yee84yO01iA.jpg 1280w\"}},slNHoawrk:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+472+0+0+0+16+0),pixelHeight:1304,pixelWidth:1548,sizes:\"176.6667px\",src:\"https://framerusercontent.com/images/JHcjJhPlm4d5mdSKHcGcnU8PK54.png\",srcSet:\"https://framerusercontent.com/images/JHcjJhPlm4d5mdSKHcGcnU8PK54.png?scale-down-to=512 512w,https://framerusercontent.com/images/JHcjJhPlm4d5mdSKHcGcnU8PK54.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JHcjJhPlm4d5mdSKHcGcnU8PK54.png 1548w\"}},SQS68qEnS:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+472+0+0+0+16+0),pixelHeight:1304,pixelWidth:1548,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 184px) / 3, 1px) - 32px)`,src:\"https://framerusercontent.com/images/mbQV0qfHGNyEJaPG1tODRY9Fbv4.png\",srcSet:\"https://framerusercontent.com/images/mbQV0qfHGNyEJaPG1tODRY9Fbv4.png?scale-down-to=512 512w,https://framerusercontent.com/images/mbQV0qfHGNyEJaPG1tODRY9Fbv4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mbQV0qfHGNyEJaPG1tODRY9Fbv4.png 1548w\"}},sXwCHsPC4:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+472+0+0+0+16+0),pixelHeight:1304,pixelWidth:1548,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 184px) / 3, 1px) - 32px)`,src:\"https://framerusercontent.com/images/JHcjJhPlm4d5mdSKHcGcnU8PK54.png\",srcSet:\"https://framerusercontent.com/images/JHcjJhPlm4d5mdSKHcGcnU8PK54.png?scale-down-to=512 512w,https://framerusercontent.com/images/JHcjJhPlm4d5mdSKHcGcnU8PK54.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JHcjJhPlm4d5mdSKHcGcnU8PK54.png 1548w\"}},TyVHjh54Y:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+472+0+0+0+16+0),pixelHeight:1304,pixelWidth:1548,sizes:\"176.6667px\",src:\"https://framerusercontent.com/images/mbQV0qfHGNyEJaPG1tODRY9Fbv4.png\",srcSet:\"https://framerusercontent.com/images/mbQV0qfHGNyEJaPG1tODRY9Fbv4.png?scale-down-to=512 512w,https://framerusercontent.com/images/mbQV0qfHGNyEJaPG1tODRY9Fbv4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mbQV0qfHGNyEJaPG1tODRY9Fbv4.png 1548w\"}},ZdCyLrelH:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+472+0+0+0+16+0),pixelHeight:1304,pixelWidth:1548,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 184px) / 3, 1px) - 32px)`,src:\"https://framerusercontent.com/images/JHcjJhPlm4d5mdSKHcGcnU8PK54.png\",srcSet:\"https://framerusercontent.com/images/JHcjJhPlm4d5mdSKHcGcnU8PK54.png?scale-down-to=512 512w,https://framerusercontent.com/images/JHcjJhPlm4d5mdSKHcGcnU8PK54.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JHcjJhPlm4d5mdSKHcGcnU8PK54.png 1548w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1dd8lul\",\"data-framer-name\":\"Frame 1321319114\",layoutDependency:layoutDependency,layoutId:\"JsDgklaRe\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vexzld\",\"data-framer-name\":\"Frame 1321319112\",layoutDependency:layoutDependency,layoutId:\"XdZ09_9S4\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"Palm Cay Beach Club & Marina\"})}),className:\"framer-1o3mlc2\",\"data-framer-name\":\"Palm Cay Beach Club & Marina\",fonts:[\"GF;HK Grotesk-600\"],layoutDependency:layoutDependency,layoutId:\"xu5CsNltL\",style:{\"--extracted-r6o4lv\":\"rgb(28, 28, 28)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({bxFBk54Dm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"Palm Cay Beach Club & Marina\"})})},gXf_MXwln:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"Majestic Hotel & Spa Barcelona\"})})},IL9HqazEP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"Majestic Hotel & Spa Barcelona\"})})},mWkmzV4pj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"Abora Continental By Lopesan Hot...\"})})},slNHoawrk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"Abora Continental By Lopesan Hot...\"})})},SQS68qEnS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"Majestic Hotel & Spa Barcelona\"})})},sXwCHsPC4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"Abora Continental By Lopesan Hot...\"})})},TyVHjh54Y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"Majestic Hotel & Spa Barcelona\"})})},ZdCyLrelH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"Abora Continental By Lopesan Hot...\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ga25el\",\"data-framer-name\":\"Frame 1321319111\",layoutDependency:layoutDependency,layoutId:\"ITAuQW8Fr\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-rhfuhm\",\"data-framer-name\":\"location-01\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"wXPAoiSJe\",svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M11.3481 17.8056C10.9867 18.144 10.5037 18.3332 10.0009 18.3332C9.49821 18.3332 9.01515 18.144 8.65374 17.8056C5.34418 14.6882 0.908969 11.2056 3.07189 6.14956C4.24136 3.4158 7.04862 1.6665 10.0009 1.6665C12.9532 1.6665 15.7605 3.4158 16.93 6.14956C19.0902 11.1992 14.6658 14.6989 11.3481 17.8056Z\" stroke=\"#616161\" stroke-width=\"1.2\"/>\\n<path d=\"M12.9166 9.16667C12.9166 10.7775 11.6108 12.0833 9.99998 12.0833C8.38915 12.0833 7.08331 10.7775 7.08331 9.16667C7.08331 7.55584 8.38915 6.25 9.99998 6.25C11.6108 6.25 12.9166 7.55584 12.9166 9.16667Z\" stroke=\"#616161\" stroke-width=\"1.2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(97, 97, 97))\"},children:\"7.24 kilometers from Nassau city center\"})}),className:\"framer-1e0yaot\",\"data-framer-name\":\"7.24 kilometers from Nassau city center\",fonts:[\"GF;HK Grotesk-500\"],layoutDependency:layoutDependency,layoutId:\"zz7shiq3F\",style:{\"--extracted-r6o4lv\":\"rgb(97, 97, 97)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({gXf_MXwln:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(97, 97, 97))\"},children:\"0.78 kilometers from Barcelona city center\"})})},IL9HqazEP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(97, 97, 97))\"},children:\"0.78 kilometers from Barcelona city center\"})})},mWkmzV4pj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(97, 97, 97))\"},children:\"26.46 kilometers from Gran Canaria city center\"})})},slNHoawrk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(97, 97, 97))\"},children:\"26.46 kilometers from Gran Canaria city center\"})})},SQS68qEnS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(97, 97, 97))\"},children:\"0.78 kilometers from Barcelona city center\"})})},sXwCHsPC4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(97, 97, 97))\"},children:\"26.46 kilometers from Gran Canaria city center\"})})},TyVHjh54Y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(97, 97, 97))\"},children:\"0.78 kilometers from Barcelona city center\"})})},ZdCyLrelH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(97, 97, 97))\"},children:\"26.46 kilometers from Gran Canaria city center\"})})}},baseVariant,gestureVariant)})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ik2tyg\",\"data-framer-name\":\"Frame 1321319115\",layoutDependency:layoutDependency,layoutId:\"dnP1AKWXQ\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-5pesjt\",\"data-framer-name\":\"star\",layoutDependency:layoutDependency,layoutId:\"fYJTIF5wI\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-85n7xd\",\"data-framer-name\":\"elements\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,layoutDependency:layoutDependency,layoutId:\"I5337:452;1:123985\",svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M8.99997 0.0415039C9.22226 0.0415039 9.42783 0.159573 9.53983 0.351585L12.3242 5.12471L17.4861 6.42658C17.7001 6.48054 17.8697 6.6433 17.9325 6.85482C17.9952 7.06635 17.9418 7.29529 17.7919 7.4572L14.265 11.2669L15.5935 17.1965C15.6446 17.4245 15.5642 17.662 15.3851 17.8121C15.2061 17.9622 14.9582 17.9999 14.7426 17.9099L8.99997 15.5105L3.2573 17.9099C3.0417 17.9999 2.79386 17.9622 2.61481 17.8121C2.43576 17.662 2.35539 17.4245 2.40647 17.1965L3.73499 11.2669L0.208008 7.4572C0.0581147 7.29529 0.00469524 7.06635 0.0674557 6.85482C0.130216 6.6433 0.299856 6.48054 0.513797 6.42658L5.67579 5.12471L8.46011 0.351585C8.57212 0.159573 8.77768 0.0415039 8.99997 0.0415039Z\" fill=\"#1C1C1C\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"3.0\"})}),className:\"framer-1hcvu9y\",\"data-framer-name\":\"4.9\",fonts:[\"GF;HK Grotesk-500\"],layoutDependency:layoutDependency,layoutId:\"KPuI_xDwF\",style:{\"--extracted-r6o4lv\":\"rgb(28, 28, 28)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({SQS68qEnS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"5.0\"})})}},baseVariant,gestureVariant)})]})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-122et3c\",\"data-framer-name\":\"Frame 1321319134\",layoutDependency:layoutDependency,layoutId:\"I63cKfZ8C\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zg1h2g\",\"data-framer-name\":\"Frame 1321319121\",layoutDependency:layoutDependency,layoutId:\"dA62PtS0x\",style:{backgroundColor:\"rgb(243, 244, 246)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+472+0+470+0+16+0),src:\"https://framerusercontent.com/images/CqzWIWE5jMB4LPWlZeLHWMjNSeE.jpg\"},className:\"framer-195vpu3\",\"data-framer-name\":\"Rectangle 3463951\",layoutDependency:layoutDependency,layoutId:\"VJy2bTPc6\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},...addPropertyOverrides({gXf_MXwln:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+20+422+0+1410+0+0+16+0),pixelHeight:1304,pixelWidth:1548,sizes:`calc(${componentViewport?.width||\"100vw\"} - 72px)`,src:\"https://framerusercontent.com/images/nCHPfEEjl6FjfSoxbwdfNtI6ARA.png\",srcSet:\"https://framerusercontent.com/images/nCHPfEEjl6FjfSoxbwdfNtI6ARA.png?scale-down-to=512 512w,https://framerusercontent.com/images/nCHPfEEjl6FjfSoxbwdfNtI6ARA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/nCHPfEEjl6FjfSoxbwdfNtI6ARA.png 1548w\"}},IL9HqazEP:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+472+0+470+0+16+0),pixelHeight:1304,pixelWidth:1548,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 184px) / 3, 1px) - 32px)`,src:\"https://framerusercontent.com/images/nCHPfEEjl6FjfSoxbwdfNtI6ARA.png\",srcSet:\"https://framerusercontent.com/images/nCHPfEEjl6FjfSoxbwdfNtI6ARA.png?scale-down-to=512 512w,https://framerusercontent.com/images/nCHPfEEjl6FjfSoxbwdfNtI6ARA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/nCHPfEEjl6FjfSoxbwdfNtI6ARA.png 1548w\"}},mWkmzV4pj:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+20+422+0+1410+0+0+16+0),pixelHeight:1304,pixelWidth:1548,sizes:`calc(${componentViewport?.width||\"100vw\"} - 72px)`,src:\"https://framerusercontent.com/images/WE4W6hzBtw3qaAaIQopvjqmUxdc.png\",srcSet:\"https://framerusercontent.com/images/WE4W6hzBtw3qaAaIQopvjqmUxdc.png?scale-down-to=512 512w,https://framerusercontent.com/images/WE4W6hzBtw3qaAaIQopvjqmUxdc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WE4W6hzBtw3qaAaIQopvjqmUxdc.png 1548w\"}},nZnSZxSav:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+20+422+0+1410+0+0+16+0),src:\"https://framerusercontent.com/images/CqzWIWE5jMB4LPWlZeLHWMjNSeE.jpg\"}},slNHoawrk:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+472+0+470+0+16+0),pixelHeight:1304,pixelWidth:1548,sizes:\"176.6667px\",src:\"https://framerusercontent.com/images/WE4W6hzBtw3qaAaIQopvjqmUxdc.png\",srcSet:\"https://framerusercontent.com/images/WE4W6hzBtw3qaAaIQopvjqmUxdc.png?scale-down-to=512 512w,https://framerusercontent.com/images/WE4W6hzBtw3qaAaIQopvjqmUxdc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WE4W6hzBtw3qaAaIQopvjqmUxdc.png 1548w\"}},SQS68qEnS:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+472+0+470+0+16+0),pixelHeight:1304,pixelWidth:1548,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 184px) / 3, 1px) - 32px)`,src:\"https://framerusercontent.com/images/nCHPfEEjl6FjfSoxbwdfNtI6ARA.png\",srcSet:\"https://framerusercontent.com/images/nCHPfEEjl6FjfSoxbwdfNtI6ARA.png?scale-down-to=512 512w,https://framerusercontent.com/images/nCHPfEEjl6FjfSoxbwdfNtI6ARA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/nCHPfEEjl6FjfSoxbwdfNtI6ARA.png 1548w\"}},sXwCHsPC4:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+472+0+470+0+16+0),pixelHeight:1304,pixelWidth:1548,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 184px) / 3, 1px) - 32px)`,src:\"https://framerusercontent.com/images/WE4W6hzBtw3qaAaIQopvjqmUxdc.png\",srcSet:\"https://framerusercontent.com/images/WE4W6hzBtw3qaAaIQopvjqmUxdc.png?scale-down-to=512 512w,https://framerusercontent.com/images/WE4W6hzBtw3qaAaIQopvjqmUxdc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WE4W6hzBtw3qaAaIQopvjqmUxdc.png 1548w\"}},TyVHjh54Y:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+472+0+470+0+16+0),pixelHeight:1304,pixelWidth:1548,sizes:\"176.6667px\",src:\"https://framerusercontent.com/images/nCHPfEEjl6FjfSoxbwdfNtI6ARA.png\",srcSet:\"https://framerusercontent.com/images/nCHPfEEjl6FjfSoxbwdfNtI6ARA.png?scale-down-to=512 512w,https://framerusercontent.com/images/nCHPfEEjl6FjfSoxbwdfNtI6ARA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/nCHPfEEjl6FjfSoxbwdfNtI6ARA.png 1548w\"}},ZdCyLrelH:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+472+0+470+0+16+0),pixelHeight:1304,pixelWidth:1548,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 184px) / 3, 1px) - 32px)`,src:\"https://framerusercontent.com/images/WE4W6hzBtw3qaAaIQopvjqmUxdc.png\",srcSet:\"https://framerusercontent.com/images/WE4W6hzBtw3qaAaIQopvjqmUxdc.png?scale-down-to=512 512w,https://framerusercontent.com/images/WE4W6hzBtw3qaAaIQopvjqmUxdc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WE4W6hzBtw3qaAaIQopvjqmUxdc.png 1548w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ch0bqu\",\"data-framer-name\":\"Frame 1321319114\",layoutDependency:layoutDependency,layoutId:\"SHeMJTynG\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-s7xc67\",\"data-framer-name\":\"Frame 1321319112\",layoutDependency:layoutDependency,layoutId:\"z3weFiW84\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"Fairmont Royal Pavilion \"})}),className:\"framer-1vkchky\",\"data-framer-name\":\"Fairmont Royal Pavilion\",fonts:[\"GF;HK Grotesk-600\"],layoutDependency:layoutDependency,layoutId:\"BX8sFtHvz\",style:{\"--extracted-r6o4lv\":\"rgb(28, 28, 28)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({bxFBk54Dm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"Fairmont Royal Pavilion \"})})},gXf_MXwln:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"Villa Alessandra\"})})},IL9HqazEP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"Villa Alessandra\"})})},mWkmzV4pj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"Sol Tenerife\"})})},slNHoawrk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"Sol Tenerife\"})})},SQS68qEnS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"Villa Alessandra\"})})},sXwCHsPC4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"Sol Tenerife\"})})},TyVHjh54Y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"Villa Alessandra\"})})},ZdCyLrelH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"Sol Tenerife\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1aa053i\",\"data-framer-name\":\"Frame 1321319111\",layoutDependency:layoutDependency,layoutId:\"CEPg6FiQQ\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-oqqwuf\",\"data-framer-name\":\"location-01\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"xXnX7Qdme\",svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M11.3481 17.8056C10.9867 18.144 10.5037 18.3332 10.0009 18.3332C9.49821 18.3332 9.01515 18.144 8.65374 17.8056C5.34418 14.6882 0.908969 11.2056 3.07189 6.14956C4.24136 3.4158 7.04862 1.6665 10.0009 1.6665C12.9532 1.6665 15.7605 3.4158 16.93 6.14956C19.0902 11.1992 14.6658 14.6989 11.3481 17.8056Z\" stroke=\"#616161\" stroke-width=\"1.2\"/>\\n<path d=\"M12.9167 9.16667C12.9167 10.7775 11.6108 12.0833 10 12.0833C8.38917 12.0833 7.08334 10.7775 7.08334 9.16667C7.08334 7.55584 8.38917 6.25 10 6.25C11.6108 6.25 12.9167 7.55584 12.9167 9.16667Z\" stroke=\"#616161\" stroke-width=\"1.2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(97, 97, 97))\"},children:\"21.61 kilometers from St Philip city center\"})}),className:\"framer-1uye44t\",\"data-framer-name\":\"21.61 kilometers from St Philip city center\",fonts:[\"GF;HK Grotesk-500\"],layoutDependency:layoutDependency,layoutId:\"VDmwirT7r\",style:{\"--extracted-r6o4lv\":\"rgb(97, 97, 97)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({gXf_MXwln:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(97, 97, 97))\"},children:\"4.75 kilometers from Paris city center\"})})},IL9HqazEP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(97, 97, 97))\"},children:\"4.75 kilometers from Paris city center\"})})},mWkmzV4pj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(97, 97, 97))\"},children:\"6.32 kilometers from Arona city center\"})})},slNHoawrk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(97, 97, 97))\"},children:\"6.32 kilometers from Arona city center\"})})},SQS68qEnS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(97, 97, 97))\"},children:\"4.75 kilometers from Paris city center\"})})},sXwCHsPC4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(97, 97, 97))\"},children:\"6.32 kilometers from Arona city center\"})})},TyVHjh54Y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(97, 97, 97))\"},children:\"4.75 kilometers from Paris city center\"})})},ZdCyLrelH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(97, 97, 97))\"},children:\"6.32 kilometers from Arona city center\"})})}},baseVariant,gestureVariant)})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wlkpoc\",\"data-framer-name\":\"Frame 1321319115\",layoutDependency:layoutDependency,layoutId:\"Z3r5ba6nM\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-qkbm8g\",\"data-framer-name\":\"star\",layoutDependency:layoutDependency,layoutId:\"tCcSiJIWh\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-6uo2w8\",\"data-framer-name\":\"elements\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,layoutDependency:layoutDependency,layoutId:\"I5337:470;1:123985\",svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M9 0.0415039C9.22229 0.0415039 9.42786 0.159573 9.53986 0.351585L12.3242 5.12471L17.4862 6.42658C17.7001 6.48054 17.8698 6.6433 17.9325 6.85482C17.9953 7.06635 17.9419 7.29529 17.792 7.4572L14.265 11.2669L15.5935 17.1965C15.6446 17.4245 15.5642 17.662 15.3852 17.8121C15.2061 17.9622 14.9583 17.9999 14.7427 17.9099L9 15.5105L3.25733 17.9099C3.04173 17.9999 2.7939 17.9622 2.61484 17.8121C2.43579 17.662 2.35542 17.4245 2.4065 17.1965L3.73502 11.2669L0.208038 7.4572C0.0581452 7.29529 0.00472576 7.06635 0.0674862 6.85482C0.130247 6.6433 0.299887 6.48054 0.513828 6.42658L5.67582 5.12471L8.46014 0.351585C8.57215 0.159573 8.77771 0.0415039 9 0.0415039Z\" fill=\"#1C1C1C\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"5.0\"})}),className:\"framer-1pmo3od\",\"data-framer-name\":\"4.9\",fonts:[\"GF;HK Grotesk-500\"],layoutDependency:layoutDependency,layoutId:\"HjEYjfYeY\",style:{\"--extracted-r6o4lv\":\"rgb(28, 28, 28)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({SQS68qEnS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"4.0\"})})},ZdCyLrelH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"4.0\"})})}},baseVariant,gestureVariant)})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ig3um6\",\"data-framer-name\":\"Frame 1321319122\",layoutDependency:layoutDependency,layoutId:\"qOdJxVCk0\",style:{backgroundColor:\"rgb(243, 244, 246)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+472+0+470+0+16+0),sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 184px) / 3, 1px) - 32px)`,src:\"https://framerusercontent.com/images/DKfGHf74J8fpUzfUzx8rgzPX4.jpg\",srcSet:\"https://framerusercontent.com/images/DKfGHf74J8fpUzfUzx8rgzPX4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/DKfGHf74J8fpUzfUzx8rgzPX4.jpg 800w\"},className:\"framer-12bfivz\",\"data-framer-name\":\"Rectangle 3463951\",layoutDependency:layoutDependency,layoutId:\"fMjg55ouz\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},...addPropertyOverrides({bxFBk54Dm:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+472+0+470+0+16+0),sizes:\"176.6667px\",src:\"https://framerusercontent.com/images/DKfGHf74J8fpUzfUzx8rgzPX4.jpg\",srcSet:\"https://framerusercontent.com/images/DKfGHf74J8fpUzfUzx8rgzPX4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/DKfGHf74J8fpUzfUzx8rgzPX4.jpg 800w\"}},gXf_MXwln:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+20+422+0+1410+0+470+16+0),pixelHeight:1304,pixelWidth:1548,sizes:`calc(${componentViewport?.width||\"100vw\"} - 72px)`,src:\"https://framerusercontent.com/images/zung50bqysp9bXRrbrpDC0EXog.png\",srcSet:\"https://framerusercontent.com/images/zung50bqysp9bXRrbrpDC0EXog.png?scale-down-to=512 512w,https://framerusercontent.com/images/zung50bqysp9bXRrbrpDC0EXog.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zung50bqysp9bXRrbrpDC0EXog.png 1548w\"}},IL9HqazEP:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+472+0+470+0+16+0),pixelHeight:1304,pixelWidth:1548,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 184px) / 3, 1px) - 32px)`,src:\"https://framerusercontent.com/images/zung50bqysp9bXRrbrpDC0EXog.png\",srcSet:\"https://framerusercontent.com/images/zung50bqysp9bXRrbrpDC0EXog.png?scale-down-to=512 512w,https://framerusercontent.com/images/zung50bqysp9bXRrbrpDC0EXog.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zung50bqysp9bXRrbrpDC0EXog.png 1548w\"}},mWkmzV4pj:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+20+422+0+1410+0+470+16+0),pixelHeight:1304,pixelWidth:1548,sizes:`calc(${componentViewport?.width||\"100vw\"} - 72px)`,src:\"https://framerusercontent.com/images/EaorOzl5yuBgiuwPjafvMrMkbY.png\",srcSet:\"https://framerusercontent.com/images/EaorOzl5yuBgiuwPjafvMrMkbY.png?scale-down-to=512 512w,https://framerusercontent.com/images/EaorOzl5yuBgiuwPjafvMrMkbY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/EaorOzl5yuBgiuwPjafvMrMkbY.png 1548w\"}},nZnSZxSav:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+20+422+0+1410+0+470+16+0),sizes:`calc(${componentViewport?.width||\"100vw\"} - 72px)`,src:\"https://framerusercontent.com/images/DKfGHf74J8fpUzfUzx8rgzPX4.jpg\",srcSet:\"https://framerusercontent.com/images/DKfGHf74J8fpUzfUzx8rgzPX4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/DKfGHf74J8fpUzfUzx8rgzPX4.jpg 800w\"}},O7tfHpu5E:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+472+0+470+0+16+0),sizes:\"306.6667px\",src:\"https://framerusercontent.com/images/DKfGHf74J8fpUzfUzx8rgzPX4.jpg\",srcSet:\"https://framerusercontent.com/images/DKfGHf74J8fpUzfUzx8rgzPX4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/DKfGHf74J8fpUzfUzx8rgzPX4.jpg 800w\"}},slNHoawrk:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+472+0+470+0+16+0),pixelHeight:1304,pixelWidth:1548,sizes:\"176.6667px\",src:\"https://framerusercontent.com/images/EaorOzl5yuBgiuwPjafvMrMkbY.png\",srcSet:\"https://framerusercontent.com/images/EaorOzl5yuBgiuwPjafvMrMkbY.png?scale-down-to=512 512w,https://framerusercontent.com/images/EaorOzl5yuBgiuwPjafvMrMkbY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/EaorOzl5yuBgiuwPjafvMrMkbY.png 1548w\"}},SQS68qEnS:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+472+0+470+0+16+0),pixelHeight:1304,pixelWidth:1548,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 184px) / 3, 1px) - 32px)`,src:\"https://framerusercontent.com/images/zung50bqysp9bXRrbrpDC0EXog.png\",srcSet:\"https://framerusercontent.com/images/zung50bqysp9bXRrbrpDC0EXog.png?scale-down-to=512 512w,https://framerusercontent.com/images/zung50bqysp9bXRrbrpDC0EXog.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zung50bqysp9bXRrbrpDC0EXog.png 1548w\"}},sXwCHsPC4:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+472+0+470+0+16+0),pixelHeight:1304,pixelWidth:1548,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 184px) / 3, 1px) - 32px)`,src:\"https://framerusercontent.com/images/EaorOzl5yuBgiuwPjafvMrMkbY.png\",srcSet:\"https://framerusercontent.com/images/EaorOzl5yuBgiuwPjafvMrMkbY.png?scale-down-to=512 512w,https://framerusercontent.com/images/EaorOzl5yuBgiuwPjafvMrMkbY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/EaorOzl5yuBgiuwPjafvMrMkbY.png 1548w\"}},TyVHjh54Y:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+472+0+470+0+16+0),pixelHeight:1304,pixelWidth:1548,sizes:\"176.6667px\",src:\"https://framerusercontent.com/images/zung50bqysp9bXRrbrpDC0EXog.png\",srcSet:\"https://framerusercontent.com/images/zung50bqysp9bXRrbrpDC0EXog.png?scale-down-to=512 512w,https://framerusercontent.com/images/zung50bqysp9bXRrbrpDC0EXog.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zung50bqysp9bXRrbrpDC0EXog.png 1548w\"}},ZdCyLrelH:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+472+0+470+0+16+0),pixelHeight:1304,pixelWidth:1548,sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 184px) / 3, 1px) - 32px)`,src:\"https://framerusercontent.com/images/EaorOzl5yuBgiuwPjafvMrMkbY.png\",srcSet:\"https://framerusercontent.com/images/EaorOzl5yuBgiuwPjafvMrMkbY.png?scale-down-to=512 512w,https://framerusercontent.com/images/EaorOzl5yuBgiuwPjafvMrMkbY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/EaorOzl5yuBgiuwPjafvMrMkbY.png 1548w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-192sfd0\",\"data-framer-name\":\"Frame 1321319114\",layoutDependency:layoutDependency,layoutId:\"PzlTvbFsA\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ue17vf\",\"data-framer-name\":\"Frame 1321319112\",layoutDependency:layoutDependency,layoutId:\"dX4Ef_Uwm\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"Intercontinental Presidente Cancun\"})}),className:\"framer-rx4its\",\"data-framer-name\":\"Intercontinental Presidente Cancun Resort, An lhg Hotel\",fonts:[\"GF;HK Grotesk-600\"],layoutDependency:layoutDependency,layoutId:\"Cmn_VH7z8\",style:{\"--extracted-r6o4lv\":\"rgb(28, 28, 28)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({bxFBk54Dm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"Intercontinental Presidente Cancun\"})})},gXf_MXwln:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"Hotel King\"})})},IL9HqazEP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"Hotel King\"})})},mWkmzV4pj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"Le Meridien Mina Seyahi Beach Re\u2026\"})})},slNHoawrk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"Le Meridien Mina Seyahi Beach Re\u2026\"})})},SQS68qEnS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"Hotel King\"})})},sXwCHsPC4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"Le Meridien Mina Seyahi Beach Re\u2026\"})})},TyVHjh54Y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"Hotel King\"})})},ZdCyLrelH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"Le Meridien Mina Seyahi Beach Re\u2026\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hijde6\",\"data-framer-name\":\"Frame 1321319111\",layoutDependency:layoutDependency,layoutId:\"z16ZVqMvM\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-18skwkx\",\"data-framer-name\":\"location-01\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"TNKxB1rpV\",svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M11.3481 17.8056C10.9867 18.144 10.5037 18.3332 10.0009 18.3332C9.49821 18.3332 9.01515 18.144 8.65374 17.8056C5.34418 14.6882 0.908969 11.2056 3.07189 6.14956C4.24136 3.4158 7.04862 1.6665 10.0009 1.6665C12.9532 1.6665 15.7605 3.4158 16.93 6.14956C19.0902 11.1992 14.6658 14.6989 11.3481 17.8056Z\" stroke=\"#616161\" stroke-width=\"1.2\"/>\\n<path d=\"M12.9166 9.16667C12.9166 10.7775 11.6108 12.0833 9.99998 12.0833C8.38915 12.0833 7.08331 10.7775 7.08331 9.16667C7.08331 7.55584 8.38915 6.25 9.99998 6.25C11.6108 6.25 12.9166 7.55584 12.9166 9.16667Z\" stroke=\"#616161\" stroke-width=\"1.2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(97, 97, 97))\"},children:\"10.44 kilometers from Cancun city center\"})}),className:\"framer-ul56cu\",\"data-framer-name\":\"10.44 kilometers from Cancun city center\",fonts:[\"GF;HK Grotesk-500\"],layoutDependency:layoutDependency,layoutId:\"Sqdmrl9jt\",style:{\"--extracted-r6o4lv\":\"rgb(97, 97, 97)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({gXf_MXwln:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(97, 97, 97))\"},children:\"1.04 kilometers from Rome city center\"})})},IL9HqazEP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(97, 97, 97))\"},children:\"1.04 kilometers from Rome city center\"})})},mWkmzV4pj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(97, 97, 97))\"},children:\"27.03 kilometers from Dubai city center\"})})},slNHoawrk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(97, 97, 97))\"},children:\"27.03 kilometers from Dubai city center\"})})},SQS68qEnS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(97, 97, 97))\"},children:\"1.04 kilometers from Rome city center\"})})},sXwCHsPC4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(97, 97, 97))\"},children:\"27.03 kilometers from Dubai city center\"})})},TyVHjh54Y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(97, 97, 97))\"},children:\"1.04 kilometers from Rome city center\"})})},ZdCyLrelH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(97, 97, 97))\"},children:\"27.03 kilometers from Dubai city center\"})})}},baseVariant,gestureVariant)})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1t6dbzz\",\"data-framer-name\":\"Frame 1321319115\",layoutDependency:layoutDependency,layoutId:\"BMWaq3L0a\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kixew6\",\"data-framer-name\":\"star\",layoutDependency:layoutDependency,layoutId:\"xrwWG4FLk\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1mpu592\",\"data-framer-name\":\"elements\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,layoutDependency:layoutDependency,layoutId:\"I5337:464;1:123985\",svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M8.99997 0.0415039C9.22226 0.0415039 9.42783 0.159573 9.53983 0.351585L12.3242 5.12471L17.4861 6.42658C17.7001 6.48054 17.8697 6.6433 17.9325 6.85482C17.9952 7.06635 17.9418 7.29529 17.7919 7.4572L14.265 11.2669L15.5935 17.1965C15.6446 17.4245 15.5642 17.662 15.3851 17.8121C15.2061 17.9622 14.9582 17.9999 14.7426 17.9099L8.99997 15.5105L3.2573 17.9099C3.0417 17.9999 2.79386 17.9622 2.61481 17.8121C2.43576 17.662 2.35539 17.4245 2.40647 17.1965L3.73499 11.2669L0.208008 7.4572C0.0581147 7.29529 0.00469524 7.06635 0.0674557 6.85482C0.130216 6.6433 0.299856 6.48054 0.513797 6.42658L5.67579 5.12471L8.46011 0.351585C8.57212 0.159573 8.77768 0.0415039 8.99997 0.0415039Z\" fill=\"#1C1C1C\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"5.0\"})}),className:\"framer-1knz4zp\",\"data-framer-name\":\"4.9\",fonts:[\"GF;HK Grotesk-500\"],layoutDependency:layoutDependency,layoutId:\"n86xpTt2Y\",style:{\"--extracted-r6o4lv\":\"rgb(28, 28, 28)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({SQS68qEnS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"3.0\"})})}},baseVariant,gestureVariant)})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-drgrn7\",\"data-framer-name\":\"Frame 1321319123\",layoutDependency:layoutDependency,layoutId:\"cH2PTT_Nu\",style:{backgroundColor:\"rgb(243, 244, 246)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+472+0+470+0+16+0),positionX:\"center\",positionY:\"center\",sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 184px) / 3, 1px) - 32px)`,src:\"https://framerusercontent.com/images/5a3qVJAqaSgqPNCoDCrWsiLXTQ.png\",srcSet:\"https://framerusercontent.com/images/5a3qVJAqaSgqPNCoDCrWsiLXTQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/5a3qVJAqaSgqPNCoDCrWsiLXTQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5a3qVJAqaSgqPNCoDCrWsiLXTQ.png 1548w\"},className:\"framer-1iqkbgo\",\"data-framer-name\":\"Rectangle 3463951\",layoutDependency:layoutDependency,layoutId:\"mqCnpQ6hD\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},...addPropertyOverrides({bxFBk54Dm:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+472+0+470+0+16+0),positionX:\"center\",positionY:\"center\",sizes:\"176.6667px\",src:\"https://framerusercontent.com/images/5a3qVJAqaSgqPNCoDCrWsiLXTQ.png\",srcSet:\"https://framerusercontent.com/images/5a3qVJAqaSgqPNCoDCrWsiLXTQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/5a3qVJAqaSgqPNCoDCrWsiLXTQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5a3qVJAqaSgqPNCoDCrWsiLXTQ.png 1548w\"}},gXf_MXwln:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+20+422+0+1410+0+940+16+0),pixelHeight:1304,pixelWidth:1548,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 72px)`,src:\"https://framerusercontent.com/images/PrDYAgx8DcrmJX5T5OpS8TjPjL0.png\",srcSet:\"https://framerusercontent.com/images/PrDYAgx8DcrmJX5T5OpS8TjPjL0.png?scale-down-to=512 512w,https://framerusercontent.com/images/PrDYAgx8DcrmJX5T5OpS8TjPjL0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/PrDYAgx8DcrmJX5T5OpS8TjPjL0.png 1548w\"}},IL9HqazEP:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+472+0+470+0+16+0),pixelHeight:1304,pixelWidth:1548,positionX:\"center\",positionY:\"center\",sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 184px) / 3, 1px) - 32px)`,src:\"https://framerusercontent.com/images/PrDYAgx8DcrmJX5T5OpS8TjPjL0.png\",srcSet:\"https://framerusercontent.com/images/PrDYAgx8DcrmJX5T5OpS8TjPjL0.png?scale-down-to=512 512w,https://framerusercontent.com/images/PrDYAgx8DcrmJX5T5OpS8TjPjL0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/PrDYAgx8DcrmJX5T5OpS8TjPjL0.png 1548w\"}},mWkmzV4pj:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+20+422+0+1410+0+940+16+0),pixelHeight:1304,pixelWidth:1548,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 72px)`,src:\"https://framerusercontent.com/images/zjvA7GKo4OXDIQfqqbnTYnuQI.png\",srcSet:\"https://framerusercontent.com/images/zjvA7GKo4OXDIQfqqbnTYnuQI.png?scale-down-to=512 512w,https://framerusercontent.com/images/zjvA7GKo4OXDIQfqqbnTYnuQI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zjvA7GKo4OXDIQfqqbnTYnuQI.png 1548w\"}},nZnSZxSav:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+20+422+0+1410+0+940+16+0),positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 72px)`,src:\"https://framerusercontent.com/images/5a3qVJAqaSgqPNCoDCrWsiLXTQ.png\",srcSet:\"https://framerusercontent.com/images/5a3qVJAqaSgqPNCoDCrWsiLXTQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/5a3qVJAqaSgqPNCoDCrWsiLXTQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5a3qVJAqaSgqPNCoDCrWsiLXTQ.png 1548w\"}},O7tfHpu5E:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+472+0+470+0+16+0),positionX:\"center\",positionY:\"center\",sizes:\"306.6667px\",src:\"https://framerusercontent.com/images/5a3qVJAqaSgqPNCoDCrWsiLXTQ.png\",srcSet:\"https://framerusercontent.com/images/5a3qVJAqaSgqPNCoDCrWsiLXTQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/5a3qVJAqaSgqPNCoDCrWsiLXTQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5a3qVJAqaSgqPNCoDCrWsiLXTQ.png 1548w\"}},slNHoawrk:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+472+0+470+0+16+0),pixelHeight:1304,pixelWidth:1548,positionX:\"center\",positionY:\"center\",sizes:\"176.6667px\",src:\"https://framerusercontent.com/images/zjvA7GKo4OXDIQfqqbnTYnuQI.png\",srcSet:\"https://framerusercontent.com/images/zjvA7GKo4OXDIQfqqbnTYnuQI.png?scale-down-to=512 512w,https://framerusercontent.com/images/zjvA7GKo4OXDIQfqqbnTYnuQI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zjvA7GKo4OXDIQfqqbnTYnuQI.png 1548w\"}},SQS68qEnS:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+472+0+470+0+16+0),pixelHeight:1304,pixelWidth:1548,positionX:\"center\",positionY:\"center\",sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 184px) / 3, 1px) - 32px)`,src:\"https://framerusercontent.com/images/PrDYAgx8DcrmJX5T5OpS8TjPjL0.png\",srcSet:\"https://framerusercontent.com/images/PrDYAgx8DcrmJX5T5OpS8TjPjL0.png?scale-down-to=512 512w,https://framerusercontent.com/images/PrDYAgx8DcrmJX5T5OpS8TjPjL0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/PrDYAgx8DcrmJX5T5OpS8TjPjL0.png 1548w\"}},sXwCHsPC4:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+472+0+470+0+16+0),pixelHeight:1304,pixelWidth:1548,positionX:\"center\",positionY:\"center\",sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 184px) / 3, 1px) - 32px)`,src:\"https://framerusercontent.com/images/zjvA7GKo4OXDIQfqqbnTYnuQI.png\",srcSet:\"https://framerusercontent.com/images/zjvA7GKo4OXDIQfqqbnTYnuQI.png?scale-down-to=512 512w,https://framerusercontent.com/images/zjvA7GKo4OXDIQfqqbnTYnuQI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zjvA7GKo4OXDIQfqqbnTYnuQI.png 1548w\"}},TyVHjh54Y:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+472+0+470+0+16+0),pixelHeight:1304,pixelWidth:1548,positionX:\"center\",positionY:\"center\",sizes:\"176.6667px\",src:\"https://framerusercontent.com/images/PrDYAgx8DcrmJX5T5OpS8TjPjL0.png\",srcSet:\"https://framerusercontent.com/images/PrDYAgx8DcrmJX5T5OpS8TjPjL0.png?scale-down-to=512 512w,https://framerusercontent.com/images/PrDYAgx8DcrmJX5T5OpS8TjPjL0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/PrDYAgx8DcrmJX5T5OpS8TjPjL0.png 1548w\"}},ZdCyLrelH:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+472+0+470+0+16+0),pixelHeight:1304,pixelWidth:1548,positionX:\"center\",positionY:\"center\",sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 184px) / 3, 1px) - 32px)`,src:\"https://framerusercontent.com/images/zjvA7GKo4OXDIQfqqbnTYnuQI.png\",srcSet:\"https://framerusercontent.com/images/zjvA7GKo4OXDIQfqqbnTYnuQI.png?scale-down-to=512 512w,https://framerusercontent.com/images/zjvA7GKo4OXDIQfqqbnTYnuQI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zjvA7GKo4OXDIQfqqbnTYnuQI.png 1548w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-176ga8y\",\"data-framer-name\":\"Frame 1321319114\",layoutDependency:layoutDependency,layoutId:\"xANm_ildK\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1h634qn\",\"data-framer-name\":\"Frame 1321319112\",layoutDependency:layoutDependency,layoutId:\"DkM6l3Iwn\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"Sheraton Maldives Full Moon Resort & Spa\"})}),className:\"framer-12hkvli\",\"data-framer-name\":\"Sheraton Maldives Full Moon Resort & Spa\",fonts:[\"GF;HK Grotesk-600\"],layoutDependency:layoutDependency,layoutId:\"c4e96PJue\",style:{\"--extracted-r6o4lv\":\"rgb(28, 28, 28)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({bxFBk54Dm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"Sheraton Maldives Full Moon Resort & Spa\"})})},gXf_MXwln:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"Petit Palace Alcala\"})})},IL9HqazEP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"Petit Palace Alcala\"})})},mWkmzV4pj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"Wyndham Grand Algarve\"})})},slNHoawrk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"Wyndham Grand Algarve\"})})},SQS68qEnS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"Petit Palace Alcala\"})})},sXwCHsPC4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"Wyndham Grand Algarve\"})})},TyVHjh54Y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"Petit Palace Alcala\"})})},ZdCyLrelH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"Wyndham Grand Algarve\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1red0do\",\"data-framer-name\":\"Frame 1321319111\",layoutDependency:layoutDependency,layoutId:\"CmBsGhuW1\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-15g6nyv\",\"data-framer-name\":\"location-01\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"eeVP538EK\",svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M11.3481 17.8056C10.9867 18.144 10.5037 18.3332 10.0009 18.3332C9.49821 18.3332 9.01515 18.144 8.65374 17.8056C5.34418 14.6882 0.908969 11.2056 3.07189 6.14956C4.24136 3.4158 7.04862 1.6665 10.0009 1.6665C12.9532 1.6665 15.7605 3.4158 16.93 6.14956C19.0902 11.1992 14.6658 14.6989 11.3481 17.8056Z\" stroke=\"#616161\" stroke-width=\"1.2\"/>\\n<path d=\"M12.9166 9.16667C12.9166 10.7775 11.6108 12.0833 9.99998 12.0833C8.38915 12.0833 7.08331 10.7775 7.08331 9.16667C7.08331 7.55584 8.38915 6.25 9.99998 6.25C11.6108 6.25 12.9166 7.55584 12.9166 9.16667Z\" stroke=\"#616161\" stroke-width=\"1.2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(97, 97, 97))\"},children:\"10.08 kilometers from Male city center\"})}),className:\"framer-1qbowis\",\"data-framer-name\":\"10.08 kilometers from Male city center\",fonts:[\"GF;HK Grotesk-500\"],layoutDependency:layoutDependency,layoutId:\"qSyI9Cn6b\",style:{\"--extracted-r6o4lv\":\"rgb(97, 97, 97)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({gXf_MXwln:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(97, 97, 97))\"},children:\"0.36 kilometers from Madrid city center\"})})},IL9HqazEP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(97, 97, 97))\"},children:\"0.36 kilometers from Madrid city center\"})})},mWkmzV4pj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(97, 97, 97))\"},children:\"8.08 kilometers from Algarve city center\"})})},slNHoawrk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(97, 97, 97))\"},children:\"8.08 kilometers from Algarve city center\"})})},SQS68qEnS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(97, 97, 97))\"},children:\"0.36 kilometers from Madrid city center\"})})},sXwCHsPC4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(97, 97, 97))\"},children:\"8.08 kilometers from Algarve city center\"})})},TyVHjh54Y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(97, 97, 97))\"},children:\"0.36 kilometers from Madrid city center\"})})},ZdCyLrelH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(97, 97, 97))\"},children:\"8.08 kilometers from Algarve city center\"})})}},baseVariant,gestureVariant)})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-192dujh\",\"data-framer-name\":\"Frame 1321319115\",layoutDependency:layoutDependency,layoutId:\"P0JD5e2lT\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ehs1zj\",\"data-framer-name\":\"star\",layoutDependency:layoutDependency,layoutId:\"Tzeevt_2i\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1mou6ma\",\"data-framer-name\":\"elements\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,layoutDependency:layoutDependency,layoutId:\"I5337:458;1:123985\",svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M8.99997 0.0415039C9.22226 0.0415039 9.42783 0.159573 9.53983 0.351585L12.3242 5.12471L17.4861 6.42658C17.7001 6.48054 17.8697 6.6433 17.9325 6.85482C17.9952 7.06635 17.9418 7.29529 17.7919 7.4572L14.265 11.2669L15.5935 17.1965C15.6446 17.4245 15.5642 17.662 15.3851 17.8121C15.2061 17.9622 14.9582 17.9999 14.7426 17.9099L8.99997 15.5105L3.2573 17.9099C3.0417 17.9999 2.79386 17.9622 2.61481 17.8121C2.43576 17.662 2.35539 17.4245 2.40647 17.1965L3.73499 11.2669L0.208008 7.4572C0.0581147 7.29529 0.00469524 7.06635 0.0674557 6.85482C0.130216 6.6433 0.299856 6.48054 0.513797 6.42658L5.67579 5.12471L8.46011 0.351585C8.57212 0.159573 8.77768 0.0415039 8.99997 0.0415039Z\" fill=\"#1C1C1C\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"5.0\"})}),className:\"framer-iqhl7g\",\"data-framer-name\":\"4.9\",fonts:[\"GF;HK Grotesk-500\"],layoutDependency:layoutDependency,layoutId:\"IzW3nFPbW\",style:{\"--extracted-r6o4lv\":\"rgb(28, 28, 28)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({SQS68qEnS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"4.0\"})})}},baseVariant,gestureVariant)})]})]})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mussc6\",\"data-border\":true,\"data-framer-name\":\"Frame 1321319130\",layoutDependency:layoutDependency,layoutId:\"i70KDS3lU\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(7, 143, 61)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(7, 143, 61)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"0px 4px 64px 0px rgba(99, 99, 99, 0.10000000149011612)\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay03MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"See all\"})}),className:\"framer-18anbme\",\"data-framer-name\":\"See all\",fonts:[\"GF;HK Grotesk-700\"],layoutDependency:layoutDependency,layoutId:\"hqLif_aWk\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-QhpeG.framer-19sis2s, .framer-QhpeG .framer-19sis2s { display: block; }\",\".framer-QhpeG.framer-1j2owc { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 60px; position: relative; width: 1440px; }\",\".framer-QhpeG .framer-mkw3q0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 883px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-QhpeG .framer-1t78yxd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-QhpeG .framer-1fylog, .framer-QhpeG .framer-1f0tbwh, .framer-QhpeG .framer-1palzgt, .framer-QhpeG .framer-vyivlr, .framer-QhpeG .framer-1o3mlc2, .framer-QhpeG .framer-1vkchky { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-QhpeG .framer-ukuaqf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-QhpeG .framer-95ce5n { 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: visible; padding: 12px 32px 12px 32px; position: relative; width: min-content; }\",\".framer-QhpeG .framer-pm6u2m, .framer-QhpeG .framer-mwe4l8, .framer-QhpeG .framer-15rt67y, .framer-QhpeG .framer-1dhp3dn, .framer-QhpeG .framer-18e7c7n, .framer-QhpeG .framer-1hcvu9y, .framer-QhpeG .framer-1pmo3od, .framer-QhpeG .framer-1knz4zp, .framer-QhpeG .framer-iqhl7g, .framer-QhpeG .framer-18anbme { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-QhpeG .framer-65zy6j, .framer-QhpeG .framer-13kpq5o { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 12px 32px 12px 32px; position: relative; width: min-content; }\",\".framer-QhpeG .framer-1ugfmdd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-QhpeG .framer-pbmj5z, .framer-QhpeG .framer-122et3c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-QhpeG .framer-1rl8v82, .framer-QhpeG .framer-obirto, .framer-QhpeG .framer-1e2gg8p, .framer-QhpeG .framer-zg1h2g, .framer-QhpeG .framer-1ig3um6, .framer-QhpeG .framer-drgrn7 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 438px; justify-content: flex-start; overflow: visible; padding: 16px; position: relative; width: 1px; }\",\".framer-QhpeG .framer-1sliken, .framer-QhpeG .framer-y267u8, .framer-QhpeG .framer-1grofm3, .framer-QhpeG .framer-195vpu3, .framer-QhpeG .framer-12bfivz, .framer-QhpeG .framer-1iqkbgo { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-QhpeG .framer-1ilvvys, .framer-QhpeG .framer-6zh7b6, .framer-QhpeG .framer-1dd8lul, .framer-QhpeG .framer-ch0bqu, .framer-QhpeG .framer-192sfd0, .framer-QhpeG .framer-176ga8y { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-QhpeG .framer-e2zeik { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-QhpeG .framer-44u5ut, .framer-QhpeG .framer-1lb75aw, .framer-QhpeG .framer-ga25el, .framer-QhpeG .framer-1aa053i, .framer-QhpeG .framer-hijde6, .framer-QhpeG .framer-1red0do { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-QhpeG .framer-znihmu, .framer-QhpeG .framer-foprz8, .framer-QhpeG .framer-rhfuhm, .framer-QhpeG .framer-oqqwuf, .framer-QhpeG .framer-18skwkx, .framer-QhpeG .framer-15g6nyv { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-QhpeG .framer-1avqtt0, .framer-QhpeG .framer-1jsx3yv, .framer-QhpeG .framer-1e0yaot, .framer-QhpeG .framer-1uye44t, .framer-QhpeG .framer-ul56cu, .framer-QhpeG .framer-1qbowis { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-QhpeG .framer-8nvb2x, .framer-QhpeG .framer-1thmgnz, .framer-QhpeG .framer-ik2tyg, .framer-QhpeG .framer-1wlkpoc, .framer-QhpeG .framer-1t6dbzz, .framer-QhpeG .framer-192dujh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: absolute; right: 0px; top: 0px; width: min-content; z-index: 1; }\",\".framer-QhpeG .framer-13pvgwd, .framer-QhpeG .framer-qdq1hl, .framer-QhpeG .framer-5pesjt, .framer-QhpeG .framer-qkbm8g, .framer-QhpeG .framer-1kixew6, .framer-QhpeG .framer-1ehs1zj { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); overflow: hidden; position: relative; width: 20px; }\",\".framer-QhpeG .framer-id6jvv, .framer-QhpeG .framer-1poa86e, .framer-QhpeG .framer-85n7xd, .framer-QhpeG .framer-6uo2w8, .framer-QhpeG .framer-1mpu592, .framer-QhpeG .framer-1mou6ma { flex: none; height: 18px; left: 1px; position: absolute; top: 1px; width: 18px; }\",\".framer-QhpeG .framer-yyl4h3, .framer-QhpeG .framer-1vexzld, .framer-QhpeG .framer-s7xc67, .framer-QhpeG .framer-ue17vf, .framer-QhpeG .framer-1h634qn { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-QhpeG .framer-rx4its { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 75%; word-break: break-word; word-wrap: break-word; }\",\".framer-QhpeG .framer-12hkvli { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 78%; word-break: break-word; word-wrap: break-word; }\",\".framer-QhpeG .framer-1mussc6 { 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: visible; padding: 13px 48px 13px 48px; position: relative; width: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-QhpeG.framer-1j2owc, .framer-QhpeG .framer-mkw3q0, .framer-QhpeG .framer-1t78yxd, .framer-QhpeG .framer-ukuaqf, .framer-QhpeG .framer-95ce5n, .framer-QhpeG .framer-65zy6j, .framer-QhpeG .framer-13kpq5o, .framer-QhpeG .framer-1ugfmdd, .framer-QhpeG .framer-pbmj5z, .framer-QhpeG .framer-1rl8v82, .framer-QhpeG .framer-e2zeik, .framer-QhpeG .framer-44u5ut, .framer-QhpeG .framer-8nvb2x, .framer-QhpeG .framer-obirto, .framer-QhpeG .framer-yyl4h3, .framer-QhpeG .framer-1lb75aw, .framer-QhpeG .framer-1thmgnz, .framer-QhpeG .framer-1e2gg8p, .framer-QhpeG .framer-1vexzld, .framer-QhpeG .framer-ga25el, .framer-QhpeG .framer-ik2tyg, .framer-QhpeG .framer-122et3c, .framer-QhpeG .framer-zg1h2g, .framer-QhpeG .framer-s7xc67, .framer-QhpeG .framer-1aa053i, .framer-QhpeG .framer-1wlkpoc, .framer-QhpeG .framer-1ig3um6, .framer-QhpeG .framer-ue17vf, .framer-QhpeG .framer-hijde6, .framer-QhpeG .framer-1t6dbzz, .framer-QhpeG .framer-drgrn7, .framer-QhpeG .framer-1h634qn, .framer-QhpeG .framer-1red0do, .framer-QhpeG .framer-192dujh, .framer-QhpeG .framer-1mussc6 { gap: 0px; } .framer-QhpeG.framer-1j2owc > *, .framer-QhpeG .framer-mkw3q0 > *, .framer-QhpeG .framer-1rl8v82 > *, .framer-QhpeG .framer-obirto > *, .framer-QhpeG .framer-1e2gg8p > *, .framer-QhpeG .framer-zg1h2g > *, .framer-QhpeG .framer-1ig3um6 > *, .framer-QhpeG .framer-drgrn7 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-QhpeG.framer-1j2owc > :first-child, .framer-QhpeG .framer-mkw3q0 > :first-child, .framer-QhpeG .framer-1t78yxd > :first-child, .framer-QhpeG .framer-1ugfmdd > :first-child, .framer-QhpeG .framer-1rl8v82 > :first-child, .framer-QhpeG .framer-e2zeik > :first-child, .framer-QhpeG .framer-obirto > :first-child, .framer-QhpeG .framer-yyl4h3 > :first-child, .framer-QhpeG .framer-1e2gg8p > :first-child, .framer-QhpeG .framer-1vexzld > :first-child, .framer-QhpeG .framer-zg1h2g > :first-child, .framer-QhpeG .framer-s7xc67 > :first-child, .framer-QhpeG .framer-1ig3um6 > :first-child, .framer-QhpeG .framer-ue17vf > :first-child, .framer-QhpeG .framer-drgrn7 > :first-child, .framer-QhpeG .framer-1h634qn > :first-child { margin-top: 0px; } .framer-QhpeG.framer-1j2owc > :last-child, .framer-QhpeG .framer-mkw3q0 > :last-child, .framer-QhpeG .framer-1t78yxd > :last-child, .framer-QhpeG .framer-1ugfmdd > :last-child, .framer-QhpeG .framer-1rl8v82 > :last-child, .framer-QhpeG .framer-e2zeik > :last-child, .framer-QhpeG .framer-obirto > :last-child, .framer-QhpeG .framer-yyl4h3 > :last-child, .framer-QhpeG .framer-1e2gg8p > :last-child, .framer-QhpeG .framer-1vexzld > :last-child, .framer-QhpeG .framer-zg1h2g > :last-child, .framer-QhpeG .framer-s7xc67 > :last-child, .framer-QhpeG .framer-1ig3um6 > :last-child, .framer-QhpeG .framer-ue17vf > :last-child, .framer-QhpeG .framer-drgrn7 > :last-child, .framer-QhpeG .framer-1h634qn > :last-child { margin-bottom: 0px; } .framer-QhpeG .framer-1t78yxd > *, .framer-QhpeG .framer-e2zeik > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-QhpeG .framer-ukuaqf > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-QhpeG .framer-ukuaqf > :first-child, .framer-QhpeG .framer-95ce5n > :first-child, .framer-QhpeG .framer-65zy6j > :first-child, .framer-QhpeG .framer-13kpq5o > :first-child, .framer-QhpeG .framer-pbmj5z > :first-child, .framer-QhpeG .framer-44u5ut > :first-child, .framer-QhpeG .framer-8nvb2x > :first-child, .framer-QhpeG .framer-1lb75aw > :first-child, .framer-QhpeG .framer-1thmgnz > :first-child, .framer-QhpeG .framer-ga25el > :first-child, .framer-QhpeG .framer-ik2tyg > :first-child, .framer-QhpeG .framer-122et3c > :first-child, .framer-QhpeG .framer-1aa053i > :first-child, .framer-QhpeG .framer-1wlkpoc > :first-child, .framer-QhpeG .framer-hijde6 > :first-child, .framer-QhpeG .framer-1t6dbzz > :first-child, .framer-QhpeG .framer-1red0do > :first-child, .framer-QhpeG .framer-192dujh > :first-child, .framer-QhpeG .framer-1mussc6 > :first-child { margin-left: 0px; } .framer-QhpeG .framer-ukuaqf > :last-child, .framer-QhpeG .framer-95ce5n > :last-child, .framer-QhpeG .framer-65zy6j > :last-child, .framer-QhpeG .framer-13kpq5o > :last-child, .framer-QhpeG .framer-pbmj5z > :last-child, .framer-QhpeG .framer-44u5ut > :last-child, .framer-QhpeG .framer-8nvb2x > :last-child, .framer-QhpeG .framer-1lb75aw > :last-child, .framer-QhpeG .framer-1thmgnz > :last-child, .framer-QhpeG .framer-ga25el > :last-child, .framer-QhpeG .framer-ik2tyg > :last-child, .framer-QhpeG .framer-122et3c > :last-child, .framer-QhpeG .framer-1aa053i > :last-child, .framer-QhpeG .framer-1wlkpoc > :last-child, .framer-QhpeG .framer-hijde6 > :last-child, .framer-QhpeG .framer-1t6dbzz > :last-child, .framer-QhpeG .framer-1red0do > :last-child, .framer-QhpeG .framer-192dujh > :last-child, .framer-QhpeG .framer-1mussc6 > :last-child { margin-right: 0px; } .framer-QhpeG .framer-95ce5n > *, .framer-QhpeG .framer-65zy6j > *, .framer-QhpeG .framer-13kpq5o > *, .framer-QhpeG .framer-1mussc6 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-QhpeG .framer-1ugfmdd > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-QhpeG .framer-pbmj5z > *, .framer-QhpeG .framer-122et3c > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-QhpeG .framer-44u5ut > *, .framer-QhpeG .framer-8nvb2x > *, .framer-QhpeG .framer-1lb75aw > *, .framer-QhpeG .framer-1thmgnz > *, .framer-QhpeG .framer-ga25el > *, .framer-QhpeG .framer-ik2tyg > *, .framer-QhpeG .framer-1aa053i > *, .framer-QhpeG .framer-1wlkpoc > *, .framer-QhpeG .framer-hijde6 > *, .framer-QhpeG .framer-1t6dbzz > *, .framer-QhpeG .framer-1red0do > *, .framer-QhpeG .framer-192dujh > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-QhpeG .framer-yyl4h3 > *, .framer-QhpeG .framer-1vexzld > *, .framer-QhpeG .framer-s7xc67 > *, .framer-QhpeG .framer-ue17vf > *, .framer-QhpeG .framer-1h634qn > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } }\",\".framer-QhpeG.framer-v-13d6jq5.framer-1j2owc, .framer-QhpeG.framer-v-a8qswl.framer-1j2owc, .framer-QhpeG.framer-v-g2edr5.framer-1j2owc { width: 1200px; }\",\".framer-QhpeG.framer-v-13d6jq5 .framer-mkw3q0 { width: 883px; }\",\".framer-QhpeG.framer-v-13d6jq5 .framer-1ugfmdd { width: 1080px; }\",\".framer-QhpeG.framer-v-13d6jq5 .framer-8nvb2x, .framer-QhpeG.framer-v-13d6jq5 .framer-1thmgnz, .framer-QhpeG.framer-v-13d6jq5 .framer-ik2tyg, .framer-QhpeG.framer-v-13d6jq5 .framer-1wlkpoc, .framer-QhpeG.framer-v-13d6jq5 .framer-1t6dbzz, .framer-QhpeG.framer-v-13d6jq5 .framer-192dujh, .framer-QhpeG.framer-v-1loumn .framer-8nvb2x, .framer-QhpeG.framer-v-1loumn .framer-1thmgnz, .framer-QhpeG.framer-v-1loumn .framer-ik2tyg, .framer-QhpeG.framer-v-1loumn .framer-1wlkpoc, .framer-QhpeG.framer-v-1loumn .framer-1t6dbzz, .framer-QhpeG.framer-v-1loumn .framer-192dujh, .framer-QhpeG.framer-v-a8qswl .framer-8nvb2x, .framer-QhpeG.framer-v-a8qswl .framer-1thmgnz, .framer-QhpeG.framer-v-a8qswl .framer-ik2tyg, .framer-QhpeG.framer-v-a8qswl .framer-1wlkpoc, .framer-QhpeG.framer-v-a8qswl .framer-1t6dbzz, .framer-QhpeG.framer-v-g2edr5 .framer-8nvb2x, .framer-QhpeG.framer-v-g2edr5 .framer-1thmgnz, .framer-QhpeG.framer-v-g2edr5 .framer-ik2tyg, .framer-QhpeG.framer-v-g2edr5 .framer-1wlkpoc, .framer-QhpeG.framer-v-g2edr5 .framer-1t6dbzz, .framer-QhpeG.framer-v-g2edr5 .framer-192dujh, .framer-QhpeG.framer-v-aczwgb .framer-8nvb2x, .framer-QhpeG.framer-v-aczwgb .framer-1thmgnz, .framer-QhpeG.framer-v-aczwgb .framer-ik2tyg, .framer-QhpeG.framer-v-aczwgb .framer-1wlkpoc, .framer-QhpeG.framer-v-aczwgb .framer-1t6dbzz, .framer-QhpeG.framer-v-4ecsg7 .framer-8nvb2x, .framer-QhpeG.framer-v-4ecsg7 .framer-1thmgnz, .framer-QhpeG.framer-v-4ecsg7 .framer-ik2tyg, .framer-QhpeG.framer-v-4ecsg7 .framer-1wlkpoc, .framer-QhpeG.framer-v-4ecsg7 .framer-1t6dbzz, .framer-QhpeG.framer-v-4ecsg7 .framer-192dujh { position: relative; right: unset; top: unset; }\",\".framer-QhpeG.framer-v-13d6jq5 .framer-rx4its, .framer-QhpeG.framer-v-13d6jq5 .framer-12hkvli, .framer-QhpeG.framer-v-a8qswl .framer-rx4its, .framer-QhpeG.framer-v-aczwgb .framer-rx4its { width: 100%; }\",\".framer-QhpeG.framer-v-v31le0.framer-1j2owc, .framer-QhpeG.framer-v-c3k6oh.framer-1j2owc, .framer-QhpeG.framer-v-eb4mzm.framer-1j2owc { width: min-content; }\",\".framer-QhpeG.framer-v-v31le0 .framer-mkw3q0, .framer-QhpeG.framer-v-v31le0 .framer-1ugfmdd, .framer-QhpeG.framer-v-c3k6oh .framer-mkw3q0, .framer-QhpeG.framer-v-c3k6oh .framer-1ugfmdd, .framer-QhpeG.framer-v-eb4mzm .framer-mkw3q0, .framer-QhpeG.framer-v-eb4mzm .framer-1ugfmdd { width: 690px; }\",\".framer-QhpeG.framer-v-v31le0 .framer-1palzgt, .framer-QhpeG.framer-v-c3k6oh .framer-12hkvli { width: 68%; }\",\".framer-QhpeG.framer-v-v31le0 .framer-8nvb2x { gap: 5px; }\",\".framer-QhpeG.framer-v-v31le0 .framer-vyivlr, .framer-QhpeG.framer-v-v31le0 .framer-1o3mlc2, .framer-QhpeG.framer-v-c3k6oh .framer-rx4its { width: 69%; }\",\".framer-QhpeG.framer-v-v31le0 .framer-1vkchky, .framer-QhpeG.framer-v-c3k6oh .framer-1palzgt { width: 66%; }\",\".framer-QhpeG.framer-v-v31le0 .framer-rx4its { width: 67%; }\",\".framer-QhpeG.framer-v-v31le0 .framer-12hkvli { width: 62%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-QhpeG.framer-v-v31le0 .framer-8nvb2x { gap: 0px; } .framer-QhpeG.framer-v-v31le0 .framer-8nvb2x > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-QhpeG.framer-v-v31le0 .framer-8nvb2x > :first-child { margin-left: 0px; } .framer-QhpeG.framer-v-v31le0 .framer-8nvb2x > :last-child { margin-right: 0px; } }\",\".framer-QhpeG.framer-v-1loumn.framer-1j2owc, .framer-QhpeG.framer-v-aczwgb.framer-1j2owc, .framer-QhpeG.framer-v-4ecsg7.framer-1j2owc { padding: 20px; width: 390px; }\",\".framer-QhpeG.framer-v-1loumn .framer-pbmj5z, .framer-QhpeG.framer-v-1loumn .framer-122et3c, .framer-QhpeG.framer-v-aczwgb .framer-pbmj5z, .framer-QhpeG.framer-v-aczwgb .framer-122et3c, .framer-QhpeG.framer-v-4ecsg7 .framer-pbmj5z, .framer-QhpeG.framer-v-4ecsg7 .framer-122et3c { flex-direction: column; }\",\".framer-QhpeG.framer-v-1loumn .framer-1rl8v82, .framer-QhpeG.framer-v-1loumn .framer-obirto, .framer-QhpeG.framer-v-1loumn .framer-1e2gg8p, .framer-QhpeG.framer-v-1loumn .framer-zg1h2g, .framer-QhpeG.framer-v-1loumn .framer-1ig3um6, .framer-QhpeG.framer-v-1loumn .framer-drgrn7, .framer-QhpeG.framer-v-aczwgb .framer-zg1h2g, .framer-QhpeG.framer-v-aczwgb .framer-1ig3um6, .framer-QhpeG.framer-v-aczwgb .framer-drgrn7, .framer-QhpeG.framer-v-4ecsg7 .framer-zg1h2g, .framer-QhpeG.framer-v-4ecsg7 .framer-1ig3um6, .framer-QhpeG.framer-v-4ecsg7 .framer-drgrn7 { flex: none; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-QhpeG.framer-v-1loumn .framer-pbmj5z, .framer-QhpeG.framer-v-1loumn .framer-122et3c { gap: 0px; } .framer-QhpeG.framer-v-1loumn .framer-pbmj5z > *, .framer-QhpeG.framer-v-1loumn .framer-122et3c > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-QhpeG.framer-v-1loumn .framer-pbmj5z > :first-child, .framer-QhpeG.framer-v-1loumn .framer-122et3c > :first-child { margin-top: 0px; } .framer-QhpeG.framer-v-1loumn .framer-pbmj5z > :last-child, .framer-QhpeG.framer-v-1loumn .framer-122et3c > :last-child { margin-bottom: 0px; } }\",\".framer-QhpeG.framer-v-1u3b29u .framer-95ce5n, .framer-QhpeG.framer-v-1v73as7 .framer-95ce5n, .framer-QhpeG.framer-v-a8qswl .framer-95ce5n, .framer-QhpeG.framer-v-g2edr5 .framer-95ce5n, .framer-QhpeG.framer-v-c3k6oh .framer-95ce5n, .framer-QhpeG.framer-v-eb4mzm .framer-95ce5n, .framer-QhpeG.framer-v-aczwgb .framer-95ce5n, .framer-QhpeG.framer-v-4ecsg7 .framer-95ce5n { cursor: pointer; }\",\".framer-QhpeG.framer-v-1u3b29u .framer-65zy6j, .framer-QhpeG.framer-v-1v73as7 .framer-13kpq5o, .framer-QhpeG.framer-v-a8qswl .framer-65zy6j, .framer-QhpeG.framer-v-g2edr5 .framer-13kpq5o, .framer-QhpeG.framer-v-c3k6oh .framer-65zy6j, .framer-QhpeG.framer-v-eb4mzm .framer-13kpq5o, .framer-QhpeG.framer-v-aczwgb .framer-65zy6j, .framer-QhpeG.framer-v-4ecsg7 .framer-13kpq5o { cursor: unset; }\",\".framer-QhpeG.framer-v-1u3b29u .framer-1rl8v82, .framer-QhpeG.framer-v-1v73as7 .framer-1rl8v82, .framer-QhpeG.framer-v-a8qswl .framer-1rl8v82, .framer-QhpeG.framer-v-g2edr5 .framer-1rl8v82, .framer-QhpeG.framer-v-c3k6oh .framer-1rl8v82, .framer-QhpeG.framer-v-eb4mzm .framer-1rl8v82 { order: 0; }\",\".framer-QhpeG.framer-v-1u3b29u .framer-obirto, .framer-QhpeG.framer-v-1v73as7 .framer-obirto, .framer-QhpeG.framer-v-a8qswl .framer-obirto, .framer-QhpeG.framer-v-g2edr5 .framer-obirto, .framer-QhpeG.framer-v-c3k6oh .framer-obirto, .framer-QhpeG.framer-v-eb4mzm .framer-obirto { order: 1; }\",\".framer-QhpeG.framer-v-1u3b29u .framer-1e2gg8p, .framer-QhpeG.framer-v-1v73as7 .framer-1e2gg8p, .framer-QhpeG.framer-v-a8qswl .framer-1e2gg8p, .framer-QhpeG.framer-v-g2edr5 .framer-1e2gg8p, .framer-QhpeG.framer-v-c3k6oh .framer-1e2gg8p, .framer-QhpeG.framer-v-eb4mzm .framer-1e2gg8p { order: 2; }\",\".framer-QhpeG.framer-v-1u3b29u .framer-rx4its, .framer-QhpeG.framer-v-1v73as7 .framer-rx4its, .framer-QhpeG.framer-v-g2edr5 .framer-rx4its, .framer-QhpeG.framer-v-eb4mzm .framer-rx4its, .framer-QhpeG.framer-v-4ecsg7 .framer-rx4its { width: 91%; }\",\".framer-QhpeG.framer-v-a8qswl .framer-1ehs1zj, .framer-QhpeG.framer-v-c3k6oh .framer-1ehs1zj, .framer-QhpeG.framer-v-aczwgb .framer-1ehs1zj { height: 20px; width: var(--framer-aspect-ratio-supported, 20px); }\",\".framer-QhpeG.framer-v-c3k6oh .framer-1o3mlc2 { width: 61%; }\",\".framer-QhpeG.framer-v-eb4mzm .framer-1palzgt { width: 70%; }\",\".framer-QhpeG.framer-v-eb4mzm .framer-vyivlr { width: 60%; }\",\".framer-QhpeG.framer-v-eb4mzm .framer-1o3mlc2 { width: 75%; }\",\".framer-QhpeG.framer-v-eb4mzm .framer-1pmo3od { z-index: 1; }\",\".framer-QhpeG.framer-v-eb4mzm .framer-12hkvli { width: 58%; }\",\".framer-QhpeG.framer-v-aczwgb .framer-1rl8v82, .framer-QhpeG.framer-v-4ecsg7 .framer-1rl8v82 { flex: none; order: 0; width: 100%; }\",\".framer-QhpeG.framer-v-aczwgb .framer-obirto, .framer-QhpeG.framer-v-4ecsg7 .framer-obirto { flex: none; order: 1; width: 100%; }\",\".framer-QhpeG.framer-v-aczwgb .framer-1e2gg8p, .framer-QhpeG.framer-v-4ecsg7 .framer-1e2gg8p { flex: none; order: 2; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-QhpeG.framer-v-aczwgb .framer-pbmj5z, .framer-QhpeG.framer-v-aczwgb .framer-122et3c { gap: 0px; } .framer-QhpeG.framer-v-aczwgb .framer-pbmj5z > *, .framer-QhpeG.framer-v-aczwgb .framer-122et3c > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-QhpeG.framer-v-aczwgb .framer-pbmj5z > :first-child, .framer-QhpeG.framer-v-aczwgb .framer-122et3c > :first-child { margin-top: 0px; } .framer-QhpeG.framer-v-aczwgb .framer-pbmj5z > :last-child, .framer-QhpeG.framer-v-aczwgb .framer-122et3c > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-QhpeG.framer-v-4ecsg7 .framer-pbmj5z, .framer-QhpeG.framer-v-4ecsg7 .framer-122et3c { gap: 0px; } .framer-QhpeG.framer-v-4ecsg7 .framer-pbmj5z > *, .framer-QhpeG.framer-v-4ecsg7 .framer-122et3c > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-QhpeG.framer-v-4ecsg7 .framer-pbmj5z > :first-child, .framer-QhpeG.framer-v-4ecsg7 .framer-122et3c > :first-child { margin-top: 0px; } .framer-QhpeG.framer-v-4ecsg7 .framer-pbmj5z > :last-child, .framer-QhpeG.framer-v-4ecsg7 .framer-122et3c > :last-child { margin-bottom: 0px; } }\",'.framer-QhpeG[data-border=\"true\"]::after, .framer-QhpeG [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1292\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"O7tfHpu5E\":{\"layout\":[\"fixed\",\"auto\"]},\"bxFBk54Dm\":{\"layout\":[\"auto\",\"auto\"]},\"nZnSZxSav\":{\"layout\":[\"fixed\",\"auto\"]},\"ZdCyLrelH\":{\"layout\":[\"fixed\",\"auto\"]},\"SQS68qEnS\":{\"layout\":[\"fixed\",\"auto\"]},\"sXwCHsPC4\":{\"layout\":[\"fixed\",\"auto\"]},\"IL9HqazEP\":{\"layout\":[\"fixed\",\"auto\"]},\"slNHoawrk\":{\"layout\":[\"auto\",\"auto\"]},\"TyVHjh54Y\":{\"layout\":[\"auto\",\"auto\"]},\"mWkmzV4pj\":{\"layout\":[\"fixed\",\"auto\"]},\"gXf_MXwln\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerMCR7_ssgl=withCSS(Component,css,\"framer-QhpeG\");export default FramerMCR7_ssgl;FramerMCR7_ssgl.displayName=\"hotels tabs\";FramerMCR7_ssgl.defaultProps={height:1292,width:1440};addPropertyControls(FramerMCR7_ssgl,{variant:{options:[\"dqAHHD4zh\",\"O7tfHpu5E\",\"bxFBk54Dm\",\"nZnSZxSav\",\"ZdCyLrelH\",\"SQS68qEnS\",\"sXwCHsPC4\",\"IL9HqazEP\",\"slNHoawrk\",\"TyVHjh54Y\",\"mWkmzV4pj\",\"gXf_MXwln\"],optionTitles:[\"big tab 1\",\"Laptop tab 1\",\"Tablet\",\"Phone\",\"Big tab 2\",\"Big tab 3\",\"Laptop tab 2\",\"Laptop tab 3\",\"tablet 2\",\"tab 3\",\"Phone 2\",\"Phone 3\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerMCR7_ssgl,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerMCR7_ssgl\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"O7tfHpu5E\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"bxFBk54Dm\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"nZnSZxSav\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZdCyLrelH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"SQS68qEnS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"sXwCHsPC4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IL9HqazEP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"slNHoawrk\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"TyVHjh54Y\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"mWkmzV4pj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gXf_MXwln\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"1292\",\"framerIntrinsicWidth\":\"1440\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./MCR7_ssgl.map", "// Generated by Framer (047deaf)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/LHz3bw67SqHRmnCKTlE6/Ticker.js\";import TestimonialCardsList from\"#framer/local/canvasComponent/crrVj1OtW/crrVj1OtW.js\";import HotelsTabs from\"#framer/local/canvasComponent/MCR7_ssgl/MCR7_ssgl.js\";import FooterSection from\"#framer/local/canvasComponent/OBJXQ6Sx5/OBJXQ6Sx5.js\";import NavBar from\"#framer/local/canvasComponent/OS1sTGqo_/OS1sTGqo_.js\";import metadataProvider from\"#framer/local/webPageMetadata/mnvLFwKli/mnvLFwKli.js\";const NavBarFonts=getFonts(NavBar);const MotionDivWithFX=withFX(motion.div);const TickerFonts=getFonts(Ticker);const HotelsTabsFonts=getFonts(HotelsTabs);const TestimonialCardsListFonts=getFonts(TestimonialCardsList);const FooterSectionFonts=getFonts(FooterSection);const breakpoints={CfKckdmnl:\"(max-width: 809px)\",NT7Fit1Lk:\"(min-width: 1440px)\",t7j3geBvS:\"(min-width: 1200px) and (max-width: 1439px)\",yima759nb:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-aF3S8\";const variantClassNames={CfKckdmnl:\"framer-v-1rx8816\",NT7Fit1Lk:\"framer-v-1hf96d0\",t7j3geBvS:\"framer-v-1rwgbeg\",yima759nb:\"framer-v-1ar30zc\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-5,y:78};const transition1={damping:30,delay:0,mass:1,stiffness:97,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:-5,y:78};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:150};const transition2={damping:60,delay:0,mass:1,stiffness:200,type:\"spring\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"NT7Fit1Lk\",Laptop:\"t7j3geBvS\",Phone:\"CfKckdmnl\",Tablet:\"yima759nb\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"NT7Fit1Lk\"};};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,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"CfKckdmnl\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"CfKckdmnl\")return true;return false;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"NT7Fit1Lk\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1hf96d0\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:152,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1d1tjec-container\",nodeId:\"LPrdvf7gF\",scopeId:\"mnvLFwKli\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CfKckdmnl:{variant:\"DkS3iv1uf\"},yima759nb:{variant:\"idCOizpz2\"}},children:/*#__PURE__*/_jsx(NavBar,{height:\"100%\",id:\"LPrdvf7gF\",layoutId:\"LPrdvf7gF\",style:{width:\"100%\"},variant:\"klg80SJf5\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sd924p\",\"data-framer-name\":\"Frame 2147226364\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7f2w20\",\"data-framer-name\":\"Frame 2147226356\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6nucua\",\"data-framer-name\":\"Frame 2147226353\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CfKckdmnl:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay03MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"56px\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:\"Book hotels. Earn \"}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay03MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"56px\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:[\"up to \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(7, 143, 61)\"},children:\"40%\"}),\" \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(7, 143, 61)\"},children:\"cashback. \"}),\"Travel smarter.\"]})]})},t7j3geBvS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay03MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"63px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"66px\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:[\"Book hotels. Earn up to \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(7, 143, 61)\"},children:\"40%\"}),\" \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(7, 143, 61)\"},children:\"cashback.\"}),\"Travel smarter.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay03MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"66px\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:\"Book hotels. Earn \"}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay03MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"66px\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:[\"up to \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(7, 143, 61)\"},children:\"40%\"}),\" \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(7, 143, 61)\"},children:\"cashback. \"}),\"Travel smarter.\"]})]}),className:\"framer-lcacud\",\"data-framer-name\":\"Book hotels. Earn up to 40% cashback. Travel smarter.\",fonts:[\"GF;HK Grotesk-700\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGFua2VuIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Hanken Grotesk\", \"Hanken Grotesk Placeholder\", sans-serif',\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(28, 28, 28, 0.7)\"},children:\"Your next trip just got more rewarding. Get the best hotel deals & real cashback.\"})}),className:\"framer-tf7v7r\",\"data-framer-name\":\"Your next trip just got more rewarding. Get the best hotel deals & real cashback.\",fonts:[\"GF;Hanken Grotesk-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-i8mek\",\"data-framer-name\":\"Frame 1321319080\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGFua2VuIEdyb3Rlc2stcmVndWxhcg==\",\"--framer-font-family\":'\"Hanken Grotesk\", \"Hanken Grotesk Placeholder\", sans-serif',\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(28, 28, 28, 0.7)\"},children:\"Download the tuck. app & start saving\"})}),className:\"framer-1crlzcx\",\"data-framer-name\":\"Download the tuck. app & start saving\",fonts:[\"GF;Hanken Grotesk-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://travel.tuckapp.co/\",motionChild:true,nodeId:\"SOh2UMU6F\",openInNewTab:true,scopeId:\"mnvLFwKli\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-ilk24j framer-lwfrfw\",\"data-border\":true,\"data-framer-name\":\"Frame 1321319130\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay03MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Start Your Adventure\"})}),className:\"framer-1uljkdj\",\"data-framer-name\":\"Start Your Adventure\",fonts:[\"GF;HK Grotesk-700\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cap4vr\",\"data-framer-name\":\"Frame 2147226363\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CfKckdmnl:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+152+20+996.6+0),pixelHeight:2632,pixelWidth:2352,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} + 198px)`,src:\"https://framerusercontent.com/images/U3iwojTuEBEys0ZUaeozoKIULd0.png\",srcSet:\"https://framerusercontent.com/images/U3iwojTuEBEys0ZUaeozoKIULd0.png?scale-down-to=1024 915w,https://framerusercontent.com/images/U3iwojTuEBEys0ZUaeozoKIULd0.png?scale-down-to=2048 1830w,https://framerusercontent.com/images/U3iwojTuEBEys0ZUaeozoKIULd0.png 2352w\"}},t7j3geBvS:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+152+40.8875+0),pixelHeight:2632,pixelWidth:2352,positionX:\"center\",positionY:\"center\",sizes:\"588px\",src:\"https://framerusercontent.com/images/U3iwojTuEBEys0ZUaeozoKIULd0.png\",srcSet:\"https://framerusercontent.com/images/U3iwojTuEBEys0ZUaeozoKIULd0.png?scale-down-to=1024 915w,https://framerusercontent.com/images/U3iwojTuEBEys0ZUaeozoKIULd0.png?scale-down-to=2048 1830w,https://framerusercontent.com/images/U3iwojTuEBEys0ZUaeozoKIULd0.png 2352w\"}},yima759nb:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+152+20+1109.6+0),pixelHeight:2632,pixelWidth:2352,positionX:\"center\",positionY:\"center\",sizes:\"588px\",src:\"https://framerusercontent.com/images/U3iwojTuEBEys0ZUaeozoKIULd0.png\",srcSet:\"https://framerusercontent.com/images/U3iwojTuEBEys0ZUaeozoKIULd0.png?scale-down-to=1024 915w,https://framerusercontent.com/images/U3iwojTuEBEys0ZUaeozoKIULd0.png?scale-down-to=2048 1830w,https://framerusercontent.com/images/U3iwojTuEBEys0ZUaeozoKIULd0.png 2352w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+152+205.8875+0),pixelHeight:2632,pixelWidth:2352,positionX:\"center\",positionY:\"center\",sizes:\"588px\",src:\"https://framerusercontent.com/images/U3iwojTuEBEys0ZUaeozoKIULd0.png\",srcSet:\"https://framerusercontent.com/images/U3iwojTuEBEys0ZUaeozoKIULd0.png?scale-down-to=1024 915w,https://framerusercontent.com/images/U3iwojTuEBEys0ZUaeozoKIULd0.png?scale-down-to=2048 1830w,https://framerusercontent.com/images/U3iwojTuEBEys0ZUaeozoKIULd0.png 2352w\"},className:\"framer-x8l28b\",\"data-framer-name\":\"Map\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qs8hl2\",\"data-framer-name\":\"Frame 2147226361\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CfKckdmnl:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+152+20+996.6+483-413.05+49.025),pixelHeight:1335,pixelWidth:2e3,sizes:`max((${componentViewport?.width||\"100vw\"} - 62.05px) / 2, 1px)`,src:\"https://framerusercontent.com/images/TKVPRVJGuEL6opc0L9FcvcZ4U.jpg\",srcSet:\"https://framerusercontent.com/images/TKVPRVJGuEL6opc0L9FcvcZ4U.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/TKVPRVJGuEL6opc0L9FcvcZ4U.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/TKVPRVJGuEL6opc0L9FcvcZ4U.jpg 2000w\"}},t7j3geBvS:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+152+40.8875+45.0188+105.025),pixelHeight:1335,pixelWidth:2e3,sizes:\"260px\",src:\"https://framerusercontent.com/images/TKVPRVJGuEL6opc0L9FcvcZ4U.jpg\",srcSet:\"https://framerusercontent.com/images/TKVPRVJGuEL6opc0L9FcvcZ4U.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/TKVPRVJGuEL6opc0L9FcvcZ4U.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/TKVPRVJGuEL6opc0L9FcvcZ4U.jpg 2000w\"}},yima759nb:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+152+20+1109.6+45.0188+105.025),pixelHeight:1335,pixelWidth:2e3,sizes:\"260px\",src:\"https://framerusercontent.com/images/TKVPRVJGuEL6opc0L9FcvcZ4U.jpg\",srcSet:\"https://framerusercontent.com/images/TKVPRVJGuEL6opc0L9FcvcZ4U.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/TKVPRVJGuEL6opc0L9FcvcZ4U.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/TKVPRVJGuEL6opc0L9FcvcZ4U.jpg 2000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+152+205.8875+45.0188+105.025),pixelHeight:1335,pixelWidth:2e3,sizes:\"260px\",src:\"https://framerusercontent.com/images/TKVPRVJGuEL6opc0L9FcvcZ4U.jpg\",srcSet:\"https://framerusercontent.com/images/TKVPRVJGuEL6opc0L9FcvcZ4U.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/TKVPRVJGuEL6opc0L9FcvcZ4U.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/TKVPRVJGuEL6opc0L9FcvcZ4U.jpg 2000w\"},className:\"framer-148vv6l\",\"data-framer-name\":\"Reel\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1699xej\",\"data-framer-name\":\"Frame 2147226360\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CfKckdmnl:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+152+20+996.6+483-413.05+0+0+0),pixelHeight:1161,pixelWidth:949,positionX:\"center\",positionY:\"center\",sizes:`max((${componentViewport?.width||\"100vw\"} - 62.05px) / 2, 1px)`,src:\"https://framerusercontent.com/images/PshOFOsMf78dNYISH8mi5DcHxos.png\",srcSet:\"https://framerusercontent.com/images/PshOFOsMf78dNYISH8mi5DcHxos.png?scale-down-to=1024 837w,https://framerusercontent.com/images/PshOFOsMf78dNYISH8mi5DcHxos.png 949w\"}},t7j3geBvS:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+152+40.8875+45.0188+0+0+0),pixelHeight:1161,pixelWidth:949,positionX:\"center\",positionY:\"center\",sizes:\"238px\",src:\"https://framerusercontent.com/images/PshOFOsMf78dNYISH8mi5DcHxos.png\",srcSet:\"https://framerusercontent.com/images/PshOFOsMf78dNYISH8mi5DcHxos.png?scale-down-to=1024 837w,https://framerusercontent.com/images/PshOFOsMf78dNYISH8mi5DcHxos.png 949w\"}},yima759nb:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+152+20+1109.6+45.0188+0+0+0),pixelHeight:1161,pixelWidth:949,positionX:\"center\",positionY:\"center\",sizes:\"238px\",src:\"https://framerusercontent.com/images/PshOFOsMf78dNYISH8mi5DcHxos.png\",srcSet:\"https://framerusercontent.com/images/PshOFOsMf78dNYISH8mi5DcHxos.png?scale-down-to=1024 837w,https://framerusercontent.com/images/PshOFOsMf78dNYISH8mi5DcHxos.png 949w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+152+205.8875+45.0188+0+0+0),pixelHeight:1161,pixelWidth:949,positionX:\"center\",positionY:\"center\",sizes:\"238px\",src:\"https://framerusercontent.com/images/PshOFOsMf78dNYISH8mi5DcHxos.png\",srcSet:\"https://framerusercontent.com/images/PshOFOsMf78dNYISH8mi5DcHxos.png?scale-down-to=1024 837w,https://framerusercontent.com/images/PshOFOsMf78dNYISH8mi5DcHxos.png 949w\"},className:\"framer-kbqtqw\",\"data-framer-name\":\"Location card\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CfKckdmnl:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+152+20+996.6+483-413.05+0+0+216.05),pixelHeight:1166,pixelWidth:949,positionX:\"center\",positionY:\"center\",sizes:`max((${componentViewport?.width||\"100vw\"} - 62.05px) / 2, 1px)`,src:\"https://framerusercontent.com/images/0nPmj2OKcwEFWUNlbgiRjg1uurw.png\",srcSet:\"https://framerusercontent.com/images/0nPmj2OKcwEFWUNlbgiRjg1uurw.png?scale-down-to=1024 833w,https://framerusercontent.com/images/0nPmj2OKcwEFWUNlbgiRjg1uurw.png 949w\"}},t7j3geBvS:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+152+40.8875+45.0188+0+0+313.05),pixelHeight:1166,pixelWidth:949,positionX:\"center\",positionY:\"center\",sizes:\"238px\",src:\"https://framerusercontent.com/images/0nPmj2OKcwEFWUNlbgiRjg1uurw.png\",srcSet:\"https://framerusercontent.com/images/0nPmj2OKcwEFWUNlbgiRjg1uurw.png?scale-down-to=1024 833w,https://framerusercontent.com/images/0nPmj2OKcwEFWUNlbgiRjg1uurw.png 949w\"}},yima759nb:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+152+20+1109.6+45.0188+0+0+313.05),pixelHeight:1166,pixelWidth:949,positionX:\"center\",positionY:\"center\",sizes:\"238px\",src:\"https://framerusercontent.com/images/0nPmj2OKcwEFWUNlbgiRjg1uurw.png\",srcSet:\"https://framerusercontent.com/images/0nPmj2OKcwEFWUNlbgiRjg1uurw.png?scale-down-to=1024 833w,https://framerusercontent.com/images/0nPmj2OKcwEFWUNlbgiRjg1uurw.png 949w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+152+205.8875+45.0188+0+0+313.05),pixelHeight:1166,pixelWidth:949,positionX:\"center\",positionY:\"center\",sizes:\"238px\",src:\"https://framerusercontent.com/images/0nPmj2OKcwEFWUNlbgiRjg1uurw.png\",srcSet:\"https://framerusercontent.com/images/0nPmj2OKcwEFWUNlbgiRjg1uurw.png?scale-down-to=1024 833w,https://framerusercontent.com/images/0nPmj2OKcwEFWUNlbgiRjg1uurw.png 949w\"},className:\"framer-ayguji\",\"data-framer-name\":\"Frame 2147226358\"})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CfKckdmnl:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+152+20+996.6+483-413.05+413.05-145),pixelHeight:716,pixelWidth:751,sizes:\"157px\",src:\"https://framerusercontent.com/images/4Zwqa7nsEQecDMQcKDgHV69g7Y.png\",srcSet:\"https://framerusercontent.com/images/4Zwqa7nsEQecDMQcKDgHV69g7Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/4Zwqa7nsEQecDMQcKDgHV69g7Y.png 751w\"}},t7j3geBvS:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+152+40.8875+45.0188+605.05-153),pixelHeight:716,pixelWidth:751,sizes:\"157px\",src:\"https://framerusercontent.com/images/4Zwqa7nsEQecDMQcKDgHV69g7Y.png\",srcSet:\"https://framerusercontent.com/images/4Zwqa7nsEQecDMQcKDgHV69g7Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/4Zwqa7nsEQecDMQcKDgHV69g7Y.png 751w\"}},yima759nb:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+152+20+1109.6+45.0188+605.05-153),pixelHeight:716,pixelWidth:751,sizes:\"157px\",src:\"https://framerusercontent.com/images/4Zwqa7nsEQecDMQcKDgHV69g7Y.png\",srcSet:\"https://framerusercontent.com/images/4Zwqa7nsEQecDMQcKDgHV69g7Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/4Zwqa7nsEQecDMQcKDgHV69g7Y.png 751w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+152+205.8875+45.0188+605.05-153),pixelHeight:716,pixelWidth:751,sizes:\"157px\",src:\"https://framerusercontent.com/images/4Zwqa7nsEQecDMQcKDgHV69g7Y.png\",srcSet:\"https://framerusercontent.com/images/4Zwqa7nsEQecDMQcKDgHV69g7Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/4Zwqa7nsEQecDMQcKDgHV69g7Y.png 751w\"},className:\"framer-iw17n4\",\"data-framer-name\":\"image\",style:{rotate:-8}})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CfKckdmnl:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+152+20+996.6+153),pixelHeight:178,pixelWidth:655,sizes:\"187.0726px\",src:\"https://framerusercontent.com/images/Ydarlg6PYMybHXvi0BE7tignyCs.png\",srcSet:\"https://framerusercontent.com/images/Ydarlg6PYMybHXvi0BE7tignyCs.png?scale-down-to=512 512w,https://framerusercontent.com/images/Ydarlg6PYMybHXvi0BE7tignyCs.png 655w\"}},t7j3geBvS:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+152+40.8875+173.1042),pixelHeight:178,pixelWidth:655,sizes:\"187.0726px\",src:\"https://framerusercontent.com/images/Ydarlg6PYMybHXvi0BE7tignyCs.png\",srcSet:\"https://framerusercontent.com/images/Ydarlg6PYMybHXvi0BE7tignyCs.png?scale-down-to=512 512w,https://framerusercontent.com/images/Ydarlg6PYMybHXvi0BE7tignyCs.png 655w\"}},yima759nb:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+152+20+1109.6+173.1042),pixelHeight:178,pixelWidth:655,sizes:\"187.0726px\",src:\"https://framerusercontent.com/images/Ydarlg6PYMybHXvi0BE7tignyCs.png\",srcSet:\"https://framerusercontent.com/images/Ydarlg6PYMybHXvi0BE7tignyCs.png?scale-down-to=512 512w,https://framerusercontent.com/images/Ydarlg6PYMybHXvi0BE7tignyCs.png 655w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+152+205.8875+173.1042),pixelHeight:178,pixelWidth:655,sizes:\"187.0726px\",src:\"https://framerusercontent.com/images/Ydarlg6PYMybHXvi0BE7tignyCs.png\",srcSet:\"https://framerusercontent.com/images/Ydarlg6PYMybHXvi0BE7tignyCs.png?scale-down-to=512 512w,https://framerusercontent.com/images/Ydarlg6PYMybHXvi0BE7tignyCs.png 655w\"},className:\"framer-kjmjes\",\"data-framer-name\":\"image\",style:{rotate:7}})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11i0mh5\",\"data-framer-name\":\"Frame 1321319083\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:[\"Choose from \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(7, 143, 61)\"},children:\"800,000+ \"}),\"Hotels\"]})}),className:\"framer-16qohu6\",\"data-framer-name\":\"A choice of 800,000 Hotels\",fonts:[\"GF;HK Grotesk-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h2658o\",\"data-framer-name\":\"Frame 2147226355\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-15enuez\",\"data-framer-name\":\"Mask group\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-9kdla9\",\"data-framer-name\":\"image 259\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CfKckdmnl:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1671.6+60+152+8.5+-7+0),pixelHeight:225,pixelWidth:505,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/6tDCiRptvdXhRbaDORvo53mW8O8.png\"}},t7j3geBvS:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+891.6+60+152+1.5+0+0),pixelHeight:225,pixelWidth:505,src:\"https://framerusercontent.com/images/6tDCiRptvdXhRbaDORvo53mW8O8.png\"}},yima759nb:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1953.6+60+152+1.5+0+0),pixelHeight:225,pixelWidth:505,src:\"https://framerusercontent.com/images/6tDCiRptvdXhRbaDORvo53mW8O8.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1221.6+60+152+1.5+0+0),pixelHeight:225,pixelWidth:505,src:\"https://framerusercontent.com/images/6tDCiRptvdXhRbaDORvo53mW8O8.png\"},className:\"framer-111zisb\",\"data-framer-name\":\"Rectangle 3463953\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18i0y90\",\"data-framer-name\":\"Mask group\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-pt49y7\",\"data-framer-name\":\"image 261\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CfKckdmnl:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1671.6+60+152+1.5+0+0),pixelHeight:225,pixelWidth:445,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/mapz4kTGmmS27GkdoqYYA16fLLQ.png\"}},t7j3geBvS:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+891.6+60+152+1.5+0+0),pixelHeight:225,pixelWidth:445,src:\"https://framerusercontent.com/images/mapz4kTGmmS27GkdoqYYA16fLLQ.png\"}},yima759nb:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1953.6+60+152+1.5+0+0),pixelHeight:225,pixelWidth:445,src:\"https://framerusercontent.com/images/mapz4kTGmmS27GkdoqYYA16fLLQ.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1221.6+60+152+1.5+0+0),pixelHeight:225,pixelWidth:445,src:\"https://framerusercontent.com/images/mapz4kTGmmS27GkdoqYYA16fLLQ.png\"},className:\"framer-1qv94z5\",\"data-framer-name\":\"Rectangle 3463954\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vf9gz1\",\"data-framer-name\":\"Mask group\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dgmszj\",\"data-framer-name\":\"image 261\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CfKckdmnl:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1671.6+60+152+0+-1+0+2.5),pixelHeight:162,pixelWidth:310,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/VJt2vxJr2HptjOOJ23OVu22jtxg.png\"}},t7j3geBvS:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+891.6+60+152+0+-1+0),pixelHeight:162,pixelWidth:310,src:\"https://framerusercontent.com/images/VJt2vxJr2HptjOOJ23OVu22jtxg.png\"}},yima759nb:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1953.6+60+152+0+-1+0),pixelHeight:162,pixelWidth:310,src:\"https://framerusercontent.com/images/VJt2vxJr2HptjOOJ23OVu22jtxg.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1221.6+60+152+0+-1+0),pixelHeight:162,pixelWidth:310,src:\"https://framerusercontent.com/images/VJt2vxJr2HptjOOJ23OVu22jtxg.png\"},className:\"framer-78cwaj\",\"data-framer-name\":\"Rectangle 3463954\"})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q9jhyw\",\"data-framer-name\":\"Frame 2147226366\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-j5tscb\",\"data-framer-name\":\"Frame 1321319090\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CfKckdmnl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"48px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:\"How it works\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"48px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:\"How it works\"})}),className:\"framer-35fpdh\",\"data-framer-name\":\"How it works\",fonts:[\"GF;HK Grotesk-600\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CfKckdmnl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(97, 97, 97)\"},children:\"Team up with us and save up to 40% on hotel bookings through our exclusive discounts.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(97, 97, 97)\"},children:\"Team up with us and save up to 40% on hotel bookings through our exclusive discounts.\"})}),className:\"framer-w9n3g2\",\"data-framer-name\":\"Team up with us and save up to 40% on hotel bookings through tuck. exclusive discounts.\",fonts:[\"GF;HK Grotesk-500\"],verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7k1sj8\",\"data-framer-name\":\"Frame 1321319097\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1swynff\",\"data-framer-name\":\"Group 1171279763\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11oh6j2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-a9n92k\",\"data-framer-name\":\"Frame 1321319095\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dtd82m\",\"data-framer-name\":\"hotel-01\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-wngd3y\",\"data-framer-name\":\"elements\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:52,intrinsicWidth:52,svg:'<svg width=\"52\" height=\"52\" viewBox=\"0 0 52 52\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.7969 0.916382C21.6115 0.916382 17.6436 2.56932 15.3519 5.40289C15.2609 5.51547 15.1249 5.58305 14.9801 5.58305H2.46355C1.17489 5.58305 0.130219 6.62772 0.130219 7.91638C0.130219 9.20505 1.17489 10.2497 2.46355 10.2497H2.58023C2.83797 10.2497 3.0469 10.4587 3.0469 10.7164L3.04689 44.7708C3.04677 45.7807 3.04667 46.7066 3.14793 47.4599C3.25945 48.2893 3.52183 49.166 4.24288 49.8871C4.96393 50.6081 5.84063 50.8705 6.67008 50.982C7.42331 51.0833 8.34926 51.0832 9.35917 51.0831H18.3302C18.588 51.0831 18.7969 50.8741 18.7969 50.6164V41.7497C18.7969 37.8837 21.9309 34.7497 25.7969 34.7497C29.6629 34.7497 32.7969 37.8837 32.7969 41.7497V50.6164C32.7969 50.8741 33.0058 51.0831 33.2636 51.0831H42.2346C43.2445 51.0832 44.1705 51.0833 44.9237 50.982C45.7532 50.8705 46.6299 50.6081 47.3509 49.8871C48.072 49.166 48.3344 48.2893 48.4459 47.4599C48.5471 46.7066 48.547 45.7807 48.5469 44.7708L48.5469 10.7164C48.5469 10.4586 48.7558 10.2497 49.0136 10.2497H49.1302C50.4189 10.2497 51.4636 9.20505 51.4636 7.91638C51.4636 6.62772 50.4189 5.58305 49.1302 5.58305H36.6137C36.4689 5.58305 36.3329 5.51547 36.2419 5.40289C33.9502 2.56932 29.9823 0.916382 25.7969 0.916382ZM22.2969 14.9164C23.2634 14.9164 24.0469 15.6999 24.0469 16.6664V17.9497C24.0469 18.2074 24.2558 18.4164 24.5136 18.4164H27.0802C27.338 18.4164 27.5469 18.2074 27.5469 17.9497V16.6664C27.5469 15.6999 28.3304 14.9164 29.2969 14.9164C30.2634 14.9164 31.0469 15.6999 31.0469 16.6664V23.6664C31.0469 24.6329 30.2634 25.4164 29.2969 25.4164C28.3304 25.4164 27.5469 24.6329 27.5469 23.6664V22.383C27.5469 22.1253 27.338 21.9164 27.0802 21.9164H24.5136C24.2558 21.9164 24.0469 22.1253 24.0469 22.383V23.6664C24.0469 24.6329 23.2634 25.4164 22.2969 25.4164C21.3304 25.4164 20.5469 24.6329 20.5469 23.6664V16.6664C20.5469 15.6999 21.3304 14.9164 22.2969 14.9164ZM10.0469 16.6664C10.0469 15.6999 10.8304 14.9164 11.7969 14.9164H14.1302C15.0967 14.9164 15.8802 15.6999 15.8802 16.6664C15.8802 17.6329 15.0967 18.4164 14.1302 18.4164H11.7969C10.8304 18.4164 10.0469 17.6329 10.0469 16.6664ZM10.0469 25.9997C10.0469 25.0332 10.8304 24.2497 11.7969 24.2497H14.1302C15.0967 24.2497 15.8802 25.0332 15.8802 25.9997C15.8802 26.9662 15.0967 27.7497 14.1302 27.7497H11.7969C10.8304 27.7497 10.0469 26.9662 10.0469 25.9997ZM10.0469 35.333C10.0469 34.3666 10.8304 33.583 11.7969 33.583H14.1302C15.0967 33.583 15.8802 34.3666 15.8802 35.333C15.8802 36.2995 15.0967 37.083 14.1302 37.083H11.7969C10.8304 37.083 10.0469 36.2995 10.0469 35.333ZM37.4636 14.9164C36.4971 14.9164 35.7136 15.6999 35.7136 16.6664C35.7136 17.6329 36.4971 18.4164 37.4636 18.4164H39.7969C40.7634 18.4164 41.5469 17.6329 41.5469 16.6664C41.5469 15.6999 40.7634 14.9164 39.7969 14.9164H37.4636ZM37.4636 24.2497C36.4971 24.2497 35.7136 25.0332 35.7136 25.9997C35.7136 26.9662 36.4971 27.7497 37.4636 27.7497H39.7969C40.7634 27.7497 41.5469 26.9662 41.5469 25.9997C41.5469 25.0332 40.7634 24.2497 39.7969 24.2497H37.4636ZM37.4636 33.583C36.4971 33.583 35.7136 34.3666 35.7136 35.333C35.7136 36.2995 36.4971 37.083 37.4636 37.083H39.7969C40.7634 37.083 41.5469 36.2995 41.5469 35.333C41.5469 34.3666 40.7634 33.583 39.7969 33.583H37.4636Z\" fill=\"#078F3D\"/>\\n<path d=\"M27.6636 51.0831C27.9213 51.0831 28.1302 50.8741 28.1302 50.6164V41.7497C28.1302 40.4611 27.0856 39.4164 25.7969 39.4164C24.5082 39.4164 23.4636 40.4611 23.4636 41.7497V50.6164C23.4636 50.8741 23.6725 51.0831 23.9302 51.0831H27.6636Z\" fill=\"#078F3D\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jjz9j6\",\"data-framer-name\":\"Frame 1321319085\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CfKckdmnl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:\"Search & book top hotels.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:\"Search & book top hotels.\"})}),className:\"framer-1h9b3p3\",\"data-framer-name\":\"Search & book top hotels.\",fonts:[\"GF;HK Grotesk-600\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(97, 97, 97)\"},children:\"Easily search and book top-rated hotels worldwide at the best prices.\"})}),className:\"framer-1l5pi2p\",\"data-framer-name\":\"Easily search and book top-rated hotels worldwide at the best prices.\",fonts:[\"GF;HK Grotesk-500\"],verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3yuutr\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-zhc1go\",\"data-framer-name\":\"Frame 1321319086\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gc2ehg\",\"data-framer-name\":\"discount\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1kjfa0x\",\"data-framer-name\":\"elements\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:52,intrinsicWidth:51,svg:'<svg width=\"51\" height=\"52\" viewBox=\"0 0 51 52\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M22.4498 2.20806C23.4207 1.46731 24.4875 0.916382 25.7969 0.916382C27.1062 0.916382 28.173 1.46731 29.1439 2.20806C30.0532 2.90179 31.0561 3.90481 32.2295 5.0783L32.312 5.16081C33.5126 6.36147 34.5592 6.83432 36.1754 6.83432C36.3773 6.83432 36.6333 6.82707 36.9227 6.81887C37.6571 6.79807 38.607 6.77117 39.4366 6.84121C40.6536 6.94396 42.1779 7.27095 43.3404 8.42381C44.5118 9.58549 44.847 11.1161 44.9529 12.3407C45.0253 13.178 44.9983 14.1349 44.9775 14.8746L44.9775 14.875C44.9694 15.1634 44.9622 15.4188 44.9622 15.6212C44.9622 16.6731 45.0791 17.2606 45.2818 17.7247C45.49 18.2012 45.8572 18.7061 46.6358 19.4847L46.7184 19.5672C47.8918 20.7406 48.8948 21.7434 49.5885 22.6527C50.3293 23.6235 50.8802 24.6903 50.8802 25.9997C50.8802 27.309 50.3292 28.3758 49.5885 29.3467C48.8947 30.2561 47.8914 31.2592 46.7177 32.4328L46.6357 32.5148C45.8572 33.2933 45.4899 33.7981 45.2818 34.2747C45.0791 34.7387 44.9622 35.3263 44.9622 36.3782C44.9622 36.5806 44.9694 36.8359 44.9775 37.1243L44.9775 37.1247C44.9983 37.8645 45.0253 38.8214 44.9529 39.6587C44.8469 40.8834 44.5118 42.414 43.3403 43.5757C42.1778 44.7284 40.6535 45.0554 39.4365 45.1581C38.6069 45.2282 37.6571 45.2013 36.9227 45.1805C36.6333 45.1723 36.3774 45.165 36.1754 45.165C35.1459 45.165 34.5673 45.2685 34.1118 45.4565C33.6568 45.6444 33.1701 45.9804 32.437 46.7135C32.2804 46.8701 32.0741 47.0913 31.8361 47.3464C31.2995 47.9215 30.6019 48.6692 29.9504 49.2387C28.9616 50.103 27.5433 51.083 25.7969 51.0831C24.0505 51.083 22.6323 50.1031 21.6434 49.2387C20.9918 48.6692 20.2943 47.9215 19.7577 47.3464L19.7577 47.3464L19.7573 47.346C19.5194 47.091 19.3133 46.87 19.1568 46.7135C18.4237 45.9804 17.937 45.6444 17.4819 45.4565C17.0265 45.2685 16.4478 45.165 15.4183 45.165C15.2164 45.165 14.9604 45.1723 14.671 45.1805C13.9366 45.2013 12.9868 45.2282 12.1572 45.1581C10.9402 45.0554 9.41595 44.7284 8.25345 43.5757C7.08197 42.414 6.74681 40.8834 6.64088 39.6587C6.56847 38.8214 6.59539 37.8645 6.61621 37.1247C6.62433 36.8362 6.63152 36.5807 6.63152 36.3782C6.63152 35.3263 6.51463 34.7387 6.31196 34.2747C6.1038 33.7982 5.73655 33.2933 4.958 32.5148L4.87608 32.4329C3.70232 31.2593 2.69909 30.2561 2.00523 29.3467C1.26449 28.3758 0.713564 27.309 0.713531 25.9997C0.71355 24.6904 1.26448 23.6235 2.00522 22.6527C2.69894 21.7434 3.70195 20.7405 4.87542 19.5672L4.95792 19.4847C6.15885 18.2837 6.63152 17.2368 6.63152 15.6212C6.63152 15.4192 6.62427 15.1633 6.61608 14.874L6.61607 14.8739C6.59527 14.1394 6.56837 13.1896 6.63841 12.36C6.74116 11.143 7.06812 9.61867 8.22093 8.45617C9.38261 7.28473 10.9132 6.94959 12.1379 6.84367C12.9751 6.77127 13.932 6.79819 14.6718 6.81901H14.6718H14.6718H14.6718H14.6719H14.6719C14.9604 6.82713 15.2159 6.83432 15.4184 6.83432C17.034 6.83432 18.0809 6.36168 19.2818 5.16081L19.3643 5.07827L19.3643 5.07826L19.3643 5.07825L19.3644 5.07822C20.5377 3.90477 21.5406 2.90178 22.4498 2.20806ZM17.147 34.6497C16.2357 33.7384 16.2357 32.2611 17.147 31.3498L31.147 17.3498C32.0582 16.4386 33.5356 16.4386 34.4468 17.3498C35.358 18.2611 35.358 19.7385 34.4468 20.6497L20.4468 34.6497C19.5356 35.5609 18.0582 35.5609 17.147 34.6497ZM18.822 16.6664H18.7969C17.5082 16.6664 16.4635 17.7111 16.4635 18.9998C16.4635 20.2884 17.5082 21.3331 18.7969 21.3331H18.822C20.1106 21.3331 21.1553 20.2884 21.1553 18.9998C21.1553 17.7111 20.1106 16.6664 18.822 16.6664ZM32.7969 30.6664H32.7718C31.4831 30.6664 30.4384 31.7111 30.4384 32.9998C30.4384 34.2884 31.4831 35.3331 32.7718 35.3331H32.7969C34.0855 35.3331 35.1302 34.2884 35.1302 32.9998C35.1302 31.7111 34.0855 30.6664 32.7969 30.6664Z\" fill=\"#078F3D\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1raekfb\",\"data-framer-name\":\"Frame 1321319096\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CfKckdmnl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:\"Earn up to 40% cashback after your stay. \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:\"Earn up to 40% cashback after your stay. \"})}),className:\"framer-3seata\",\"data-framer-name\":\"Earn up to 40% cashback after your stay.\",fonts:[\"GF;HK Grotesk-600\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(97, 97, 97)\"},children:\"Get up to 40% cashback on your hotel stay save more on every trip!\"})}),className:\"framer-3my3n9\",\"data-framer-name\":\"Get up to 40% cashback on your hotel stay save more on every trip!\",fonts:[\"GF;HK Grotesk-500\"],verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mencja\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-13z62xp\",\"data-framer-name\":\"Frame 1321319097\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-3tp2ir\",\"data-framer-name\":\"dollar-circle\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-gzfd7\",\"data-framer-name\":\"elements\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:52,intrinsicWidth:51,svg:'<svg width=\"51\" height=\"52\" viewBox=\"0 0 51 52\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.7969 0.918335C11.9437 0.918335 0.713531 12.1485 0.713531 26.0017C0.713531 39.8548 11.9437 51.085 25.7969 51.085C39.65 51.085 50.8802 39.8548 50.8802 26.0017C50.8802 12.1485 39.65 0.918335 25.7969 0.918335ZM27.5469 14.335C27.5469 13.3685 26.7634 12.585 25.7969 12.585C24.8304 12.585 24.0469 13.3685 24.0469 14.335L24.0469 15.3248C22.6113 15.5691 21.2937 16.1112 20.2248 16.895C18.7343 17.9879 17.6302 19.6424 17.6302 21.6332C17.6302 23.3845 18.2587 25.003 19.865 26.0783C21.3214 27.0534 23.352 27.4161 25.7969 27.4161C28.0326 27.4161 29.3621 27.7518 30.0951 28.2269C30.6689 28.5989 31.0469 29.161 31.0469 30.3712C31.0469 31.388 30.6295 32.0159 29.8496 32.4814C28.9636 33.0103 27.5721 33.3263 25.7969 33.3263C24.1641 33.3263 22.7644 32.8783 21.8234 32.2458C20.8714 31.6059 20.5469 30.91 20.5469 30.3712C20.5469 29.4047 19.7634 28.6212 18.7969 28.6212C17.8304 28.6212 17.0469 29.4047 17.0469 30.3712C17.0469 32.431 18.2894 34.0876 19.8709 35.1506C21.039 35.9357 22.4803 36.4706 24.0469 36.7V37.6684C24.0469 38.6349 24.8304 39.4184 25.7969 39.4184C26.7634 39.4184 27.5469 38.6349 27.5469 37.6684V36.7366C29.0323 36.5776 30.4575 36.1947 31.6436 35.4867C33.3973 34.4398 34.5469 32.7152 34.5469 30.3712C34.5469 28.2206 33.7582 26.4303 31.9987 25.2899C30.3983 24.2526 28.2278 23.9161 25.7969 23.9161C23.5751 23.9161 22.3973 23.5617 21.8121 23.1699C21.3767 22.8784 21.1302 22.4805 21.1302 21.6332C21.1302 21.0255 21.4625 20.3275 22.2944 19.7175C23.1253 19.1082 24.3579 18.6781 25.7969 18.6781C27.2359 18.6781 28.4685 19.1082 29.2993 19.7175C30.1312 20.3275 30.4635 21.0255 30.4635 21.6332C30.4635 22.5997 31.247 23.3832 32.2135 23.3832C33.18 23.3832 33.9635 22.5997 33.9635 21.6332C33.9635 19.6424 32.8594 17.9879 31.369 16.895C30.3001 16.1112 28.9825 15.5691 27.5469 15.3248V14.335Z\" fill=\"#078F3D\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tarrti\",\"data-framer-name\":\"Frame 1321319098\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CfKckdmnl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:\"Use your savings for future trips or withdraw it.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:\"Use your savings for future trips or withdraw it.\"})}),className:\"framer-6560co\",\"data-framer-name\":\"Use your savings for future trips or withdraw it.\",fonts:[\"GF;HK Grotesk-600\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(97, 97, 97)\"},children:\"Use your savings for future trips or withdraw them anytime you need.\"})}),className:\"framer-16cwipk\",\"data-framer-name\":\"Use your savings for future trips or withdraw them anytime you need.\",fonts:[\"GF;HK Grotesk-500\"],verticalAlignment:\"center\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CfKckdmnl:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2002.6+80+413+0+0),pixelHeight:2776,pixelWidth:1356,positionX:\"center\",positionY:\"center\",sizes:\"249px\",src:\"https://framerusercontent.com/images/PhfaOh3t2XSbONN49OgOMVVcALU.png\",srcSet:\"https://framerusercontent.com/images/PhfaOh3t2XSbONN49OgOMVVcALU.png?scale-down-to=2048 1000w,https://framerusercontent.com/images/PhfaOh3t2XSbONN49OgOMVVcALU.png 1356w\"}},t7j3geBvS:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1222.6+80+424+69),pixelHeight:2776,pixelWidth:1356,positionX:\"center\",positionY:\"center\",sizes:\"339px\",src:\"https://framerusercontent.com/images/PhfaOh3t2XSbONN49OgOMVVcALU.png\",srcSet:\"https://framerusercontent.com/images/PhfaOh3t2XSbONN49OgOMVVcALU.png?scale-down-to=2048 1000w,https://framerusercontent.com/images/PhfaOh3t2XSbONN49OgOMVVcALU.png 1356w\"}},yima759nb:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2284.6+80+424+0+0),pixelHeight:2776,pixelWidth:1356,positionX:\"center\",positionY:\"center\",sizes:\"339px\",src:\"https://framerusercontent.com/images/PhfaOh3t2XSbONN49OgOMVVcALU.png\",srcSet:\"https://framerusercontent.com/images/PhfaOh3t2XSbONN49OgOMVVcALU.png?scale-down-to=2048 1000w,https://framerusercontent.com/images/PhfaOh3t2XSbONN49OgOMVVcALU.png 1356w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1552.6+80+424+69),pixelHeight:2776,pixelWidth:1356,positionX:\"center\",positionY:\"center\",sizes:\"339px\",src:\"https://framerusercontent.com/images/PhfaOh3t2XSbONN49OgOMVVcALU.png\",srcSet:\"https://framerusercontent.com/images/PhfaOh3t2XSbONN49OgOMVVcALU.png?scale-down-to=2048 1000w,https://framerusercontent.com/images/PhfaOh3t2XSbONN49OgOMVVcALU.png 1356w\"},className:\"framer-1ujfecc\",\"data-framer-name\":\"544shots_so 1\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-198jk7j\",\"data-framer-name\":\"Frame 2147226369\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-6ah1f9\",\"data-framer-name\":\"Frame 2147226367\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:57,intrinsicWidth:57,svg:'<svg width=\"57\" height=\"57\" viewBox=\"0 0 57 57\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect x=\"0.631348\" y=\"0.102051\" width=\"56\" height=\"56\" rx=\"12.3303\" fill=\"#078F3D\"/>\\n<path d=\"M8.2471 29.1242L8.22979 26.5729H6.87927V24.4759H8.22979L8.21247 21.6799H10.4287V24.4934H12.7488L12.7834 26.5729L10.498 26.5554L10.4287 29.7184C10.4172 30.1378 10.498 30.4931 10.6711 30.7843C10.8442 31.0756 11.0578 31.3144 11.3117 31.5008C11.5772 31.6756 11.8658 31.8095 12.1774 31.9027C12.4891 31.9843 12.7834 32.0309 13.0605 32.0425V34.3317C12.3794 34.3201 11.7446 34.2211 11.1559 34.0347C10.5788 33.8366 10.0709 33.5337 9.63224 33.126C9.20516 32.7066 8.86464 32.1707 8.6107 31.5183C8.3683 30.8542 8.2471 30.0562 8.2471 29.1242Z\" fill=\"white\"/>\\n<path d=\"M25.3433 29.1941C25.3433 29.9164 25.2106 30.5979 24.9451 31.2387C24.6796 31.8794 24.316 32.4386 23.8543 32.9163C23.4041 33.3939 22.8731 33.7725 22.2614 34.0521C21.6496 34.3201 20.9974 34.4541 20.3049 34.4541C19.6123 34.4541 18.9544 34.3201 18.331 34.0521C17.7193 33.7725 17.1825 33.3939 16.7208 32.9163C16.2706 32.4386 15.9128 31.8794 15.6473 31.2387C15.3934 30.5979 15.2664 29.9164 15.2664 29.1941L15.3184 24.3361H17.448L17.4826 29.1941C17.4826 29.6019 17.5577 29.9863 17.7077 30.3475C17.8578 30.697 18.0598 31.0057 18.3137 31.2736C18.5677 31.5416 18.862 31.7571 19.1968 31.9202C19.543 32.0717 19.9124 32.1474 20.3049 32.1474C20.6973 32.1474 21.0609 32.0717 21.3957 31.9202C21.742 31.7571 22.0421 31.5416 22.296 31.2736C22.5499 31.0057 22.7519 30.697 22.902 30.3475C23.0521 29.9863 23.1271 29.6019 23.1271 29.1941L23.1963 24.3361H25.3606L25.3433 29.1941Z\" fill=\"white\"/>\\n<path d=\"M34.4382 27.0098C34.1842 26.7651 33.8957 26.5729 33.5725 26.4331C33.2493 26.2933 32.903 26.2234 32.5336 26.2234C32.1412 26.2234 31.7718 26.3049 31.4255 26.468C31.0908 26.6195 30.7964 26.8292 30.5425 27.0971C30.2885 27.3651 30.0865 27.6796 29.9365 28.0408C29.7864 28.3903 29.7114 28.7689 29.7114 29.1767C29.7114 29.5844 29.7864 29.9688 29.9365 30.33C30.0865 30.6911 30.2885 31.0057 30.5425 31.2736C30.7964 31.5416 31.0908 31.7513 31.4255 31.9027C31.7718 32.0542 32.1412 32.1299 32.5336 32.1299C32.903 32.1299 33.2435 32.0658 33.5552 31.9377C33.8784 31.7979 34.1669 31.6115 34.4209 31.3785L36.0138 32.9862C35.5521 33.4289 35.0269 33.7842 34.4382 34.0521C33.8495 34.3084 33.2146 34.4366 32.5336 34.4366C31.841 34.4366 31.1889 34.3026 30.5771 34.0347C29.9653 33.7551 29.4286 33.3765 28.9669 32.8988C28.5167 32.4212 28.1589 31.862 27.8934 31.2212C27.6279 30.5805 27.4952 29.8989 27.4952 29.1767C27.4952 28.4544 27.6279 27.7728 27.8934 27.1321C28.1589 26.4913 28.5167 25.938 28.9669 25.472C29.4286 24.9943 29.9653 24.6215 30.5771 24.3536C31.1889 24.074 31.841 23.9342 32.5336 23.9342C33.2262 23.9342 33.8726 24.0682 34.4728 24.3361C35.073 24.5924 35.5982 24.9594 36.0484 25.437L34.4382 27.0098Z\" fill=\"white\"/>\\n<path d=\"M44.0147 34.3667L40.3268 30.0329V34.3317H38.0759V21.8023H40.3268V28.4078L43.7031 24.406H46.3002L42.1794 29.1592L46.6292 34.3667H44.0147Z\" fill=\"white\"/>\\n<path d=\"M49.1193 34.524C48.773 34.524 48.4729 34.3783 48.219 34.0871C47.9766 33.7958 47.8554 33.4405 47.8554 33.0211V32.1998H50.3833V33.0211C50.3833 33.4405 50.2563 33.7958 50.0024 34.0871C49.76 34.3783 49.4656 34.524 49.1193 34.524Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oyfbgj\",\"data-framer-name\":\"Frame 2147226368\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:\"Fancy a break? \uD83C\uDFDD\uFE0F\uD83C\uDF79\"})}),className:\"framer-v8q6am\",\"data-framer-name\":\"Fancy a break? \uD83C\uDFDD\uFE0F\uD83C\uDF79\",fonts:[\"GF;HK Grotesk-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:\"Save on your hotel bookings, sit back and relax!\"})}),className:\"framer-ogtosg\",\"data-framer-name\":\"Save on your hotel bookings, sit back and relax!\",fonts:[\"GF;HK Grotesk-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-5sxv2m\",\"data-framer-name\":\"Frame 2147226370\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1w2qm2g\",\"data-framer-name\":\"Frame 2147226369\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:56,intrinsicWidth:56,svg:'<svg width=\"56\" height=\"56\" viewBox=\"0 0 56 56\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect x=\"-6.10352e-05\" width=\"56\" height=\"56\" rx=\"12.3303\" fill=\"#078F3D\"/>\\n<path d=\"M7.61569 29.0222L7.59838 26.4708H6.24786V24.3739H7.59838L7.58106 21.5779H9.79729V24.3913H12.1174L12.152 26.4708L9.86655 26.4534L9.79729 29.6163C9.78575 30.0357 9.86655 30.391 10.0397 30.6823C10.2128 30.9735 10.4264 31.2124 10.6803 31.3988C10.9458 31.5735 11.2344 31.7075 11.546 31.8007C11.8577 31.8822 12.152 31.9288 12.4291 31.9405V34.2297C11.748 34.218 11.1132 34.119 10.5245 33.9326C9.94735 33.7346 9.43946 33.4317 9.00083 33.0239C8.57375 32.6045 8.23323 32.0686 7.97929 31.4162C7.73689 30.7522 7.61569 29.9542 7.61569 29.0222Z\" fill=\"white\"/>\\n<path d=\"M24.7119 29.0921C24.7119 29.8144 24.5792 30.4959 24.3137 31.1366C24.0482 31.7774 23.6846 32.3366 23.2229 32.8142C22.7727 33.2919 22.2417 33.6705 21.63 33.9501C21.0182 34.218 20.366 34.352 19.6735 34.352C18.9809 34.352 18.3229 34.218 17.6996 33.9501C17.0879 33.6705 16.5511 33.2919 16.0894 32.8142C15.6392 32.3366 15.2814 31.7774 15.0159 31.1366C14.762 30.4959 14.635 29.8144 14.635 29.0921L14.6869 24.2341H16.8166L16.8512 29.0921C16.8512 29.4998 16.9263 29.8843 17.0763 30.2454C17.2264 30.5949 17.4284 30.9036 17.6823 31.1716C17.9363 31.4395 18.2306 31.6551 18.5653 31.8182C18.9116 31.9696 19.281 32.0453 19.6735 32.0453C20.0659 32.0453 20.4295 31.9696 20.7643 31.8182C21.1105 31.6551 21.4107 31.4395 21.6646 31.1716C21.9185 30.9036 22.1205 30.5949 22.2706 30.2454C22.4207 29.8843 22.4957 29.4998 22.4957 29.0921L22.5649 24.2341H24.7292L24.7119 29.0921Z\" fill=\"white\"/>\\n<path d=\"M33.8068 26.9077C33.5528 26.6631 33.2643 26.4708 32.9411 26.331C32.6179 26.1912 32.2716 26.1213 31.9022 26.1213C31.5097 26.1213 31.1404 26.2029 30.7941 26.366C30.4593 26.5174 30.165 26.7271 29.9111 26.9951C29.6571 27.263 29.4551 27.5776 29.3051 27.9387C29.155 28.2882 29.08 28.6669 29.08 29.0746C29.08 29.4824 29.155 29.8668 29.3051 30.2279C29.4551 30.5891 29.6571 30.9036 29.9111 31.1716C30.165 31.4395 30.4593 31.6492 30.7941 31.8007C31.1404 31.9521 31.5097 32.0279 31.9022 32.0279C32.2716 32.0279 32.6121 31.9638 32.9237 31.8356C33.2469 31.6958 33.5355 31.5094 33.7895 31.2764L35.3824 32.8841C34.9207 33.3268 34.3955 33.6821 33.8068 33.9501C33.2181 34.2064 32.5832 34.3345 31.9022 34.3345C31.2096 34.3345 30.5575 34.2006 29.9457 33.9326C29.3339 33.653 28.7972 33.2744 28.3355 32.7968C27.8853 32.3191 27.5275 31.7599 27.262 31.1192C26.9965 30.4784 26.8637 29.7969 26.8637 29.0746C26.8637 28.3523 26.9965 27.6708 27.262 27.03C27.5275 26.3893 27.8853 25.8359 28.3355 25.3699C28.7972 24.8923 29.3339 24.5195 29.9457 24.2515C30.5575 23.9719 31.2096 23.8321 31.9022 23.8321C32.5948 23.8321 33.2412 23.9661 33.8414 24.2341C34.4416 24.4904 34.9668 24.8573 35.417 25.335L33.8068 26.9077Z\" fill=\"white\"/>\\n<path d=\"M43.3833 34.2646L39.6954 29.9309V34.2297H37.4445V21.7002H39.6954V28.3057L43.0717 24.304H45.6688L41.548 29.0571L45.9978 34.2646H43.3833Z\" fill=\"white\"/>\\n<path d=\"M48.4879 34.4219C48.1416 34.4219 47.8415 34.2763 47.5876 33.985C47.3452 33.6938 47.224 33.3385 47.224 32.9191V32.0978H49.7519V32.9191C49.7519 33.3385 49.6249 33.6938 49.3709 33.985C49.1285 34.2763 48.8342 34.4219 48.4879 34.4219Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-301c1a\",\"data-framer-name\":\"Frame 2147226368\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19px\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:\"Earn Up to 40% Cashback\"})}),className:\"framer-1oqx2tu\",\"data-framer-name\":\"Earn Up to 40% Cashback\",fonts:[\"GF;HK Grotesk-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"17px\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:\"Get real cashback after your stay, save more on every trip!\"})}),className:\"framer-10vlf9b\",\"data-framer-name\":\"Get real cashback after your stay, save more on every trip!\",fonts:[\"GF;HK Grotesk-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1khl775 hidden-1rx8816\",\"data-framer-name\":\"Shapes\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ns60wc\",\"data-border\":true,\"data-framer-name\":\"Shape\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qywj3m\",\"data-border\":true,\"data-framer-name\":\"Shape\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18lmzlf\",\"data-border\":true,\"data-framer-name\":\"Shape\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wxl7wa\",\"data-border\":true,\"data-framer-name\":\"Shape\"})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mmo8is hidden-1hf96d0 hidden-1rwgbeg hidden-1ar30zc\",\"data-framer-name\":\"Shapes\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-17kj886\",\"data-border\":true,\"data-framer-name\":\"Shape\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4oaf5s\",\"data-border\":true,\"data-framer-name\":\"Shape\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1epeon1\",\"data-border\":true,\"data-framer-name\":\"Shape\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bw1qm9\",\"data-border\":true,\"data-framer-name\":\"Shape\"})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5rhglm\",\"data-framer-name\":\"Frame 1321319143\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-io7fb3\",\"data-framer-name\":\"Frame 1321319090\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CfKckdmnl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay03MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"48px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(7, 143, 61)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:\"Why choose \"}),\"tuck.Travel?\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay03MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"48px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(7, 143, 61)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:\"Why choose \"}),\"tuck.Travel?\"]})}),className:\"framer-hd4r3w\",\"data-framer-name\":\"Why choose tuck.Travel?\",fonts:[\"GF;HK Grotesk-700\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(97, 97, 97)\"},children:\"tuck.Travel for seamless bookings, great deals, and unforgettable trips.\"})}),className:\"framer-albuyc\",\"data-framer-name\":\"Tuck.travel for seamless bookings, great deals, and unforgettable trips.\",fonts:[\"GF;HK Grotesk-500\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mou4kj\",\"data-framer-name\":\"Frame 2147226352\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ot6h4b\",\"data-framer-name\":\"Frame 1321319147\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CfKckdmnl:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4098.6+60+424+0+0+24+0),pixelHeight:1440,pixelWidth:1484,sizes:`calc(max(min(${componentViewport?.width||\"100vw\"} - 40px, 1400px), 50px) - 48px)`,src:\"https://framerusercontent.com/images/ocTvYNNgBfGTCuChwr5iTxiL5xs.png\",srcSet:\"https://framerusercontent.com/images/ocTvYNNgBfGTCuChwr5iTxiL5xs.png?scale-down-to=512 512w,https://framerusercontent.com/images/ocTvYNNgBfGTCuChwr5iTxiL5xs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ocTvYNNgBfGTCuChwr5iTxiL5xs.png 1484w\"}},t7j3geBvS:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2638.6+80+424+0+0+24+0),pixelHeight:1440,pixelWidth:1484,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"} - 120px, 1400px) - 64px) / 3, 50px) - 48px)`,src:\"https://framerusercontent.com/images/ocTvYNNgBfGTCuChwr5iTxiL5xs.png\",srcSet:\"https://framerusercontent.com/images/ocTvYNNgBfGTCuChwr5iTxiL5xs.png?scale-down-to=512 512w,https://framerusercontent.com/images/ocTvYNNgBfGTCuChwr5iTxiL5xs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ocTvYNNgBfGTCuChwr5iTxiL5xs.png 1484w\"}},yima759nb:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4533.6+80+424+0+0+24+0),pixelHeight:1440,pixelWidth:1484,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1400px) - 32px) / 2, 50px) - 48px)`,src:\"https://framerusercontent.com/images/ocTvYNNgBfGTCuChwr5iTxiL5xs.png\",srcSet:\"https://framerusercontent.com/images/ocTvYNNgBfGTCuChwr5iTxiL5xs.png?scale-down-to=512 512w,https://framerusercontent.com/images/ocTvYNNgBfGTCuChwr5iTxiL5xs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ocTvYNNgBfGTCuChwr5iTxiL5xs.png 1484w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2968.6+80+424+0+0+24+0),pixelHeight:1440,pixelWidth:1484,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"} - 120px, 1400px) - 64px) / 3, 50px) - 48px)`,src:\"https://framerusercontent.com/images/ocTvYNNgBfGTCuChwr5iTxiL5xs.png\",srcSet:\"https://framerusercontent.com/images/ocTvYNNgBfGTCuChwr5iTxiL5xs.png?scale-down-to=512 512w,https://framerusercontent.com/images/ocTvYNNgBfGTCuChwr5iTxiL5xs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ocTvYNNgBfGTCuChwr5iTxiL5xs.png 1484w\"},className:\"framer-xy4fib\",\"data-framer-name\":\"Rectangle 3463952\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4zjnix\",\"data-framer-name\":\"Frame 1321319086\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CfKckdmnl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\"},children:\"Enjoy the best prices\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\"},children:\"Enjoy the best \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\"},children:\"prices\"})]}),className:\"framer-1mi979m\",\"data-framer-name\":\"Best hotel price guarantee\",fonts:[\"GF;HK Grotesk-600\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(97, 97, 97)\"},children:\"Enjoy the best prices with no hidden fees. We ensure you get the lowest rate.\"})}),className:\"framer-s6vxqd\",\"data-framer-name\":\"Enjoy the best hotel price guarantee with no hidden fees. We ensure you get the lowest rate.\",fonts:[\"GF;HK Grotesk-regular\"],verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pka3rk\",\"data-framer-name\":\"Frame 1321319146\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CfKckdmnl:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4098.6+60+424+0+760+24+0),pixelHeight:1440,pixelWidth:1484,sizes:`calc(max(min(${componentViewport?.width||\"100vw\"} - 40px, 1400px), 50px) - 48px)`,src:\"https://framerusercontent.com/images/tmaxsM54hnnhwmEp8t4FaiQLQE.png\",srcSet:\"https://framerusercontent.com/images/tmaxsM54hnnhwmEp8t4FaiQLQE.png?scale-down-to=512 512w,https://framerusercontent.com/images/tmaxsM54hnnhwmEp8t4FaiQLQE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tmaxsM54hnnhwmEp8t4FaiQLQE.png 1484w\"}},t7j3geBvS:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2638.6+80+424+0+0+24+0),pixelHeight:1440,pixelWidth:1484,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"} - 120px, 1400px) - 64px) / 3, 50px) - 48px)`,src:\"https://framerusercontent.com/images/tmaxsM54hnnhwmEp8t4FaiQLQE.png\",srcSet:\"https://framerusercontent.com/images/tmaxsM54hnnhwmEp8t4FaiQLQE.png?scale-down-to=512 512w,https://framerusercontent.com/images/tmaxsM54hnnhwmEp8t4FaiQLQE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tmaxsM54hnnhwmEp8t4FaiQLQE.png 1484w\"}},yima759nb:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4533.6+80+424+0+0+24+0),pixelHeight:1440,pixelWidth:1484,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1400px) - 32px) / 2, 50px) - 48px)`,src:\"https://framerusercontent.com/images/tmaxsM54hnnhwmEp8t4FaiQLQE.png\",srcSet:\"https://framerusercontent.com/images/tmaxsM54hnnhwmEp8t4FaiQLQE.png?scale-down-to=512 512w,https://framerusercontent.com/images/tmaxsM54hnnhwmEp8t4FaiQLQE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tmaxsM54hnnhwmEp8t4FaiQLQE.png 1484w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2968.6+80+424+0+0+24+0),pixelHeight:1440,pixelWidth:1484,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"} - 120px, 1400px) - 64px) / 3, 50px) - 48px)`,src:\"https://framerusercontent.com/images/tmaxsM54hnnhwmEp8t4FaiQLQE.png\",srcSet:\"https://framerusercontent.com/images/tmaxsM54hnnhwmEp8t4FaiQLQE.png?scale-down-to=512 512w,https://framerusercontent.com/images/tmaxsM54hnnhwmEp8t4FaiQLQE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tmaxsM54hnnhwmEp8t4FaiQLQE.png 1484w\"},className:\"framer-eiwr3w\",\"data-framer-name\":\"image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i5e8lb\",\"data-framer-name\":\"Frame 1321319086\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CfKckdmnl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:\"Exclusive cashback deals\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:\"Exclusive cashback \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:\"deals\"})]}),className:\"framer-1xyejpy\",\"data-framer-name\":\"Exclusive cashback deals\",fonts:[\"GF;HK Grotesk-600\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(97, 97, 97)\"},children:\"Enjoy exclusive cashback deals on your bookings and get rewarded every time you travel.\"})}),className:\"framer-ddunxn\",\"data-framer-name\":\"Enjoy exclusive cashback deals on your bookings and get rewarded every time you travel.\",fonts:[\"GF;HK Grotesk-regular\"],verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vf9okc\",\"data-framer-name\":\"Frame 1321319145\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CfKckdmnl:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4098.6+60+424+0+1520+24+0),pixelHeight:1440,pixelWidth:1484,sizes:`calc(max(min(${componentViewport?.width||\"100vw\"} - 40px, 1400px), 50px) - 48px)`,src:\"https://framerusercontent.com/images/oxhimtbLkfzPKeOCJgchOFcClQ.png\",srcSet:\"https://framerusercontent.com/images/oxhimtbLkfzPKeOCJgchOFcClQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/oxhimtbLkfzPKeOCJgchOFcClQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/oxhimtbLkfzPKeOCJgchOFcClQ.png 1484w\"}},t7j3geBvS:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2638.6+80+424+0+0+24+0),pixelHeight:1440,pixelWidth:1484,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"} - 120px, 1400px) - 64px) / 3, 50px) - 48px)`,src:\"https://framerusercontent.com/images/oxhimtbLkfzPKeOCJgchOFcClQ.png\",srcSet:\"https://framerusercontent.com/images/oxhimtbLkfzPKeOCJgchOFcClQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/oxhimtbLkfzPKeOCJgchOFcClQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/oxhimtbLkfzPKeOCJgchOFcClQ.png 1484w\"}},yima759nb:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4533.6+80+424+0+916+24+0),pixelHeight:1440,pixelWidth:1484,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1400px) - 32px) / 2, 50px) - 48px)`,src:\"https://framerusercontent.com/images/oxhimtbLkfzPKeOCJgchOFcClQ.png\",srcSet:\"https://framerusercontent.com/images/oxhimtbLkfzPKeOCJgchOFcClQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/oxhimtbLkfzPKeOCJgchOFcClQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/oxhimtbLkfzPKeOCJgchOFcClQ.png 1484w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2968.6+80+424+0+0+24+0),pixelHeight:1440,pixelWidth:1484,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"} - 120px, 1400px) - 64px) / 3, 50px) - 48px)`,src:\"https://framerusercontent.com/images/oxhimtbLkfzPKeOCJgchOFcClQ.png\",srcSet:\"https://framerusercontent.com/images/oxhimtbLkfzPKeOCJgchOFcClQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/oxhimtbLkfzPKeOCJgchOFcClQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/oxhimtbLkfzPKeOCJgchOFcClQ.png 1484w\"},className:\"framer-jo7v1o\",\"data-framer-name\":\"Rectangle 3463952\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f8pfoo\",\"data-framer-name\":\"Frame 1321319086\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:\" Safe & secure bookings with 24/7 customer support\"})}),className:\"framer-1w3oz5s\",\"data-framer-name\":\"Safe & secure bookings with 24/7 customer support\",fonts:[\"GF;HK Grotesk-600\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(97, 97, 97)\"},children:\"Book with confidence. Secure, hassle free and 24/7\\xa0support.\"})}),className:\"framer-25uw2y\",\"data-framer-name\":\"Book with confidence\u2014safe, secure, and hassle-free, with 24/7 support.\",fonts:[\"GF;HK Grotesk-regular\"],verticalAlignment:\"center\",withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ezw334\",\"data-framer-name\":\"Frame 2147226351\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zmyynj\",\"data-framer-name\":\"Frame 1321319103\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CfKckdmnl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay03MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"48px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:\"Find your stay\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay03MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"48px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:\"Find your stay\"})}),className:\"framer-1ojpd7c\",\"data-framer-name\":\"Find your stay\",fonts:[\"GF;HK Grotesk-700\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(97, 97, 97)\"},children:\"Find your perfect stay and make it your new favourite getaway.\"})}),className:\"framer-okb7e8\",\"data-framer-name\":\"Find your perfect stay and make it your new favorite getaway.\",fonts:[\"GF;HK Grotesk-500\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-icnodw\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-2eunus-container\",isModuleExternal:true,nodeId:\"dbKXbj0Zo\",scopeId:\"mnvLFwKli\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"dbKXbj0Zo\",layoutId:\"dbKXbj0Zo\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:1364,pixelWidth:980,positionX:\"center\",positionY:\"center\",sizes:\"245px\",src:\"https://framerusercontent.com/images/RDKHx30KhvtaaUi7Dik4Lxk74w.png\",srcSet:\"https://framerusercontent.com/images/RDKHx30KhvtaaUi7Dik4Lxk74w.png?scale-down-to=1024 735w,https://framerusercontent.com/images/RDKHx30KhvtaaUi7Dik4Lxk74w.png 980w\"},className:\"framer-j5f5go\",\"data-border\":true,\"data-framer-name\":\"Frame 1321319149\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay03MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Spa\"})}),className:\"framer-50d4gs\",\"data-framer-name\":\"Spa\",fonts:[\"GF;HK Grotesk-700\"],transformTemplate:transformTemplate1,verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:1364,pixelWidth:980,positionX:\"center\",positionY:\"center\",sizes:\"245px\",src:\"https://framerusercontent.com/images/NqYsDUIWayonzLzG3UTTTSmRaZo.png\",srcSet:\"https://framerusercontent.com/images/NqYsDUIWayonzLzG3UTTTSmRaZo.png?scale-down-to=1024 735w,https://framerusercontent.com/images/NqYsDUIWayonzLzG3UTTTSmRaZo.png 980w\"},className:\"framer-hr4srw\",\"data-border\":true,\"data-framer-name\":\"Frame 1321319145\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay03MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Sea View\"})}),className:\"framer-1iscbo7\",\"data-framer-name\":\"Sea View\",fonts:[\"GF;HK Grotesk-700\"],transformTemplate:transformTemplate1,verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:1364,pixelWidth:980,positionX:\"center\",positionY:\"center\",sizes:\"245px\",src:\"https://framerusercontent.com/images/5NHC3nBAmENwH0nurGKK7fP1KNI.png\",srcSet:\"https://framerusercontent.com/images/5NHC3nBAmENwH0nurGKK7fP1KNI.png?scale-down-to=1024 735w,https://framerusercontent.com/images/5NHC3nBAmENwH0nurGKK7fP1KNI.png 980w\"},className:\"framer-h0e92c\",\"data-border\":true,\"data-framer-name\":\"Frame 1321319146\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay03MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Country Side\"})}),className:\"framer-13bhd44\",\"data-framer-name\":\"Country Side\",fonts:[\"GF;HK Grotesk-700\"],transformTemplate:transformTemplate1,verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:1364,pixelWidth:980,positionX:\"center\",positionY:\"center\",sizes:\"245px\",src:\"https://framerusercontent.com/images/Ts4OJfMGkUFtAZaFBAuQDgJicI.png\",srcSet:\"https://framerusercontent.com/images/Ts4OJfMGkUFtAZaFBAuQDgJicI.png?scale-down-to=1024 735w,https://framerusercontent.com/images/Ts4OJfMGkUFtAZaFBAuQDgJicI.png 980w\"},className:\"framer-1hdefw1\",\"data-border\":true,\"data-framer-name\":\"Frame 1321319147\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay03MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"City Break\"})}),className:\"framer-1frcfe2\",\"data-framer-name\":\"New York\",fonts:[\"GF;HK Grotesk-700\"],transformTemplate:transformTemplate1,verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:1364,pixelWidth:980,positionX:\"center\",positionY:\"center\",sizes:\"245px\",src:\"https://framerusercontent.com/images/lSnLnFPsVUg2sZmUydB9Pw0aSc.png\",srcSet:\"https://framerusercontent.com/images/lSnLnFPsVUg2sZmUydB9Pw0aSc.png?scale-down-to=1024 735w,https://framerusercontent.com/images/lSnLnFPsVUg2sZmUydB9Pw0aSc.png 980w\"},className:\"framer-7nx9ol\",\"data-border\":true,\"data-framer-name\":\"Frame 1321319148\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay03MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Family friendly\"})}),className:\"framer-v17905\",\"data-framer-name\":\"Family friendly\",fonts:[\"GF;HK Grotesk-700\"],transformTemplate:transformTemplate1,verticalAlignment:\"center\",withExternalLayout:true})})],speed:45,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-pocfgh\",\"data-framer-name\":\"Frame 2147226350\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CfKckdmnl:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6830.6+60+817+0+0),pixelHeight:1917,pixelWidth:3960,sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1400px)`,src:\"https://framerusercontent.com/images/Mtb9OsC3NYKRNw89ywGiiPxs.png\",srcSet:\"https://framerusercontent.com/images/Mtb9OsC3NYKRNw89ywGiiPxs.png?scale-down-to=512 512w,https://framerusercontent.com/images/Mtb9OsC3NYKRNw89ywGiiPxs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Mtb9OsC3NYKRNw89ywGiiPxs.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Mtb9OsC3NYKRNw89ywGiiPxs.png 3960w\"}},t7j3geBvS:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4066.6+60+817+0+0),pixelHeight:1917,pixelWidth:3960,sizes:`min(${componentViewport?.width||\"100vw\"} - 120px, 1400px)`,src:\"https://framerusercontent.com/images/Mtb9OsC3NYKRNw89ywGiiPxs.png\",srcSet:\"https://framerusercontent.com/images/Mtb9OsC3NYKRNw89ywGiiPxs.png?scale-down-to=512 512w,https://framerusercontent.com/images/Mtb9OsC3NYKRNw89ywGiiPxs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Mtb9OsC3NYKRNw89ywGiiPxs.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Mtb9OsC3NYKRNw89ywGiiPxs.png 3960w\"}},yima759nb:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6877.6+60+817+0+0),pixelHeight:1917,pixelWidth:3960,sizes:`min(${componentViewport?.width||\"100vw\"} - 120px, 1400px)`,src:\"https://framerusercontent.com/images/Mtb9OsC3NYKRNw89ywGiiPxs.png\",srcSet:\"https://framerusercontent.com/images/Mtb9OsC3NYKRNw89ywGiiPxs.png?scale-down-to=512 512w,https://framerusercontent.com/images/Mtb9OsC3NYKRNw89ywGiiPxs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Mtb9OsC3NYKRNw89ywGiiPxs.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Mtb9OsC3NYKRNw89ywGiiPxs.png 3960w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4396.6+60+817+0+0),pixelHeight:1917,pixelWidth:3960,sizes:`min(${componentViewport?.width||\"100vw\"} - 120px, 1400px)`,src:\"https://framerusercontent.com/images/Mtb9OsC3NYKRNw89ywGiiPxs.png\",srcSet:\"https://framerusercontent.com/images/Mtb9OsC3NYKRNw89ywGiiPxs.png?scale-down-to=512 512w,https://framerusercontent.com/images/Mtb9OsC3NYKRNw89ywGiiPxs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Mtb9OsC3NYKRNw89ywGiiPxs.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Mtb9OsC3NYKRNw89ywGiiPxs.png 3960w\"},className:\"framer-gdctfl\",\"data-framer-name\":\"image\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1g4k5dg\",\"data-framer-name\":\"Frame 2147226327\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ied5jw\",\"data-framer-name\":\"Frame 2147226326\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CfKckdmnl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"48px\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:\"Your journey, our expertise\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"48px\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:\"Your journey, our expertise\"})}),className:\"framer-1sao5i\",\"data-framer-name\":\"Your journey, our expertise\",fonts:[\"GF;HK Grotesk-600\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay01MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(97, 97, 97)\"},children:\"Plan your perfect trip with a trusted travel agency. From flights and hotels to exclusive deals, we make every journey seamless and stress-free. Explore the world with confidence!\"})}),className:\"framer-sw51nw\",\"data-framer-name\":\"Plan your perfect trip with a trusted travel agency. From flights and hotels to exclusive deals, we make every journey seamless and stress-free. Explore the world with confidence!\",fonts:[\"GF;HK Grotesk-500\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Link,{href:\"https://travel.tuckapp.co/\",motionChild:true,nodeId:\"rWpIoq_Yh\",openInNewTab:true,scopeId:\"mnvLFwKli\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-z2i0iy framer-lwfrfw\",\"data-border\":true,\"data-framer-name\":\"Frame 1321319130\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay03MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Start Your Adventure\"})}),className:\"framer-1dktie\",\"data-framer-name\":\"Start Your Adventure\",fonts:[\"GF;HK Grotesk-700\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CfKckdmnl:{y:(componentViewport?.y||0)+0+8406.6},t7j3geBvS:{y:(componentViewport?.y||0)+0+5642.6},yima759nb:{y:(componentViewport?.y||0)+0+8453.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1292,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+5972.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-11jiqzh-container\",nodeId:\"OvzY7PuMf\",scopeId:\"mnvLFwKli\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CfKckdmnl:{variant:\"nZnSZxSav\"},t7j3geBvS:{variant:\"O7tfHpu5E\"},yima759nb:{variant:\"bxFBk54Dm\"}},children:/*#__PURE__*/_jsx(HotelsTabs,{height:\"100%\",id:\"OvzY7PuMf\",layoutId:\"OvzY7PuMf\",style:{width:\"100%\"},variant:\"dqAHHD4zh\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-3xjkwk\",\"data-framer-name\":\"Testimonial\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-182m5b5\",\"data-framer-name\":\"Container\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1az3vvs\",\"data-framer-name\":\"Text Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-v8f086\",\"data-framer-name\":\"Texts & Button Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jib4q9\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1e6xdi6\",\"data-framer-name\":\"Top\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CfKckdmnl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"Q1VTVE9NO0hLIEdyb3Rlc2sgRXh0cmFCb2xk\",\"--framer-font-family\":'\"HK Grotesk ExtraBold\", \"HK Grotesk ExtraBold Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"left\"},children:\"What people are saying.\"})})},t7j3geBvS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"Q1VTVE9NO0hLIEdyb3Rlc2sgRXh0cmFCb2xk\",\"--framer-font-family\":'\"HK Grotesk ExtraBold\", \"HK Grotesk ExtraBold Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"100%\"},children:\"What people are saying.\"})})},yima759nb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"Q1VTVE9NO0hLIEdyb3Rlc2sgRXh0cmFCb2xk\",\"--framer-font-family\":'\"HK Grotesk ExtraBold\", \"HK Grotesk ExtraBold Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"left\"},children:\"What people are saying.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"Q1VTVE9NO0hLIEdyb3Rlc2sgRXh0cmFCb2xk\",\"--framer-font-family\":'\"HK Grotesk ExtraBold\", \"HK Grotesk ExtraBold Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"100%\"},children:\"What people are saying.\"})}),className:\"framer-cw97gw\",\"data-framer-name\":\"Effortless Performance.\",fonts:[\"CUSTOM;HK Grotesk ExtraBold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14aiqz9\",\"data-framer-name\":\"Bottom\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CfKckdmnl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0hLIEdyb3Rlc2sgTWVkaXVt\",\"--framer-font-family\":'\"HK Grotesk Medium\", \"HK Grotesk Medium Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c1086de1-d8e0-4c0f-9396-f14825ba7d5d, rgb(28, 28, 28))\"},children:\"Our users feedback.\"})})},yima759nb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0hLIEdyb3Rlc2sgTWVkaXVt\",\"--framer-font-family\":'\"HK Grotesk Medium\", \"HK Grotesk Medium Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c1086de1-d8e0-4c0f-9396-f14825ba7d5d, rgb(28, 28, 28))\"},children:\"Our users feedback.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0hLIEdyb3Rlc2sgTWVkaXVt\",\"--framer-font-family\":'\"HK Grotesk Medium\", \"HK Grotesk Medium Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-c1086de1-d8e0-4c0f-9396-f14825ba7d5d, rgb(28, 28, 28))\"},children:\"Our users feedback.\"})}),className:\"framer-1tjsoit\",\"data-framer-name\":\"With AppName, expect nothing less than seamless and swift operations, ensuring your digital life runs smoothly.\",fonts:[\"CUSTOM;HK Grotesk Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cz4xrn hidden-1rx8816\",\"data-framer-name\":\"Button\"})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CfKckdmnl:{width:\"352px\",y:(componentViewport?.y||0)+0+9698.6+24+0+186},t7j3geBvS:{y:(componentViewport?.y||0)+0+6934.6+100+0+253},yima759nb:{y:(componentViewport?.y||0)+0+9745.6+100+0+232}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:464,width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+7264.6+100+0+263,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xsm4od-container\",nodeId:\"ddnofWw3p\",scopeId:\"mnvLFwKli\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CfKckdmnl:{variant:\"jCk6_QOkf\"}},children:/*#__PURE__*/_jsx(TestimonialCardsList,{height:\"100%\",id:\"ddnofWw3p\",layoutId:\"ddnofWw3p\",style:{width:\"100%\"},variant:\"sCe0XsC7q\",width:\"100%\"})})})})})]})}),isDisplayed()&&/*#__PURE__*/_jsx(\"header\",{className:\"framer-152wtnu hidden-1rx8816\",\"data-framer-name\":\"Header\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qjpdxq\",\"data-framer-name\":\"CTA section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wie17s\",\"data-framer-name\":\"bg\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-uv9fzw\",\"data-framer-name\":\"bg\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10z6lsw\",\"data-framer-name\":\"Mask Group\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1br8dbd\",\"data-framer-name\":\"bg\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wdixee\",\"data-framer-name\":\"Shapes\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dfx805\",\"data-border\":true,\"data-framer-name\":\"Shape\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uk48ne\",\"data-border\":true,\"data-framer-name\":\"Shape\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10xdzl8\",\"data-border\":true,\"data-framer-name\":\"Shape\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1oe0fc0\",\"data-border\":true,\"data-framer-name\":\"Shape\"})]})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kbz6qq\",\"data-framer-name\":\"Group\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yima759nb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay03MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"48px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:[\"Already interested! Download now for a \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(7, 143, 61)\"},children:\"great experience\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay03MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"48px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:[\"Already interested! Download now for a \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(7, 143, 61)\"},children:\"great experience\"})]})}),className:\"framer-o8u450\",\"data-framer-name\":\"Already interested! Download now for a great experience\",fonts:[\"GF;HK Grotesk-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-fsyvvr\",\"data-framer-name\":\"Frame 1321319080\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:56,intrinsicWidth:400,svg:'<svg width=\"400\" height=\"56\" viewBox=\"0 0 400 56\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M186.41 56H7.16962C3.22812 56 0 52.8482 0 49V7C0 3.15175 3.22812 2.95956e-06 7.16962 2.95956e-06H186.41C190.352 2.95956e-06 193.58 3.15175 193.58 7V49C193.58 52.8482 190.352 56 186.41 56Z\" fill=\"black\"/>\\n<path d=\"M186.41 1.12175C189.73 1.12175 192.431 3.759 192.431 7V49C192.431 52.241 189.73 54.8783 186.41 54.8783H7.16962C3.85009 54.8783 1.14893 52.241 1.14893 49V7C1.14893 3.759 3.85009 1.12175 7.16962 1.12175H186.41ZM186.41 2.95956e-06H7.16962C3.22812 2.95956e-06 0 3.15175 0 7V49C0 52.8482 3.22812 56 7.16962 56H186.41C190.352 56 193.58 52.8482 193.58 49V7C193.58 3.15175 190.352 2.95956e-06 186.41 2.95956e-06Z\" fill=\"#A6A6A6\"/>\\n<path d=\"M67.9931 14.3416C67.9931 15.5106 67.6346 16.4468 66.9284 17.1451C66.1164 17.9728 65.0589 18.3893 63.763 18.3893C62.5244 18.3893 61.4669 17.9658 60.5994 17.1311C59.7301 16.2841 59.2963 15.2446 59.2963 14.0003C59.2963 12.7561 59.7301 11.7166 60.5994 10.8766C61.4669 10.0348 62.5244 9.61133 63.763 9.61133C64.3796 9.61133 64.9675 9.73558 65.5285 9.96658C66.0877 10.1993 66.543 10.5143 66.8728 10.9028L66.1236 11.6413C65.5482 10.9781 64.765 10.6508 63.763 10.6508C62.8596 10.6508 62.0763 10.9588 61.4114 11.5801C60.7536 12.2031 60.4237 13.0098 60.4237 14.0003C60.4237 14.9908 60.7536 15.8046 61.4114 16.4276C62.0763 17.0418 62.8596 17.3568 63.763 17.3568C64.7219 17.3568 65.5285 17.0418 66.1648 16.4206C66.5842 16.0093 66.8226 15.4423 66.8854 14.7178H63.763V13.7063H67.9285C67.9787 13.9251 67.9931 14.1368 67.9931 14.3416Z\" fill=\"white\" stroke=\"white\" stroke-width=\"0.16\" stroke-miterlimit=\"10\"/>\\n<path d=\"M74.6017 10.834H70.6889V13.494H74.2163V14.5055H70.6889V17.1655H74.6017V18.1962H69.5812V9.80322H74.6017V10.834Z\" fill=\"white\" stroke=\"white\" stroke-width=\"0.16\" stroke-miterlimit=\"10\"/>\\n<path d=\"M79.2654 18.1962H78.1577V10.834H75.7577V9.80322H81.6672V10.834H79.2654V18.1962Z\" fill=\"white\" stroke=\"white\" stroke-width=\"0.16\" stroke-miterlimit=\"10\"/>\\n<path d=\"M85.944 18.1962V9.80322H87.0499V18.1962H85.944Z\" fill=\"white\" stroke=\"white\" stroke-width=\"0.16\" stroke-miterlimit=\"10\"/>\\n<path d=\"M91.9521 18.1962H90.8534V10.834H88.4444V9.80322H94.3611V10.834H91.9521V18.1962Z\" fill=\"white\" stroke=\"white\" stroke-width=\"0.16\" stroke-miterlimit=\"10\"/>\\n<path d=\"M105.549 17.1171C104.702 17.9658 103.651 18.3893 102.398 18.3893C101.138 18.3893 100.088 17.9658 99.2401 17.1171C98.3941 16.2701 97.9728 15.2306 97.9728 14.0003C97.9728 12.7701 98.3941 11.7306 99.2401 10.8836C100.088 10.0348 101.138 9.61133 102.398 9.61133C103.644 9.61133 104.694 10.0348 105.542 10.8906C106.395 11.7446 106.817 12.7771 106.817 14.0003C106.817 15.2306 106.395 16.2701 105.549 17.1171ZM100.059 16.4136C100.697 17.0418 101.473 17.3568 102.398 17.3568C103.316 17.3568 104.099 17.0418 104.73 16.4136C105.367 15.7853 105.689 14.9786 105.689 14.0003C105.689 13.0221 105.367 12.2153 104.73 11.5871C104.099 10.9588 103.316 10.6438 102.398 10.6438C101.473 10.6438 100.697 10.9588 100.059 11.5871C99.4229 12.2153 99.1003 13.0221 99.1003 14.0003C99.1003 14.9786 99.4229 15.7853 100.059 16.4136Z\" fill=\"white\" stroke=\"white\" stroke-width=\"0.16\" stroke-miterlimit=\"10\"/>\\n<path d=\"M108.371 18.1962V9.80322H109.715L113.895 16.3307H113.943L113.895 14.7172V9.80322H115.001V18.1962H113.846L109.469 11.3467H109.421L109.469 12.9672V18.1962H108.371Z\" fill=\"white\" stroke=\"white\" stroke-width=\"0.16\" stroke-miterlimit=\"10\"/>\\n<path d=\"M97.7004 30.4535C94.3324 30.4535 91.5811 32.956 91.5811 36.4087C91.5811 39.8335 94.3324 42.3622 97.7004 42.3622C101.075 42.3622 103.827 39.8335 103.827 36.4087C103.827 32.956 101.075 30.4535 97.7004 30.4535ZM97.7004 40.0172C95.8524 40.0172 94.2625 38.528 94.2625 36.4087C94.2625 34.2615 95.8524 32.7985 97.7004 32.7985C99.5483 32.7985 101.145 34.2615 101.145 36.4087C101.145 38.528 99.5483 40.0172 97.7004 40.0172ZM84.3487 30.4535C80.9736 30.4535 78.2295 32.956 78.2295 36.4087C78.2295 39.8335 80.9736 42.3622 84.3487 42.3622C87.722 42.3622 90.468 39.8335 90.468 36.4087C90.468 32.956 87.722 30.4535 84.3487 30.4535ZM84.3487 40.0172C82.499 40.0172 80.9037 38.528 80.9037 36.4087C80.9037 34.2615 82.499 32.7985 84.3487 32.7985C86.1967 32.7985 87.7866 34.2615 87.7866 36.4087C87.7866 38.528 86.1967 40.0172 84.3487 40.0172ZM68.4609 32.2788V34.8093H74.65C74.469 36.2233 73.9851 37.2628 73.243 37.9873C72.3396 38.8622 70.9326 39.8335 68.4609 39.8335C64.652 39.8335 61.6694 36.8323 61.6694 33.1135C61.6694 29.3948 64.652 26.3935 68.4609 26.3935C70.5203 26.3935 72.0188 27.1793 73.1247 28.1978L74.9512 26.4145C73.4043 24.9725 71.3466 23.8648 68.4609 23.8648C63.2378 23.8648 58.8482 28.014 58.8482 33.1135C58.8482 38.213 63.2378 42.3622 68.4609 42.3622C71.2839 42.3622 73.4043 41.4592 75.0713 39.7652C76.7794 38.0975 77.3118 35.7525 77.3118 33.859C77.3118 33.271 77.2616 32.7303 77.172 32.2788H68.4609ZM133.428 34.2405C132.925 32.9088 131.371 30.4535 128.205 30.4535C125.069 30.4535 122.457 32.8668 122.457 36.4087C122.457 39.7442 125.042 42.3622 128.506 42.3622C131.308 42.3622 132.925 40.6945 133.59 39.7232L131.51 38.3705C130.817 39.361 129.872 40.0172 128.506 40.0172C127.15 40.0172 126.176 39.41 125.553 38.213L133.71 34.9177L133.428 34.2405ZM125.112 36.2232C125.042 33.9272 126.938 32.7513 128.297 32.7513C129.361 32.7513 130.265 33.271 130.566 34.0148L125.112 36.2232ZM118.481 42H121.163V24.5H118.481V42ZM114.09 31.78H114C113.398 31.0835 112.249 30.4535 110.794 30.4535C107.74 30.4535 104.947 33.0715 104.947 36.428C104.947 39.7652 107.74 42.3622 110.794 42.3622C112.249 42.3622 113.398 41.727 114 41.0095H114.09V41.8635C114.09 44.1402 112.844 45.3635 110.835 45.3635C109.197 45.3635 108.181 44.2085 107.761 43.2372L105.429 44.1875C106.101 45.766 107.881 47.7085 110.835 47.7085C113.979 47.7085 116.632 45.9025 116.632 41.5082V30.8157H114.09V31.78ZM111.023 40.0172C109.175 40.0172 107.628 38.507 107.628 36.428C107.628 34.3297 109.175 32.7985 111.023 32.7985C112.844 32.7985 114.28 34.3297 114.28 36.428C114.28 38.507 112.844 40.0172 111.023 40.0172ZM145.982 24.5H139.569V42H142.243V35.3693H145.982C148.952 35.3693 151.865 33.271 151.865 29.9338C151.865 26.5983 148.945 24.5 145.982 24.5ZM146.052 32.935H142.243V26.9343H146.052C148.049 26.9343 149.189 28.553 149.189 29.9338C149.189 31.2883 148.049 32.935 146.052 32.935ZM162.584 30.4203C160.651 30.4203 158.642 31.2533 157.816 33.0995L160.189 34.0707C160.7 33.0995 161.639 32.7845 162.632 32.7845C164.019 32.7845 165.426 33.5983 165.448 35.035V35.2187C164.964 34.9458 163.928 34.5415 162.654 34.5415C160.098 34.5415 157.493 35.9153 157.493 38.479C157.493 40.824 159.587 42.3342 161.94 42.3342C163.74 42.3342 164.733 41.5415 165.356 40.6192H165.448V41.972H168.031V35.259C168.031 32.1563 165.658 30.4203 162.584 30.4203ZM162.261 40.0102C161.386 40.0102 160.167 39.5867 160.167 38.528C160.167 37.1735 161.687 36.6537 163.003 36.6537C164.181 36.6537 164.733 36.9075 165.448 37.2417C165.238 38.8622 163.81 40.0102 162.261 40.0102ZM177.441 30.8035L174.367 38.3897H174.275L171.098 30.8035H168.214L172.988 41.405L170.264 47.3042H173.058L180.416 30.8035H177.441ZM153.335 42H156.016V24.5H153.335V42Z\" fill=\"white\"/>\\n<path d=\"M14.963 10.5544C14.5417 10.9849 14.298 11.6551 14.298 12.5231V43.4841C14.298 44.3521 14.5417 45.0224 14.963 45.4529L15.0669 45.5474L32.8368 28.2049V27.7954L15.0669 10.4529L14.963 10.5544Z\" fill=\"url(#paint0_linear_5214_469)\"/>\\n<path d=\"M38.7536 33.9883L32.8369 28.2045V27.795L38.7608 22.0113L38.8934 22.0865L45.9089 25.9838C47.911 27.0898 47.911 28.9098 45.9089 30.0228L38.8934 33.913L38.7536 33.9883Z\" fill=\"url(#paint1_linear_5214_469)\"/>\\n<path d=\"M38.8934 33.913L32.8369 27.9997L14.963 45.4525C15.628 46.135 16.7124 46.2172 17.9456 45.5347L38.8934 33.913Z\" fill=\"url(#paint2_linear_5214_469)\"/>\\n<path d=\"M38.8934 22.0868L17.9456 10.465C16.7124 9.78951 15.628 9.87175 14.963 10.5543L32.8369 28L38.8934 22.0868Z\" fill=\"url(#paint3_linear_5214_469)\"/>\\n<path d=\"M398.349 49.5418C398.349 52.5261 395.881 54.9434 392.829 54.9434H212.184C209.133 54.9434 206.657 52.5261 206.657 49.5418V6.46535C206.657 3.48245 209.133 1.05664 212.184 1.05664H392.828C395.881 1.05664 398.348 3.48245 398.348 6.46535L398.349 49.5418Z\" fill=\"black\"/>\\n<path d=\"M392.246 1.12175C395.57 1.12175 398.275 3.759 398.275 7V49C398.275 52.241 395.57 54.8783 392.246 54.8783H212.759C209.435 54.8783 206.73 52.241 206.73 49V7C206.73 3.759 209.435 1.12175 212.759 1.12175H392.246ZM392.246 2.95956e-06H212.759C208.812 2.95956e-06 205.58 3.15175 205.58 7V49C205.58 52.8482 208.812 56 212.759 56H392.246C396.193 56 399.426 52.8482 399.426 49V7C399.426 3.15175 396.193 2.95956e-06 392.246 2.95956e-06Z\" fill=\"#A6A6A6\"/>\\n<path d=\"M248.84 27.6974C248.799 23.1852 252.63 20.99 252.805 20.8878C250.635 17.8036 247.272 17.3822 246.091 17.3486C243.266 17.0588 240.527 18.9964 239.088 18.9964C237.62 18.9964 235.405 17.3766 233.017 17.4242C229.944 17.4704 227.069 19.205 225.493 21.8986C222.239 27.3908 224.666 35.4618 227.783 39.9012C229.342 42.0754 231.165 44.503 233.55 44.4176C235.883 44.3238 236.754 42.9672 239.57 42.9672C242.36 42.9672 243.179 44.4176 245.611 44.363C248.115 44.3238 249.692 42.179 251.197 39.9852C252.999 37.4932 253.722 35.039 253.751 34.913C253.692 34.8934 248.888 33.1056 248.84 27.6974Z\" fill=\"white\"/>\\n<path d=\"M244.246 14.4282C245.501 12.898 246.359 10.8162 246.121 8.70361C244.304 8.78201 242.033 9.92861 240.725 11.4252C239.567 12.744 238.534 14.9056 238.801 16.9384C240.841 17.0868 242.936 15.9346 244.246 14.4282Z\" fill=\"white\"/>\\n<path d=\"M282.608 44.1053H279.347L277.561 38.6327H271.352L269.651 44.1053H266.476L272.627 25.4741H276.427L282.608 44.1053ZM277.023 36.3367L275.407 31.4717C275.236 30.9747 274.916 29.8043 274.444 27.9619H274.386C274.198 28.7543 273.895 29.9247 273.479 31.4717L271.892 36.3367H277.023Z\" fill=\"white\"/>\\n<path d=\"M298.428 37.2228C298.428 39.5076 297.794 41.3136 296.528 42.6394C295.394 43.8196 293.985 44.409 292.304 44.409C290.489 44.409 289.185 43.7734 288.391 42.5022H288.333V49.5792H285.272V35.0934C285.272 33.657 285.233 32.1828 285.159 30.6708H287.851L288.022 32.8002H288.079C289.1 31.1958 290.649 30.395 292.729 30.395C294.354 30.395 295.711 31.0208 296.797 32.2738C297.885 33.5282 298.428 35.1774 298.428 37.2228ZM295.309 37.332C295.309 36.0244 295.007 34.9464 294.401 34.098C293.739 33.2132 292.851 32.7708 291.736 32.7708C290.981 32.7708 290.295 33.0172 289.682 33.503C289.067 33.993 288.665 34.6328 288.477 35.4252C288.382 35.7948 288.335 36.0972 288.335 36.3352V38.5752C288.335 39.5524 288.642 40.377 289.257 41.0504C289.871 41.7238 290.67 42.0598 291.652 42.0598C292.805 42.0598 293.702 41.6258 294.344 40.7606C294.987 39.894 295.309 38.7516 295.309 37.332Z\" fill=\"white\"/>\\n<path d=\"M314.276 37.2228C314.276 39.5076 313.642 41.3136 312.375 42.6394C311.242 43.8196 309.833 44.409 308.152 44.409C306.337 44.409 305.033 43.7734 304.24 42.5022H304.183V49.5792H301.121V35.0934C301.121 33.657 301.083 32.1828 301.008 30.6708H303.7L303.871 32.8002H303.929C304.948 31.1958 306.497 30.395 308.578 30.395C310.202 30.395 311.559 31.0208 312.647 32.2738C313.731 33.5282 314.276 35.1774 314.276 37.2228ZM311.157 37.332C311.157 36.0244 310.854 34.9464 310.248 34.098C309.586 33.2132 308.7 32.7708 307.584 32.7708C306.828 32.7708 306.143 33.0172 305.528 33.503C304.914 33.993 304.513 34.6328 304.325 35.4252C304.232 35.7948 304.183 36.0972 304.183 36.3352V38.5752C304.183 39.5524 304.49 40.377 305.102 41.0504C305.716 41.7224 306.515 42.0598 307.5 42.0598C308.653 42.0598 309.55 41.6258 310.192 40.7606C310.835 39.894 311.157 38.7516 311.157 37.332Z\" fill=\"white\"/>\\n<path d=\"M331.995 38.8806C331.995 40.4654 331.43 41.7548 330.297 42.7502C329.053 43.838 327.319 44.3812 325.092 44.3812C323.036 44.3812 321.388 43.9948 320.14 43.2206L320.849 40.7328C322.193 41.5252 323.668 41.9228 325.275 41.9228C326.428 41.9228 327.325 41.668 327.97 41.1612C328.612 40.6544 328.932 39.974 328.932 39.1256C328.932 38.3696 328.668 37.7326 328.138 37.216C327.611 36.6994 326.731 36.2192 325.502 35.7754C322.156 34.5588 320.485 32.7766 320.485 30.433C320.485 28.9014 321.07 27.6456 322.243 26.6684C323.412 25.6898 324.972 25.2012 326.922 25.2012C328.661 25.2012 330.105 25.4966 331.258 26.086L330.493 28.5192C329.416 27.948 328.198 27.6624 326.835 27.6624C325.759 27.6624 324.917 27.9214 324.314 28.4366C323.804 28.8972 323.549 29.4586 323.549 30.1236C323.549 30.86 323.84 31.469 324.426 31.9478C324.936 32.3902 325.862 32.869 327.206 33.3856C328.85 34.031 330.058 34.7856 330.834 35.6508C331.608 36.5132 331.995 37.5926 331.995 38.8806Z\" fill=\"white\"/>\\n<path d=\"M342.116 32.9106H338.742V39.4332C338.742 41.0922 339.336 41.921 340.528 41.921C341.075 41.921 341.529 41.8748 341.888 41.7824L341.973 44.049C341.37 44.2688 340.576 44.3794 339.592 44.3794C338.383 44.3794 337.438 44.0196 336.756 43.3014C336.077 42.5818 335.735 41.375 335.735 39.6796V32.9078H333.725V30.6678H335.735V28.208L338.742 27.3232V30.6678H342.116V32.9106Z\" fill=\"white\"/>\\n<path d=\"M357.341 37.2775C357.341 39.3425 356.735 41.0379 355.526 42.3637C354.258 43.7287 352.575 44.4091 350.478 44.4091C348.456 44.4091 346.846 43.7553 345.646 42.4477C344.445 41.1401 343.845 39.4895 343.845 37.5001C343.845 35.4183 344.463 33.7131 345.702 32.3873C346.938 31.0601 348.607 30.3965 350.704 30.3965C352.726 30.3965 354.353 31.0503 355.581 32.3593C356.755 33.6291 357.341 35.2685 357.341 37.2775ZM354.165 37.3741C354.165 36.1351 353.893 35.0725 353.344 34.1863C352.702 33.1139 351.784 32.5791 350.595 32.5791C349.365 32.5791 348.43 33.1153 347.788 34.1863C347.238 35.0739 346.967 36.1533 346.967 37.4301C346.967 38.6691 347.238 39.7317 347.788 40.6165C348.45 41.6889 349.375 42.2237 350.568 42.2237C351.737 42.2237 352.654 41.6777 353.316 40.5885C353.881 39.6855 354.165 38.6117 354.165 37.3741Z\" fill=\"white\"/>\\n<path d=\"M367.292 33.2958C366.989 33.2412 366.666 33.2132 366.327 33.2132C365.25 33.2132 364.417 33.6094 363.831 34.4032C363.322 35.1032 363.066 35.988 363.066 37.0562V44.1052H360.006L360.035 34.9016C360.035 33.3532 359.996 31.9434 359.92 30.6722H362.586L362.698 33.2426H362.783C363.106 32.3592 363.616 31.648 364.314 31.1146C364.996 30.6344 365.733 30.395 366.527 30.395C366.809 30.395 367.065 30.4146 367.292 30.4496V33.2958Z\" fill=\"white\"/>\\n<path d=\"M380.983 36.7527C380.983 37.2875 380.947 37.7383 380.871 38.1065H371.687C371.723 39.4337 372.167 40.4487 373.02 41.1487C373.794 41.7745 374.794 42.0881 376.024 42.0881C377.383 42.0881 378.624 41.8767 379.74 41.4525L380.219 43.5245C378.915 44.0789 377.376 44.3547 375.6 44.3547C373.463 44.3547 371.786 43.7415 370.566 42.5165C369.348 41.2915 368.738 39.6465 368.738 37.5829C368.738 35.5571 369.305 33.8701 370.441 32.5247C371.63 31.0883 373.237 30.3701 375.258 30.3701C377.244 30.3701 378.747 31.0883 379.768 32.5247C380.577 33.6657 380.983 35.0769 380.983 36.7527ZM378.064 35.9785C378.084 35.0937 377.885 34.3293 377.47 33.6839C376.94 32.8537 376.126 32.4393 375.03 32.4393C374.029 32.4393 373.215 32.8439 372.593 33.6559C372.083 34.3013 371.781 35.0755 371.687 35.9771H378.064V35.9785Z\" fill=\"white\"/>\\n<path d=\"M276.011 14.0122C276.011 15.66 275.504 16.9004 274.491 17.7334C273.554 18.502 272.221 18.887 270.495 18.887C269.639 18.887 268.907 18.8506 268.294 18.7778V9.77438C269.094 9.64838 269.955 9.58398 270.886 9.58398C272.53 9.58398 273.769 9.93258 274.605 10.6298C275.541 11.418 276.011 12.545 276.011 14.0122ZM274.424 14.0528C274.424 12.9846 274.134 12.1656 273.554 11.5944C272.974 11.0246 272.126 10.739 271.011 10.739C270.537 10.739 270.133 10.7698 269.799 10.8342V17.6788C269.984 17.7068 270.323 17.7194 270.815 17.7194C271.967 17.7194 272.856 17.4072 273.482 16.7828C274.108 16.1584 274.424 15.2484 274.424 14.0528Z\" fill=\"white\"/>\\n<path d=\"M284.423 15.4519C284.423 16.4669 284.126 17.2985 283.532 17.9509C282.909 18.6215 282.083 18.9561 281.052 18.9561C280.058 18.9561 279.267 18.6355 278.677 17.9915C278.088 17.3489 277.794 16.5383 277.794 15.5611C277.794 14.5391 278.097 13.7005 278.706 13.0495C279.315 12.3985 280.133 12.0723 281.164 12.0723C282.158 12.0723 282.956 12.3929 283.561 13.0355C284.135 13.6599 284.423 14.4663 284.423 15.4519ZM282.863 15.4995C282.863 14.8905 282.728 14.3683 282.459 13.9329C282.143 13.4065 281.694 13.1433 281.109 13.1433C280.505 13.1433 280.045 13.4065 279.73 13.9329C279.46 14.3683 279.326 14.8989 279.326 15.5261C279.326 16.1351 279.461 16.6573 279.73 17.0927C280.055 17.6191 280.509 17.8823 281.095 17.8823C281.669 17.8823 282.12 17.6149 282.445 17.0787C282.723 16.6349 282.863 16.1085 282.863 15.4995Z\" fill=\"white\"/>\\n<path d=\"M295.704 12.2065L293.586 18.8061H292.207L291.33 15.9403C291.108 15.2249 290.927 14.5137 290.786 13.8081H290.759C290.628 14.5333 290.447 15.2431 290.214 15.9403L289.283 18.8061H287.888L285.897 12.2065H287.443L288.208 15.3439C288.394 16.0859 288.546 16.7929 288.668 17.4621H288.695C288.807 16.9105 288.992 16.2077 289.254 15.3579L290.214 12.2079H291.441L292.361 15.2907C292.584 16.0425 292.765 16.7663 292.904 17.4635H292.945C293.047 16.7845 293.201 16.0607 293.405 15.2907L294.226 12.2079H295.704V12.2065Z\" fill=\"white\"/>\\n<path d=\"M303.505 18.8061H302V15.0261C302 13.8613 301.547 13.2789 300.636 13.2789C300.19 13.2789 299.829 13.4385 299.549 13.7591C299.272 14.0797 299.131 14.4577 299.131 14.8903V18.8047H297.627V14.0923C297.627 13.5127 297.608 12.8841 297.572 12.2037H298.894L298.965 13.2355H299.006C299.182 12.9149 299.443 12.6503 299.786 12.4389C300.194 12.1925 300.651 12.0679 301.15 12.0679C301.782 12.0679 302.308 12.2667 302.725 12.6657C303.245 13.1543 303.505 13.8837 303.505 14.8525V18.8061Z\" fill=\"white\"/>\\n<path d=\"M307.655 18.806H306.151V9.17822H307.655V18.806Z\" fill=\"white\"/>\\n<path d=\"M316.514 15.4519C316.514 16.4669 316.217 17.2985 315.623 17.9509C314.999 18.6215 314.172 18.9561 313.143 18.9561C312.148 18.9561 311.357 18.6355 310.768 17.9915C310.179 17.3489 309.885 16.5383 309.885 15.5611C309.885 14.5391 310.188 13.7005 310.797 13.0495C311.405 12.3985 312.224 12.0723 313.253 12.0723C314.248 12.0723 315.045 12.3929 315.651 13.0355C316.226 13.6599 316.514 14.4663 316.514 15.4519ZM314.952 15.4995C314.952 14.8905 314.817 14.3683 314.549 13.9329C314.234 13.4065 313.783 13.1433 313.2 13.1433C312.594 13.1433 312.135 13.4065 311.82 13.9329C311.55 14.3683 311.417 14.8989 311.417 15.5261C311.417 16.1351 311.552 16.6573 311.82 17.0927C312.146 17.6191 312.6 17.8823 313.186 17.8823C313.76 17.8823 314.21 17.6149 314.534 17.0787C314.814 16.6349 314.952 16.1085 314.952 15.4995Z\" fill=\"white\"/>\\n<path d=\"M323.797 18.8063H322.446L322.334 18.0461H322.292C321.83 18.6523 321.171 18.9561 320.315 18.9561C319.676 18.9561 319.159 18.7559 318.77 18.3583C318.417 17.9971 318.24 17.5477 318.24 17.0143C318.24 16.2079 318.585 15.5933 319.278 15.1677C319.97 14.7421 320.944 14.5335 322.198 14.5433V14.4201C322.198 13.5507 321.729 13.1167 320.792 13.1167C320.124 13.1167 319.535 13.2805 319.027 13.6053L318.721 12.6421C319.35 12.2627 320.127 12.0723 321.043 12.0723C322.812 12.0723 323.7 12.9823 323.7 14.8023V17.2327C323.7 17.8921 323.733 18.4171 323.797 18.8063ZM322.235 16.5383V15.5205C320.575 15.4925 319.745 15.9363 319.745 16.8505C319.745 17.1949 319.84 17.4525 320.034 17.6247C320.228 17.7969 320.474 17.8823 320.769 17.8823C321.099 17.8823 321.408 17.7801 321.689 17.5771C321.972 17.3727 322.146 17.1137 322.21 16.7959C322.226 16.7245 322.235 16.6377 322.235 16.5383Z\" fill=\"white\"/>\\n<path d=\"M332.348 18.806H331.013L330.942 17.7462H330.901C330.474 18.5526 329.748 18.9558 328.727 18.9558C327.911 18.9558 327.232 18.6436 326.693 18.0192C326.155 17.3948 325.886 16.5842 325.886 15.5888C325.886 14.5206 326.178 13.6554 326.764 12.9946C327.331 12.3786 328.026 12.0706 328.853 12.0706C329.762 12.0706 330.398 12.3688 330.76 12.9666H330.789V9.17822H332.295V17.028C332.295 17.6706 332.312 18.2628 332.348 18.806ZM330.789 16.0228V14.9224C330.789 14.732 330.774 14.578 330.747 14.4604C330.662 14.1076 330.48 13.8108 330.203 13.5714C329.923 13.332 329.585 13.2116 329.196 13.2116C328.635 13.2116 328.195 13.4286 327.872 13.864C327.552 14.2994 327.39 14.8552 327.39 15.5342C327.39 16.1866 327.543 16.7158 327.852 17.1232C328.178 17.5572 328.617 17.7742 329.167 17.7742C329.661 17.7742 330.056 17.5936 330.356 17.231C330.646 16.8964 330.789 16.4932 330.789 16.0228Z\" fill=\"white\"/>\\n<path d=\"M345.218 15.4519C345.218 16.4669 344.921 17.2985 344.326 17.9509C343.703 18.6215 342.879 18.9561 341.846 18.9561C340.854 18.9561 340.063 18.6355 339.471 17.9915C338.883 17.3489 338.588 16.5383 338.588 15.5611C338.588 14.5391 338.891 13.7005 339.5 13.0495C340.109 12.3985 340.927 12.0723 341.96 12.0723C342.952 12.0723 343.752 12.3929 344.355 13.0355C344.929 13.6599 345.218 14.4663 345.218 15.4519ZM343.658 15.4995C343.658 14.8905 343.523 14.3683 343.255 13.9329C342.938 13.4065 342.49 13.1433 341.904 13.1433C341.301 13.1433 340.841 13.4065 340.524 13.9329C340.254 14.3683 340.12 14.8989 340.12 15.5261C340.12 16.1351 340.255 16.6573 340.524 17.0927C340.85 17.6191 341.304 17.8823 341.889 17.8823C342.464 17.8823 342.916 17.6149 343.241 17.0787C343.518 16.6349 343.658 16.1085 343.658 15.4995Z\" fill=\"white\"/>\\n<path d=\"M353.309 18.8061H351.806V15.0261C351.806 13.8613 351.352 13.2789 350.44 13.2789C349.994 13.2789 349.633 13.4385 349.355 13.7591C349.076 14.0797 348.937 14.4577 348.937 14.8903V18.8047H347.431V14.0923C347.431 13.5127 347.413 12.8841 347.378 12.2037H348.699L348.769 13.2355H348.811C348.987 12.9149 349.248 12.6503 349.59 12.4389C349.999 12.1925 350.455 12.0679 350.956 12.0679C351.586 12.0679 352.112 12.2667 352.529 12.6657C353.051 13.1543 353.309 13.8837 353.309 14.8525V18.8061Z\" fill=\"white\"/>\\n<path d=\"M363.437 13.3056H361.78V16.5116C361.78 17.3264 362.074 17.7338 362.657 17.7338C362.927 17.7338 363.151 17.7114 363.327 17.6652L363.366 18.7782C363.069 18.8874 362.678 18.942 362.197 18.942C361.603 18.942 361.141 18.7656 360.806 18.4128C360.47 18.06 360.303 17.4664 360.303 16.6334V13.3056H359.314V12.2066H360.303V10.997L361.778 10.563V12.2052H363.435V13.3056H363.437Z\" fill=\"white\"/>\\n<path d=\"M371.403 18.806H369.897V15.054C369.897 13.871 369.443 13.2788 368.534 13.2788C367.836 13.2788 367.359 13.6218 367.098 14.3078C367.054 14.452 367.028 14.6284 367.028 14.8356V18.8046H365.524V9.17822H367.028V13.1556H367.056C367.53 12.4318 368.209 12.0706 369.09 12.0706C369.713 12.0706 370.228 12.2694 370.638 12.6684C371.147 13.1654 371.403 13.9046 371.403 14.8818V18.806Z\" fill=\"white\"/>\\n<path d=\"M379.621 15.1942C379.621 15.4574 379.6 15.6786 379.565 15.8592H375.052C375.072 16.5116 375.287 17.0086 375.705 17.353C376.087 17.661 376.579 17.815 377.182 17.815C377.85 17.815 378.459 17.7114 379.007 17.5028L379.243 18.522C378.601 18.7936 377.846 18.9294 376.971 18.9294C375.923 18.9294 375.097 18.6284 374.5 18.0264C373.9 17.4244 373.603 16.6166 373.603 15.603C373.603 14.6076 373.88 13.7788 374.438 13.118C375.021 12.4124 375.81 12.0596 376.805 12.0596C377.778 12.0596 378.518 12.4124 379.017 13.118C379.421 13.678 379.621 14.371 379.621 15.1942ZM378.185 14.8148C378.196 14.3794 378.097 14.0042 377.893 13.6878C377.632 13.2804 377.234 13.076 376.696 13.076C376.205 13.076 375.804 13.2748 375.498 13.6738C375.248 13.9916 375.1 14.371 375.052 14.8148H378.185Z\" fill=\"white\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_5214_469\" x1=\"31.2591\" y1=\"43.8065\" x2=\"7.77043\" y2=\"19.7488\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#00A0FF\"/>\\n<stop offset=\"0.0066\" stop-color=\"#00A1FF\"/>\\n<stop offset=\"0.2601\" stop-color=\"#00BEFF\"/>\\n<stop offset=\"0.5122\" stop-color=\"#00D2FF\"/>\\n<stop offset=\"0.7604\" stop-color=\"#00DFFF\"/>\\n<stop offset=\"1\" stop-color=\"#00E3FF\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_5214_469\" x1=\"48.5159\" y1=\"27.9978\" x2=\"13.8194\" y2=\"27.9978\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FFE000\"/>\\n<stop offset=\"0.4087\" stop-color=\"#FFBD00\"/>\\n<stop offset=\"0.7754\" stop-color=\"#FFA500\"/>\\n<stop offset=\"1\" stop-color=\"#FF9C00\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_5214_469\" x1=\"35.6\" y1=\"24.7852\" x2=\"3.74755\" y2=\"-7.83913\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF3A44\"/>\\n<stop offset=\"1\" stop-color=\"#C31162\"/>\\n</linearGradient>\\n<linearGradient id=\"paint3_linear_5214_469\" x1=\"10.4638\" y1=\"55.7533\" x2=\"24.6874\" y2=\"41.1852\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#32A071\"/>\\n<stop offset=\"0.0685\" stop-color=\"#2DA771\"/>\\n<stop offset=\"0.4762\" stop-color=\"#15CF74\"/>\\n<stop offset=\"0.8009\" stop-color=\"#06E775\"/>\\n<stop offset=\"1\" stop-color=\"#00F076\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1c77cvk\",\"data-framer-name\":\"Vector 183\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:159,intrinsicWidth:207,svg:'<svg width=\"207\" height=\"159\" viewBox=\"-2 -2 207 159\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M141.427 7.22029C141.427 7.22029 204.326 34.6183 184.504 55.0536C172.567 67.3606 155.148 77.2746 137.953 72.0136C127.591 68.8431 120.731 63.6112 125.909 55.5037C130.912 47.672 141.942 44.9043 153.127 45.6964C180.985 47.6692 185.593 78.2978 169.4 96.6107C152.167 116.1 100.861 124.449 87.9055 106.057C83.5609 99.8891 80.286 91.5197 88.0641 86.0808C96.0356 80.5067 108.038 84.0259 113.377 89.9289C119.725 96.9491 115.303 116.91 100.758 129.846C79.7245 148.553 20.2295 141.457 20.2295 141.457M20.2295 141.457L36.7486 152.041M20.2295 141.457L38.6685 132.517\" stroke=\"#078F3D\" stroke-width=\"3\" stroke-miterlimit=\"16\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qf25ml hidden-1hf96d0 hidden-1rwgbeg hidden-1ar30zc\",\"data-framer-name\":\"CTA section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xcuns6\",\"data-framer-name\":\"bg\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-uyhjvy\",\"data-framer-name\":\"bg\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1k1yyi\",\"data-framer-name\":\"Mask Group\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ygljsj\",\"data-framer-name\":\"bg\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-194hxz\",\"data-framer-name\":\"Shapes\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ki8jgy\",\"data-border\":true,\"data-framer-name\":\"Shape\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qu31ua\",\"data-border\":true,\"data-framer-name\":\"Shape\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-vtosx8\",\"data-border\":true,\"data-framer-name\":\"Shape\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-m7gno9\",\"data-border\":true,\"data-framer-name\":\"Shape\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9fr9sj\",\"data-framer-name\":\"Group 1171279766\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1k6byqa\",\"data-framer-name\":\"Vector 183\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:98,intrinsicWidth:70,style:{rotate:25},svg:'<svg width=\"70\" height=\"98\" viewBox=\"-1 -1 70 98\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M7.53014 19.3763C7.53014 19.3763 28.5281 -5.91175 34.9931 6.18681C38.8866 13.4731 40.9478 22.9624 36.2107 30.1918C33.356 34.5484 30.0561 36.9879 27.121 33.4338C24.2858 30.0005 24.5603 24.4903 26.4581 19.414C31.1848 6.77062 45.6038 8.98391 51.6138 19.0973C58.01 29.8606 54.697 54.8478 44.6346 58.2455C41.2602 59.3848 37.0424 59.7152 35.6665 55.3342C34.2565 50.8443 37.4943 45.776 40.8865 44.138C44.9207 42.19 53.2943 47.0774 57.1115 55.6622C62.6319 68.0775 51.2398 94.6699 51.2398 94.6699M51.2398 94.6699L58.2796 88.5101M51.2398 94.6699L49.7574 84.8459\" stroke=\"#078F3D\" stroke-width=\"1.5\" stroke-miterlimit=\"16\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-y2im1f\",\"data-framer-name\":\"Frame 2147226388\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SEsgR3JvdGVzay03MDA=\",\"--framer-font-family\":'\"HK Grotesk\", \"HK Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(28, 28, 28)\"},children:[\"Already interested! Download now for a \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(7, 143, 61)\"},children:\"great experience\"})]})}),className:\"framer-1qkh7yo\",\"data-framer-name\":\"Already interested! Download now for a great experience\",fonts:[\"GF;HK Grotesk-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-oqk0v6\",\"data-framer-name\":\"Frame 1321319079\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:42,intrinsicWidth:289,svg:'<svg width=\"289\" height=\"42\" viewBox=\"0 0 289 42\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M133.284 41.2993H5.25482C2.43947 41.2993 0.133667 39.0481 0.133667 36.2993V6.29932C0.133667 3.55057 2.43947 1.29932 5.25482 1.29932H133.284C136.099 1.29932 138.405 3.55057 138.405 6.29932V36.2993C138.405 39.0481 136.099 41.2993 133.284 41.2993Z\" fill=\"black\"/>\\n<path d=\"M133.284 2.10057C135.655 2.10057 137.584 3.98432 137.584 6.29932V36.2993C137.584 38.6143 135.655 40.4981 133.284 40.4981H5.25482C2.88373 40.4981 0.954332 38.6143 0.954332 36.2993V6.29932C0.954332 3.98432 2.88373 2.10057 5.25482 2.10057H133.284ZM133.284 1.29932H5.25482C2.43947 1.29932 0.133667 3.55057 0.133667 6.29932V36.2993C0.133667 39.0481 2.43947 41.2993 5.25482 41.2993H133.284C136.099 41.2993 138.405 39.0481 138.405 36.2993V6.29932C138.405 3.55057 136.099 1.29932 133.284 1.29932Z\" fill=\"#A6A6A6\"/>\\n<path d=\"M48.7001 11.5433C48.7001 12.3783 48.4441 13.0471 47.9396 13.5458C47.3597 14.1371 46.6043 14.4345 45.6786 14.4345C44.794 14.4345 44.0386 14.132 43.4189 13.5358C42.798 12.9308 42.4882 12.1883 42.4882 11.2996C42.4882 10.4108 42.798 9.6683 43.4189 9.0683C44.0386 8.46705 44.794 8.16455 45.6786 8.16455C46.1191 8.16455 46.539 8.2533 46.9397 8.4183C47.3392 8.58455 47.6644 8.80955 47.8999 9.08705L47.3648 9.61455C46.9538 9.1408 46.3943 8.90705 45.6786 8.90705C45.0334 8.90705 44.4739 9.12705 43.9989 9.5708C43.529 10.0158 43.2935 10.5921 43.2935 11.2996C43.2935 12.0071 43.529 12.5883 43.9989 13.0333C44.4739 13.472 45.0334 13.697 45.6786 13.697C46.3636 13.697 46.9397 13.472 47.3942 13.0283C47.6938 12.7345 47.8641 12.3295 47.9089 11.8121H45.6786V11.0896H48.654C48.6899 11.2458 48.7001 11.397 48.7001 11.5433Z\" fill=\"white\" stroke=\"white\" stroke-width=\"0.115104\" stroke-miterlimit=\"10\"/>\\n<path d=\"M53.4207 9.03703H50.6258V10.937H53.1454V11.6595H50.6258V13.5595H53.4207V14.2958H49.8346V8.30078H53.4207V9.03703Z\" fill=\"white\" stroke=\"white\" stroke-width=\"0.115104\" stroke-miterlimit=\"10\"/>\\n<path d=\"M56.7519 14.2958H55.9606V9.03703H54.2463V8.30078H58.4674V9.03703H56.7519V14.2958Z\" fill=\"white\" stroke=\"white\" stroke-width=\"0.115104\" stroke-miterlimit=\"10\"/>\\n<path d=\"M61.5222 14.2958V8.30078H62.3122V14.2958H61.5222Z\" fill=\"white\" stroke=\"white\" stroke-width=\"0.115104\" stroke-miterlimit=\"10\"/>\\n<path d=\"M65.8135 14.2958H65.0287V9.03703H63.308V8.30078H67.5342V9.03703H65.8135V14.2958Z\" fill=\"white\" stroke=\"white\" stroke-width=\"0.115104\" stroke-miterlimit=\"10\"/>\\n<path d=\"M75.526 13.5258C74.9205 14.132 74.1702 14.4345 73.2753 14.4345C72.3752 14.4345 71.625 14.132 71.0194 13.5258C70.4151 12.9208 70.1143 12.1783 70.1143 11.2996C70.1143 10.4208 70.4151 9.6783 71.0194 9.0733C71.625 8.46705 72.3752 8.16455 73.2753 8.16455C74.1651 8.16455 74.9153 8.46705 75.5209 9.0783C76.1303 9.6883 76.4312 10.4258 76.4312 11.2996C76.4312 12.1783 76.1303 12.9208 75.526 13.5258ZM71.6045 13.0233C72.0603 13.472 72.6147 13.697 73.2753 13.697C73.9308 13.697 74.4903 13.472 74.9409 13.0233C75.3955 12.5745 75.6259 11.9983 75.6259 11.2996C75.6259 10.6008 75.3955 10.0246 74.9409 9.5758C74.4903 9.12705 73.9308 8.90205 73.2753 8.90205C72.6147 8.90205 72.0603 9.12705 71.6045 9.5758C71.15 10.0246 70.9196 10.6008 70.9196 11.2996C70.9196 11.9983 71.15 12.5745 71.6045 13.0233Z\" fill=\"white\" stroke=\"white\" stroke-width=\"0.115104\" stroke-miterlimit=\"10\"/>\\n<path d=\"M77.5413 14.2958V8.30078H78.5015L81.4871 12.9633H81.5217L81.4871 11.8108V8.30078H82.2771V14.2958H81.4525L78.3261 9.40328H78.2915L78.3261 10.5608V14.2958H77.5413Z\" fill=\"white\" stroke=\"white\" stroke-width=\"0.115104\" stroke-miterlimit=\"10\"/>\\n<path d=\"M69.9196 23.051C67.514 23.051 65.5487 24.8385 65.5487 27.3047C65.5487 29.751 67.514 31.5572 69.9196 31.5572C72.3304 31.5572 74.2957 29.751 74.2957 27.3047C74.2957 24.8385 72.3304 23.051 69.9196 23.051ZM69.9196 29.8822C68.5996 29.8822 67.464 28.8185 67.464 27.3047C67.464 25.771 68.5996 24.726 69.9196 24.726C71.2396 24.726 72.3803 25.771 72.3803 27.3047C72.3803 28.8185 71.2396 29.8822 69.9196 29.8822ZM60.3828 23.051C57.972 23.051 56.0119 24.8385 56.0119 27.3047C56.0119 29.751 57.972 31.5572 60.3828 31.5572C62.7923 31.5572 64.7537 29.751 64.7537 27.3047C64.7537 24.8385 62.7923 23.051 60.3828 23.051ZM60.3828 29.8822C59.0615 29.8822 57.922 28.8185 57.922 27.3047C57.922 25.771 59.0615 24.726 60.3828 24.726C61.7027 24.726 62.8384 25.771 62.8384 27.3047C62.8384 28.8185 61.7027 29.8822 60.3828 29.8822ZM49.0343 24.3547V26.1622H53.4551C53.3258 27.1722 52.9801 27.9147 52.4501 28.4322C51.8048 29.0572 50.7998 29.751 49.0343 29.751C46.3137 29.751 44.1833 27.6072 44.1833 24.951C44.1833 22.2947 46.3137 20.151 49.0343 20.151C50.5053 20.151 51.5757 20.7122 52.3656 21.4397L53.6702 20.166C52.5653 19.136 51.0955 18.3447 49.0343 18.3447C45.3035 18.3447 42.1681 21.3085 42.1681 24.951C42.1681 28.5935 45.3035 31.5572 49.0343 31.5572C51.0507 31.5572 52.5653 30.9122 53.756 29.7022C54.9761 28.511 55.3563 26.836 55.3563 25.4835C55.3563 25.0635 55.3205 24.6772 55.2565 24.3547H49.0343ZM95.4396 25.756C95.0799 24.8047 93.9699 23.051 91.7089 23.051C89.4684 23.051 87.603 24.7747 87.603 27.3047C87.603 29.6872 89.4492 31.5572 91.9239 31.5572C93.925 31.5572 95.0799 30.366 95.5548 29.6722L94.0697 28.706C93.5742 29.4135 92.8995 29.8822 91.9239 29.8822C90.9548 29.8822 90.2596 29.4485 89.814 28.5935L95.6406 26.2397L95.4396 25.756ZM89.4991 27.1722C89.4492 25.5322 90.8037 24.6922 91.7742 24.6922C92.5347 24.6922 93.1799 25.0635 93.395 25.5947L89.4991 27.1722ZM84.7633 31.2985H86.6786V18.7985H84.7633V31.2985ZM81.6266 23.9985H81.5626C81.1324 23.501 80.3117 23.051 79.2721 23.051C77.0905 23.051 75.0958 24.921 75.0958 27.3185C75.0958 29.7022 77.0905 31.5572 79.2721 31.5572C80.3117 31.5572 81.1324 31.1035 81.5626 30.591H81.6266V31.201C81.6266 32.8272 80.7368 33.701 79.3016 33.701C78.1314 33.701 77.4055 32.876 77.1059 32.1822L75.4402 32.861C75.9203 33.9885 77.1917 35.376 79.3016 35.376C81.5472 35.376 83.442 34.086 83.442 30.9472V23.3097H81.6266V23.9985ZM79.436 29.8822C78.116 29.8822 77.0111 28.8035 77.0111 27.3185C77.0111 25.8197 78.116 24.726 79.436 24.726C80.7368 24.726 81.7623 25.8197 81.7623 27.3185C81.7623 28.8035 80.7368 29.8822 79.436 29.8822ZM104.407 18.7985H99.8259V31.2985H101.736V26.5622H104.407C106.528 26.5622 108.609 25.0635 108.609 22.6797C108.609 20.2972 106.523 18.7985 104.407 18.7985ZM104.457 24.8235H101.736V20.5372H104.457C105.883 20.5372 106.697 21.6935 106.697 22.6797C106.697 23.6472 105.883 24.8235 104.457 24.8235ZM116.265 23.0272C114.885 23.0272 113.449 23.6222 112.859 24.941L114.554 25.6347C114.919 24.941 115.59 24.716 116.299 24.716C117.29 24.716 118.295 25.2972 118.311 26.3235V26.4547C117.965 26.2597 117.225 25.971 116.315 25.971C114.489 25.971 112.629 26.9522 112.629 28.7835C112.629 30.4585 114.124 31.5372 115.805 31.5372C117.091 31.5372 117.8 30.971 118.245 30.3122H118.311V31.2785H120.156V26.4835C120.156 24.2672 118.46 23.0272 116.265 23.0272ZM116.034 29.8772C115.41 29.8772 114.539 29.5747 114.539 28.8185C114.539 27.851 115.625 27.4797 116.564 27.4797C117.406 27.4797 117.8 27.661 118.311 27.8997C118.161 29.0572 117.141 29.8772 116.034 29.8772ZM126.877 23.301L124.681 28.7197H124.616L122.346 23.301H120.286L123.697 30.8735L121.751 35.0872H123.747L129.002 23.301H126.877ZM109.659 31.2985H111.574V18.7985H109.659V31.2985Z\" fill=\"white\"/>\\n<path d=\"M10.8215 8.83751C10.5207 9.14502 10.3466 9.62376 10.3466 10.2438V32.3588C10.3466 32.9788 10.5207 33.4575 10.8215 33.765L10.8958 33.8325L23.5886 21.445V21.1525L10.8958 8.76502L10.8215 8.83751Z\" fill=\"url(#paint0_linear_5280_664)\"/>\\n<path d=\"M27.8149 25.5767L23.5886 21.4454V21.1529L27.82 17.0217L27.9147 17.0754L32.9258 19.8592C34.3559 20.6492 34.3559 21.9492 32.9258 22.7442L27.9147 25.5229L27.8149 25.5767Z\" fill=\"url(#paint1_linear_5280_664)\"/>\\n<path d=\"M27.9147 25.5233L23.5886 21.2995L10.8215 33.7658C11.2965 34.2533 12.0711 34.312 12.9519 33.8245L27.9147 25.5233Z\" fill=\"url(#paint2_linear_5280_664)\"/>\\n<path d=\"M27.9147 17.0751L12.9519 8.77383C12.0711 8.29133 11.2965 8.35008 10.8215 8.83758L23.5886 21.2988L27.9147 17.0751Z\" fill=\"url(#paint3_linear_5280_664)\"/>\\n<path d=\"M288.097 36.6869C288.097 38.8186 286.335 40.5452 284.154 40.5452H155.122C152.943 40.5452 151.174 38.8186 151.174 36.6869V5.91805C151.174 3.78741 152.943 2.05469 155.122 2.05469H284.153C286.335 2.05469 288.096 3.78741 288.096 5.91805L288.097 36.6869Z\" fill=\"black\"/>\\n<path d=\"M283.738 2.10057C286.113 2.10057 288.045 3.98432 288.045 6.29932V36.2993C288.045 38.6143 286.113 40.4981 283.738 40.4981H155.533C153.159 40.4981 151.227 38.6143 151.227 36.2993V6.29932C151.227 3.98432 153.159 2.10057 155.533 2.10057H283.738ZM283.738 1.29932H155.533C152.714 1.29932 150.405 3.55057 150.405 6.29932V36.2993C150.405 39.0481 152.714 41.2993 155.533 41.2993H283.738C286.557 41.2993 288.866 39.0481 288.866 36.2993V6.29932C288.866 3.55057 286.557 1.29932 283.738 1.29932Z\" fill=\"#A6A6A6\"/>\\n<path d=\"M181.306 21.0831C181.276 17.8601 184.012 16.2921 184.137 16.2191C182.588 14.0161 180.186 13.7151 179.341 13.6911C177.324 13.4841 175.367 14.8681 174.339 14.8681C173.291 14.8681 171.709 13.7111 170.003 13.7451C167.808 13.7781 165.755 15.0171 164.629 16.9411C162.304 20.8641 164.038 26.6291 166.264 29.8001C167.378 31.3531 168.68 33.0871 170.383 33.0261C172.05 32.9591 172.673 31.9901 174.684 31.9901C176.677 31.9901 177.261 33.0261 178.999 32.9871C180.788 32.9591 181.914 31.4271 182.989 29.8601C184.276 28.0801 184.793 26.3271 184.813 26.2371C184.771 26.2231 181.339 24.9461 181.306 21.0831Z\" fill=\"white\"/>\\n<path d=\"M178.023 11.6051C178.92 10.5121 179.533 9.02511 179.363 7.51611C178.066 7.57211 176.443 8.39111 175.509 9.46011C174.682 10.4021 173.943 11.9461 174.134 13.3981C175.592 13.5041 177.088 12.6811 178.023 11.6051Z\" fill=\"white\"/>\\n<path d=\"M205.425 32.8031H203.096L201.82 28.8941H197.385L196.17 32.8031H193.902L198.296 19.4951H201.01L205.425 32.8031ZM201.436 27.2541L200.282 23.7791C200.16 23.4241 199.931 22.5881 199.593 21.2721H199.552C199.418 21.8381 199.202 22.6741 198.904 23.7791L197.771 27.2541H201.436Z\" fill=\"white\"/>\\n<path d=\"M216.725 27.8873C216.725 29.5193 216.272 30.8093 215.368 31.7563C214.558 32.5993 213.551 33.0203 212.35 33.0203C211.054 33.0203 210.123 32.5663 209.556 31.6583H209.515V36.7133H207.328V26.3663C207.328 25.3403 207.3 24.2873 207.247 23.2073H209.17L209.292 24.7283H209.333C210.062 23.5823 211.169 23.0103 212.654 23.0103C213.815 23.0103 214.784 23.4573 215.56 24.3523C216.337 25.2483 216.725 26.4263 216.725 27.8873ZM214.497 27.9653C214.497 27.0313 214.282 26.2613 213.849 25.6553C213.376 25.0233 212.741 24.7073 211.945 24.7073C211.406 24.7073 210.916 24.8833 210.478 25.2303C210.039 25.5803 209.751 26.0373 209.617 26.6033C209.549 26.8673 209.516 27.0833 209.516 27.2533V28.8533C209.516 29.5513 209.735 30.1403 210.174 30.6213C210.613 31.1023 211.183 31.3423 211.885 31.3423C212.708 31.3423 213.349 31.0323 213.808 30.4143C214.267 29.7953 214.497 28.9793 214.497 27.9653Z\" fill=\"white\"/>\\n<path d=\"M228.045 27.8873C228.045 29.5193 227.593 30.8093 226.687 31.7563C225.878 32.5993 224.872 33.0203 223.671 33.0203C222.374 33.0203 221.443 32.5663 220.877 31.6583H220.836V36.7133H218.649V26.3663C218.649 25.3403 218.621 24.2873 218.568 23.2073H220.491L220.613 24.7283H220.654C221.382 23.5823 222.489 23.0103 223.975 23.0103C225.135 23.0103 226.104 23.4573 226.882 24.3523C227.656 25.2483 228.045 26.4263 228.045 27.8873ZM225.817 27.9653C225.817 27.0313 225.601 26.2613 225.168 25.6553C224.695 25.0233 224.062 24.7073 223.265 24.7073C222.725 24.7073 222.236 24.8833 221.797 25.2303C221.358 25.5803 221.072 26.0373 220.937 26.6033C220.871 26.8673 220.836 27.0833 220.836 27.2533V28.8533C220.836 29.5513 221.055 30.1403 221.492 30.6213C221.931 31.1013 222.501 31.3423 223.205 31.3423C224.029 31.3423 224.67 31.0323 225.128 30.4143C225.587 29.7953 225.817 28.9793 225.817 27.9653Z\" fill=\"white\"/>\\n<path d=\"M240.701 29.0713C240.701 30.2033 240.298 31.1243 239.489 31.8353C238.6 32.6123 237.362 33.0003 235.771 33.0003C234.302 33.0003 233.125 32.7243 232.234 32.1713L232.74 30.3943C233.7 30.9603 234.754 31.2443 235.901 31.2443C236.725 31.2443 237.366 31.0623 237.826 30.7003C238.285 30.3383 238.514 29.8523 238.514 29.2463C238.514 28.7063 238.325 28.2513 237.946 27.8823C237.57 27.5133 236.941 27.1703 236.063 26.8533C233.674 25.9843 232.48 24.7113 232.48 23.0373C232.48 21.9433 232.898 21.0463 233.736 20.3483C234.571 19.6493 235.685 19.3003 237.078 19.3003C238.32 19.3003 239.351 19.5113 240.175 19.9323L239.628 21.6703C238.859 21.2623 237.989 21.0583 237.016 21.0583C236.247 21.0583 235.646 21.2433 235.215 21.6113C234.851 21.9403 234.668 22.3413 234.668 22.8163C234.668 23.3423 234.877 23.7773 235.295 24.1193C235.659 24.4353 236.321 24.7773 237.281 25.1463C238.455 25.6073 239.318 26.1463 239.872 26.7643C240.425 27.3803 240.701 28.1513 240.701 29.0713Z\" fill=\"white\"/>\\n<path d=\"M247.931 24.8069H245.521V29.4659C245.521 30.6509 245.945 31.2429 246.797 31.2429C247.188 31.2429 247.512 31.2099 247.768 31.1439L247.829 32.7629C247.398 32.9199 246.831 32.9989 246.128 32.9989C245.264 32.9989 244.59 32.7419 244.102 32.2289C243.617 31.7149 243.373 30.8529 243.373 29.6419V24.8049H241.937V23.2049H243.373V21.4479L245.521 20.8159V23.2049H247.931V24.8069Z\" fill=\"white\"/>\\n<path d=\"M258.806 27.9262C258.806 29.4012 258.373 30.6122 257.51 31.5592C256.604 32.5342 255.402 33.0202 253.903 33.0202C252.459 33.0202 251.31 32.5532 250.452 31.6192C249.595 30.6852 249.166 29.5062 249.166 28.0852C249.166 26.5982 249.607 25.3802 250.492 24.4332C251.375 23.4852 252.567 23.0112 254.066 23.0112C255.51 23.0112 256.672 23.4782 257.549 24.4132C258.388 25.3202 258.806 26.4912 258.806 27.9262ZM256.537 27.9952C256.537 27.1102 256.343 26.3512 255.951 25.7182C255.492 24.9522 254.837 24.5702 253.988 24.5702C253.109 24.5702 252.441 24.9532 251.982 25.7182C251.59 26.3522 251.396 27.1232 251.396 28.0352C251.396 28.9202 251.59 29.6792 251.982 30.3112C252.455 31.0772 253.116 31.4592 253.968 31.4592C254.803 31.4592 255.458 31.0692 255.931 30.2912C256.334 29.6462 256.537 28.8792 256.537 27.9952Z\" fill=\"white\"/>\\n<path d=\"M265.913 25.0823C265.697 25.0433 265.466 25.0233 265.224 25.0233C264.455 25.0233 263.86 25.3063 263.442 25.8733C263.078 26.3733 262.895 27.0053 262.895 27.7683V32.8033H260.709L260.73 26.2293C260.73 25.1233 260.702 24.1163 260.648 23.2083H262.552L262.632 25.0443H262.693C262.924 24.4133 263.288 23.9053 263.786 23.5243C264.273 23.1813 264.8 23.0103 265.367 23.0103C265.569 23.0103 265.751 23.0243 265.913 23.0493V25.0823Z\" fill=\"white\"/>\\n<path d=\"M275.693 27.5507C275.693 27.9327 275.668 28.2547 275.613 28.5177H269.053C269.079 29.4657 269.396 30.1907 270.005 30.6907C270.558 31.1377 271.273 31.3617 272.151 31.3617C273.122 31.3617 274.008 31.2107 274.805 30.9077L275.148 32.3877C274.216 32.7837 273.117 32.9807 271.848 32.9807C270.322 32.9807 269.124 32.5427 268.252 31.6677C267.382 30.7927 266.947 29.6177 266.947 28.1437C266.947 26.6967 267.352 25.4917 268.163 24.5307C269.012 23.5047 270.16 22.9917 271.604 22.9917C273.022 22.9917 274.096 23.5047 274.825 24.5307C275.403 25.3457 275.693 26.3537 275.693 27.5507ZM273.608 26.9977C273.622 26.3657 273.48 25.8197 273.183 25.3587C272.805 24.7657 272.223 24.4697 271.441 24.4697C270.726 24.4697 270.144 24.7587 269.7 25.3387C269.336 25.7997 269.12 26.3527 269.053 26.9967H273.608V26.9977Z\" fill=\"white\"/>\\n<path d=\"M200.713 11.3085C200.713 12.4855 200.351 13.3715 199.628 13.9665C198.958 14.5155 198.006 14.7905 196.773 14.7905C196.162 14.7905 195.639 14.7645 195.201 14.7125V8.28151C195.772 8.19151 196.388 8.14551 197.052 8.14551C198.227 8.14551 199.112 8.39451 199.709 8.89251C200.377 9.45551 200.713 10.2605 200.713 11.3085ZM199.579 11.3375C199.579 10.5745 199.372 9.98951 198.958 9.58151C198.543 9.17451 197.938 8.97051 197.141 8.97051C196.803 8.97051 196.515 8.99251 196.276 9.03851V13.9275C196.408 13.9475 196.65 13.9565 197.002 13.9565C197.825 13.9565 198.459 13.7335 198.907 13.2875C199.354 12.8415 199.579 12.1915 199.579 11.3375Z\" fill=\"white\"/>\\n<path d=\"M206.722 12.3369C206.722 13.0619 206.51 13.6558 206.085 14.1218C205.64 14.6008 205.05 14.8398 204.314 14.8398C203.604 14.8398 203.039 14.6108 202.617 14.1508C202.197 13.6919 201.987 13.1129 201.987 12.4149C201.987 11.6849 202.203 11.0859 202.638 10.6209C203.073 10.1559 203.657 9.92285 204.394 9.92285C205.103 9.92285 205.674 10.1519 206.106 10.6109C206.516 11.0569 206.722 11.6329 206.722 12.3369ZM205.607 12.3709C205.607 11.9359 205.511 11.5629 205.319 11.2519C205.093 10.8759 204.772 10.6879 204.355 10.6879C203.923 10.6879 203.595 10.8759 203.369 11.2519C203.176 11.5629 203.081 11.9419 203.081 12.3899C203.081 12.8249 203.177 13.1978 203.369 13.5089C203.602 13.8848 203.926 14.0728 204.345 14.0728C204.755 14.0728 205.077 13.8819 205.309 13.4989C205.508 13.1819 205.607 12.8059 205.607 12.3709Z\" fill=\"white\"/>\\n<path d=\"M214.78 10.0186L213.267 14.7326H212.282L211.655 12.6856C211.496 12.1746 211.367 11.6666 211.267 11.1626H211.247C211.154 11.6806 211.025 12.1876 210.859 12.6856L210.193 14.7326H209.197L207.774 10.0186H208.879L209.426 12.2596C209.558 12.7896 209.667 13.2946 209.754 13.7726H209.773C209.853 13.3786 209.986 12.8766 210.172 12.2696L210.859 10.0196H211.734L212.392 12.2216C212.551 12.7586 212.68 13.2756 212.78 13.7736H212.809C212.882 13.2886 212.992 12.7716 213.137 12.2216L213.724 10.0196H214.78V10.0186Z\" fill=\"white\"/>\\n<path d=\"M220.352 14.7324H219.277V12.0324C219.277 11.2004 218.953 10.7844 218.303 10.7844C217.984 10.7844 217.726 10.8984 217.526 11.1274C217.328 11.3564 217.228 11.6264 217.228 11.9354V14.7314H216.153V11.3654C216.153 10.9514 216.14 10.5024 216.114 10.0164H217.059L217.109 10.7534H217.139C217.264 10.5244 217.45 10.3354 217.695 10.1844C217.987 10.0084 218.313 9.91943 218.67 9.91943C219.121 9.91943 219.496 10.0614 219.795 10.3464C220.166 10.6954 220.352 11.2164 220.352 11.9084V14.7324Z\" fill=\"white\"/>\\n<path d=\"M223.316 14.733H222.242V7.85596H223.316V14.733Z\" fill=\"white\"/>\\n<path d=\"M229.644 12.3369C229.644 13.0619 229.432 13.6558 229.007 14.1218C228.562 14.6008 227.971 14.8398 227.236 14.8398C226.525 14.8398 225.96 14.6108 225.539 14.1508C225.119 13.6919 224.909 13.1129 224.909 12.4149C224.909 11.6849 225.125 11.0859 225.56 10.6209C225.995 10.1559 226.579 9.92285 227.315 9.92285C228.025 9.92285 228.595 10.1519 229.028 10.6109C229.438 11.0569 229.644 11.6329 229.644 12.3369ZM228.528 12.3709C228.528 11.9359 228.432 11.5629 228.24 11.2519C228.015 10.8759 227.693 10.6879 227.277 10.6879C226.844 10.6879 226.516 10.8759 226.291 11.2519C226.098 11.5629 226.003 11.9419 226.003 12.3899C226.003 12.8249 226.099 13.1978 226.291 13.5089C226.524 13.8848 226.848 14.0728 227.267 14.0728C227.677 14.0728 227.998 13.8819 228.23 13.4989C228.43 13.1819 228.528 12.8059 228.528 12.3709Z\" fill=\"white\"/>\\n<path d=\"M234.846 14.7328H233.881L233.801 14.1899H233.771C233.441 14.6229 232.97 14.8398 232.359 14.8398C231.902 14.8398 231.533 14.6968 231.255 14.4128C231.003 14.1549 230.877 13.8339 230.877 13.4529C230.877 12.8769 231.123 12.4379 231.618 12.1339C232.112 11.8299 232.808 11.6809 233.703 11.6879V11.5999C233.703 10.9789 233.369 10.6689 232.699 10.6689C232.222 10.6689 231.802 10.7859 231.439 11.0179L231.22 10.3299C231.669 10.0589 232.224 9.92285 232.879 9.92285C234.142 9.92285 234.776 10.5729 234.776 11.8729V13.6089C234.776 14.0799 234.8 14.4548 234.846 14.7328ZM233.73 13.1129V12.3859C232.544 12.3659 231.951 12.6829 231.951 13.3359C231.951 13.5819 232.019 13.7659 232.158 13.8888C232.296 14.0118 232.472 14.0728 232.683 14.0728C232.919 14.0728 233.139 13.9999 233.34 13.8549C233.542 13.7089 233.666 13.5238 233.712 13.2969C233.724 13.2459 233.73 13.1839 233.73 13.1129Z\" fill=\"white\"/>\\n<path d=\"M240.954 14.733H240L239.95 13.976H239.92C239.615 14.552 239.096 14.84 238.367 14.84C237.785 14.84 237.299 14.617 236.915 14.171C236.53 13.725 236.338 13.146 236.338 12.435C236.338 11.672 236.547 11.054 236.965 10.582C237.37 10.142 237.867 9.92196 238.457 9.92196C239.107 9.92196 239.561 10.135 239.819 10.562H239.84V7.85596H240.916V13.463C240.916 13.922 240.928 14.345 240.954 14.733ZM239.84 12.745V11.959C239.84 11.823 239.83 11.713 239.81 11.629C239.75 11.377 239.619 11.165 239.421 10.994C239.221 10.823 238.98 10.737 238.702 10.737C238.301 10.737 237.988 10.892 237.757 11.203C237.528 11.514 237.412 11.911 237.412 12.396C237.412 12.862 237.522 13.24 237.742 13.531C237.975 13.841 238.289 13.996 238.682 13.996C239.035 13.996 239.317 13.867 239.531 13.608C239.738 13.369 239.84 13.081 239.84 12.745Z\" fill=\"white\"/>\\n<path d=\"M250.147 12.3369C250.147 13.0619 249.934 13.6558 249.51 14.1218C249.064 14.6008 248.476 14.8398 247.738 14.8398C247.03 14.8398 246.464 14.6108 246.042 14.1508C245.621 13.6919 245.411 13.1129 245.411 12.4149C245.411 11.6849 245.628 11.0859 246.062 10.6209C246.497 10.1559 247.082 9.92285 247.819 9.92285C248.528 9.92285 249.099 10.1519 249.53 10.6109C249.94 11.0569 250.147 11.6329 250.147 12.3369ZM249.033 12.3709C249.033 11.9359 248.936 11.5629 248.744 11.2519C248.518 10.8759 248.198 10.6879 247.779 10.6879C247.349 10.6879 247.02 10.8759 246.794 11.2519C246.601 11.5629 246.505 11.9419 246.505 12.3899C246.505 12.8249 246.602 13.1978 246.794 13.5089C247.027 13.8848 247.351 14.0728 247.769 14.0728C248.179 14.0728 248.502 13.8819 248.734 13.4989C248.932 13.1819 249.033 12.8059 249.033 12.3709Z\" fill=\"white\"/>\\n<path d=\"M255.926 14.7324H254.852V12.0324C254.852 11.2004 254.528 10.7844 253.877 10.7844C253.558 10.7844 253.3 10.8984 253.101 11.1274C252.902 11.3564 252.803 11.6264 252.803 11.9354V14.7314H251.727V11.3654C251.727 10.9514 251.715 10.5024 251.689 10.0164H252.633L252.683 10.7534H252.713C252.839 10.5244 253.025 10.3354 253.27 10.1844C253.562 10.0084 253.887 9.91943 254.245 9.91943C254.695 9.91943 255.071 10.0614 255.369 10.3464C255.741 10.6954 255.926 11.2164 255.926 11.9084V14.7324Z\" fill=\"white\"/>\\n<path d=\"M263.16 10.8032H261.976V13.0932C261.976 13.6752 262.186 13.9662 262.603 13.9662C262.796 13.9662 262.956 13.9502 263.082 13.9172L263.11 14.7122C262.897 14.7902 262.618 14.8292 262.275 14.8292C261.85 14.8292 261.52 14.7032 261.281 14.4512C261.041 14.1992 260.922 13.7752 260.922 13.1802V10.8032H260.215V10.0182H260.922V9.15424L261.975 8.84424V10.0172H263.159V10.8032H263.16Z\" fill=\"white\"/>\\n<path d=\"M268.85 14.733H267.774V12.053C267.774 11.208 267.45 10.785 266.801 10.785C266.302 10.785 265.962 11.03 265.775 11.52C265.743 11.623 265.725 11.749 265.725 11.897V14.732H264.651V7.85596H265.725V10.697H265.745C266.084 10.18 266.569 9.92196 267.198 9.92196C267.643 9.92196 268.011 10.064 268.303 10.349C268.667 10.704 268.85 11.232 268.85 11.93V14.733Z\" fill=\"white\"/>\\n<path d=\"M274.72 12.1526C274.72 12.3406 274.706 12.4986 274.68 12.6276H271.456C271.471 13.0936 271.625 13.4486 271.923 13.6946C272.196 13.9146 272.548 14.0246 272.978 14.0246C273.455 14.0246 273.89 13.9506 274.282 13.8016L274.45 14.5296C273.992 14.7236 273.452 14.8206 272.828 14.8206C272.079 14.8206 271.489 14.6056 271.063 14.1756C270.634 13.7456 270.422 13.1686 270.422 12.4446C270.422 11.7336 270.619 11.1416 271.018 10.6696C271.435 10.1656 271.998 9.91357 272.709 9.91357C273.404 9.91357 273.932 10.1656 274.289 10.6696C274.577 11.0696 274.72 11.5646 274.72 12.1526ZM273.694 11.8816C273.703 11.5706 273.632 11.3026 273.486 11.0766C273.299 10.7856 273.015 10.6396 272.631 10.6396C272.28 10.6396 271.994 10.7816 271.775 11.0666C271.597 11.2936 271.491 11.5646 271.456 11.8816H273.694Z\" fill=\"white\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_5280_664\" x1=\"22.4616\" y1=\"32.5891\" x2=\"5.68403\" y2=\"15.4049\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#00A0FF\"/>\\n<stop offset=\"0.0066\" stop-color=\"#00A1FF\"/>\\n<stop offset=\"0.2601\" stop-color=\"#00BEFF\"/>\\n<stop offset=\"0.5122\" stop-color=\"#00D2FF\"/>\\n<stop offset=\"0.7604\" stop-color=\"#00DFFF\"/>\\n<stop offset=\"1\" stop-color=\"#00E3FF\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_5280_664\" x1=\"34.788\" y1=\"21.2978\" x2=\"10.0048\" y2=\"21.2978\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FFE000\"/>\\n<stop offset=\"0.4087\" stop-color=\"#FFBD00\"/>\\n<stop offset=\"0.7754\" stop-color=\"#FFA500\"/>\\n<stop offset=\"1\" stop-color=\"#FF9C00\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_5280_664\" x1=\"25.5623\" y1=\"19.0034\" x2=\"2.81049\" y2=\"-4.29965\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF3A44\"/>\\n<stop offset=\"1\" stop-color=\"#C31162\"/>\\n</linearGradient>\\n<linearGradient id=\"paint3_linear_5280_664\" x1=\"7.6078\" y1=\"41.1226\" x2=\"17.7675\" y2=\"30.7169\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#32A071\"/>\\n<stop offset=\"0.0685\" stop-color=\"#2DA771\"/>\\n<stop offset=\"0.4762\" stop-color=\"#15CF74\"/>\\n<stop offset=\"0.8009\" stop-color=\"#06E775\"/>\\n<stop offset=\"1\" stop-color=\"#00F076\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})]})]})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CfKckdmnl:{y:(componentViewport?.y||0)+0+10727.6},t7j3geBvS:{y:(componentViewport?.y||0)+0+8501.6},yima759nb:{y:(componentViewport?.y||0)+0+11241.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:298,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+8841.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-sv51sc-container\",nodeId:\"LA1wKTl65\",scopeId:\"mnvLFwKli\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CfKckdmnl:{variant:\"KaJkPOGtC\"},t7j3geBvS:{variant:\"p4vikZWwr\"},yima759nb:{variant:\"lOsO0kqog\"}},children:/*#__PURE__*/_jsx(FooterSection,{height:\"100%\",id:\"LA1wKTl65\",layoutId:\"LA1wKTl65\",style:{width:\"100%\"},variant:\"DEalr7GHK\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-aF3S8.framer-lwfrfw, .framer-aF3S8 .framer-lwfrfw { display: block; }\",\".framer-aF3S8.framer-1hf96d0 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-aF3S8 .framer-1d1tjec-container, .framer-aF3S8 .framer-11jiqzh-container, .framer-aF3S8 .framer-1xsm4od-container, .framer-aF3S8 .framer-sv51sc-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-aF3S8 .framer-1sd924p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 99px; height: min-content; justify-content: center; overflow: visible; padding: 0px 60px 0px 60px; position: relative; width: 100%; }\",\".framer-aF3S8 .framer-7f2w20 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-aF3S8 .framer-6nucua, .framer-aF3S8 .framer-1f8pfoo { 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-aF3S8 .framer-lcacud, .framer-aF3S8 .framer-16qohu6, .framer-aF3S8 .framer-35fpdh, .framer-aF3S8 .framer-w9n3g2, .framer-aF3S8 .framer-1l5pi2p, .framer-aF3S8 .framer-3my3n9, .framer-aF3S8 .framer-16cwipk, .framer-aF3S8 .framer-hd4r3w, .framer-aF3S8 .framer-albuyc, .framer-aF3S8 .framer-1mi979m, .framer-aF3S8 .framer-s6vxqd, .framer-aF3S8 .framer-1xyejpy, .framer-aF3S8 .framer-ddunxn, .framer-aF3S8 .framer-1w3oz5s, .framer-aF3S8 .framer-25uw2y, .framer-aF3S8 .framer-1ojpd7c, .framer-aF3S8 .framer-okb7e8, .framer-aF3S8 .framer-1sao5i, .framer-aF3S8 .framer-sw51nw, .framer-aF3S8 .framer-cw97gw, .framer-aF3S8 .framer-o8u450 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-aF3S8 .framer-tf7v7r { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 97%; word-break: break-word; word-wrap: break-word; }\",\".framer-aF3S8 .framer-i8mek { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-aF3S8 .framer-1crlzcx { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 344px; word-break: break-word; word-wrap: break-word; }\",\".framer-aF3S8 .framer-ilk24j, .framer-aF3S8 .framer-z2i0iy { --border-bottom-width: 1px; --border-color: #078f3d; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #078f3d; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0px 4px 64px 0px rgba(99, 99, 99, 0.1); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 16px 32px 16px 32px; position: relative; text-decoration: none; width: min-content; }\",\".framer-aF3S8 .framer-1uljkdj, .framer-aF3S8 .framer-1h9b3p3, .framer-aF3S8 .framer-1dktie { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-aF3S8 .framer-1cap4vr { flex: none; gap: 0px; height: 658px; overflow: visible; position: relative; width: 40%; }\",\".framer-aF3S8 .framer-x8l28b { flex: none; height: 658px; left: calc(50% - 588px / 2); position: absolute; top: 0px; width: 588px; }\",\".framer-aF3S8 .framer-qs8hl2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 22.049999237060547px; height: min-content; justify-content: flex-start; left: 14px; overflow: visible; padding: 0px; position: absolute; top: 45px; width: min-content; }\",\".framer-aF3S8 .framer-148vv6l { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 395px; justify-content: flex-end; overflow: visible; padding: 10px; position: relative; width: 260px; }\",\".framer-aF3S8 .framer-1699xej { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 22.049999237060547px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 237px; }\",\".framer-aF3S8 .framer-kbqtqw { flex: none; height: 291px; position: relative; width: 238px; }\",\".framer-aF3S8 .framer-ayguji { flex: none; height: 292px; position: relative; width: 238px; }\",\".framer-aF3S8 .framer-iw17n4 { bottom: 3px; box-shadow: 0px 3.674999952316284px 31.237499237060547px 9.1875px rgba(0, 0, 0, 0.15); flex: none; height: 150px; left: 151px; position: absolute; width: 157px; z-index: 1; }\",\".framer-aF3S8 .framer-kjmjes { box-shadow: 0px 3.674999952316284px 31.237499237060547px 9.1875px rgba(0, 0, 0, 0.15); flex: none; height: 51px; left: 181px; position: absolute; top: 173px; width: 187px; }\",\".framer-aF3S8 .framer-11i0mh5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 60px 120px 60px 120px; position: relative; width: 100%; }\",\".framer-aF3S8 .framer-1h2658o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 508px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-aF3S8 .framer-15enuez { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 56px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 126px; }\",\".framer-aF3S8 .framer-9kdla9 { flex: none; height: 56px; overflow: hidden; position: relative; width: 126px; }\",\".framer-aF3S8 .framer-111zisb { flex: none; height: 56px; left: -1px; position: absolute; top: 0px; width: 127px; }\",\".framer-aF3S8 .framer-18i0y90 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 56px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 111px; }\",\".framer-aF3S8 .framer-pt49y7 { flex: none; height: 56px; overflow: hidden; position: relative; width: 111px; }\",\".framer-aF3S8 .framer-1qv94z5 { flex: none; height: 56px; left: 0px; position: absolute; top: 0px; width: 111px; }\",\".framer-aF3S8 .framer-1vf9gz1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 59px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 115px; }\",\".framer-aF3S8 .framer-1dgmszj { flex: none; height: 61px; overflow: hidden; position: relative; width: 111px; }\",\".framer-aF3S8 .framer-78cwaj { -webkit-filter: grayscale(1); bottom: 0px; filter: grayscale(1); flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-aF3S8 .framer-1q9jhyw { align-content: center; align-items: center; background-color: #f3f4f6; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 80px 60px 80px 60px; position: relative; width: 100%; }\",\".framer-aF3S8 .framer-j5tscb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; max-width: 629px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-aF3S8 .framer-7k1sj8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 139px; height: min-content; justify-content: flex-start; max-width: 936px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 3; }\",\".framer-aF3S8 .framer-1swynff { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 86px; height: min-content; justify-content: center; max-width: 458px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-aF3S8 .framer-11oh6j2, .framer-aF3S8 .framer-icnodw, .framer-aF3S8 .framer-14aiqz9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-aF3S8 .framer-a9n92k, .framer-aF3S8 .framer-zhc1go, .framer-aF3S8 .framer-13z62xp { align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: #ffffff; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 80px); justify-content: center; overflow: visible; padding: 10px; position: relative; width: 80px; }\",\".framer-aF3S8 .framer-1dtd82m, .framer-aF3S8 .framer-1gc2ehg, .framer-aF3S8 .framer-3tp2ir { flex: none; gap: 0px; height: 56px; overflow: hidden; position: relative; width: 56px; }\",\".framer-aF3S8 .framer-wngd3y { flex: none; height: 52px; left: 2px; position: absolute; top: 2px; width: 52px; }\",\".framer-aF3S8 .framer-jjz9j6, .framer-aF3S8 .framer-1raekfb, .framer-aF3S8 .framer-1tarrti { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-aF3S8 .framer-3yuutr, .framer-aF3S8 .framer-mencja { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-aF3S8 .framer-1kjfa0x, .framer-aF3S8 .framer-gzfd7 { flex: none; height: 52px; left: 2px; position: absolute; top: 2px; width: 51px; }\",\".framer-aF3S8 .framer-3seata, .framer-aF3S8 .framer-6560co { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 361px; word-break: break-word; word-wrap: break-word; }\",\".framer-aF3S8 .framer-1ujfecc { aspect-ratio: 0.4884726224783862 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 694px); position: relative; width: 339px; z-index: 3; }\",\".framer-aF3S8 .framer-198jk7j { -webkit-backdrop-filter: blur(25.5px); align-content: center; align-items: center; backdrop-filter: blur(25.5px); background-color: rgba(218, 232, 218, 0.7); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0px 13px 17px 0px rgba(18, 26, 39, 0.01); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px; position: absolute; right: -150px; top: 90px; width: min-content; }\",\".framer-aF3S8 .framer-6ah1f9 { flex: none; height: 57px; position: relative; width: 57px; }\",\".framer-aF3S8 .framer-oyfbgj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 202px; }\",\".framer-aF3S8 .framer-v8q6am, .framer-aF3S8 .framer-ogtosg { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 202px; word-break: break-word; word-wrap: break-word; }\",\".framer-aF3S8 .framer-5sxv2m { -webkit-backdrop-filter: blur(25.5px); align-content: center; align-items: center; backdrop-filter: blur(25.5px); background-color: rgba(218, 232, 218, 0.7); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0px 13px 17px 0px rgba(18, 26, 39, 0.01); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; left: -116px; overflow: visible; padding: 16px; position: absolute; top: 552px; width: 309px; }\",\".framer-aF3S8 .framer-1w2qm2g { flex: none; height: 56px; position: relative; width: 56px; }\",\".framer-aF3S8 .framer-301c1a { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-aF3S8 .framer-1oqx2tu, .framer-aF3S8 .framer-10vlf9b { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 209px; word-break: break-word; word-wrap: break-word; }\",\".framer-aF3S8 .framer-1khl775 { flex: none; height: 560px; opacity: 0.2; overflow: visible; position: absolute; right: -124px; top: calc(47.550432276657084% - 560px / 2); width: 560px; z-index: 1; }\",\".framer-aF3S8 .framer-1ns60wc { --border-bottom-width: 1px; --border-color: #616161; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 560px; left: 0px; position: absolute; top: 0px; width: 560px; }\",\".framer-aF3S8 .framer-1qywj3m { --border-bottom-width: 1px; --border-color: #616161; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 472px; left: 43px; position: absolute; top: 44px; width: 473px; }\",\".framer-aF3S8 .framer-18lmzlf { --border-bottom-width: 1px; --border-color: #616161; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 397px; left: 81px; position: absolute; top: 81px; width: 397px; }\",\".framer-aF3S8 .framer-1wxl7wa { --border-bottom-width: 1px; --border-color: #616161; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 337px; left: 111px; position: absolute; top: 112px; width: 337px; }\",\".framer-aF3S8 .framer-mmo8is { flex: none; height: 393px; opacity: 0.2; overflow: visible; position: absolute; right: -116px; top: 206px; width: 409px; z-index: 1; }\",\".framer-aF3S8 .framer-17kj886 { --border-bottom-width: 1px; --border-color: #616161; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 367px; left: -35px; position: absolute; top: -81px; width: 320px; }\",\".framer-aF3S8 .framer-4oaf5s { --border-bottom-width: 1px; --border-color: #616161; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 311px; left: -10px; position: absolute; top: -53px; width: 270px; }\",\".framer-aF3S8 .framer-1epeon1 { --border-bottom-width: 1px; --border-color: #616161; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 261px; left: 11px; position: absolute; top: -28px; width: 227px; }\",\".framer-aF3S8 .framer-1bw1qm9 { --border-bottom-width: 1px; --border-color: #616161; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 221px; left: 28px; position: absolute; top: -8px; width: 194px; }\",\".framer-aF3S8 .framer-5rhglm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 80px 60px 40px 60px; position: relative; width: 100%; }\",\".framer-aF3S8 .framer-io7fb3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; max-width: 678px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-aF3S8 .framer-mou4kj { display: grid; flex: none; gap: 32px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(50px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: min-content; justify-content: center; max-width: 1400px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-aF3S8 .framer-ot6h4b, .framer-aF3S8 .framer-pka3rk, .framer-aF3S8 .framer-vf9okc { align-content: center; align-items: center; align-self: start; background-color: #f3f4f6; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; justify-self: start; overflow: visible; padding: 24px; position: relative; width: 100%; }\",\".framer-aF3S8 .framer-xy4fib, .framer-aF3S8 .framer-eiwr3w, .framer-aF3S8 .framer-jo7v1o { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: 360px; position: relative; width: 100%; }\",\".framer-aF3S8 .framer-4zjnix, .framer-aF3S8 .framer-1i5e8lb { align-content: center; align-items: center; 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-aF3S8 .framer-ezw334 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 60px; position: relative; width: 100%; }\",\".framer-aF3S8 .framer-zmyynj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-aF3S8 .framer-2eunus-container { flex: 1 0 0px; height: 345px; max-width: 1400px; position: relative; width: 1px; }\",\".framer-aF3S8 .framer-j5f5go, .framer-aF3S8 .framer-hr4srw, .framer-aF3S8 .framer-h0e92c, .framer-aF3S8 .framer-1hdefw1, .framer-aF3S8 .framer-7nx9ol { --border-bottom-width: 12px; --border-color: #f3f4f6; --border-left-width: 12px; --border-right-width: 12px; --border-style: solid; --border-top-width: 12px; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; gap: 0px; height: 341px; overflow: hidden; position: relative; width: 245px; will-change: var(--framer-will-change-override, transform); }\",\".framer-aF3S8 .framer-50d4gs, .framer-aF3S8 .framer-1iscbo7, .framer-aF3S8 .framer-13bhd44, .framer-aF3S8 .framer-1frcfe2, .framer-aF3S8 .framer-v17905 { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 50%; position: absolute; top: 289px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-aF3S8 .framer-pocfgh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-aF3S8 .framer-gdctfl { align-content: flex-end; align-items: flex-end; border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 639px; justify-content: flex-start; max-width: 1400px; overflow: hidden; padding: 0px 0px 60px 60px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-aF3S8 .framer-1g4k5dg { align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; max-width: 642px; overflow: visible; padding: 32px; position: relative; width: 1px; }\",\".framer-aF3S8 .framer-ied5jw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-aF3S8 .framer-3xjkwk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 201px; height: min-content; justify-content: center; overflow: visible; padding: 100px 0px 150px 0px; position: relative; width: 100%; }\",\".framer-aF3S8 .framer-182m5b5 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-aF3S8 .framer-1az3vvs { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: visible; padding: 0px 60px 0px 60px; position: relative; width: 100%; z-index: 1; }\",\".framer-aF3S8 .framer-v8f086 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-aF3S8 .framer-jib4q9 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-aF3S8 .framer-1e6xdi6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-aF3S8 .framer-1tjsoit { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; opacity: 0.6; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-aF3S8 .framer-1cz4xrn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 48px; min-width: 192px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-aF3S8 .framer-152wtnu { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 600px; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 100%; }\",\".framer-aF3S8 .framer-1qjpdxq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 369px; justify-content: center; max-width: 1400px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-aF3S8 .framer-1wie17s { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-aF3S8 .framer-uv9fzw { background-color: #e9fbea; border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; flex: none; height: 369px; left: 0px; position: absolute; top: 0px; width: 1320px; }\",\".framer-aF3S8 .framer-10z6lsw { flex: none; height: 369px; left: 0px; overflow: visible; position: absolute; top: 0px; width: 100%; }\",\".framer-aF3S8 .framer-1br8dbd { border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; flex: none; height: 369px; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-aF3S8 .framer-wdixee { flex: none; height: 560px; left: -245px; opacity: 0.2; overflow: visible; position: absolute; top: -224px; width: 560px; }\",\".framer-aF3S8 .framer-1dfx805 { --border-bottom-width: 3px; --border-color: #d2d2d5; --border-left-width: 3px; --border-right-width: 3px; --border-style: solid; --border-top-width: 3px; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 560px; left: 0px; position: absolute; top: 0px; width: 560px; }\",\".framer-aF3S8 .framer-1uk48ne { --border-bottom-width: 3px; --border-color: #d2d2d5; --border-left-width: 3px; --border-right-width: 3px; --border-style: solid; --border-top-width: 3px; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 472px; left: 43px; position: absolute; top: 44px; width: 473px; }\",\".framer-aF3S8 .framer-10xdzl8 { --border-bottom-width: 3px; --border-color: #d2d2d5; --border-left-width: 3px; --border-right-width: 3px; --border-style: solid; --border-top-width: 3px; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 397px; left: 81px; position: absolute; top: 81px; width: 397px; }\",\".framer-aF3S8 .framer-1oe0fc0 { --border-bottom-width: 3px; --border-color: #d2d2d5; --border-left-width: 3px; --border-right-width: 3px; --border-style: solid; --border-top-width: 3px; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 337px; left: 111px; position: absolute; top: 112px; width: 337px; }\",\".framer-aF3S8 .framer-1kbz6qq { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 192px; justify-content: center; max-width: 728px; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 2; }\",\".framer-aF3S8 .framer-fsyvvr { flex: none; height: 56px; position: relative; width: 400px; }\",\".framer-aF3S8 .framer-1c77cvk { flex: none; height: 159px; left: 591px; position: absolute; top: calc(50.00000000000002% - 159px / 2); width: 207px; z-index: 1; }\",\".framer-aF3S8 .framer-1qf25ml { 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: visible; padding: 40px 20px 40px 20px; position: relative; width: 100%; }\",\".framer-aF3S8 .framer-1xcuns6 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 235px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-aF3S8 .framer-uyhjvy { background-color: #e9fbea; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-aF3S8 .framer-1k1yyi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 235px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-aF3S8 .framer-ygljsj { align-content: center; align-items: center; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 235px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-aF3S8 .framer-194hxz { bottom: -171px; flex: none; left: -76px; opacity: 0.2; overflow: visible; position: absolute; top: -171px; width: 142px; z-index: 1; }\",\".framer-aF3S8 .framer-ki8jgy { --border-bottom-width: 3px; --border-color: #d2d2d5; --border-left-width: 3px; --border-right-width: 3px; --border-style: solid; --border-top-width: 3px; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 577px; left: 0px; position: absolute; top: 0px; width: 142px; }\",\".framer-aF3S8 .framer-qu31ua { --border-bottom-width: 3px; --border-color: #d2d2d5; --border-left-width: 3px; --border-right-width: 3px; --border-style: solid; --border-top-width: 3px; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 487px; left: 11px; position: absolute; top: 45px; width: 120px; }\",\".framer-aF3S8 .framer-vtosx8 { --border-bottom-width: 3px; --border-color: #d2d2d5; --border-left-width: 3px; --border-right-width: 3px; --border-style: solid; --border-top-width: 3px; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 410px; left: 21px; position: absolute; top: 84px; width: 101px; }\",\".framer-aF3S8 .framer-m7gno9 { --border-bottom-width: 3px; --border-color: #d2d2d5; --border-left-width: 3px; --border-right-width: 3px; --border-style: solid; --border-top-width: 3px; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 348px; left: 28px; position: absolute; top: 115px; width: 86px; }\",\".framer-aF3S8 .framer-9fr9sj { flex: none; height: 155px; overflow: visible; position: relative; width: 350px; }\",\".framer-aF3S8 .framer-1k6byqa { flex: none; height: 98px; left: 238px; position: absolute; top: 16px; width: 70px; }\",\".framer-aF3S8 .framer-y2im1f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; left: 0px; overflow: visible; padding: 0px; position: absolute; top: 0px; width: 100%; }\",\".framer-aF3S8 .framer-1qkh7yo { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 212px; word-break: break-word; word-wrap: break-word; }\",\".framer-aF3S8 .framer-oqk0v6 { flex: none; height: 42px; position: relative; width: 289px; }\",'.framer-aF3S8[data-border=\"true\"]::after, .framer-aF3S8 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 1200px) and (max-width: 1439px) { .framer-aF3S8.framer-1hf96d0 { width: 1200px; } .framer-aF3S8 .framer-1cap4vr { flex: 1 0 0px; width: 1px; } .framer-aF3S8 .framer-198jk7j { right: -110px; } .framer-aF3S8 .framer-1khl775 { right: -80px; top: calc(48.559077809798296% - 560px / 2); } .framer-aF3S8 .framer-1az3vvs { max-width: 960px; padding: 0px; } .framer-aF3S8 .framer-v8f086 { padding: 0px 30px 0px 30px; } .framer-aF3S8 .framer-uv9fzw { width: 100%; }}\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-aF3S8.framer-1hf96d0 { width: 810px; } .framer-aF3S8 .framer-1sd924p { flex-direction: column; gap: 0px; padding: 20px 40px 20px 40px; } .framer-aF3S8 .framer-7f2w20 { flex: none; padding: 20px; width: 100%; } .framer-aF3S8 .framer-1cap4vr { height: 652px; width: 100%; } .framer-aF3S8 .framer-7k1sj8 { flex-direction: column; } .framer-aF3S8 .framer-1swynff { flex: none; order: 1; width: 100%; } .framer-aF3S8 .framer-1ujfecc, .framer-aF3S8 .framer-ot6h4b { order: 0; } .framer-aF3S8 .framer-1khl775 { left: calc(46.95652173913046% - 560px / 2); order: 2; right: unset; top: 51px; } .framer-aF3S8 .framer-5rhglm { padding: 80px 40px 40px 40px; } .framer-aF3S8 .framer-mou4kj { grid-template-columns: repeat(2, minmax(50px, 1fr)); } .framer-aF3S8 .framer-pka3rk, .framer-aF3S8 .framer-1xsm4od-container { order: 1; } .framer-aF3S8 .framer-vf9okc { order: 2; } .framer-aF3S8 .framer-gdctfl { padding: 0px 0px 60px 20px; } .framer-aF3S8 .framer-3xjkwk { padding: 100px 0px 100px 0px; } .framer-aF3S8 .framer-182m5b5 { gap: 48px; } .framer-aF3S8 .framer-1az3vvs { order: 0; padding: 0px 20px 0px 30px; } .framer-aF3S8 .framer-v8f086 { gap: 24px; } .framer-aF3S8 .framer-1e6xdi6 { gap: 16px; } .framer-aF3S8 .framer-uv9fzw { width: 100%; } .framer-aF3S8 .framer-1kbz6qq { flex: none; width: 88%; } .framer-aF3S8 .framer-1c77cvk { height: 139px; left: 506px; top: calc(55.20833333333336% - 139px / 2); width: 178px; }}\",\"@media (max-width: 809px) { .framer-aF3S8.framer-1hf96d0 { width: 390px; } .framer-aF3S8 .framer-1d1tjec-container { z-index: 2; } .framer-aF3S8 .framer-1sd924p { flex-direction: column; gap: 27px; padding: 20px; } .framer-aF3S8 .framer-7f2w20 { flex: none; width: 100%; } .framer-aF3S8 .framer-1cap4vr { height: 483px; width: 100%; } .framer-aF3S8 .framer-x8l28b { height: 549px; left: -119px; right: -119px; width: unset; } .framer-aF3S8 .framer-qs8hl2 { bottom: 0px; left: unset; right: -4px; top: unset; width: 100%; } .framer-aF3S8 .framer-148vv6l { flex: 1 0 0px; height: 315px; width: 1px; } .framer-aF3S8 .framer-1699xej, .framer-aF3S8 .framer-18i0y90, .framer-aF3S8 .framer-1vf9gz1 { flex: 1 0 0px; width: 1px; } .framer-aF3S8 .framer-kbqtqw { height: 194px; width: 100%; } .framer-aF3S8 .framer-ayguji { height: 197px; width: 100%; } .framer-aF3S8 .framer-iw17n4 { bottom: -5px; left: calc(53.428571428571445% - 157px / 2); } .framer-aF3S8 .framer-kjmjes { left: 111px; top: 153px; } .framer-aF3S8 .framer-11i0mh5, .framer-aF3S8 .framer-ezw334 { padding: 60px 20px 60px 20px; } .framer-aF3S8 .framer-1h2658o { gap: 28px; } .framer-aF3S8 .framer-15enuez { flex: 1 0 0px; height: 42px; width: 1px; } .framer-aF3S8 .framer-9kdla9 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; width: 1px; } .framer-aF3S8 .framer-111zisb { left: unset; position: relative; top: unset; width: 100%; } .framer-aF3S8 .framer-pt49y7 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; justify-content: center; padding: 0px; width: 1px; } .framer-aF3S8 .framer-1qv94z5 { flex: 1 0 0px; left: unset; position: relative; top: unset; width: 1px; } .framer-aF3S8 .framer-1dgmszj { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; justify-content: center; padding: 0px; width: 1px; } .framer-aF3S8 .framer-78cwaj { bottom: unset; height: 56px; left: unset; position: relative; right: unset; top: unset; width: 100%; } .framer-aF3S8 .framer-1q9jhyw { gap: 37px; padding: 80px 20px 80px 20px; } .framer-aF3S8 .framer-j5tscb { align-content: flex-start; align-items: flex-start; } .framer-aF3S8 .framer-7k1sj8 { flex-direction: column; gap: 86px; } .framer-aF3S8 .framer-1swynff { flex: none; order: 1; width: 100%; } .framer-aF3S8 .framer-1h9b3p3 { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-aF3S8 .framer-3seata, .framer-aF3S8 .framer-6560co { width: 100%; } .framer-aF3S8 .framer-1ujfecc { height: var(--framer-aspect-ratio-supported, 509px); order: 0; width: 249px; } .framer-aF3S8 .framer-198jk7j { right: -55px; } .framer-aF3S8 .framer-5sxv2m { left: -56px; top: 392px; } .framer-aF3S8 .framer-mmo8is { order: 3; } .framer-aF3S8 .framer-5rhglm { padding: 60px 20px 0px 20px; } .framer-aF3S8 .framer-mou4kj { grid-template-columns: repeat(1, minmax(50px, 1fr)); } .framer-aF3S8 .framer-gdctfl { padding: 0px 20px 20px 20px; } .framer-aF3S8 .framer-3xjkwk { padding: 24px 0px 40px 0px; } .framer-aF3S8 .framer-182m5b5 { gap: 24px; } .framer-aF3S8 .framer-1az3vvs { gap: 20px; order: 0; padding: 0px 20px 0px 20px; } .framer-aF3S8 .framer-v8f086 { flex-direction: column; gap: 24px; } .framer-aF3S8 .framer-jib4q9 { flex: none; gap: 10px; width: 100%; } .framer-aF3S8 .framer-1e6xdi6 { gap: 16px; } .framer-aF3S8 .framer-1xsm4od-container { order: 1; width: 352px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7199\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"t7j3geBvS\":{\"layout\":[\"fixed\",\"auto\"]},\"yima759nb\":{\"layout\":[\"fixed\",\"auto\"]},\"CfKckdmnl\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramermnvLFwKli=withCSS(Component,css,\"framer-aF3S8\");export default FramermnvLFwKli;FramermnvLFwKli.displayName=\"Page\";FramermnvLFwKli.defaultProps={height:7199,width:1440};addFonts(FramermnvLFwKli,[{explicitInter:true,fonts:[{family:\"Hanken Grotesk\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_Ncs2Za5PpNzXhRKA.woff2\",weight:\"400\"},{family:\"HK Grotesk ExtraBold\",source:\"custom\",url:\"https://framerusercontent.com/assets/wZijSB8O4gQTtURWVLKGJPZL0w.woff2\"},{family:\"HK Grotesk Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/bcrCZrTVeoB4uGNDwTYMmEhbDgo.woff2\"}]},...NavBarFonts,...TickerFonts,...HotelsTabsFonts,...TestimonialCardsListFonts,...FooterSectionFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramermnvLFwKli\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"7199\",\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"t7j3geBvS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"yima759nb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CfKckdmnl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"1440\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "currentTarget", "RenderTarget", "isCanvas", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "Z", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "ref", "p", "LayoutGroup", "q", "isInView", "useInView", "i", "childIndex", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "playOrPause", "hidden", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap17vsxqn", "args", "onTapoaztkl", "onTapkh4zm7", "onTap11xa4di", "onTap15u3goq", "onTappfbd6y", "onTap391lx5", "onTaposv4r4", "onTapw2efym", "onTap4sbrsb", "onTapsba21j", "onTapjhb9ki", "scopingClassNames", "cx", "LayoutGroup", "u", "RichText", "Image2", "getLoadingLazyAtYPosition", "SVG", "css", "FramerMCR7_ssgl", "withCSS", "MCR7_ssgl_default", "addPropertyControls", "ControlType", "addFonts", "NavBarFonts", "getFonts", "OS1sTGqo_default", "MotionDivWithFX", "withFX", "motion", "TickerFonts", "Ticker", "HotelsTabsFonts", "MCR7_ssgl_default", "TestimonialCardsListFonts", "crrVj1OtW_default", "FooterSectionFonts", "OBJXQ6Sx5_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "transformTemplate1", "_", "t", "animation2", "transition2", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "Container", "PropertyOverrides2", "x", "RichText", "Link", "getLoadingLazyAtYPosition", "Image2", "SVG", "css", "FramermnvLFwKli", "withCSS", "mnvLFwKli_default", "addFonts", "__FramerMetadata__"]
}
