{"version":3,"file":"Rb7TaEcU4.CPwKD215.mjs","names":["getProps","Video","ObjectFitType","SrcType","Video","Phosphor","Video1","Image"],"sources":["https:/framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/zEmAposrjympIK2ybAcQ/Video.js","https:/framerusercontent.com/modules/bCLhYFDufTkqrMCHUGdg/elxGSTr8yndSHOAhsYap/Rb7TaEcU4.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 isPlayingRef=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks “Play”.\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 – if we’re 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’t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);const isCloseToViewport=isOnCanvas?false:useInView(videoRef,{margin:\"100px\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress,isPlaying}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);// 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’s because\n// `startTime` == start == changing it shouldn’t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn’t exist,\n// you might ask? Now, that’s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the “Start Time” in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don’t know, and it\n//   always supported it, so let’s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:autoplayBehavior===\"on-mount\",preload:isPlaying.current?\"auto\":autoplayBehavior!==\"on-mount\"&&posterEnabled&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";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};function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",placeholder:\"../example.mp4\",hidden(props){return props.srcType===\"Upload\";}},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\",description:\"We recommend adding a poster. [Learn more](http://framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},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\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"112\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map","// Generated by Framer (98479f1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,getPropertyControls,Image,Link,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Video as Video1}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/K0mI40rrezffFjPjHAZX/Video.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/zEmAposrjympIK2ybAcQ/Video.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";const VideoFonts=getFonts(Video);const PhosphorFonts=getFonts(Phosphor);const Video1Controls=getPropertyControls(Video1);const enabledGestures={OrIba5rHu:{hover:true}};const cycleOrder=[\"OrIba5rHu\",\"Oci5JEuQZ\",\"h_tmiDkZ9\",\"p3_fNkbgN\"];const serializationHash=\"framer-XFzYC\";const variantClassNames={h_tmiDkZ9:\"framer-v-fcgnsg\",Oci5JEuQZ:\"framer-v-1hev5si\",OrIba5rHu:\"framer-v-lxm9qi\",p3_fNkbgN:\"framer-v-11cvoko\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Image + Icon\":\"h_tmiDkZ9\",desktop:\"OrIba5rHu\",inverted:\"p3_fNkbgN\",mobile:\"Oci5JEuQZ\"};const getProps=({buttonTitle,height,id,image,link,logo,newTab,showImage,showVideo,video,videoFile,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4,_humanReadableVariantMap_props_variant,_ref5;return{...props,dQQtW2zsa:(_ref=showImage!==null&&showImage!==void 0?showImage:props.dQQtW2zsa)!==null&&_ref!==void 0?_ref:true,fl6owCh61:(_ref1=video!==null&&video!==void 0?video:props.fl6owCh61)!==null&&_ref1!==void 0?_ref1:\"Upload\",HKbP95jQO:(_ref2=buttonTitle!==null&&buttonTitle!==void 0?buttonTitle:props.HKbP95jQO)!==null&&_ref2!==void 0?_ref2:\"Menu\",kgJo1kxCj:(_ref3=showVideo!==null&&showVideo!==void 0?showVideo:props.kgJo1kxCj)!==null&&_ref3!==void 0?_ref3:true,kSvOYAIrC:(_ref4=logo!==null&&logo!==void 0?logo:props.kSvOYAIrC)!==null&&_ref4!==void 0?_ref4:{src:\"https://framerusercontent.com/images/fFM4CYaBWF87y27k0CsvVehFB5w.png\"},POrAwGjpZ:image!==null&&image!==void 0?image:props.POrAwGjpZ,TErhPYaei:link!==null&&link!==void 0?link:props.TErhPYaei,variant:(_ref5=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref5!==void 0?_ref5:\"OrIba5rHu\",WRXdKgqKL:newTab!==null&&newTab!==void 0?newTab:props.WRXdKgqKL,xxqp_pVI7:videoFile!==null&&videoFile!==void 0?videoFile:props.xxqp_pVI7};};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,HKbP95jQO,POrAwGjpZ,TErhPYaei,WRXdKgqKL,fl6owCh61,dQQtW2zsa,kgJo1kxCj,xxqp_pVI7,kSvOYAIrC,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"OrIba5rHu\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"h_tmiDkZ9\")return true;return false;};const isDisplayed1=value=>{if([\"Oci5JEuQZ\",\"h_tmiDkZ9\",\"p3_fNkbgN\"].includes(baseVariant))return false;return value;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:TErhPYaei,nodeId:\"OrIba5rHu\",openInNewTab:WRXdKgqKL,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\",intrinsicHeight:2400,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0),pixelHeight:2400,pixelWidth:2e3,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/10I4GJR5nYsUsYnoOPIDjoapkA.webp\",srcSet:\"https://framerusercontent.com/images/10I4GJR5nYsUsYnoOPIDjoapkA.webp?scale-down-to=1024 853w,https://framerusercontent.com/images/10I4GJR5nYsUsYnoOPIDjoapkA.webp?scale-down-to=2048 1706w,https://framerusercontent.com/images/10I4GJR5nYsUsYnoOPIDjoapkA.webp 2000w\"},className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-lxm9qi\",className,classNames)} framer-1941pyf`,\"data-framer-name\":\"desktop\",layoutDependency:layoutDependency,layoutId:\"OrIba5rHu\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderBottomLeftRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},...addPropertyOverrides({\"OrIba5rHu-hover\":{\"data-framer-name\":undefined},h_tmiDkZ9:{\"data-framer-name\":\"Image + Icon\"},Oci5JEuQZ:{\"data-framer-name\":\"mobile\"},p3_fNkbgN:{\"data-framer-name\":\"inverted\"}},baseVariant,gestureVariant),children:[dQQtW2zsa&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2400,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||334)*.5000000000000002-(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||334)-0)*1/2)),pixelHeight:2400,pixelWidth:2e3,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(POrAwGjpZ),...{positionX:\"left\",positionY:\"center\"}},className:\"framer-1h3uzus\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"NSzBSjWo8\",...addPropertyOverrides({h_tmiDkZ9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2400,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||250)*.5000000000000002-(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||250)-0)*1/2)),pixelHeight:2400,pixelWidth:2e3,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(POrAwGjpZ),...{positionX:\"left\",positionY:\"center\"}}},Oci5JEuQZ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2400,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||250)*.5000000000000002-(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||250)-0)*1/2)),pixelHeight:2400,pixelWidth:2e3,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(POrAwGjpZ),...{positionX:\"left\",positionY:\"center\"}}},p3_fNkbgN:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2400,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||250)*.5000000000000002-(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||250)-0)*1/2)),pixelHeight:2400,pixelWidth:2e3,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(POrAwGjpZ),...{positionX:\"left\",positionY:\"center\"}}}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2400,intrinsicWidth:2e3,pixelHeight:141,pixelWidth:496,...toResponsiveImage(kSvOYAIrC),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1aprfaq\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"cOAnaxPm1\",...addPropertyOverrides({h_tmiDkZ9:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2400,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||250)*.5000000000000002-(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||250)-0)*.272/2)),pixelHeight:141,pixelWidth:496,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.7113)`,...toResponsiveImage(kSvOYAIrC),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)}),isDisplayed1(kgJo1kxCj)&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-18cca04-container\",layoutDependency:layoutDependency,layoutId:\"LrDlrcTtp-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"LrDlrcTtp\",isMixedBorderRadius:false,layoutId:\"LrDlrcTtp\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:xxqp_pVI7,srcType:fl6owCh61,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__*/_jsxs(motion.div,{className:\"framer-1br71ny\",\"data-framer-name\":\"Card\",layoutDependency:layoutDependency,layoutId:\"SC8CxJUlE\",style:{backgroundColor:\"var(--token-4321a524-8651-4268-85f9-e884d8cb6223, rgb(10, 11, 10))\",borderTopLeftRadius:24,borderTopRightRadius:0},variants:{p3_fNkbgN:{borderTopLeftRadius:0,borderTopRightRadius:24}},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-dypna5\",\"data-framer-name\":\"Rounded Edge Top Left\",layoutDependency:layoutDependency,layoutId:\"XKesc1TMV\",style:{rotate:0},variants:{p3_fNkbgN:{rotate:90}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-elg08b\",\"data-framer-name\":\"Path\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"Z_9x_Zq_d\",opacity:1,style:{backgroundColor:\"rgba(0, 0, 0, 0)\"},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 24 24 L 24 0 C 24 13.255 13.255 24 0 24 Z\" fill=\"var(--token-4321a524-8651-4268-85f9-e884d8cb6223, rgb(10, 11, 10)) /* {&quot;name&quot;:&quot;background/default&quot;} */\"></path></svg>',svgContentId:9124305982,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1t5xthg\",\"data-framer-name\":\"Rounded Edge Top Left\",layoutDependency:layoutDependency,layoutId:\"QZ2n6tthr\",style:{rotate:0},variants:{p3_fNkbgN:{rotate:90}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-jbazzi\",\"data-framer-name\":\"Path\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"y1CRcYA7G\",opacity:1,style:{backgroundColor:\"rgba(0, 0, 0, 0)\"},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 24 24 L 24 0 C 24 13.255 13.255 24 0 24 Z\" fill=\"var(--token-4321a524-8651-4268-85f9-e884d8cb6223, rgb(10, 11, 10)) /* {&quot;name&quot;:&quot;background/default&quot;} */\"></path></svg>',svgContentId:9124305982,withExternalLayout:true,...addPropertyOverrides({p3_fNkbgN:{svgContentId:8738271081}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1boiudp\",\"data-framer-name\":\"Button Icon\",layoutDependency:layoutDependency,layoutId:\"WsP1M48BY\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.div,{style:{\"--font-selector\":\"R0Y7Rm9ydW0tcmVndWxhcg==\",\"--framer-font-family\":'\"Forum\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"1.5px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-tcooor, var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Menu\"})}),className:\"framer-t5c218\",\"data-framer-name\":\"Button Icon Text\",fonts:[\"GF;Forum-regular\"],layoutDependency:layoutDependency,layoutId:\"bRQKZRmFmmsG80VLwI\",style:{\"--extracted-tcooor\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(21, 21, 21))\"},text:HKbP95jQO,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-16yiwi4\",\"data-border\":true,\"data-framer-name\":\"Button Icon Badge\",layoutDependency:layoutDependency,layoutId:\"bRQKZRmFmqQxTqT4mQ\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-68c05b50-ca7b-4173-82aa-ed42aea1a9b4, rgb(51, 51, 48))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-cd2934a7-4e35-4347-a32c-9650fca4db23, rgba(24, 24, 24, 0.5))\",borderBottomLeftRadius:500,borderBottomRightRadius:500,borderTopLeftRadius:500,borderTopRightRadius:500,rotate:0},variants:{\"OrIba5rHu-hover\":{\"--border-color\":\"var(--token-52eaa3b2-9b53-4c12-9790-fce4171dff3e, rgb(78, 76, 71))\",backgroundColor:\"var(--token-c18e5c55-e670-494b-9afe-b018358f3867, rgb(30, 30, 30))\"},p3_fNkbgN:{rotate:180}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-e34ryf\",\"data-framer-name\":\"Button Icon Badge Inner\",layoutDependency:layoutDependency,layoutId:\"bRQKZRmFmd9LuR799P\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-11o83wx-container\",layoutDependency:layoutDependency,layoutId:\"bRQKZRmFmvl9GpTU6s-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-efbc6c56-80fe-4475-9b37-9684d6e92632, rgb(239, 231, 210))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowRight\",id:\"bRQKZRmFmvl9GpTU6s\",layoutId:\"bRQKZRmFmvl9GpTU6s\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"light\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-490ar9-container\",layoutDependency:layoutDependency,layoutId:\"bRQKZRmFmeUZ3wXx3Q-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-efbc6c56-80fe-4475-9b37-9684d6e92632, rgb(239, 231, 210))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowRight\",id:\"bRQKZRmFmeUZ3wXx3Q\",layoutId:\"bRQKZRmFmeUZ3wXx3Q\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"light\",width:\"100%\"})})})]})})]})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-XFzYC.framer-1941pyf, .framer-XFzYC .framer-1941pyf { display: block; }\",\".framer-XFzYC.framer-lxm9qi { cursor: pointer; height: 334px; overflow: hidden; position: relative; text-decoration: none; width: 336px; will-change: var(--framer-will-change-override, transform); }\",\".framer-XFzYC .framer-1h3uzus { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; }\",\".framer-XFzYC .framer-1aprfaq { flex: none; height: 27%; left: calc(50.00000000000002% - 71.13095238095238% / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 27.200000000000003% / 2); width: 71%; }\",\".framer-XFzYC .framer-18cca04-container { flex: none; height: 100%; left: 0px; position: absolute; top: 0px; width: 100%; }\",\".framer-XFzYC .framer-1br71ny { align-content: flex-start; align-items: flex-start; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 8px 0px 0px 16px; position: absolute; right: 0px; width: min-content; }\",\".framer-XFzYC .framer-dypna5 { bottom: 0px; flex: none; height: 24px; left: -23px; overflow: visible; position: absolute; width: 24px; z-index: 1; }\",\".framer-XFzYC .framer-elg08b { flex: none; height: 24px; left: calc(50.00000000000002% - 24px / 2); position: absolute; top: calc(50.00000000000002% - 24px / 2); width: 24px; }\",\".framer-XFzYC .framer-1t5xthg { flex: none; height: 24px; overflow: visible; position: absolute; right: 0px; top: -23px; width: 24px; z-index: 1; }\",\".framer-XFzYC .framer-jbazzi { flex: none; height: 24px; left: 0px; position: absolute; top: 0px; width: 24px; }\",\".framer-XFzYC .framer-1boiudp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-XFzYC .framer-t5c218 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-XFzYC .framer-16yiwi4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: 32px; justify-content: center; overflow: visible; padding: 8px 12px 8px 12px; position: relative; width: 32px; }\",\".framer-XFzYC .framer-e34ryf { flex: none; height: 16px; overflow: hidden; position: relative; width: 16px; }\",\".framer-XFzYC .framer-11o83wx-container { flex: none; height: 16px; left: 0px; position: absolute; top: 0px; width: 16px; }\",\".framer-XFzYC .framer-490ar9-container { flex: none; height: 16px; left: -20px; position: absolute; top: 0px; width: 16px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-XFzYC .framer-1br71ny, .framer-XFzYC .framer-1boiudp, .framer-XFzYC .framer-16yiwi4 { gap: 0px; } .framer-XFzYC .framer-1br71ny > *, .framer-XFzYC .framer-16yiwi4 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-XFzYC .framer-1br71ny > :first-child, .framer-XFzYC .framer-16yiwi4 > :first-child { margin-top: 0px; } .framer-XFzYC .framer-1br71ny > :last-child, .framer-XFzYC .framer-16yiwi4 > :last-child { margin-bottom: 0px; } .framer-XFzYC .framer-1boiudp > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-XFzYC .framer-1boiudp > :first-child { margin-left: 0px; } .framer-XFzYC .framer-1boiudp > :last-child { margin-right: 0px; } }\",\".framer-XFzYC.framer-v-1hev5si.framer-lxm9qi, .framer-XFzYC.framer-v-fcgnsg.framer-lxm9qi, .framer-XFzYC.framer-v-11cvoko.framer-lxm9qi { height: 250px; }\",\".framer-XFzYC.framer-v-11cvoko .framer-1br71ny { left: 0px; padding: 8px 12px 0px 0px; right: unset; }\",\".framer-XFzYC.framer-v-11cvoko .framer-dypna5 { left: 101px; }\",\".framer-XFzYC.framer-v-11cvoko .framer-1t5xthg { left: 0px; right: unset; top: -24px; }\",\".framer-XFzYC.framer-v-11cvoko .framer-jbazzi { top: calc(50.00000000000002% - 24px / 2); }\",\".framer-XFzYC.framer-v-11cvoko .framer-t5c218 { order: 1; }\",\".framer-XFzYC.framer-v-11cvoko .framer-16yiwi4 { order: 0; }\",\".framer-XFzYC.framer-v-lxm9qi.hover .framer-11o83wx-container { left: 16px; }\",\".framer-XFzYC.framer-v-lxm9qi.hover .framer-490ar9-container { left: 0px; }\",'.framer-XFzYC[data-border=\"true\"]::after, .framer-XFzYC [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 334\n * @framerIntrinsicWidth 336\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Oci5JEuQZ\":{\"layout\":[\"fixed\",\"fixed\"]},\"h_tmiDkZ9\":{\"layout\":[\"fixed\",\"fixed\"]},\"p3_fNkbgN\":{\"layout\":[\"fixed\",\"fixed\"]},\"pP0oUeH5M\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"HKbP95jQO\":\"buttonTitle\",\"POrAwGjpZ\":\"image\",\"TErhPYaei\":\"link\",\"WRXdKgqKL\":\"newTab\",\"fl6owCh61\":\"video\",\"dQQtW2zsa\":\"showImage\",\"kgJo1kxCj\":\"showVideo\",\"xxqp_pVI7\":\"videoFile\",\"kSvOYAIrC\":\"logo\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerRb7TaEcU4=withCSS(Component,css,\"framer-XFzYC\");export default FramerRb7TaEcU4;FramerRb7TaEcU4.displayName=\"Home Image\";FramerRb7TaEcU4.defaultProps={height:334,width:336};addPropertyControls(FramerRb7TaEcU4,{variant:{options:[\"OrIba5rHu\",\"Oci5JEuQZ\",\"h_tmiDkZ9\",\"p3_fNkbgN\"],optionTitles:[\"desktop\",\"mobile\",\"Image + Icon\",\"inverted\"],title:\"Variant\",type:ControlType.Enum},HKbP95jQO:{defaultValue:\"Menu\",displayTextArea:false,title:\"Button Title\",type:ControlType.String},POrAwGjpZ:{description:\"\",title:\"Image\",type:ControlType.ResponsiveImage},TErhPYaei:{title:\"Link\",type:ControlType.Link},WRXdKgqKL:{defaultValue:false,title:\"New Tab\",type:ControlType.Boolean},fl6owCh61:(Video1Controls===null||Video1Controls===void 0?void 0:Video1Controls[\"srcType\"])&&{...Video1Controls[\"srcType\"],defaultValue:\"Upload\",description:undefined,hidden:undefined,title:\"Video\"},dQQtW2zsa:{defaultValue:true,title:\"Show Image\",type:ControlType.Boolean},kgJo1kxCj:{defaultValue:true,title:\"Show Video\",type:ControlType.Boolean},xxqp_pVI7:(Video1Controls===null||Video1Controls===void 0?void 0:Video1Controls[\"srcFile\"])&&{...Video1Controls[\"srcFile\"],__defaultAssetReference:\"\",description:undefined,hidden:undefined,title:\"Video File\"},kSvOYAIrC:{__defaultAssetReference:\"data:framer/asset-reference,fFM4CYaBWF87y27k0CsvVehFB5w.png?originalFilename=centurion-club-logo.png&preferredSize=auto\",description:\"\",title:\"Logo\",type:ControlType.ResponsiveImage}});addFonts(FramerRb7TaEcU4,[{explicitInter:true,fonts:[{family:\"Forum\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/forum/v18/6aey4Ky-Vb8Ew_ITMJMa3mnT.woff2\",weight:\"400\"}]},...VideoFonts,...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerRb7TaEcU4\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"HKbP95jQO\\\":\\\"buttonTitle\\\",\\\"POrAwGjpZ\\\":\\\"image\\\",\\\"TErhPYaei\\\":\\\"link\\\",\\\"WRXdKgqKL\\\":\\\"newTab\\\",\\\"fl6owCh61\\\":\\\"video\\\",\\\"dQQtW2zsa\\\":\\\"showImage\\\",\\\"kgJo1kxCj\\\":\\\"showVideo\\\",\\\"xxqp_pVI7\\\":\\\"videoFile\\\",\\\"kSvOYAIrC\\\":\\\"logo\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Oci5JEuQZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"h_tmiDkZ9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"p3_fNkbgN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"pP0oUeH5M\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"334\",\"framerIntrinsicWidth\":\"336\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Rb7TaEcU4.map"],"mappings":"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"}