{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/Z4QJ2YpzpVnWRfR6Ccgg/Video.js", "ssg:https://framerusercontent.com/modules/1CQvkZ1Uk4lEVm6c9r38/yRuQab2C9fSn4R03SIuh/K7jytyP3Z.js", "ssg:https://framerusercontent.com/modules/ypBrU05K77MjxFsIlVvg/JMOv0fnihed1sJy8IHqc/JmzrNNhAD.js", "ssg:https://framerusercontent.com/modules/eWV4U0JuYhJYPccIMaaC/xoY4L8doh4mxl6c6YXlG/oY3EVjLdH.js", "ssg:https://framerusercontent.com/modules/iukP7zCVjtlqQX9ynlDu/Ar6LjE0S2jTiiAC3EKKb/oGKQG898N.js", "ssg:https://framerusercontent.com/modules/7yRbG5SiUa888ONe137s/jgvcvd86GzzKzpMB9kvV/pKb3voA4D.js", "ssg:https://framerusercontent.com/modules/3F4IozakcXbcZq9po43s/smzIQAmGdLbXAdjzUd24/augiA20Il.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://framer.com/m/framer/default-utils.js@^0.45.0\";import{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const isPlaying=videoRef.current.currentTime>0&&videoRef.current.onplaying&&!videoRef.current.paused&&!videoRef.current.ended&&videoRef.current.readyState>videoRef.current.HAVE_CURRENT_DATA;if(!isPlaying&&videoRef.current&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;videoRef.current.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();},[]);return{play,pause,setProgress};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}/**\n * The Video component has some effects that sync the video element with props\n * like `startTime`, `progress`, etc. React calls these effects whenever these\n * props change. However, it also calls them on the first mount, and this is\n * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n * the video was hydrated, the initial `useEffect` call will reset the video\n * state. To avoid this, we use this flag.\n */let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing:playingProp,muted,playsinline,controls,progress,objectFit,backgroundColor,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,posterEnabled,startTime:startTimeProp,volume,loop}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges){isMountedAndReadyForProgressChanges=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{if(!videoRef.current)return;if(videoRef.current.currentTime<.3)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:autoplayBehavior===\"on-mount\",preload:autoplayBehavior!==\"on-mount\"&&posterEnabled?\"metadata\":\"auto\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";Video.defaultProps={srcType:\"URL\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",srcFile:\"\",posterEnabled:false,controls:false,playing:true,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:\"cover\",backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime:0};const groupsRegex=/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu;function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(groupsRegex)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",placeholder:\"../example.mp4\",hidden(props){return props.srcType===\"Upload\";},description:\"Hosted video file URL. For YouTube, use the YouTube component.\"},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"112\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"200\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (575e68f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/vcvUCyWxNr7tV4fWKlou/zpBITUOvpV9eDqVy4b9j/W0e2jBv2v.js\";const FeatherFonts=getFonts(Feather);const enabledGestures={tMe_ThRft:{hover:true}};const cycleOrder=[\"tMe_ThRft\",\"GOYrGiqq2\"];const serializationHash=\"framer-hJKrG\";const variantClassNames={GOYrGiqq2:\"framer-v-1doc509\",tMe_ThRft:\"framer-v-1gqy1pa\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Default - Open\":\"GOYrGiqq2\",Default:\"tMe_ThRft\"};const getProps=({gap,height,id,padding,tap,text,title,width,...props})=>{var _ref,_ref1,_ref2,_humanReadableVariantMap_props_variant,_ref3,_ref4;return{...props,AS1lam7oT:tap!==null&&tap!==void 0?tap:props.AS1lam7oT,KZ6LxaPP3:(_ref=gap!==null&&gap!==void 0?gap:props.KZ6LxaPP3)!==null&&_ref!==void 0?_ref:40,L38gO08gp:(_ref1=title!==null&&title!==void 0?title:props.L38gO08gp)!==null&&_ref1!==void 0?_ref1:\"GOLF COURSE\",sE9ZVMvNx:(_ref2=text!==null&&text!==void 0?text:props.sE9ZVMvNx)!==null&&_ref2!==void 0?_ref2:\"You'll find everything you need to elevate your game and unwind in style. Sharpen your skills on our championship-caliber practice range, complete with covered hitting bays, putting greens, and chipping areas.\",variant:(_ref3=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref3!==void 0?_ref3:\"tMe_ThRft\",z0XDLOYb7:(_ref4=padding!==null&&padding!==void 0?padding:props.z0XDLOYb7)!==null&&_ref4!==void 0?_ref4:48};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,L38gO08gp,sE9ZVMvNx,z0XDLOYb7,KZ6LxaPP3,AS1lam7oT,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"tMe_ThRft\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1gufi3z=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(AS1lam7oT){const res=await AS1lam7oT(...args);if(res===false)return false;}setVariant(\"GOYrGiqq2\");});const onTapykhxhw=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(AS1lam7oT){const res=await AS1lam7oT(...args);if(res===false)return false;}setVariant(\"tMe_ThRft\");});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1gqy1pa\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"tMe_ThRft\",onTap:onTap1gufi3z,ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--1fy0kvq\":numberToPixelString(z0XDLOYb7),\"--1ik816f\":KZ6LxaPP3,\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(60, 60, 60)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",...style},...addPropertyOverrides({\"tMe_ThRft-hover\":{\"data-framer-name\":undefined},GOYrGiqq2:{\"data-framer-name\":\"Default - Open\",onTap:onTapykhxhw}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wicjo\",layoutDependency:layoutDependency,layoutId:\"j_MUqgJpL\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-1gvnjue\",\"data-styles-preset\":\"W0e2jBv2v\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-a2653a0e-8705-40f0-bf3a-6049cdf62544, rgb(207, 215, 218)))\"},children:\"GOLF COURSE\"})}),className:\"framer-dfymmr\",\"data-framer-name\":\"GOLF COURSE\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"n0wb6uEyT\",style:{\"--extracted-1eung3n\":\"var(--token-a2653a0e-8705-40f0-bf3a-6049cdf62544, rgb(207, 215, 218))\",\"--framer-paragraph-spacing\":\"0px\"},text:L38gO08gp,variants:{\"tMe_ThRft-hover\":{\"--extracted-1eung3n\":\"var(--token-71f0d7b2-951d-4bd6-bbb3-dcaf6f23b904, rgb(207, 253, 90))\"},GOYrGiqq2:{\"--extracted-1eung3n\":\"var(--token-71f0d7b2-951d-4bd6-bbb3-dcaf6f23b904, rgb(207, 253, 90))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"tMe_ThRft-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-1gvnjue\",\"data-styles-preset\":\"W0e2jBv2v\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-71f0d7b2-951d-4bd6-bbb3-dcaf6f23b904, rgb(207, 253, 90)))\"},children:\"GOLF COURSE\"})})},GOYrGiqq2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-1gvnjue\",\"data-styles-preset\":\"W0e2jBv2v\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-71f0d7b2-951d-4bd6-bbb3-dcaf6f23b904, rgb(207, 253, 90)))\"},children:\"GOLF COURSE\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nu8fxh\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"WRtxJlNBZ\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-d9e091db-bcf6-4f2c-aa3d-f8fa5507152e, rgb(96, 97, 98))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(207, 253, 90, 0)\",borderBottomLeftRadius:42,borderBottomRightRadius:42,borderTopLeftRadius:42,borderTopRightRadius:42},variants:{\"tMe_ThRft-hover\":{\"--border-color\":\"var(--token-71f0d7b2-951d-4bd6-bbb3-dcaf6f23b904, rgb(207, 253, 90))\",backgroundColor:\"rgb(207, 253, 90)\"},GOYrGiqq2:{\"--border-color\":\"var(--token-71f0d7b2-951d-4bd6-bbb3-dcaf6f23b904, rgb(207, 253, 90))\",backgroundColor:\"rgb(207, 253, 90)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gjoo8q-container\",layoutDependency:layoutDependency,layoutId:\"wzVSkaG4c-container\",style:{rotate:0},variants:{GOYrGiqq2:{rotate:90}},children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-8451a6ec-4301-4963-83df-6ed3316ac17e, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"arrow-right\",id:\"wzVSkaG4c\",layoutId:\"wzVSkaG4c\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({\"tMe_ThRft-hover\":{color:\"var(--token-ee109c36-c747-46df-abd6-1a0d3774a808, rgb(10, 17, 34))\"},GOYrGiqq2:{color:\"var(--token-067c0918-2ad9-4059-865a-f4376c24c4c9, rgb(20, 21, 17))\"}},baseVariant,gestureVariant)})})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-hll4j9\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"cNY9lp5Os\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S2FuaXQtMzAw\",\"--framer-font-family\":'\"Kanit\", \"Kanit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"180%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(207, 215, 218))\"},children:\"You'll find everything you need to elevate your game and unwind in style. Sharpen your skills on our championship-caliber practice range, complete with covered hitting bays, putting greens, and chipping areas.\"})}),className:\"framer-978t2x\",\"data-framer-name\":\"You'll find everything you need to elevate your game and unwind in style. Sharpen your skills on our championship-caliber practice range, complete with covered hitting bays, putting greens, and chipping areas.\",fonts:[\"GF;Kanit-300\"],layoutDependency:layoutDependency,layoutId:\"xkKpCOU5Q\",style:{\"--extracted-r6o4lv\":\"rgb(207, 215, 218)\",\"--framer-paragraph-spacing\":\"0px\"},text:sE9ZVMvNx,verticalAlignment:\"top\",withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-hJKrG.framer-1k7bpb9, .framer-hJKrG .framer-1k7bpb9 { display: block; }\",\".framer-hJKrG.framer-1gqy1pa { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: var(--1fy0kvq); position: relative; width: 620px; }\",\".framer-hJKrG .framer-1wicjo { 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: 100%; }\",\".framer-hJKrG .framer-dfymmr { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-hJKrG .framer-1nu8fxh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 48px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 48px; }\",\".framer-hJKrG .framer-1gjoo8q-container { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-hJKrG .framer-hll4j9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: 0px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-hJKrG .framer-978t2x { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hJKrG.framer-1gqy1pa, .framer-hJKrG .framer-1wicjo, .framer-hJKrG .framer-1nu8fxh, .framer-hJKrG .framer-hll4j9 { gap: 0px; } .framer-hJKrG.framer-1gqy1pa > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-hJKrG.framer-1gqy1pa > :first-child, .framer-hJKrG .framer-hll4j9 > :first-child { margin-top: 0px; } .framer-hJKrG.framer-1gqy1pa > :last-child, .framer-hJKrG .framer-hll4j9 > :last-child { margin-bottom: 0px; } .framer-hJKrG .framer-1wicjo > *, .framer-hJKrG .framer-1nu8fxh > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-hJKrG .framer-1wicjo > :first-child, .framer-hJKrG .framer-1nu8fxh > :first-child { margin-left: 0px; } .framer-hJKrG .framer-1wicjo > :last-child, .framer-hJKrG .framer-1nu8fxh > :last-child { margin-right: 0px; } .framer-hJKrG .framer-hll4j9 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } }\",\".framer-hJKrG.framer-v-1doc509.framer-1gqy1pa { gap: calc(max(0, var(--1ik816f)) * 1px); }\",\".framer-hJKrG.framer-v-1doc509 .framer-hll4j9 { height: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hJKrG.framer-v-1doc509.framer-1gqy1pa { gap: 0px; } .framer-hJKrG.framer-v-1doc509.framer-1gqy1pa > * { margin: 0px; margin-bottom: calc(calc(max(0, var(--1ik816f)) * 1px) / 2); margin-top: calc(calc(max(0, var(--1ik816f)) * 1px) / 2); } .framer-hJKrG.framer-v-1doc509.framer-1gqy1pa > :first-child { margin-top: 0px; } .framer-hJKrG.framer-v-1doc509.framer-1gqy1pa > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,'.framer-hJKrG[data-border=\"true\"]::after, .framer-hJKrG [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 144\n * @framerIntrinsicWidth 620\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"GOYrGiqq2\":{\"layout\":[\"fixed\",\"auto\"]},\"iTc8N10d0\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"L38gO08gp\":\"title\",\"sE9ZVMvNx\":\"text\",\"z0XDLOYb7\":\"padding\",\"KZ6LxaPP3\":\"gap\",\"AS1lam7oT\":\"tap\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerK7jytyP3Z=withCSS(Component,css,\"framer-hJKrG\");export default FramerK7jytyP3Z;FramerK7jytyP3Z.displayName=\"Accordion / Button\";FramerK7jytyP3Z.defaultProps={height:144,width:620};addPropertyControls(FramerK7jytyP3Z,{variant:{options:[\"tMe_ThRft\",\"GOYrGiqq2\"],optionTitles:[\"Default\",\"Default - Open\"],title:\"Variant\",type:ControlType.Enum},L38gO08gp:{defaultValue:\"GOLF COURSE\",displayTextArea:false,title:\"Title\",type:ControlType.String},sE9ZVMvNx:{defaultValue:\"You'll find everything you need to elevate your game and unwind in style. Sharpen your skills on our championship-caliber practice range, complete with covered hitting bays, putting greens, and chipping areas.\",displayTextArea:false,title:\"Text\",type:ControlType.String},z0XDLOYb7:{defaultValue:48,min:0,title:\"Padding\",type:ControlType.Number},KZ6LxaPP3:{defaultValue:40,min:0,title:\"Gap\",type:ControlType.Number},AS1lam7oT:{title:\"Tap\",type:ControlType.EventHandler}});addFonts(FramerK7jytyP3Z,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Kanit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/kanit/v15/nKKU-Go6G5tXcr4-OSWlX6BJNUJy.woff2\",weight:\"300\"}]},...FeatherFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerK7jytyP3Z\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"L38gO08gp\\\":\\\"title\\\",\\\"sE9ZVMvNx\\\":\\\"text\\\",\\\"z0XDLOYb7\\\":\\\"padding\\\",\\\"KZ6LxaPP3\\\":\\\"gap\\\",\\\"AS1lam7oT\\\":\\\"tap\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"620\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GOYrGiqq2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"iTc8N10d0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"144\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./K7jytyP3Z.map", "// Generated by Framer (575e68f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import AccordionButton from\"https://framerusercontent.com/modules/1CQvkZ1Uk4lEVm6c9r38/yRuQab2C9fSn4R03SIuh/K7jytyP3Z.js\";const AccordionButtonFonts=getFonts(AccordionButton);const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"Rp6xziORZ\",\"vlQ2sFp1E\",\"xPGVtAF2D\",\"K6vEjb5Pz\"];const serializationHash=\"framer-YxD4A\";const variantClassNames={K6vEjb5Pz:\"framer-v-yq4ppn\",Rp6xziORZ:\"framer-v-1pzyhr5\",vlQ2sFp1E:\"framer-v-1vla3hx\",xPGVtAF2D:\"framer-v-3aqajw\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition1={damping:60,delay:0,mass:1,stiffness:300,type:\"spring\"};const transition2={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"Rp6xziORZ\",\"Variant 2\":\"vlQ2sFp1E\",\"Variant 3\":\"xPGVtAF2D\",\"Variant 4\":\"K6vEjb5Pz\"};const getProps=({gap,height,id,padding,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref,_ref1,_ref2;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"Rp6xziORZ\",Vaw8W5UQ0:(_ref1=padding!==null&&padding!==void 0?padding:props.Vaw8W5UQ0)!==null&&_ref1!==void 0?_ref1:48,zQOUi09Jq:(_ref2=gap!==null&&gap!==void 0?gap:props.zQOUi09Jq)!==null&&_ref2!==void 0?_ref2:40};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,Vaw8W5UQ0,zQOUi09Jq,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Rp6xziORZ\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const AS1lam7oT8og9vy=activeVariantCallback(async(...args)=>{setVariant(\"Rp6xziORZ\");});const AS1lam7oTcoeoz3=activeVariantCallback(async(...args)=>{setVariant(\"vlQ2sFp1E\");});const AS1lam7oTurr0cj=activeVariantCallback(async(...args)=>{setVariant(\"xPGVtAF2D\");});const AS1lam7oT79g84d=activeVariantCallback(async(...args)=>{setVariant(\"K6vEjb5Pz\");});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsxs(MotionDivWithFX,{...restProps,...gestureHandlers,__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1pzyhr5\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"Rp6xziORZ\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({K6vEjb5Pz:{\"data-framer-name\":\"Variant 4\"},vlQ2sFp1E:{\"data-framer-name\":\"Variant 2\"},xPGVtAF2D:{\"data-framer-name\":\"Variant 3\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jxqi4v-container\",layoutDependency:layoutDependency,layoutId:\"yreWepxRe-container\",children:/*#__PURE__*/_jsx(AccordionButton,{AS1lam7oT:AS1lam7oT8og9vy,height:\"100%\",id:\"yreWepxRe\",KZ6LxaPP3:zQOUi09Jq,L38gO08gp:\"Where Are We Located?\",layoutId:\"yreWepxRe\",sE9ZVMvNx:\"We are conveniently located between Edgewater and Downtown Miami, making Real Padel the most centrally positioned padel club in the city.                                              1739 NE 2nd Ave, Miami, FL 33132\",style:{width:\"100%\"},variant:\"GOYrGiqq2\",width:\"100%\",z0XDLOYb7:Vaw8W5UQ0,...addPropertyOverrides({K6vEjb5Pz:{variant:\"tMe_ThRft\"},vlQ2sFp1E:{variant:\"tMe_ThRft\"},xPGVtAF2D:{variant:\"tMe_ThRft\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-2b1kau-container\",layoutDependency:layoutDependency,layoutId:\"mCeln3B4O-container\",children:/*#__PURE__*/_jsx(AccordionButton,{AS1lam7oT:AS1lam7oTcoeoz3,height:\"100%\",id:\"mCeln3B4O\",KZ6LxaPP3:zQOUi09Jq,L38gO08gp:\"Operating Hours\",layoutId:\"mCeln3B4O\",sE9ZVMvNx:\"We're open Monday to Friday from 7:00 AM to 11:30 PM\",style:{width:\"100%\"},variant:\"tMe_ThRft\",width:\"100%\",z0XDLOYb7:Vaw8W5UQ0,...addPropertyOverrides({vlQ2sFp1E:{variant:\"GOYrGiqq2\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-o37k8y-container\",layoutDependency:layoutDependency,layoutId:\"E3SpjU3EU-container\",children:/*#__PURE__*/_jsx(AccordionButton,{AS1lam7oT:AS1lam7oTurr0cj,height:\"100%\",id:\"E3SpjU3EU\",KZ6LxaPP3:zQOUi09Jq,L38gO08gp:\"How to Book a Court\",layoutId:\"E3SpjU3EU\",sE9ZVMvNx:\"Reserve your court up to 7 days in advance through the PlaybyPoint app or by visiting this link https://www.realpadelmia.com/book/real-padel-miami You can also call us at +1 (305) 915-9731, and we'll assist you with your reservation.\",style:{width:\"100%\"},variant:\"tMe_ThRft\",width:\"100%\",z0XDLOYb7:Vaw8W5UQ0,...addPropertyOverrides({xPGVtAF2D:{variant:\"GOYrGiqq2\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ijkhm-container\",layoutDependency:layoutDependency,layoutId:\"gtpRDkBf0-container\",children:/*#__PURE__*/_jsx(AccordionButton,{AS1lam7oT:AS1lam7oT79g84d,height:\"100%\",id:\"gtpRDkBf0\",KZ6LxaPP3:zQOUi09Jq,L38gO08gp:\"Cancellation Policy\",layoutId:\"gtpRDkBf0\",sE9ZVMvNx:\"To ensure everyone has the opportunity to reserve and play, we offer a 24-hour cancellation window with no fee. Cancellations made less than 24 hours before the reservation time will not be refunded, and the full amount will be billed.\",style:{width:\"100%\"},variant:\"tMe_ThRft\",width:\"100%\",z0XDLOYb7:Vaw8W5UQ0,...addPropertyOverrides({K6vEjb5Pz:{variant:\"GOYrGiqq2\"}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-YxD4A.framer-vm6715, .framer-YxD4A .framer-vm6715 { display: block; }\",\".framer-YxD4A.framer-1pzyhr5 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 574px; }\",\".framer-YxD4A .framer-1jxqi4v-container, .framer-YxD4A .framer-2b1kau-container, .framer-YxD4A .framer-o37k8y-container, .framer-YxD4A .framer-ijkhm-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-YxD4A.framer-1pzyhr5 { gap: 0px; } .framer-YxD4A.framer-1pzyhr5 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-YxD4A.framer-1pzyhr5 > :first-child { margin-top: 0px; } .framer-YxD4A.framer-1pzyhr5 > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 745.5\n * @framerIntrinsicWidth 574\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"vlQ2sFp1E\":{\"layout\":[\"fixed\",\"auto\"]},\"xPGVtAF2D\":{\"layout\":[\"fixed\",\"auto\"]},\"K6vEjb5Pz\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"Vaw8W5UQ0\":\"padding\",\"zQOUi09Jq\":\"gap\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerJmzrNNhAD=withCSS(Component,css,\"framer-YxD4A\");export default FramerJmzrNNhAD;FramerJmzrNNhAD.displayName=\"Accordion / Block\";FramerJmzrNNhAD.defaultProps={height:745.5,width:574};addPropertyControls(FramerJmzrNNhAD,{variant:{options:[\"Rp6xziORZ\",\"vlQ2sFp1E\",\"xPGVtAF2D\",\"K6vEjb5Pz\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 4\"],title:\"Variant\",type:ControlType.Enum},Vaw8W5UQ0:{defaultValue:48,min:0,title:\"Padding\",type:ControlType.Number},zQOUi09Jq:{defaultValue:40,min:0,title:\"Gap\",type:ControlType.Number}});addFonts(FramerJmzrNNhAD,[{explicitInter:true,fonts:[]},...AccordionButtonFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerJmzrNNhAD\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"745.5\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"574\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vlQ2sFp1E\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xPGVtAF2D\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"K6vEjb5Pz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"Vaw8W5UQ0\\\":\\\"padding\\\",\\\"zQOUi09Jq\\\":\\\"gap\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./JmzrNNhAD.map", "// Generated by Framer (716ed5b)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/zCdOYLVjyKnQzuFcPTmM/kPPKt534D3fseBViX9tt/CEWiVfIwt.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/uoptpncc9tjDFED2HB6A/AU0sM3QIizSP8hye0jKz/qmjd4uIu6.js\";const cycleOrder=[\"JJj5r74kp\",\"Ye1NfBSk9\"];const serializationHash=\"framer-4Ycyf\";const variantClassNames={JJj5r74kp:\"framer-v-1pmnwc8\",Ye1NfBSk9:\"framer-v-1rffti4\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Center:\"Ye1NfBSk9\",Default:\"JJj5r74kp\"};const getProps=({height,id,stats,text,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1,_ref2;return{...props,GIbIEs3Wc:(_ref=stats!==null&&stats!==void 0?stats:props.GIbIEs3Wc)!==null&&_ref!==void 0?_ref:\"500+\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"JJj5r74kp\",xM8lvYtUG:(_ref2=text!==null&&text!==void 0?text:props.xM8lvYtUG)!==null&&_ref2!==void 0?_ref2:\"Event organize our club.\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,GIbIEs3Wc,xM8lvYtUG,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"JJj5r74kp\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1pmnwc8\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"JJj5r74kp\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({Ye1NfBSk9:{\"data-framer-name\":\"Center\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1ykqzij\",\"data-styles-preset\":\"qmjd4uIu6\",children:\"500+\"})}),className:\"framer-qmwvp4\",\"data-framer-name\":\"Stats\",layoutDependency:layoutDependency,layoutId:\"D328XBrhQ\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:GIbIEs3Wc,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Ye1NfBSk9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1ykqzij\",\"data-styles-preset\":\"qmjd4uIu6\",style:{\"--framer-text-alignment\":\"center\"},children:\"500+\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1pantvw\",\"data-styles-preset\":\"CEWiVfIwt\",children:\"Event organize our club.\"})}),className:\"framer-yu7haq\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"tkG1ZrVgi\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:xM8lvYtUG,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Ye1NfBSk9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1pantvw\",\"data-styles-preset\":\"CEWiVfIwt\",style:{\"--framer-text-alignment\":\"center\"},children:\"Event organize our club.\"})})}},baseVariant,gestureVariant)})]})})})});});const css=['.framer-4Ycyf[data-border=\"true\"]::after, .framer-4Ycyf [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-4Ycyf.framer-9bh5c6, .framer-4Ycyf .framer-9bh5c6 { display: block; }\",\".framer-4Ycyf.framer-1pmnwc8 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 284px; }\",\".framer-4Ycyf .framer-qmwvp4, .framer-4Ycyf .framer-yu7haq { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-4Ycyf.framer-1pmnwc8 { gap: 0px; } .framer-4Ycyf.framer-1pmnwc8 > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-4Ycyf.framer-1pmnwc8 > :first-child { margin-top: 0px; } .framer-4Ycyf.framer-1pmnwc8 > :last-child { margin-bottom: 0px; } }\",\".framer-4Ycyf.framer-v-1rffti4.framer-1pmnwc8 { align-content: center; align-items: center; gap: 3px; justify-content: center; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-4Ycyf.framer-v-1rffti4.framer-1pmnwc8 { gap: 0px; } .framer-4Ycyf.framer-v-1rffti4.framer-1pmnwc8 > * { margin: 0px; margin-bottom: calc(3px / 2); margin-top: calc(3px / 2); } .framer-4Ycyf.framer-v-1rffti4.framer-1pmnwc8 > :first-child { margin-top: 0px; } .framer-4Ycyf.framer-v-1rffti4.framer-1pmnwc8 > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 108\n * @framerIntrinsicWidth 284\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Ye1NfBSk9\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"GIbIEs3Wc\":\"stats\",\"xM8lvYtUG\":\"text\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FrameroY3EVjLdH=withCSS(Component,css,\"framer-4Ycyf\");export default FrameroY3EVjLdH;FrameroY3EVjLdH.displayName=\"Widget / Stats\";FrameroY3EVjLdH.defaultProps={height:108,width:284};addPropertyControls(FrameroY3EVjLdH,{variant:{options:[\"JJj5r74kp\",\"Ye1NfBSk9\"],optionTitles:[\"Default\",\"Center\"],title:\"Variant\",type:ControlType.Enum},GIbIEs3Wc:{defaultValue:\"500+\",displayTextArea:false,title:\"Stats\",type:ControlType.String},xM8lvYtUG:{defaultValue:\"Event organize our club.\",displayTextArea:false,title:\"Text\",type:ControlType.String}});addFonts(FrameroY3EVjLdH,[...sharedStyle.fonts,...sharedStyle1.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameroY3EVjLdH\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"108\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Ye1NfBSk9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"284\",\"framerVariables\":\"{\\\"GIbIEs3Wc\\\":\\\"stats\\\",\\\"xM8lvYtUG\\\":\\\"text\\\"}\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./oY3EVjLdH.map", "import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Kanit-700\",\"GF;Kanit-900\",\"GF;Kanit-900italic\",\"GF;Kanit-700italic\"]);export const fonts=[{family:\"Kanit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/kanit/v15/nKKU-Go6G5tXcr4uPiWlX6BJNUJy.woff2\",weight:\"700\"},{family:\"Kanit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/kanit/v15/nKKU-Go6G5tXcr4WPCWlX6BJNUJy.woff2\",weight:\"900\"},{family:\"Kanit\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/kanit/v15/nKKS-Go6G5tXcraQI4GnVaFrMFJyAu4.woff2\",weight:\"900\"},{family:\"Kanit\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/kanit/v15/nKKS-Go6G5tXcraQI7mlVaFrMFJyAu4.woff2\",weight:\"700\"}];export const css=['.framer-tk2a9 .framer-styles-preset-1ff52nb:not(.rich-text-wrapper), .framer-tk2a9 .framer-styles-preset-1ff52nb.rich-text-wrapper h1 { --framer-font-family: \"Kanit\", \"Kanit Placeholder\", sans-serif; --framer-font-family-bold: \"Kanit\", sans-serif; --framer-font-family-bold-italic: \"Kanit\", sans-serif; --framer-font-family-italic: \"Kanit\", \"Kanit Placeholder\", sans-serif; --framer-font-size: 200px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.02em; --framer-line-height: 96%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1439px) and (min-width: 992px) { .framer-tk2a9 .framer-styles-preset-1ff52nb:not(.rich-text-wrapper), .framer-tk2a9 .framer-styles-preset-1ff52nb.rich-text-wrapper h1 { --framer-font-family: \"Kanit\", \"Kanit Placeholder\", sans-serif; --framer-font-family-bold: \"Kanit\", sans-serif; --framer-font-family-bold-italic: \"Kanit\", sans-serif; --framer-font-family-italic: \"Kanit\", \"Kanit Placeholder\", sans-serif; --framer-font-size: 160px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.02em; --framer-line-height: 96%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 991px) and (min-width: 720px) { .framer-tk2a9 .framer-styles-preset-1ff52nb:not(.rich-text-wrapper), .framer-tk2a9 .framer-styles-preset-1ff52nb.rich-text-wrapper h1 { --framer-font-family: \"Kanit\", \"Kanit Placeholder\", sans-serif; --framer-font-family-bold: \"Kanit\", sans-serif; --framer-font-family-bold-italic: \"Kanit\", sans-serif; --framer-font-family-italic: \"Kanit\", \"Kanit Placeholder\", sans-serif; --framer-font-size: 128px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.02em; --framer-line-height: 96%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 719px) and (min-width: 0px) { .framer-tk2a9 .framer-styles-preset-1ff52nb:not(.rich-text-wrapper), .framer-tk2a9 .framer-styles-preset-1ff52nb.rich-text-wrapper h1 { --framer-font-family: \"Kanit\", \"Kanit Placeholder\", sans-serif; --framer-font-family-bold: \"Kanit\", sans-serif; --framer-font-family-bold-italic: \"Kanit\", sans-serif; --framer-font-family-italic: \"Kanit\", \"Kanit Placeholder\", sans-serif; --framer-font-size: 102px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.02em; --framer-line-height: 96%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-tk2a9\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[];export const css=['.framer-cvPwP .framer-styles-preset-ge5ggp:not(.rich-text-wrapper), .framer-cvPwP .framer-styles-preset-ge5ggp.rich-text-wrapper a { --framer-link-current-text-color: var(--token-71f0d7b2-951d-4bd6-bbb3-dcaf6f23b904, #cffd5a) /* {\"name\":\"Primary\"} */; --framer-link-current-text-decoration: none; --framer-link-hover-text-color: var(--token-71f0d7b2-951d-4bd6-bbb3-dcaf6f23b904, #cffd5a) /* {\"name\":\"Primary\"} */; --framer-link-hover-text-decoration: underline; --framer-link-text-color: var(--token-71f0d7b2-951d-4bd6-bbb3-dcaf6f23b904, #cffd5a); --framer-link-text-decoration: none; }'];export const className=\"framer-cvPwP\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (315fd46)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/Z4QJ2YpzpVnWRfR6Ccgg/Video.js\";import UtilitiesButton from\"#framer/local/canvasComponent/bR1UnZP02/bR1UnZP02.js\";import CardTestimonial from\"#framer/local/canvasComponent/fMxqceoSZ/fMxqceoSZ.js\";import AccordionBlock from\"#framer/local/canvasComponent/JmzrNNhAD/JmzrNNhAD.js\";import SectionCTA from\"#framer/local/canvasComponent/l_kK0OrLw/l_kK0OrLw.js\";import WidgetStats from\"#framer/local/canvasComponent/oY3EVjLdH/oY3EVjLdH.js\";import WidgetEvent from\"#framer/local/canvasComponent/S2TM3_VVw/S2TM3_VVw.js\";import CommonFooter from\"#framer/local/canvasComponent/sJcBtaP1U/sJcBtaP1U.js\";import PrimaryHeader from\"#framer/local/canvasComponent/UDLgsLtj6/UDLgsLtj6.js\";import SectionBrand from\"#framer/local/canvasComponent/v1xXIRRYx/v1xXIRRYx.js\";import CardMerch from\"#framer/local/canvasComponent/W9L5536Gg/W9L5536Gg.js\";import Event from\"#framer/local/collection/onr60TfZX/onr60TfZX.js\";import Merchendise from\"#framer/local/collection/yjhyl9KGE/yjhyl9KGE.js\";import*as sharedStyle3 from\"#framer/local/css/K5yh02xrL/K5yh02xrL.js\";import*as sharedStyle from\"#framer/local/css/oGKQG898N/oGKQG898N.js\";import*as sharedStyle4 from\"#framer/local/css/pKb3voA4D/pKb3voA4D.js\";import*as sharedStyle1 from\"#framer/local/css/rwNU6r9kD/rwNU6r9kD.js\";import*as sharedStyle2 from\"#framer/local/css/YN8_aU1KU/YN8_aU1KU.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const PrimaryHeaderFonts=getFonts(PrimaryHeader);const PrimaryHeaderWithVariantAppearEffect=withVariantAppearEffect(PrimaryHeader);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const UtilitiesButtonFonts=getFonts(UtilitiesButton);const VideoFonts=getFonts(Video);const RichTextWithFX=withFX(RichText);const ContainerWithFX=withFX(Container);const WidgetStatsFonts=getFonts(WidgetStats);const MotionDivWithFX=withFX(motion.div);const ImageWithFX=withFX(Image);const SectionBrandFonts=getFonts(SectionBrand);const AccordionBlockFonts=getFonts(AccordionBlock);const WidgetEventFonts=getFonts(WidgetEvent);const CardMerchFonts=getFonts(CardMerch);const CardTestimonialFonts=getFonts(CardTestimonial);const SectionCTAFonts=getFonts(SectionCTA);const CommonFooterFonts=getFonts(CommonFooter);const cycleOrder=[\"WQLkyLRf1\",\"H9OdlCqyz\",\"yjoBLSY0Q\",\"FCahH7B4v\"];const breakpoints={FCahH7B4v:\"(max-width: 719px)\",H9OdlCqyz:\"(min-width: 992px) and (max-width: 1439px)\",WQLkyLRf1:\"(min-width: 1440px)\",yjoBLSY0Q:\"(min-width: 720px) and (max-width: 991px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-NLUOP\";const variantClassNames={FCahH7B4v:\"framer-v-12bjqv1\",H9OdlCqyz:\"framer-v-1pghls8\",WQLkyLRf1:\"framer-v-72rtr7\",yjoBLSY0Q:\"framer-v-1g5wzjt\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition1={damping:80,delay:.6,mass:1,stiffness:300,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:10};const transition2={damping:80,delay:.7,mass:1,stiffness:300,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const transition3={damping:80,delay:.8,mass:1,stiffness:300,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const transition4={damping:80,delay:0,mass:1,stiffness:300,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const animation5={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const animation6={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:30};const transition5={damping:80,delay:1,mass:1,stiffness:300,type:\"spring\"};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:0};const transition6={damping:80,delay:.3,mass:1,stiffness:300,type:\"spring\"};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:0,y:0};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition7={damping:80,delay:.4,mass:1,stiffness:400,type:\"spring\"};const transition8={damping:60,delay:.6,mass:1,stiffness:400,type:\"spring\"};const transition9={damping:30,delay:.8,mass:1,stiffness:400,type:\"spring\"};const transition10={damping:60,delay:1,mass:1,stiffness:300,type:\"spring\"};const transition11={damping:60,delay:.7,mass:1,stiffness:300,type:\"spring\"};const transition12={damping:60,delay:1.2,mass:1,stiffness:300,type:\"spring\"};const transition13={damping:60,delay:.9,mass:1,stiffness:300,type:\"spring\"};const transition14={damping:60,delay:1.4,mass:1,stiffness:300,type:\"spring\"};const animation10={opacity:1,rotate:14,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:197,y:-57};const transition15={damping:70,delay:0,mass:1,stiffness:300,type:\"spring\"};const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:50,y:0};const transition16={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const transition17={damping:60,delay:0,mass:1,stiffness:300,type:\"spring\"};const transition18={damping:60,delay:.2,mass:1,stiffness:300,type:\"spring\"};const transition19={damping:60,delay:.4,mass:1,stiffness:300,type:\"spring\"};const transition20={damping:60,delay:.6,mass:1,stiffness:300,type:\"spring\"};const transition21={damping:60,delay:.3,mass:1,stiffness:300,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const transition22={damping:60,delay:.5,mass:1,stiffness:300,type:\"spring\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const metadata=metadataProvider();const humanReadableVariantMap={\"Large Desktop\":\"WQLkyLRf1\",Desktop:\"H9OdlCqyz\",Phone:\"FCahH7B4v\",Tablet:\"yjoBLSY0Q\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,grdv4AAyPGI0lFzz1F,x2ZUeoxZmGI0lFzz1F,ZZIS1Bt6eGI0lFzz1F,fJzJooeAWGI0lFzz1F,zgNfLVlgcGI0lFzz1F,kLq3Jr7NMGI0lFzz1F,zVhXPxMrwGI0lFzz1F,HKnTG3YF7GI0lFzz1F,idGI0lFzz1F,zJTeZxqV3s6sIcEvg8,YHMHemOm3s6sIcEvg8,wHlMWpSZ2s6sIcEvg8,qFwzoz3yMs6sIcEvg8,ua6_ofYN7s6sIcEvg8,HyCGMIbXDs6sIcEvg8,ids6sIcEvg8,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-NLUOP`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-NLUOP`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const ref2=React.useRef(null);const id=useRouteElementId(\"A1Fs13t3A\");const router=useRouter();const id1=useRouteElementId(\"XASpD5mgb\");const ref3=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"yjoBLSY0Q\")return false;return true;};const id2=useRouteElementId(\"rvkVhXPtQ\");const ref4=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-72rtr7\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-hk78fi-container\",layoutScroll:true,transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FCahH7B4v:{__framer__variantAppearEffectEnabled:undefined,variant:\"vYRWIyXHk\"},H9OdlCqyz:{__framer__targets:[{offset:0,ref:ref2,target:\"dhq92w2_k\"}],variant:\"GsN_ysdqi\"},yjoBLSY0Q:{__framer__variantAppearEffectEnabled:undefined,variant:\"yN4Xuia7d\"}},children:/*#__PURE__*/_jsx(PrimaryHeaderWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{offset:0,ref:ref2,target:\"DPdZJWLPJ\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"n_bUFmDsf\",layoutId:\"n_bUFmDsf\",style:{width:\"100%\"},variant:\"OTS2kMt3Q\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gok2ng\",\"data-framer-name\":\"Hero Section\",name:\"Hero Section\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-14eaisg\",\"data-framer-name\":\"Container\",name:\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cochae\",\"data-framer-name\":\"Hero Content \",id:id,name:\"Hero Content \",ref:ref2,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-54ut17\",\"data-framer-name\":\"Hero Content Top\",name:\"Hero Content Top\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uiravn\",\"data-framer-name\":\"Hero description\",name:\"Hero description\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mv9kg6\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1m4kkcc\",\"data-framer-name\":\"Text\",name:\"Text\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qq4j3h\",\"data-framer-name\":\"Image group\",name:\"Image group\",children:[/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-avmp6\",\"data-framer-appear-id\":\"avmp6\",\"data-framer-name\":\"Image Wrapper\",initial:animation1,name:\"Image Wrapper\",optimized:true,style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation2,className:\"framer-13gap9c\",\"data-framer-appear-id\":\"13gap9c\",\"data-framer-name\":\"Image Wrapper\",initial:animation1,name:\"Image Wrapper\",optimized:true,style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation3,className:\"framer-1idebgm\",\"data-framer-appear-id\":\"1idebgm\",\"data-framer-name\":\"Image Wrapper\",initial:animation1,name:\"Image Wrapper\",optimized:true,style:{transformPerspective:1200}})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s45gcd\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1f01koe\",\"data-framer-name\":\"Top Text\",name:\"Top Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FCahH7B4v:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7S2FuaXQtNzAw\",\"--framer-font-family\":'\"Kanit\", \"Kanit Placeholder\", sans-serif',\"--framer-font-size\":\"67px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"96%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"REAL PADEL\"})}),fonts:[\"GF;Kanit-700\"]},H9OdlCqyz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7S2FuaXQtNzAw\",\"--framer-font-family\":'\"Kanit\", \"Kanit Placeholder\", sans-serif',\"--framer-font-size\":\"160px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"96%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"REAL PADEL\"})}),fonts:[\"GF;Kanit-700\"]},yjoBLSY0Q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7S2FuaXQtNzAw\",\"--framer-font-family\":'\"Kanit\", \"Kanit Placeholder\", sans-serif',\"--framer-font-size\":\"120px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"96%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"REAL PADEL\"})}),fonts:[\"GF;Kanit-700\"]}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1ff52nb\",\"data-styles-preset\":\"oGKQG898N\",children:\"REAL PADEL\"})}),className:\"framer-1g0bz3w\",\"data-framer-appear-id\":\"1g0bz3w\",\"data-framer-name\":\"THE GOLF\",fonts:[\"Inter\"],initial:animation5,name:\"THE GOLF\",optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hwpqj\",\"data-framer-name\":\"Button Stack\",name:\"Button Stack\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{animate:animation3,className:\"framer-11a8de3-container\",\"data-framer-appear-id\":\"11a8de3\",initial:animation6,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FCahH7B4v:{variant:\"MxjMmOTRp\"}},children:/*#__PURE__*/_jsx(UtilitiesButton,{height:\"100%\",id:\"v22CDrrT6\",layoutId:\"v22CDrrT6\",Oa_r6K7KN:\"https://www.realpadelmia.com/book/real-padel-miami\",pNl_OaNDz:\"Book Your Court \",variant:\"ePYB4viE7\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"DoTMCjeys\"},implicitPathVariables:undefined},{href:{webPageId:\"DoTMCjeys\"},implicitPathVariables:undefined},{href:{webPageId:\"DoTMCjeys\"},implicitPathVariables:undefined},{href:{webPageId:\"DoTMCjeys\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{animate:animation7,className:\"framer-vhy9vr-container\",\"data-framer-appear-id\":\"vhy9vr\",initial:animation6,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FCahH7B4v:{Oa_r6K7KN:resolvedLinks[3],variant:\"OSdSbWlvC\"},H9OdlCqyz:{Oa_r6K7KN:resolvedLinks[1]},yjoBLSY0Q:{Oa_r6K7KN:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(UtilitiesButton,{height:\"100%\",id:\"g8i3pGRSa\",layoutId:\"g8i3pGRSa\",Oa_r6K7KN:resolvedLinks[0],pNl_OaNDz:\"Join Our Tournaments\",variant:\"VhjwaOi7F\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FCahH7B4v:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7S2FuaXQtNzAw\",\"--framer-font-family\":'\"Kanit\", \"Kanit Placeholder\", sans-serif',\"--framer-font-size\":\"68px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"96%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"MIAMI\"})}),fonts:[\"GF;Kanit-700\"]},H9OdlCqyz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7S2FuaXQtNzAw\",\"--framer-font-family\":'\"Kanit\", \"Kanit Placeholder\", sans-serif',\"--framer-font-size\":\"160px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"96%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\" MIAMI\"})}),fonts:[\"GF;Kanit-700\"]},yjoBLSY0Q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7S2FuaXQtNzAw\",\"--framer-font-family\":'\"Kanit\", \"Kanit Placeholder\", sans-serif',\"--framer-font-size\":\"120px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"96%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"MIAMI\"})}),fonts:[\"GF;Kanit-700\"]}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation8,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1ff52nb\",\"data-styles-preset\":\"oGKQG898N\",children:\"MIAMI\"})}),className:\"framer-1g57ttc\",\"data-framer-appear-id\":\"1g57ttc\",\"data-framer-name\":\"GLORY.\",fonts:[\"Inter\"],initial:animation5,name:\"GLORY.\",optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mopekn\",\"data-framer-name\":\"BG\",name:\"BG\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-kdgf2i-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FCahH7B4v:{srcFile:\"https://framerusercontent.com/assets/8MZ63oLPYBsmkpD7vKowV7pzkXs.mp4\"},yjoBLSY0Q:{srcFile:\"https://framerusercontent.com/assets/8MZ63oLPYBsmkpD7vKowV7pzkXs.mp4\"}},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"eojTqwJRW\",isMixedBorderRadius:false,layoutId:\"eojTqwJRW\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/eNOm2MXzaE33JgzONkFfifnEiY.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8uu8qh\",\"data-framer-name\":\"Overlay\",name:\"Overlay\"})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1227k3i\",\"data-framer-name\":\"About Section\",id:id1,name:\"About Section\",ref:ref3,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ig6b52\",\"data-framer-name\":\"Container\",name:\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18lf9tc\",\"data-framer-name\":\"About Content Stack\",name:\"About Content Stack\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7se9ai\",\"data-framer-name\":\"Left Block\",name:\"Left Block\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tug7a3\",\"data-framer-name\":\"About Text Block\",name:\"About Text Block\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lx82gv\",\"data-framer-name\":\"Text Block\",name:\"Text Block\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FCahH7B4v:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-8torcz\",\"data-styles-preset\":\"rwNU6r9kD\",style:{\"--framer-text-alignment\":\"center\"},children:\"ABOUT US\"})})},yjoBLSY0Q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-8torcz\",\"data-styles-preset\":\"rwNU6r9kD\",style:{\"--framer-text-alignment\":\"center\"},children:\"ABOUT US\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-8torcz\",\"data-styles-preset\":\"rwNU6r9kD\",children:\"ABOUT US\"})}),className:\"framer-1o43j99\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],name:\"Title\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FCahH7B4v:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14nw5fo\",\"data-styles-preset\":\"YN8_aU1KU\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"em\",{children:\"Founded in 2014, Real Padel Miami was the first Padel Club in the USA. We have been at the forefront of bringing this exciting sport to the States, building a community that values competition, fun, and fitness. Our mission is to provide a premier Padel Tennis experience, fostering a community where everyone, from beginners to experts, can thrive.\"})})})},yjoBLSY0Q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14nw5fo\",\"data-styles-preset\":\"YN8_aU1KU\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"em\",{children:\"Founded in 2014, Real Padel Miami was the first Padel Club in the USA. We have been at the forefront of bringing this exciting sport to the States, building a community that values competition, fun, and fitness. Our mission is to provide a premier Padel Tennis experience, fostering a community where everyone, from beginners to experts, can thrive.\"})})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14nw5fo\",\"data-styles-preset\":\"YN8_aU1KU\",children:/*#__PURE__*/_jsx(\"em\",{children:\"Founded in 2014, Real Padel Miami was the first Padel Club in the USA. We have been at the forefront of bringing this exciting sport to the States, building a community that values competition, fun, and fitness. Our mission is to provide a premier Padel Tennis experience, fostering a community where everyone, from beginners to experts, can thrive.\"})})}),className:\"framer-wjgflo\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\",\"Inter-Italic\"],name:\"Paragraph\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1h03e1r-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(UtilitiesButton,{height:\"100%\",id:\"wBc7uF1_o\",layoutId:\"wBc7uF1_o\",Oa_r6K7KN:\"https://www.realpadelmia.com/book/real-padel-miami\",pNl_OaNDz:\"Book Now\",variant:\"OSdSbWlvC\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u7mj3f\",\"data-framer-name\":\"Stats Wrapper\",name:\"Stats Wrapper\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1d3o7ac-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FCahH7B4v:{variant:\"Ye1NfBSk9\"},yjoBLSY0Q:{variant:\"Ye1NfBSk9\"}},children:/*#__PURE__*/_jsx(WidgetStats,{GIbIEs3Wc:\"4 OPEN COURTS\",height:\"100%\",id:\"P1dIMj4ey\",layoutId:\"P1dIMj4ey\",style:{width:\"100%\"},variant:\"JJj5r74kp\",width:\"100%\",xM8lvYtUG:\"\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ysjbbs hidden-1g5wzjt\",\"data-framer-name\":\"Divider\",name:\"Divider\",style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-k6o1oc-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FCahH7B4v:{variant:\"Ye1NfBSk9\"},yjoBLSY0Q:{variant:\"Ye1NfBSk9\"}},children:/*#__PURE__*/_jsx(WidgetStats,{GIbIEs3Wc:\"7:00AM - 11:30PM\",height:\"100%\",id:\"KLOajXjzX\",layoutId:\"KLOajXjzX\",style:{width:\"100%\"},variant:\"JJj5r74kp\",width:\"100%\",xM8lvYtUG:\"\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-11axzt6 hidden-1g5wzjt\",\"data-framer-name\":\"Divider\",name:\"Divider\",style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition14},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-z6zgr8-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FCahH7B4v:{variant:\"Ye1NfBSk9\"},yjoBLSY0Q:{variant:\"Ye1NfBSk9\"}},children:/*#__PURE__*/_jsx(WidgetStats,{GIbIEs3Wc:\"4.9/5.0 GOOGLE REVIEWS\",height:\"100%\",id:\"kyEk853W4\",layoutId:\"kyEk853W4\",style:{width:\"100%\"},variant:\"JJj5r74kp\",width:\"100%\",xM8lvYtUG:\"\"})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s5cddz\",\"data-framer-name\":\"Right Block\",name:\"Right Block\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xmf6od\",\"data-framer-name\":\"Image\",name:\"Image\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FCahH7B4v:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1770,intrinsicWidth:1704,pixelHeight:1712,pixelWidth:1142,src:\"https://framerusercontent.com/images/7cbjMsVfmV1ILDy2X6V4Fsiv41I.png\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition15},__framer__animateOnce:true,__framer__enter:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1770,intrinsicWidth:1704,loading:\"lazy\",pixelHeight:1712,pixelWidth:1142,src:\"https://framerusercontent.com/images/7cbjMsVfmV1ILDy2X6V4Fsiv41I.png\"},className:\"framer-16le4uh\",\"data-framer-name\":\"Image\",name:\"Image\",style:{rotate:-14,transformPerspective:1200},transformTemplate:transformTemplate2})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FCahH7B4v:{background:{alt:\"about image\",fit:\"fill\",intrinsicHeight:1848,intrinsicWidth:1702,pixelHeight:1768,pixelWidth:1186,src:\"https://framerusercontent.com/images/SYdIhK4qdMCp49OAOvnTmuyIE0w.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"about image\",fit:\"fill\",intrinsicHeight:1848,intrinsicWidth:1702,loading:\"lazy\",pixelHeight:1768,pixelWidth:1186,src:\"https://framerusercontent.com/images/SYdIhK4qdMCp49OAOvnTmuyIE0w.png\"},className:\"framer-1oed25p\",\"data-framer-name\":\"Image\",name:\"Image\"})})]}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-10cza6p\",\"data-styles-preset\":\"K5yh02xrL\",style:{\"--framer-text-color\":\"var(--token-8668ea4c-bb3e-4d33-86aa-354c18130071, rgb(207, 207, 207))\"},children:\"ESTABLISHED IN 2014\"})}),className:\"framer-xnet6a\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],name:\"Text\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]})]})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-kg5672-container\",id:id2,ref:ref4,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FCahH7B4v:{variant:\"Ov1RpRzVG\"},yjoBLSY0Q:{variant:\"Ov1RpRzVG\"}},children:/*#__PURE__*/_jsx(SectionBrand,{height:\"100%\",id:\"rvkVhXPtQ\",layoutId:\"rvkVhXPtQ\",style:{width:\"100%\"},variant:\"DP3V8gnb4\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xfih2\",\"data-framer-name\":\"Facility Section\",name:\"Facility Section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-i8daom\",\"data-framer-name\":\"Container\",name:\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ft7cim\",\"data-framer-name\":\"Facility\",name:\"Facility\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FCahH7B4v:{width:\"max(min(100vw, 520px) - 48px, 1px)\"},H9OdlCqyz:{width:\"max(max(min(max(100vw, 1px), 1000px) - 60px, 1px) * 0.52 - 40px, 1px)\"},yjoBLSY0Q:{width:\"max(min(max(100vw, 1px), 720px) - 48px, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"calc(max(min(max(100vw, 1px), 1356px) - 60px, 1px) * 0.4429)\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition16},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-olqbjl-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FCahH7B4v:{Vaw8W5UQ0:30,zQOUi09Jq:14},H9OdlCqyz:{Vaw8W5UQ0:27,zQOUi09Jq:17},yjoBLSY0Q:{Vaw8W5UQ0:30,zQOUi09Jq:24}},children:/*#__PURE__*/_jsx(AccordionBlock,{height:\"100%\",id:\"bqaqOktkn\",layoutId:\"bqaqOktkn\",style:{width:\"100%\"},variant:\"Rp6xziORZ\",Vaw8W5UQ0:48,width:\"100%\",zQOUi09Jq:40})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t3cpcy\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yubq9j\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-goptuw\",\"data-framer-name\":\"Section title\",name:\"Section title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FCahH7B4v:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-8torcz\",\"data-styles-preset\":\"rwNU6r9kD\",style:{\"--framer-text-alignment\":\"center\"},children:\"OUR FACILITY\"})})},yjoBLSY0Q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-8torcz\",\"data-styles-preset\":\"rwNU6r9kD\",style:{\"--framer-text-alignment\":\"center\"},children:\"OUR FACILITY\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition17},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-8torcz\",\"data-styles-preset\":\"rwNU6r9kD\",children:\"OUR FACILITY\"})}),className:\"framer-1pkf9s8\",\"data-framer-name\":\"OUR FACILITY\",fonts:[\"Inter\"],name:\"OUR FACILITY\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FCahH7B4v:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14nw5fo\",\"data-styles-preset\":\"YN8_aU1KU\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"em\",{children:\"Conveniently located in the heart of Miami, Real Padel is easily accessible for anyone looking to join the Padel community. Our state-of-the-art facility offers everything you need for an exceptional Padel experience, from high-quality courts to a welcoming environment.\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14nw5fo\",\"data-styles-preset\":\"YN8_aU1KU\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14nw5fo\",\"data-styles-preset\":\"YN8_aU1KU\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"em\",{children:\"Visit us today and see why we\u2019re the top Padel Club in Miami.\"})})]})},yjoBLSY0Q:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14nw5fo\",\"data-styles-preset\":\"YN8_aU1KU\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"em\",{children:\"Conveniently located in the heart of Miami, Real Padel is easily accessible for anyone looking to join the Padel community. Our state-of-the-art facility offers everything you need for an exceptional Padel experience, from high-quality courts to a welcoming environment.\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14nw5fo\",\"data-styles-preset\":\"YN8_aU1KU\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14nw5fo\",\"data-styles-preset\":\"YN8_aU1KU\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"em\",{children:\"Visit us today and see why we\u2019re the top Padel Club in Miami.\"})})]})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition18},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14nw5fo\",\"data-styles-preset\":\"YN8_aU1KU\",children:/*#__PURE__*/_jsx(\"em\",{children:\"Conveniently located in the heart of Miami, Real Padel is easily accessible for anyone looking to join the Padel community. Our state-of-the-art facility offers everything you need for an exceptional Padel experience, from high-quality courts to a welcoming environment.\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14nw5fo\",\"data-styles-preset\":\"YN8_aU1KU\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14nw5fo\",\"data-styles-preset\":\"YN8_aU1KU\",children:/*#__PURE__*/_jsx(\"em\",{children:\"Visit us today and see why we\u2019re the top Padel Club in Miami.\"})})]}),className:\"framer-l07vyr\",\"data-framer-name\":\"You'll find everything you need to elevate your game and unwind in style. Sharpen your skills on our championship-caliber practice range, complete with covered hitting bays, putting greens, and chipping areas.\",fonts:[\"Inter\",\"Inter-Italic\"],name:\"You'll find everything you need to elevate your game and unwind in style. Sharpen your skills on our championship-caliber practice range, complete with covered hitting bays, putting greens, and chipping areas.\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition19},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-qlsj2b-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(UtilitiesButton,{height:\"100%\",id:\"Grq2vcZUf\",layoutId:\"Grq2vcZUf\",Oa_r6K7KN:\"https://www.realpadelmia.com/book/real-padel-miami\",pNl_OaNDz:\"Book Now\",variant:\"HPWcqANXu\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition20},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1igu94l\",\"data-framer-name\":\"Image Block\",name:\"Image Block\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FCahH7B4v:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:556,pixelWidth:1010,positionX:\"right\",positionY:\"top\",sizes:\"max(min(100vw, 520px) - 48px, 1px)\",src:\"https://framerusercontent.com/images/ZgQ3BkdhYWNU83uI8LgWknhwgw.png\",srcSet:\"https://framerusercontent.com/images/ZgQ3BkdhYWNU83uI8LgWknhwgw.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZgQ3BkdhYWNU83uI8LgWknhwgw.png 1010w\"}},H9OdlCqyz:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:556,pixelWidth:1010,positionX:\"right\",positionY:\"top\",sizes:\"calc(max(min(max(100vw, 1px), 1000px) - 60px, 1px) * 0.48)\",src:\"https://framerusercontent.com/images/ZgQ3BkdhYWNU83uI8LgWknhwgw.png\",srcSet:\"https://framerusercontent.com/images/ZgQ3BkdhYWNU83uI8LgWknhwgw.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZgQ3BkdhYWNU83uI8LgWknhwgw.png 1010w\"}},yjoBLSY0Q:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:556,pixelWidth:1010,positionX:\"right\",positionY:\"top\",sizes:\"calc(max(min(max(100vw, 1px), 720px) - 48px, 1px) - 80px)\",src:\"https://framerusercontent.com/images/ZgQ3BkdhYWNU83uI8LgWknhwgw.png\",srcSet:\"https://framerusercontent.com/images/ZgQ3BkdhYWNU83uI8LgWknhwgw.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZgQ3BkdhYWNU83uI8LgWknhwgw.png 1010w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:556,pixelWidth:1010,positionX:\"right\",positionY:\"top\",sizes:\"calc(max(min(max(100vw, 1px), 1356px) - 60px, 1px) * 0.48)\",src:\"https://framerusercontent.com/images/ZgQ3BkdhYWNU83uI8LgWknhwgw.png\",srcSet:\"https://framerusercontent.com/images/ZgQ3BkdhYWNU83uI8LgWknhwgw.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZgQ3BkdhYWNU83uI8LgWknhwgw.png 1010w\"},className:\"framer-1if2n3y\",\"data-framer-name\":\"Image\",name:\"Image\"})})})]})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1inlqa1\",\"data-framer-name\":\"Event Section\",name:\"Event Section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pqwtz8\",\"data-framer-name\":\"Container\",name:\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wlhc57\",\"data-framer-name\":\"Event Content Stack\",name:\"Event Content Stack\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rdzekc\",\"data-framer-name\":\"Section Heading Block\",name:\"Section Heading Block\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FCahH7B4v:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-8torcz\",\"data-styles-preset\":\"rwNU6r9kD\",style:{\"--framer-text-alignment\":\"center\"},children:\"WEEKLY TOURNAMENT\"})})},yjoBLSY0Q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-8torcz\",\"data-styles-preset\":\"rwNU6r9kD\",style:{\"--framer-text-alignment\":\"center\"},children:\"WEEKLY TOURNAMENT\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition17},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-8torcz\",\"data-styles-preset\":\"rwNU6r9kD\",children:\"WEEKLY TOURNAMENT\"})}),className:\"framer-1t87u22\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],name:\"Title\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FCahH7B4v:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14nw5fo\",\"data-styles-preset\":\"YN8_aU1KU\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"em\",{children:\"Step up to the challenge with Real Padel Miami\u2019s tournaments. Whether you\u2019re looking to compete against the best or enjoy a fun day of play, our tournaments cater to all levels. With a range of formats and categories, there\u2019s something for everyone. Join us for our next tournament and experience the excitement of competitive Padel Tennis.\"})})})},H9OdlCqyz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14nw5fo\",\"data-styles-preset\":\"YN8_aU1KU\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(\"em\",{children:\"Step up to the challenge with Real Padel Miami\u2019s tournaments. Whether you\u2019re looking to compete against the best or enjoy a fun day of play, our tournaments cater to all levels. With a range of formats and categories, there\u2019s something for everyone. Join us for our next tournament and experience the excitement of competitive Padel Tennis.\"})})})},yjoBLSY0Q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14nw5fo\",\"data-styles-preset\":\"YN8_aU1KU\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"em\",{children:\"Step up to the challenge with Real Padel Miami\u2019s tournaments. Whether you\u2019re looking to compete against the best or enjoy a fun day of play, our tournaments cater to all levels. With a range of formats and categories, there\u2019s something for everyone. Join us for our next tournament and experience the excitement of competitive Padel Tennis.\"})})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition21},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14nw5fo\",\"data-styles-preset\":\"YN8_aU1KU\",children:/*#__PURE__*/_jsx(\"em\",{children:\"Step up to the challenge with Real Padel Miami\u2019s tournaments. Whether you\u2019re looking to compete against the best or enjoy a fun day of play, our tournaments cater to all levels. With a range of formats and categories, there\u2019s something for everyone. Join us for our next tournament and experience the excitement of competitive Padel Tennis.\"})})}),className:\"framer-dnyc8s\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\",\"Inter-Italic\"],name:\"Paragraph\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition20},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ds3ike\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"default\",data:Event,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"default\",name:\"grdv4AAyP\",type:\"Identifier\"},{collection:\"default\",name:\"x2ZUeoxZm\",type:\"Identifier\"},{collection:\"default\",name:\"ZZIS1Bt6e\",type:\"Identifier\"},{collection:\"default\",name:\"fJzJooeAW\",type:\"Identifier\"},{collection:\"default\",name:\"zgNfLVlgc\",type:\"Identifier\"},{collection:\"default\",name:\"kLq3Jr7NM\",type:\"Identifier\"},{collection:\"default\",name:\"zVhXPxMrw\",type:\"Identifier\"},{collection:\"default\",name:\"HKnTG3YF7\",type:\"Identifier\"},{collection:\"default\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection.map(({\"grdv4AAyP\":grdv4AAyPGI0lFzz1F,\"x2ZUeoxZm\":x2ZUeoxZmGI0lFzz1F,\"ZZIS1Bt6e\":ZZIS1Bt6eGI0lFzz1F,\"fJzJooeAW\":fJzJooeAWGI0lFzz1F,\"zgNfLVlgc\":zgNfLVlgcGI0lFzz1F,\"kLq3Jr7NM\":kLq3Jr7NMGI0lFzz1F,\"zVhXPxMrw\":zVhXPxMrwGI0lFzz1F,\"HKnTG3YF7\":HKnTG3YF7GI0lFzz1F,\"id\":idGI0lFzz1F},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`GI0lFzz1F-${idGI0lFzz1F}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{HKnTG3YF7:HKnTG3YF7GI0lFzz1F},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{HKnTG3YF7:HKnTG3YF7GI0lFzz1F},webPageId:\"uWhJpdlpS\"},implicitPathVariables:undefined},{href:{pathVariables:{HKnTG3YF7:HKnTG3YF7GI0lFzz1F},webPageId:\"uWhJpdlpS\"},implicitPathVariables:undefined},{href:{pathVariables:{HKnTG3YF7:HKnTG3YF7GI0lFzz1F},webPageId:\"uWhJpdlpS\"},implicitPathVariables:undefined},{href:{pathVariables:{HKnTG3YF7:HKnTG3YF7GI0lFzz1F},webPageId:\"uWhJpdlpS\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FCahH7B4v:{width:\"min(max(min(100vw, 520px) - 48px, 1px), 400px)\"},H9OdlCqyz:{width:\"max(min(max(100vw, 1px), 1000px) - 60px, 1px)\"},yjoBLSY0Q:{width:\"max(min(max(100vw, 1px), 720px) - 48px, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"max(min(max(100vw, 1px), 1356px) - 60px, 1px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-6el640-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FCahH7B4v:{lEtVneBSJ:resolvedLinks1[3],variant:\"fgzLlm_0z\"},H9OdlCqyz:{lEtVneBSJ:resolvedLinks1[1],variant:\"Rthlp4xJG\"},yjoBLSY0Q:{lEtVneBSJ:resolvedLinks1[2],variant:\"Z0fRucaeI\"}},children:/*#__PURE__*/_jsx(WidgetEvent,{cr1iXiJkC:toResponsiveImage(kLq3Jr7NMGI0lFzz1F),height:\"100%\",HgGTHgCC7:ZZIS1Bt6eGI0lFzz1F,id:\"t1IMokH0C\",KaMxR0bsG:zgNfLVlgcGI0lFzz1F,kd8Wl3nf5:grdv4AAyPGI0lFzz1F,layoutId:\"t1IMokH0C\",lEtVneBSJ:resolvedLinks1[0],LI9FQb2hC:fJzJooeAWGI0lFzz1F,style:{width:\"100%\"},Tiwaqd6mo:x2ZUeoxZmGI0lFzz1F,variant:\"nH_lR8Wcd\",width:\"100%\",xk95DzLea:zVhXPxMrwGI0lFzz1F})})})})})})})},idGI0lFzz1F);})})})})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1psy9h5\",\"data-framer-name\":\"Merch Section\",name:\"Merch Section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-h5e5fk\",\"data-framer-name\":\"Container\",name:\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yx0nxo\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dgv9pr\",\"data-framer-name\":\"Section title\",name:\"Section title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FCahH7B4v:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-8torcz\",\"data-styles-preset\":\"rwNU6r9kD\",style:{\"--framer-text-alignment\":\"center\"},children:\"MEET OUR COACHES\"})})},yjoBLSY0Q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-8torcz\",\"data-styles-preset\":\"rwNU6r9kD\",style:{\"--framer-text-alignment\":\"center\"},children:\"MEET OUR COACHES\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition17},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-8torcz\",\"data-styles-preset\":\"rwNU6r9kD\",children:\"MEET OUR COACHES\"})}),className:\"framer-1lk7azs\",\"data-framer-name\":\"OUR FACILITY\",fonts:[\"Inter\"],name:\"OUR FACILITY\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition21},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-10cza6p\",\"data-styles-preset\":\"K5yh02xrL\",style:{\"--framer-text-color\":\"var(--token-71f0d7b2-951d-4bd6-bbb3-dcaf6f23b904, rgb(207, 253, 90))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.realpadelmia.com/pros?facility_id=220\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-ge5ggp\",\"data-styles-preset\":\"pKb3voA4D\",children:\"Book a Private Class\"})})})}),className:\"framer-584e6f\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],name:\"Text\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition22},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-4tw7np\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"default\",data:Merchendise,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},orderBy:[{collection:\"default\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{collection:\"default\",name:\"zJTeZxqV3\",type:\"Identifier\"},{collection:\"default\",name:\"YHMHemOm3\",type:\"Identifier\"},{collection:\"default\",name:\"wHlMWpSZ2\",type:\"Identifier\"},{collection:\"default\",name:\"qFwzoz3yM\",type:\"Identifier\"},{collection:\"default\",name:\"ua6_ofYN7\",type:\"Identifier\"},{collection:\"default\",name:\"HyCGMIbXD\",type:\"Identifier\"},{collection:\"default\",name:\"id\",type:\"Identifier\"}]},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1.map(({\"zJTeZxqV3\":zJTeZxqV3s6sIcEvg8,\"YHMHemOm3\":YHMHemOm3s6sIcEvg8,\"wHlMWpSZ2\":wHlMWpSZ2s6sIcEvg8,\"qFwzoz3yM\":qFwzoz3yMs6sIcEvg8,\"ua6_ofYN7\":ua6_ofYN7s6sIcEvg8,\"HyCGMIbXD\":HyCGMIbXDs6sIcEvg8,\"id\":ids6sIcEvg8},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`s6sIcEvg8-${ids6sIcEvg8}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{YHMHemOm3:YHMHemOm3s6sIcEvg8},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:zJTeZxqV3s6sIcEvg8,implicitPathVariables:{YHMHemOm3:YHMHemOm3s6sIcEvg8}},{href:zJTeZxqV3s6sIcEvg8,implicitPathVariables:{YHMHemOm3:YHMHemOm3s6sIcEvg8}},{href:zJTeZxqV3s6sIcEvg8,implicitPathVariables:{YHMHemOm3:YHMHemOm3s6sIcEvg8}},{href:zJTeZxqV3s6sIcEvg8,implicitPathVariables:{YHMHemOm3:YHMHemOm3s6sIcEvg8}}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FCahH7B4v:{width:\"min(max(min(100vw, 520px) - 48px, 1px), 400px)\"},H9OdlCqyz:{width:\"calc(max(min(max(100vw, 1px), 1000px) - 60px, 1px) * 0.31)\"},yjoBLSY0Q:{width:\"calc(max(min(max(100vw, 1px), 720px) - 48px, 1px) * 0.47)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"calc(max(min(max(100vw, 1px), 1356px) - 60px, 1px) * 0.31)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1p8woqx-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FCahH7B4v:{CyGmwz3w4:resolvedLinks2[3]},H9OdlCqyz:{CyGmwz3w4:resolvedLinks2[1]},yjoBLSY0Q:{CyGmwz3w4:resolvedLinks2[2]}},children:/*#__PURE__*/_jsx(CardMerch,{CyGmwz3w4:resolvedLinks2[0],dKCQoyWXv:toResponsiveImage(wHlMWpSZ2s6sIcEvg8),GUOfciWjx:ua6_ofYN7s6sIcEvg8,height:\"100%\",id:\"H0LAY4vxV\",IePEIKSRO:HyCGMIbXDs6sIcEvg8,layoutId:\"H0LAY4vxV\",style:{width:\"100%\"},width:\"100%\",wqMYZmdpM:qFwzoz3yMs6sIcEvg8})})})})})})})},ids6sIcEvg8);})})})})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-vamcyf\",\"data-framer-name\":\"Testimonial Section\",name:\"Testimonial Section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1psti3a\",\"data-framer-name\":\"Container\",name:\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ujqfmm\",\"data-framer-name\":\"Testimonial Content Stack\",name:\"Testimonial Content Stack\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xniqga\",\"data-framer-name\":\"Section Heading Block\",name:\"Section Heading Block\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition17},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-8torcz\",\"data-styles-preset\":\"rwNU6r9kD\",style:{\"--framer-text-alignment\":\"center\"},children:\"CLIENT TESTIMONIALS\"})}),className:\"framer-em03xg\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],name:\"Title\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition18},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14nw5fo\",\"data-styles-preset\":\"YN8_aU1KU\",style:{\"--framer-text-alignment\":\"center\"},children:\"At Real Padel Miami, our players are at the heart of everything we do. Don\u2019t just take our word for it\u2014hear what our community has to say about their experience at Miami\u2019s premier padel club.\"})}),className:\"framer-cb5kuc\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],name:\"Paragraph\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1twnyx6\",\"data-framer-name\":\"Content\",name:\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2zy4v1\",\"data-framer-name\":\"Tesstimonial Card Stack\",name:\"Tesstimonial Card Stack\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FCahH7B4v:{width:\"min(max(min(100vw, 520px) - 48px, 1px), 400px)\"},H9OdlCqyz:{width:\"max((max(min(max(100vw, 1px), 1000px) - 60px, 1px) - 30px) / 2, 1px)\"},yjoBLSY0Q:{width:\"calc(max(min(max(100vw, 1px), 720px) - 48px, 1px) * 0.91)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"max((max(min(max(100vw, 1px), 1356px) - 60px, 1px) - 30px) / 2, 1px)\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition19},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-14j1zxd-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FCahH7B4v:{UNHHL12zQ:30,XmScX1QDj:30},H9OdlCqyz:{UNHHL12zQ:40,XmScX1QDj:40}},children:/*#__PURE__*/_jsx(CardTestimonial,{d8mnynp4e:\"D2 USA MEN CHAMPION\",height:\"100%\",id:\"rQS9CeiEw\",JO3PQYN_F:\"Joining Real Padel Miami has been one of the best decisions I've made. The community is welcoming, the facilities are top-notch, and the coaching has taken my game to the next level. Whether you're a beginner or a seasoned player, this is the place to be! Their food and coffes are amaing as well 10/10\",layoutId:\"rQS9CeiEw\",pHd4HCxxW:\"PEPE PALMISANO\",style:{width:\"100%\"},UguM85dPw:addImageAlt({positionX:\"55.1%\",positionY:\"4.2%\",src:\"https://framerusercontent.com/images/lAuUjvkdDaZYjoTPTf59W4hLKjg.jpg\",srcSet:\"https://framerusercontent.com/images/lAuUjvkdDaZYjoTPTf59W4hLKjg.jpg?scale-down-to=1024 846w,https://framerusercontent.com/images/lAuUjvkdDaZYjoTPTf59W4hLKjg.jpg 916w\"},\"\"),UNHHL12zQ:48,width:\"100%\",XmScX1QDj:48})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FCahH7B4v:{width:\"min(max(min(100vw, 520px) - 48px, 1px), 400px)\"},H9OdlCqyz:{width:\"max((max(min(max(100vw, 1px), 1000px) - 60px, 1px) - 30px) / 2, 1px)\"},yjoBLSY0Q:{width:\"calc(max(min(max(100vw, 1px), 720px) - 48px, 1px) * 0.91)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"max((max(min(max(100vw, 1px), 1356px) - 60px, 1px) - 30px) / 2, 1px)\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition20},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1bwo9vp-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FCahH7B4v:{UNHHL12zQ:30,XmScX1QDj:30},H9OdlCqyz:{UNHHL12zQ:40,XmScX1QDj:40}},children:/*#__PURE__*/_jsx(CardTestimonial,{d8mnynp4e:\"FORMER DIVISION 1 TENNIS PLAYER\",height:\"100%\",id:\"oJCrykV1C\",JO3PQYN_F:\"Real Padel Miami has redefined how I view fitness and fun. The atmosphere is unbeatable, and the convenience of the location makes it easy to fit into my busy schedule. The community here is like no other, and I always leave the court feeling energized and accomplished.\",layoutId:\"oJCrykV1C\",pHd4HCxxW:\"ANDRES GOMEZ\",style:{width:\"100%\"},UguM85dPw:addImageAlt({positionX:\"50.4%\",positionY:\"18.1%\",src:\"https://framerusercontent.com/images/FzjTI70jjgRxlOkeS6bNq54n3Q.jpg\",srcSet:\"https://framerusercontent.com/images/FzjTI70jjgRxlOkeS6bNq54n3Q.jpg 768w\"},\"\"),UNHHL12zQ:48,width:\"100%\",XmScX1QDj:48})})})})})]})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vfy32u\",\"data-framer-name\":\"Pricing Section\",name:\"Pricing Section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1k3yvj4\",\"data-framer-name\":\"Container\",name:\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ldp1qg\",\"data-framer-name\":\"Testimonial Content Stack\",name:\"Testimonial Content Stack\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-mjb4w9\",\"data-framer-name\":\"Section Heading Block\",name:\"Section Heading Block\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition17},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-8torcz\",\"data-styles-preset\":\"rwNU6r9kD\",style:{\"--framer-text-alignment\":\"center\"},children:\"Pricing\"})}),className:\"framer-1qi0qgf\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],name:\"Title\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dnbeap\",\"data-framer-name\":\"Content\",name:\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xoi4pb\",\"data-framer-name\":\"Tesstimonial Card Stack\",name:\"Tesstimonial Card Stack\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FCahH7B4v:{width:\"min(max(min(100vw, 520px) - 48px, 1px), 400px)\"},H9OdlCqyz:{width:\"max((max(min(max(100vw, 1px), 1000px) - 60px, 1px) - 30px) / 2, 1px)\"},yjoBLSY0Q:{width:\"calc(max(min(max(100vw, 1px), 720px) - 48px, 1px) * 0.91)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"max((max(min(max(100vw, 1px), 1356px) - 60px, 1px) - 30px) / 2, 1px)\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition19},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-dn8nyi-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FCahH7B4v:{UNHHL12zQ:30,XmScX1QDj:30},H9OdlCqyz:{UNHHL12zQ:40,XmScX1QDj:40}},children:/*#__PURE__*/_jsx(CardTestimonial,{d8mnynp4e:\"+TAX\",height:\"100%\",id:\"YwhDgOW8q\",JO3PQYN_F:\"MON - SUN FROM 7:00 AM TO 5:30PM \",layoutId:\"YwhDgOW8q\",pHd4HCxxW:\"$100 - DURATION: 120 MIN\",style:{width:\"100%\"},UguM85dPw:addImageAlt({src:\"https://framerusercontent.com/images/lW3vowxXztu7K1Qfny1aIgAMVxc.png\",srcSet:\"https://framerusercontent.com/images/lW3vowxXztu7K1Qfny1aIgAMVxc.png?scale-down-to=512 512w,https://framerusercontent.com/images/lW3vowxXztu7K1Qfny1aIgAMVxc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/lW3vowxXztu7K1Qfny1aIgAMVxc.png 1080w\"},\"\"),UNHHL12zQ:48,width:\"100%\",XmScX1QDj:48})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FCahH7B4v:{width:\"min(max(min(100vw, 520px) - 48px, 1px), 400px)\"},H9OdlCqyz:{width:\"max((max(min(max(100vw, 1px), 1000px) - 60px, 1px) - 30px) / 2, 1px)\"},yjoBLSY0Q:{width:\"calc(max(min(max(100vw, 1px), 720px) - 48px, 1px) * 0.91)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"max((max(min(max(100vw, 1px), 1356px) - 60px, 1px) - 30px) / 2, 1px)\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition20},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1phabci-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FCahH7B4v:{UNHHL12zQ:30,XmScX1QDj:30},H9OdlCqyz:{UNHHL12zQ:40,XmScX1QDj:40}},children:/*#__PURE__*/_jsx(CardTestimonial,{d8mnynp4e:\"+TAX\",height:\"100%\",id:\"bxgschKF0\",JO3PQYN_F:\"MON - SUN FROM 5:30 AM TO 1:30PM \",layoutId:\"bxgschKF0\",pHd4HCxxW:\"$114 - DURATION: 120 MIN\",style:{width:\"100%\"},UguM85dPw:addImageAlt({src:\"https://framerusercontent.com/images/lW3vowxXztu7K1Qfny1aIgAMVxc.png\",srcSet:\"https://framerusercontent.com/images/lW3vowxXztu7K1Qfny1aIgAMVxc.png?scale-down-to=512 512w,https://framerusercontent.com/images/lW3vowxXztu7K1Qfny1aIgAMVxc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/lW3vowxXztu7K1Qfny1aIgAMVxc.png 1080w\"},\"\"),UNHHL12zQ:48,width:\"100%\",XmScX1QDj:48})})})})})]})})]})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-bcnp0-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FCahH7B4v:{variant:\"c0usnfUGi\"},yjoBLSY0Q:{variant:\"Oe4rfcz9i\"}},children:/*#__PURE__*/_jsx(SectionCTA,{height:\"100%\",id:\"WrrJT_LyY\",layoutId:\"WrrJT_LyY\",style:{width:\"100%\"},variant:\"sD7syZinL\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":A1Fs13t3A\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":A1Fs13t3A\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":A1Fs13t3A\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":A1Fs13t3A\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-5te95t-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FCahH7B4v:{variant:\"zvPP12IwY\",zFckocJVv:resolvedLinks3[3]},H9OdlCqyz:{variant:\"K1kwLxj7H\",zFckocJVv:resolvedLinks3[1]},yjoBLSY0Q:{variant:\"Yo6egD9t5\",zFckocJVv:resolvedLinks3[2]}},children:/*#__PURE__*/_jsx(CommonFooter,{height:\"100%\",id:\"yXcNuJKCL\",layoutId:\"yXcNuJKCL\",style:{width:\"100%\"},variant:\"lHesqD9qM\",width:\"100%\",zFckocJVv:resolvedLinks3[0]})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-NLUOP { background: white; }`,\".framer-NLUOP.framer-lux5qc, .framer-NLUOP .framer-lux5qc { display: block; }\",\".framer-NLUOP.framer-72rtr7 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-NLUOP .framer-hk78fi-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-NLUOP .framer-1gok2ng { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 100vh; justify-content: center; overflow: visible; padding: 250px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-NLUOP .framer-14eaisg, .framer-NLUOP .framer-ig6b52, .framer-NLUOP .framer-i8daom, .framer-NLUOP .framer-1pqwtz8, .framer-NLUOP .framer-h5e5fk, .framer-NLUOP .framer-1psti3a, .framer-NLUOP .framer-1k3yvj4 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1356px; overflow: visible; padding: 0px 30px 0px 30px; position: relative; width: 1px; z-index: 2; }\",\".framer-NLUOP .framer-cochae { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 45px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-NLUOP .framer-54ut17 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 518px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NLUOP .framer-1uiravn { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; max-width: 466px; min-height: 72px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-NLUOP .framer-1mv9kg6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-NLUOP .framer-1m4kkcc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; min-height: 32px; overflow: visible; padding: 0px; position: relative; width: 150px; }\",\".framer-NLUOP .framer-1qq4j3h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-NLUOP .framer-avmp6 { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 60px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 60px; }\",\".framer-NLUOP .framer-13gap9c { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 60px); justify-content: center; left: 40px; overflow: visible; padding: 0px; position: absolute; top: 0px; width: 60px; z-index: 1; }\",\".framer-NLUOP .framer-1idebgm { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 60px); justify-content: center; left: 80px; overflow: visible; padding: 0px; position: absolute; top: 0px; width: 60px; z-index: 1; }\",\".framer-NLUOP .framer-s45gcd { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1170px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NLUOP .framer-1f01koe { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NLUOP .framer-1g0bz3w, .framer-NLUOP .framer-1g57ttc { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-NLUOP .framer-hwpqj { align-content: flex-start; align-items: flex-start; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; left: 0px; overflow: visible; padding: 0px; position: absolute; width: min-content; z-index: 1; }\",\".framer-NLUOP .framer-11a8de3-container, .framer-NLUOP .framer-vhy9vr-container, .framer-NLUOP .framer-1h03e1r-container, .framer-NLUOP .framer-qlsj2b-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-NLUOP .framer-mopekn { flex: none; height: 100%; left: 0px; overflow: visible; position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-NLUOP .framer-kdgf2i-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-NLUOP .framer-8uu8qh { background-color: #212b42; flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); opacity: 0.24; overflow: hidden; position: absolute; top: calc(49.87500000000003% - 100% / 2); width: 100%; }\",\".framer-NLUOP .framer-1227k3i { align-content: center; align-items: center; background-color: var(--token-067c0918-2ad9-4059-865a-f4376c24c4c9, #141511); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 40px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-NLUOP .framer-18lf9tc { align-content: flex-start; align-items: flex-start; background-color: #141511; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-NLUOP .framer-7se9ai { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 72px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 48%; }\",\".framer-NLUOP .framer-1tug7a3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NLUOP .framer-1lx82gv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NLUOP .framer-1o43j99, .framer-NLUOP .framer-wjgflo, .framer-NLUOP .framer-1pkf9s8, .framer-NLUOP .framer-l07vyr, .framer-NLUOP .framer-em03xg, .framer-NLUOP .framer-cb5kuc, .framer-NLUOP .framer-1qi0qgf { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-NLUOP .framer-1u7mj3f { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 284px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NLUOP .framer-1d3o7ac-container, .framer-NLUOP .framer-k6o1oc-container, .framer-NLUOP .framer-z6zgr8-container, .framer-NLUOP .framer-kg5672-container, .framer-NLUOP .framer-6el640-container, .framer-NLUOP .framer-bcnp0-container, .framer-NLUOP .framer-5te95t-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-NLUOP .framer-1ysjbbs, .framer-NLUOP .framer-11axzt6 { background-color: var(--token-74d6b90c-8e85-4424-a547-3de55bd2be49, #3c3c3c); flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-NLUOP .framer-1s5cddz { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 136px 0px 0px 0px; position: absolute; right: 0px; top: 150px; width: 64%; z-index: 1; }\",\".framer-NLUOP .framer-1xmf6od { aspect-ratio: 1.1243169398907105 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 732px); overflow: visible; position: relative; width: 100%; }\",\".framer-NLUOP .framer-16le4uh { aspect-ratio: 0.9626485568760611 / 1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: var(--framer-aspect-ratio-supported, 589px); left: 42%; overflow: visible; position: absolute; top: 52%; transform: translate(-50%, -50%); width: 69%; }\",\".framer-NLUOP .framer-1oed25p { aspect-ratio: 0.9204545454545454 / 1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: var(--framer-aspect-ratio-supported, 616px); overflow: visible; position: absolute; right: 0px; top: 0px; width: 69%; }\",\".framer-NLUOP .framer-xnet6a { --framer-paragraph-spacing: 0px; bottom: 0px; flex: none; height: auto; position: absolute; right: 0px; white-space: pre; width: auto; z-index: 1; }\",\".framer-NLUOP .framer-xfih2 { align-content: center; align-items: center; background-color: var(--token-067c0918-2ad9-4059-865a-f4376c24c4c9, #141511); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 20px 0px 70px 0px; position: relative; width: 100%; }\",\".framer-NLUOP .framer-ft7cim { align-content: flex-start; align-items: flex-start; background-color: #141511; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 88px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-NLUOP .framer-olqbjl-container { flex: none; height: auto; position: relative; width: 44%; }\",\".framer-NLUOP .framer-1t3cpcy { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 48%; }\",\".framer-NLUOP .framer-1yubq9j { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NLUOP .framer-goptuw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NLUOP .framer-1igu94l { align-content: center; align-items: center; aspect-ratio: 1.6896551724137931 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 368px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NLUOP .framer-1if2n3y { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: 100%; position: relative; width: 100%; }\",\".framer-NLUOP .framer-1inlqa1, .framer-NLUOP .framer-1psy9h5, .framer-NLUOP .framer-vamcyf, .framer-NLUOP .framer-1vfy32u { align-content: center; align-items: center; background-color: var(--token-067c0918-2ad9-4059-865a-f4376c24c4c9, #141511); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 20px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-NLUOP .framer-wlhc57 { align-content: center; align-items: center; background-color: #141511; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-NLUOP .framer-rdzekc { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NLUOP .framer-1t87u22 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 48%; word-break: break-word; word-wrap: break-word; }\",\".framer-NLUOP .framer-dnyc8s { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 45%; word-break: break-word; word-wrap: break-word; }\",\".framer-NLUOP .framer-ds3ike { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-NLUOP .framer-1yx0nxo { align-content: flex-start; align-items: flex-start; background-color: #141511; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 88px; height: min-content; justify-content: center; overflow: visible; padding: 260px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-NLUOP .framer-dgv9pr { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; left: 0px; overflow: visible; padding: 0px; position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-NLUOP .framer-1lk7azs { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; max-width: 620px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-NLUOP .framer-584e6f { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 1; }\",\".framer-NLUOP .framer-4tw7np { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-NLUOP .framer-1p8woqx-container { flex: none; height: auto; position: relative; width: 31%; }\",\".framer-NLUOP .framer-ujqfmm { align-content: center; align-items: center; background-color: #141511; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-NLUOP .framer-xniqga, .framer-NLUOP .framer-mjb4w9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 70%; }\",\".framer-NLUOP .framer-1twnyx6, .framer-NLUOP .framer-1dnbeap { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NLUOP .framer-2zy4v1, .framer-NLUOP .framer-xoi4pb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NLUOP .framer-14j1zxd-container, .framer-NLUOP .framer-1bwo9vp-container, .framer-NLUOP .framer-dn8nyi-container, .framer-NLUOP .framer-1phabci-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-NLUOP .framer-1ldp1qg { align-content: center; align-items: center; background-color: #141511; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 54px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-NLUOP.framer-72rtr7, .framer-NLUOP .framer-1gok2ng, .framer-NLUOP .framer-14eaisg, .framer-NLUOP .framer-cochae, .framer-NLUOP .framer-54ut17, .framer-NLUOP .framer-1uiravn, .framer-NLUOP .framer-1mv9kg6, .framer-NLUOP .framer-1m4kkcc, .framer-NLUOP .framer-1qq4j3h, .framer-NLUOP .framer-avmp6, .framer-NLUOP .framer-13gap9c, .framer-NLUOP .framer-1idebgm, .framer-NLUOP .framer-s45gcd, .framer-NLUOP .framer-1f01koe, .framer-NLUOP .framer-hwpqj, .framer-NLUOP .framer-1227k3i, .framer-NLUOP .framer-ig6b52, .framer-NLUOP .framer-18lf9tc, .framer-NLUOP .framer-7se9ai, .framer-NLUOP .framer-1tug7a3, .framer-NLUOP .framer-1lx82gv, .framer-NLUOP .framer-1u7mj3f, .framer-NLUOP .framer-1s5cddz, .framer-NLUOP .framer-xfih2, .framer-NLUOP .framer-i8daom, .framer-NLUOP .framer-ft7cim, .framer-NLUOP .framer-1t3cpcy, .framer-NLUOP .framer-1yubq9j, .framer-NLUOP .framer-goptuw, .framer-NLUOP .framer-1igu94l, .framer-NLUOP .framer-1inlqa1, .framer-NLUOP .framer-1pqwtz8, .framer-NLUOP .framer-wlhc57, .framer-NLUOP .framer-ds3ike, .framer-NLUOP .framer-1psy9h5, .framer-NLUOP .framer-h5e5fk, .framer-NLUOP .framer-1yx0nxo, .framer-NLUOP .framer-4tw7np, .framer-NLUOP .framer-vamcyf, .framer-NLUOP .framer-1psti3a, .framer-NLUOP .framer-ujqfmm, .framer-NLUOP .framer-xniqga, .framer-NLUOP .framer-1twnyx6, .framer-NLUOP .framer-2zy4v1, .framer-NLUOP .framer-1vfy32u, .framer-NLUOP .framer-1k3yvj4, .framer-NLUOP .framer-1ldp1qg, .framer-NLUOP .framer-mjb4w9, .framer-NLUOP .framer-1dnbeap, .framer-NLUOP .framer-xoi4pb { gap: 0px; } .framer-NLUOP.framer-72rtr7 > *, .framer-NLUOP .framer-s45gcd > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-NLUOP.framer-72rtr7 > :first-child, .framer-NLUOP .framer-cochae > :first-child, .framer-NLUOP .framer-1uiravn > :first-child, .framer-NLUOP .framer-1m4kkcc > :first-child, .framer-NLUOP .framer-s45gcd > :first-child, .framer-NLUOP .framer-7se9ai > :first-child, .framer-NLUOP .framer-1tug7a3 > :first-child, .framer-NLUOP .framer-1lx82gv > :first-child, .framer-NLUOP .framer-1u7mj3f > :first-child, .framer-NLUOP .framer-1s5cddz > :first-child, .framer-NLUOP .framer-1t3cpcy > :first-child, .framer-NLUOP .framer-1yubq9j > :first-child, .framer-NLUOP .framer-goptuw > :first-child, .framer-NLUOP .framer-1igu94l > :first-child, .framer-NLUOP .framer-wlhc57 > :first-child, .framer-NLUOP .framer-ds3ike > :first-child, .framer-NLUOP .framer-1yx0nxo > :first-child, .framer-NLUOP .framer-ujqfmm > :first-child, .framer-NLUOP .framer-xniqga > :first-child, .framer-NLUOP .framer-1twnyx6 > :first-child, .framer-NLUOP .framer-1ldp1qg > :first-child, .framer-NLUOP .framer-mjb4w9 > :first-child, .framer-NLUOP .framer-1dnbeap > :first-child { margin-top: 0px; } .framer-NLUOP.framer-72rtr7 > :last-child, .framer-NLUOP .framer-cochae > :last-child, .framer-NLUOP .framer-1uiravn > :last-child, .framer-NLUOP .framer-1m4kkcc > :last-child, .framer-NLUOP .framer-s45gcd > :last-child, .framer-NLUOP .framer-7se9ai > :last-child, .framer-NLUOP .framer-1tug7a3 > :last-child, .framer-NLUOP .framer-1lx82gv > :last-child, .framer-NLUOP .framer-1u7mj3f > :last-child, .framer-NLUOP .framer-1s5cddz > :last-child, .framer-NLUOP .framer-1t3cpcy > :last-child, .framer-NLUOP .framer-1yubq9j > :last-child, .framer-NLUOP .framer-goptuw > :last-child, .framer-NLUOP .framer-1igu94l > :last-child, .framer-NLUOP .framer-wlhc57 > :last-child, .framer-NLUOP .framer-ds3ike > :last-child, .framer-NLUOP .framer-1yx0nxo > :last-child, .framer-NLUOP .framer-ujqfmm > :last-child, .framer-NLUOP .framer-xniqga > :last-child, .framer-NLUOP .framer-1twnyx6 > :last-child, .framer-NLUOP .framer-1ldp1qg > :last-child, .framer-NLUOP .framer-mjb4w9 > :last-child, .framer-NLUOP .framer-1dnbeap > :last-child { margin-bottom: 0px; } .framer-NLUOP .framer-1gok2ng > *, .framer-NLUOP .framer-1227k3i > *, .framer-NLUOP .framer-18lf9tc > *, .framer-NLUOP .framer-xfih2 > *, .framer-NLUOP .framer-1inlqa1 > *, .framer-NLUOP .framer-1psy9h5 > *, .framer-NLUOP .framer-vamcyf > *, .framer-NLUOP .framer-1vfy32u > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-NLUOP .framer-1gok2ng > :first-child, .framer-NLUOP .framer-14eaisg > :first-child, .framer-NLUOP .framer-54ut17 > :first-child, .framer-NLUOP .framer-1mv9kg6 > :first-child, .framer-NLUOP .framer-1qq4j3h > :first-child, .framer-NLUOP .framer-avmp6 > :first-child, .framer-NLUOP .framer-13gap9c > :first-child, .framer-NLUOP .framer-1idebgm > :first-child, .framer-NLUOP .framer-1f01koe > :first-child, .framer-NLUOP .framer-hwpqj > :first-child, .framer-NLUOP .framer-1227k3i > :first-child, .framer-NLUOP .framer-ig6b52 > :first-child, .framer-NLUOP .framer-18lf9tc > :first-child, .framer-NLUOP .framer-xfih2 > :first-child, .framer-NLUOP .framer-i8daom > :first-child, .framer-NLUOP .framer-ft7cim > :first-child, .framer-NLUOP .framer-1inlqa1 > :first-child, .framer-NLUOP .framer-1pqwtz8 > :first-child, .framer-NLUOP .framer-1psy9h5 > :first-child, .framer-NLUOP .framer-h5e5fk > :first-child, .framer-NLUOP .framer-4tw7np > :first-child, .framer-NLUOP .framer-vamcyf > :first-child, .framer-NLUOP .framer-1psti3a > :first-child, .framer-NLUOP .framer-2zy4v1 > :first-child, .framer-NLUOP .framer-1vfy32u > :first-child, .framer-NLUOP .framer-1k3yvj4 > :first-child, .framer-NLUOP .framer-xoi4pb > :first-child { margin-left: 0px; } .framer-NLUOP .framer-1gok2ng > :last-child, .framer-NLUOP .framer-14eaisg > :last-child, .framer-NLUOP .framer-54ut17 > :last-child, .framer-NLUOP .framer-1mv9kg6 > :last-child, .framer-NLUOP .framer-1qq4j3h > :last-child, .framer-NLUOP .framer-avmp6 > :last-child, .framer-NLUOP .framer-13gap9c > :last-child, .framer-NLUOP .framer-1idebgm > :last-child, .framer-NLUOP .framer-1f01koe > :last-child, .framer-NLUOP .framer-hwpqj > :last-child, .framer-NLUOP .framer-1227k3i > :last-child, .framer-NLUOP .framer-ig6b52 > :last-child, .framer-NLUOP .framer-18lf9tc > :last-child, .framer-NLUOP .framer-xfih2 > :last-child, .framer-NLUOP .framer-i8daom > :last-child, .framer-NLUOP .framer-ft7cim > :last-child, .framer-NLUOP .framer-1inlqa1 > :last-child, .framer-NLUOP .framer-1pqwtz8 > :last-child, .framer-NLUOP .framer-1psy9h5 > :last-child, .framer-NLUOP .framer-h5e5fk > :last-child, .framer-NLUOP .framer-4tw7np > :last-child, .framer-NLUOP .framer-vamcyf > :last-child, .framer-NLUOP .framer-1psti3a > :last-child, .framer-NLUOP .framer-2zy4v1 > :last-child, .framer-NLUOP .framer-1vfy32u > :last-child, .framer-NLUOP .framer-1k3yvj4 > :last-child, .framer-NLUOP .framer-xoi4pb > :last-child { margin-right: 0px; } .framer-NLUOP .framer-14eaisg > *, .framer-NLUOP .framer-avmp6 > *, .framer-NLUOP .framer-13gap9c > *, .framer-NLUOP .framer-1idebgm > *, .framer-NLUOP .framer-ig6b52 > *, .framer-NLUOP .framer-i8daom > *, .framer-NLUOP .framer-1pqwtz8 > *, .framer-NLUOP .framer-h5e5fk > *, .framer-NLUOP .framer-1psti3a > *, .framer-NLUOP .framer-1k3yvj4 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-NLUOP .framer-cochae > * { margin: 0px; margin-bottom: calc(45px / 2); margin-top: calc(45px / 2); } .framer-NLUOP .framer-54ut17 > * { margin: 0px; margin-left: calc(518px / 2); margin-right: calc(518px / 2); } .framer-NLUOP .framer-1uiravn > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-NLUOP .framer-1mv9kg6 > * { margin: 0px; margin-left: calc(18px / 2); margin-right: calc(18px / 2); } .framer-NLUOP .framer-1m4kkcc > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } .framer-NLUOP .framer-1qq4j3h > * { margin: 0px; margin-left: calc(-18px / 2); margin-right: calc(-18px / 2); } .framer-NLUOP .framer-1f01koe > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-NLUOP .framer-hwpqj > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-NLUOP .framer-7se9ai > * { margin: 0px; margin-bottom: calc(72px / 2); margin-top: calc(72px / 2); } .framer-NLUOP .framer-1tug7a3 > *, .framer-NLUOP .framer-1u7mj3f > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-NLUOP .framer-1lx82gv > *, .framer-NLUOP .framer-ujqfmm > *, .framer-NLUOP .framer-xniqga > *, .framer-NLUOP .framer-mjb4w9 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-NLUOP .framer-1s5cddz > * { margin: 0px; margin-bottom: calc(-32px / 2); margin-top: calc(-32px / 2); } .framer-NLUOP .framer-ft7cim > * { margin: 0px; margin-left: calc(88px / 2); margin-right: calc(88px / 2); } .framer-NLUOP .framer-1t3cpcy > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-NLUOP .framer-1yubq9j > *, .framer-NLUOP .framer-1igu94l > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-NLUOP .framer-goptuw > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-NLUOP .framer-wlhc57 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-NLUOP .framer-ds3ike > *, .framer-NLUOP .framer-1twnyx6 > *, .framer-NLUOP .framer-1dnbeap > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-NLUOP .framer-1yx0nxo > * { margin: 0px; margin-bottom: calc(88px / 2); margin-top: calc(88px / 2); } .framer-NLUOP .framer-4tw7np > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-NLUOP .framer-2zy4v1 > *, .framer-NLUOP .framer-xoi4pb > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-NLUOP .framer-1ldp1qg > * { margin: 0px; margin-bottom: calc(54px / 2); margin-top: calc(54px / 2); } }\",\"@media (min-width: 1440px) { .framer-NLUOP .hidden-72rtr7 { display: none !important; } }\",`@media (min-width: 992px) and (max-width: 1439px) { .framer-NLUOP .hidden-1pghls8 { display: none !important; } .${metadata.bodyClassName}-framer-NLUOP { background: white; } .framer-NLUOP.framer-72rtr7 { width: 992px; } .framer-NLUOP .framer-1gok2ng { height: min-content; } .framer-NLUOP .framer-14eaisg, .framer-NLUOP .framer-ig6b52, .framer-NLUOP .framer-i8daom, .framer-NLUOP .framer-1pqwtz8, .framer-NLUOP .framer-h5e5fk, .framer-NLUOP .framer-1psti3a, .framer-NLUOP .framer-1k3yvj4 { max-width: 1000px; } .framer-NLUOP .framer-54ut17 { gap: 20px; justify-content: center; } .framer-NLUOP .framer-1uiravn { max-width: unset; } .framer-NLUOP .framer-1mv9kg6 { flex: 1 0 0px; justify-content: center; width: 1px; } .framer-NLUOP .framer-s45gcd { align-content: flex-start; align-items: flex-start; gap: 17px; } .framer-NLUOP .framer-1f01koe { align-content: flex-start; align-items: flex-start; order: 0; } .framer-NLUOP .framer-hwpqj { bottom: unset; left: unset; order: 2; position: relative; } .framer-NLUOP .framer-1g57ttc { order: 1; z-index: 1; } .framer-NLUOP .framer-1227k3i, .framer-NLUOP .framer-xfih2 { padding: 20px 0px 20px 0px; } .framer-NLUOP .framer-7se9ai { gap: 60px; width: 66%; } .framer-NLUOP .framer-1s5cddz { padding: 100px 0px 0px 0px; width: 66%; } .framer-NLUOP .framer-1xmf6od { height: var(--framer-aspect-ratio-supported, 548px); } .framer-NLUOP .framer-16le4uh { height: var(--framer-aspect-ratio-supported, 440px); } .framer-NLUOP .framer-1oed25p { height: var(--framer-aspect-ratio-supported, 461px); } .framer-NLUOP .framer-ft7cim { gap: 40px; } .framer-NLUOP .framer-olqbjl-container { flex: 1 0 0px; width: 1px; } .framer-NLUOP .framer-1pkf9s8 { white-space: pre; width: auto; } .framer-NLUOP .framer-1igu94l { height: var(--framer-aspect-ratio-supported, 265px); } .framer-NLUOP .framer-1t87u22 { flex: 1 0 0px; order: 0; width: 1px; } .framer-NLUOP .framer-dnyc8s { order: 1; width: 49%; } .framer-NLUOP .framer-1yx0nxo { gap: 40px; padding: 171px 0px 0px 0px; } .framer-NLUOP .framer-ujqfmm { gap: 22px; } .framer-NLUOP .framer-xniqga, .framer-NLUOP .framer-mjb4w9 { width: 95%; } .framer-NLUOP .framer-1ldp1qg { gap: 20px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-NLUOP .framer-54ut17, .framer-NLUOP .framer-s45gcd, .framer-NLUOP .framer-7se9ai, .framer-NLUOP .framer-ft7cim, .framer-NLUOP .framer-1yx0nxo, .framer-NLUOP .framer-ujqfmm, .framer-NLUOP .framer-1ldp1qg { gap: 0px; } .framer-NLUOP .framer-54ut17 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-NLUOP .framer-54ut17 > :first-child, .framer-NLUOP .framer-ft7cim > :first-child { margin-left: 0px; } .framer-NLUOP .framer-54ut17 > :last-child, .framer-NLUOP .framer-ft7cim > :last-child { margin-right: 0px; } .framer-NLUOP .framer-s45gcd > * { margin: 0px; margin-bottom: calc(17px / 2); margin-top: calc(17px / 2); } .framer-NLUOP .framer-s45gcd > :first-child, .framer-NLUOP .framer-7se9ai > :first-child, .framer-NLUOP .framer-1yx0nxo > :first-child, .framer-NLUOP .framer-ujqfmm > :first-child, .framer-NLUOP .framer-1ldp1qg > :first-child { margin-top: 0px; } .framer-NLUOP .framer-s45gcd > :last-child, .framer-NLUOP .framer-7se9ai > :last-child, .framer-NLUOP .framer-1yx0nxo > :last-child, .framer-NLUOP .framer-ujqfmm > :last-child, .framer-NLUOP .framer-1ldp1qg > :last-child { margin-bottom: 0px; } .framer-NLUOP .framer-7se9ai > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-NLUOP .framer-ft7cim > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-NLUOP .framer-1yx0nxo > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-NLUOP .framer-ujqfmm > * { margin: 0px; margin-bottom: calc(22px / 2); margin-top: calc(22px / 2); } .framer-NLUOP .framer-1ldp1qg > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }}`,`@media (min-width: 720px) and (max-width: 991px) { .framer-NLUOP .hidden-1g5wzjt { display: none !important; } .${metadata.bodyClassName}-framer-NLUOP { background: white; } .framer-NLUOP.framer-72rtr7 { width: 720px; } .framer-NLUOP .framer-hk78fi-container { position: absolute; } .framer-NLUOP .framer-1gok2ng { height: min-content; } .framer-NLUOP .framer-14eaisg, .framer-NLUOP .framer-ig6b52, .framer-NLUOP .framer-i8daom, .framer-NLUOP .framer-1pqwtz8, .framer-NLUOP .framer-h5e5fk, .framer-NLUOP .framer-1psti3a, .framer-NLUOP .framer-1k3yvj4 { max-width: 720px; padding: 0px 24px 0px 24px; } .framer-NLUOP .framer-cochae { align-content: center; align-items: center; justify-content: center; } .framer-NLUOP .framer-54ut17 { align-content: center; align-items: center; flex-direction: column; gap: 40px; justify-content: center; order: 1; } .framer-NLUOP .framer-1uiravn { align-content: center; align-items: center; flex: none; order: 0; width: 100%; } .framer-NLUOP .framer-1mv9kg6 { flex-direction: column; justify-content: center; order: 1; width: 100%; } .framer-NLUOP .framer-1qq4j3h { width: 140px; } .framer-NLUOP .framer-s45gcd { align-content: center; align-items: center; gap: 10px; order: 0; } .framer-NLUOP .framer-1f01koe { flex-direction: column; gap: 10px; order: 0; } .framer-NLUOP .framer-hwpqj { bottom: unset; left: unset; order: 2; padding: 30px 0px 0px 0px; position: relative; } .framer-NLUOP .framer-1g57ttc, .framer-NLUOP .framer-xnet6a { order: 1; } .framer-NLUOP .framer-1227k3i { padding: 80px 0px 0px 0px; } .framer-NLUOP .framer-18lf9tc { align-content: center; align-items: center; flex-direction: column; gap: 40px; justify-content: center; } .framer-NLUOP .framer-7se9ai { align-content: center; align-items: center; gap: 30px; order: 1; width: 100%; } .framer-NLUOP .framer-1tug7a3 { align-content: center; align-items: center; gap: 24px; justify-content: center; width: 470px; } .framer-NLUOP .framer-1lx82gv { align-content: center; align-items: center; gap: 16px; justify-content: center; } .framer-NLUOP .framer-1u7mj3f { align-content: center; align-items: center; flex-direction: row; flex-wrap: wrap; gap: 24px; justify-content: center; max-width: unset; } .framer-NLUOP .framer-1d3o7ac-container, .framer-NLUOP .framer-k6o1oc-container, .framer-NLUOP .framer-z6zgr8-container { width: 38%; } .framer-NLUOP .framer-1s5cddz { order: 0; padding: 0px; position: relative; right: unset; top: unset; width: 56%; } .framer-NLUOP .framer-1xmf6od { height: var(--framer-aspect-ratio-supported, 335px); order: 0; } .framer-NLUOP .framer-16le4uh { height: var(--framer-aspect-ratio-supported, 269px); } .framer-NLUOP .framer-1oed25p { height: var(--framer-aspect-ratio-supported, 282px); } .framer-NLUOP .framer-xfih2 { padding: 70px 0px 0px 0px; } .framer-NLUOP .framer-ft7cim { flex-direction: column; gap: 40px; } .framer-NLUOP .framer-olqbjl-container { order: 1; width: 100%; } .framer-NLUOP .framer-1t3cpcy { gap: 40px; order: 0; padding: 0px 40px 0px 40px; width: 100%; } .framer-NLUOP .framer-1yubq9j { align-content: center; align-items: center; gap: 24px; justify-content: center; } .framer-NLUOP .framer-goptuw { justify-content: center; } .framer-NLUOP .framer-1igu94l { height: var(--framer-aspect-ratio-supported, 351px); } .framer-NLUOP .framer-1inlqa1, .framer-NLUOP .framer-1psy9h5, .framer-NLUOP .framer-vamcyf, .framer-NLUOP .framer-1vfy32u { padding: 20px 0px 0px 0px; } .framer-NLUOP .framer-wlhc57, .framer-NLUOP .framer-ujqfmm, .framer-NLUOP .framer-1twnyx6, .framer-NLUOP .framer-1ldp1qg, .framer-NLUOP .framer-1dnbeap { gap: 40px; } .framer-NLUOP .framer-rdzekc { align-content: center; align-items: center; flex-direction: column; gap: 16px; justify-content: center; width: 81%; } .framer-NLUOP .framer-1t87u22, .framer-NLUOP .framer-dnyc8s { width: 100%; } .framer-NLUOP .framer-ds3ike { gap: 30px; } .framer-NLUOP .framer-1yx0nxo { gap: 40px; padding: 0px; } .framer-NLUOP .framer-dgv9pr { left: unset; order: 0; position: relative; top: unset; } .framer-NLUOP .framer-1lk7azs { flex: none; max-width: unset; white-space: pre; width: auto; } .framer-NLUOP .framer-4tw7np { flex-wrap: wrap; justify-content: center; order: 1; } .framer-NLUOP .framer-1p8woqx-container { width: 47%; } .framer-NLUOP .framer-xniqga, .framer-NLUOP .framer-mjb4w9 { gap: 14px; width: 100%; } .framer-NLUOP .framer-2zy4v1, .framer-NLUOP .framer-xoi4pb { align-content: center; align-items: center; flex-direction: column; justify-content: center; width: 91%; } .framer-NLUOP .framer-14j1zxd-container, .framer-NLUOP .framer-1bwo9vp-container, .framer-NLUOP .framer-dn8nyi-container, .framer-NLUOP .framer-1phabci-container { flex: none; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-NLUOP .framer-54ut17, .framer-NLUOP .framer-1mv9kg6, .framer-NLUOP .framer-s45gcd, .framer-NLUOP .framer-1f01koe, .framer-NLUOP .framer-18lf9tc, .framer-NLUOP .framer-7se9ai, .framer-NLUOP .framer-1tug7a3, .framer-NLUOP .framer-1lx82gv, .framer-NLUOP .framer-1u7mj3f, .framer-NLUOP .framer-ft7cim, .framer-NLUOP .framer-1t3cpcy, .framer-NLUOP .framer-1yubq9j, .framer-NLUOP .framer-wlhc57, .framer-NLUOP .framer-rdzekc, .framer-NLUOP .framer-ds3ike, .framer-NLUOP .framer-1yx0nxo, .framer-NLUOP .framer-ujqfmm, .framer-NLUOP .framer-xniqga, .framer-NLUOP .framer-1twnyx6, .framer-NLUOP .framer-2zy4v1, .framer-NLUOP .framer-1ldp1qg, .framer-NLUOP .framer-mjb4w9, .framer-NLUOP .framer-1dnbeap, .framer-NLUOP .framer-xoi4pb { gap: 0px; } .framer-NLUOP .framer-54ut17 > *, .framer-NLUOP .framer-18lf9tc > *, .framer-NLUOP .framer-ft7cim > *, .framer-NLUOP .framer-1t3cpcy > *, .framer-NLUOP .framer-wlhc57 > *, .framer-NLUOP .framer-1yx0nxo > *, .framer-NLUOP .framer-ujqfmm > *, .framer-NLUOP .framer-1twnyx6 > *, .framer-NLUOP .framer-1ldp1qg > *, .framer-NLUOP .framer-1dnbeap > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-NLUOP .framer-54ut17 > :first-child, .framer-NLUOP .framer-1mv9kg6 > :first-child, .framer-NLUOP .framer-s45gcd > :first-child, .framer-NLUOP .framer-1f01koe > :first-child, .framer-NLUOP .framer-18lf9tc > :first-child, .framer-NLUOP .framer-7se9ai > :first-child, .framer-NLUOP .framer-1tug7a3 > :first-child, .framer-NLUOP .framer-1lx82gv > :first-child, .framer-NLUOP .framer-ft7cim > :first-child, .framer-NLUOP .framer-1t3cpcy > :first-child, .framer-NLUOP .framer-1yubq9j > :first-child, .framer-NLUOP .framer-wlhc57 > :first-child, .framer-NLUOP .framer-rdzekc > :first-child, .framer-NLUOP .framer-ds3ike > :first-child, .framer-NLUOP .framer-1yx0nxo > :first-child, .framer-NLUOP .framer-ujqfmm > :first-child, .framer-NLUOP .framer-xniqga > :first-child, .framer-NLUOP .framer-1twnyx6 > :first-child, .framer-NLUOP .framer-2zy4v1 > :first-child, .framer-NLUOP .framer-1ldp1qg > :first-child, .framer-NLUOP .framer-mjb4w9 > :first-child, .framer-NLUOP .framer-1dnbeap > :first-child, .framer-NLUOP .framer-xoi4pb > :first-child { margin-top: 0px; } .framer-NLUOP .framer-54ut17 > :last-child, .framer-NLUOP .framer-1mv9kg6 > :last-child, .framer-NLUOP .framer-s45gcd > :last-child, .framer-NLUOP .framer-1f01koe > :last-child, .framer-NLUOP .framer-18lf9tc > :last-child, .framer-NLUOP .framer-7se9ai > :last-child, .framer-NLUOP .framer-1tug7a3 > :last-child, .framer-NLUOP .framer-1lx82gv > :last-child, .framer-NLUOP .framer-ft7cim > :last-child, .framer-NLUOP .framer-1t3cpcy > :last-child, .framer-NLUOP .framer-1yubq9j > :last-child, .framer-NLUOP .framer-wlhc57 > :last-child, .framer-NLUOP .framer-rdzekc > :last-child, .framer-NLUOP .framer-ds3ike > :last-child, .framer-NLUOP .framer-1yx0nxo > :last-child, .framer-NLUOP .framer-ujqfmm > :last-child, .framer-NLUOP .framer-xniqga > :last-child, .framer-NLUOP .framer-1twnyx6 > :last-child, .framer-NLUOP .framer-2zy4v1 > :last-child, .framer-NLUOP .framer-1ldp1qg > :last-child, .framer-NLUOP .framer-mjb4w9 > :last-child, .framer-NLUOP .framer-1dnbeap > :last-child, .framer-NLUOP .framer-xoi4pb > :last-child { margin-bottom: 0px; } .framer-NLUOP .framer-1mv9kg6 > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-NLUOP .framer-s45gcd > *, .framer-NLUOP .framer-1f01koe > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-NLUOP .framer-7se9ai > *, .framer-NLUOP .framer-ds3ike > *, .framer-NLUOP .framer-2zy4v1 > *, .framer-NLUOP .framer-xoi4pb > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-NLUOP .framer-1tug7a3 > *, .framer-NLUOP .framer-1yubq9j > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-NLUOP .framer-1lx82gv > *, .framer-NLUOP .framer-rdzekc > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-NLUOP .framer-1u7mj3f > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-NLUOP .framer-1u7mj3f > :first-child { margin-left: 0px; } .framer-NLUOP .framer-1u7mj3f > :last-child { margin-right: 0px; } .framer-NLUOP .framer-xniqga > *, .framer-NLUOP .framer-mjb4w9 > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } }}`,`@media (max-width: 719px) { .framer-NLUOP .hidden-12bjqv1 { display: none !important; } .${metadata.bodyClassName}-framer-NLUOP { background: white; } .framer-NLUOP.framer-72rtr7 { width: 390px; } .framer-NLUOP .framer-hk78fi-container { position: absolute; } .framer-NLUOP .framer-1gok2ng { flex-direction: column; height: min-content; padding: 160px 0px 80px 0px; } .framer-NLUOP .framer-14eaisg, .framer-NLUOP .framer-ig6b52, .framer-NLUOP .framer-i8daom, .framer-NLUOP .framer-1pqwtz8, .framer-NLUOP .framer-h5e5fk, .framer-NLUOP .framer-1psti3a, .framer-NLUOP .framer-1k3yvj4 { flex: none; max-width: 520px; padding: 0px 24px 0px 24px; width: 100%; } .framer-NLUOP .framer-cochae { align-content: center; align-items: center; gap: 30px; justify-content: center; } .framer-NLUOP .framer-54ut17 { align-content: center; align-items: center; flex-direction: column; gap: 30px; justify-content: center; order: 1; } .framer-NLUOP .framer-1uiravn, .framer-NLUOP .framer-1lk7azs, .framer-NLUOP .framer-14j1zxd-container, .framer-NLUOP .framer-1bwo9vp-container, .framer-NLUOP .framer-dn8nyi-container, .framer-NLUOP .framer-1phabci-container { flex: none; width: 100%; } .framer-NLUOP .framer-1mv9kg6 { flex-direction: column; justify-content: center; } .framer-NLUOP .framer-1qq4j3h { align-content: flex-start; align-items: flex-start; width: 140px; } .framer-NLUOP .framer-s45gcd { align-content: center; align-items: center; order: 0; } .framer-NLUOP .framer-1f01koe { flex-direction: column; order: 0; } .framer-NLUOP .framer-hwpqj { align-content: center; align-items: center; bottom: unset; flex-wrap: wrap; justify-content: center; left: unset; order: 2; padding: 20px 0px 0px 0px; position: relative; width: 100%; } .framer-NLUOP .framer-1g57ttc { order: 1; } .framer-NLUOP .framer-1227k3i { flex-direction: column; padding: 60px 0px 0px 0px; } .framer-NLUOP .framer-18lf9tc { align-content: center; align-items: center; flex-direction: column; gap: 30px; justify-content: center; max-width: 400px; } .framer-NLUOP .framer-7se9ai { align-content: center; align-items: center; gap: 30px; order: 1; width: 100%; } .framer-NLUOP .framer-1tug7a3, .framer-NLUOP .framer-1yubq9j { align-content: center; align-items: center; gap: 24px; justify-content: center; } .framer-NLUOP .framer-1lx82gv { align-content: center; align-items: center; gap: 12px; justify-content: center; } .framer-NLUOP .framer-1u7mj3f { align-content: center; align-items: center; gap: 24px; justify-content: center; max-width: unset; } .framer-NLUOP .framer-1s5cddz { order: 0; padding: 0px; position: relative; right: unset; top: unset; width: 100%; } .framer-NLUOP .framer-1xmf6od { height: var(--framer-aspect-ratio-supported, 305px); } .framer-NLUOP .framer-16le4uh { height: var(--framer-aspect-ratio-supported, 245px); } .framer-NLUOP .framer-1oed25p { height: var(--framer-aspect-ratio-supported, 256px); } .framer-NLUOP .framer-xfih2 { flex-direction: column; padding: 20px 0px 20px 0px; } .framer-NLUOP .framer-ft7cim { flex-direction: column; gap: 30px; } .framer-NLUOP .framer-olqbjl-container { order: 1; width: 100%; } .framer-NLUOP .framer-1t3cpcy { gap: 30px; order: 0; width: 100%; } .framer-NLUOP .framer-goptuw { gap: 14px; justify-content: center; } .framer-NLUOP .framer-1igu94l { height: var(--framer-aspect-ratio-supported, 203px); } .framer-NLUOP .framer-1inlqa1 { flex-direction: column; padding: 0px; } .framer-NLUOP .framer-wlhc57 { gap: 24px; max-width: 400px; } .framer-NLUOP .framer-rdzekc { align-content: center; align-items: center; flex-direction: column; gap: 14px; justify-content: center; } .framer-NLUOP .framer-1t87u22, .framer-NLUOP .framer-dnyc8s, .framer-NLUOP .framer-1p8woqx-container { width: 100%; } .framer-NLUOP .framer-ds3ike, .framer-NLUOP .framer-1twnyx6, .framer-NLUOP .framer-1dnbeap { gap: 30px; } .framer-NLUOP .framer-1psy9h5, .framer-NLUOP .framer-vamcyf, .framer-NLUOP .framer-1vfy32u { flex-direction: column; padding: 20px 0px 0px 0px; } .framer-NLUOP .framer-1yx0nxo { gap: 20px; max-width: 400px; padding: 0px; } .framer-NLUOP .framer-dgv9pr { align-content: center; align-items: center; flex-direction: column; gap: 6px; justify-content: center; left: unset; position: relative; top: unset; } .framer-NLUOP .framer-4tw7np { flex-direction: column; } .framer-NLUOP .framer-ujqfmm, .framer-NLUOP .framer-1ldp1qg { gap: 30px; max-width: 400px; } .framer-NLUOP .framer-xniqga, .framer-NLUOP .framer-mjb4w9 { gap: 12px; width: 100%; } .framer-NLUOP .framer-2zy4v1, .framer-NLUOP .framer-xoi4pb { align-content: center; align-items: center; flex-direction: column; justify-content: center; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-NLUOP .framer-1gok2ng, .framer-NLUOP .framer-cochae, .framer-NLUOP .framer-54ut17, .framer-NLUOP .framer-1mv9kg6, .framer-NLUOP .framer-1f01koe, .framer-NLUOP .framer-1227k3i, .framer-NLUOP .framer-18lf9tc, .framer-NLUOP .framer-7se9ai, .framer-NLUOP .framer-1tug7a3, .framer-NLUOP .framer-1lx82gv, .framer-NLUOP .framer-1u7mj3f, .framer-NLUOP .framer-xfih2, .framer-NLUOP .framer-ft7cim, .framer-NLUOP .framer-1t3cpcy, .framer-NLUOP .framer-1yubq9j, .framer-NLUOP .framer-goptuw, .framer-NLUOP .framer-1inlqa1, .framer-NLUOP .framer-wlhc57, .framer-NLUOP .framer-rdzekc, .framer-NLUOP .framer-ds3ike, .framer-NLUOP .framer-1psy9h5, .framer-NLUOP .framer-1yx0nxo, .framer-NLUOP .framer-dgv9pr, .framer-NLUOP .framer-4tw7np, .framer-NLUOP .framer-vamcyf, .framer-NLUOP .framer-ujqfmm, .framer-NLUOP .framer-xniqga, .framer-NLUOP .framer-1twnyx6, .framer-NLUOP .framer-2zy4v1, .framer-NLUOP .framer-1vfy32u, .framer-NLUOP .framer-1ldp1qg, .framer-NLUOP .framer-mjb4w9, .framer-NLUOP .framer-1dnbeap, .framer-NLUOP .framer-xoi4pb { gap: 0px; } .framer-NLUOP .framer-1gok2ng > *, .framer-NLUOP .framer-1227k3i > *, .framer-NLUOP .framer-xfih2 > *, .framer-NLUOP .framer-1inlqa1 > *, .framer-NLUOP .framer-1psy9h5 > *, .framer-NLUOP .framer-vamcyf > *, .framer-NLUOP .framer-1vfy32u > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-NLUOP .framer-1gok2ng > :first-child, .framer-NLUOP .framer-cochae > :first-child, .framer-NLUOP .framer-54ut17 > :first-child, .framer-NLUOP .framer-1mv9kg6 > :first-child, .framer-NLUOP .framer-1f01koe > :first-child, .framer-NLUOP .framer-1227k3i > :first-child, .framer-NLUOP .framer-18lf9tc > :first-child, .framer-NLUOP .framer-7se9ai > :first-child, .framer-NLUOP .framer-1tug7a3 > :first-child, .framer-NLUOP .framer-1lx82gv > :first-child, .framer-NLUOP .framer-1u7mj3f > :first-child, .framer-NLUOP .framer-xfih2 > :first-child, .framer-NLUOP .framer-ft7cim > :first-child, .framer-NLUOP .framer-1t3cpcy > :first-child, .framer-NLUOP .framer-1yubq9j > :first-child, .framer-NLUOP .framer-goptuw > :first-child, .framer-NLUOP .framer-1inlqa1 > :first-child, .framer-NLUOP .framer-wlhc57 > :first-child, .framer-NLUOP .framer-rdzekc > :first-child, .framer-NLUOP .framer-ds3ike > :first-child, .framer-NLUOP .framer-1psy9h5 > :first-child, .framer-NLUOP .framer-1yx0nxo > :first-child, .framer-NLUOP .framer-dgv9pr > :first-child, .framer-NLUOP .framer-4tw7np > :first-child, .framer-NLUOP .framer-vamcyf > :first-child, .framer-NLUOP .framer-ujqfmm > :first-child, .framer-NLUOP .framer-xniqga > :first-child, .framer-NLUOP .framer-1twnyx6 > :first-child, .framer-NLUOP .framer-2zy4v1 > :first-child, .framer-NLUOP .framer-1vfy32u > :first-child, .framer-NLUOP .framer-1ldp1qg > :first-child, .framer-NLUOP .framer-mjb4w9 > :first-child, .framer-NLUOP .framer-1dnbeap > :first-child, .framer-NLUOP .framer-xoi4pb > :first-child { margin-top: 0px; } .framer-NLUOP .framer-1gok2ng > :last-child, .framer-NLUOP .framer-cochae > :last-child, .framer-NLUOP .framer-54ut17 > :last-child, .framer-NLUOP .framer-1mv9kg6 > :last-child, .framer-NLUOP .framer-1f01koe > :last-child, .framer-NLUOP .framer-1227k3i > :last-child, .framer-NLUOP .framer-18lf9tc > :last-child, .framer-NLUOP .framer-7se9ai > :last-child, .framer-NLUOP .framer-1tug7a3 > :last-child, .framer-NLUOP .framer-1lx82gv > :last-child, .framer-NLUOP .framer-1u7mj3f > :last-child, .framer-NLUOP .framer-xfih2 > :last-child, .framer-NLUOP .framer-ft7cim > :last-child, .framer-NLUOP .framer-1t3cpcy > :last-child, .framer-NLUOP .framer-1yubq9j > :last-child, .framer-NLUOP .framer-goptuw > :last-child, .framer-NLUOP .framer-1inlqa1 > :last-child, .framer-NLUOP .framer-wlhc57 > :last-child, .framer-NLUOP .framer-rdzekc > :last-child, .framer-NLUOP .framer-ds3ike > :last-child, .framer-NLUOP .framer-1psy9h5 > :last-child, .framer-NLUOP .framer-1yx0nxo > :last-child, .framer-NLUOP .framer-dgv9pr > :last-child, .framer-NLUOP .framer-4tw7np > :last-child, .framer-NLUOP .framer-vamcyf > :last-child, .framer-NLUOP .framer-ujqfmm > :last-child, .framer-NLUOP .framer-xniqga > :last-child, .framer-NLUOP .framer-1twnyx6 > :last-child, .framer-NLUOP .framer-2zy4v1 > :last-child, .framer-NLUOP .framer-1vfy32u > :last-child, .framer-NLUOP .framer-1ldp1qg > :last-child, .framer-NLUOP .framer-mjb4w9 > :last-child, .framer-NLUOP .framer-1dnbeap > :last-child, .framer-NLUOP .framer-xoi4pb > :last-child { margin-bottom: 0px; } .framer-NLUOP .framer-cochae > *, .framer-NLUOP .framer-54ut17 > *, .framer-NLUOP .framer-18lf9tc > *, .framer-NLUOP .framer-7se9ai > *, .framer-NLUOP .framer-ft7cim > *, .framer-NLUOP .framer-1t3cpcy > *, .framer-NLUOP .framer-ds3ike > *, .framer-NLUOP .framer-ujqfmm > *, .framer-NLUOP .framer-1twnyx6 > *, .framer-NLUOP .framer-2zy4v1 > *, .framer-NLUOP .framer-1ldp1qg > *, .framer-NLUOP .framer-1dnbeap > *, .framer-NLUOP .framer-xoi4pb > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-NLUOP .framer-1mv9kg6 > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-NLUOP .framer-1f01koe > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-NLUOP .framer-1tug7a3 > *, .framer-NLUOP .framer-1u7mj3f > *, .framer-NLUOP .framer-1yubq9j > *, .framer-NLUOP .framer-wlhc57 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-NLUOP .framer-1lx82gv > *, .framer-NLUOP .framer-xniqga > *, .framer-NLUOP .framer-mjb4w9 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-NLUOP .framer-goptuw > *, .framer-NLUOP .framer-rdzekc > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-NLUOP .framer-1yx0nxo > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-NLUOP .framer-dgv9pr > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-NLUOP .framer-4tw7np > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7462\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"H9OdlCqyz\":{\"layout\":[\"fixed\",\"auto\"]},\"yjoBLSY0Q\":{\"layout\":[\"fixed\",\"auto\"]},\"FCahH7B4v\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-NLUOP\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:7462,width:1440};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Kanit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/kanit/v15/nKKU-Go6G5tXcr4uPiWlX6BJNUJy.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"}]},...PrimaryHeaderFonts,...UtilitiesButtonFonts,...VideoFonts,...WidgetStatsFonts,...SectionBrandFonts,...AccordionBlockFonts,...WidgetEventFonts,...CardMerchFonts,...CardTestimonialFonts,...SectionCTAFonts,...CommonFooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1440\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"7462\",\"framerDisplayContentsDiv\":\"false\",\"framerResponsiveScreen\":\"\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"H9OdlCqyz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"yjoBLSY0Q\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FCahH7B4v\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\"}},\"__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", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "progress", "objectFit", "backgroundColor", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "posterEnabled", "startTimeProp", "volume", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "startTime", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "groupsRegex", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "FeatherFonts", "getFonts", "Icon", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "numberToPixelString", "value", "transition1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "gap", "height", "id", "padding", "tap", "text", "title", "width", "props", "_ref", "_ref1", "_ref2", "_humanReadableVariantMap_props_variant", "_ref3", "_ref4", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "L38gO08gp", "sE9ZVMvNx", "z0XDLOYb7", "KZ6LxaPP3", "AS1lam7oT", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1gufi3z", "args", "onTapykhxhw", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "ComponentViewportProvider", "css", "FramerK7jytyP3Z", "withCSS", "K7jytyP3Z_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "AccordionButtonFonts", "getFonts", "K7jytyP3Z_default", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "animation", "transition1", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "gap", "height", "id", "padding", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "_ref1", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "Vaw8W5UQ0", "zQOUi09Jq", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "AS1lam7oT8og9vy", "args", "AS1lam7oTcoeoz3", "AS1lam7oTurr0cj", "AS1lam7oT79g84d", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "css", "FramerJmzrNNhAD", "withCSS", "JmzrNNhAD_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "stats", "text", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "GIbIEs3Wc", "xM8lvYtUG", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "u", "cx", "RichText2", "css", "FrameroY3EVjLdH", "withCSS", "oY3EVjLdH_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "PrimaryHeaderFonts", "getFonts", "UDLgsLtj6_default", "PrimaryHeaderWithVariantAppearEffect", "withVariantAppearEffect", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "RichTextWithOptimizedAppearEffect", "RichText2", "UtilitiesButtonFonts", "bR1UnZP02_default", "VideoFonts", "Video", "RichTextWithFX", "withFX", "ContainerWithFX", "Container", "WidgetStatsFonts", "oY3EVjLdH_default", "MotionDivWithFX", "ImageWithFX", "Image2", "SectionBrandFonts", "v1xXIRRYx_default", "AccordionBlockFonts", "JmzrNNhAD_default", "WidgetEventFonts", "S2TM3_VVw_default", "CardMerchFonts", "W9L5536Gg_default", "CardTestimonialFonts", "fMxqceoSZ_default", "SectionCTAFonts", "l_kK0OrLw_default", "CommonFooterFonts", "sJcBtaP1U_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "transition1", "animation", "animation1", "transition2", "animation2", "transition3", "animation3", "transition4", "animation4", "animation5", "animation6", "transition5", "animation7", "transition6", "animation8", "animation9", "transition7", "transition8", "transition9", "transition10", "transition11", "transition12", "transition13", "transition14", "animation10", "transition15", "transformTemplate2", "animation11", "transition16", "transition17", "transition18", "transition19", "transition20", "transition21", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "transition22", "addImageAlt", "image", "alt", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "grdv4AAyPGI0lFzz1F", "x2ZUeoxZmGI0lFzz1F", "ZZIS1Bt6eGI0lFzz1F", "fJzJooeAWGI0lFzz1F", "zgNfLVlgcGI0lFzz1F", "kLq3Jr7NMGI0lFzz1F", "zVhXPxMrwGI0lFzz1F", "HKnTG3YF7GI0lFzz1F", "idGI0lFzz1F", "zJTeZxqV3s6sIcEvg8", "YHMHemOm3s6sIcEvg8", "wHlMWpSZ2s6sIcEvg8", "qFwzoz3yMs6sIcEvg8", "ua6_ofYN7s6sIcEvg8", "HyCGMIbXDs6sIcEvg8", "ids6sIcEvg8", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "ref1", "pe", "ref2", "useRouteElementId", "router", "useRouter", "id1", "ref3", "isDisplayed", "id2", "ref4", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "ComponentViewportProvider", "Container", "PropertyOverrides2", "PrimaryHeaderWithVariantAppearEffect", "MotionDivWithOptimizedAppearEffect", "x", "RichTextWithOptimizedAppearEffect", "bR1UnZP02_default", "ResolveLinks", "resolvedLinks", "Video", "RichTextWithFX", "ContainerWithFX", "oY3EVjLdH_default", "MotionDivWithFX", "ImageWithFX", "Image2", "v1xXIRRYx_default", "JmzrNNhAD_default", "ChildrenCanSuspend", "onr60TfZX_default", "collection", "paginationInfo", "loadMore", "l", "i", "PathVariablesContext", "resolvedLinks1", "S2TM3_VVw_default", "Link", "yjhyl9KGE_default", "collection1", "paginationInfo1", "loadMore1", "resolvedLinks2", "W9L5536Gg_default", "fMxqceoSZ_default", "l_kK0OrLw_default", "resolvedLinks3", "sJcBtaP1U_default", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "PrimaryHeaderFonts", "UtilitiesButtonFonts", "VideoFonts", "WidgetStatsFonts", "SectionBrandFonts", "AccordionBlockFonts", "WidgetEventFonts", "CardMerchFonts", "CardTestimonialFonts", "SectionCTAFonts", "CommonFooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
