{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/tbiAmyP8q4mMaXLQcmj3/Video.js", "ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js", "ssg:https://framerusercontent.com/modules/R9A4iTD6Vqo383R4C04Y/n6LX7pP4IqY0Wa9xsFNN/M57bMdovT.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framerusercontent.com/modules/G4IfyjvwmaeSBpdb4TWu/OIjZRBmWDcIE2B6qgG1j/index.js\";// https://framer.com/m/framer/default-utils.js@^0.45.0\nimport{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const isPlayingRef=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{// default props\nsrcType=\"URL\",srcUrl,srcFile=\"\",posterEnabled=false,controls=false,playing=true,loop=true,muted=true,playsinline=true,restartOnEnter=false,objectFit=\"cover\",backgroundColor=\"rgba(0,0,0,0)\",radius=0,volume=25,startTime:startTimeProp=0,poster=\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\",playing:playingProp,progress,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);const isCloseToViewport=isOnCanvas?false:useInView(videoRef,{margin:\"100px\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress,isPlaying}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);/**\n     * The Video component has some effects that sync the video element with props\n     * like `startTime`, `progress`, etc. React calls these effects whenever these\n     * props change. However, it also calls them on the first mount, and this is\n     * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n     * the video was hydrated, the initial `useEffect` call will reset the video\n     * state. To avoid this, we use this flag.\n     */const isMountedAndReadyForProgressChanges=useRef(false);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges.current){isMountedAndReadyForProgressChanges.current=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:autoplayBehavior===\"on-mount\",preload:isPlaying.current?\"auto\":autoplayBehavior!==\"on-mount\"&&posterEnabled&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",defaultValue:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",hidden(props){return props.srcType===\"Upload\";}},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\",description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted,defaultValue:25},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"112\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));var ThumbnailFormat;(function(ThumbnailFormat){ThumbnailFormat[\"WebP\"]=\"webp\";ThumbnailFormat[\"JPG\"]=\"jpg\";})(ThumbnailFormat||(ThumbnailFormat={}));/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,title,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==\"Off\";const showThumbnail=onCanvas||thumbnail!==\"Off\"&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/_jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL]=parsedURL;// https://developers.google.com/youtube/player_parameters\nconst searchParams=embedURL.searchParams;searchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(!showVideo){// if a browser does not support `loading=lazy`, make sure the video doesn't start playing in the background\nsearchParams.set(\"autoplay\",\"0\");}else if(isAutoplay||// when there is no thumbnail, we don't want to autoplay, unless video is started\nshowThumbnail&&showVideo){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===\"Loop\"){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}const iframeProps={title:title||\"Youtube Video\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",src:embedURL.href,frameBorder:\"0\",onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp};return /*#__PURE__*/_jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onKeyDown:startVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:// Safari sometimes struggles to render border-radius:\n// - on the canvas when changing from 0 to any other value\n// - or when rendering an iframe\nhasBorderRadius&&(showVideo||onCanvas)?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},role:\"presentation\",children:[isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),/*#__PURE__*/_jsx(\"div\",{style:{...videoStyle,background:showThumbnail?`center / cover url(${getThumbnailURL(videoId,thumbnail,getWebPSupported()?\"webp\":\"jpg\")}) no-repeat`:undefined}}),!onCanvas?/*#__PURE__*/_jsx(\"iframe\",{loading:!showVideo?\"lazy\":undefined,style:!showVideo?{...videoStyle,display:\"none\"}:videoStyle,...iframeProps}):null,showVideo?null:/*#__PURE__*/_jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===\"Off\";}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==\"Off\";}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:\"Off\",shouldMute:true,thumbnail:\"Medium Quality\",isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL];}if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");// https://www.youtube.com/watch?v=Fop2oskTug8\nif(pathSegments[0]===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId=pathSegments[1];return[videoId,url];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId=url.pathname.slice(1);const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res,format=\"jpg\"){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst useWebP=format===\"webp\";const pre=useWebP?\"https://i.ytimg.com/vi_webp/\":\"https://i.ytimg.com/vi/\";const ext=useWebP?\"webp\":\"jpg\";switch(res){case\"Low Quality\":return`${pre}${videoId}/hqdefault.${ext}`;case\"Medium Quality\":return`${pre}${videoId}/sddefault.${ext}`;case\"High Quality\":return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}let _getWebPSupported;// https://stackoverflow.com/a/27232658\nfunction getWebPSupported(){// We're going to default to webp because it's pretty widely supported by now\nif(!window){return true;}if(_getWebPSupported!==undefined){return _getWebPSupported;}const element=document.createElement(\"canvas\");if(element.getContext&&element.getContext(\"2d\")){// was able or not to get WebP representation\nreturn _getWebPSupported=element.toDataURL(\"image/webp\").indexOf(\"data:image/webp\")===0;}else{// very old browser like IE 8, canvas not supported\nreturn _getWebPSupported=false;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/_jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/_jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/_jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/_jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/_jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerIntrinsicHeight\":\"315\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"560\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "// Generated by Framer (2fef4c5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouter,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/tbiAmyP8q4mMaXLQcmj3/Video.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/w90zR0qzeh1mgaDSvD54/Carousel.js\";import KnowMore from\"#framer/local/canvasComponent/CQ87wz4T2/CQ87wz4T2.js\";import CallNow from\"#framer/local/canvasComponent/exNX7M2mW/exNX7M2mW.js\";import ClaimKnow from\"#framer/local/canvasComponent/JcluE7mL0/JcluE7mL0.js\";import Rectangle12 from\"#framer/local/canvasComponent/JvdEEP2la/JvdEEP2la.js\";import Navigation from\"#framer/local/canvasComponent/lHb6UBldq/lHb6UBldq.js\";import Whatsapp from\"#framer/local/canvasComponent/sMPqmONgl/sMPqmONgl.js\";import Footer from\"#framer/local/canvasComponent/WTIktP7b1/WTIktP7b1.js\";import metadataProvider from\"#framer/local/webPageMetadata/M57bMdovT/M57bMdovT.js\";const VideoFonts=getFonts(Video);const NavigationFonts=getFonts(Navigation);const CallNowFonts=getFonts(CallNow);const WhatsappFonts=getFonts(Whatsapp);const FooterFonts=getFonts(Footer);const ClaimKnowFonts=getFonts(ClaimKnow);const MotionDivWithFX=withFX(motion.div);const KnowMoreFonts=getFonts(KnowMore);const YouTubeFonts=getFonts(YouTube);const CarouselFonts=getFonts(Carousel);const Rectangle12Fonts=getFonts(Rectangle12);const breakpoints={eBDEWrrAh:\"(min-width: 1421px)\",HaI5fMROZ:\"(min-width: 390px) and (max-width: 809px)\",I0ELSQpF1:\"(min-width: 810px) and (max-width: 1420px)\",r2222MykL:\"(max-width: 389px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-ztHmx\";const variantClassNames={eBDEWrrAh:\"framer-v-1nq2i6t\",HaI5fMROZ:\"framer-v-p5288h\",I0ELSQpF1:\"framer-v-1dk6d8j\",r2222MykL:\"framer-v-nhaa30\"};const transition1={delay:0,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:3,rotateX:5,rotateY:3,scale:1.08,skewX:0,skewY:0,transition:transition1};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation1={opacity:1,rotate:2,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition2};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const animation2={opacity:1,rotate:-2,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition2};const animation3={opacity:1,rotate:3,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2};const animation4={opacity:1,rotate:-2,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"eBDEWrrAh\",Phone:\"HaI5fMROZ\",Small:\"r2222MykL\",Tablet:\"I0ELSQpF1\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"eBDEWrrAh\"};};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 router=useRouter();const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"I0ELSQpF1\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"I0ELSQpF1\")return true;return false;};const isDisplayed2=()=>{if(!isBrowser())return true;if([\"HaI5fMROZ\",\"r2222MykL\"].includes(baseVariant))return true;return false;};const isDisplayed3=()=>{if(!isBrowser())return true;if([\"HaI5fMROZ\",\"r2222MykL\"].includes(baseVariant))return false;return true;};const isDisplayed4=()=>{if(!isBrowser())return true;if(baseVariant===\"r2222MykL\")return false;return true;};const isDisplayed5=()=>{if(!isBrowser())return true;if(baseVariant===\"HaI5fMROZ\")return false;return true;};const isDisplayed6=()=>{if(!isBrowser())return true;if(baseVariant===\"HaI5fMROZ\")return true;return false;};const isDisplayed7=()=>{if(!isBrowser())return true;if(baseVariant===\"r2222MykL\")return true;return false;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"eBDEWrrAh\",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-1nq2i6t\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nvlsoi\",\"data-framer-name\":\"Hero\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-82w51t\",\"data-framer-name\":\"Hero\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1v97hsl-container\",isModuleExternal:true,nodeId:\"tKR7OQ57Q\",scopeId:\"M57bMdovT\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"tKR7OQ57Q\",isMixedBorderRadius:false,layoutId:\"tKR7OQ57Q\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/2dpYnRcYUT6pdwBFJ9rtngABNMY.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16nhafy\",\"data-framer-name\":\"Rectangle 1\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12quxau\",\"data-framer-name\":\"Rectangle 1\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lg5peq\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1r9v01p-container\",nodeId:\"WMWZuk613\",scopeId:\"M57bMdovT\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HaI5fMROZ:{link:resolvedLinks[2],variant:\"CwnfPn78y\"},I0ELSQpF1:{link:resolvedLinks[1],variant:\"Nbzsg13Ta\"},r2222MykL:{link:resolvedLinks[3],variant:\"CwnfPn78y\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"WMWZuk613\",layoutId:\"WMWZuk613\",link:resolvedLinks[0],style:{width:\"100%\"},variant:\"JS6DRPZfB\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i5bpq2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1o7q3df\",\"data-framer-name\":\"Headline\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HaI5fMROZ:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Must go \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Adventure experience\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"in Wayanad\"})]})},I0ELSQpF1:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Must go Adventure experience\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"45.07px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"in Wayanad\"})]})},r2222MykL:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Must go \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Adventure experience\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"in Wayanad\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Must go Adventure experience\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"45.07px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"in Wayanad\"})]}),className:\"framer-o7q7eh\",\"data-framer-name\":\"Must go Adventure experience in Wayanad\",fonts:[\"FS;Satoshi-bold\",\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HaI5fMROZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Find the perfect adventure park in Wayanad for your family or friends. Whether you're looking for rides that will get your heart racing or attractions that are perfect for kids, we have you covered.\"})})},I0ELSQpF1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Find the perfect adventure park in Wayanad for your family or friends. Whether you're looking for rides that will get your heart racing or attractions that are perfect for kids, we have you covered.\"})})},r2222MykL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Find the perfect adventure park in Wayanad for your family or friends. Whether you're looking for rides that will get your heart racing or attractions that are perfect for kids, we have you covered.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Find the perfect adventure park in Wayanad for your family or friends. Whether you're looking for rides that will get your heart racing or attractions that are perfect for kids, we have you covered.\"})}),className:\"framer-18f77kc\",\"data-framer-name\":\"Find the perfect amusement park in Wayanad for your family or friends. Whether you're looking for rides that will get your heart racing or attractions that are perfect for kids, we have you covered.\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5sdoei\",\"data-framer-name\":\"cta\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HaI5fMROZ:{y:(componentViewport?.y||0)+0+0+0+0+1+0+103+0+359+0+0},I0ELSQpF1:{y:(componentViewport?.y||0)+0+0+0+1+0+103+0+294+0},r2222MykL:{y:(componentViewport?.y||0)+0+0+0+0+1+0+103+0+359+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,width:\"150px\",y:(componentViewport?.y||0)+0+0+1+0+107.5+0+379+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13khjiu-container\",nodeId:\"T51rvo880\",scopeId:\"M57bMdovT\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HaI5fMROZ:{variant:\"OFswmFPM8\"},I0ELSQpF1:{variant:\"OFswmFPM8\"},r2222MykL:{variant:\"OFswmFPM8\"}},children:/*#__PURE__*/_jsx(CallNow,{FGI0NVpDL:\"Call Now\",height:\"100%\",id:\"T51rvo880\",layoutId:\"T51rvo880\",style:{width:\"100%\"},variant:\"YMuhvHL3r\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HaI5fMROZ:{y:(componentViewport?.y||0)+0+0+0+0+1+0+103+0+359+0+85},I0ELSQpF1:{y:(componentViewport?.y||0)+0+0+0+1+0+103+0+294+0},r2222MykL:{y:(componentViewport?.y||0)+0+0+0+0+1+0+103+0+359+0+85}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,y:(componentViewport?.y||0)+0+0+1+0+107.5+0+379+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-wcvklk-container\",nodeId:\"xanR9PnE4\",scopeId:\"M57bMdovT\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HaI5fMROZ:{variant:\"NEHEOUUdo\"},I0ELSQpF1:{variant:\"NEHEOUUdo\"},r2222MykL:{variant:\"NEHEOUUdo\"}},children:/*#__PURE__*/_jsx(Whatsapp,{height:\"100%\",id:\"xanR9PnE4\",layoutId:\"xanR9PnE4\",style:{height:\"100%\"},variant:\"MjiAvj0XB\",Vd4DGGw3a:\"WhatsApp Now\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hne923\",\"data-framer-name\":\"Banner\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.google.com/maps/dir/12.9355721,77.6421572/karapuzha+park/@12.2904863,75.7816276,8z/data=!3m1!4b1!4m9!4m8!1m1!4e1!1m5!1m1!1s0x3ba60c222bffffff:0xf3ffaa09d3d72c58!2m2!1d76.1678346!2d11.6182901?entry=ttu\",motionChild:true,nodeId:\"Rs9bmiud7\",openInNewTab:true,scopeId:\"M57bMdovT\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-8638ow framer-1chiotz\",\"data-framer-name\":\"Location\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-hdtc9q\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:29,intrinsicWidth:23,svg:'<svg width=\"23\" height=\"29\" viewBox=\"0 0 23 29\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M11.5 0C14.55 0 17.4751 1.25745 19.6317 3.49572C21.7884 5.73399 23 8.76974 23 11.9351C23 16.9785 19.5854 22.4748 12.8446 28.4828C12.4698 28.8169 11.9919 29.0004 11.4978 29C11.0037 28.9996 10.5261 28.8151 10.1518 28.4803L9.706 28.0788C3.26364 22.2275 0 16.8659 0 11.9351C0 8.76974 1.2116 5.73399 3.36827 3.49572C5.52494 1.25745 8.45001 0 11.5 0ZM11.5 1.83618C8.91924 1.83618 6.44418 2.90017 4.61931 4.79409C2.79443 6.68802 1.76923 9.25673 1.76923 11.9351C1.76923 16.222 4.77456 21.1613 10.8678 26.6943L11.3077 27.0897C11.3612 27.1374 11.4294 27.1637 11.5 27.1637C11.5706 27.1637 11.6388 27.1374 11.6923 27.0897C18.0804 21.3951 21.2308 16.3236 21.2308 11.9351C21.2308 10.6089 20.9791 9.2957 20.4901 8.07043C20.001 6.84517 19.2843 5.73187 18.3807 4.79409C17.4771 3.85632 16.4044 3.11243 15.2238 2.60491C14.0432 2.09739 12.7779 1.83618 11.5 1.83618Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HaI5fMROZ:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Karapuzha Adventure Park\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Wayanad, Kerala\"})]})},I0ELSQpF1:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Karapuzha Adventure Park\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Wayanad, Kerala\"})]})},r2222MykL:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Karapuzha Adventure Park\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Wayanad, Kerala\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Karapuzha Adventure Park\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Wayanad, Kerala\"})]}),className:\"framer-s5donl\",\"data-framer-name\":\"Karapuzha Adventure Park Wayanad, Kerala\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1y4cxeg\",\"data-framer-name\":\"Statistics\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12yjor5\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1iwzgmo\",\"data-framer-name\":\"teenyicons:tick-small-solid\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:40,svg:'<svg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M30.3733 14.1653L18.8587 28.5627L9.81333 21.024L11.52 18.976L18.4747 24.7707L28.2933 12.5013L30.3733 14.1653Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HaI5fMROZ:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"11.4px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"4 lakh\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"11.4px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Happy Customers\"})]})},r2222MykL:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"11.4px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"4 lakh\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"11.4px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Happy Customers\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"15.4px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"4 lakh\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"15.4px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Happy Customers\"})]}),className:\"framer-ry37rv\",\"data-framer-name\":\"2 lakh Happy Customers\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4hkm0t\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-ea9v74\",\"data-framer-name\":\"teenyicons:tick-small-solid\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:40,svg:'<svg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M30.3733 14.1653L18.8587 28.5627L9.81332 21.024L11.52 18.976L18.4747 24.7707L28.2933 12.5013L30.3733 14.1653Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HaI5fMROZ:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"11.4px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"6 lakh\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"11.4px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Rides Completed\"})]})},r2222MykL:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"11.4px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"6 lakh\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"11.4px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Rides Completed\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"15.4px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"6 lakh\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"15.4px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Rides Completed\"})]}),className:\"framer-1tbvm86\",\"data-framer-name\":\"1 lakh Rides Completed\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ao2w8k\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1uzuyvn\",\"data-framer-name\":\"teenyicons:tick-small-solid\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:40,svg:'<svg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M30.3733 14.1653L18.8587 28.5627L9.81332 21.024L11.52 18.976L18.4747 24.7707L28.2933 12.5013L30.3733 14.1653Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HaI5fMROZ:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"11.4px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"4 Million\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"11.4px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Visitors\"})]})},r2222MykL:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"11.4px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"4 Million\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"11.4px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Visitors\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"15.4px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"4 Million\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"15.4px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Visitors\"})]}),className:\"framer-75k1r4\",\"data-framer-name\":\"1.5 Million Visitors\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-htikuv\",\"data-framer-name\":\"rating\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"33.34px\",\"--framer-letter-spacing\":\"-0.11px\",\"--framer-line-height\":\"9.72px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"4.5\"})}),className:\"framer-1md6nj6\",\"data-framer-name\":\"4.1\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1g1n0jb\",\"data-framer-name\":\"Group 14\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 97 20\"><path d=\"M 4.861 18.018 L 6.168 12.369 L 1.786 8.57 L 7.576 8.067 L 9.827 2.739 L 12.079 8.067 L 17.869 8.57 L 13.486 12.369 L 14.793 18.018 L 9.827 15.023 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 24.161 18.018 L 25.468 12.369 L 21.085 8.57 L 26.875 8.067 L 29.127 2.739 L 31.379 8.067 L 37.169 8.57 L 32.786 12.369 L 34.093 18.018 L 29.127 15.023 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 43.461 18.018 L 44.768 12.369 L 40.385 8.57 L 46.175 8.067 L 48.427 2.739 L 50.678 8.067 L 56.468 8.57 L 52.086 12.369 L 53.392 18.018 L 48.427 15.023 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 62.761 18.018 L 64.068 12.369 L 59.685 8.57 L 65.475 8.067 L 67.727 2.739 L 69.978 8.067 L 75.768 8.57 L 71.386 12.369 L 72.692 18.018 L 67.727 15.023 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 82.061 18.018 L 83.368 12.369 L 78.985 8.57 L 84.775 8.067 L 87.026 2.739 L 89.278 8.067 L 95.068 8.57 L 90.685 12.369 L 91.992 18.018 L 87.026 15.023 Z\" fill=\"transparent\" stroke-width=\"0.34464\" stroke=\"rgb(255,255,255)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:12209602797,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"9.95px\",\"--framer-letter-spacing\":\"-0.11px\",\"--framer-line-height\":\"9.72px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"24,000+ reviews\"})}),className:\"framer-lugxl0\",\"data-framer-name\":\"8,000+ reviews\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-i3qo8b\",\"data-framer-name\":\"Footer\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HaI5fMROZ:{width:`calc(${componentViewport?.width||\"100vw\"} + 4px)`,y:(componentViewport?.y||0)+0+9105.4+20-296},I0ELSQpF1:{width:\"818px\",y:(componentViewport?.y||0)+0+7542.3+20+79.5},r2222MykL:{y:(componentViewport?.y||0)+0+9056.4+33+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:296,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+6247-296+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rm88s6-container\",nodeId:\"a2eIUhYQR\",scopeId:\"M57bMdovT\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HaI5fMROZ:{variant:\"PGzQUdYgc\"},I0ELSQpF1:{variant:\"VK8TPpJRd\"},r2222MykL:{variant:\"PGzQUdYgc\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"a2eIUhYQR\",layoutId:\"a2eIUhYQR\",style:{width:\"100%\"},variant:\"kb_9EYZp1\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mvdun6\",\"data-framer-name\":\"Influencer\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sdz3wt\",\"data-framer-name\":\"Group 117\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HaI5fMROZ:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.17px\",\"--framer-line-height\":\"40.1px\",\"--framer-text-alignment\":\"center\"},children:\"Influencers are\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.17px\",\"--framer-line-height\":\"40.1px\",\"--framer-text-alignment\":\"center\"},children:\"welcome!\"})]})},I0ELSQpF1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"37px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.17px\",\"--framer-line-height\":\"14.1px\",\"--framer-text-alignment\":\"center\"},children:\"Influencers are welcome!\"})})},r2222MykL:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.17px\",\"--framer-line-height\":\"40.1px\",\"--framer-text-alignment\":\"center\"},children:\"Influencers are\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.17px\",\"--framer-line-height\":\"40.1px\",\"--framer-text-alignment\":\"center\"},children:\"welcome!\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.17px\",\"--framer-line-height\":\"14.1px\"},children:\"Influencers are welcome!\"})}),className:\"framer-15d7gor\",\"data-framer-name\":\"Influencers are welcome!\",fonts:[\"FS;Satoshi-bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HaI5fMROZ:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.17px\",\"--framer-line-height\":\"23.1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(52, 52, 52)\"},children:\"Thrilling presents and merchandise \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.17px\",\"--framer-line-height\":\"23.1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(52, 52, 52)\"},children:\"await influencers at our park\"})]})},I0ELSQpF1:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.17px\",\"--framer-line-height\":\"23.1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(52, 52, 52)\"},children:\"Thrilling presents and merchandise \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.17px\",\"--framer-line-height\":\"23.1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(52, 52, 52)\"},children:\"await influencers at our park\"})]})},r2222MykL:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.17px\",\"--framer-line-height\":\"23.1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(52, 52, 52)\"},children:\"Thrilling presents and merchandise \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.17px\",\"--framer-line-height\":\"23.1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(52, 52, 52)\"},children:\"await influencers at our park\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.17px\",\"--framer-line-height\":\"23.1px\",\"--framer-text-color\":\"rgb(52, 52, 52)\"},children:\"Thrilling presents and merchandise \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.17px\",\"--framer-line-height\":\"23.1px\",\"--framer-text-color\":\"rgb(52, 52, 52)\"},children:\"await influencers at our park\"})]}),className:\"framer-1nbtsm4\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-81dzjc-container\",nodeId:\"GINmsvnmY\",scopeId:\"M57bMdovT\",children:/*#__PURE__*/_jsx(ClaimKnow,{height:\"100%\",id:\"GINmsvnmY\",layoutId:\"GINmsvnmY\",style:{height:\"100%\"},title:\"Plan a visit\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19b14nn\",\"data-framer-name\":\"Group 116\",children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HaI5fMROZ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1337,intrinsicWidth:4096,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8606+0+274.4+-.49999999999995737),pixelHeight:1337,pixelWidth:4096,sizes:\"395px\",src:\"https://framerusercontent.com/images/pNQGM8AuBJKOPF2HjY5NZDJKqRM.jpg\",srcSet:\"https://framerusercontent.com/images/pNQGM8AuBJKOPF2HjY5NZDJKqRM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/pNQGM8AuBJKOPF2HjY5NZDJKqRM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/pNQGM8AuBJKOPF2HjY5NZDJKqRM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/pNQGM8AuBJKOPF2HjY5NZDJKqRM.jpg 4096w\"}},r2222MykL:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1337,intrinsicWidth:4096,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8557+0+274.4+-.49999999999995737),pixelHeight:1337,pixelWidth:4096,sizes:\"395px\",src:\"https://framerusercontent.com/images/pNQGM8AuBJKOPF2HjY5NZDJKqRM.jpg\",srcSet:\"https://framerusercontent.com/images/pNQGM8AuBJKOPF2HjY5NZDJKqRM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/pNQGM8AuBJKOPF2HjY5NZDJKqRM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/pNQGM8AuBJKOPF2HjY5NZDJKqRM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/pNQGM8AuBJKOPF2HjY5NZDJKqRM.jpg 4096w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1337,intrinsicWidth:4096,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+6247-511+0+0),pixelHeight:1337,pixelWidth:4096,sizes:\"617px\",src:\"https://framerusercontent.com/images/pNQGM8AuBJKOPF2HjY5NZDJKqRM.jpg\",srcSet:\"https://framerusercontent.com/images/pNQGM8AuBJKOPF2HjY5NZDJKqRM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/pNQGM8AuBJKOPF2HjY5NZDJKqRM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/pNQGM8AuBJKOPF2HjY5NZDJKqRM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/pNQGM8AuBJKOPF2HjY5NZDJKqRM.jpg 4096w\"},className:\"framer-60lxyi hidden-1dk6d8j\",\"data-framer-name\":\"Rectangle 14\"})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I0ELSQpF1:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1337,intrinsicWidth:4096,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7027+30+208.3+0),pixelHeight:1337,pixelWidth:4096,sizes:\"809px\",src:\"https://framerusercontent.com/images/pNQGM8AuBJKOPF2HjY5NZDJKqRM.jpg\",srcSet:\"https://framerusercontent.com/images/pNQGM8AuBJKOPF2HjY5NZDJKqRM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/pNQGM8AuBJKOPF2HjY5NZDJKqRM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/pNQGM8AuBJKOPF2HjY5NZDJKqRM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/pNQGM8AuBJKOPF2HjY5NZDJKqRM.jpg 4096w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1337,intrinsicWidth:4096,pixelHeight:1337,pixelWidth:4096,src:\"https://framerusercontent.com/images/pNQGM8AuBJKOPF2HjY5NZDJKqRM.jpg\",srcSet:\"https://framerusercontent.com/images/pNQGM8AuBJKOPF2HjY5NZDJKqRM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/pNQGM8AuBJKOPF2HjY5NZDJKqRM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/pNQGM8AuBJKOPF2HjY5NZDJKqRM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/pNQGM8AuBJKOPF2HjY5NZDJKqRM.jpg 4096w\"},className:\"framer-1fjoz35 hidden-1nq2i6t hidden-p5288h hidden-nhaa30\",\"data-framer-name\":\"Rectangle 14\"})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xkads\",children:[/*#__PURE__*/_jsxs(\"div\",{background:{alt:\"\",fit:\"fill\"},className:\"framer-mhr0wd\",\"data-framer-name\":\"Rides\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gh800h\",children:[isDisplayed2()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:-2,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:2,rotateX:0,rotateY:0,scale:1.05,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-a6x2q9 hidden-1nq2i6t hidden-1dk6d8j\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-6dlkiz\",\"data-framer-name\":\"2222 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:203,intrinsicWidth:365,svg:'<svg width=\"365\" height=\"203\" viewBox=\"0 0 365 203\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_107_83)\">\\n<mask id=\"mask0_107_83\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"366\" height=\"203\">\\n<path d=\"M6.10352e-05 0.907562L6.10352e-05 202.625L365 202.625V0.907562L6.10352e-05 0.907562Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask0_107_83)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M358.752 0.907471C358.96 0.907471 359.034 1.18351 358.854 1.28766C358.719 1.36602 358.719 1.56166 358.854 1.64003L364.257 4.76488C364.505 4.90845 364.658 5.17337 364.658 5.46053V5.81188C364.658 6.09855 364.505 6.36397 364.257 6.50755L359.752 9.11269C359.217 9.42209 359.217 10.1951 359.752 10.504L364.257 13.1096C364.505 13.2532 364.658 13.5181 364.658 13.8053V14.1566C364.658 14.4433 364.505 14.7087 364.257 14.8518L359.752 17.4574C359.217 17.7668 359.217 18.5398 359.752 18.8487L364.257 21.4544C364.505 21.5979 364.658 21.8628 364.658 22.15V22.5009C364.658 22.788 364.505 23.0534 364.257 23.1965L359.752 25.8021C359.217 26.1115 359.217 26.884 359.752 27.1934L364.257 29.7991C364.505 29.9427 364.658 30.2076 364.658 30.4947V30.8456C364.658 31.1327 364.505 31.3977 364.257 31.5412L359.752 34.1469C359.217 34.4563 359.217 35.2288 359.752 35.5382L364.257 38.1438C364.505 38.2874 364.658 38.5523 364.658 38.8395V39.1903C364.658 39.4775 364.505 39.7424 364.257 39.886L359.752 42.4916C359.217 42.801 359.217 43.5735 359.752 43.8829L364.257 46.4885C364.505 46.6321 364.658 46.897 364.658 47.1842V47.535C364.658 47.8222 364.505 48.0871 364.257 48.2307L359.752 50.8363C359.217 51.1457 359.217 51.9182 359.752 52.2276L364.257 54.8333C364.505 54.9769 364.658 55.2418 364.658 55.5289V55.8798C364.658 56.1669 364.505 56.4318 364.257 56.5754L359.752 59.1811C359.217 59.49 359.217 60.263 359.752 60.5724L364.257 63.178C364.505 63.3216 364.658 63.5865 364.658 63.8737V64.2245C364.658 64.5112 364.505 64.7766 364.257 64.9202L359.752 67.5258C359.217 67.8347 359.217 68.6077 359.752 68.9171L364.257 71.5227C364.505 71.6658 364.658 71.9312 364.658 72.2179V72.5692C364.658 72.8559 364.505 73.1213 364.257 73.2649L359.752 75.8705C359.217 76.1794 359.217 76.9524 359.752 77.2613L364.257 79.8675C364.505 80.0105 364.658 80.276 364.658 80.5626V80.914C364.658 81.2006 364.505 81.466 364.257 81.6096L359.752 84.2153C359.217 84.5242 359.217 85.2972 359.752 85.606L364.257 88.2117C364.505 88.3553 364.658 88.6207 364.658 88.9073V89.2587C364.658 89.5454 364.505 89.8108 364.257 89.9543L359.752 92.56C359.217 92.8689 359.217 93.6419 359.752 93.9508L364.257 96.5564C364.505 96.7 364.658 96.9654 364.658 97.2521V97.6034C364.658 97.8901 364.505 98.1555 364.257 98.2986L359.752 100.904C359.217 101.214 359.217 101.987 359.752 102.296L364.257 104.901C364.505 105.045 364.658 105.31 364.658 105.597V105.948C364.658 106.235 364.505 106.5 364.257 106.643L359.752 109.249C359.217 109.558 359.217 110.331 359.752 110.64L364.257 113.246C364.505 113.389 364.658 113.654 364.658 113.942V114.292C364.658 114.58 364.505 114.844 364.257 114.988L359.752 117.594C359.217 117.903 359.217 118.676 359.752 118.985L364.257 121.591C364.505 121.734 364.658 121.999 364.658 122.286V122.637C364.658 122.924 364.505 123.189 364.257 123.333L359.752 125.938C359.217 126.248 359.217 127.02 359.752 127.33L364.257 129.935C364.505 130.079 364.658 130.344 364.658 130.631V130.982C364.658 131.269 364.505 131.534 364.257 131.677L359.752 134.283C359.217 134.593 359.217 135.365 359.752 135.674L364.257 138.28C364.505 138.424 364.658 138.689 364.658 138.976V139.327C364.658 139.614 364.505 139.879 364.257 140.022L359.752 142.628C359.217 142.937 359.217 143.71 359.752 144.019L364.257 146.625C364.505 146.768 364.658 147.033 364.658 147.32V147.671C364.658 147.958 364.505 148.223 364.257 148.367L359.752 150.973C359.217 151.282 359.217 152.054 359.752 152.364L364.257 154.97C364.505 155.113 364.658 155.378 364.658 155.665V156.016C364.658 156.303 364.505 156.568 364.257 156.712L359.752 159.317C359.217 159.626 359.217 160.399 359.752 160.709L364.257 163.314C364.505 163.457 364.658 163.723 364.658 164.009V164.361C364.658 164.647 364.505 164.913 364.257 165.056L359.752 167.662C359.217 167.971 359.217 168.744 359.752 169.053L364.257 171.659C364.505 171.802 364.658 172.067 364.658 172.354V172.706C364.658 172.992 364.505 173.258 364.257 173.401L359.752 176.007C359.217 176.316 359.217 177.089 359.752 177.398L364.257 180.003C364.505 180.147 364.658 180.412 364.658 180.699V181.05C364.658 181.337 364.505 181.602 364.257 181.745L359.752 184.352C359.217 184.66 359.217 185.433 359.752 185.742L364.257 188.348C364.505 188.492 364.658 188.757 364.658 189.044V189.395C364.658 189.682 364.505 189.947 364.257 190.09L359.752 192.696C359.217 193.005 359.217 193.778 359.752 194.087L364.257 196.693C364.505 196.836 364.658 197.102 364.658 197.388V197.739C364.658 198.026 364.505 198.291 364.257 198.435L359.006 201.472C358.803 201.59 358.803 201.883 359.006 202.001C359.276 202.157 359.166 202.571 358.854 202.571H97.4851C97.1918 202.571 96.9702 202.308 96.9702 202.014C96.9702 200.017 95.3537 198.398 93.36 198.398C91.3664 198.398 89.7499 200.017 89.7499 202.014C89.7499 202.308 89.5283 202.571 89.235 202.571H5.86187C5.54978 202.571 5.43912 202.157 5.70941 202.001C5.91281 201.883 5.91286 201.589 5.70951 201.472L0.458953 198.435C0.210827 198.291 0.0579834 198.026 0.0579834 197.739V197.388C0.0579834 197.102 0.210828 196.836 0.458953 196.693L4.96432 194.087C5.49894 193.778 5.49894 193.005 4.96432 192.696L0.458953 190.09C0.210827 189.947 0.0579834 189.682 0.0579834 189.395V189.044C0.0579834 188.757 0.210828 188.492 0.458954 188.348L4.96432 185.742C5.49894 185.433 5.49894 184.66 4.96432 184.352L0.458954 181.746C0.210828 181.602 0.0579844 181.337 0.0579844 181.05L0.0579839 180.699C0.0579839 180.412 0.210828 180.147 0.458954 180.003L4.96432 177.398C5.49894 177.089 5.49894 176.316 4.96432 176.007L0.458954 173.401C0.210828 173.258 0.0579844 172.992 0.0579844 172.706V172.354C0.0579844 172.067 0.210829 171.802 0.458955 171.659L4.96432 169.053C5.49894 168.744 5.49894 167.971 4.96432 167.662L0.458954 165.056C0.210829 164.913 0.0579849 164.647 0.0579849 164.361V164.01C0.0579849 163.723 0.210829 163.457 0.458955 163.314L4.96432 160.709C5.49894 160.399 5.49894 159.626 4.96432 159.317L0.458955 156.712C0.210829 156.568 0.0579849 156.303 0.0579849 156.016V155.665C0.0579849 155.378 0.210829 155.113 0.458955 154.97L4.96432 152.364C5.49894 152.054 5.49894 151.281 4.96432 150.973L0.458955 148.367C0.21083 148.223 0.0579859 147.958 0.0579859 147.671V147.32C0.0579859 147.033 0.21083 146.768 0.458955 146.625L4.96432 144.019C5.49894 143.71 5.49894 142.937 4.96432 142.628L0.458956 140.022C0.21083 139.879 0.0579859 139.614 0.0579859 139.327V138.976C0.0579859 138.689 0.21083 138.424 0.458957 138.28L4.96432 135.674C5.49894 135.365 5.49894 134.593 4.96432 134.283L0.458956 131.677C0.21083 131.534 0.0579859 131.269 0.0579859 130.982L0.0579864 130.631C0.0579864 130.344 0.210831 130.079 0.458957 129.935L4.96432 127.33C5.49894 127.02 5.49894 126.248 4.96432 125.938L0.458957 123.333C0.210831 123.189 0.0579864 122.924 0.0579864 122.637V122.286C0.0579864 121.999 0.210831 121.734 0.458957 121.591L4.96432 118.985C5.49894 118.676 5.49894 117.903 4.96432 117.594L0.458957 114.988C0.210831 114.844 0.0579869 114.58 0.0579869 114.292V113.942C0.0579869 113.654 0.210832 113.389 0.458958 113.246L4.96432 110.64C5.49894 110.331 5.49894 109.558 4.96432 109.249L0.458957 106.643C0.210831 106.5 0.0579874 106.235 0.0579874 105.948V105.597C0.0579874 105.31 0.210832 105.045 0.458958 104.901L4.96432 102.296C5.49894 101.987 5.49894 101.214 4.96432 100.904L0.458958 98.2986C0.210831 98.1555 0.0579874 97.8901 0.0579874 97.6029V97.2521C0.0579874 96.9654 0.210832 96.7 0.458958 96.5564L4.96432 93.9508C5.49894 93.6419 5.49894 92.8689 4.96432 92.5595L0.458958 89.9538C0.210832 89.8108 0.0579884 89.5454 0.0579884 89.2587V88.9073C0.0579884 88.6207 0.210833 88.3553 0.458959 88.2117L4.96432 85.606C5.49894 85.2972 5.49894 84.5242 4.96432 84.2153L0.458959 81.6096C0.210832 81.466 0.0579884 81.2006 0.0579884 80.914V80.5626C0.0579884 80.276 0.210833 80.0105 0.458959 79.867L4.96432 77.2613C5.49894 76.9524 5.49894 76.1794 4.96432 75.8705L0.458959 73.2649C0.210833 73.1213 0.057989 72.8559 0.057989 72.5692V72.2179C0.057989 71.9312 0.210833 71.6658 0.458959 71.5227L4.96432 68.9171C5.49894 68.6077 5.49894 67.8347 4.96432 67.5258L0.458959 64.9202C0.210833 64.7766 0.057989 64.5112 0.057989 64.2245V63.8737C0.057989 63.5865 0.210833 63.3211 0.45896 63.178L4.96432 60.5724C5.49894 60.263 5.49894 59.49 4.96432 59.1811L0.45896 56.5754C0.210833 56.4318 0.0579895 56.1664 0.0579895 55.8798L0.05799 55.5289C0.05799 55.2418 0.210834 54.9769 0.45896 54.8333L4.96433 52.2276C5.49894 51.9182 5.49894 51.1457 4.96433 50.8363L0.45896 48.2307C0.210834 48.0871 0.05799 47.8222 0.05799 47.535V47.1842C0.05799 46.897 0.210834 46.6321 0.458961 46.4885L4.96433 43.8829C5.49894 43.5735 5.49894 42.801 4.96433 42.4916L0.45896 39.886C0.210834 39.7424 0.05799 39.4775 0.05799 39.1903V38.8395C0.05799 38.5523 0.210835 38.2874 0.458961 38.1438L4.96433 35.5382C5.49894 35.2288 5.49894 34.4563 4.96433 34.1469L0.458961 31.5412C0.210835 31.3977 0.057991 31.1327 0.057991 30.8456L0.0579905 30.4947C0.0579905 30.2076 0.210835 29.9427 0.458961 29.7991L4.96431 27.1934C5.49894 26.884 5.49894 26.1115 4.96431 25.8021L0.458968 23.1965C0.210838 23.0529 0.057991 22.788 0.057991 22.5009V22.15C0.057991 21.8628 0.210839 21.5979 0.458969 21.4544L4.96429 18.8487C5.49894 18.5393 5.49894 17.7668 4.96429 17.4574L0.458969 14.8518C0.210838 14.7087 0.0579915 14.4433 0.0579915 14.1566V13.8053C0.0579915 13.5181 0.210839 13.2532 0.458969 13.1096L4.96429 10.504C5.49894 10.1951 5.49894 9.42209 4.96429 9.11269L0.458969 6.50755C0.210839 6.36397 0.0579915 6.09855 0.0579915 5.81189V5.46054C0.0579915 5.17339 0.210839 4.90847 0.458969 4.76489L5.86232 1.64004C5.99782 1.56168 5.99787 1.36603 5.86242 1.28716C5.6824 1.18302 5.75626 0.907486 5.9642 0.907486L89.4829 0.907482C89.6328 0.907482 89.7499 1.03538 89.7499 1.18553C89.7499 3.18249 91.3664 4.80179 93.36 4.80179C95.3537 4.80179 96.9702 3.18249 96.9702 1.18553C96.9702 1.03538 97.0873 0.907482 97.2372 0.907482L358.752 0.907471ZM89.7499 11.7557C89.7499 13.7527 91.3664 15.3715 93.36 15.3715C95.3537 15.3715 96.9702 13.7527 96.9702 11.7557C96.9702 9.75828 95.3537 8.13949 93.36 8.13949C91.3664 8.13949 89.7499 9.75828 89.7499 11.7557ZM93.36 25.9417C91.3664 25.9417 89.7499 24.3224 89.7499 22.3254C89.7499 20.3285 91.3664 18.7097 93.36 18.7097C95.3537 18.7097 96.9702 20.3285 96.9702 22.3254C96.9702 24.3224 95.3537 25.9417 93.36 25.9417ZM89.7499 32.8956C89.7499 34.8926 91.3664 36.5114 93.36 36.5114C95.3537 36.5114 96.9702 34.8926 96.9702 32.8956C96.9702 30.8982 95.3537 29.2794 93.36 29.2794C91.3664 29.2794 89.7499 30.8982 89.7499 32.8956ZM93.36 47.0816C91.3664 47.0816 89.7499 45.4628 89.7499 43.4653C89.7499 41.4684 91.3664 39.8496 93.36 39.8496C95.3537 39.8496 96.9702 41.4684 96.9702 43.4653C96.9702 45.4628 95.3537 47.0816 93.36 47.0816ZM89.7499 54.0355C89.7499 56.0325 91.3664 57.6513 93.36 57.6513C95.3537 57.6513 96.9702 56.0325 96.9702 54.0355C96.9702 52.038 95.3537 50.4193 93.36 50.4193C91.3664 50.4193 89.7499 52.038 89.7499 54.0355ZM93.36 68.2215C91.3664 68.2215 89.7499 66.6021 89.7499 64.6052C89.7499 62.6082 91.3664 60.9894 93.36 60.9894C95.3537 60.9894 96.9702 62.6082 96.9702 64.6052C96.9702 66.6021 95.3537 68.2215 93.36 68.2215ZM89.7499 75.1754C89.7499 77.1723 91.3664 78.7911 93.36 78.7911C95.3537 78.7911 96.9702 77.1723 96.9702 75.1754C96.9702 73.1779 95.3537 71.5591 93.36 71.5591C91.3664 71.5591 89.7499 73.1779 89.7499 75.1754ZM93.36 89.3613C91.3664 89.3613 89.7499 87.742 89.7499 85.7451C89.7499 83.7481 91.3664 82.1288 93.36 82.1288C95.3537 82.1288 96.9702 83.7481 96.9702 85.7451C96.9702 87.742 95.3537 89.3613 93.36 89.3613ZM89.7499 96.3153C89.7499 98.3122 91.3664 99.931 93.36 99.931C95.3537 99.931 96.9702 98.3122 96.9702 96.3153C96.9702 94.3178 95.3537 92.699 93.36 92.699C91.3664 92.699 89.7499 94.3178 89.7499 96.3153ZM93.36 110.501C91.3664 110.501 89.7499 108.882 89.7499 106.885C89.7499 104.888 91.3664 103.269 93.36 103.269C95.3537 103.269 96.9702 104.888 96.9702 106.885C96.9702 108.882 95.3537 110.501 93.36 110.501ZM89.7499 117.455C89.7499 119.452 91.3664 121.071 93.36 121.071C95.3537 121.071 96.9702 119.452 96.9702 117.455C96.9702 115.458 95.3537 113.839 93.36 113.839C91.3664 113.839 89.7499 115.458 89.7499 117.455ZM93.36 131.641C91.3664 131.641 89.7499 130.022 89.7499 128.025C89.7499 126.028 91.3664 124.409 93.36 124.409C95.3537 124.409 96.9702 126.028 96.9702 128.025C96.9702 130.022 95.3537 131.641 93.36 131.641ZM89.7499 138.595C89.7499 140.592 91.3664 142.211 93.36 142.211C95.3537 142.211 96.9702 140.592 96.9702 138.595C96.9702 136.598 95.3537 134.979 93.36 134.979C91.3664 134.979 89.7499 136.598 89.7499 138.595ZM93.36 152.781C91.3664 152.781 89.7499 151.162 89.7499 149.165C89.7499 147.168 91.3664 145.548 93.36 145.548C95.3537 145.548 96.9702 147.168 96.9702 149.165C96.9702 151.162 95.3537 152.781 93.36 152.781ZM89.7499 159.735C89.7499 161.732 91.3664 163.351 93.36 163.351C95.3537 163.351 96.9702 161.732 96.9702 159.735C96.9702 157.737 95.3537 156.119 93.36 156.119C91.3664 156.119 89.7499 157.737 89.7499 159.735ZM93.36 173.92C91.3664 173.92 89.7499 172.302 89.7499 170.305C89.7499 168.308 91.3664 166.688 93.36 166.688C95.3537 166.688 96.9702 168.308 96.9702 170.305C96.9702 172.302 95.3537 173.92 93.36 173.92ZM89.7499 180.875C89.7499 182.872 91.3664 184.491 93.36 184.491C95.3537 184.491 96.9702 182.872 96.9702 180.874C96.9702 178.877 95.3537 177.259 93.36 177.259C91.3664 177.259 89.7499 178.877 89.7499 180.875ZM93.36 195.061C91.3664 195.061 89.7499 193.441 89.7499 191.444C89.7499 189.447 91.3664 187.828 93.36 187.828C95.3537 187.828 96.9702 189.447 96.9702 191.444C96.9702 193.441 95.3537 195.061 93.36 195.061Z\" fill=\"#4E8F43\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_107_83\">\\n<rect width=\"365\" height=\"202.223\" fill=\"white\" transform=\"translate(0 0.7771)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"24.08px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(242, 233, 22)\"},children:\"Zipline\"})}),className:\"framer-14k4h73\",\"data-framer-name\":\"Zipline\",fonts:[\"FS;Satoshi-bold\"],style:{rotate:-90},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"13.95px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"600m\"})}),className:\"framer-8kwt8e\",\"data-framer-name\":\"600m\",fonts:[\"FS;Satoshi-bold\"],style:{rotate:-90},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"24.08px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(242, 233, 22)\"},children:\"Zipline\"})}),className:\"framer-1lv6xwy\",\"data-framer-name\":\"Zipline\",fonts:[\"FS;Satoshi-bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"5.11px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"MOST POPULAR\"})}),className:\"framer-1uj7nu8\",\"data-framer-name\":\"MOST POPULAR\",fonts:[\"FS;Satoshi-bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HaI5fMROZ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+912+0+0+0+0+20+410+.459320068359375),sizes:\"57.9934px\",src:\"https://framerusercontent.com/images/fKK4aewwHzQ3dWNNJKuO44cg3OY.png\",srcSet:\"https://framerusercontent.com/images/fKK4aewwHzQ3dWNNJKuO44cg3OY.png?scale-down-to=512 512w,https://framerusercontent.com/images/fKK4aewwHzQ3dWNNJKuO44cg3OY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/fKK4aewwHzQ3dWNNJKuO44cg3OY.png 1181w\"}},r2222MykL:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+912+0+0+0+0+20+353+6),sizes:\"57.9934px\",src:\"https://framerusercontent.com/images/fKK4aewwHzQ3dWNNJKuO44cg3OY.png\",srcSet:\"https://framerusercontent.com/images/fKK4aewwHzQ3dWNNJKuO44cg3OY.png?scale-down-to=512 512w,https://framerusercontent.com/images/fKK4aewwHzQ3dWNNJKuO44cg3OY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/fKK4aewwHzQ3dWNNJKuO44cg3OY.png 1181w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"57.9934px\",src:\"https://framerusercontent.com/images/fKK4aewwHzQ3dWNNJKuO44cg3OY.png\",srcSet:\"https://framerusercontent.com/images/fKK4aewwHzQ3dWNNJKuO44cg3OY.png?scale-down-to=512 512w,https://framerusercontent.com/images/fKK4aewwHzQ3dWNNJKuO44cg3OY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/fKK4aewwHzQ3dWNNJKuO44cg3OY.png 1181w\"},className:\"framer-lruh71\",\"data-framer-name\":\"KAP Transparent 1\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HaI5fMROZ:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+912+0+0+0+0+20+410+27.512298583984375),positionX:\"center\",positionY:\"center\",sizes:\"119.3983px\",src:\"https://framerusercontent.com/images/lm1XWe9WcRcDSeuxJTRHHCpB7Go.png\",srcSet:\"https://framerusercontent.com/images/lm1XWe9WcRcDSeuxJTRHHCpB7Go.png 480w\"}},r2222MykL:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+912+0+0+0+0+20+353+27.512298583984375),positionX:\"center\",positionY:\"center\",sizes:\"119.3983px\",src:\"https://framerusercontent.com/images/lm1XWe9WcRcDSeuxJTRHHCpB7Go.png\",srcSet:\"https://framerusercontent.com/images/lm1XWe9WcRcDSeuxJTRHHCpB7Go.png 480w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"119.3983px\",src:\"https://framerusercontent.com/images/lm1XWe9WcRcDSeuxJTRHHCpB7Go.png\",srcSet:\"https://framerusercontent.com/images/lm1XWe9WcRcDSeuxJTRHHCpB7Go.png 480w\"},className:\"framer-1p5dt9d\",\"data-framer-name\":\"Rectangle 1\"})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-tkf5zm\",\"data-framer-name\":\"Star 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:8,intrinsicWidth:8,svg:'<svg width=\"8\" height=\"8\" viewBox=\"0 0 8 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M4.22971 0.684364C4.25346 0.611273 4.35687 0.611273 4.38062 0.684364L5.07107 2.80935C5.08169 2.84204 5.11215 2.86417 5.14652 2.86417L7.38087 2.86417C7.45772 2.86417 7.48967 2.96252 7.4275 3.00769L5.61987 4.321C5.59207 4.34121 5.58043 4.37702 5.59105 4.4097L6.2815 6.53469C6.30525 6.60778 6.2216 6.66856 6.15942 6.62339L4.3518 5.31008C4.32399 5.28987 4.28634 5.28987 4.25853 5.31008L2.45091 6.62339C2.38874 6.66856 2.30508 6.60778 2.32883 6.53469L3.01928 4.4097C3.0299 4.37702 3.01826 4.34121 2.99046 4.321L1.18284 3.00769C1.12066 2.96252 1.15261 2.86417 1.22947 2.86417L3.46381 2.86417C3.49818 2.86417 3.52864 2.84204 3.53926 2.80935L4.22971 0.684364Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-z0n1u6\",\"data-framer-name\":\"Star 3\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:8,intrinsicWidth:8,svg:'<svg width=\"8\" height=\"8\" viewBox=\"0 0 8 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M3.63932 0.684364C3.66307 0.611273 3.76648 0.611273 3.79022 0.684364L4.48068 2.80935C4.4913 2.84204 4.52176 2.86417 4.55613 2.86417L6.79047 2.86417C6.86733 2.86417 6.89928 2.96252 6.8371 3.00769L5.02948 4.321C5.00167 4.34121 4.99004 4.37702 5.00066 4.4097L5.69111 6.53469C5.71486 6.60778 5.6312 6.66856 5.56903 6.62339L3.76141 5.31008C3.7336 5.28987 3.69595 5.28987 3.66814 5.31008L1.86052 6.62339C1.79834 6.66856 1.71469 6.60778 1.73844 6.53469L2.42889 4.4097C2.43951 4.37702 2.42787 4.34121 2.40007 4.321L0.592442 3.00769C0.530267 2.96252 0.562221 2.86417 0.639074 2.86417L2.87342 2.86417C2.90779 2.86417 2.93825 2.84204 2.94887 2.80935L3.63932 0.684364Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HaI5fMROZ:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"8.55px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Explore Kerala's Longest \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"8.55px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Zipline - 605 Meters of Thrilling Excitement Await!\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2VuZXJhbCBTYW5zIFZhcmlhYmxlLTUwMA==\",\"--framer-font-family\":'\"General Sans Variable\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"5.55px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2VuZXJhbCBTYW5zIFZhcmlhYmxlLTUwMA==\",\"--framer-font-family\":'\"General Sans Variable\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"5.55px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2VuZXJhbCBTYW5zIFZhcmlhYmxlLTUwMA==\",\"--framer-font-family\":'\"General Sans Variable\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"5.55px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2VuZXJhbCBTYW5zIFZhcmlhYmxlLTUwMA==\",\"--framer-font-family\":'\"General Sans Variable\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"5.55px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]})},r2222MykL:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"8.55px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Explore Kerala's Longest \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"8.55px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Zipline - 605 Meters of Thrilling Excitement Await!\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2VuZXJhbCBTYW5zIFZhcmlhYmxlLTUwMA==\",\"--framer-font-family\":'\"General Sans Variable\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"5.55px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2VuZXJhbCBTYW5zIFZhcmlhYmxlLTUwMA==\",\"--framer-font-family\":'\"General Sans Variable\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"5.55px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2VuZXJhbCBTYW5zIFZhcmlhYmxlLTUwMA==\",\"--framer-font-family\":'\"General Sans Variable\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"5.55px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2VuZXJhbCBTYW5zIFZhcmlhYmxlLTUwMA==\",\"--framer-font-family\":'\"General Sans Variable\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"5.55px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"5.55px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Explore Kerala's Lengthiest \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"5.55px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Zipline - 605 Meters of Thrilling Excitement Await!\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2VuZXJhbCBTYW5zIFZhcmlhYmxlLTUwMA==\",\"--framer-font-family\":'\"General Sans Variable\", sans-serif',\"--framer-font-size\":\"5.55px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2VuZXJhbCBTYW5zIFZhcmlhYmxlLTUwMA==\",\"--framer-font-family\":'\"General Sans Variable\", sans-serif',\"--framer-font-size\":\"5.55px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2VuZXJhbCBTYW5zIFZhcmlhYmxlLTUwMA==\",\"--framer-font-family\":'\"General Sans Variable\", sans-serif',\"--framer-font-size\":\"5.55px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2VuZXJhbCBTYW5zIFZhcmlhYmxlLTUwMA==\",\"--framer-font-family\":'\"General Sans Variable\", sans-serif',\"--framer-font-size\":\"5.55px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-mzyrwv\",\"data-framer-name\":\"Explore Kerala's Lengthiest Zipline - 605 Meters of Thrilling Excitement Await!\",fonts:[\"FS;Satoshi-bold\",\"GF;General Sans Variable-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-inf72r\",\"data-framer-name\":\"Ride Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HaI5fMROZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 93, 110)\"},children:\"Welcome to Wayanad\u2019s #1 Destination!\"})})},I0ELSQpF1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 93, 110)\"},children:\"Welcome to Wayanad\u2019s #1 Destination!\"})})},r2222MykL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 93, 110)\"},children:\"Welcome to Wayanad\u2019s #1 Destination!\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 93, 110)\"},children:\"Welcome to Wayanad\u2019s #1 Destination!\"})}),className:\"framer-d9tbev\",\"data-framer-name\":\"Step into a world of magic, where joy springs to life\",fonts:[\"FS;Satoshi-bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{r2222MykL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(72, 72, 72)\"},children:\"Enjoy beautiful gardens, breathtaking views of the reservoir, dam, and islands, along with exciting rides and attractions\\xa0for\\xa0all\\xa0ages.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(72, 72, 72)\"},children:\"Enjoy beautiful gardens, breathtaking views of the reservoir, dam, and islands, along with exciting rides and attractions\\xa0for\\xa0all\\xa0ages.\"})}),className:\"framer-pvy3c6\",\"data-framer-name\":\"Find the perfect amusement park in Wayanad for your family or friends. Whether you're looking for rides that will get your heart racing or attractions that are perfect for kids, we have you covered.\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-dul8q8 hidden-p5288h hidden-nhaa30\",style:{transformPerspective:1200},whileHover:animation,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-62mrx8\",\"data-framer-name\":\"2222 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:327,intrinsicWidth:591,svg:'<svg width=\"591\" height=\"327\" viewBox=\"0 0 591 327\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_107_83)\">\\n<mask id=\"mask0_107_83\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"591\" height=\"327\">\\n<path d=\"M0.00012207 0.211151L0.00012207 326.394L590.215 326.394V0.211151L0.00012207 0.211151Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask0_107_83)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M580.113 0.210938C580.449 0.210938 580.568 0.657304 580.277 0.82571C580.058 0.952423 580.058 1.26879 580.277 1.3955L589.014 6.44847C589.415 6.68064 589.662 7.10902 589.662 7.57336V8.1415C589.662 8.60506 589.415 9.03425 589.014 9.26642L581.729 13.479C580.864 13.9793 580.864 15.2293 581.729 15.7288L589.014 19.9422C589.415 20.1743 589.662 20.6027 589.662 21.067V21.6352C589.662 22.0987 589.415 22.5279 589.014 22.7593L581.729 26.9727C580.864 27.473 580.864 28.7229 581.729 29.2224L589.014 33.4358C589.415 33.668 589.662 34.0964 589.662 34.5607V35.128C589.662 35.5924 589.415 36.0216 589.014 36.2529L581.729 40.4663C580.864 40.9666 580.864 42.2158 581.729 42.7161L589.014 46.9295C589.415 47.1616 589.662 47.59 589.662 48.0544V48.6217C589.662 49.086 589.415 49.5144 589.014 49.7466L581.729 53.96C580.864 54.4603 580.864 55.7094 581.729 56.2097L589.014 60.4231C589.415 60.6553 589.662 61.0837 589.662 61.548V62.1154C589.662 62.5797 589.415 63.0081 589.014 63.2402L581.729 67.4536C580.864 67.9539 580.864 69.2031 581.729 69.7034L589.014 73.9168C589.415 74.149 589.662 74.5773 589.662 75.0417V75.609C589.662 76.0734 589.415 76.5017 589.014 76.7339L581.729 80.9473C580.864 81.4476 580.864 82.6967 581.729 83.1971L589.014 87.4105C589.415 87.6426 589.662 88.071 589.662 88.5353V89.1027C589.662 89.567 589.415 89.9954 589.014 90.2276L581.729 94.441C580.864 94.9404 580.864 96.1904 581.729 96.6907L589.014 100.904C589.415 101.136 589.662 101.565 589.662 102.029V102.596C589.662 103.06 589.415 103.489 589.014 103.721L581.729 107.935C580.864 108.434 580.864 109.684 581.729 110.184L589.014 114.398C589.415 114.629 589.662 115.058 589.662 115.522V116.09C589.662 116.554 589.415 116.983 589.014 117.215L581.729 121.428C580.864 121.928 580.864 123.178 581.729 123.677L589.014 127.891C589.415 128.123 589.662 128.552 589.662 129.015V129.584C589.662 130.047 589.415 130.476 589.014 130.709L581.729 134.922C580.864 135.421 580.864 136.671 581.729 137.171L589.014 141.384C589.415 141.616 589.662 142.046 589.662 142.509V143.077C589.662 143.541 589.415 143.97 589.014 144.202L581.729 148.416C580.864 148.915 580.864 150.165 581.729 150.665L589.014 154.878C589.415 155.11 589.662 155.539 589.662 156.003V156.571C589.662 157.035 589.415 157.464 589.014 157.695L581.729 161.908C580.864 162.409 580.864 163.659 581.729 164.158L589.014 168.372C589.415 168.604 589.662 169.033 589.662 169.496V170.064C589.662 170.528 589.415 170.957 589.014 171.189L581.729 175.402C580.864 175.902 580.864 177.152 581.729 177.652L589.014 181.865C589.415 182.097 589.662 182.526 589.662 182.99V183.557C589.662 184.022 589.415 184.45 589.014 184.682L581.729 188.896C580.864 189.396 580.864 190.645 581.729 191.146L589.014 195.359C589.415 195.591 589.662 196.019 589.662 196.484V197.051C589.662 197.515 589.415 197.944 589.014 198.176L581.729 202.389C580.864 202.89 580.864 204.139 581.729 204.639L589.014 208.853C589.415 209.085 589.662 209.513 589.662 209.977V210.545C589.662 211.009 589.415 211.438 589.014 211.67L581.729 215.883C580.864 216.383 580.864 217.633 581.729 218.133L589.014 222.346C589.415 222.578 589.662 223.007 589.662 223.471V224.038C589.662 224.503 589.415 224.931 589.014 225.163L581.729 229.377C580.864 229.877 580.864 231.126 581.729 231.626L589.014 235.84C589.415 236.072 589.662 236.5 589.662 236.965V237.532C589.662 237.996 589.415 238.425 589.014 238.657L581.729 242.87C580.864 243.371 580.864 244.62 581.729 245.12L589.014 249.334C589.415 249.566 589.662 249.994 589.662 250.458V251.026C589.662 251.489 589.415 251.918 589.014 252.151L581.729 256.364C580.864 256.864 580.864 258.113 581.729 258.614L589.014 262.827C589.415 263.059 589.662 263.488 589.662 263.951V264.519C589.662 264.983 589.415 265.412 589.014 265.644L581.729 269.858C580.864 270.357 580.864 271.607 581.729 272.107L589.014 276.321C589.415 276.552 589.662 276.981 589.662 277.445V278.013C589.662 278.477 589.415 278.906 589.014 279.138L581.729 283.351C580.864 283.851 580.864 285.101 581.729 285.6L589.014 289.814C589.415 290.046 589.662 290.475 589.662 290.939V291.507C589.662 291.97 589.415 292.399 589.014 292.631L581.729 296.845C580.864 297.345 580.864 298.594 581.729 299.094L589.014 303.307C589.415 303.54 589.662 303.969 589.662 304.432V305C589.662 305.464 589.415 305.893 589.014 306.124L581.729 310.338C580.864 310.838 580.864 312.088 581.729 312.588L589.014 316.801C589.415 317.033 589.662 317.462 589.662 317.926V318.493C589.662 318.958 589.415 319.386 589.014 319.618L580.523 324.529C580.194 324.719 580.194 325.194 580.523 325.384C580.96 325.637 580.781 326.306 580.277 326.306H157.636C157.162 326.306 156.803 325.881 156.803 325.406C156.803 322.177 154.189 319.559 150.966 319.559C147.742 319.559 145.128 322.177 145.128 325.406C145.128 325.881 144.77 326.306 144.295 326.306H9.4788C8.97413 326.306 8.79519 325.637 9.23226 325.384C9.56116 325.194 9.56125 324.719 9.23242 324.529L0.742129 319.618C0.340902 319.386 0.09375 318.958 0.09375 318.493V317.926C0.09375 317.462 0.340903 317.033 0.742129 316.801L8.02744 312.588C8.89193 312.088 8.89193 310.838 8.02744 310.338L0.742129 306.124C0.340902 305.893 0.09375 305.464 0.09375 305V304.432C0.09375 303.969 0.340903 303.54 0.74213 303.307L8.02744 299.094C8.89193 298.594 8.89193 297.345 8.02744 296.845L0.742131 292.632C0.340904 292.399 0.0937516 291.97 0.0937516 291.507L0.0937508 290.939C0.0937508 290.475 0.340903 290.046 0.74213 289.814L8.02744 285.6C8.89193 285.101 8.89193 283.851 8.02744 283.351L0.742131 279.138C0.340904 278.906 0.0937516 278.477 0.0937516 278.013V277.445C0.0937516 276.981 0.340905 276.552 0.742132 276.321L8.02744 272.107C8.89193 271.607 8.89193 270.357 8.02744 269.858L0.742131 265.644C0.340905 265.412 0.0937524 264.983 0.0937524 264.519V263.952C0.0937524 263.488 0.340905 263.059 0.742132 262.827L8.02744 258.614C8.89193 258.113 8.89193 256.864 8.02744 256.364L0.742132 252.151C0.340905 251.918 0.0937524 251.489 0.0937524 251.026V250.458C0.0937524 249.994 0.340906 249.566 0.742132 249.334L8.02744 245.12C8.89193 244.62 8.89193 243.37 8.02744 242.87L0.742133 238.657C0.340906 238.425 0.0937541 237.996 0.0937541 237.532V236.965C0.0937541 236.5 0.340906 236.072 0.742133 235.84L8.02744 231.626C8.89193 231.126 8.89193 229.877 8.02744 229.377L0.742133 225.163C0.340906 224.931 0.0937541 224.503 0.0937541 224.038V223.471C0.0937541 223.007 0.340907 222.578 0.742135 222.346L8.02744 218.133C8.89193 217.633 8.89193 216.383 8.02744 215.883L0.742134 211.67C0.340906 211.438 0.0937541 211.009 0.0937541 210.545L0.0937549 209.977C0.0937549 209.513 0.340908 209.085 0.742135 208.853L8.02743 204.639C8.89193 204.139 8.89193 202.89 8.02743 202.389L0.742135 198.176C0.340908 197.944 0.0937549 197.515 0.0937549 197.051V196.484C0.0937549 196.019 0.340908 195.591 0.742136 195.359L8.02743 191.146C8.89193 190.645 8.89193 189.396 8.02743 188.896L0.742136 184.682C0.340908 184.45 0.0937557 184.022 0.0937557 183.557V182.99C0.0937557 182.526 0.34091 182.097 0.742137 181.865L8.02744 177.652C8.89193 177.152 8.89193 175.902 8.02743 175.402L0.742136 171.189C0.340909 170.957 0.0937565 170.528 0.0937565 170.064V169.496C0.0937565 169.032 0.34091 168.604 0.742138 168.372L8.02744 164.158C8.89193 163.659 8.89193 162.409 8.02744 161.908L0.742137 157.695C0.340909 157.464 0.0937565 157.034 0.0937565 156.57V156.003C0.0937565 155.539 0.340911 155.11 0.742138 154.878L8.02744 150.665C8.89193 150.165 8.89193 148.915 8.02744 148.415L0.742138 144.201C0.340911 143.97 0.0937582 143.541 0.0937582 143.077V142.509C0.0937582 142.046 0.340911 141.616 0.742138 141.384L8.02744 137.171C8.89193 136.671 8.89193 135.421 8.02744 134.922L0.742138 130.709C0.340911 130.476 0.0937582 130.047 0.0937582 129.584V129.015C0.0937582 128.552 0.340911 128.123 0.742139 127.891L8.02744 123.677C8.89193 123.178 8.89193 121.928 8.02744 121.428L0.742138 117.215C0.340911 116.983 0.093759 116.554 0.093759 116.09V115.522C0.093759 115.058 0.340912 114.629 0.742139 114.398L8.02744 110.184C8.89193 109.684 8.89193 108.434 8.02744 107.935L0.742138 103.721C0.340911 103.489 0.093759 103.06 0.093759 102.596V102.029C0.093759 101.565 0.340912 101.135 0.74214 100.904L8.02744 96.6907C8.89193 96.1904 8.89193 94.9404 8.02744 94.441L0.74214 90.2276C0.340912 89.9954 0.0937598 89.5662 0.0937598 89.1027L0.0937606 88.5353C0.0937606 88.071 0.340914 87.6426 0.742141 87.4105L8.02745 83.1971C8.89193 82.6967 8.89193 81.4476 8.02745 80.9473L0.74214 76.7339C0.340913 76.5017 0.0937606 76.0734 0.0937606 75.609V75.0417C0.0937606 74.5773 0.340914 74.149 0.742142 73.9168L8.02745 69.7034C8.89193 69.2031 8.89193 67.9539 8.02745 67.4536L0.742141 63.2402C0.340913 63.0081 0.0937606 62.5797 0.0937606 62.1154V61.548C0.0937606 61.0837 0.340915 60.6553 0.742142 60.4231L8.02745 56.2097C8.89193 55.7094 8.89193 54.4603 8.02745 53.96L0.742142 49.7466C0.340915 49.5144 0.0937622 49.086 0.0937622 48.6217L0.0937614 48.0544C0.0937614 47.59 0.340915 47.1616 0.742142 46.9295L8.02742 42.7161C8.89193 42.2158 8.89193 40.9666 8.02741 40.4663L0.742154 36.2529C0.34092 36.0207 0.0937622 35.5924 0.0937622 35.128V34.5607C0.0937622 34.0964 0.340921 33.668 0.742155 33.4358L8.02739 29.2224C8.89193 28.7221 8.89193 27.473 8.02739 26.9727L0.742155 22.7593C0.34092 22.5279 0.0937631 22.0987 0.0937631 21.6352V21.067C0.0937631 20.6027 0.340921 20.1743 0.742155 19.9422L8.02739 15.7288C8.89193 15.2293 8.89193 13.9793 8.02738 13.479L0.742155 9.26642C0.340921 9.03425 0.0937631 8.60506 0.0937631 8.14152V7.57338C0.0937631 7.10904 0.340921 6.68066 0.742156 6.44849L9.47953 1.39552C9.69864 1.26881 9.69872 0.952439 9.47969 0.824909C9.18859 0.656505 9.30802 0.210962 9.64427 0.210962L144.696 0.210956C144.939 0.210956 145.128 0.417774 145.128 0.660572C145.128 3.8897 147.742 6.50816 150.966 6.50816C154.189 6.50816 156.803 3.8897 156.803 0.660571C156.803 0.417773 156.993 0.210955 157.235 0.210955L580.113 0.210938ZM145.128 17.7529C145.128 20.982 147.742 23.5996 150.966 23.5996C154.189 23.5996 156.803 20.982 156.803 17.7529C156.803 14.5229 154.189 11.9053 150.966 11.9053C147.742 11.9053 145.128 14.5229 145.128 17.7529ZM150.966 40.6919C147.742 40.6919 145.128 38.0735 145.128 34.8444C145.128 31.6152 147.742 28.9976 150.966 28.9976C154.189 28.9976 156.803 31.6152 156.803 34.8444C156.803 38.0735 154.189 40.6919 150.966 40.6919ZM145.128 51.9367C145.128 55.1658 147.742 57.7834 150.966 57.7834C154.189 57.7834 156.803 55.1658 156.803 51.9367C156.803 48.7067 154.189 46.0891 150.966 46.0891C147.742 46.0891 145.128 48.7067 145.128 51.9367ZM150.966 74.8757C147.742 74.8757 145.128 72.2581 145.128 69.0281C145.128 65.799 147.742 63.1814 150.966 63.1814C154.189 63.1814 156.803 65.799 156.803 69.0281C156.803 72.2581 154.189 74.8757 150.966 74.8757ZM145.128 86.1204C145.128 89.3496 147.742 91.9672 150.966 91.9672C154.189 91.9672 156.803 89.3496 156.803 86.1204C156.803 82.8905 154.189 80.2729 150.966 80.2729C147.742 80.2729 145.128 82.8905 145.128 86.1204ZM150.966 109.059C147.742 109.059 145.128 106.441 145.128 103.212C145.128 99.9828 147.742 97.3652 150.966 97.3652C154.189 97.3652 156.803 99.9828 156.803 103.212C156.803 106.441 154.189 109.059 150.966 109.059ZM145.128 120.304C145.128 123.533 147.742 126.151 150.966 126.151C154.189 126.151 156.803 123.533 156.803 120.304C156.803 117.074 154.189 114.457 150.966 114.457C147.742 114.457 145.128 117.074 145.128 120.304ZM150.966 143.243C147.742 143.243 145.128 140.625 145.128 137.396C145.128 134.167 147.742 131.548 150.966 131.548C154.189 131.548 156.803 134.167 156.803 137.396C156.803 140.625 154.189 143.243 150.966 143.243ZM145.128 154.488C145.128 157.717 147.742 160.335 150.966 160.335C154.189 160.335 156.803 157.717 156.803 154.488C156.803 151.258 154.189 148.64 150.966 148.64C147.742 148.64 145.128 151.258 145.128 154.488ZM150.966 177.427C147.742 177.427 145.128 174.809 145.128 171.579C145.128 168.35 147.742 165.732 150.966 165.732C154.189 165.732 156.803 168.35 156.803 171.579C156.803 174.809 154.189 177.427 150.966 177.427ZM145.128 188.672C145.128 191.901 147.742 194.519 150.966 194.519C154.189 194.519 156.803 191.901 156.803 188.672C156.803 185.442 154.189 182.824 150.966 182.824C147.742 182.824 145.128 185.442 145.128 188.672ZM150.966 211.611C147.742 211.611 145.128 208.992 145.128 205.763C145.128 202.534 147.742 199.916 150.966 199.916C154.189 199.916 156.803 202.534 156.803 205.763C156.803 208.992 154.189 211.611 150.966 211.611ZM145.128 222.855C145.128 226.085 147.742 228.702 150.966 228.702C154.189 228.702 156.803 226.085 156.803 222.856C156.803 219.626 154.189 217.008 150.966 217.008C147.742 217.008 145.128 219.626 145.128 222.855ZM150.966 245.795C147.742 245.795 145.128 243.176 145.128 239.947C145.128 236.718 147.742 234.099 150.966 234.099C154.189 234.099 156.803 236.718 156.803 239.947C156.803 243.176 154.189 245.795 150.966 245.795ZM145.128 257.039C145.128 260.268 147.742 262.886 150.966 262.886C154.189 262.886 156.803 260.268 156.803 257.039C156.803 253.809 154.189 251.192 150.966 251.192C147.742 251.192 145.128 253.809 145.128 257.039ZM150.966 279.978C147.742 279.978 145.128 277.36 145.128 274.131C145.128 270.902 147.742 268.283 150.966 268.283C154.189 268.283 156.803 270.902 156.803 274.131C156.803 277.36 154.189 279.978 150.966 279.978ZM145.128 291.223C145.128 294.452 147.742 297.07 150.966 297.07C154.189 297.07 156.803 294.452 156.803 291.222C156.803 287.993 154.189 285.376 150.966 285.376C147.742 285.376 145.128 287.993 145.128 291.223ZM150.966 314.162C147.742 314.162 145.128 311.544 145.128 308.315C145.128 305.085 147.742 302.467 150.966 302.467C154.189 302.467 156.803 305.085 156.803 308.315C156.803 311.544 154.189 314.162 150.966 314.162Z\" fill=\"#4E8F43\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_107_83\">\\n<rect width=\"590.215\" height=\"327\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"38.94px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(242, 233, 22)\"},children:\"Zipline\"})}),className:\"framer-d6b35r\",\"data-framer-name\":\"Zipline\",fonts:[\"FS;Satoshi-bold\"],style:{rotate:-90},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"22.55px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"600m\"})}),className:\"framer-gl03rv\",\"data-framer-name\":\"600m\",fonts:[\"FS;Satoshi-bold\"],style:{rotate:-90},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"38.94px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(242, 233, 22)\"},children:\"Zipline\"})}),className:\"framer-1a7az9u\",\"data-framer-name\":\"Zipline\",fonts:[\"FS;Satoshi-bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"8.27px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"MOST POPULAR\"})}),className:\"framer-1s2abo7\",\"data-framer-name\":\"MOST POPULAR\",fonts:[\"FS;Satoshi-bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I0ELSQpF1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+799+0+0+50+0+0+397+.11444091796875),sizes:\"93.777px\",src:\"https://framerusercontent.com/images/fKK4aewwHzQ3dWNNJKuO44cg3OY.png\",srcSet:\"https://framerusercontent.com/images/fKK4aewwHzQ3dWNNJKuO44cg3OY.png?scale-down-to=512 512w,https://framerusercontent.com/images/fKK4aewwHzQ3dWNNJKuO44cg3OY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/fKK4aewwHzQ3dWNNJKuO44cg3OY.png 1181w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+820+0+0+50+0+0+469+.11444091796875),sizes:\"93.777px\",src:\"https://framerusercontent.com/images/fKK4aewwHzQ3dWNNJKuO44cg3OY.png\",srcSet:\"https://framerusercontent.com/images/fKK4aewwHzQ3dWNNJKuO44cg3OY.png?scale-down-to=512 512w,https://framerusercontent.com/images/fKK4aewwHzQ3dWNNJKuO44cg3OY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/fKK4aewwHzQ3dWNNJKuO44cg3OY.png 1181w\"},className:\"framer-8o5i95\",\"data-framer-name\":\"KAP Transparent 1\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I0ELSQpF1:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+799+0+0+50+0+0+397+43.859802246093295),positionX:\"center\",positionY:\"center\",sizes:\"193.0703px\",src:\"https://framerusercontent.com/images/XXdomkx6maYsV3gwo7VaQw9QQ.png\",srcSet:\"https://framerusercontent.com/images/XXdomkx6maYsV3gwo7VaQw9QQ.png 776w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+820+0+0+50+0+0+469+43.859802246093295),positionX:\"center\",positionY:\"center\",sizes:\"193.0703px\",src:\"https://framerusercontent.com/images/XXdomkx6maYsV3gwo7VaQw9QQ.png\",srcSet:\"https://framerusercontent.com/images/XXdomkx6maYsV3gwo7VaQw9QQ.png 776w\"},className:\"framer-1c2qi0o\",\"data-framer-name\":\"Rectangle 1\"})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-qp5uah\",\"data-framer-name\":\"Star 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:13,intrinsicWidth:12,svg:'<svg width=\"12\" height=\"13\" viewBox=\"0 0 12 13\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M5.77721 1.29713C5.81561 1.17894 5.98282 1.17894 6.02123 1.29713L7.1377 4.7333C7.15488 4.78615 7.20413 4.82194 7.25971 4.82194L10.8727 4.82194C10.997 4.82194 11.0487 4.98096 10.9481 5.05401L8.02514 7.17768C7.98017 7.21035 7.96136 7.26825 7.97853 7.32111L9.09501 10.7573C9.13341 10.8755 8.99814 10.9737 8.8976 10.9007L5.97462 8.77703C5.92966 8.74437 5.86878 8.74437 5.82381 8.77703L2.90084 10.9007C2.8003 10.9737 2.66502 10.8755 2.70342 10.7573L3.8199 7.32111C3.83708 7.26825 3.81826 7.21035 3.7733 7.17768L0.850323 5.05401C0.749783 4.98096 0.801454 4.82194 0.925728 4.82194L4.53873 4.82194C4.5943 4.82194 4.64356 4.78615 4.66073 4.7333L5.77721 1.29713Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1gxlbzu\",\"data-framer-name\":\"Star 3\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:13,intrinsicWidth:13,svg:'<svg width=\"13\" height=\"13\" viewBox=\"0 0 13 13\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M6.37584 1.29713C6.41425 1.17894 6.58146 1.17894 6.61986 1.29713L7.73634 4.7333C7.75351 4.78615 7.80277 4.82194 7.85834 4.82194L11.4713 4.82194C11.5956 4.82194 11.6473 4.98096 11.5467 5.05401L8.62377 7.17768C8.57881 7.21035 8.55999 7.26825 8.57717 7.32111L9.69364 10.7573C9.73205 10.8755 9.59677 10.9737 9.49623 10.9007L6.57326 8.77703C6.52829 8.74437 6.46741 8.74437 6.42245 8.77703L3.49947 10.9007C3.39893 10.9737 3.26366 10.8755 3.30206 10.7573L4.41854 7.32111C4.43571 7.26825 4.4169 7.21035 4.37193 7.17768L1.44896 5.05401C1.34842 4.98096 1.40009 4.82194 1.52436 4.82194L5.13736 4.82194C5.19294 4.82194 5.24219 4.78615 5.25937 4.7333L6.37584 1.29713Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Explore Kerala's Longest \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Zipline - 605 Meters of Thrilling Excitement Await!\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2VuZXJhbCBTYW5zIFZhcmlhYmxlLTUwMA==\",\"--framer-font-family\":'\"General Sans Variable\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"8.98px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2VuZXJhbCBTYW5zIFZhcmlhYmxlLTUwMA==\",\"--framer-font-family\":'\"General Sans Variable\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"8.98px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2VuZXJhbCBTYW5zIFZhcmlhYmxlLTUwMA==\",\"--framer-font-family\":'\"General Sans Variable\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"8.98px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2VuZXJhbCBTYW5zIFZhcmlhYmxlLTUwMA==\",\"--framer-font-family\":'\"General Sans Variable\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"8.98px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-1amtpx3\",\"data-framer-name\":\"Explore Kerala's Lengthiest Zipline - 605 Meters of Thrilling Excitement Await!\",fonts:[\"FS;Satoshi-medium\",\"GF;General Sans Variable-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed4()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fr9c24 hidden-nhaa30\",\"data-framer-name\":\"Ride Photo -3\",children:[isDisplayed5()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1doqxl hidden-p5288h\",\"data-framer-name\":\"tile3\",whileHover:animation1,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-184aeyj\",\"data-framer-name\":\"Group 7\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-59kly1\",\"data-framer-name\":\"Rectangle 8\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9vwbl0\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\"},children:\"VR Zone\"})}),className:\"framer-1cz4dpq\",\"data-framer-name\":\"Bungee Trampoline\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"Experience the high-thrill snow roller coaster ride with friends/family. Teleport to stunning other worlds!\"})}),className:\"framer-1klzfdc\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I0ELSQpF1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+799+0+0+50+725+0+0+21.500000000000085+377-375),pixelHeight:1604,pixelWidth:2866,sizes:\"255px\",src:\"https://framerusercontent.com/images/KLdjDvm3ykxA4ypSl5gVyV4ho8.jpg\",srcSet:\"https://framerusercontent.com/images/KLdjDvm3ykxA4ypSl5gVyV4ho8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/KLdjDvm3ykxA4ypSl5gVyV4ho8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/KLdjDvm3ykxA4ypSl5gVyV4ho8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/KLdjDvm3ykxA4ypSl5gVyV4ho8.jpg 2866w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+820+0+0+50+797+53+21.500000000000085+-22),pixelHeight:1604,pixelWidth:2866,sizes:\"255px\",src:\"https://framerusercontent.com/images/KLdjDvm3ykxA4ypSl5gVyV4ho8.jpg\",srcSet:\"https://framerusercontent.com/images/KLdjDvm3ykxA4ypSl5gVyV4ho8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/KLdjDvm3ykxA4ypSl5gVyV4ho8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/KLdjDvm3ykxA4ypSl5gVyV4ho8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/KLdjDvm3ykxA4ypSl5gVyV4ho8.jpg 2866w\"},className:\"framer-1hytzu9\",\"data-framer-name\":\"Rectangle 3\"})})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-151knne\",\"data-framer-name\":\"Group 11\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:49,intrinsicWidth:49,svg:'<svg width=\"49\" height=\"49\" viewBox=\"0 0 49 49\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<circle cx=\"24.5\" cy=\"24.5\" r=\"23\" fill=\"#AAFF54\" stroke=\"white\" stroke-width=\"3\"/>\\n<path d=\"M31.0938 30.1562L31.0938 18.9063L19.8438 18.9063M30.3125 19.6875L18.9063 31.0937\" stroke=\"black\" stroke-width=\"2.65165\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]}),isDisplayed5()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-83pzwy hidden-p5288h\",\"data-framer-name\":\"tile3\",whileHover:animation1,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-nmeyq7\",\"data-framer-name\":\"Group 7\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xmtufb\",\"data-framer-name\":\"Rectangle 8\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uu8snu\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\"},children:\"Giant Swing\"})}),className:\"framer-19h7k4m\",\"data-framer-name\":\"Bungee Trampoline\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"South India's Biggest Giant Swing. High thrill ride for adrenaline junkies!\"})}),className:\"framer-lq1mql\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I0ELSQpF1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+799+0+0+50+725+0+439+21.500000000000085+12.000000000000085+0),src:\"https://framerusercontent.com/images/6VbNAUCA4qeK15wVlMauk99Y.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+820+0+0+50+797+53+21.500000000000085+-22+0),src:\"https://framerusercontent.com/images/6VbNAUCA4qeK15wVlMauk99Y.png\"},className:\"framer-12jd9xk\",\"data-framer-name\":\"Rectangle 3\"})})]})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-qx44mz\",\"data-framer-name\":\"Group 11\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:49,intrinsicWidth:49,svg:'<svg width=\"49\" height=\"49\" viewBox=\"0 0 49 49\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<circle cx=\"24.5\" cy=\"24.5\" r=\"23\" fill=\"#AAFF54\" stroke=\"white\" stroke-width=\"3\"/>\\n<path d=\"M31.0938 30.1562L31.0938 18.9063L19.8438 18.9063M30.3125 19.6875L18.9063 31.0937\" stroke=\"black\" stroke-width=\"2.65165\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]}),isDisplayed6()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-ltvokq hidden-1nq2i6t hidden-1dk6d8j\",\"data-framer-name\":\"tile3\",whileHover:animation1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-g679zu\",\"data-framer-name\":\"Group 7\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-19qf3uj\",\"data-framer-name\":\"Rectangle 8\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\"},children:\"Giant Swing\"})}),className:\"framer-178fnev\",\"data-framer-name\":\"Bungee Trampoline\",fonts:[\"FS;Satoshi-regular\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HaI5fMROZ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+912+0+0+0+695+0+0+0+0+0),src:\"https://framerusercontent.com/images/6VbNAUCA4qeK15wVlMauk99Y.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/6VbNAUCA4qeK15wVlMauk99Y.png\"},className:\"framer-1fti7tk\",\"data-framer-name\":\"Rectangle 3\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1ds3aoq\",\"data-framer-name\":\"Group 10\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 49 49\"><path d=\"M 1.5 24.5 C 1.5 11.797 11.797 1.5 24.5 1.5 C 37.203 1.5 47.5 11.797 47.5 24.5 C 47.5 37.203 37.203 47.5 24.5 47.5 C 11.797 47.5 1.5 37.203 1.5 24.5 Z\" fill=\"rgb(170,255,84)\" stroke-width=\"3\" stroke=\"rgb(255,255,255)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 31.094 30.156 L 31.094 18.906 L 19.844 18.906 M 30.313 19.687 L 18.906 31.094\" fill=\"transparent\" stroke-width=\"2.65165\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:9761632272,withExternalLayout:true})})})]})}),isDisplayed6()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-bwgm2a hidden-1nq2i6t hidden-1dk6d8j\",\"data-framer-name\":\"tile3\",whileHover:animation1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ih1fsx\",\"data-framer-name\":\"Group 7\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1snrnza\",\"data-framer-name\":\"Rectangle 8\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\"},children:\"VR Zone\"})}),className:\"framer-qoq6cm\",\"data-framer-name\":\"Bungee Trampoline\",fonts:[\"FS;Satoshi-regular\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HaI5fMROZ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+912+0+0+0+695+0+417+0+0+-1),pixelHeight:1604,pixelWidth:2866,sizes:\"300px\",src:\"https://framerusercontent.com/images/KLdjDvm3ykxA4ypSl5gVyV4ho8.jpg\",srcSet:\"https://framerusercontent.com/images/KLdjDvm3ykxA4ypSl5gVyV4ho8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/KLdjDvm3ykxA4ypSl5gVyV4ho8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/KLdjDvm3ykxA4ypSl5gVyV4ho8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/KLdjDvm3ykxA4ypSl5gVyV4ho8.jpg 2866w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1604,pixelWidth:2866,src:\"https://framerusercontent.com/images/KLdjDvm3ykxA4ypSl5gVyV4ho8.jpg\",srcSet:\"https://framerusercontent.com/images/KLdjDvm3ykxA4ypSl5gVyV4ho8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/KLdjDvm3ykxA4ypSl5gVyV4ho8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/KLdjDvm3ykxA4ypSl5gVyV4ho8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/KLdjDvm3ykxA4ypSl5gVyV4ho8.jpg 2866w\"},className:\"framer-1duzqog\",\"data-framer-name\":\"Rectangle 3\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1hdiuis\",\"data-framer-name\":\"Group 10\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 49 49\"><path d=\"M 1.5 24.5 C 1.5 11.797 11.797 1.5 24.5 1.5 C 37.203 1.5 47.5 11.797 47.5 24.5 C 47.5 37.203 37.203 47.5 24.5 47.5 C 11.797 47.5 1.5 37.203 1.5 24.5 Z\" fill=\"rgb(170,255,84)\" stroke-width=\"3\" stroke=\"rgb(255,255,255)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 31.094 30.156 L 31.094 18.906 L 19.844 18.906 M 30.313 19.687 L 18.906 31.094\" fill=\"transparent\" stroke-width=\"2.65165\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:9761632272,withExternalLayout:true})})})]})})]}),isDisplayed4()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5ev3mu hidden-nhaa30\",\"data-framer-name\":\"Ride Photo -3\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-179wn38\",\"data-framer-name\":\"tile4\",whileHover:animation1,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pe36gz\",\"data-framer-name\":\"Group 8\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hp4vct\",\"data-framer-name\":\"Rectangle 8\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})}),className:\"framer-91xqoq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\"},children:\"Zipline\"})}),className:\"framer-dx4lll\",\"data-framer-name\":\"Bungee Trampoline\",fonts:[\"FS;Satoshi-regular\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HaI5fMROZ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+912+0+0+0+1529+0+0+0+0+0),pixelHeight:768,pixelWidth:1150,sizes:\"300px\",src:\"https://framerusercontent.com/images/8H5YhblbXNMGZibbKyUd55SHk.jpg\",srcSet:\"https://framerusercontent.com/images/8H5YhblbXNMGZibbKyUd55SHk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/8H5YhblbXNMGZibbKyUd55SHk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/8H5YhblbXNMGZibbKyUd55SHk.jpg 1150w\"}},I0ELSQpF1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+799+0+0+50+1563+0+22+0),pixelHeight:768,pixelWidth:1150,sizes:\"300px\",src:\"https://framerusercontent.com/images/8H5YhblbXNMGZibbKyUd55SHk.jpg\",srcSet:\"https://framerusercontent.com/images/8H5YhblbXNMGZibbKyUd55SHk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/8H5YhblbXNMGZibbKyUd55SHk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/8H5YhblbXNMGZibbKyUd55SHk.jpg 1150w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+820+0+0+50+1302+10+22+0),pixelHeight:768,pixelWidth:1150,sizes:\"300px\",src:\"https://framerusercontent.com/images/8H5YhblbXNMGZibbKyUd55SHk.jpg\",srcSet:\"https://framerusercontent.com/images/8H5YhblbXNMGZibbKyUd55SHk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/8H5YhblbXNMGZibbKyUd55SHk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/8H5YhblbXNMGZibbKyUd55SHk.jpg 1150w\"},className:\"framer-1usx0ea\",\"data-framer-name\":\"Rectangle 3\",children:isDisplayed6()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HaI5fMROZ:{svgContentId:9761632272}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-t9i8ud hidden-1nq2i6t hidden-1dk6d8j\",\"data-framer-name\":\"Group 10\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 49 49\"><path d=\"M 1.5 24.5 C 1.5 11.797 11.797 1.5 24.5 1.5 C 37.203 1.5 47.5 11.797 47.5 24.5 C 47.5 37.203 37.203 47.5 24.5 47.5 C 11.797 47.5 1.5 37.203 1.5 24.5 Z\" fill=\"rgb(170,255,84)\" stroke-width=\"3\" stroke=\"rgb(255,255,255)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 31.094 30.156 L 31.094 18.906 L 19.844 18.906 M 30.313 19.687 L 18.906 31.094\" fill=\"transparent\" stroke-width=\"2.65165\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:9660767373,withExternalLayout:true})})})})]}),isDisplayed5()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1t242zk hidden-p5288h\",\"data-framer-name\":\"Group 12\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:49,intrinsicWidth:49,svg:'<svg width=\"49\" height=\"49\" viewBox=\"0 0 49 49\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<circle cx=\"24.5\" cy=\"24.5\" r=\"23\" fill=\"#AAFF54\" stroke=\"white\" stroke-width=\"3\"/>\\n<path d=\"M31.0938 30.1562L31.0938 18.9063L19.8438 18.9063M30.3125 19.6875L18.9063 31.0937\" stroke=\"black\" stroke-width=\"2.65165\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ze57cq\",\"data-framer-name\":\"tile3\",whileHover:animation1,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cv466k\",\"data-framer-name\":\"Group 7\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rh2l4i\",\"data-framer-name\":\"Rectangle 8\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\"},children:\"Trampoline Park\"})}),className:\"framer-19kpg4r\",\"data-framer-name\":\"Bungee Trampoline\",fonts:[\"FS;Satoshi-regular\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HaI5fMROZ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+912+0+0+0+1529+0+463+0+0+0),sizes:\"300px\",src:\"https://framerusercontent.com/images/vARPbPwMqVR8LclUsnx6WDeGxs.jpg\",srcSet:\"https://framerusercontent.com/images/vARPbPwMqVR8LclUsnx6WDeGxs.jpg?scale-down-to=1024 683w,https://framerusercontent.com/images/vARPbPwMqVR8LclUsnx6WDeGxs.jpg?scale-down-to=2048 1367w,https://framerusercontent.com/images/vARPbPwMqVR8LclUsnx6WDeGxs.jpg 2734w\"}},I0ELSQpF1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+799+0+0+50+1563+0+22+0),sizes:\"300px\",src:\"https://framerusercontent.com/images/vARPbPwMqVR8LclUsnx6WDeGxs.jpg\",srcSet:\"https://framerusercontent.com/images/vARPbPwMqVR8LclUsnx6WDeGxs.jpg?scale-down-to=1024 683w,https://framerusercontent.com/images/vARPbPwMqVR8LclUsnx6WDeGxs.jpg?scale-down-to=2048 1367w,https://framerusercontent.com/images/vARPbPwMqVR8LclUsnx6WDeGxs.jpg 2734w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+820+0+0+50+1302+10+22+0),sizes:\"300px\",src:\"https://framerusercontent.com/images/vARPbPwMqVR8LclUsnx6WDeGxs.jpg\",srcSet:\"https://framerusercontent.com/images/vARPbPwMqVR8LclUsnx6WDeGxs.jpg?scale-down-to=1024 683w,https://framerusercontent.com/images/vARPbPwMqVR8LclUsnx6WDeGxs.jpg?scale-down-to=2048 1367w,https://framerusercontent.com/images/vARPbPwMqVR8LclUsnx6WDeGxs.jpg 2734w\"},className:\"framer-nm5uha\",\"data-framer-name\":\"Rectangle 3\",children:isDisplayed6()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HaI5fMROZ:{svgContentId:9761632272}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-rwtwwz hidden-1nq2i6t hidden-1dk6d8j\",\"data-framer-name\":\"Group 10\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 49 49\"><path d=\"M 1.5 24.5 C 1.5 11.797 11.797 1.5 24.5 1.5 C 37.203 1.5 47.5 11.797 47.5 24.5 C 47.5 37.203 37.203 47.5 24.5 47.5 C 11.797 47.5 1.5 37.203 1.5 24.5 Z\" fill=\"rgb(170,255,84)\" stroke-width=\"3\" stroke=\"rgb(255,255,255)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 31.094 30.156 L 31.094 18.906 L 19.844 18.906 M 30.313 19.687 L 18.906 31.094\" fill=\"transparent\" stroke-width=\"2.65165\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:9660767373,withExternalLayout:true})})})})]}),isDisplayed5()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-sd1tmh hidden-p5288h\",\"data-framer-name\":\"Group 11\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:49,intrinsicWidth:49,svg:'<svg width=\"49\" height=\"49\" viewBox=\"0 0 49 49\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<circle cx=\"24.5\" cy=\"24.5\" r=\"23\" fill=\"#AAFF54\" stroke=\"white\" stroke-width=\"3\"/>\\n<path d=\"M31.0938 30.1562L31.0938 18.9063L19.8438 18.9063M30.3125 19.6875L18.9063 31.0937\" stroke=\"black\" stroke-width=\"2.65165\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wytfny hidden-1dk6d8j\",\"data-framer-name\":\"tile3\",whileHover:animation1,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wdik1g\",\"data-framer-name\":\"Group 7\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-hst1e3\",\"data-framer-name\":\"Rectangle 8\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\"},children:\"Flying Chair\"})}),className:\"framer-1ymh14h\",\"data-framer-name\":\"Bungee Trampoline\",fonts:[\"FS;Satoshi-regular\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HaI5fMROZ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+912+0+0+0+1529+0+926+0+0+0),pixelHeight:768,pixelWidth:1154,sizes:\"300px\",src:\"https://framerusercontent.com/images/3t4hECOrZd4Xs8F0CsOq0NpkcZQ.jpg\",srcSet:\"https://framerusercontent.com/images/3t4hECOrZd4Xs8F0CsOq0NpkcZQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/3t4hECOrZd4Xs8F0CsOq0NpkcZQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/3t4hECOrZd4Xs8F0CsOq0NpkcZQ.jpg 1154w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+820+0+0+50+1302+10+22+0),pixelHeight:768,pixelWidth:1154,sizes:\"300px\",src:\"https://framerusercontent.com/images/3t4hECOrZd4Xs8F0CsOq0NpkcZQ.jpg\",srcSet:\"https://framerusercontent.com/images/3t4hECOrZd4Xs8F0CsOq0NpkcZQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/3t4hECOrZd4Xs8F0CsOq0NpkcZQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/3t4hECOrZd4Xs8F0CsOq0NpkcZQ.jpg 1154w\"},className:\"framer-1uehpqx\",\"data-framer-name\":\"Rectangle 3\",children:isDisplayed6()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HaI5fMROZ:{svgContentId:9761632272}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1jl93q8 hidden-1nq2i6t\",\"data-framer-name\":\"Group 10\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 49 49\"><path d=\"M 1.5 24.5 C 1.5 11.797 11.797 1.5 24.5 1.5 C 37.203 1.5 47.5 11.797 47.5 24.5 C 47.5 37.203 37.203 47.5 24.5 47.5 C 11.797 47.5 1.5 37.203 1.5 24.5 Z\" fill=\"rgb(170,255,84)\" stroke-width=\"3\" stroke=\"rgb(255,255,255)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 31.094 30.156 L 31.094 18.906 L 19.844 18.906 M 30.313 19.687 L 18.906 31.094\" fill=\"transparent\" stroke-width=\"2.65165\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:9660767373,withExternalLayout:true})})})})]}),isDisplayed5()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-ukq6om hidden-p5288h\",\"data-framer-name\":\"Group 11\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:49,intrinsicWidth:49,svg:'<svg width=\"49\" height=\"49\" viewBox=\"0 0 49 49\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<circle cx=\"24.5\" cy=\"24.5\" r=\"23\" fill=\"#AAFF54\" stroke=\"white\" stroke-width=\"3\"/>\\n<path d=\"M31.0938 30.1562L31.0938 18.9063L19.8438 18.9063M30.3125 19.6875L18.9063 31.0937\" stroke=\"black\" stroke-width=\"2.65165\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5dijbt hidden-1nq2i6t hidden-p5288h hidden-nhaa30\",\"data-framer-name\":\"Ride Photo -3\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-urnoo4\",\"data-framer-name\":\"tile3\",whileHover:animation1,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d0wgfr\",\"data-framer-name\":\"Group 7\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-18g8u1s\",\"data-framer-name\":\"Rectangle 8\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\"},children:\"Flying Chair\"})}),className:\"framer-1q33wv0\",\"data-framer-name\":\"Bungee Trampoline\",fonts:[\"FS;Satoshi-regular\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I0ELSQpF1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+799+0+0+50+1962+0+22+0),pixelHeight:768,pixelWidth:1154,sizes:\"300px\",src:\"https://framerusercontent.com/images/3t4hECOrZd4Xs8F0CsOq0NpkcZQ.jpg\",srcSet:\"https://framerusercontent.com/images/3t4hECOrZd4Xs8F0CsOq0NpkcZQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/3t4hECOrZd4Xs8F0CsOq0NpkcZQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/3t4hECOrZd4Xs8F0CsOq0NpkcZQ.jpg 1154w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:768,pixelWidth:1154,sizes:\"300px\",src:\"https://framerusercontent.com/images/3t4hECOrZd4Xs8F0CsOq0NpkcZQ.jpg\",srcSet:\"https://framerusercontent.com/images/3t4hECOrZd4Xs8F0CsOq0NpkcZQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/3t4hECOrZd4Xs8F0CsOq0NpkcZQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/3t4hECOrZd4Xs8F0CsOq0NpkcZQ.jpg 1154w\"},className:\"framer-2j59rn\",\"data-framer-name\":\"Rectangle 3\"})})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-5988k9\",\"data-framer-name\":\"Group 11\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:49,intrinsicWidth:49,svg:'<svg width=\"49\" height=\"49\" viewBox=\"0 0 49 49\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<circle cx=\"24.5\" cy=\"24.5\" r=\"23\" fill=\"#AAFF54\" stroke=\"white\" stroke-width=\"3\"/>\\n<path d=\"M31.0938 30.1562L31.0938 18.9063L19.8438 18.9063M30.3125 19.6875L18.9063 31.0937\" stroke=\"black\" stroke-width=\"2.65165\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wdm0gz\",\"data-framer-name\":\"tile2\",whileHover:animation2,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nii03a\",\"data-framer-name\":\"Group 6\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-6pqpyz\",\"data-framer-name\":\"Rectangle 8\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\"},children:\"Twister\"})}),className:\"framer-z9peet\",\"data-framer-name\":\"Giant Swing\",fonts:[\"FS;Satoshi-regular\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I0ELSQpF1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+799+0+0+50+1962+0+22+0),pixelHeight:768,pixelWidth:803,sizes:\"300px\",src:\"https://framerusercontent.com/images/trAYPcJIsaohfXBkf3UXbIAflk.jpg\",srcSet:\"https://framerusercontent.com/images/trAYPcJIsaohfXBkf3UXbIAflk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/trAYPcJIsaohfXBkf3UXbIAflk.jpg 803w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:768,pixelWidth:803,sizes:\"300px\",src:\"https://framerusercontent.com/images/trAYPcJIsaohfXBkf3UXbIAflk.jpg\",srcSet:\"https://framerusercontent.com/images/trAYPcJIsaohfXBkf3UXbIAflk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/trAYPcJIsaohfXBkf3UXbIAflk.jpg 803w\"},className:\"framer-16rswy7\",\"data-framer-name\":\"Rectangle 3\"})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-7vf5wu\",\"data-framer-name\":\"Group 10\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 49 49\"><path d=\"M 1.5 24.5 C 1.5 11.797 11.797 1.5 24.5 1.5 C 37.203 1.5 47.5 11.797 47.5 24.5 C 47.5 37.203 37.203 47.5 24.5 47.5 C 11.797 47.5 1.5 37.203 1.5 24.5 Z\" fill=\"rgb(170,255,84)\" stroke-width=\"3\" stroke=\"rgb(255,255,255)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 31.094 30.156 L 31.094 18.906 L 19.844 18.906 M 30.313 19.687 L 18.906 31.094\" fill=\"transparent\" stroke-width=\"2.65165\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:9761632272,withExternalLayout:true})]})})]}),isDisplayed4()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2gnrdz hidden-nhaa30\",\"data-framer-name\":\"Ride Photo -3\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18z9ojf\",\"data-framer-name\":\"tile3\",whileHover:animation1,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mfv5pf\",\"data-framer-name\":\"Group 7\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-142axbw\",\"data-framer-name\":\"Rectangle 8\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\"},children:\"Flying Cinema\"})}),className:\"framer-1miispt\",\"data-framer-name\":\"Bungee Trampoline\",fonts:[\"FS;Satoshi-regular\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HaI5fMROZ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+912+0+0+0+2872+0+0+0+0+0),pixelHeight:3024,pixelWidth:2160,positionX:\"center\",positionY:\"top\",sizes:\"300px\",src:\"https://framerusercontent.com/images/03I54DcpPtHhmYjNYQrVxbdfDM.jpg\",srcSet:\"https://framerusercontent.com/images/03I54DcpPtHhmYjNYQrVxbdfDM.jpg?scale-down-to=1024 731w,https://framerusercontent.com/images/03I54DcpPtHhmYjNYQrVxbdfDM.jpg?scale-down-to=2048 1462w,https://framerusercontent.com/images/03I54DcpPtHhmYjNYQrVxbdfDM.jpg 2160w\"}},I0ELSQpF1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+799+0+0+50+2361+0+22+0),pixelHeight:3024,pixelWidth:2160,positionX:\"center\",positionY:\"top\",sizes:\"300px\",src:\"https://framerusercontent.com/images/03I54DcpPtHhmYjNYQrVxbdfDM.jpg\",srcSet:\"https://framerusercontent.com/images/03I54DcpPtHhmYjNYQrVxbdfDM.jpg?scale-down-to=1024 731w,https://framerusercontent.com/images/03I54DcpPtHhmYjNYQrVxbdfDM.jpg?scale-down-to=2048 1462w,https://framerusercontent.com/images/03I54DcpPtHhmYjNYQrVxbdfDM.jpg 2160w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+820+0+0+50+1721+10+22+0),pixelHeight:3024,pixelWidth:2160,positionX:\"center\",positionY:\"top\",sizes:\"300px\",src:\"https://framerusercontent.com/images/03I54DcpPtHhmYjNYQrVxbdfDM.jpg\",srcSet:\"https://framerusercontent.com/images/03I54DcpPtHhmYjNYQrVxbdfDM.jpg?scale-down-to=1024 731w,https://framerusercontent.com/images/03I54DcpPtHhmYjNYQrVxbdfDM.jpg?scale-down-to=2048 1462w,https://framerusercontent.com/images/03I54DcpPtHhmYjNYQrVxbdfDM.jpg 2160w\"},className:\"framer-2q8yg9\",\"data-framer-name\":\"Rectangle 3\",children:isDisplayed6()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HaI5fMROZ:{svgContentId:9761632272}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1itiisw hidden-1nq2i6t hidden-1dk6d8j\",\"data-framer-name\":\"Group 10\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 49 49\"><path d=\"M 1.5 24.5 C 1.5 11.797 11.797 1.5 24.5 1.5 C 37.203 1.5 47.5 11.797 47.5 24.5 C 47.5 37.203 37.203 47.5 24.5 47.5 C 11.797 47.5 1.5 37.203 1.5 24.5 Z\" fill=\"rgb(170,255,84)\" stroke-width=\"3\" stroke=\"rgb(255,255,255)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 31.094 30.156 L 31.094 18.906 L 19.844 18.906 M 30.313 19.687 L 18.906 31.094\" fill=\"transparent\" stroke-width=\"2.65165\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:9660767373,withExternalLayout:true})})})})]}),isDisplayed5()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1ge52a9 hidden-p5288h\",\"data-framer-name\":\"Group 11\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:49,intrinsicWidth:49,svg:'<svg width=\"49\" height=\"49\" viewBox=\"0 0 49 49\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<circle cx=\"24.5\" cy=\"24.5\" r=\"23\" fill=\"#AAFF54\" stroke=\"white\" stroke-width=\"3\"/>\\n<path d=\"M31.0938 30.1562L31.0938 18.9063L19.8438 18.9063M30.3125 19.6875L18.9063 31.0937\" stroke=\"black\" stroke-width=\"2.65165\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-xdlxxm\",\"data-framer-name\":\"tile4\",whileHover:animation1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14amhfb\",\"data-framer-name\":\"Group 8\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ft4uar\",\"data-framer-name\":\"Rectangle 8\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})}),className:\"framer-1k72kr6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\"},children:\"Space Tower\"})}),className:\"framer-1hs6o3w\",\"data-framer-name\":\"Bungee Trampoline\",fonts:[\"FS;Satoshi-regular\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HaI5fMROZ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+912+0+0+0+2872+0+417+0+0+0),pixelHeight:768,pixelWidth:1152,sizes:\"300px\",src:\"https://framerusercontent.com/images/VxmFPspez8b1hvZ0g4mJZxJ6go.jpg\",srcSet:\"https://framerusercontent.com/images/VxmFPspez8b1hvZ0g4mJZxJ6go.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/VxmFPspez8b1hvZ0g4mJZxJ6go.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/VxmFPspez8b1hvZ0g4mJZxJ6go.jpg 1152w\"}},I0ELSQpF1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+799+0+0+50+2361+0+22+0),pixelHeight:768,pixelWidth:1152,sizes:\"300px\",src:\"https://framerusercontent.com/images/VxmFPspez8b1hvZ0g4mJZxJ6go.jpg\",srcSet:\"https://framerusercontent.com/images/VxmFPspez8b1hvZ0g4mJZxJ6go.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/VxmFPspez8b1hvZ0g4mJZxJ6go.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/VxmFPspez8b1hvZ0g4mJZxJ6go.jpg 1152w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+820+0+0+50+1721+10+22+0),pixelHeight:768,pixelWidth:1152,sizes:\"300px\",src:\"https://framerusercontent.com/images/VxmFPspez8b1hvZ0g4mJZxJ6go.jpg\",srcSet:\"https://framerusercontent.com/images/VxmFPspez8b1hvZ0g4mJZxJ6go.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/VxmFPspez8b1hvZ0g4mJZxJ6go.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/VxmFPspez8b1hvZ0g4mJZxJ6go.jpg 1152w\"},className:\"framer-1tehvi7\",\"data-framer-name\":\"Rectangle 3\",children:isDisplayed6()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HaI5fMROZ:{svgContentId:9761632272}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-15h6oin hidden-1nq2i6t hidden-1dk6d8j\",\"data-framer-name\":\"Group 10\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 49 49\"><path d=\"M 1.5 24.5 C 1.5 11.797 11.797 1.5 24.5 1.5 C 37.203 1.5 47.5 11.797 47.5 24.5 C 47.5 37.203 37.203 47.5 24.5 47.5 C 11.797 47.5 1.5 37.203 1.5 24.5 Z\" fill=\"rgb(170,255,84)\" stroke-width=\"3\" stroke=\"rgb(255,255,255)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 31.094 30.156 L 31.094 18.906 L 19.844 18.906 M 30.313 19.687 L 18.906 31.094\" fill=\"transparent\" stroke-width=\"2.65165\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:9660767373,withExternalLayout:true})})})}),isDisplayed5()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-zjzphg hidden-p5288h\",\"data-framer-name\":\"Group 12\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:49,intrinsicWidth:49,svg:'<svg width=\"49\" height=\"49\" viewBox=\"0 0 49 49\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<circle cx=\"24.5\" cy=\"24.5\" r=\"23\" fill=\"#AAFF54\" stroke=\"white\" stroke-width=\"3\"/>\\n<path d=\"M31.0938 30.1562L31.0938 18.9063L19.8438 18.9063M30.3125 19.6875L18.9063 31.0937\" stroke=\"black\" stroke-width=\"2.65165\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-okfg5z hidden-1dk6d8j\",\"data-framer-name\":\"tile2\",whileHover:animation2,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1obombi\",\"data-framer-name\":\"Group 6\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-5l2ak6\",\"data-framer-name\":\"Rectangle 8\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\"},children:\"Twister\"})}),className:\"framer-1upqnob\",\"data-framer-name\":\"Giant Swing\",fonts:[\"FS;Satoshi-regular\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HaI5fMROZ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+912+0+0+0+2872+0+834+0+0+0),pixelHeight:768,pixelWidth:803,sizes:\"300px\",src:\"https://framerusercontent.com/images/trAYPcJIsaohfXBkf3UXbIAflk.jpg\",srcSet:\"https://framerusercontent.com/images/trAYPcJIsaohfXBkf3UXbIAflk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/trAYPcJIsaohfXBkf3UXbIAflk.jpg 803w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+820+0+0+50+1721+10+22+0),pixelHeight:768,pixelWidth:803,sizes:\"300px\",src:\"https://framerusercontent.com/images/trAYPcJIsaohfXBkf3UXbIAflk.jpg\",srcSet:\"https://framerusercontent.com/images/trAYPcJIsaohfXBkf3UXbIAflk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/trAYPcJIsaohfXBkf3UXbIAflk.jpg 803w\"},className:\"framer-1fi4zva\",\"data-framer-name\":\"Rectangle 3\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HaI5fMROZ:{svgContentId:8933934084}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-9ggt5p\",\"data-framer-name\":\"Group 10\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 49 49\"><path d=\"M 1.5 24.5 C 1.5 11.797 11.797 1.5 24.5 1.5 C 37.203 1.5 47.5 11.797 47.5 24.5 C 47.5 37.203 37.203 47.5 24.5 47.5 C 11.797 47.5 1.5 37.203 1.5 24.5 Z\" fill=\"rgb(170,255,84)\" stroke-width=\"3\" stroke=\"rgb(255,255,255)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 31.094 30.156 L 31.094 18.906 L 19.844 18.906 M 30.313 19.687 L 18.906 31.094\" fill=\"transparent\" stroke-width=\"2.65165\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:9761632272,withExternalLayout:true})})]})})]}),isDisplayed7()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-107l0m9 hidden-1nq2i6t hidden-1dk6d8j hidden-p5288h\",\"data-framer-name\":\"Ride Photo -3\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-3ckpai\",\"data-framer-name\":\"tile3\",whileHover:animation1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11q2jl5\",\"data-framer-name\":\"Group 7\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-9u9ook\",\"data-framer-name\":\"Rectangle 8\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\"},children:\"Giant Swing\"})}),className:\"framer-1jgqg09\",\"data-framer-name\":\"Bungee Trampoline\",fonts:[\"FS;Satoshi-regular\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{r2222MykL:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+912+0+0+0+638+0+0+0+0+0),src:\"https://framerusercontent.com/images/6VbNAUCA4qeK15wVlMauk99Y.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/6VbNAUCA4qeK15wVlMauk99Y.png\"},className:\"framer-1arc3z2\",\"data-framer-name\":\"Rectangle 3\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1hiuyde\",\"data-framer-name\":\"Group 10\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 49 49\"><path d=\"M 1.5 24.5 C 1.5 11.797 11.797 1.5 24.5 1.5 C 37.203 1.5 47.5 11.797 47.5 24.5 C 47.5 37.203 37.203 47.5 24.5 47.5 C 11.797 47.5 1.5 37.203 1.5 24.5 Z\" fill=\"rgb(170,255,84)\" stroke-width=\"3\" stroke=\"rgb(255,255,255)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 31.094 30.156 L 31.094 18.906 L 19.844 18.906 M 30.313 19.687 L 18.906 31.094\" fill=\"transparent\" stroke-width=\"2.65165\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:9761632272,withExternalLayout:true})})})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-cyj9ub\",\"data-framer-name\":\"tile3\",whileHover:animation1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4asn21\",\"data-framer-name\":\"Group 7\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-105vbv3\",\"data-framer-name\":\"Rectangle 8\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\"},children:\"VR Zone\"})}),className:\"framer-13proi0\",\"data-framer-name\":\"Bungee Trampoline\",fonts:[\"FS;Satoshi-regular\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{r2222MykL:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+912+0+0+0+638+0+417+0+0+-1),pixelHeight:1604,pixelWidth:2866,sizes:\"300px\",src:\"https://framerusercontent.com/images/KLdjDvm3ykxA4ypSl5gVyV4ho8.jpg\",srcSet:\"https://framerusercontent.com/images/KLdjDvm3ykxA4ypSl5gVyV4ho8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/KLdjDvm3ykxA4ypSl5gVyV4ho8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/KLdjDvm3ykxA4ypSl5gVyV4ho8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/KLdjDvm3ykxA4ypSl5gVyV4ho8.jpg 2866w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1604,pixelWidth:2866,sizes:\"300px\",src:\"https://framerusercontent.com/images/KLdjDvm3ykxA4ypSl5gVyV4ho8.jpg\",srcSet:\"https://framerusercontent.com/images/KLdjDvm3ykxA4ypSl5gVyV4ho8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/KLdjDvm3ykxA4ypSl5gVyV4ho8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/KLdjDvm3ykxA4ypSl5gVyV4ho8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/KLdjDvm3ykxA4ypSl5gVyV4ho8.jpg 2866w\"},className:\"framer-1lobi30\",\"data-framer-name\":\"Rectangle 3\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ed2jh9\",\"data-framer-name\":\"Group 10\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 49 49\"><path d=\"M 1.5 24.5 C 1.5 11.797 11.797 1.5 24.5 1.5 C 37.203 1.5 47.5 11.797 47.5 24.5 C 47.5 37.203 37.203 47.5 24.5 47.5 C 11.797 47.5 1.5 37.203 1.5 24.5 Z\" fill=\"rgb(170,255,84)\" stroke-width=\"3\" stroke=\"rgb(255,255,255)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 31.094 30.156 L 31.094 18.906 L 19.844 18.906 M 30.313 19.687 L 18.906 31.094\" fill=\"transparent\" stroke-width=\"2.65165\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:9761632272,withExternalLayout:true})})})]})})]}),isDisplayed7()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-psntqo hidden-1nq2i6t hidden-1dk6d8j hidden-p5288h\",\"data-framer-name\":\"Ride Photo -3\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-p2ytom\",\"data-framer-name\":\"tile4\",whileHover:animation1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rvmgo6\",\"data-framer-name\":\"Group 8\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pgj80g\",\"data-framer-name\":\"Rectangle 8\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})}),className:\"framer-1x7zb4z\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\"},children:\"Zipline\"})}),className:\"framer-1c7fhgk\",\"data-framer-name\":\"Bungee Trampoline\",fonts:[\"FS;Satoshi-regular\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{r2222MykL:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+912+0+0+0+1472+0+0+0+0+0),pixelHeight:768,pixelWidth:1150,sizes:\"300px\",src:\"https://framerusercontent.com/images/8H5YhblbXNMGZibbKyUd55SHk.jpg\",srcSet:\"https://framerusercontent.com/images/8H5YhblbXNMGZibbKyUd55SHk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/8H5YhblbXNMGZibbKyUd55SHk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/8H5YhblbXNMGZibbKyUd55SHk.jpg 1150w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:768,pixelWidth:1150,sizes:\"300px\",src:\"https://framerusercontent.com/images/8H5YhblbXNMGZibbKyUd55SHk.jpg\",srcSet:\"https://framerusercontent.com/images/8H5YhblbXNMGZibbKyUd55SHk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/8H5YhblbXNMGZibbKyUd55SHk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/8H5YhblbXNMGZibbKyUd55SHk.jpg 1150w\"},className:\"framer-1w63zdb\",\"data-framer-name\":\"Rectangle 3\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ael4x8\",\"data-framer-name\":\"Group 10\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 49 49\"><path d=\"M 1.5 24.5 C 1.5 11.797 11.797 1.5 24.5 1.5 C 37.203 1.5 47.5 11.797 47.5 24.5 C 47.5 37.203 37.203 47.5 24.5 47.5 C 11.797 47.5 1.5 37.203 1.5 24.5 Z\" fill=\"rgb(170,255,84)\" stroke-width=\"3\" stroke=\"rgb(255,255,255)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 31.094 30.156 L 31.094 18.906 L 19.844 18.906 M 30.313 19.687 L 18.906 31.094\" fill=\"transparent\" stroke-width=\"2.65165\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:9761632272,withExternalLayout:true})})})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-13ihaeq\",\"data-framer-name\":\"tile3\",whileHover:animation1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-92153b\",\"data-framer-name\":\"Group 7\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-3ti3xe\",\"data-framer-name\":\"Rectangle 8\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\"},children:\"Trampoline Park\"})}),className:\"framer-v1y8xn\",\"data-framer-name\":\"Bungee Trampoline\",fonts:[\"FS;Satoshi-regular\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{r2222MykL:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+912+0+0+0+1472+0+463+0+0+0),sizes:\"300px\",src:\"https://framerusercontent.com/images/vARPbPwMqVR8LclUsnx6WDeGxs.jpg\",srcSet:\"https://framerusercontent.com/images/vARPbPwMqVR8LclUsnx6WDeGxs.jpg?scale-down-to=1024 683w,https://framerusercontent.com/images/vARPbPwMqVR8LclUsnx6WDeGxs.jpg?scale-down-to=2048 1367w,https://framerusercontent.com/images/vARPbPwMqVR8LclUsnx6WDeGxs.jpg 2734w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"300px\",src:\"https://framerusercontent.com/images/vARPbPwMqVR8LclUsnx6WDeGxs.jpg\",srcSet:\"https://framerusercontent.com/images/vARPbPwMqVR8LclUsnx6WDeGxs.jpg?scale-down-to=1024 683w,https://framerusercontent.com/images/vARPbPwMqVR8LclUsnx6WDeGxs.jpg?scale-down-to=2048 1367w,https://framerusercontent.com/images/vARPbPwMqVR8LclUsnx6WDeGxs.jpg 2734w\"},className:\"framer-1r9p47u\",\"data-framer-name\":\"Rectangle 3\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-l8ogid\",\"data-framer-name\":\"Group 10\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 49 49\"><path d=\"M 1.5 24.5 C 1.5 11.797 11.797 1.5 24.5 1.5 C 37.203 1.5 47.5 11.797 47.5 24.5 C 47.5 37.203 37.203 47.5 24.5 47.5 C 11.797 47.5 1.5 37.203 1.5 24.5 Z\" fill=\"rgb(170,255,84)\" stroke-width=\"3\" stroke=\"rgb(255,255,255)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 31.094 30.156 L 31.094 18.906 L 19.844 18.906 M 30.313 19.687 L 18.906 31.094\" fill=\"transparent\" stroke-width=\"2.65165\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:9761632272,withExternalLayout:true})})})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1im72dl\",\"data-framer-name\":\"tile3\",whileHover:animation1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qv6ivu\",\"data-framer-name\":\"Group 7\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1y4sdvs\",\"data-framer-name\":\"Rectangle 8\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\"},children:\"Flying Chair\"})}),className:\"framer-1wklqrl\",\"data-framer-name\":\"Bungee Trampoline\",fonts:[\"FS;Satoshi-regular\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{r2222MykL:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+912+0+0+0+1472+0+926+0+0+0),pixelHeight:768,pixelWidth:1154,sizes:\"300px\",src:\"https://framerusercontent.com/images/3t4hECOrZd4Xs8F0CsOq0NpkcZQ.jpg\",srcSet:\"https://framerusercontent.com/images/3t4hECOrZd4Xs8F0CsOq0NpkcZQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/3t4hECOrZd4Xs8F0CsOq0NpkcZQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/3t4hECOrZd4Xs8F0CsOq0NpkcZQ.jpg 1154w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:768,pixelWidth:1154,sizes:\"300px\",src:\"https://framerusercontent.com/images/3t4hECOrZd4Xs8F0CsOq0NpkcZQ.jpg\",srcSet:\"https://framerusercontent.com/images/3t4hECOrZd4Xs8F0CsOq0NpkcZQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/3t4hECOrZd4Xs8F0CsOq0NpkcZQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/3t4hECOrZd4Xs8F0CsOq0NpkcZQ.jpg 1154w\"},className:\"framer-163kh9o\",\"data-framer-name\":\"Rectangle 3\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-199seto\",\"data-framer-name\":\"Group 10\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 49 49\"><path d=\"M 1.5 24.5 C 1.5 11.797 11.797 1.5 24.5 1.5 C 37.203 1.5 47.5 11.797 47.5 24.5 C 47.5 37.203 37.203 47.5 24.5 47.5 C 11.797 47.5 1.5 37.203 1.5 24.5 Z\" fill=\"rgb(170,255,84)\" stroke-width=\"3\" stroke=\"rgb(255,255,255)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 31.094 30.156 L 31.094 18.906 L 19.844 18.906 M 30.313 19.687 L 18.906 31.094\" fill=\"transparent\" stroke-width=\"2.65165\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:9761632272,withExternalLayout:true})})})]})})]}),isDisplayed7()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18wy0kg hidden-1nq2i6t hidden-1dk6d8j hidden-p5288h\",\"data-framer-name\":\"Ride Photo -3\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ty2lv3\",\"data-framer-name\":\"tile3\",whileHover:animation1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6xe6xv\",\"data-framer-name\":\"Group 7\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-xltt5h\",\"data-framer-name\":\"Rectangle 8\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\"},children:\"Flying Cinema\"})}),className:\"framer-11bomh2\",\"data-framer-name\":\"Bungee Trampoline\",fonts:[\"FS;Satoshi-regular\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{r2222MykL:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+912+0+0+0+2815+0+0+0+0+0),pixelHeight:3024,pixelWidth:2160,positionX:\"center\",positionY:\"top\",sizes:\"300px\",src:\"https://framerusercontent.com/images/03I54DcpPtHhmYjNYQrVxbdfDM.jpg\",srcSet:\"https://framerusercontent.com/images/03I54DcpPtHhmYjNYQrVxbdfDM.jpg?scale-down-to=1024 731w,https://framerusercontent.com/images/03I54DcpPtHhmYjNYQrVxbdfDM.jpg?scale-down-to=2048 1462w,https://framerusercontent.com/images/03I54DcpPtHhmYjNYQrVxbdfDM.jpg 2160w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3024,pixelWidth:2160,positionX:\"center\",positionY:\"top\",sizes:\"300px\",src:\"https://framerusercontent.com/images/03I54DcpPtHhmYjNYQrVxbdfDM.jpg\",srcSet:\"https://framerusercontent.com/images/03I54DcpPtHhmYjNYQrVxbdfDM.jpg?scale-down-to=1024 731w,https://framerusercontent.com/images/03I54DcpPtHhmYjNYQrVxbdfDM.jpg?scale-down-to=2048 1462w,https://framerusercontent.com/images/03I54DcpPtHhmYjNYQrVxbdfDM.jpg 2160w\"},className:\"framer-15dah2z\",\"data-framer-name\":\"Rectangle 3\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-l23osm\",\"data-framer-name\":\"Group 10\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 49 49\"><path d=\"M 1.5 24.5 C 1.5 11.797 11.797 1.5 24.5 1.5 C 37.203 1.5 47.5 11.797 47.5 24.5 C 47.5 37.203 37.203 47.5 24.5 47.5 C 11.797 47.5 1.5 37.203 1.5 24.5 Z\" fill=\"rgb(170,255,84)\" stroke-width=\"3\" stroke=\"rgb(255,255,255)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 31.094 30.156 L 31.094 18.906 L 19.844 18.906 M 30.313 19.687 L 18.906 31.094\" fill=\"transparent\" stroke-width=\"2.65165\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:9761632272,withExternalLayout:true})})})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-rmcaqm\",\"data-framer-name\":\"tile4\",whileHover:animation1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cjxgvz\",\"data-framer-name\":\"Group 8\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w2nnch\",\"data-framer-name\":\"Rectangle 8\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})}),className:\"framer-5o8aaa\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\"},children:\"Space Tower\"})}),className:\"framer-dcsj6e\",\"data-framer-name\":\"Bungee Trampoline\",fonts:[\"FS;Satoshi-regular\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{r2222MykL:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+912+0+0+0+2815+0+417+0+0+0),pixelHeight:768,pixelWidth:1152,sizes:\"300px\",src:\"https://framerusercontent.com/images/VxmFPspez8b1hvZ0g4mJZxJ6go.jpg\",srcSet:\"https://framerusercontent.com/images/VxmFPspez8b1hvZ0g4mJZxJ6go.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/VxmFPspez8b1hvZ0g4mJZxJ6go.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/VxmFPspez8b1hvZ0g4mJZxJ6go.jpg 1152w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:768,pixelWidth:1152,sizes:\"300px\",src:\"https://framerusercontent.com/images/VxmFPspez8b1hvZ0g4mJZxJ6go.jpg\",srcSet:\"https://framerusercontent.com/images/VxmFPspez8b1hvZ0g4mJZxJ6go.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/VxmFPspez8b1hvZ0g4mJZxJ6go.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/VxmFPspez8b1hvZ0g4mJZxJ6go.jpg 1152w\"},className:\"framer-1kw7m38\",\"data-framer-name\":\"Rectangle 3\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1cokquo\",\"data-framer-name\":\"Group 10\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 49 49\"><path d=\"M 1.5 24.5 C 1.5 11.797 11.797 1.5 24.5 1.5 C 37.203 1.5 47.5 11.797 47.5 24.5 C 47.5 37.203 37.203 47.5 24.5 47.5 C 11.797 47.5 1.5 37.203 1.5 24.5 Z\" fill=\"rgb(170,255,84)\" stroke-width=\"3\" stroke=\"rgb(255,255,255)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 31.094 30.156 L 31.094 18.906 L 19.844 18.906 M 30.313 19.687 L 18.906 31.094\" fill=\"transparent\" stroke-width=\"2.65165\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:9761632272,withExternalLayout:true})})})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1242kdh\",\"data-framer-name\":\"tile2\",whileHover:animation2,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6vxmyo\",\"data-framer-name\":\"Group 6\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-32h5tw\",\"data-framer-name\":\"Rectangle 8\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\"},children:\"Twister\"})}),className:\"framer-lzu91h\",\"data-framer-name\":\"Giant Swing\",fonts:[\"FS;Satoshi-regular\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{r2222MykL:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+912+0+0+0+2815+0+834+0+0+0),pixelHeight:768,pixelWidth:803,sizes:\"300px\",src:\"https://framerusercontent.com/images/trAYPcJIsaohfXBkf3UXbIAflk.jpg\",srcSet:\"https://framerusercontent.com/images/trAYPcJIsaohfXBkf3UXbIAflk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/trAYPcJIsaohfXBkf3UXbIAflk.jpg 803w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:768,pixelWidth:803,sizes:\"300px\",src:\"https://framerusercontent.com/images/trAYPcJIsaohfXBkf3UXbIAflk.jpg\",srcSet:\"https://framerusercontent.com/images/trAYPcJIsaohfXBkf3UXbIAflk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/trAYPcJIsaohfXBkf3UXbIAflk.jpg 803w\"},className:\"framer-142uhds\",\"data-framer-name\":\"Rectangle 3\"})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1v3s2cs\",\"data-framer-name\":\"Group 10\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 49 49\"><path d=\"M 1.5 24.5 C 1.5 11.797 11.797 1.5 24.5 1.5 C 37.203 1.5 47.5 11.797 47.5 24.5 C 47.5 37.203 37.203 47.5 24.5 47.5 C 11.797 47.5 1.5 37.203 1.5 24.5 Z\" fill=\"rgb(170,255,84)\" stroke-width=\"3\" stroke=\"rgb(255,255,255)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 31.094 30.156 L 31.094 18.906 L 19.844 18.906 M 30.313 19.687 L 18.906 31.094\" fill=\"transparent\" stroke-width=\"2.65165\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:8933934084,withExternalLayout:true})]})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15tinck\",\"data-framer-name\":\"Upcoming\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-t6408a\",\"data-framer-name\":\"Frame 115\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-3z9n5z\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1l5lhiu\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h61dqa\",\"data-framer-name\":\"Group 108\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HaI5fMROZ:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"A perfect \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"blend of \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"nature and \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"adventure\"})]})},I0ELSQpF1:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"A perfect blend of \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"nature and adventure\"})]})},r2222MykL:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"A perfect \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"blend of \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"nature and \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"adventure\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"A perfect blend of \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"nature and adventure\"})]}),className:\"framer-1n7ym1z\",\"data-framer-name\":\"Up, down, fabulous thrills all around!\",fonts:[\"FS;Satoshi-bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1sxv3e3\",\"data-framer-name\":\"Vector 6\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:7,intrinsicWidth:118,svg:'<svg width=\"118\" height=\"7\" viewBox=\"-2 -2 118 7\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 1.5H114\" stroke=\"#AAFF54\" stroke-width=\"3\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HaI5fMROZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Discover Wayanad\u2019s #1 destination, nestled among serene hills, blue reservoir, islands, and lush greenery. Experience the perfect blend of nature and adventure with thrilling rides and a beautiful flower garden waiting\\xa0for\\xa0you!\"})})},I0ELSQpF1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Discover Wayanad\u2019s #1 destination, nestled among serene hills, blue reservoir, islands, and lush greenery. Experience the perfect blend of nature and adventure with thrilling rides and a beautiful flower garden waiting\\xa0for\\xa0you!\"})})},r2222MykL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Discover Wayanad\u2019s #1 destination, nestled among serene hills, blue reservoir, islands, and lush greenery. Experience the perfect blend of nature and adventure with thrilling rides and a beautiful flower garden waiting\\xa0for\\xa0you!\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Discover Wayanad\u2019s #1 destination, nestled among serene hills, blue reservoir, islands, and lush greenery. Experience the perfect blend of nature and adventure with thrilling rides and a beautiful flower garden waiting\\xa0for\\xa0you!\"})}),className:\"framer-1lbctzh\",\"data-framer-name\":\"Get ready to be mind blown by the crazy that upcoming!\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HaI5fMROZ:{y:(componentViewport?.y||0)+0+912+0+4133+0+0+30+0+0+0+94+0+0+454},I0ELSQpF1:{y:(componentViewport?.y||0)+0+799+0+2870+0+0+30+0+0+0+94+0+0+391},r2222MykL:{y:(componentViewport?.y||0)+0+912+0+4076+0+0+30+0+0+0+94+0+0+454}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,y:(componentViewport?.y||0)+820+0+2250+0+0+0+0+96.5+0+338,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gadznl-container\",nodeId:\"A5ktoUIjS\",scopeId:\"M57bMdovT\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HaI5fMROZ:{variant:\"g52lrNlY7\"},r2222MykL:{variant:\"g52lrNlY7\"}},children:/*#__PURE__*/_jsx(KnowMore,{height:\"100%\",id:\"A5ktoUIjS\",layoutId:\"A5ktoUIjS\",style:{height:\"100%\"},variant:\"UztXLMqYS\",width:\"100%\",wOb5vLRwi:\"Get Directions\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HaI5fMROZ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:800,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+912+0+4133+0+0+30+0+0+0+94+0+0+524),pixelHeight:6016,pixelWidth:4016,sizes:\"618px\",src:\"https://framerusercontent.com/images/1Awi6DXJTHPbA05gqEoXdNfvM4E.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/1Awi6DXJTHPbA05gqEoXdNfvM4E.jpg?scale-down-to=1024 683w,https://framerusercontent.com/images/1Awi6DXJTHPbA05gqEoXdNfvM4E.jpg?scale-down-to=2048 1367w,https://framerusercontent.com/images/1Awi6DXJTHPbA05gqEoXdNfvM4E.jpg?scale-down-to=4096 2734w,https://framerusercontent.com/images/1Awi6DXJTHPbA05gqEoXdNfvM4E.jpg 4016w\"}},I0ELSQpF1:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:800,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+799+0+2870+0+0+30+0+0+0+94+0+0+480),pixelHeight:6016,pixelWidth:4016,sizes:\"750px\",src:\"https://framerusercontent.com/images/1Awi6DXJTHPbA05gqEoXdNfvM4E.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/1Awi6DXJTHPbA05gqEoXdNfvM4E.jpg?scale-down-to=1024 683w,https://framerusercontent.com/images/1Awi6DXJTHPbA05gqEoXdNfvM4E.jpg?scale-down-to=2048 1367w,https://framerusercontent.com/images/1Awi6DXJTHPbA05gqEoXdNfvM4E.jpg?scale-down-to=4096 2734w,https://framerusercontent.com/images/1Awi6DXJTHPbA05gqEoXdNfvM4E.jpg 4016w\"}},r2222MykL:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:800,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+912+0+4076+0+0+30+0+0+0+94+0+0+524),pixelHeight:6016,pixelWidth:4016,sizes:\"618px\",src:\"https://framerusercontent.com/images/1Awi6DXJTHPbA05gqEoXdNfvM4E.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/1Awi6DXJTHPbA05gqEoXdNfvM4E.jpg?scale-down-to=1024 683w,https://framerusercontent.com/images/1Awi6DXJTHPbA05gqEoXdNfvM4E.jpg?scale-down-to=2048 1367w,https://framerusercontent.com/images/1Awi6DXJTHPbA05gqEoXdNfvM4E.jpg?scale-down-to=4096 2734w,https://framerusercontent.com/images/1Awi6DXJTHPbA05gqEoXdNfvM4E.jpg 4016w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:800,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+820+0+2250+0+0+0+0+96.5+0+418),pixelHeight:6016,pixelWidth:4016,sizes:`calc(max((max(max((${componentViewport?.width||\"100vw\"} + 191px) * 1, 1px) - 40px, 1px) - 26px) / 2, 1px) - 100px)`,src:\"https://framerusercontent.com/images/1Awi6DXJTHPbA05gqEoXdNfvM4E.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/1Awi6DXJTHPbA05gqEoXdNfvM4E.jpg?scale-down-to=1024 683w,https://framerusercontent.com/images/1Awi6DXJTHPbA05gqEoXdNfvM4E.jpg?scale-down-to=2048 1367w,https://framerusercontent.com/images/1Awi6DXJTHPbA05gqEoXdNfvM4E.jpg?scale-down-to=4096 2734w,https://framerusercontent.com/images/1Awi6DXJTHPbA05gqEoXdNfvM4E.jpg 4016w\"},className:\"framer-ytajlt\",\"data-framer-name\":\"Rectangle 10\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hp7u2w\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HaI5fMROZ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:900,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+912+0+4133+0+0+30+0+0+0+94+899+0+0),pixelHeight:1078,pixelWidth:894,sizes:\"618px\",src:\"https://framerusercontent.com/images/Ng3t1up7ZKSnUxM1F0Vp64MGA.png\",srcSet:\"https://framerusercontent.com/images/Ng3t1up7ZKSnUxM1F0Vp64MGA.png?scale-down-to=1024 849w,https://framerusercontent.com/images/Ng3t1up7ZKSnUxM1F0Vp64MGA.png 894w\"}},I0ELSQpF1:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:900,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+799+0+2870+0+0+30+0+0+0+94+855+1),pixelHeight:1078,pixelWidth:894,sizes:\"370px\",src:\"https://framerusercontent.com/images/Ng3t1up7ZKSnUxM1F0Vp64MGA.png\",srcSet:\"https://framerusercontent.com/images/Ng3t1up7ZKSnUxM1F0Vp64MGA.png?scale-down-to=1024 849w,https://framerusercontent.com/images/Ng3t1up7ZKSnUxM1F0Vp64MGA.png 894w\"}},r2222MykL:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:900,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+912+0+4076+0+0+30+0+0+0+94+899+0+0),pixelHeight:1078,pixelWidth:894,sizes:\"618px\",src:\"https://framerusercontent.com/images/Ng3t1up7ZKSnUxM1F0Vp64MGA.png\",srcSet:\"https://framerusercontent.com/images/Ng3t1up7ZKSnUxM1F0Vp64MGA.png?scale-down-to=1024 849w,https://framerusercontent.com/images/Ng3t1up7ZKSnUxM1F0Vp64MGA.png 894w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:900,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+820+0+2250+0+0+0+0+94+0+0),pixelHeight:1078,pixelWidth:894,sizes:`max((max(max((${componentViewport?.width||\"100vw\"} + 191px) * 1, 1px) - 40px, 1px) - 26px) / 2, 1px)`,src:\"https://framerusercontent.com/images/Ng3t1up7ZKSnUxM1F0Vp64MGA.png\",srcSet:\"https://framerusercontent.com/images/Ng3t1up7ZKSnUxM1F0Vp64MGA.png?scale-down-to=1024 849w,https://framerusercontent.com/images/Ng3t1up7ZKSnUxM1F0Vp64MGA.png 894w\"},className:\"framer-6ye8tf\",\"data-framer-name\":\"Rectangle 9\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HaI5fMROZ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:900,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+912+0+4133+0+0+30+0+0+0+94+899+0+418),pixelHeight:1512,pixelWidth:2874,sizes:\"618px\",src:\"https://framerusercontent.com/images/y4M3UAPIrUaxTVUaDGlTAgXxQU.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/y4M3UAPIrUaxTVUaDGlTAgXxQU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/y4M3UAPIrUaxTVUaDGlTAgXxQU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/y4M3UAPIrUaxTVUaDGlTAgXxQU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/y4M3UAPIrUaxTVUaDGlTAgXxQU.jpg 2874w\"}},I0ELSQpF1:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:900,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+799+0+2870+0+0+30+0+0+0+94+855+0),pixelHeight:1512,pixelWidth:2874,sizes:\"370px\",src:\"https://framerusercontent.com/images/y4M3UAPIrUaxTVUaDGlTAgXxQU.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/y4M3UAPIrUaxTVUaDGlTAgXxQU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/y4M3UAPIrUaxTVUaDGlTAgXxQU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/y4M3UAPIrUaxTVUaDGlTAgXxQU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/y4M3UAPIrUaxTVUaDGlTAgXxQU.jpg 2874w\"}},r2222MykL:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:900,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+912+0+4076+0+0+30+0+0+0+94+899+0+418),pixelHeight:1512,pixelWidth:2874,sizes:\"618px\",src:\"https://framerusercontent.com/images/y4M3UAPIrUaxTVUaDGlTAgXxQU.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/y4M3UAPIrUaxTVUaDGlTAgXxQU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/y4M3UAPIrUaxTVUaDGlTAgXxQU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/y4M3UAPIrUaxTVUaDGlTAgXxQU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/y4M3UAPIrUaxTVUaDGlTAgXxQU.jpg 2874w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:900,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+820+0+2250+0+0+0+0+94+0+418),pixelHeight:1512,pixelWidth:2874,sizes:`max((max(max((${componentViewport?.width||\"100vw\"} + 191px) * 1, 1px) - 40px, 1px) - 26px) / 2, 1px)`,src:\"https://framerusercontent.com/images/y4M3UAPIrUaxTVUaDGlTAgXxQU.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/y4M3UAPIrUaxTVUaDGlTAgXxQU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/y4M3UAPIrUaxTVUaDGlTAgXxQU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/y4M3UAPIrUaxTVUaDGlTAgXxQU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/y4M3UAPIrUaxTVUaDGlTAgXxQU.jpg 2874w\"},className:\"framer-tegsmd\",\"data-framer-name\":\"Rectangle 9\"})})]})]})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tkrcvu\",children:[isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-lkw6mm hidden-p5288h hidden-nhaa30\",\"data-framer-name\":\"Rectangle 17\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-3qieuy-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"dAtirlFsr\",scopeId:\"M57bMdovT\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"dAtirlFsr\",isMixedBorderRadius:false,isRed:true,layoutId:\"dAtirlFsr\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://www.youtube.com/watch?v=bwcoPC8W5MM\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HaI5fMROZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLXNlbWlib2xk\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 93, 110)\"},children:\"See What Awaits You\"})})},r2222MykL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLXNlbWlib2xk\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 93, 110)\"},children:\"See What Awaits You\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLXNlbWlib2xk\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 93, 110)\"},children:\"See What Awaits You\"})}),className:\"framer-7r3ms6\",\"data-framer-name\":\"People love us!\",fonts:[\"FS;General Sans-semibold\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xurldp\",\"data-framer-name\":\"Testimonial\",children:[isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-dix6x1 hidden-p5288h hidden-nhaa30\",\"data-framer-name\":\"Rectangle 16\"}),isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yebf9t hidden-p5288h hidden-nhaa30\",\"data-framer-name\":\"Rectangle 17\"}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a7tmpb hidden-1dk6d8j\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yd1h12\",\"data-framer-name\":\"Testimonials\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-lsbqc0-container hidden-1nq2i6t\",id:\"lsbqc0\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"cxqzNw_kh\",scopeId:\"M57bMdovT\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:39,height:\"100%\",id:\"cxqzNw_kh\",layoutId:\"cxqzNw_kh\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true,showScrollbar:true},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1324,intrinsicWidth:1050,pixelHeight:1324,pixelWidth:1050,sizes:\"320px\",src:\"https://framerusercontent.com/images/AhSqjSojvht366FDsQJnB8JemE.png\",srcSet:\"https://framerusercontent.com/images/AhSqjSojvht366FDsQJnB8JemE.png?scale-down-to=1024 812w,https://framerusercontent.com/images/AhSqjSojvht366FDsQJnB8JemE.png 1050w\"},className:\"framer-suj64y\",\"data-framer-name\":\"Card\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13qq2vc\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:944,intrinsicWidth:960,pixelHeight:944,pixelWidth:960,sizes:\"50px\",src:\"https://framerusercontent.com/images/82mco28BYVWdq5Qaoiqd8So5mM.png\",srcSet:\"https://framerusercontent.com/images/82mco28BYVWdq5Qaoiqd8So5mM.png?scale-down-to=512 512w,https://framerusercontent.com/images/82mco28BYVWdq5Qaoiqd8So5mM.png 960w\"},className:\"framer-1fwt9dq\",\"data-border\":true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qassq1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Aasish K Suresh\"})}),className:\"framer-wpo1ak\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"@aasishksuresh\"})}),className:\"framer-wiwr46\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1176,intrinsicWidth:1216,pixelHeight:1176,pixelWidth:1216,sizes:\"320px\",src:\"https://framerusercontent.com/images/tF3PpEUgte0wzOZqqtJHhuCE.png\",srcSet:\"https://framerusercontent.com/images/tF3PpEUgte0wzOZqqtJHhuCE.png?scale-down-to=512 512w,https://framerusercontent.com/images/tF3PpEUgte0wzOZqqtJHhuCE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tF3PpEUgte0wzOZqqtJHhuCE.png 1216w\"},className:\"framer-12celx0\",\"data-framer-name\":\"Card\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14q30v4\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3264,intrinsicWidth:4896,pixelHeight:3264,pixelWidth:4896,sizes:\"50px\",src:\"https://framerusercontent.com/images/mnqFKy5bxCN6YWzymrTVR0dKzU.jpg\",srcSet:\"https://framerusercontent.com/images/mnqFKy5bxCN6YWzymrTVR0dKzU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/mnqFKy5bxCN6YWzymrTVR0dKzU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/mnqFKy5bxCN6YWzymrTVR0dKzU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/mnqFKy5bxCN6YWzymrTVR0dKzU.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/mnqFKy5bxCN6YWzymrTVR0dKzU.jpg 4896w\"},className:\"framer-1neri9m\",\"data-border\":true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-u2xl7m\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"World of Travel\"})}),className:\"framer-ghvugw\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"@world_.of_travel\"})}),className:\"framer-9zutpi\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1594,intrinsicWidth:1354,pixelHeight:1594,pixelWidth:1354,sizes:\"320px\",src:\"https://framerusercontent.com/images/l5wgIy4ii5RkuSTUWTMPOu3t0.png\",srcSet:\"https://framerusercontent.com/images/l5wgIy4ii5RkuSTUWTMPOu3t0.png?scale-down-to=1024 869w,https://framerusercontent.com/images/l5wgIy4ii5RkuSTUWTMPOu3t0.png 1354w\"},className:\"framer-16nww69\",\"data-framer-name\":\"Card\",whileHover:animation3,children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8bar38\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:1638,pixelHeight:2048,pixelWidth:1638,sizes:\"50px\",src:\"https://framerusercontent.com/images/NPJhz2OYxaRAKSAz9xXLKZS3KOU.jpg\",srcSet:\"https://framerusercontent.com/images/NPJhz2OYxaRAKSAz9xXLKZS3KOU.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/NPJhz2OYxaRAKSAz9xXLKZS3KOU.jpg 1638w\"},className:\"framer-7z9e1v\",\"data-border\":true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ogw1pu\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Picture Delight\"})}),className:\"framer-wuplt4\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"@picture.delight\"})}),className:\"framer-bnxl2p\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yamb2o hidden-p5288h hidden-nhaa30\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1324,intrinsicWidth:1050,pixelHeight:1324,pixelWidth:1050,sizes:\"320px\",src:\"https://framerusercontent.com/images/AhSqjSojvht366FDsQJnB8JemE.png\",srcSet:\"https://framerusercontent.com/images/AhSqjSojvht366FDsQJnB8JemE.png?scale-down-to=1024 812w,https://framerusercontent.com/images/AhSqjSojvht366FDsQJnB8JemE.png 1050w\"},className:\"framer-1jwulau\",\"data-framer-name\":\"Card\",whileHover:animation4,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fxo2pd\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:944,intrinsicWidth:960,pixelHeight:944,pixelWidth:960,sizes:\"50px\",src:\"https://framerusercontent.com/images/82mco28BYVWdq5Qaoiqd8So5mM.png\",srcSet:\"https://framerusercontent.com/images/82mco28BYVWdq5Qaoiqd8So5mM.png?scale-down-to=512 512w,https://framerusercontent.com/images/82mco28BYVWdq5Qaoiqd8So5mM.png 960w\"},className:\"framer-1kip22f\",\"data-border\":true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1eihy9h\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Aasish K Suresh\"})}),className:\"framer-1otnkvs\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"@aasishksuresh\"})}),className:\"framer-hwk6ve\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1176,intrinsicWidth:1216,pixelHeight:1176,pixelWidth:1216,sizes:\"320px\",src:\"https://framerusercontent.com/images/tF3PpEUgte0wzOZqqtJHhuCE.png\",srcSet:\"https://framerusercontent.com/images/tF3PpEUgte0wzOZqqtJHhuCE.png?scale-down-to=512 512w,https://framerusercontent.com/images/tF3PpEUgte0wzOZqqtJHhuCE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tF3PpEUgte0wzOZqqtJHhuCE.png 1216w\"},className:\"framer-7xlrko\",\"data-framer-name\":\"Card\",whileHover:animation3,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1deendf\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3264,intrinsicWidth:4896,pixelHeight:3264,pixelWidth:4896,sizes:\"50px\",src:\"https://framerusercontent.com/images/mnqFKy5bxCN6YWzymrTVR0dKzU.jpg\",srcSet:\"https://framerusercontent.com/images/mnqFKy5bxCN6YWzymrTVR0dKzU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/mnqFKy5bxCN6YWzymrTVR0dKzU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/mnqFKy5bxCN6YWzymrTVR0dKzU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/mnqFKy5bxCN6YWzymrTVR0dKzU.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/mnqFKy5bxCN6YWzymrTVR0dKzU.jpg 4896w\"},className:\"framer-18fqn1k\",\"data-border\":true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-exifdq\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"World of Travel\"})}),className:\"framer-fe8529\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"@world_.of_travel\"})}),className:\"framer-213qsj\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1594,intrinsicWidth:1354,pixelHeight:1594,pixelWidth:1354,sizes:\"320px\",src:\"https://framerusercontent.com/images/l5wgIy4ii5RkuSTUWTMPOu3t0.png\",srcSet:\"https://framerusercontent.com/images/l5wgIy4ii5RkuSTUWTMPOu3t0.png?scale-down-to=1024 869w,https://framerusercontent.com/images/l5wgIy4ii5RkuSTUWTMPOu3t0.png 1354w\"},className:\"framer-7o5ode\",\"data-framer-name\":\"Card\",whileHover:animation3,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qrsvlx\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:1638,pixelHeight:2048,pixelWidth:1638,sizes:\"50px\",src:\"https://framerusercontent.com/images/NPJhz2OYxaRAKSAz9xXLKZS3KOU.jpg\",srcSet:\"https://framerusercontent.com/images/NPJhz2OYxaRAKSAz9xXLKZS3KOU.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/NPJhz2OYxaRAKSAz9xXLKZS3KOU.jpg 1638w\"},className:\"framer-1o1annb\",\"data-border\":true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nrj2jm\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Picture Delight\"})}),className:\"framer-37h4w4\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"@picture.delight\"})}),className:\"framer-1ywvsif\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-128mt95\",children:[isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-31hm8c hidden-p5288h hidden-nhaa30\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"70px\",src:\"https://framerusercontent.com/images/Wpgwa9pcPZ0G20b8IpWEHTRIKGE.png\",srcSet:\"https://framerusercontent.com/images/Wpgwa9pcPZ0G20b8IpWEHTRIKGE.png?scale-down-to=512 512w,https://framerusercontent.com/images/Wpgwa9pcPZ0G20b8IpWEHTRIKGE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Wpgwa9pcPZ0G20b8IpWEHTRIKGE.png 2000w\"},className:\"framer-8864v2\",\"data-framer-name\":\"image 1\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"22.4px\",\"--framer-letter-spacing\":\"-0.16px\",\"--framer-line-height\":\"13.16px\",\"--framer-text-color\":\"rgb(191, 191, 191)\"},children:\"Reviews\"})}),className:\"framer-14rjv84\",\"data-framer-name\":\"Reviews\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xu68ez\",\"data-framer-name\":\"Frame 116\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-iugfrw\",\"data-framer-name\":\"Group 16\",children:[isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cqde39 hidden-1nq2i6t\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HaI5fMROZ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+912+0+6420+20+55+0+433+0+0+10+0+20+0+0),sizes:\"70px\",src:\"https://framerusercontent.com/images/Wpgwa9pcPZ0G20b8IpWEHTRIKGE.png\",srcSet:\"https://framerusercontent.com/images/Wpgwa9pcPZ0G20b8IpWEHTRIKGE.png?scale-down-to=512 512w,https://framerusercontent.com/images/Wpgwa9pcPZ0G20b8IpWEHTRIKGE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Wpgwa9pcPZ0G20b8IpWEHTRIKGE.png 2000w\"}},r2222MykL:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+912+0+6371+20+55+0+433+0+0+10+0+20+0+0),sizes:\"70px\",src:\"https://framerusercontent.com/images/Wpgwa9pcPZ0G20b8IpWEHTRIKGE.png\",srcSet:\"https://framerusercontent.com/images/Wpgwa9pcPZ0G20b8IpWEHTRIKGE.png?scale-down-to=512 512w,https://framerusercontent.com/images/Wpgwa9pcPZ0G20b8IpWEHTRIKGE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Wpgwa9pcPZ0G20b8IpWEHTRIKGE.png 2000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"70px\",src:\"https://framerusercontent.com/images/Wpgwa9pcPZ0G20b8IpWEHTRIKGE.png\",srcSet:\"https://framerusercontent.com/images/Wpgwa9pcPZ0G20b8IpWEHTRIKGE.png?scale-down-to=512 512w,https://framerusercontent.com/images/Wpgwa9pcPZ0G20b8IpWEHTRIKGE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Wpgwa9pcPZ0G20b8IpWEHTRIKGE.png 2000w\"},className:\"framer-f6hv9q\",\"data-framer-name\":\"image 1\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"22.4px\",\"--framer-letter-spacing\":\"-0.16px\",\"--framer-line-height\":\"13.16px\",\"--framer-text-color\":\"rgb(191, 191, 191)\"},children:\"Reviews\"})}),className:\"framer-pi9s2y\",\"data-framer-name\":\"Reviews\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xdaxpm\",\"data-framer-name\":\"Rectangle 12\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-y2bafd\",\"data-framer-name\":\"Group 14\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:29,intrinsicWidth:140,svg:'<svg width=\"140\" height=\"29\" viewBox=\"0 0 140 29\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M6.79132 25.9679L8.6859 17.7775L2.33179 12.2686L10.7262 11.54L13.9907 3.81592L17.2552 11.54L25.6496 12.2686L19.2955 17.7775L21.1901 25.9679L13.9907 21.6249L6.79132 25.9679Z\" fill=\"black\"/>\\n<path d=\"M34.7727 25.9679L36.6673 17.7775L30.3132 12.2686L38.7076 11.54L41.9721 3.81592L45.2366 11.54L53.631 12.2686L47.2769 17.7775L49.1715 25.9679L41.9721 21.6249L34.7727 25.9679Z\" fill=\"black\"/>\\n<path d=\"M62.7542 25.9679L64.6487 17.7775L58.2946 12.2686L66.689 11.54L69.9535 3.81592L73.218 11.54L81.6125 12.2686L75.2583 17.7775L77.1529 25.9679L69.9535 21.6249L62.7542 25.9679Z\" fill=\"black\"/>\\n<path d=\"M90.7356 25.9679L92.6302 17.7775L86.276 12.2686L94.6705 11.54L97.935 3.81592L101.199 11.54L109.594 12.2686L103.24 17.7775L105.134 25.9679L97.935 21.6249L90.7356 25.9679Z\" fill=\"black\"/>\\n<path d=\"M118.717 25.9679L120.612 17.7775L114.257 12.2686L122.652 11.54L125.916 3.81592L129.181 11.54L137.575 12.2686L131.221 17.7775L133.116 25.9679L125.916 21.6249L118.717 25.9679Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"14.42px\",\"--framer-letter-spacing\":\"-0.17px\"},children:\"Wonderful place. Can't believe such a space existed. Very similar to ooty botanical gardens. But with a pinch of adventure too. Work is in progress. When finished it can become one of the most sought after tourist destination. I think presently there's a shortage of staff their. Hope everything will be in top spot by next year.\"})}),className:\"framer-1l7olqw hidden-p5288h hidden-nhaa30\",\"data-framer-name\":\"Wonderful place. Can't believe such a space existed. Very similar to ooty botanical gardens. But with a pinch of adventure too. Work is in progress. When finished it can become one of the most sought after tourist destination. I think presently there's a shortage of staff their. Hope everything will be in top spot by next year.\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"14.42px\",\"--framer-letter-spacing\":\"-0.17px\"},children:\"Wonderful place. Can't believe such a space existed. Very similar to ooty botanical gardens. But with a pinch of adventure too. Work is in progress. When finished it can become one of the most sought after tourist destination. I think presently there's a shortage of staff their. Hope everything will be in top spot by next year.\"})}),className:\"framer-10yg2x6 hidden-1nq2i6t\",\"data-framer-name\":\"Wonderful place. Can't believe such a space existed. Very similar to ooty botanical gardens. But with a pinch of adventure too. Work is in progress. When finished it can become one of the most sought after tourist destination. I think presently there's a shortage of staff their. Hope everything will be in top spot by next year.\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-k5jvj8\",\"data-framer-name\":\"Group 15\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HaI5fMROZ:{height:74,width:\"379px\",y:(componentViewport?.y||0)+0+912+0+6420+20+55+0+433+0+0+10+343+0+0},r2222MykL:{height:74,width:\"379px\",y:(componentViewport?.y||0)+0+912+0+6371+20+55+0+433+0+0+10+343+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:73.55937957763672,width:\"393.759px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-yuzlnc-container\",nodeId:\"lKCxru97_\",scopeId:\"M57bMdovT\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HaI5fMROZ:{style:{width:\"100%\"}},r2222MykL:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Rectangle12,{height:\"100%\",id:\"lKCxru97_\",layoutId:\"lKCxru97_\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1422cdi\",\"data-framer-name\":\"Group 115\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-r4a3ub\",\"data-framer-name\":\"Rectangle 12\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-ion21d\",\"data-framer-name\":\"Group 14\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:29,intrinsicWidth:140,svg:'<svg width=\"140\" height=\"29\" viewBox=\"0 0 140 29\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M6.79132 25.9681L8.6859 17.7777L2.33179 12.2689L10.7262 11.5402L13.9907 3.81616L17.2552 11.5402L25.6496 12.2689L19.2955 17.7777L21.1901 25.9681L13.9907 21.6252L6.79132 25.9681Z\" fill=\"black\"/>\\n<path d=\"M34.7727 25.9681L36.6673 17.7777L30.3132 12.2689L38.7076 11.5402L41.9721 3.81616L45.2366 11.5402L53.631 12.2689L47.2769 17.7777L49.1715 25.9681L41.9721 21.6252L34.7727 25.9681Z\" fill=\"black\"/>\\n<path d=\"M62.7542 25.9681L64.6487 17.7777L58.2946 12.2689L66.689 11.5402L69.9535 3.81616L73.218 11.5402L81.6125 12.2689L75.2583 17.7777L77.1529 25.9681L69.9535 21.6252L62.7542 25.9681Z\" fill=\"black\"/>\\n<path d=\"M90.7356 25.9681L92.6302 17.7777L86.2761 12.2689L94.6705 11.5402L97.935 3.81616L101.199 11.5402L109.594 12.2689L103.24 17.7777L105.134 25.9681L97.935 21.6252L90.7356 25.9681Z\" fill=\"black\"/>\\n<path d=\"M118.717 25.9681L120.612 17.7777L114.257 12.2689L122.652 11.5402L125.916 3.81616L129.181 11.5402L137.575 12.2689L131.221 17.7777L133.116 25.9681L125.916 21.6252L118.717 25.9681Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"14.42px\",\"--framer-letter-spacing\":\"-0.17px\"},children:\"Such a nice place to spend some time with family and friends. Kids will definitely enjoy the garden at the dam. Flower maintenance was great. We tried zipline before getting here so avoided it, but this one looked longer than we did. And Human slingshot was there but wasn't available during our visit.\"})}),className:\"framer-vu7w1j\",\"data-framer-name\":\"Such a nice place to spend some time with family and friends. Kids will definitely enjoy the garden at the dam. Flower maintenance was great. We tried zipline before getting here so avoided it, but this one looked longer than we did. And Human slingshot was there but wasn't available during our visit.\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})]})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rrbnx9 hidden-1nq2i6t hidden-p5288h hidden-nhaa30\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wktdif\",\"data-framer-name\":\"Testimonials\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-uwtf7p-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"oxwLGZGVq\",scopeId:\"M57bMdovT\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:52,height:\"100%\",id:\"oxwLGZGVq\",layoutId:\"oxwLGZGVq\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1324,intrinsicWidth:1050,pixelHeight:1324,pixelWidth:1050,sizes:\"320px\",src:\"https://framerusercontent.com/images/AhSqjSojvht366FDsQJnB8JemE.png\",srcSet:\"https://framerusercontent.com/images/AhSqjSojvht366FDsQJnB8JemE.png?scale-down-to=1024 812w,https://framerusercontent.com/images/AhSqjSojvht366FDsQJnB8JemE.png 1050w\"},className:\"framer-suj64y\",\"data-framer-name\":\"Card\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13qq2vc\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:944,intrinsicWidth:960,pixelHeight:944,pixelWidth:960,sizes:\"50px\",src:\"https://framerusercontent.com/images/82mco28BYVWdq5Qaoiqd8So5mM.png\",srcSet:\"https://framerusercontent.com/images/82mco28BYVWdq5Qaoiqd8So5mM.png?scale-down-to=512 512w,https://framerusercontent.com/images/82mco28BYVWdq5Qaoiqd8So5mM.png 960w\"},className:\"framer-1fwt9dq\",\"data-border\":true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qassq1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Aasish K Suresh\"})}),className:\"framer-wpo1ak\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"@aasishksuresh\"})}),className:\"framer-wiwr46\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1176,intrinsicWidth:1216,pixelHeight:1176,pixelWidth:1216,sizes:\"320px\",src:\"https://framerusercontent.com/images/tF3PpEUgte0wzOZqqtJHhuCE.png\",srcSet:\"https://framerusercontent.com/images/tF3PpEUgte0wzOZqqtJHhuCE.png?scale-down-to=512 512w,https://framerusercontent.com/images/tF3PpEUgte0wzOZqqtJHhuCE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tF3PpEUgte0wzOZqqtJHhuCE.png 1216w\"},className:\"framer-12celx0\",\"data-framer-name\":\"Card\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14q30v4\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3264,intrinsicWidth:4896,pixelHeight:3264,pixelWidth:4896,sizes:\"50px\",src:\"https://framerusercontent.com/images/mnqFKy5bxCN6YWzymrTVR0dKzU.jpg\",srcSet:\"https://framerusercontent.com/images/mnqFKy5bxCN6YWzymrTVR0dKzU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/mnqFKy5bxCN6YWzymrTVR0dKzU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/mnqFKy5bxCN6YWzymrTVR0dKzU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/mnqFKy5bxCN6YWzymrTVR0dKzU.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/mnqFKy5bxCN6YWzymrTVR0dKzU.jpg 4896w\"},className:\"framer-1neri9m\",\"data-border\":true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-u2xl7m\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"World of Travel\"})}),className:\"framer-ghvugw\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"@world_.of_travel\"})}),className:\"framer-9zutpi\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1594,intrinsicWidth:1354,pixelHeight:1594,pixelWidth:1354,sizes:\"320px\",src:\"https://framerusercontent.com/images/l5wgIy4ii5RkuSTUWTMPOu3t0.png\",srcSet:\"https://framerusercontent.com/images/l5wgIy4ii5RkuSTUWTMPOu3t0.png?scale-down-to=1024 869w,https://framerusercontent.com/images/l5wgIy4ii5RkuSTUWTMPOu3t0.png 1354w\"},className:\"framer-16nww69\",\"data-framer-name\":\"Card\",whileHover:animation3,children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8bar38\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:1638,pixelHeight:2048,pixelWidth:1638,sizes:\"50px\",src:\"https://framerusercontent.com/images/NPJhz2OYxaRAKSAz9xXLKZS3KOU.jpg\",srcSet:\"https://framerusercontent.com/images/NPJhz2OYxaRAKSAz9xXLKZS3KOU.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/NPJhz2OYxaRAKSAz9xXLKZS3KOU.jpg 1638w\"},className:\"framer-7z9e1v\",\"data-border\":true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ogw1pu\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Picture Delight\"})}),className:\"framer-wuplt4\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"@picture.delight\"})}),className:\"framer-bnxl2p\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lp9lnr\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vlaeqn\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I0ELSQpF1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+799+0+4955+-8+0+605+0+0+0),sizes:\"70px\",src:\"https://framerusercontent.com/images/Wpgwa9pcPZ0G20b8IpWEHTRIKGE.png\",srcSet:\"https://framerusercontent.com/images/Wpgwa9pcPZ0G20b8IpWEHTRIKGE.png?scale-down-to=512 512w,https://framerusercontent.com/images/Wpgwa9pcPZ0G20b8IpWEHTRIKGE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Wpgwa9pcPZ0G20b8IpWEHTRIKGE.png 2000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"70px\",src:\"https://framerusercontent.com/images/Wpgwa9pcPZ0G20b8IpWEHTRIKGE.png\",srcSet:\"https://framerusercontent.com/images/Wpgwa9pcPZ0G20b8IpWEHTRIKGE.png?scale-down-to=512 512w,https://framerusercontent.com/images/Wpgwa9pcPZ0G20b8IpWEHTRIKGE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Wpgwa9pcPZ0G20b8IpWEHTRIKGE.png 2000w\"},className:\"framer-4w6u7b\",\"data-framer-name\":\"image 1\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"22.4px\",\"--framer-letter-spacing\":\"-0.16px\",\"--framer-line-height\":\"13.16px\",\"--framer-text-color\":\"rgb(191, 191, 191)\"},children:\"Reviews\"})}),className:\"framer-xezpoi\",\"data-framer-name\":\"Reviews\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4xscbv\",\"data-framer-name\":\"Group 16\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScroll\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1i96ax8\",\"data-framer-name\":\"Rectangle 12\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1l77or\",\"data-framer-name\":\"Group 14\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:29,intrinsicWidth:140,svg:'<svg width=\"140\" height=\"29\" viewBox=\"0 0 140 29\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M6.79132 25.9679L8.6859 17.7775L2.33179 12.2686L10.7262 11.54L13.9907 3.81592L17.2552 11.54L25.6496 12.2686L19.2955 17.7775L21.1901 25.9679L13.9907 21.6249L6.79132 25.9679Z\" fill=\"black\"/>\\n<path d=\"M34.7727 25.9679L36.6673 17.7775L30.3132 12.2686L38.7076 11.54L41.9721 3.81592L45.2366 11.54L53.631 12.2686L47.2769 17.7775L49.1715 25.9679L41.9721 21.6249L34.7727 25.9679Z\" fill=\"black\"/>\\n<path d=\"M62.7542 25.9679L64.6487 17.7775L58.2946 12.2686L66.689 11.54L69.9535 3.81592L73.218 11.54L81.6125 12.2686L75.2583 17.7775L77.1529 25.9679L69.9535 21.6249L62.7542 25.9679Z\" fill=\"black\"/>\\n<path d=\"M90.7356 25.9679L92.6302 17.7775L86.276 12.2686L94.6705 11.54L97.935 3.81592L101.199 11.54L109.594 12.2686L103.24 17.7775L105.134 25.9679L97.935 21.6249L90.7356 25.9679Z\" fill=\"black\"/>\\n<path d=\"M118.717 25.9679L120.612 17.7775L114.257 12.2686L122.652 11.54L125.916 3.81592L129.181 11.54L137.575 12.2686L131.221 17.7775L133.116 25.9679L125.916 21.6249L118.717 25.9679Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"14.42px\",\"--framer-letter-spacing\":\"-0.17px\",\"--framer-text-alignment\":\"left\"},children:\"Wonderful place. Can't believe such a space existed. Very similar to ooty botanical gardens. But with a pinch of adventure too. Work is in progress. When finished it can become one of the most sought after tourist destination. I think presently there's a shortage of staff their. Hope everything will be in top spot by next year.\"})}),className:\"framer-nq0s40\",\"data-framer-name\":\"Wonderful place. Can't believe such a space existed. Very similar to ooty botanical gardens. But with a pinch of adventure too. Work is in progress. When finished it can become one of the most sought after tourist destination. I think presently there's a shortage of staff their. Hope everything will be in top spot by next year.\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-83buty\",\"data-framer-name\":\"Group 15\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I0ELSQpF1:{y:(componentViewport?.y||0)+0+799+0+4955+-8+0+605+0+314+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:73.55937957763672,width:\"393.759px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mazk5g-container\",nodeId:\"uhoGaGb1F\",scopeId:\"M57bMdovT\",children:/*#__PURE__*/_jsx(Rectangle12,{height:\"100%\",id:\"uhoGaGb1F\",layoutId:\"uhoGaGb1F\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14bmxyp\",\"data-framer-name\":\"Group 115\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kzdpp5\",\"data-framer-name\":\"Rectangle 12\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1tomwtu\",\"data-framer-name\":\"Group 14\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:29,intrinsicWidth:140,svg:'<svg width=\"140\" height=\"29\" viewBox=\"0 0 140 29\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M6.79132 25.9681L8.6859 17.7777L2.33179 12.2689L10.7262 11.5402L13.9907 3.81616L17.2552 11.5402L25.6496 12.2689L19.2955 17.7777L21.1901 25.9681L13.9907 21.6252L6.79132 25.9681Z\" fill=\"black\"/>\\n<path d=\"M34.7727 25.9681L36.6673 17.7777L30.3132 12.2689L38.7076 11.5402L41.9721 3.81616L45.2366 11.5402L53.631 12.2689L47.2769 17.7777L49.1715 25.9681L41.9721 21.6252L34.7727 25.9681Z\" fill=\"black\"/>\\n<path d=\"M62.7542 25.9681L64.6487 17.7777L58.2946 12.2689L66.689 11.5402L69.9535 3.81616L73.218 11.5402L81.6125 12.2689L75.2583 17.7777L77.1529 25.9681L69.9535 21.6252L62.7542 25.9681Z\" fill=\"black\"/>\\n<path d=\"M90.7356 25.9681L92.6302 17.7777L86.2761 12.2689L94.6705 11.5402L97.935 3.81616L101.199 11.5402L109.594 12.2689L103.24 17.7777L105.134 25.9681L97.935 21.6252L90.7356 25.9681Z\" fill=\"black\"/>\\n<path d=\"M118.717 25.9681L120.612 17.7777L114.257 12.2689L122.652 11.5402L125.916 3.81616L129.181 11.5402L137.575 12.2689L131.221 17.7777L133.116 25.9681L125.916 21.6252L118.717 25.9681Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"14.42px\",\"--framer-letter-spacing\":\"-0.17px\",\"--framer-text-alignment\":\"left\"},children:\"Such a nice place to spend some time with family and friends. Kids will definitely enjoy the garden at the dam. Flower maintenance was great. We tried zipline before getting here so avoided it, but this one looked longer than we did. And Human slingshot was there but wasn't available during our visit.\"})}),className:\"framer-16nsnh2\",\"data-framer-name\":\"Such a nice place to spend some time with family and friends. Kids will definitely enjoy the garden at the dam. Flower maintenance was great. We tried zipline before getting here so avoided it, but this one looked longer than we did. And Human slingshot was there but wasn't available during our visit.\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HaI5fMROZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 93, 110)\"},children:\"People love us!\"})}),fonts:[\"FS;Satoshi-bold\"],transformTemplate:undefined},r2222MykL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 93, 110)\"},children:\"People love us!\"})}),fonts:[\"FS;Satoshi-bold\"],transformTemplate:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLXNlbWlib2xk\",\"--framer-font-family\":'\"General Sans\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 93, 110)\"},children:\"People love us!\"})}),className:\"framer-1w7pf55\",\"data-framer-name\":\"People love us!\",fonts:[\"FS;General Sans-semibold\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ztHmx.framer-1chiotz, .framer-ztHmx .framer-1chiotz { display: block; }\",\".framer-ztHmx.framer-1nq2i6t { background-color: #ffffff; height: 6247px; overflow: hidden; position: relative; width: 1421px; }\",\".framer-ztHmx .framer-1nvlsoi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 0px; max-width: 100%; overflow: hidden; padding: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-ztHmx .framer-82w51t { flex: 1 0 0px; height: 789px; overflow: hidden; position: relative; width: 1px; }\",\".framer-ztHmx .framer-1v97hsl-container { flex: none; height: 100%; left: -11px; position: absolute; top: 0px; width: 101%; }\",\".framer-ztHmx .framer-16nhafy { background-color: #000000; bottom: -9px; flex: none; left: -2036px; opacity: 0.4; position: absolute; right: -1859px; top: 0px; }\",\".framer-ztHmx .framer-12quxau { background: linear-gradient(180.00000000000014deg, #000000 0%, rgba(0, 182, 186, 0) 100%); flex: none; height: 70%; left: -2082px; opacity: 0.6; position: absolute; top: -5px; width: 357%; }\",\".framer-ztHmx .framer-1lg5peq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 687px; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; right: 0px; top: 1px; }\",\".framer-ztHmx .framer-1r9v01p-container, .framer-ztHmx .framer-1rm88s6-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-ztHmx .framer-1i5bpq2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 51px; height: 575px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ztHmx .framer-1o7q3df { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 58px; height: 324px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 932px; }\",\".framer-ztHmx .framer-o7q7eh { --framer-paragraph-spacing: 14px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-ztHmx .framer-18f77kc { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 856px; word-break: break-word; word-wrap: break-word; }\",\".framer-ztHmx .framer-5sdoei { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 36px; height: 49px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 395px; }\",\".framer-ztHmx .framer-13khjiu-container { flex: none; height: auto; position: relative; width: 150px; }\",\".framer-ztHmx .framer-wcvklk-container, .framer-ztHmx .framer-81dzjc-container, .framer-ztHmx .framer-1gadznl-container { flex: none; height: 49px; position: relative; width: auto; }\",\".framer-ztHmx .framer-1hne923 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 128px; height: 92px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ztHmx .framer-8638ow { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 32px; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 185px; }\",\".framer-ztHmx .framer-hdtc9q { flex: none; height: 29px; position: relative; width: 23px; }\",\".framer-ztHmx .framer-s5donl, .framer-ztHmx .framer-ry37rv, .framer-ztHmx .framer-1tbvm86, .framer-ztHmx .framer-75k1r4, .framer-ztHmx .framer-1md6nj6, .framer-ztHmx .framer-lugxl0, .framer-ztHmx .framer-15d7gor, .framer-ztHmx .framer-1cz4dpq, .framer-ztHmx .framer-19h7k4m, .framer-ztHmx .framer-91xqoq, .framer-ztHmx .framer-1k72kr6, .framer-ztHmx .framer-1x7zb4z, .framer-ztHmx .framer-5o8aaa, .framer-ztHmx .framer-1n7ym1z, .framer-ztHmx .framer-14rjv84, .framer-ztHmx .framer-pi9s2y, .framer-ztHmx .framer-xezpoi { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-ztHmx .framer-1y4cxeg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 76px; height: 92px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 486px; }\",\".framer-ztHmx .framer-12yjor5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 92px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 133px; }\",\".framer-ztHmx .framer-1iwzgmo, .framer-ztHmx .framer-ea9v74, .framer-ztHmx .framer-1uzuyvn { flex: none; height: 40px; position: relative; width: 40px; }\",\".framer-ztHmx .framer-4hkm0t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 88px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 129px; }\",\".framer-ztHmx .framer-ao2w8k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 89px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 71px; }\",\".framer-ztHmx .framer-htikuv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 32px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 237px; }\",\".framer-ztHmx .framer-1g1n0jb { flex: none; height: 20px; position: relative; width: 97px; }\",\".framer-ztHmx .framer-i3qo8b { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; width: 100%; }\",\".framer-ztHmx .framer-mvdun6 { align-content: center; align-items: center; background-color: #d8ffd1; bottom: 296px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 189px; height: min-content; justify-content: center; left: 51%; overflow: visible; padding: 0px; position: absolute; transform: translateX(-50%); width: 115%; }\",\".framer-ztHmx .framer-1sdz3wt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 140px; justify-content: center; overflow: visible; padding: 10px 0px 0px 40px; position: relative; width: 463px; }\",\".framer-ztHmx .framer-1nbtsm4 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-ztHmx .framer-19b14nn { flex: none; height: 215px; overflow: visible; position: relative; width: 617px; }\",\".framer-ztHmx .framer-60lxyi { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-ztHmx .framer-1fjoz35 { bottom: -2px; flex: none; left: calc(50.00000000000002% - 809px / 2); position: absolute; top: 0px; width: 809px; }\",\".framer-ztHmx .framer-1xkads { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: -96px; overflow: hidden; padding: 0px; position: absolute; right: -95px; top: 820px; }\",\".framer-ztHmx .framer-mhr0wd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 50px 0px 50px 0px; position: relative; width: 1250px; }\",\".framer-ztHmx .framer-gh800h { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 38px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1250px; }\",\".framer-ztHmx .framer-a6x2q9 { flex: none; height: 225px; overflow: hidden; position: relative; width: 396px; }\",\".framer-ztHmx .framer-6dlkiz { flex: none; height: 203px; left: 18px; position: absolute; top: 0px; width: 365px; }\",\".framer-ztHmx .framer-14k4h73 { flex: none; height: 39px; left: 0px; position: absolute; top: 113px; white-space: pre-wrap; width: 107px; word-break: break-word; word-wrap: break-word; }\",\".framer-ztHmx .framer-8kwt8e { flex: none; height: 17px; left: 53px; position: absolute; top: 155px; white-space: pre-wrap; width: 45px; word-break: break-word; word-wrap: break-word; }\",\".framer-ztHmx .framer-1lv6xwy { flex: none; height: 39px; left: 262px; position: absolute; top: 43px; white-space: pre-wrap; width: 107px; word-break: break-word; word-wrap: break-word; }\",\".framer-ztHmx .framer-1uj7nu8 { flex: none; height: 8px; left: 280px; position: absolute; top: 38px; white-space: pre-wrap; width: 45px; word-break: break-word; word-wrap: break-word; }\",\".framer-ztHmx .framer-lruh71 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 58px); left: 31px; position: absolute; top: 0px; width: 58px; }\",\".framer-ztHmx .framer-1p5dt9d { border-bottom-left-radius: 9px; border-bottom-right-radius: 9px; border-top-left-radius: 9px; border-top-right-radius: 9px; flex: none; height: 140px; left: 129px; position: absolute; top: 28px; width: 119px; }\",\".framer-ztHmx .framer-tkf5zm { flex: none; height: 8px; left: 262px; position: absolute; top: 38px; width: 8px; }\",\".framer-ztHmx .framer-z0n1u6 { flex: none; height: 8px; left: 270px; position: absolute; top: 38px; width: 8px; }\",\".framer-ztHmx .framer-mzyrwv { flex: none; height: 26px; left: 262px; position: absolute; top: 79px; white-space: pre-wrap; width: 95px; word-break: break-word; word-wrap: break-word; }\",\".framer-ztHmx .framer-inf72r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ztHmx .framer-d9tbev { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 80%; word-break: break-word; word-wrap: break-word; }\",\".framer-ztHmx .framer-pvy3c6 { flex: none; height: 103px; position: relative; white-space: pre-wrap; width: 1036px; word-break: break-word; word-wrap: break-word; }\",\".framer-ztHmx .framer-dul8q8 { background-color: #ffffff; flex: none; height: 328px; overflow: hidden; position: relative; width: 645px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-ztHmx .framer-62mrx8 { flex: none; height: 327px; left: 29px; position: absolute; top: 0px; width: 591px; }\",\".framer-ztHmx .framer-d6b35r { flex: none; height: 63px; left: 0px; position: absolute; top: 182px; white-space: pre-wrap; width: 173px; word-break: break-word; word-wrap: break-word; }\",\".framer-ztHmx .framer-gl03rv { flex: none; height: 28px; left: 86px; position: absolute; top: 250px; white-space: pre-wrap; width: 72px; word-break: break-word; word-wrap: break-word; }\",\".framer-ztHmx .framer-1a7az9u { flex: none; height: 63px; left: 423px; position: absolute; top: calc(46.95121951219514% - 62.84385299682617px / 2); white-space: pre-wrap; width: 173px; word-break: break-word; word-wrap: break-word; }\",\".framer-ztHmx .framer-1s2abo7 { flex: none; height: 13px; left: 453px; position: absolute; top: 106px; white-space: pre-wrap; width: 72px; word-break: break-word; word-wrap: break-word; }\",\".framer-ztHmx .framer-8o5i95 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 94px); left: 49px; position: absolute; top: 0px; width: 94px; }\",\".framer-ztHmx .framer-1c2qi0o { border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; flex: none; height: 227px; left: 209px; position: absolute; top: 44px; width: 193px; }\",\".framer-ztHmx .framer-qp5uah { flex: none; height: 13px; left: 424px; position: absolute; top: 105px; width: 12px; }\",\".framer-ztHmx .framer-1gxlbzu { flex: none; height: 13px; left: 437px; position: absolute; top: 105px; width: 13px; }\",\".framer-ztHmx .framer-1amtpx3 { bottom: 115px; flex: none; height: 41px; left: 424px; position: absolute; white-space: pre-wrap; width: 173px; word-break: break-word; word-wrap: break-word; }\",\".framer-ztHmx .framer-fr9c24 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: 505px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ztHmx .framer-1doqxl, .framer-ztHmx .framer-83pzwy { flex: none; height: 399px; overflow: visible; position: relative; width: 525px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-ztHmx .framer-184aeyj, .framer-ztHmx .framer-nmeyq7 { flex: none; height: 377px; left: 0px; overflow: visible; position: absolute; right: 0px; top: calc(52.63157894736844% - 377px / 2); }\",\".framer-ztHmx .framer-59kly1, .framer-ztHmx .framer-xmtufb { background-color: #ffffff; border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; border-top-left-radius: 3px; border-top-right-radius: 3px; box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25); flex: none; height: 398px; left: 0px; position: absolute; top: -22px; width: 545px; }\",\".framer-ztHmx .framer-9vwbl0, .framer-ztHmx .framer-1uu8snu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 272px; overflow: hidden; padding: 0px; position: absolute; top: 77px; width: 48%; }\",\".framer-ztHmx .framer-1klzfdc, .framer-ztHmx .framer-lq1mql { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-ztHmx .framer-1hytzu9 { border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; border-top-left-radius: 3px; border-top-right-radius: 3px; bottom: 0px; flex: none; left: 0px; position: absolute; top: -22px; width: 255px; }\",\".framer-ztHmx .framer-151knne, .framer-ztHmx .framer-qx44mz { flex: none; height: 49px; left: 231px; position: absolute; top: -25px; width: 49px; }\",\".framer-ztHmx .framer-12jd9xk { border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; border-top-left-radius: 3px; border-top-right-radius: 3px; bottom: -1px; flex: none; left: 1px; position: absolute; top: 0px; width: 256px; }\",\".framer-ztHmx .framer-ltvokq, .framer-ztHmx .framer-bwgm2a, .framer-ztHmx .framer-3ckpai, .framer-ztHmx .framer-cyj9ub, .framer-ztHmx .framer-p2ytom, .framer-ztHmx .framer-13ihaeq, .framer-ztHmx .framer-1im72dl, .framer-ztHmx .framer-1ty2lv3, .framer-ztHmx .framer-rmcaqm, .framer-ztHmx .framer-1242kdh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 300px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-ztHmx .framer-g679zu, .framer-ztHmx .framer-1ih1fsx, .framer-ztHmx .framer-11q2jl5, .framer-ztHmx .framer-4asn21, .framer-ztHmx .framer-1rvmgo6, .framer-ztHmx .framer-92153b, .framer-ztHmx .framer-1qv6ivu, .framer-ztHmx .framer-6xe6xv, .framer-ztHmx .framer-1cjxgvz, .framer-ztHmx .framer-6vxmyo { flex: none; height: 377px; overflow: visible; position: relative; width: 100%; }\",\".framer-ztHmx .framer-19qf3uj, .framer-ztHmx .framer-1snrnza, .framer-ztHmx .framer-1rh2l4i, .framer-ztHmx .framer-hst1e3, .framer-ztHmx .framer-18g8u1s, .framer-ztHmx .framer-6pqpyz, .framer-ztHmx .framer-142axbw, .framer-ztHmx .framer-5l2ak6, .framer-ztHmx .framer-9u9ook, .framer-ztHmx .framer-105vbv3, .framer-ztHmx .framer-3ti3xe, .framer-ztHmx .framer-1y4sdvs, .framer-ztHmx .framer-xltt5h, .framer-ztHmx .framer-32h5tw { background-color: #ffffff; border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; border-top-left-radius: 3px; border-top-right-radius: 3px; box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25); flex: none; height: 377px; left: 0px; position: absolute; top: 0px; width: 300px; }\",\".framer-ztHmx .framer-178fnev, .framer-ztHmx .framer-qoq6cm, .framer-ztHmx .framer-1jgqg09, .framer-ztHmx .framer-13proi0, .framer-ztHmx .framer-v1y8xn { flex: none; height: auto; left: 50%; position: absolute; top: 331px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-ztHmx .framer-1fti7tk, .framer-ztHmx .framer-1arc3z2 { border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; border-top-left-radius: 3px; border-top-right-radius: 3px; flex: none; height: 313px; position: absolute; right: 0px; top: 0px; width: 299px; }\",\".framer-ztHmx .framer-1ds3aoq, .framer-ztHmx .framer-1hiuyde { flex: none; height: 49px; left: calc(49.83277591973246% - 49px / 2); position: absolute; top: -26px; width: 49px; }\",\".framer-ztHmx .framer-1duzqog, .framer-ztHmx .framer-1lobi30 { border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; border-top-left-radius: 3px; border-top-right-radius: 3px; flex: none; height: 313px; left: 0px; position: absolute; right: 0px; top: -1px; }\",\".framer-ztHmx .framer-1hdiuis, .framer-ztHmx .framer-ed2jh9 { flex: none; height: 49px; left: calc(50.00000000000002% - 49px / 2); position: absolute; top: -25px; width: 49px; }\",\".framer-ztHmx .framer-5ev3mu, .framer-ztHmx .framer-2gnrdz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: 419px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ztHmx .framer-179wn38, .framer-ztHmx .framer-ze57cq, .framer-ztHmx .framer-1wytfny, .framer-ztHmx .framer-urnoo4, .framer-ztHmx .framer-1wdm0gz, .framer-ztHmx .framer-18z9ojf, .framer-ztHmx .framer-xdlxxm, .framer-ztHmx .framer-okfg5z { flex: none; height: 399px; overflow: visible; position: relative; width: 300px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-ztHmx .framer-1pe36gz, .framer-ztHmx .framer-cv466k, .framer-ztHmx .framer-1wdik1g, .framer-ztHmx .framer-1d0wgfr, .framer-ztHmx .framer-nii03a, .framer-ztHmx .framer-1mfv5pf, .framer-ztHmx .framer-14amhfb, .framer-ztHmx .framer-1obombi { flex: none; height: 377px; left: 0px; overflow: visible; position: absolute; top: 22px; width: 300px; }\",\".framer-ztHmx .framer-hp4vct, .framer-ztHmx .framer-ft4uar, .framer-ztHmx .framer-pgj80g, .framer-ztHmx .framer-1w2nnch { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; border-top-left-radius: 3px; border-top-right-radius: 3px; box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 377px; justify-content: center; left: 0px; padding: 0px; position: absolute; top: 0px; width: 300px; }\",\".framer-ztHmx .framer-dx4lll, .framer-ztHmx .framer-1hs6o3w, .framer-ztHmx .framer-1c7fhgk, .framer-ztHmx .framer-dcsj6e { bottom: 21px; flex: none; height: auto; left: 50%; position: absolute; transform: translateX(-50%); white-space: pre; width: auto; z-index: 1; }\",\".framer-ztHmx .framer-1usx0ea, .framer-ztHmx .framer-nm5uha, .framer-ztHmx .framer-1uehpqx, .framer-ztHmx .framer-2j59rn, .framer-ztHmx .framer-16rswy7, .framer-ztHmx .framer-2q8yg9, .framer-ztHmx .framer-1tehvi7, .framer-ztHmx .framer-1fi4zva, .framer-ztHmx .framer-1w63zdb, .framer-ztHmx .framer-1r9p47u, .framer-ztHmx .framer-163kh9o, .framer-ztHmx .framer-15dah2z, .framer-ztHmx .framer-1kw7m38, .framer-ztHmx .framer-142uhds { border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; border-top-left-radius: 3px; border-top-right-radius: 3px; flex: none; height: 312px; left: 0px; position: absolute; top: 0px; width: 300px; }\",\".framer-ztHmx .framer-t9i8ud, .framer-ztHmx .framer-rwtwwz, .framer-ztHmx .framer-1jl93q8, .framer-ztHmx .framer-1itiisw, .framer-ztHmx .framer-15h6oin, .framer-ztHmx .framer-ael4x8, .framer-ztHmx .framer-l8ogid, .framer-ztHmx .framer-199seto, .framer-ztHmx .framer-l23osm, .framer-ztHmx .framer-1cokquo, .framer-ztHmx .framer-1v3s2cs { flex: none; height: 49px; left: calc(50.00000000000002% - 49px / 2); position: absolute; top: -26px; width: 49px; }\",\".framer-ztHmx .framer-1t242zk, .framer-ztHmx .framer-sd1tmh, .framer-ztHmx .framer-ukq6om, .framer-ztHmx .framer-5988k9, .framer-ztHmx .framer-1ge52a9 { flex: none; height: 49px; left: 125px; position: absolute; top: 0px; width: 49px; }\",\".framer-ztHmx .framer-19kpg4r, .framer-ztHmx .framer-1ymh14h, .framer-ztHmx .framer-1q33wv0, .framer-ztHmx .framer-z9peet, .framer-ztHmx .framer-1miispt, .framer-ztHmx .framer-1upqnob { bottom: 22px; flex: none; height: auto; left: 50%; position: absolute; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-ztHmx .framer-5dijbt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ztHmx .framer-7vf5wu, .framer-ztHmx .framer-zjzphg, .framer-ztHmx .framer-9ggt5p { flex: none; height: 49px; left: calc(49.666666666666686% - 49px / 2); position: absolute; top: -22px; width: 49px; }\",\".framer-ztHmx .framer-107l0m9, .framer-ztHmx .framer-18wy0kg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 640px; }\",\".framer-ztHmx .framer-psntqo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 86px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 640px; }\",\".framer-ztHmx .framer-1wklqrl, .framer-ztHmx .framer-lzu91h { bottom: 21px; flex: none; height: auto; left: 50%; position: absolute; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-ztHmx .framer-11bomh2 { bottom: 20px; flex: none; height: auto; left: 50%; position: absolute; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-ztHmx .framer-15tinck { align-content: center; align-items: center; background-color: #000000; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ztHmx .framer-t6408a { align-content: center; align-items: center; display: flex; flex: 2 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 23px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 40px; position: relative; width: 1px; }\",\".framer-ztHmx .framer-3z9n5z, .framer-ztHmx .framer-1hp7u2w { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-ztHmx .framer-1l5lhiu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 94px 0px 72px 16px; position: relative; width: 100%; }\",\".framer-ztHmx .framer-1h61dqa { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 31px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 100px; position: relative; width: 1px; }\",\".framer-ztHmx .framer-1sxv3e3 { flex: none; height: 7px; position: relative; width: 118px; }\",\".framer-ztHmx .framer-1lbctzh { flex: none; height: 118px; position: relative; white-space: pre-wrap; width: 634px; word-break: break-word; word-wrap: break-word; }\",\".framer-ztHmx .framer-ytajlt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 365px; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-ztHmx .framer-6ye8tf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 408px; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-ztHmx .framer-tegsmd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 370px; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-ztHmx .framer-1tkrcvu { flex: none; height: 769px; overflow: hidden; position: relative; width: 1730px; }\",\".framer-ztHmx .framer-lkw6mm { background-color: #f7ffc7; flex: none; height: 439px; left: -137px; position: absolute; top: -144px; width: 364px; }\",\".framer-ztHmx .framer-3qieuy-container { bottom: 60px; flex: none; height: 556px; left: calc(50.06596306068604% - 1088px / 2); position: absolute; width: 1088px; }\",\".framer-ztHmx .framer-7r3ms6, .framer-ztHmx .framer-1w7pf55 { flex: none; height: auto; left: 50%; position: absolute; top: 47px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-ztHmx .framer-xurldp { flex: none; height: 985px; overflow: hidden; position: relative; width: 100%; }\",\".framer-ztHmx .framer-dix6x1 { background-color: #e2ffec; flex: none; height: 419px; left: 1px; position: absolute; top: 0px; width: 455px; }\",\".framer-ztHmx .framer-1yebf9t { background-color: #f7ffc7; bottom: 168px; flex: none; height: 439px; position: absolute; right: 0px; width: 364px; }\",\".framer-ztHmx .framer-a7tmpb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px; position: absolute; top: 49%; transform: translate(-50%, -50%); width: 1434px; }\",\".framer-ztHmx .framer-yd1h12 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 200px 40px 100px 40px; position: relative; width: 118%; }\",\".framer-ztHmx .framer-lsbqc0-container { flex: none; height: 433px; position: relative; width: 398px; }\",\".framer-ztHmx .framer-suj64y, .framer-ztHmx .framer-12celx0 { align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 402px; justify-content: flex-start; padding: 30px; position: relative; width: 320px; }\",\".framer-ztHmx .framer-13qq2vc, .framer-ztHmx .framer-14q30v4, .framer-ztHmx .framer-8bar38, .framer-ztHmx .framer-1fxo2pd, .framer-ztHmx .framer-1deendf, .framer-ztHmx .framer-1qrsvlx { -webkit-backdrop-filter: blur(28px); align-content: center; align-items: center; backdrop-filter: blur(28px); border-bottom-left-radius: 47px; border-bottom-right-radius: 47px; border-top-left-radius: 47px; border-top-right-radius: 47px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 5px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-ztHmx .framer-1fwt9dq, .framer-ztHmx .framer-1neri9m, .framer-ztHmx .framer-7z9e1v, .framer-ztHmx .framer-1kip22f, .framer-ztHmx .framer-18fqn1k, .framer-ztHmx .framer-1o1annb { --border-bottom-width: 3px; --border-color: #ffffff; --border-left-width: 3px; --border-right-width: 3px; --border-style: solid; --border-top-width: 3px; aspect-ratio: 1 / 1; border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.25); flex: none; height: var(--framer-aspect-ratio-supported, 50px); overflow: hidden; position: relative; width: 50px; will-change: var(--framer-will-change-override, transform); }\",\".framer-ztHmx .framer-qassq1, .framer-ztHmx .framer-u2xl7m, .framer-ztHmx .framer-ogw1pu, .framer-ztHmx .framer-1eihy9h, .framer-ztHmx .framer-exifdq, .framer-ztHmx .framer-nrj2jm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 200px; }\",\".framer-ztHmx .framer-wpo1ak, .framer-ztHmx .framer-ghvugw, .framer-ztHmx .framer-wuplt4, .framer-ztHmx .framer-1otnkvs, .framer-ztHmx .framer-fe8529, .framer-ztHmx .framer-37h4w4 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.25); white-space: pre; width: auto; }\",\".framer-ztHmx .framer-wiwr46, .framer-ztHmx .framer-9zutpi, .framer-ztHmx .framer-bnxl2p, .framer-ztHmx .framer-hwk6ve, .framer-ztHmx .framer-213qsj, .framer-ztHmx .framer-1ywvsif { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.25); white-space: pre; width: auto; }\",\".framer-ztHmx .framer-16nww69 { align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 402px; justify-content: flex-start; padding: 30px; position: relative; width: 320px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-ztHmx .framer-1yamb2o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 31px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ztHmx .framer-1jwulau, .framer-ztHmx .framer-7xlrko, .framer-ztHmx .framer-7o5ode { align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 402px; justify-content: flex-start; padding: 30px; position: relative; width: 320px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-ztHmx .framer-128mt95 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 335px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1434px; }\",\".framer-ztHmx .framer-31hm8c, .framer-ztHmx .framer-cqde39, .framer-ztHmx .framer-vlaeqn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 24px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 158px; }\",\".framer-ztHmx .framer-8864v2, .framer-ztHmx .framer-f6hv9q, .framer-ztHmx .framer-4w6u7b { aspect-ratio: 2.9166666666666665 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 70px; }\",\".framer-ztHmx .framer-1xu68ez { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-ztHmx .framer-iugfrw, .framer-ztHmx .framer-k5jvj8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 419px; }\",\".framer-ztHmx .framer-1xdaxpm, .framer-ztHmx .framer-1i96ax8 { background-color: #ffffff; border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; box-shadow: 1.4423408508300781px 2.8846817016601562px 15.14457893371582px 0px rgba(0, 0, 0, 0.2); flex: none; height: 220px; position: relative; width: 394px; }\",\".framer-ztHmx .framer-y2bafd { flex: none; height: 29px; left: 30px; position: absolute; top: 51px; width: 140px; }\",\".framer-ztHmx .framer-1l7olqw { bottom: 1px; flex: none; height: 135px; left: calc(51.015228426395964% - 341px / 2); position: absolute; white-space: pre-wrap; width: 341px; word-break: break-word; word-wrap: break-word; }\",\".framer-ztHmx .framer-10yg2x6 { bottom: 19px; flex: none; height: 135px; left: calc(46.33507853403144% - 316px / 2); position: absolute; white-space: pre-wrap; width: 316px; word-break: break-word; word-wrap: break-word; }\",\".framer-ztHmx .framer-yuzlnc-container, .framer-ztHmx .framer-1mazk5g-container { flex: none; height: 74px; position: relative; width: 394px; }\",\".framer-ztHmx .framer-1422cdi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 396px; }\",\".framer-ztHmx .framer-r4a3ub { background-color: #ffffff; border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; box-shadow: 1.4423408508300781px 2.8846817016601562px 15.14457893371582px 0px rgba(0, 0, 0, 0.2); flex: none; height: 220px; position: relative; width: 100%; }\",\".framer-ztHmx .framer-ion21d { flex: none; height: 29px; left: 27px; position: absolute; top: 50px; width: 140px; }\",\".framer-ztHmx .framer-vu7w1j { bottom: 1px; flex: none; height: 135px; left: calc(49.74619289340104% - 341px / 2); position: absolute; white-space: pre-wrap; width: 341px; word-break: break-word; word-wrap: break-word; }\",\".framer-ztHmx .framer-rrbnx9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px; position: absolute; top: -8px; transform: translateX(-50%); width: 802px; }\",\".framer-ztHmx .framer-1wktdif { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: 605px; justify-content: center; overflow: hidden; padding: 100px 40px 100px 40px; position: relative; width: 814px; }\",\".framer-ztHmx .framer-uwtf7p-container { flex: none; height: 433px; position: relative; width: 793px; }\",\".framer-ztHmx .framer-1lp9lnr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 35px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 810px; }\",\".framer-ztHmx .framer-4xscbv { 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: 0px; position: relative; width: min-content; }\",\".framer-ztHmx .framer-1l77or { flex: none; height: 29px; left: 27px; position: absolute; top: 29px; width: 140px; }\",\".framer-ztHmx .framer-nq0s40 { bottom: 18px; flex: none; height: 135px; left: calc(50.00000000000002% - 341px / 2); position: absolute; white-space: pre-wrap; width: 341px; word-break: break-word; word-wrap: break-word; }\",\".framer-ztHmx .framer-83buty { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-ztHmx .framer-14bmxyp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 20px 0px; position: relative; width: min-content; }\",\".framer-ztHmx .framer-1kzdpp5 { align-content: flex-start; align-items: flex-start; align-self: stretch; background-color: #ffffff; border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; box-shadow: 1.4423408508300781px 2.8846817016601562px 15.14457893371582px 0px rgba(0, 0, 0, 0.2); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 20px; position: relative; width: auto; }\",\".framer-ztHmx .framer-1tomwtu { flex: none; height: 29px; position: relative; width: 140px; }\",\".framer-ztHmx .framer-16nsnh2 { flex: none; height: 135px; position: relative; white-space: pre-wrap; width: 341px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-ztHmx .framer-1nvlsoi, .framer-ztHmx .framer-1lg5peq, .framer-ztHmx .framer-1i5bpq2, .framer-ztHmx .framer-1o7q3df, .framer-ztHmx .framer-5sdoei, .framer-ztHmx .framer-1hne923, .framer-ztHmx .framer-8638ow, .framer-ztHmx .framer-1y4cxeg, .framer-ztHmx .framer-12yjor5, .framer-ztHmx .framer-4hkm0t, .framer-ztHmx .framer-ao2w8k, .framer-ztHmx .framer-htikuv, .framer-ztHmx .framer-i3qo8b, .framer-ztHmx .framer-mvdun6, .framer-ztHmx .framer-1sdz3wt, .framer-ztHmx .framer-1xkads, .framer-ztHmx .framer-mhr0wd, .framer-ztHmx .framer-gh800h, .framer-ztHmx .framer-inf72r, .framer-ztHmx .framer-fr9c24, .framer-ztHmx .framer-9vwbl0, .framer-ztHmx .framer-1uu8snu, .framer-ztHmx .framer-ltvokq, .framer-ztHmx .framer-bwgm2a, .framer-ztHmx .framer-5ev3mu, .framer-ztHmx .framer-hp4vct, .framer-ztHmx .framer-5dijbt, .framer-ztHmx .framer-2gnrdz, .framer-ztHmx .framer-ft4uar, .framer-ztHmx .framer-107l0m9, .framer-ztHmx .framer-3ckpai, .framer-ztHmx .framer-cyj9ub, .framer-ztHmx .framer-psntqo, .framer-ztHmx .framer-p2ytom, .framer-ztHmx .framer-pgj80g, .framer-ztHmx .framer-13ihaeq, .framer-ztHmx .framer-1im72dl, .framer-ztHmx .framer-18wy0kg, .framer-ztHmx .framer-1ty2lv3, .framer-ztHmx .framer-rmcaqm, .framer-ztHmx .framer-1w2nnch, .framer-ztHmx .framer-1242kdh, .framer-ztHmx .framer-15tinck, .framer-ztHmx .framer-t6408a, .framer-ztHmx .framer-3z9n5z, .framer-ztHmx .framer-1l5lhiu, .framer-ztHmx .framer-1h61dqa, .framer-ztHmx .framer-ytajlt, .framer-ztHmx .framer-1hp7u2w, .framer-ztHmx .framer-6ye8tf, .framer-ztHmx .framer-tegsmd, .framer-ztHmx .framer-a7tmpb, .framer-ztHmx .framer-yd1h12, .framer-ztHmx .framer-suj64y, .framer-ztHmx .framer-13qq2vc, .framer-ztHmx .framer-qassq1, .framer-ztHmx .framer-12celx0, .framer-ztHmx .framer-14q30v4, .framer-ztHmx .framer-u2xl7m, .framer-ztHmx .framer-16nww69, .framer-ztHmx .framer-8bar38, .framer-ztHmx .framer-ogw1pu, .framer-ztHmx .framer-1yamb2o, .framer-ztHmx .framer-1jwulau, .framer-ztHmx .framer-1fxo2pd, .framer-ztHmx .framer-1eihy9h, .framer-ztHmx .framer-7xlrko, .framer-ztHmx .framer-1deendf, .framer-ztHmx .framer-exifdq, .framer-ztHmx .framer-7o5ode, .framer-ztHmx .framer-1qrsvlx, .framer-ztHmx .framer-nrj2jm, .framer-ztHmx .framer-128mt95, .framer-ztHmx .framer-31hm8c, .framer-ztHmx .framer-1xu68ez, .framer-ztHmx .framer-iugfrw, .framer-ztHmx .framer-cqde39, .framer-ztHmx .framer-k5jvj8, .framer-ztHmx .framer-1422cdi, .framer-ztHmx .framer-rrbnx9, .framer-ztHmx .framer-1wktdif, .framer-ztHmx .framer-1lp9lnr, .framer-ztHmx .framer-vlaeqn, .framer-ztHmx .framer-4xscbv, .framer-ztHmx .framer-83buty, .framer-ztHmx .framer-14bmxyp, .framer-ztHmx .framer-1kzdpp5 { gap: 0px; } .framer-ztHmx .framer-1nvlsoi > *, .framer-ztHmx .framer-8638ow > *, .framer-ztHmx .framer-htikuv > *, .framer-ztHmx .framer-1l5lhiu > *, .framer-ztHmx .framer-31hm8c > *, .framer-ztHmx .framer-cqde39 > *, .framer-ztHmx .framer-vlaeqn > *, .framer-ztHmx .framer-4xscbv > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-ztHmx .framer-1nvlsoi > :first-child, .framer-ztHmx .framer-5sdoei > :first-child, .framer-ztHmx .framer-1hne923 > :first-child, .framer-ztHmx .framer-8638ow > :first-child, .framer-ztHmx .framer-1y4cxeg > :first-child, .framer-ztHmx .framer-htikuv > :first-child, .framer-ztHmx .framer-mvdun6 > :first-child, .framer-ztHmx .framer-fr9c24 > :first-child, .framer-ztHmx .framer-5ev3mu > :first-child, .framer-ztHmx .framer-5dijbt > :first-child, .framer-ztHmx .framer-2gnrdz > :first-child, .framer-ztHmx .framer-15tinck > :first-child, .framer-ztHmx .framer-t6408a > :first-child, .framer-ztHmx .framer-1l5lhiu > :first-child, .framer-ztHmx .framer-13qq2vc > :first-child, .framer-ztHmx .framer-14q30v4 > :first-child, .framer-ztHmx .framer-8bar38 > :first-child, .framer-ztHmx .framer-1yamb2o > :first-child, .framer-ztHmx .framer-1fxo2pd > :first-child, .framer-ztHmx .framer-1deendf > :first-child, .framer-ztHmx .framer-1qrsvlx > :first-child, .framer-ztHmx .framer-31hm8c > :first-child, .framer-ztHmx .framer-1xu68ez > :first-child, .framer-ztHmx .framer-cqde39 > :first-child, .framer-ztHmx .framer-vlaeqn > :first-child, .framer-ztHmx .framer-4xscbv > :first-child { margin-left: 0px; } .framer-ztHmx .framer-1nvlsoi > :last-child, .framer-ztHmx .framer-5sdoei > :last-child, .framer-ztHmx .framer-1hne923 > :last-child, .framer-ztHmx .framer-8638ow > :last-child, .framer-ztHmx .framer-1y4cxeg > :last-child, .framer-ztHmx .framer-htikuv > :last-child, .framer-ztHmx .framer-mvdun6 > :last-child, .framer-ztHmx .framer-fr9c24 > :last-child, .framer-ztHmx .framer-5ev3mu > :last-child, .framer-ztHmx .framer-5dijbt > :last-child, .framer-ztHmx .framer-2gnrdz > :last-child, .framer-ztHmx .framer-15tinck > :last-child, .framer-ztHmx .framer-t6408a > :last-child, .framer-ztHmx .framer-1l5lhiu > :last-child, .framer-ztHmx .framer-13qq2vc > :last-child, .framer-ztHmx .framer-14q30v4 > :last-child, .framer-ztHmx .framer-8bar38 > :last-child, .framer-ztHmx .framer-1yamb2o > :last-child, .framer-ztHmx .framer-1fxo2pd > :last-child, .framer-ztHmx .framer-1deendf > :last-child, .framer-ztHmx .framer-1qrsvlx > :last-child, .framer-ztHmx .framer-31hm8c > :last-child, .framer-ztHmx .framer-1xu68ez > :last-child, .framer-ztHmx .framer-cqde39 > :last-child, .framer-ztHmx .framer-vlaeqn > :last-child, .framer-ztHmx .framer-4xscbv > :last-child { margin-right: 0px; } .framer-ztHmx .framer-1lg5peq > *, .framer-ztHmx .framer-12yjor5 > *, .framer-ztHmx .framer-4hkm0t > *, .framer-ztHmx .framer-ao2w8k > *, .framer-ztHmx .framer-i3qo8b > *, .framer-ztHmx .framer-1xkads > *, .framer-ztHmx .framer-9vwbl0 > *, .framer-ztHmx .framer-1uu8snu > *, .framer-ztHmx .framer-ltvokq > *, .framer-ztHmx .framer-bwgm2a > *, .framer-ztHmx .framer-hp4vct > *, .framer-ztHmx .framer-ft4uar > *, .framer-ztHmx .framer-3ckpai > *, .framer-ztHmx .framer-cyj9ub > *, .framer-ztHmx .framer-p2ytom > *, .framer-ztHmx .framer-pgj80g > *, .framer-ztHmx .framer-13ihaeq > *, .framer-ztHmx .framer-1im72dl > *, .framer-ztHmx .framer-1ty2lv3 > *, .framer-ztHmx .framer-rmcaqm > *, .framer-ztHmx .framer-1w2nnch > *, .framer-ztHmx .framer-1242kdh > *, .framer-ztHmx .framer-3z9n5z > *, .framer-ztHmx .framer-ytajlt > *, .framer-ztHmx .framer-1hp7u2w > *, .framer-ztHmx .framer-6ye8tf > *, .framer-ztHmx .framer-tegsmd > *, .framer-ztHmx .framer-iugfrw > *, .framer-ztHmx .framer-k5jvj8 > *, .framer-ztHmx .framer-1422cdi > *, .framer-ztHmx .framer-83buty > *, .framer-ztHmx .framer-14bmxyp > *, .framer-ztHmx .framer-1kzdpp5 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-ztHmx .framer-1lg5peq > :first-child, .framer-ztHmx .framer-1i5bpq2 > :first-child, .framer-ztHmx .framer-1o7q3df > :first-child, .framer-ztHmx .framer-12yjor5 > :first-child, .framer-ztHmx .framer-4hkm0t > :first-child, .framer-ztHmx .framer-ao2w8k > :first-child, .framer-ztHmx .framer-i3qo8b > :first-child, .framer-ztHmx .framer-1sdz3wt > :first-child, .framer-ztHmx .framer-1xkads > :first-child, .framer-ztHmx .framer-mhr0wd > :first-child, .framer-ztHmx .framer-gh800h > :first-child, .framer-ztHmx .framer-inf72r > :first-child, .framer-ztHmx .framer-9vwbl0 > :first-child, .framer-ztHmx .framer-1uu8snu > :first-child, .framer-ztHmx .framer-ltvokq > :first-child, .framer-ztHmx .framer-bwgm2a > :first-child, .framer-ztHmx .framer-hp4vct > :first-child, .framer-ztHmx .framer-ft4uar > :first-child, .framer-ztHmx .framer-107l0m9 > :first-child, .framer-ztHmx .framer-3ckpai > :first-child, .framer-ztHmx .framer-cyj9ub > :first-child, .framer-ztHmx .framer-psntqo > :first-child, .framer-ztHmx .framer-p2ytom > :first-child, .framer-ztHmx .framer-pgj80g > :first-child, .framer-ztHmx .framer-13ihaeq > :first-child, .framer-ztHmx .framer-1im72dl > :first-child, .framer-ztHmx .framer-18wy0kg > :first-child, .framer-ztHmx .framer-1ty2lv3 > :first-child, .framer-ztHmx .framer-rmcaqm > :first-child, .framer-ztHmx .framer-1w2nnch > :first-child, .framer-ztHmx .framer-1242kdh > :first-child, .framer-ztHmx .framer-3z9n5z > :first-child, .framer-ztHmx .framer-1h61dqa > :first-child, .framer-ztHmx .framer-ytajlt > :first-child, .framer-ztHmx .framer-1hp7u2w > :first-child, .framer-ztHmx .framer-6ye8tf > :first-child, .framer-ztHmx .framer-tegsmd > :first-child, .framer-ztHmx .framer-a7tmpb > :first-child, .framer-ztHmx .framer-yd1h12 > :first-child, .framer-ztHmx .framer-suj64y > :first-child, .framer-ztHmx .framer-qassq1 > :first-child, .framer-ztHmx .framer-12celx0 > :first-child, .framer-ztHmx .framer-u2xl7m > :first-child, .framer-ztHmx .framer-16nww69 > :first-child, .framer-ztHmx .framer-ogw1pu > :first-child, .framer-ztHmx .framer-1jwulau > :first-child, .framer-ztHmx .framer-1eihy9h > :first-child, .framer-ztHmx .framer-7xlrko > :first-child, .framer-ztHmx .framer-exifdq > :first-child, .framer-ztHmx .framer-7o5ode > :first-child, .framer-ztHmx .framer-nrj2jm > :first-child, .framer-ztHmx .framer-128mt95 > :first-child, .framer-ztHmx .framer-iugfrw > :first-child, .framer-ztHmx .framer-k5jvj8 > :first-child, .framer-ztHmx .framer-1422cdi > :first-child, .framer-ztHmx .framer-rrbnx9 > :first-child, .framer-ztHmx .framer-1wktdif > :first-child, .framer-ztHmx .framer-1lp9lnr > :first-child, .framer-ztHmx .framer-83buty > :first-child, .framer-ztHmx .framer-14bmxyp > :first-child, .framer-ztHmx .framer-1kzdpp5 > :first-child { margin-top: 0px; } .framer-ztHmx .framer-1lg5peq > :last-child, .framer-ztHmx .framer-1i5bpq2 > :last-child, .framer-ztHmx .framer-1o7q3df > :last-child, .framer-ztHmx .framer-12yjor5 > :last-child, .framer-ztHmx .framer-4hkm0t > :last-child, .framer-ztHmx .framer-ao2w8k > :last-child, .framer-ztHmx .framer-i3qo8b > :last-child, .framer-ztHmx .framer-1sdz3wt > :last-child, .framer-ztHmx .framer-1xkads > :last-child, .framer-ztHmx .framer-mhr0wd > :last-child, .framer-ztHmx .framer-gh800h > :last-child, .framer-ztHmx .framer-inf72r > :last-child, .framer-ztHmx .framer-9vwbl0 > :last-child, .framer-ztHmx .framer-1uu8snu > :last-child, .framer-ztHmx .framer-ltvokq > :last-child, .framer-ztHmx .framer-bwgm2a > :last-child, .framer-ztHmx .framer-hp4vct > :last-child, .framer-ztHmx .framer-ft4uar > :last-child, .framer-ztHmx .framer-107l0m9 > :last-child, .framer-ztHmx .framer-3ckpai > :last-child, .framer-ztHmx .framer-cyj9ub > :last-child, .framer-ztHmx .framer-psntqo > :last-child, .framer-ztHmx .framer-p2ytom > :last-child, .framer-ztHmx .framer-pgj80g > :last-child, .framer-ztHmx .framer-13ihaeq > :last-child, .framer-ztHmx .framer-1im72dl > :last-child, .framer-ztHmx .framer-18wy0kg > :last-child, .framer-ztHmx .framer-1ty2lv3 > :last-child, .framer-ztHmx .framer-rmcaqm > :last-child, .framer-ztHmx .framer-1w2nnch > :last-child, .framer-ztHmx .framer-1242kdh > :last-child, .framer-ztHmx .framer-3z9n5z > :last-child, .framer-ztHmx .framer-1h61dqa > :last-child, .framer-ztHmx .framer-ytajlt > :last-child, .framer-ztHmx .framer-1hp7u2w > :last-child, .framer-ztHmx .framer-6ye8tf > :last-child, .framer-ztHmx .framer-tegsmd > :last-child, .framer-ztHmx .framer-a7tmpb > :last-child, .framer-ztHmx .framer-yd1h12 > :last-child, .framer-ztHmx .framer-suj64y > :last-child, .framer-ztHmx .framer-qassq1 > :last-child, .framer-ztHmx .framer-12celx0 > :last-child, .framer-ztHmx .framer-u2xl7m > :last-child, .framer-ztHmx .framer-16nww69 > :last-child, .framer-ztHmx .framer-ogw1pu > :last-child, .framer-ztHmx .framer-1jwulau > :last-child, .framer-ztHmx .framer-1eihy9h > :last-child, .framer-ztHmx .framer-7xlrko > :last-child, .framer-ztHmx .framer-exifdq > :last-child, .framer-ztHmx .framer-7o5ode > :last-child, .framer-ztHmx .framer-nrj2jm > :last-child, .framer-ztHmx .framer-128mt95 > :last-child, .framer-ztHmx .framer-iugfrw > :last-child, .framer-ztHmx .framer-k5jvj8 > :last-child, .framer-ztHmx .framer-1422cdi > :last-child, .framer-ztHmx .framer-rrbnx9 > :last-child, .framer-ztHmx .framer-1wktdif > :last-child, .framer-ztHmx .framer-1lp9lnr > :last-child, .framer-ztHmx .framer-83buty > :last-child, .framer-ztHmx .framer-14bmxyp > :last-child, .framer-ztHmx .framer-1kzdpp5 > :last-child { margin-bottom: 0px; } .framer-ztHmx .framer-1i5bpq2 > * { margin: 0px; margin-bottom: calc(51px / 2); margin-top: calc(51px / 2); } .framer-ztHmx .framer-1o7q3df > * { margin: 0px; margin-bottom: calc(58px / 2); margin-top: calc(58px / 2); } .framer-ztHmx .framer-5sdoei > * { margin: 0px; margin-left: calc(36px / 2); margin-right: calc(36px / 2); } .framer-ztHmx .framer-1hne923 > * { margin: 0px; margin-left: calc(128px / 2); margin-right: calc(128px / 2); } .framer-ztHmx .framer-1y4cxeg > * { margin: 0px; margin-left: calc(76px / 2); margin-right: calc(76px / 2); } .framer-ztHmx .framer-mvdun6 > * { margin: 0px; margin-left: calc(189px / 2); margin-right: calc(189px / 2); } .framer-ztHmx .framer-1sdz3wt > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-ztHmx .framer-mhr0wd > *, .framer-ztHmx .framer-a7tmpb > *, .framer-ztHmx .framer-qassq1 > *, .framer-ztHmx .framer-u2xl7m > *, .framer-ztHmx .framer-ogw1pu > *, .framer-ztHmx .framer-1eihy9h > *, .framer-ztHmx .framer-exifdq > *, .framer-ztHmx .framer-nrj2jm > *, .framer-ztHmx .framer-128mt95 > *, .framer-ztHmx .framer-rrbnx9 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-ztHmx .framer-gh800h > * { margin: 0px; margin-bottom: calc(38px / 2); margin-top: calc(38px / 2); } .framer-ztHmx .framer-inf72r > *, .framer-ztHmx .framer-107l0m9 > *, .framer-ztHmx .framer-18wy0kg > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-ztHmx .framer-fr9c24 > *, .framer-ztHmx .framer-5ev3mu > *, .framer-ztHmx .framer-2gnrdz > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-ztHmx .framer-5dijbt > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-ztHmx .framer-psntqo > * { margin: 0px; margin-bottom: calc(86px / 2); margin-top: calc(86px / 2); } .framer-ztHmx .framer-15tinck > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-ztHmx .framer-t6408a > * { margin: 0px; margin-left: calc(23px / 2); margin-right: calc(23px / 2); } .framer-ztHmx .framer-1h61dqa > * { margin: 0px; margin-bottom: calc(31px / 2); margin-top: calc(31px / 2); } .framer-ztHmx .framer-yd1h12 > *, .framer-ztHmx .framer-1wktdif > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-ztHmx .framer-suj64y > *, .framer-ztHmx .framer-12celx0 > *, .framer-ztHmx .framer-16nww69 > *, .framer-ztHmx .framer-1jwulau > *, .framer-ztHmx .framer-7xlrko > *, .framer-ztHmx .framer-7o5ode > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-ztHmx .framer-13qq2vc > *, .framer-ztHmx .framer-14q30v4 > *, .framer-ztHmx .framer-8bar38 > *, .framer-ztHmx .framer-1fxo2pd > *, .framer-ztHmx .framer-1deendf > *, .framer-ztHmx .framer-1qrsvlx > *, .framer-ztHmx .framer-1xu68ez > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-ztHmx .framer-1yamb2o > * { margin: 0px; margin-left: calc(31px / 2); margin-right: calc(31px / 2); } .framer-ztHmx .framer-1lp9lnr > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } }\",'.framer-ztHmx[data-border=\"true\"]::after, .framer-ztHmx [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: 810px) and (max-width: 1420px) { .framer-ztHmx.framer-1nq2i6t { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; width: 810px; } .framer-ztHmx .framer-1nvlsoi { left: unset; order: 0; position: relative; right: unset; top: unset; width: 1250px; } .framer-ztHmx .framer-12quxau { height: 56%; left: calc(50.00000000000002% - 238.39506172839506% / 2); top: -3px; width: 238%; } .framer-ztHmx .framer-1lg5peq { height: min-content; } .framer-ztHmx .framer-1i5bpq2 { gap: 41px; height: min-content; width: 810px; } .framer-ztHmx .framer-1o7q3df { height: 253px; order: 0; width: 810px; } .framer-ztHmx .framer-o7q7eh, .framer-ztHmx .framer-1md6nj6, .framer-ztHmx .framer-15d7gor, .framer-ztHmx .framer-1n7ym1z, .framer-ztHmx .framer-1wktdif, .framer-ztHmx .framer-1tomwtu { order: 0; } .framer-ztHmx .framer-18f77kc { order: 1; width: 618px; } .framer-ztHmx .framer-5sdoei, .framer-ztHmx .framer-lugxl0, .framer-ztHmx .framer-1nbtsm4, .framer-ztHmx .framer-1sxv3e3, .framer-ztHmx .framer-1lp9lnr, .framer-ztHmx .framer-16nsnh2 { order: 1; } .framer-ztHmx .framer-1hne923 { flex-direction: column; gap: 19px; height: 256px; order: 2; } .framer-ztHmx .framer-8638ow { height: 52px; width: 229px; } .framer-ztHmx .framer-htikuv { height: 34px; width: 230px; } .framer-ztHmx .framer-1g1n0jb, .framer-ztHmx .framer-81dzjc-container { order: 2; } .framer-ztHmx .framer-i3qo8b { bottom: unset; height: 475px; left: unset; order: 3; padding: 20px 0px 0px 0px; position: relative; } .framer-ztHmx .framer-1rm88s6-container { order: 0; width: 818px; } .framer-ztHmx .framer-mvdun6 { bottom: unset; flex-direction: column; gap: 29px; left: unset; order: 2; overflow: hidden; padding: 30px 0px 0px 0px; position: relative; transform: unset; width: 100%; } .framer-ztHmx .framer-1sdz3wt { align-content: center; align-items: center; gap: 30px; height: min-content; padding: 10px 0px 0px 0px; } .framer-ztHmx .framer-19b14nn { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; width: 810px; } .framer-ztHmx .framer-1fjoz35 { bottom: unset; height: 267px; left: unset; position: relative; top: unset; } .framer-ztHmx .framer-1xkads { left: unset; order: 1; position: relative; right: unset; top: unset; width: 1441px; } .framer-ztHmx .framer-mhr0wd { width: 809px; } .framer-ztHmx .framer-inf72r { width: 810px; } .framer-ztHmx .framer-pvy3c6 { width: 662px; } .framer-ztHmx .framer-fr9c24 { flex-direction: column; gap: 40px; height: min-content; } .framer-ztHmx .framer-59kly1, .framer-ztHmx .framer-xmtufb { height: 364px; top: calc(51.45888594164458% - 364px / 2); } .framer-ztHmx .framer-1hytzu9 { height: 375px; top: unset; } .framer-ztHmx .framer-151knne, .framer-ztHmx .framer-qx44mz { top: 10px; } .framer-ztHmx .framer-5ev3mu, .framer-ztHmx .framer-2gnrdz { gap: 40px; height: min-content; } .framer-ztHmx .framer-15tinck { flex-direction: column; } .framer-ztHmx .framer-t6408a { flex: none; flex-direction: column; order: 0; padding: 30px 0px 0px 0px; width: 100%; } .framer-ztHmx .framer-3z9n5z { flex: none; order: 0; width: 766px; } .framer-ztHmx .framer-1l5lhiu { flex-direction: column; order: 0; } .framer-ztHmx .framer-1h61dqa { align-content: center; align-items: center; flex: none; gap: 40px; order: 0; padding: 0px; width: 100%; } .framer-ztHmx .framer-1lbctzh { height: auto; order: 2; } .framer-ztHmx .framer-1gadznl-container { order: 3; } .framer-ztHmx .framer-ytajlt { order: 4; } .framer-ztHmx .framer-1hp7u2w { flex: none; flex-direction: row; order: 1; width: 100%; } .framer-ztHmx .framer-6ye8tf { flex: 1 0 0px; order: 0; width: 1px; } .framer-ztHmx .framer-tegsmd { flex: 1 0 0px; height: 410px; order: 1; width: 1px; } .framer-ztHmx .framer-1tkrcvu { height: 604px; width: 804px; } .framer-ztHmx .framer-lkw6mm { bottom: 376px; height: unset; left: -20px; right: 531px; top: 0px; width: unset; } .framer-ztHmx .framer-3qieuy-container { bottom: unset; height: 360px; left: calc(50.00000000000002% - 704px / 2); top: 166px; width: 704px; } .framer-ztHmx .framer-7r3ms6 { left: 50%; top: 39px; } .framer-ztHmx .framer-xurldp { height: 1263px; width: 810px; } .framer-ztHmx .framer-dix6x1 { height: 320px; left: 0px; top: 79px; width: 265px; } .framer-ztHmx .framer-1yebf9t { bottom: unset; height: 320px; top: 429px; width: 265px; } .framer-ztHmx .framer-1w7pf55 { left: 50%; top: 7px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-ztHmx.framer-1nq2i6t, .framer-ztHmx .framer-1i5bpq2, .framer-ztHmx .framer-1hne923, .framer-ztHmx .framer-mvdun6, .framer-ztHmx .framer-1sdz3wt, .framer-ztHmx .framer-19b14nn, .framer-ztHmx .framer-fr9c24, .framer-ztHmx .framer-5ev3mu, .framer-ztHmx .framer-2gnrdz, .framer-ztHmx .framer-15tinck, .framer-ztHmx .framer-t6408a, .framer-ztHmx .framer-1l5lhiu, .framer-ztHmx .framer-1h61dqa, .framer-ztHmx .framer-1hp7u2w { gap: 0px; } .framer-ztHmx.framer-1nq2i6t > *, .framer-ztHmx .framer-1l5lhiu > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-ztHmx.framer-1nq2i6t > :first-child, .framer-ztHmx .framer-1i5bpq2 > :first-child, .framer-ztHmx .framer-1hne923 > :first-child, .framer-ztHmx .framer-mvdun6 > :first-child, .framer-ztHmx .framer-1sdz3wt > :first-child, .framer-ztHmx .framer-fr9c24 > :first-child, .framer-ztHmx .framer-15tinck > :first-child, .framer-ztHmx .framer-t6408a > :first-child, .framer-ztHmx .framer-1l5lhiu > :first-child, .framer-ztHmx .framer-1h61dqa > :first-child { margin-top: 0px; } .framer-ztHmx.framer-1nq2i6t > :last-child, .framer-ztHmx .framer-1i5bpq2 > :last-child, .framer-ztHmx .framer-1hne923 > :last-child, .framer-ztHmx .framer-mvdun6 > :last-child, .framer-ztHmx .framer-1sdz3wt > :last-child, .framer-ztHmx .framer-fr9c24 > :last-child, .framer-ztHmx .framer-15tinck > :last-child, .framer-ztHmx .framer-t6408a > :last-child, .framer-ztHmx .framer-1l5lhiu > :last-child, .framer-ztHmx .framer-1h61dqa > :last-child { margin-bottom: 0px; } .framer-ztHmx .framer-1i5bpq2 > * { margin: 0px; margin-bottom: calc(41px / 2); margin-top: calc(41px / 2); } .framer-ztHmx .framer-1hne923 > * { margin: 0px; margin-bottom: calc(19px / 2); margin-top: calc(19px / 2); } .framer-ztHmx .framer-mvdun6 > * { margin: 0px; margin-bottom: calc(29px / 2); margin-top: calc(29px / 2); } .framer-ztHmx .framer-1sdz3wt > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-ztHmx .framer-19b14nn > *, .framer-ztHmx .framer-1hp7u2w > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-ztHmx .framer-19b14nn > :first-child, .framer-ztHmx .framer-5ev3mu > :first-child, .framer-ztHmx .framer-2gnrdz > :first-child, .framer-ztHmx .framer-1hp7u2w > :first-child { margin-left: 0px; } .framer-ztHmx .framer-19b14nn > :last-child, .framer-ztHmx .framer-5ev3mu > :last-child, .framer-ztHmx .framer-2gnrdz > :last-child, .framer-ztHmx .framer-1hp7u2w > :last-child { margin-right: 0px; } .framer-ztHmx .framer-fr9c24 > *, .framer-ztHmx .framer-1h61dqa > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-ztHmx .framer-5ev3mu > *, .framer-ztHmx .framer-2gnrdz > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-ztHmx .framer-15tinck > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-ztHmx .framer-t6408a > * { margin: 0px; margin-bottom: calc(23px / 2); margin-top: calc(23px / 2); } }}\",\"@media (min-width: 390px) and (max-width: 809px) { .framer-ztHmx.framer-1nq2i6t { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; width: 390px; } .framer-ztHmx .framer-1nvlsoi { flex-direction: column; left: unset; order: 0; position: relative; right: unset; top: unset; width: 1250px; } .framer-ztHmx .framer-82w51t { flex: none; height: 902px; width: 100%; } .framer-ztHmx .framer-1v97hsl-container { left: 0px; width: 102%; } .framer-ztHmx .framer-12quxau { height: 56%; left: calc(50.00000000000002% - 238.39506172839506% / 2); top: -3px; width: 238%; } .framer-ztHmx .framer-1lg5peq { height: min-content; } .framer-ztHmx .framer-1i5bpq2 { gap: 41px; height: min-content; width: 810px; } .framer-ztHmx .framer-1o7q3df { height: 318px; order: 0; width: 810px; } .framer-ztHmx .framer-o7q7eh { order: 0; width: 48%; } .framer-ztHmx .framer-18f77kc { order: 1; width: 344px; } .framer-ztHmx .framer-5sdoei { flex-direction: column; height: min-content; order: 1; } .framer-ztHmx .framer-1hne923 { flex-direction: column; gap: 20px; height: min-content; order: 2; } .framer-ztHmx .framer-8638ow { height: 52px; order: 0; width: 229px; } .framer-ztHmx .framer-1y4cxeg { gap: 38px; order: 1; width: 391px; } .framer-ztHmx .framer-12yjor5, .framer-ztHmx .framer-4hkm0t, .framer-ztHmx .framer-ao2w8k { width: 90px; } .framer-ztHmx .framer-htikuv { height: 34px; order: 2; width: 246px; } .framer-ztHmx .framer-1md6nj6, .framer-ztHmx .framer-15d7gor, .framer-ztHmx .framer-1n7ym1z, .framer-ztHmx .framer-lsbqc0-container { order: 0; } .framer-ztHmx .framer-1g1n0jb, .framer-ztHmx .framer-1nbtsm4, .framer-ztHmx .framer-1sxv3e3 { order: 1; } .framer-ztHmx .framer-lugxl0, .framer-ztHmx .framer-a6x2q9, .framer-ztHmx .framer-1422cdi { order: 2; } .framer-ztHmx .framer-i3qo8b { bottom: unset; left: unset; min-height: 453px; order: 3; padding: 20px 0px 0px 0px; position: relative; } .framer-ztHmx .framer-1rm88s6-container { bottom: 0px; left: -2px; position: absolute; right: -2px; width: unset; z-index: 1; } .framer-ztHmx .framer-mvdun6 { bottom: unset; flex-direction: column; gap: 29px; left: unset; order: 2; overflow: hidden; position: relative; transform: unset; width: 100%; } .framer-ztHmx .framer-1sdz3wt { align-content: center; align-items: center; height: min-content; padding: 30px 0px 0px 0px; width: 388px; } .framer-ztHmx .framer-81dzjc-container, .framer-ztHmx .framer-1gadznl-container { order: 3; } .framer-ztHmx .framer-60lxyi { bottom: unset; height: 100%; left: calc(49.918962722852534% - 64.0194489465154% / 2); right: unset; top: calc(49.76744186046514% - 100% / 2); width: 64%; } .framer-ztHmx .framer-1xkads { left: unset; order: 1; position: relative; right: unset; top: unset; width: 389px; } .framer-ztHmx .framer-mhr0wd { gap: 40px; padding: 0px 0px 40px 0px; width: 809px; } .framer-ztHmx .framer-gh800h { gap: 22px; order: 0; padding: 20px 0px 0px 0px; } .framer-ztHmx .framer-1lv6xwy { left: 262px; top: 68px; } .framer-ztHmx .framer-1uj7nu8 { left: 280px; top: 56px; } .framer-ztHmx .framer-tkf5zm { left: 262px; top: 55px; } .framer-ztHmx .framer-z0n1u6 { left: 270px; top: 55px; } .framer-ztHmx .framer-mzyrwv { height: 26px; left: 262px; top: calc(50.66666666666669% - 26px / 2); width: 108px; } .framer-ztHmx .framer-inf72r { order: 0; width: 810px; } .framer-ztHmx .framer-d9tbev { width: 48%; } .framer-ztHmx .framer-pvy3c6 { height: 144px; width: 352px; } .framer-ztHmx .framer-fr9c24 { flex-direction: column; gap: 40px; height: min-content; order: 1; overflow: visible; width: 640px; } .framer-ztHmx .framer-5ev3mu { flex-direction: column; gap: 86px; height: min-content; order: 2; overflow: visible; width: 640px; } .framer-ztHmx .framer-179wn38, .framer-ztHmx .framer-ze57cq, .framer-ztHmx .framer-1wytfny, .framer-ztHmx .framer-18z9ojf, .framer-ztHmx .framer-xdlxxm, .framer-ztHmx .framer-okfg5z { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; } .framer-ztHmx .framer-1pe36gz, .framer-ztHmx .framer-cv466k, .framer-ztHmx .framer-1wdik1g, .framer-ztHmx .framer-1mfv5pf, .framer-ztHmx .framer-14amhfb { height: 377px; left: unset; position: relative; top: unset; width: 100%; } .framer-ztHmx .framer-19kpg4r { bottom: unset; left: 50%; top: 331px; } .framer-ztHmx .framer-1ymh14h, .framer-ztHmx .framer-1upqnob { bottom: 21px; left: 50%; } .framer-ztHmx .framer-2gnrdz { flex-direction: column; gap: 40px; height: min-content; order: 4; overflow: visible; width: 640px; } .framer-ztHmx .framer-1miispt { bottom: 20px; left: 50%; } .framer-ztHmx .framer-1obombi { height: 377px; left: unset; order: 0; position: relative; top: unset; width: 100%; } .framer-ztHmx .framer-9ggt5p { left: calc(50.00000000000002% - 49px / 2); top: -26px; } .framer-ztHmx .framer-15tinck { flex-direction: column; width: 476px; } .framer-ztHmx .framer-t6408a { flex: none; flex-direction: column; order: 0; padding: 30px 0px 0px 0px; width: 391px; } .framer-ztHmx .framer-3z9n5z { flex: none; order: 0; width: 634px; } .framer-ztHmx .framer-1l5lhiu { flex-direction: column; order: 0; } .framer-ztHmx .framer-1h61dqa { align-content: center; align-items: center; flex: none; gap: 21px; padding: 0px; width: 100%; } .framer-ztHmx .framer-1lbctzh { height: auto; order: 2; width: 324px; } .framer-ztHmx .framer-ytajlt { order: 4; } .framer-ztHmx .framer-1hp7u2w { flex: none; width: 100%; } .framer-ztHmx .framer-1tkrcvu { height: 384px; width: 388px; } .framer-ztHmx .framer-3qieuy-container { bottom: unset; height: 179px; left: calc(50.00000000000002% - 350px / 2); top: 118px; width: 350px; } .framer-ztHmx .framer-7r3ms6 { left: 50%; top: 39px; } .framer-ztHmx .framer-xurldp { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 19px; height: min-content; justify-content: center; padding: 20px 0px 40px 0px; width: 810px; } .framer-ztHmx .framer-a7tmpb { left: unset; order: 4; position: relative; top: unset; transform: unset; } .framer-ztHmx .framer-yd1h12 { padding: 0px 40px 0px 40px; } .framer-ztHmx .framer-128mt95 { gap: 14px; height: min-content; padding: 0px 0px 20px 0px; width: 100%; } .framer-ztHmx .framer-1xu68ez { flex-direction: column; gap: 49px; order: 1; padding: 10px 0px 0px 0px; width: 813px; } .framer-ztHmx .framer-iugfrw { gap: 30px; order: 0; padding: 20px 0px 0px 0px; width: 395px; } .framer-ztHmx .framer-1xdaxpm { width: 382px; } .framer-ztHmx .framer-y2bafd { left: 18px; top: 20px; } .framer-ztHmx .framer-k5jvj8 { order: 1; width: 379px; } .framer-ztHmx .framer-yuzlnc-container { height: auto; width: 100%; } .framer-ztHmx .framer-r4a3ub { width: 380px; } .framer-ztHmx .framer-ion21d { left: 19px; top: 27px; } .framer-ztHmx .framer-vu7w1j { bottom: 4px; left: calc(50.00000000000002% - 341px / 2); } .framer-ztHmx .framer-1w7pf55 { left: unset; order: 3; position: relative; top: unset; transform: unset; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-ztHmx.framer-1nq2i6t, .framer-ztHmx .framer-1nvlsoi, .framer-ztHmx .framer-1i5bpq2, .framer-ztHmx .framer-5sdoei, .framer-ztHmx .framer-1hne923, .framer-ztHmx .framer-1y4cxeg, .framer-ztHmx .framer-mvdun6, .framer-ztHmx .framer-mhr0wd, .framer-ztHmx .framer-gh800h, .framer-ztHmx .framer-fr9c24, .framer-ztHmx .framer-5ev3mu, .framer-ztHmx .framer-179wn38, .framer-ztHmx .framer-ze57cq, .framer-ztHmx .framer-1wytfny, .framer-ztHmx .framer-2gnrdz, .framer-ztHmx .framer-18z9ojf, .framer-ztHmx .framer-xdlxxm, .framer-ztHmx .framer-okfg5z, .framer-ztHmx .framer-15tinck, .framer-ztHmx .framer-t6408a, .framer-ztHmx .framer-1l5lhiu, .framer-ztHmx .framer-1h61dqa, .framer-ztHmx .framer-xurldp, .framer-ztHmx .framer-128mt95, .framer-ztHmx .framer-1xu68ez, .framer-ztHmx .framer-iugfrw { gap: 0px; } .framer-ztHmx.framer-1nq2i6t > *, .framer-ztHmx .framer-1nvlsoi > *, .framer-ztHmx .framer-179wn38 > *, .framer-ztHmx .framer-ze57cq > *, .framer-ztHmx .framer-1wytfny > *, .framer-ztHmx .framer-18z9ojf > *, .framer-ztHmx .framer-xdlxxm > *, .framer-ztHmx .framer-okfg5z > *, .framer-ztHmx .framer-1l5lhiu > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-ztHmx.framer-1nq2i6t > :first-child, .framer-ztHmx .framer-1nvlsoi > :first-child, .framer-ztHmx .framer-1i5bpq2 > :first-child, .framer-ztHmx .framer-5sdoei > :first-child, .framer-ztHmx .framer-1hne923 > :first-child, .framer-ztHmx .framer-mvdun6 > :first-child, .framer-ztHmx .framer-mhr0wd > :first-child, .framer-ztHmx .framer-gh800h > :first-child, .framer-ztHmx .framer-fr9c24 > :first-child, .framer-ztHmx .framer-5ev3mu > :first-child, .framer-ztHmx .framer-179wn38 > :first-child, .framer-ztHmx .framer-ze57cq > :first-child, .framer-ztHmx .framer-1wytfny > :first-child, .framer-ztHmx .framer-2gnrdz > :first-child, .framer-ztHmx .framer-18z9ojf > :first-child, .framer-ztHmx .framer-xdlxxm > :first-child, .framer-ztHmx .framer-okfg5z > :first-child, .framer-ztHmx .framer-15tinck > :first-child, .framer-ztHmx .framer-t6408a > :first-child, .framer-ztHmx .framer-1l5lhiu > :first-child, .framer-ztHmx .framer-1h61dqa > :first-child, .framer-ztHmx .framer-xurldp > :first-child, .framer-ztHmx .framer-128mt95 > :first-child, .framer-ztHmx .framer-1xu68ez > :first-child, .framer-ztHmx .framer-iugfrw > :first-child { margin-top: 0px; } .framer-ztHmx.framer-1nq2i6t > :last-child, .framer-ztHmx .framer-1nvlsoi > :last-child, .framer-ztHmx .framer-1i5bpq2 > :last-child, .framer-ztHmx .framer-5sdoei > :last-child, .framer-ztHmx .framer-1hne923 > :last-child, .framer-ztHmx .framer-mvdun6 > :last-child, .framer-ztHmx .framer-mhr0wd > :last-child, .framer-ztHmx .framer-gh800h > :last-child, .framer-ztHmx .framer-fr9c24 > :last-child, .framer-ztHmx .framer-5ev3mu > :last-child, .framer-ztHmx .framer-179wn38 > :last-child, .framer-ztHmx .framer-ze57cq > :last-child, .framer-ztHmx .framer-1wytfny > :last-child, .framer-ztHmx .framer-2gnrdz > :last-child, .framer-ztHmx .framer-18z9ojf > :last-child, .framer-ztHmx .framer-xdlxxm > :last-child, .framer-ztHmx .framer-okfg5z > :last-child, .framer-ztHmx .framer-15tinck > :last-child, .framer-ztHmx .framer-t6408a > :last-child, .framer-ztHmx .framer-1l5lhiu > :last-child, .framer-ztHmx .framer-1h61dqa > :last-child, .framer-ztHmx .framer-xurldp > :last-child, .framer-ztHmx .framer-128mt95 > :last-child, .framer-ztHmx .framer-1xu68ez > :last-child, .framer-ztHmx .framer-iugfrw > :last-child { margin-bottom: 0px; } .framer-ztHmx .framer-1i5bpq2 > * { margin: 0px; margin-bottom: calc(41px / 2); margin-top: calc(41px / 2); } .framer-ztHmx .framer-5sdoei > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-ztHmx .framer-1hne923 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-ztHmx .framer-1y4cxeg > * { margin: 0px; margin-left: calc(38px / 2); margin-right: calc(38px / 2); } .framer-ztHmx .framer-1y4cxeg > :first-child { margin-left: 0px; } .framer-ztHmx .framer-1y4cxeg > :last-child { margin-right: 0px; } .framer-ztHmx .framer-mvdun6 > * { margin: 0px; margin-bottom: calc(29px / 2); margin-top: calc(29px / 2); } .framer-ztHmx .framer-mhr0wd > *, .framer-ztHmx .framer-fr9c24 > *, .framer-ztHmx .framer-2gnrdz > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-ztHmx .framer-gh800h > * { margin: 0px; margin-bottom: calc(22px / 2); margin-top: calc(22px / 2); } .framer-ztHmx .framer-5ev3mu > * { margin: 0px; margin-bottom: calc(86px / 2); margin-top: calc(86px / 2); } .framer-ztHmx .framer-15tinck > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-ztHmx .framer-t6408a > * { margin: 0px; margin-bottom: calc(23px / 2); margin-top: calc(23px / 2); } .framer-ztHmx .framer-1h61dqa > * { margin: 0px; margin-bottom: calc(21px / 2); margin-top: calc(21px / 2); } .framer-ztHmx .framer-xurldp > * { margin: 0px; margin-bottom: calc(19px / 2); margin-top: calc(19px / 2); } .framer-ztHmx .framer-128mt95 > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-ztHmx .framer-1xu68ez > * { margin: 0px; margin-bottom: calc(49px / 2); margin-top: calc(49px / 2); } .framer-ztHmx .framer-iugfrw > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }}\",\"@media (max-width: 389px) { .framer-ztHmx.framer-1nq2i6t { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; width: 390px; } .framer-ztHmx .framer-1nvlsoi { flex-direction: column; left: unset; order: 0; position: relative; right: unset; top: unset; width: 100%; } .framer-ztHmx .framer-82w51t { aspect-ratio: 0.38802660753880264 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 1005px); width: 100%; } .framer-ztHmx .framer-1v97hsl-container { left: 0px; width: 101%; } .framer-ztHmx .framer-12quxau { height: 56%; left: calc(50.00000000000002% - 238.39506172839506% / 2); top: -3px; width: 238%; } .framer-ztHmx .framer-1lg5peq { height: min-content; right: unset; width: 100%; } .framer-ztHmx .framer-1i5bpq2 { gap: 41px; height: min-content; } .framer-ztHmx .framer-1o7q3df { height: 318px; order: 0; width: 100%; } .framer-ztHmx .framer-o7q7eh, .framer-ztHmx .framer-1md6nj6, .framer-ztHmx .framer-15d7gor, .framer-ztHmx .framer-1n7ym1z, .framer-ztHmx .framer-lsbqc0-container { order: 0; } .framer-ztHmx .framer-18f77kc { order: 1; width: 344px; } .framer-ztHmx .framer-5sdoei { flex-direction: column; height: min-content; order: 1; } .framer-ztHmx .framer-1hne923 { flex-direction: column; gap: 20px; height: min-content; order: 2; } .framer-ztHmx .framer-8638ow { height: 52px; order: 0; width: 229px; } .framer-ztHmx .framer-1y4cxeg { gap: 38px; order: 1; width: 391px; } .framer-ztHmx .framer-12yjor5, .framer-ztHmx .framer-4hkm0t, .framer-ztHmx .framer-ao2w8k { width: 90px; } .framer-ztHmx .framer-htikuv { height: 34px; order: 2; width: 250px; } .framer-ztHmx .framer-1g1n0jb, .framer-ztHmx .framer-1nbtsm4, .framer-ztHmx .framer-1sxv3e3 { order: 1; } .framer-ztHmx .framer-lugxl0, .framer-ztHmx .framer-1422cdi { order: 2; } .framer-ztHmx .framer-i3qo8b { bottom: unset; left: unset; order: 3; padding: 33px 0px 0px 0px; position: relative; } .framer-ztHmx .framer-1rm88s6-container { z-index: 1; } .framer-ztHmx .framer-mvdun6 { bottom: unset; flex-direction: column; gap: 29px; left: unset; order: 2; overflow: hidden; position: relative; transform: unset; width: 100%; } .framer-ztHmx .framer-1sdz3wt { align-content: center; align-items: center; height: min-content; padding: 30px 0px 0px 0px; width: 99%; } .framer-ztHmx .framer-81dzjc-container, .framer-ztHmx .framer-1gadznl-container { order: 3; } .framer-ztHmx .framer-60lxyi { bottom: unset; height: 100%; left: calc(49.918962722852534% - 64.0194489465154% / 2); right: unset; top: calc(49.76744186046514% - 100% / 2); width: 64%; } .framer-ztHmx .framer-1xkads { left: unset; order: 1; position: relative; right: unset; top: unset; width: 100%; } .framer-ztHmx .framer-mhr0wd { gap: 40px; order: 0; padding: 0px 0px 40px 0px; width: 100%; } .framer-ztHmx .framer-gh800h { gap: 22px; order: 0; padding: 20px 0px 0px 0px; width: 100%; } .framer-ztHmx .framer-a6x2q9 { order: 2; width: 100%; } .framer-ztHmx .framer-6dlkiz { height: 191px; left: calc(50.75757575757578% - 344px / 2); top: 6px; width: 344px; } .framer-ztHmx .framer-14k4h73 { bottom: 73px; left: 4px; top: unset; } .framer-ztHmx .framer-8kwt8e { bottom: 53px; left: 57px; top: unset; } .framer-ztHmx .framer-1lv6xwy { left: 256px; top: 79px; } .framer-ztHmx .framer-1uj7nu8 { left: 274px; top: 68px; } .framer-ztHmx .framer-lruh71 { left: 38px; top: 6px; } .framer-ztHmx .framer-tkf5zm { left: 256px; top: 67px; } .framer-ztHmx .framer-z0n1u6 { left: 264px; top: 67px; } .framer-ztHmx .framer-mzyrwv { bottom: 87px; height: 26px; left: 256px; top: unset; width: 107px; } .framer-ztHmx .framer-inf72r { gap: 19px; order: 0; } .framer-ztHmx .framer-d9tbev { order: 0; width: 83%; } .framer-ztHmx .framer-pvy3c6 { height: 144px; order: 1; width: 324px; } .framer-ztHmx .framer-107l0m9 { order: 5; } .framer-ztHmx .framer-psntqo { order: 6; } .framer-ztHmx .framer-18wy0kg { order: 7; } .framer-ztHmx .framer-15tinck { flex-direction: column; order: 1; width: 476px; } .framer-ztHmx .framer-t6408a { flex: none; flex-direction: column; order: 0; padding: 30px 0px 0px 0px; width: 390px; } .framer-ztHmx .framer-3z9n5z { flex: none; order: 0; width: 634px; } .framer-ztHmx .framer-1l5lhiu { flex-direction: column; order: 0; } .framer-ztHmx .framer-1h61dqa { align-content: center; align-items: center; flex: none; gap: 21px; padding: 0px; width: 100%; } .framer-ztHmx .framer-1lbctzh { height: auto; order: 2; width: 324px; } .framer-ztHmx .framer-ytajlt { order: 4; } .framer-ztHmx .framer-1hp7u2w { flex: none; width: 100%; } .framer-ztHmx .framer-1tkrcvu { height: 392px; order: 2; width: 354px; } .framer-ztHmx .framer-3qieuy-container { bottom: unset; height: 166px; left: calc(50.00000000000002% - 324px / 2); top: 137px; width: 324px; } .framer-ztHmx .framer-7r3ms6 { left: 50%; top: 51px; } .framer-ztHmx .framer-xurldp { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 19px; height: min-content; justify-content: center; order: 3; padding: 20px 0px 40px 0px; width: 810px; } .framer-ztHmx .framer-a7tmpb { left: unset; order: 4; position: relative; top: unset; transform: unset; } .framer-ztHmx .framer-yd1h12 { padding: 0px 40px 0px 40px; } .framer-ztHmx .framer-128mt95 { gap: 14px; height: min-content; padding: 0px 0px 20px 0px; width: 100%; } .framer-ztHmx .framer-1xu68ez { flex-direction: column; gap: 49px; order: 1; padding: 10px 0px 0px 0px; width: 813px; } .framer-ztHmx .framer-iugfrw { gap: 30px; order: 0; padding: 20px 0px 0px 0px; width: 395px; } .framer-ztHmx .framer-1xdaxpm { width: 382px; } .framer-ztHmx .framer-y2bafd { left: 18px; top: 20px; } .framer-ztHmx .framer-k5jvj8 { order: 1; width: 379px; } .framer-ztHmx .framer-yuzlnc-container { height: auto; width: 100%; } .framer-ztHmx .framer-r4a3ub { width: 380px; } .framer-ztHmx .framer-ion21d { left: 19px; top: 27px; } .framer-ztHmx .framer-vu7w1j { bottom: 4px; left: calc(50.00000000000002% - 341px / 2); } .framer-ztHmx .framer-1w7pf55 { left: unset; order: 3; position: relative; top: unset; transform: unset; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-ztHmx.framer-1nq2i6t, .framer-ztHmx .framer-1nvlsoi, .framer-ztHmx .framer-1i5bpq2, .framer-ztHmx .framer-5sdoei, .framer-ztHmx .framer-1hne923, .framer-ztHmx .framer-1y4cxeg, .framer-ztHmx .framer-mvdun6, .framer-ztHmx .framer-mhr0wd, .framer-ztHmx .framer-gh800h, .framer-ztHmx .framer-inf72r, .framer-ztHmx .framer-15tinck, .framer-ztHmx .framer-t6408a, .framer-ztHmx .framer-1l5lhiu, .framer-ztHmx .framer-1h61dqa, .framer-ztHmx .framer-xurldp, .framer-ztHmx .framer-128mt95, .framer-ztHmx .framer-1xu68ez, .framer-ztHmx .framer-iugfrw { gap: 0px; } .framer-ztHmx.framer-1nq2i6t > *, .framer-ztHmx .framer-1nvlsoi > *, .framer-ztHmx .framer-1l5lhiu > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-ztHmx.framer-1nq2i6t > :first-child, .framer-ztHmx .framer-1nvlsoi > :first-child, .framer-ztHmx .framer-1i5bpq2 > :first-child, .framer-ztHmx .framer-5sdoei > :first-child, .framer-ztHmx .framer-1hne923 > :first-child, .framer-ztHmx .framer-mvdun6 > :first-child, .framer-ztHmx .framer-mhr0wd > :first-child, .framer-ztHmx .framer-gh800h > :first-child, .framer-ztHmx .framer-inf72r > :first-child, .framer-ztHmx .framer-15tinck > :first-child, .framer-ztHmx .framer-t6408a > :first-child, .framer-ztHmx .framer-1l5lhiu > :first-child, .framer-ztHmx .framer-1h61dqa > :first-child, .framer-ztHmx .framer-xurldp > :first-child, .framer-ztHmx .framer-128mt95 > :first-child, .framer-ztHmx .framer-1xu68ez > :first-child, .framer-ztHmx .framer-iugfrw > :first-child { margin-top: 0px; } .framer-ztHmx.framer-1nq2i6t > :last-child, .framer-ztHmx .framer-1nvlsoi > :last-child, .framer-ztHmx .framer-1i5bpq2 > :last-child, .framer-ztHmx .framer-5sdoei > :last-child, .framer-ztHmx .framer-1hne923 > :last-child, .framer-ztHmx .framer-mvdun6 > :last-child, .framer-ztHmx .framer-mhr0wd > :last-child, .framer-ztHmx .framer-gh800h > :last-child, .framer-ztHmx .framer-inf72r > :last-child, .framer-ztHmx .framer-15tinck > :last-child, .framer-ztHmx .framer-t6408a > :last-child, .framer-ztHmx .framer-1l5lhiu > :last-child, .framer-ztHmx .framer-1h61dqa > :last-child, .framer-ztHmx .framer-xurldp > :last-child, .framer-ztHmx .framer-128mt95 > :last-child, .framer-ztHmx .framer-1xu68ez > :last-child, .framer-ztHmx .framer-iugfrw > :last-child { margin-bottom: 0px; } .framer-ztHmx .framer-1i5bpq2 > * { margin: 0px; margin-bottom: calc(41px / 2); margin-top: calc(41px / 2); } .framer-ztHmx .framer-5sdoei > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-ztHmx .framer-1hne923 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-ztHmx .framer-1y4cxeg > * { margin: 0px; margin-left: calc(38px / 2); margin-right: calc(38px / 2); } .framer-ztHmx .framer-1y4cxeg > :first-child { margin-left: 0px; } .framer-ztHmx .framer-1y4cxeg > :last-child { margin-right: 0px; } .framer-ztHmx .framer-mvdun6 > * { margin: 0px; margin-bottom: calc(29px / 2); margin-top: calc(29px / 2); } .framer-ztHmx .framer-mhr0wd > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-ztHmx .framer-gh800h > * { margin: 0px; margin-bottom: calc(22px / 2); margin-top: calc(22px / 2); } .framer-ztHmx .framer-inf72r > *, .framer-ztHmx .framer-xurldp > * { margin: 0px; margin-bottom: calc(19px / 2); margin-top: calc(19px / 2); } .framer-ztHmx .framer-15tinck > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-ztHmx .framer-t6408a > * { margin: 0px; margin-bottom: calc(23px / 2); margin-top: calc(23px / 2); } .framer-ztHmx .framer-1h61dqa > * { margin: 0px; margin-bottom: calc(21px / 2); margin-top: calc(21px / 2); } .framer-ztHmx .framer-128mt95 > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-ztHmx .framer-1xu68ez > * { margin: 0px; margin-bottom: calc(49px / 2); margin-top: calc(49px / 2); } .framer-ztHmx .framer-iugfrw > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6247\n * @framerIntrinsicWidth 1421\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"I0ELSQpF1\":{\"layout\":[\"fixed\",\"auto\"]},\"HaI5fMROZ\":{\"layout\":[\"fixed\",\"auto\"]},\"r2222MykL\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate false\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerM57bMdovT=withCSS(Component,css,\"framer-ztHmx\");export default FramerM57bMdovT;FramerM57bMdovT.displayName=\"Home\";FramerM57bMdovT.defaultProps={height:6247,width:1421};addFonts(FramerM57bMdovT,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TTX2Z3BF3P6Y5BQT3IV2VNOK6FL22KUT/7QYRJOI3JIMYHGY6CH7SOIFRQLZOLNJ6/KFIAZD4RUMEZIYV6FQ3T3GP5PDBDB6JY.woff2\",weight:\"400\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"General Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/K46YRH762FH3QJ25IQM3VAXAKCHEXXW4/ISLWQPUZHZF33LRIOTBMFOJL57GBGQ4B/3ZLMEXZEQPLTEPMHTQDAUXP5ZZXCZAEN.woff2\",weight:\"600\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"}]},...VideoFonts,...NavigationFonts,...CallNowFonts,...WhatsappFonts,...FooterFonts,...ClaimKnowFonts,...KnowMoreFonts,...YouTubeFonts,...CarouselFonts,...Rectangle12Fonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerM57bMdovT\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerAcceptsLayoutTemplate\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1421\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"6247\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"I0ELSQpF1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"HaI5fMROZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"r2222MykL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerScrollSections\":\"* @framerResponsiveScreen\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "X", "srcType", "srcUrl", "srcFile", "posterEnabled", "playing", "restartOnEnter", "objectFit", "backgroundColor", "radius", "volume", "startTimeProp", "poster", "progress", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "ue", "isMountedAndReadyForProgressChanges", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "PlayOptions", "ThumbnailOptions", "ThumbnailFormat", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "title", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "searchParams", "iframeProps", "u", "wrapperStyle", "videoStyle", "getThumbnailURL", "getWebPSupported", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "res", "format", "useWebP", "pre", "ext", "_getWebPSupported", "window", "element", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "VideoFonts", "getFonts", "Video", "NavigationFonts", "lHb6UBldq_default", "CallNowFonts", "exNX7M2mW_default", "WhatsappFonts", "sMPqmONgl_default", "FooterFonts", "WTIktP7b1_default", "ClaimKnowFonts", "JcluE7mL0_default", "MotionDivWithFX", "withFX", "motion", "KnowMoreFonts", "CQ87wz4T2_default", "YouTubeFonts", "Youtube", "CarouselFonts", "Carousel", "Rectangle12Fonts", "JvdEEP2la_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "transition2", "animation1", "transformTemplate1", "_", "t", "animation2", "animation3", "animation4", "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", "router", "useRouter", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "Container", "ResolveLinks", "resolvedLinks", "PropertyOverrides2", "x", "RichText2", "Link", "SVG", "getLoadingLazyAtYPosition", "Image2", "css", "FramerM57bMdovT", "withCSS", "M57bMdovT_default", "addFonts", "__FramerMetadata__"]
}
