{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/fJ8vwGe6kxfz7kj9H7Sk/YouTube.js", "ssg:https://framerusercontent.com/modules/212sImxDJuc0vEswB5R2/oaVcpWcBb1QoXcJED7eZ/b0g7mm3DW.js", "ssg:https://framerusercontent.com/modules/kBkaj3LmBqcSU2IkUsBC/kvFSr6fSU7VcYZyNyfaK/Download.js", "ssg:https://framerusercontent.com/modules/NtG8HVLWB1fnbeWZfQY4/PWp0Y3JaGKMitSVbkfax/H3E953Atk.js", "ssg:https://framerusercontent.com/modules/mDbIayGm1tmm881JC5Zj/lTqE5yiueKzlnQ1vYqV5/qBmSG_fmG.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));var ThumbnailFormat;(function(ThumbnailFormat){ThumbnailFormat[\"WebP\"]=\"webp\";ThumbnailFormat[\"JPG\"]=\"jpg\";})(ThumbnailFormat||(ThumbnailFormat={}));/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */ export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==PlayOptions.Normal;const showThumbnail=onCanvas||thumbnail!==ThumbnailOptions.Off&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/ _jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/ _jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL]=parsedURL;// https://stackoverflow.com/questions/2068344/how-do-i-get-a-youtube-video-thumbnail-from-the-youtube-api\nconst thumbnailURL=getThumbnailURL(videoId,thumbnail,getWebPSupported()?ThumbnailFormat.WebP:ThumbnailFormat.JPG);// https://developers.google.com/youtube/player_parameters\nconst searchParams=embedURL.searchParams;searchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(isAutoplay||showThumbnail){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===PlayOptions.Loop){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}return /*#__PURE__*/ _jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:hasBorderRadius&&showVideo?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},children:[isPreloading&&/*#__PURE__*/ _jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/ _jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),/*#__PURE__*/ _jsx(\"div\",{style:{...videoStyle,background:showThumbnail?`center / cover url(${thumbnailURL}) no-repeat`:undefined}}),showVideo?/*#__PURE__*/ _jsx(\"iframe\",{style:videoStyle,src:embedURL.href,frameBorder:\"0\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",onClick:onClick,onMouseEnter:onMouseEnter,onMouseLeave:onMouseLeave,onMouseDown:onMouseDown,onMouseUp:onMouseUp}):/*#__PURE__*/ _jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===PlayOptions.Normal;}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==PlayOptions.Normal;}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:PlayOptions.Normal,shouldMute:true,thumbnail:ThumbnailOptions.Medium,isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL];}if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");// https://www.youtube.com/watch?v=Fop2oskTug8\nif(pathSegments[0]===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL1=getEmbedURL(videoId);return[videoId,embedURL1];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId1=pathSegments[1];return[videoId1,url];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId2=url.pathname.slice(1);const embedURL2=getEmbedURL(videoId2);return[videoId2,embedURL2];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res,format=ThumbnailFormat.JPG){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst pre=ThumbnailFormat.WebP?\"https://i.ytimg.com/vi_webp/\":\"https://i.ytimg.com/vi/\";const ext=ThumbnailFormat.WebP?\"webp\":\"jpg\";switch(res){case ThumbnailOptions.Low:return`${pre}${videoId}/hqdefault.${ext}`;case ThumbnailOptions.Medium:return`${pre}${videoId}/sddefault.${ext}`;case ThumbnailOptions.High:return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}let _getWebPSupported;// https://stackoverflow.com/a/27232658\nfunction getWebPSupported(){// We're going to default to webp because it's pretty widely supported by now\nif(!window){return true;}if(_getWebPSupported!==undefined){return _getWebPSupported;}const element=document.createElement(\"canvas\");if(!!(element.getContext&&element.getContext(\"2d\"))){// was able or not to get WebP representation\nreturn element.toDataURL(\"image/webp\").indexOf(\"data:image/webp\")==0;}else{// very old browser like IE 8, canvas not supported\nreturn false;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/ _jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/ _jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/ _jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/ _jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/ _jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/ _jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/ _jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/ _jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"315\",\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerIntrinsicWidth\":\"560\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "// Generated by Framer (f1edf09)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,RichText,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/fJ8vwGe6kxfz7kj9H7Sk/YouTube.js\";const YouTubeFonts=getFonts(YouTube);const cycleOrder=[\"ZdN5REziK\",\"l2WLht300\",\"e7Xo4hBBJ\"];const variantClassNames={e7Xo4hBBJ:\"framer-v-16sr3o3\",l2WLht300:\"framer-v-10jrnu3\",ZdN5REziK:\"framer-v-kcesob\"};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 humanReadableVariantMap={Desktops:\"ZdN5REziK\",Phone:\"e7Xo4hBBJ\",Tablet:\"l2WLht300\"};const transitions={default:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"}};const Component=/*#__PURE__*/ React.forwardRef(function({id,style,className,width,height,layoutId,variant:outerVariant=\"ZdN5REziK\",...restProps},ref){const outerVariantId=humanReadableVariantMap[outerVariant];const variant=outerVariantId||outerVariant;const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"ZdN5REziK\",transitions,variant,variantClassNames});const layoutDependency=variants.join(\"-\")+restProps.layoutDependency;const defaultLayoutId=React.useId();return /*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-KISRt\",classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsx(motion.div,{...restProps,className:cx(\"framer-kcesob\",className),\"data-framer-name\":\"Desktops\",layoutDependency:layoutDependency,layoutId:\"ZdN5REziK\",ref:ref,style:{backgroundColor:\"rgb(255, 255, 255)\",...style},transition:transition,...addPropertyOverrides({e7Xo4hBBJ:{\"data-framer-name\":\"Phone\"},l2WLht300:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:/*#__PURE__*/ _jsxs(motion.div,{className:\"framer-7wrrad\",\"data-framer-name\":\"Features\",layoutDependency:layoutDependency,layoutId:\"KCNeuXZ6R\",transition:transition,children:[/*#__PURE__*/ _jsxs(motion.div,{className:\"framer-106739s\",layoutDependency:layoutDependency,layoutId:\"aact0XAQu\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15,boxShadow:\"0px 1px 8px 0px rgba(0,0,0,0.25)\"},transition:transition,children:[/*#__PURE__*/ _jsx(motion.div,{className:\"framer-1dkyv5s-container\",layoutDependency:layoutDependency,layoutId:\"MOon4l100-container\",transition:transition,children:/*#__PURE__*/ _jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"MOon4l100\",isMixedBorderRadius:false,isRed:true,layoutId:\"MOon4l100\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/neEKYz8Pv3I\",width:\"100%\"})}),/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs)\"},children:\"How to Pickup A Mooring at Catalina Island, CA\"})}),className:\"framer-r0zl6b\",fonts:[\"GF;Inter-600\"],layoutDependency:layoutDependency,layoutId:\"XX7A6GGJA\",style:{\"--extracted-gdpscs\":\"rgb(2, 32, 182)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},transition:transition,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/ _jsxs(motion.div,{className:\"framer-c3rcpj\",layoutDependency:layoutDependency,layoutId:\"ODJKdivY5\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15,boxShadow:\"0px 1px 8px 0px rgba(0,0,0,0.25)\"},transition:transition,children:[/*#__PURE__*/ _jsx(motion.div,{className:\"framer-1mz9i0j-container\",layoutDependency:layoutDependency,layoutId:\"iThKAMZ01-container\",transition:transition,children:/*#__PURE__*/ _jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"iThKAMZ01\",isMixedBorderRadius:false,isRed:true,layoutId:\"iThKAMZ01\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/_OQAhezLQNU\",width:\"100%\"})}),/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs)\"},children:\"How to Pickup A Mooring - Animation Only\"})}),className:\"framer-ufjjmw\",fonts:[\"GF;Inter-600\"],layoutDependency:layoutDependency,layoutId:\"rhQ4vdVS9\",style:{\"--extracted-gdpscs\":\"rgb(2, 32, 182)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},transition:transition,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({e7Xo4hBBJ:{children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs)\"},children:\"How to Pickup A Mooring - Animation Only\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/ _jsxs(motion.div,{className:\"framer-bz64u1\",layoutDependency:layoutDependency,layoutId:\"VyuUE6l34\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15,boxShadow:\"0px 1px 8px 0px rgba(0,0,0,0.25)\"},transition:transition,children:[/*#__PURE__*/ _jsx(motion.div,{className:\"framer-1quiixb-container\",layoutDependency:layoutDependency,layoutId:\"QyH9KbayZ-container\",transition:transition,children:/*#__PURE__*/ _jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"QyH9KbayZ\",isMixedBorderRadius:false,isRed:true,layoutId:\"QyH9KbayZ\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/UrJ2zZqhpNk\",width:\"100%\"})}),/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs)\"},children:\"How to Anchor Your Vessel\"})}),className:\"framer-76f6yp\",fonts:[\"GF;Inter-600\"],layoutDependency:layoutDependency,layoutId:\"qSQMObsfi\",style:{\"--extracted-gdpscs\":\"rgb(2, 32, 182)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},transition:transition,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({e7Xo4hBBJ:{children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs)\"},children:\"How to Anchor Your Vessel\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/ _jsxs(motion.div,{className:\"framer-kcaga6\",layoutDependency:layoutDependency,layoutId:\"dosEjYDZy\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15,boxShadow:\"0px 1px 8px 0px rgba(0,0,0,0.25)\"},transition:transition,children:[/*#__PURE__*/ _jsx(motion.div,{className:\"framer-1cprrj4-container\",layoutDependency:layoutDependency,layoutId:\"b1Z25b_04-container\",transition:transition,children:/*#__PURE__*/ _jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"b1Z25b_04\",isMixedBorderRadius:false,isRed:true,layoutId:\"b1Z25b_04\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/KrixDxQGxJc\",width:\"100%\"})}),/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs)\"},children:\"Marine Weather Forecasting\"})}),className:\"framer-ajzupi\",fonts:[\"GF;Inter-600\"],layoutDependency:layoutDependency,layoutId:\"vaJLGxlb7\",style:{\"--extracted-gdpscs\":\"rgb(2, 32, 182)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},transition:transition,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({e7Xo4hBBJ:{children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs)\"},children:\"Marine Weather Forecasting\"})})}},baseVariant,gestureVariant)})]})]})})})});});const css=['.framer-KISRt [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-KISRt * { box-sizing: border-box; }\",\".framer-KISRt .framer-mkz1yn { display: block; }\",\".framer-KISRt .framer-kcesob { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1200px; justify-content: center; overflow: hidden; padding: 100px 15px 100px 0px; position: relative; width: 1200px; }\",\".framer-KISRt .framer-7wrrad { display: grid; flex: none; gap: 50px; grid-auto-rows: 200px; grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(4, 200px); height: 980px; justify-content: center; overflow: visible; padding: 25px 25px 25px 25px; position: relative; width: 100%; }\",\".framer-KISRt .framer-106739s { align-content: center; align-items: center; align-self: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; grid-row: auto / span 2; height: 100%; justify-content: center; justify-self: center; overflow: visible; padding: 5px 5px 5px 5px; position: relative; width: 100%; }\",\".framer-KISRt .framer-1dkyv5s-container, .framer-KISRt .framer-1mz9i0j-container, .framer-KISRt .framer-1quiixb-container, .framer-KISRt .framer-1cprrj4-container { flex: none; height: 80%; position: relative; width: 95%; }\",\".framer-KISRt .framer-r0zl6b, .framer-KISRt .framer-ufjjmw, .framer-KISRt .framer-76f6yp, .framer-KISRt .framer-ajzupi { flex: none; height: 60px; position: relative; white-space: pre-wrap; width: 90%; word-break: break-word; word-wrap: break-word; }\",\".framer-KISRt .framer-c3rcpj, .framer-KISRt .framer-bz64u1, .framer-KISRt .framer-kcaga6 { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; grid-row: auto / span 2; height: 100%; justify-content: center; justify-self: start; overflow: visible; padding: 5px 5px 5px 5px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-KISRt .framer-kcesob, .framer-KISRt .framer-106739s, .framer-KISRt .framer-c3rcpj, .framer-KISRt .framer-bz64u1, .framer-KISRt .framer-kcaga6 { gap: 0px; } .framer-KISRt .framer-kcesob > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-KISRt .framer-kcesob > :first-child { margin-left: 0px; } .framer-KISRt .framer-kcesob > :last-child { margin-right: 0px; } .framer-KISRt .framer-106739s > *, .framer-KISRt .framer-c3rcpj > *, .framer-KISRt .framer-bz64u1 > *, .framer-KISRt .framer-kcaga6 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-KISRt .framer-106739s > :first-child, .framer-KISRt .framer-c3rcpj > :first-child, .framer-KISRt .framer-bz64u1 > :first-child, .framer-KISRt .framer-kcaga6 > :first-child { margin-top: 0px; } .framer-KISRt .framer-106739s > :last-child, .framer-KISRt .framer-c3rcpj > :last-child, .framer-KISRt .framer-bz64u1 > :last-child, .framer-KISRt .framer-kcaga6 > :last-child { margin-bottom: 0px; } }\",\".framer-KISRt.framer-v-10jrnu3 .framer-kcesob { height: 2200px; width: min-content; }\",\".framer-KISRt.framer-v-10jrnu3 .framer-7wrrad { grid-template-columns: repeat(1, minmax(50px, 1fr)); height: 100%; width: 835px; }\",\".framer-KISRt.framer-v-16sr3o3 .framer-kcesob { height: 2200px; width: 450px; }\",\".framer-KISRt.framer-v-16sr3o3 .framer-7wrrad { grid-template-columns: repeat(1, minmax(50px, 1fr)); height: 100%; width: 103%; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1200\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"l2WLht300\":{\"layout\":[\"auto\",\"fixed\"]},\"e7Xo4hBBJ\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n */ const Framerb0g7mm3DW=withCSS(Component,css,\"framer-KISRt\");export default Framerb0g7mm3DW;Framerb0g7mm3DW.displayName=\"Video Grid\";Framerb0g7mm3DW.defaultProps={height:1200,width:1200};addPropertyControls(Framerb0g7mm3DW,{variant:{options:[\"ZdN5REziK\",\"l2WLht300\",\"e7Xo4hBBJ\"],optionTitles:[\"Desktops\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerb0g7mm3DW,[{family:\"Inter\",moduleAsset:{localModuleIdentifier:\"local-module:canvasComponent/b0g7mm3DW:default\",url:\"https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuGKYMZhrib2Bg-4.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuGKYMZhrib2Bg-4.ttf\",weight:\"600\"},...YouTubeFonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerb0g7mm3DW\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerIntrinsicHeight\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"l2WLht300\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"e7Xo4hBBJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./b0g7mm3DW.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import{motion}from\"framer-motion\";var IconType;(function(IconType){IconType[\"Default\"]=\"Default\";IconType[\"Custom\"]=\"Custom\";})(IconType||(IconType={}));var SrcType;(function(SrcType){SrcType[\"Upload\"]=\"Upload\";SrcType[\"URL\"]=\"URL\";})(SrcType||(SrcType={}));// Check for the Search Index Meta Tag\n// Currently the only way to differenciate between Preview & Publish\nconst metaTagSelector='meta[name=\"framer-search-index\"]';// We can hopefully remove this check when new Preview ships\nfunction isPublishedSiteOrSSG(){if(typeof document===\"undefined\")return true;const metaTag=document.querySelector(metaTagSelector);return!!metaTag;}/**\n *\n * DOWNLOAD\n * By Hunter\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 100\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */ export default function Download(props){const{styleOptions,hoverOptions,iconOptions}=props;const{backgroundColor,color,borderRadius,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,gap}=styleOptions;const isInPublishedSiteOrSSG=isPublishedSiteOrSSG();let downloadURL=undefined;if(isInPublishedSiteOrSSG){if(props.srcType===SrcType.URL)downloadURL=props.srcURL;if(props.srcType===SrcType.Upload)downloadURL=props.srcFile;}const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;const getIcon=()=>{var ref,ref1;if(!iconOptions)return;const iconStyle={order:iconOptions.alignment===\"start\"?0:2,flexShrink:0};return iconOptions.type===IconType.Custom&&!!((ref=iconOptions.image)===null||ref===void 0?void 0:ref.src)?/*#__PURE__*/ _jsx(\"img\",{style:iconStyle,alt:((ref1=iconOptions.image)===null||ref1===void 0?void 0:ref1.alt)&&iconOptions.image.alt.length>0?iconOptions.image.alt:\"download icon\",src:iconOptions.image.src,width:iconOptions.size,height:iconOptions.size}):/*#__PURE__*/ _jsx(\"svg\",{style:iconStyle,xmlns:\"http://www.w3.org/2000/svg\",width:iconOptions.size,height:iconOptions.size,fill:iconOptions.color,viewBox:\"0 0 256 256\",children:/*#__PURE__*/ _jsx(\"path\",{d:\"M228 152v56a20 20 0 0 1-20 20H48a20 20 0 0 1-20-20v-56a12 12 0 0 1 24 0v52h152v-52a12 12 0 0 1 24 0Zm-108.49 8.49a12 12 0 0 0 17 0l40-40a12 12 0 0 0-17-17L140 123V40a12 12 0 0 0-24 0v83l-19.51-19.49a12 12 0 0 0-17 17Z\"})});};const getCursor=()=>{if(props.srcType===SrcType.URL&&props.srcURL)return\"pointer\";if(props.srcType===SrcType.Upload&&props.srcFile)return\"pointer\";return\"auto\";};const buttonTitle=isInPublishedSiteOrSSG?\"Download File\":\"Publish to Download\";return /*#__PURE__*/ _jsxs(motion.a,{target:\"_blank\",href:downloadURL,download:true,title:buttonTitle,style:{gap,fontSize:16,lineHeight:1,fontFamily:\"Inter\",fontWeight:500,width:\"max-content\",...props.style,...buttonStyles,...props.fontControl,padding:paddingValue,color:color,backgroundColor:backgroundColor,borderRadius:borderRadius,userSelect:\"none\",placeContent:flexAlignSwitch(props.fontControl),whiteSpace:\"nowrap\",cursor:getCursor()},whileHover:hoverOptions,transition:hoverOptions===null||hoverOptions===void 0?void 0:hoverOptions.transition,children:[getIcon(),props.text]});};Download.displayName=\"Download\";addPropertyControls(Download,{text:{title:\"Text\",type:ControlType.String,defaultValue:\"Download\"},srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[SrcType.Upload,SrcType.URL]},srcURL:{type:ControlType.String,title:\" \",placeholder:\"../example.pdf\",hidden:props=>props.srcType===SrcType.Upload},srcFile:{type:ControlType.File,title:\" \",allowedFileTypes:[],hidden:props=>props.srcType===SrcType.URL},fontControl:{// @ts-ignore - Internal\ntype:ControlType.Font,title:\"Font\",controls:\"extended\"},iconOptions:{type:ControlType.Object,optional:true,title:\"Icon\",buttonTitle:\"Size, Color\",controls:{type:{title:\"Type\",type:ControlType.Enum,options:Object.values(IconType),optionTitles:Object.values(IconType),displaySegmentedControl:true},color:{title:\"Color\",type:ControlType.Color,defaultValue:\"#FFF\",hidden:props=>props.type===IconType.Custom},image:{title:\"File\",type:ControlType.ResponsiveImage,allowedFileTypes:[\"jpg\",\"png\",\"svg\"],hidden:props=>props.type===IconType.Default},size:{type:ControlType.Number,displayStepper:true,min:5,defaultValue:16,max:250},alignment:{title:\"Align\",type:ControlType.Enum,displaySegmentedControl:true,options:[\"start\",\"end\"],optionTitles:[\"Start\",\"End\"]}}},styleOptions:{type:ControlType.Object,title:\"Styles\",buttonTitle:\"Button, Font\",controls:{backgroundColor:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#111\"},color:{type:ControlType.Color,defaultValue:\"#FFF\"},borderRadius:{type:ControlType.Number,title:\"Radius\",displayStepper:true,defaultValue:50},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:10,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},gap:{title:\"Gap\",type:ControlType.Number,displayStepper:true,defaultValue:5}}},hoverOptions:{type:ControlType.Object,title:\"Hover\",buttonTitle:\"Effect\",optional:true,controls:{scale:{type:ControlType.Number,title:\"Scale\",min:0,max:10,displayStepper:true,step:.01,defaultValue:1.1},backgroundColor:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#333\",optional:true},color:{type:ControlType.Color,title:\"Color\",defaultValue:\"#FFF\",optional:true},transition:{type:ControlType.Transition,title:\"Transition\",defaultValue:{type:\"spring\",stiffness:400,damping:30}}}}});const buttonStyles={display:\"flex\",placeItems:\"center\",placeContent:\"center\",textDecoration:\"none\"};/* Match flex content alignment with text align */ const flexAlignSwitch=fontControlStyles=>{if(!(fontControlStyles===null||fontControlStyles===void 0?void 0:fontControlStyles.textAlign)){return\"left\";}if(fontControlStyles.textAlign===\"left\"){return\"flex-start\";}if(fontControlStyles.textAlign===\"right\"){return\"flex-end\";}return\"center\";};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Download\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"100\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"any\",\"framerSupportedLayoutHeight\":\"any\",\"framerIntrinsicWidth\":\"200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Download.map", "// Generated by Framer (4f5e97b)\nimport{jsx as r,jsxs as e}from\"react/jsx-runtime\";import{addFonts as a,addPropertyControls as t,ControlType as i,cx as n,getFonts as o,Image as d,Link as l,RichText as m,useLocaleInfo as f,useVariantState as p,withCSS as c}from\"framer\";import{LayoutGroup as s,motion as g,MotionConfigContext as x}from\"framer-motion\";import*as h from\"react\";import b from\"https://framerusercontent.com/modules/kBkaj3LmBqcSU2IkUsBC/kvFSr6fSU7VcYZyNyfaK/Download.js\";let u=o(b),y=[\"bPCsoWNTP\"],v=\"framer-UB4id\",B={bPCsoWNTP:\"framer-v-1i5m91w\"};function U(r,...e){let a={};return null==e||e.forEach(e=>e&&Object.assign(a,r[e])),a;}let w={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}},R=r=>\"object\"==typeof r&&null!==r&&\"string\"==typeof r.src?r:\"string\"==typeof r?{src:r}:void 0,k=({value:e,children:a})=>{let t=h.useContext(x),i=null!=e?e:t.transition,n=h.useMemo(()=>({...t,transition:i}),[JSON.stringify(i)]);return /*#__PURE__*/r(x.Provider,{value:n,children:a});},I=({background:r,card1:e,card2:a,card3:t,card4:i,card5:n,card6:o,card7:d,card8:l,height:m,id:f,link6:p,width:c,...s})=>{var g;return{...s,gmv_GuQYx:null!=n?n:s.gmv_GuQYx,hENUX7x9X:null!=i?i:s.hENUX7x9X,IJLBk17u1:null!=l?l:s.IJLBk17u1,In7L6sAVW:null!==(g=null!=r?r:s.In7L6sAVW)&&void 0!==g?g:\"rgb(2, 32, 182)\",P0s3vbgJk:null!=d?d:s.P0s3vbgJk,q0IjEhx5a:null!=a?a:s.q0IjEhx5a,rrtagR3Qe:null!=p?p:s.rrtagR3Qe,vyv0OsMnl:null!=t?t:s.vyv0OsMnl,w_Fdq1nM6:null!=e?e:s.w_Fdq1nM6,wCVlOPqHu:null!=o?o:s.wCVlOPqHu};},C=(r,e)=>e.join(\"-\")+r.layoutDependency,j=/*#__PURE__*/h.forwardRef(function(a,t){let{activeLocale:i}=f(),{style:o,className:c,layoutId:x,variant:u,w_Fdq1nM6:v,q0IjEhx5a:U,vyv0OsMnl:j,hENUX7x9X:N,gmv_GuQYx:T,wCVlOPqHu:D,rrtagR3Qe:L,P0s3vbgJk:z,IJLBk17u1:S,In7L6sAVW:F,...A}=I(a),{baseVariant:O,classNames:M,gestureVariant:q,setGestureState:H,setVariant:E,transition:P,variants:X}=p({cycleOrder:y,defaultVariant:\"bPCsoWNTP\",transitions:w,variant:u,variantClassNames:B}),_=C(a,X),W=h.useRef(null),V=h.useId();return /*#__PURE__*/r(s,{id:null!=x?x:V,children:/*#__PURE__*/r(g.div,{initial:u,animate:X,onHoverStart:()=>H({isHovered:!0}),onHoverEnd:()=>H({isHovered:!1}),onTapStart:()=>H({isPressed:!0}),onTap:()=>H({isPressed:!1}),onTapCancel:()=>H({isPressed:!1}),className:n(\"framer-UB4id\",...[],M),style:{display:\"contents\"},children:/*#__PURE__*/r(k,{value:P,children:/*#__PURE__*/e(g.div,{...A,className:n(\"framer-1i5m91w\",c),\"data-framer-name\":\"Desktop 1200\",layoutDependency:_,layoutId:\"bPCsoWNTP\",ref:null!=t?t:W,style:{backgroundColor:\"rgb(255, 255, 255)\",...o},children:[/*#__PURE__*/e(g.div,{className:\"framer-15gljcf\",layoutDependency:_,layoutId:\"v1GPVCajN\",children:[/*#__PURE__*/e(g.div,{className:\"framer-11nnc6b\",\"data-framer-name\":\"Card\",layoutDependency:_,layoutId:\"hSETXHQh5\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,boxShadow:\"0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05)\"},children:[/*#__PURE__*/r(d,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,sizes:\"225px\",...R(v)},className:\"framer-ib1kfx\",\"data-framer-name\":\"Image\",layoutDependency:_,layoutId:\"Aim43D5cy\",style:{borderTopLeftRadius:20,borderTopRightRadius:20}}),/*#__PURE__*/e(g.div,{className:\"framer-1ml9qxx\",\"data-framer-name\":\"Content\",layoutDependency:_,layoutId:\"mvHlsJUkF\",children:[/*#__PURE__*/r(m,{__fromCanvasComponent:!0,children:/*#__PURE__*/r(h.Fragment,{children:/*#__PURE__*/r(g.h3,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(2, 32, 182))\"},children:\"California Boater Law\"})}),className:\"framer-1tipmgp\",fonts:[\"GF;Inter-600\"],layoutDependency:_,layoutId:\"hy80Pr_iu\",style:{\"--extracted-a0htzi\":\"rgb(2, 32, 182)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:!0}),/*#__PURE__*/r(g.div,{className:\"framer-n2kcju-container\",layoutDependency:_,layoutId:\"P0bc0M9p8-container\",children:/*#__PURE__*/r(b,{fontControl:{fontFamily:'\"Inter\", sans-serif',fontSize:\"16px\",letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",hoverOptions:{backgroundColor:'var(--token-0b66cf01-8b53-439d-9999-ef0e4b2c4605, rgb(20, 45, 204)) /* {\"name\":\"NCMA HOVER BTN\"} */',color:\"rgb(255, 255, 255)\",scale:1.1,transition:{damping:30,stiffness:400,type:\"spring\"}},id:\"P0bc0M9p8\",layoutId:\"P0bc0M9p8\",srcFile:\"https://framerusercontent.com/assets/57of08el7If8wqJXsM0XpX3I.pdf\",srcType:\"Upload\",srcURL:\"\",styleOptions:{backgroundColor:'var(--token-29621ae1-31a1-43c3-8529-d5ec49d6ad70, rgb(10, 31, 175)) /* {\"name\":\"NCMA BLUE BTN\"} */',borderRadius:10,color:\"rgb(255, 255, 255)\",gap:5,padding:10,paddingBottom:12,paddingLeft:15,paddingPerSide:!0,paddingRight:15,paddingTop:12},text:\"Download\",width:\"100%\"})})]})]}),/*#__PURE__*/e(g.div,{className:\"framer-i2jcen\",\"data-framer-name\":\"Card\",layoutDependency:_,layoutId:\"fcO_6NLoW\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,boxShadow:\"0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05)\"},children:[/*#__PURE__*/r(d,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,sizes:\"225px\",...R(U)},className:\"framer-1xwtwp\",\"data-framer-name\":\"Image\",layoutDependency:_,layoutId:\"ftjbTjexq\",style:{borderTopLeftRadius:20,borderTopRightRadius:20}}),/*#__PURE__*/e(g.div,{className:\"framer-1vdkjx4\",\"data-framer-name\":\"Content\",layoutDependency:_,layoutId:\"FGY_KhGn6\",children:[/*#__PURE__*/r(m,{__fromCanvasComponent:!0,children:/*#__PURE__*/r(h.Fragment,{children:/*#__PURE__*/r(g.h3,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(2, 32, 182))\"},children:\"Avalon Harbor Mooring Info\"})}),className:\"framer-17zf6ji\",fonts:[\"GF;Inter-600\"],layoutDependency:_,layoutId:\"mDCLQZEdN\",style:{\"--extracted-a0htzi\":\"rgb(2, 32, 182)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:!0}),/*#__PURE__*/r(g.div,{className:\"framer-vl8v9h-container\",layoutDependency:_,layoutId:\"oCSDg5n8D-container\",children:/*#__PURE__*/r(b,{fontControl:{fontFamily:'\"Inter\", sans-serif',fontSize:\"16px\",letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",hoverOptions:{backgroundColor:'var(--token-0b66cf01-8b53-439d-9999-ef0e4b2c4605, rgb(20, 45, 204)) /* {\"name\":\"NCMA HOVER BTN\"} */',color:\"rgb(255, 255, 255)\",scale:1.1,transition:{damping:30,stiffness:400,type:\"spring\"}},id:\"oCSDg5n8D\",layoutId:\"oCSDg5n8D\",srcFile:\"https://framerusercontent.com/assets/OYuBTQ7D0OG2W6tT4Z6bD1ufdM.pdf\",srcType:\"Upload\",srcURL:\"\",styleOptions:{backgroundColor:'var(--token-29621ae1-31a1-43c3-8529-d5ec49d6ad70, rgb(10, 31, 175)) /* {\"name\":\"NCMA BLUE BTN\"} */',borderRadius:10,color:\"rgb(255, 255, 255)\",gap:5,padding:10,paddingBottom:12,paddingLeft:15,paddingPerSide:!0,paddingRight:15,paddingTop:12},text:\"Download\",width:\"100%\"})})]})]}),/*#__PURE__*/e(g.div,{className:\"framer-9k7rbw\",\"data-framer-name\":\"Card\",layoutDependency:_,layoutId:\"GOSeRwOgH\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,boxShadow:\"0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05)\"},children:[/*#__PURE__*/r(d,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,sizes:\"225px\",...R(j)},className:\"framer-1b7fm8w\",\"data-framer-name\":\"Image\",layoutDependency:_,layoutId:\"KJds4_ogi\",style:{borderTopLeftRadius:20,borderTopRightRadius:20}}),/*#__PURE__*/e(g.div,{className:\"framer-c24m48\",\"data-framer-name\":\"Content\",layoutDependency:_,layoutId:\"beasYFUc4\",children:[/*#__PURE__*/r(m,{__fromCanvasComponent:!0,children:/*#__PURE__*/r(h.Fragment,{children:/*#__PURE__*/r(g.h3,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(2, 32, 182))\"},children:\"USCG Float Plan\"})}),className:\"framer-13jvvmm\",fonts:[\"GF;Inter-600\"],layoutDependency:_,layoutId:\"HwCq7TF0i\",style:{\"--extracted-a0htzi\":\"rgb(2, 32, 182)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:!0}),/*#__PURE__*/r(g.div,{className:\"framer-10e0vs0-container\",layoutDependency:_,layoutId:\"iEoCY0ngl-container\",children:/*#__PURE__*/r(b,{fontControl:{fontFamily:'\"Inter\", sans-serif',fontSize:\"16px\",letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",hoverOptions:{backgroundColor:'var(--token-0b66cf01-8b53-439d-9999-ef0e4b2c4605, rgb(20, 45, 204)) /* {\"name\":\"NCMA HOVER BTN\"} */',color:\"rgb(255, 255, 255)\",scale:1.1,transition:{damping:30,stiffness:400,type:\"spring\"}},id:\"iEoCY0ngl\",layoutId:\"iEoCY0ngl\",srcFile:\"https://framerusercontent.com/assets/bTUTotZ0nxIYV4XXyxzJppCx3lA.pdf\",srcType:\"Upload\",srcURL:\"\",styleOptions:{backgroundColor:'var(--token-29621ae1-31a1-43c3-8529-d5ec49d6ad70, rgb(10, 31, 175)) /* {\"name\":\"NCMA BLUE BTN\"} */',borderRadius:10,color:\"rgb(255, 255, 255)\",gap:5,padding:10,paddingBottom:12,paddingLeft:15,paddingPerSide:!0,paddingRight:15,paddingTop:12},text:\"Download\",width:\"100%\"})})]})]}),/*#__PURE__*/e(g.div,{className:\"framer-1o4jcpx\",\"data-framer-name\":\"Card\",layoutDependency:_,layoutId:\"A15NK_ZWx\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,boxShadow:\"0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05)\"},children:[/*#__PURE__*/r(d,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,sizes:\"225px\",...R(N)},className:\"framer-2zl7lm\",\"data-framer-name\":\"Image\",layoutDependency:_,layoutId:\"pEvVKvjuU\",style:{borderTopLeftRadius:20,borderTopRightRadius:20}}),/*#__PURE__*/e(g.div,{className:\"framer-1rn6g7w\",\"data-framer-name\":\"Content\",layoutDependency:_,layoutId:\"y61x7kFFq\",children:[/*#__PURE__*/r(m,{__fromCanvasComponent:!0,children:/*#__PURE__*/r(h.Fragment,{children:/*#__PURE__*/r(g.h3,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(2, 32, 182))\"},children:\"VHF Radio Operation\"})}),className:\"framer-hgxll2\",fonts:[\"GF;Inter-600\"],layoutDependency:_,layoutId:\"DxCvGVI47\",style:{\"--extracted-a0htzi\":\"rgb(2, 32, 182)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:!0}),/*#__PURE__*/r(g.div,{className:\"framer-16kb3oc-container\",layoutDependency:_,layoutId:\"LB6Xhdjqb-container\",children:/*#__PURE__*/r(b,{fontControl:{fontFamily:'\"Inter\", sans-serif',fontSize:\"16px\",letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",hoverOptions:{backgroundColor:'var(--token-0b66cf01-8b53-439d-9999-ef0e4b2c4605, rgb(20, 45, 204)) /* {\"name\":\"NCMA HOVER BTN\"} */',color:\"rgb(255, 255, 255)\",scale:1.1,transition:{damping:30,stiffness:400,type:\"spring\"}},id:\"LB6Xhdjqb\",layoutId:\"LB6Xhdjqb\",srcFile:\"https://framerusercontent.com/assets/YitRfxvu807IE9T0MQlx3sO6t8.pdf\",srcType:\"Upload\",srcURL:\"\",styleOptions:{backgroundColor:'var(--token-29621ae1-31a1-43c3-8529-d5ec49d6ad70, rgb(10, 31, 175)) /* {\"name\":\"NCMA BLUE BTN\"} */',borderRadius:10,color:\"rgb(255, 255, 255)\",gap:5,padding:10,paddingBottom:12,paddingLeft:15,paddingPerSide:!0,paddingRight:15,paddingTop:12},text:\"Download\",width:\"100%\"})})]})]})]}),/*#__PURE__*/e(g.div,{className:\"framer-1f4zj9j\",layoutDependency:_,layoutId:\"c4biqPitN\",children:[/*#__PURE__*/e(g.div,{className:\"framer-gnqcbe\",\"data-framer-name\":\"Card\",layoutDependency:_,layoutId:\"v_yqycJVx\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,boxShadow:\"0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05)\"},children:[/*#__PURE__*/r(d,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,sizes:\"225px\",...R(T)},className:\"framer-1xjv0nz\",\"data-framer-name\":\"Image\",layoutDependency:_,layoutId:\"i0OaoA2T4\",style:{borderTopLeftRadius:20,borderTopRightRadius:20}}),/*#__PURE__*/e(g.div,{className:\"framer-1kuuhqq\",\"data-framer-name\":\"Content\",layoutDependency:_,layoutId:\"f3E1yB1wH\",children:[/*#__PURE__*/r(m,{__fromCanvasComponent:!0,children:/*#__PURE__*/r(h.Fragment,{children:/*#__PURE__*/r(g.h3,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(2, 32, 182))\"},children:\"Anchoring Scope\"})}),className:\"framer-13jazuf\",fonts:[\"GF;Inter-600\"],layoutDependency:_,layoutId:\"J8LIhtbPH\",style:{\"--extracted-a0htzi\":\"rgb(2, 32, 182)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:!0}),/*#__PURE__*/r(g.div,{className:\"framer-11smb8j-container\",layoutDependency:_,layoutId:\"jsDoVX6I7-container\",children:/*#__PURE__*/r(b,{fontControl:{fontFamily:'\"Inter\", sans-serif',fontSize:\"16px\",letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",hoverOptions:{backgroundColor:'var(--token-0b66cf01-8b53-439d-9999-ef0e4b2c4605, rgb(20, 45, 204)) /* {\"name\":\"NCMA HOVER BTN\"} */',color:\"rgb(255, 255, 255)\",scale:1.1,transition:{damping:30,stiffness:400,type:\"spring\"}},id:\"jsDoVX6I7\",layoutId:\"jsDoVX6I7\",srcFile:\"https://framerusercontent.com/assets/XzegCNyTjR5BCyjlrFlwvhfIik.pdf\",srcType:\"Upload\",srcURL:\"\",styleOptions:{backgroundColor:'var(--token-29621ae1-31a1-43c3-8529-d5ec49d6ad70, rgb(10, 31, 175)) /* {\"name\":\"NCMA BLUE BTN\"} */',borderRadius:10,color:\"rgb(255, 255, 255)\",gap:5,padding:10,paddingBottom:12,paddingLeft:15,paddingPerSide:!0,paddingRight:15,paddingTop:12},text:\"Download\",width:\"100%\"})})]})]}),/*#__PURE__*/e(g.div,{className:\"framer-iy0gb3\",\"data-framer-name\":\"Card\",layoutDependency:_,layoutId:\"O0Mj_lGa9\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,boxShadow:\"0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05)\"},children:[/*#__PURE__*/r(d,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,sizes:\"225px\",...R(D)},className:\"framer-kyjhvw\",\"data-framer-name\":\"Image\",layoutDependency:_,layoutId:\"LiXBHXegf\",style:{borderTopLeftRadius:20,borderTopRightRadius:20}}),/*#__PURE__*/e(g.div,{className:\"framer-mexbyx\",\"data-framer-name\":\"Content\",layoutDependency:_,layoutId:\"x8gDSN1BP\",children:[/*#__PURE__*/r(m,{__fromCanvasComponent:!0,children:/*#__PURE__*/r(h.Fragment,{children:/*#__PURE__*/r(g.h3,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(2, 32, 182))\"},children:\"NOAA Marine Weather\"})}),className:\"framer-9devk0\",fonts:[\"GF;Inter-600\"],layoutDependency:_,layoutId:\"xGLzX5XQv\",style:{\"--extracted-a0htzi\":\"rgb(2, 32, 182)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:!0}),/*#__PURE__*/r(l,{href:L,openInNewTab:!0,children:/*#__PURE__*/r(g.a,{className:\"framer-9std8b framer-17jdrpx\",\"data-framer-name\":\"Button\",\"data-reset\":\"button\",layoutDependency:_,layoutId:\"wQM4AZsoF\",style:{backgroundColor:F,borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 0.7065919983928324px 0.7065919983928324px -0.625px rgba(0, 0, 0, 0.14764), 0px 1.8065619053231785px 1.8065619053231785px -1.25px rgba(0, 0, 0, 0.14398), 0px 3.6217592146567767px 3.6217592146567767px -1.875px rgba(0, 0, 0, 0.13793), 0px 6.8655999097303715px 6.8655999097303715px -2.5px rgba(0, 0, 0, 0.12711), 0px 13.646761411524492px 13.646761411524492px -3.125px rgba(0, 0, 0, 0.10451), 0px 30px 30px -3.75px rgba(0, 0, 0, 0.05)\"},children:/*#__PURE__*/r(m,{__fromCanvasComponent:!0,children:/*#__PURE__*/r(h.Fragment,{children:/*#__PURE__*/r(g.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"See Report\"})}),className:\"framer-1ejppll\",fonts:[\"GF;Inter-600\"],layoutDependency:_,layoutId:\"OXGHG9Ko9\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:!0})})})]})]}),/*#__PURE__*/e(g.div,{className:\"framer-1cv1695\",\"data-framer-name\":\"Card\",layoutDependency:_,layoutId:\"DsDyPixan\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,boxShadow:\"0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05)\"},children:[/*#__PURE__*/r(d,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,sizes:\"225px\",...R(z)},className:\"framer-18no5ts\",\"data-framer-name\":\"Image\",layoutDependency:_,layoutId:\"DoWFgRpxx\",style:{borderTopLeftRadius:20,borderTopRightRadius:20}}),/*#__PURE__*/e(g.div,{className:\"framer-1pxcyg7\",\"data-framer-name\":\"Content\",layoutDependency:_,layoutId:\"KMY6g5rXO\",children:[/*#__PURE__*/r(m,{__fromCanvasComponent:!0,children:/*#__PURE__*/r(h.Fragment,{children:/*#__PURE__*/r(g.h3,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(2, 32, 182))\"},children:\"Newport Beach Harbor Map\"})}),className:\"framer-1o4ak0f\",fonts:[\"GF;Inter-600\"],layoutDependency:_,layoutId:\"tOAjQJSBF\",style:{\"--extracted-a0htzi\":\"rgb(2, 32, 182)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:!0}),/*#__PURE__*/r(g.div,{className:\"framer-s0uevj-container\",layoutDependency:_,layoutId:\"b3SpCcaJe-container\",children:/*#__PURE__*/r(b,{fontControl:{fontFamily:'\"Inter\", sans-serif',fontSize:\"16px\",letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",hoverOptions:{backgroundColor:'var(--token-0b66cf01-8b53-439d-9999-ef0e4b2c4605, rgb(20, 45, 204)) /* {\"name\":\"NCMA HOVER BTN\"} */',color:\"rgb(255, 255, 255)\",scale:1.1,transition:{damping:30,stiffness:400,type:\"spring\"}},id:\"b3SpCcaJe\",layoutId:\"b3SpCcaJe\",srcFile:\"https://framerusercontent.com/assets/efoICIm8xMhom7kOuuktY2cLUI.pdf\",srcType:\"Upload\",srcURL:\"\",styleOptions:{backgroundColor:'var(--token-29621ae1-31a1-43c3-8529-d5ec49d6ad70, rgb(10, 31, 175)) /* {\"name\":\"NCMA BLUE BTN\"} */',borderRadius:10,color:\"rgb(255, 255, 255)\",gap:5,padding:10,paddingBottom:12,paddingLeft:15,paddingPerSide:!0,paddingRight:15,paddingTop:12},text:\"Download\",width:\"100%\"})})]})]}),/*#__PURE__*/e(g.div,{className:\"framer-7vihj5\",\"data-framer-name\":\"Card\",layoutDependency:_,layoutId:\"Gt193ymdu\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,boxShadow:\"0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05)\"},children:[/*#__PURE__*/r(d,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,sizes:\"225px\",...R(S)},className:\"framer-eyvpp2\",\"data-framer-name\":\"Image\",layoutDependency:_,layoutId:\"YqXkOVPaf\",style:{borderTopLeftRadius:20,borderTopRightRadius:20}}),/*#__PURE__*/e(g.div,{className:\"framer-hzz50k\",\"data-framer-name\":\"Content\",layoutDependency:_,layoutId:\"F8WQZFrZr\",children:[/*#__PURE__*/r(m,{__fromCanvasComponent:!0,children:/*#__PURE__*/r(h.Fragment,{children:/*#__PURE__*/r(g.h3,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(2, 32, 182))\"},children:\"Boating in Mexico Guide\"})}),className:\"framer-reicpk\",fonts:[\"GF;Inter-600\"],layoutDependency:_,layoutId:\"oMu_50sba\",style:{\"--extracted-a0htzi\":\"rgb(2, 32, 182)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:!0}),/*#__PURE__*/r(g.div,{className:\"framer-1pdf3di-container\",layoutDependency:_,layoutId:\"IfD9vbrQW-container\",children:/*#__PURE__*/r(b,{fontControl:{fontFamily:'\"Inter\", sans-serif',fontSize:\"16px\",letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",hoverOptions:{backgroundColor:'var(--token-0b66cf01-8b53-439d-9999-ef0e4b2c4605, rgb(20, 45, 204)) /* {\"name\":\"NCMA HOVER BTN\"} */',color:\"rgb(255, 255, 255)\",scale:1.1,transition:{damping:30,stiffness:400,type:\"spring\"}},id:\"IfD9vbrQW\",layoutId:\"IfD9vbrQW\",srcFile:\"https://framerusercontent.com/assets/iTDCpOPzA0VgA3ZDCvt7Lyvv14c.pdf\",srcType:\"Upload\",srcURL:\"\",styleOptions:{backgroundColor:'var(--token-29621ae1-31a1-43c3-8529-d5ec49d6ad70, rgb(10, 31, 175)) /* {\"name\":\"NCMA BLUE BTN\"} */',borderRadius:10,color:\"rgb(255, 255, 255)\",gap:5,padding:10,paddingBottom:12,paddingLeft:15,paddingPerSide:!0,paddingRight:15,paddingTop:12},text:\"Download\",width:\"100%\"})})]})]})]})]})})})});}),N=['.framer-UB4id [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-UB4id .framer-17jdrpx { display: block; }\",\".framer-UB4id .framer-1i5m91w { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 40px 100px 40px; position: relative; width: 1200px; }\",\".framer-UB4id .framer-15gljcf, .framer-UB4id .framer-1f4zj9j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 15px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1100px; }\",\".framer-UB4id .framer-11nnc6b, .framer-UB4id .framer-gnqcbe { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; min-width: 100px; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 225px; will-change: var(--framer-will-change-override, transform); }\",\".framer-UB4id .framer-ib1kfx, .framer-UB4id .framer-1xwtwp, .framer-UB4id .framer-1b7fm8w, .framer-UB4id .framer-2zl7lm, .framer-UB4id .framer-1xjv0nz, .framer-UB4id .framer-kyjhvw, .framer-UB4id .framer-18no5ts, .framer-UB4id .framer-eyvpp2 { aspect-ratio: 1.3333333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 169px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-UB4id .framer-1ml9qxx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 17px; height: min-content; justify-content: center; padding: 20px 20px 20px 20px; position: relative; width: 100%; }\",\".framer-UB4id .framer-1tipmgp, .framer-UB4id .framer-17zf6ji, .framer-UB4id .framer-13jvvmm, .framer-UB4id .framer-hgxll2, .framer-UB4id .framer-13jazuf, .framer-UB4id .framer-9devk0, .framer-UB4id .framer-1o4ak0f, .framer-UB4id .framer-reicpk { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-UB4id .framer-n2kcju-container, .framer-UB4id .framer-vl8v9h-container, .framer-UB4id .framer-10e0vs0-container, .framer-UB4id .framer-16kb3oc-container, .framer-UB4id .framer-11smb8j-container, .framer-UB4id .framer-s0uevj-container, .framer-UB4id .framer-1pdf3di-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-UB4id .framer-i2jcen, .framer-UB4id .framer-9k7rbw, .framer-UB4id .framer-1o4jcpx, .framer-UB4id .framer-iy0gb3, .framer-UB4id .framer-1cv1695, .framer-UB4id .framer-7vihj5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 225px; will-change: var(--framer-will-change-override, transform); }\",\".framer-UB4id .framer-1vdkjx4, .framer-UB4id .framer-mexbyx { 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: center; padding: 20px 20px 20px 20px; position: relative; width: 100%; }\",\".framer-UB4id .framer-c24m48, .framer-UB4id .framer-1rn6g7w, .framer-UB4id .framer-1kuuhqq, .framer-UB4id .framer-1pxcyg7, .framer-UB4id .framer-hzz50k { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 20px 20px 20px 20px; position: relative; width: 100%; }\",\".framer-UB4id .framer-9std8b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 15px 15px 15px 15px; position: relative; text-decoration: none; width: min-content; }\",\".framer-UB4id .framer-1ejppll { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-UB4id .framer-1i5m91w, .framer-UB4id .framer-15gljcf, .framer-UB4id .framer-11nnc6b, .framer-UB4id .framer-1ml9qxx, .framer-UB4id .framer-i2jcen, .framer-UB4id .framer-1vdkjx4, .framer-UB4id .framer-9k7rbw, .framer-UB4id .framer-c24m48, .framer-UB4id .framer-1o4jcpx, .framer-UB4id .framer-1rn6g7w, .framer-UB4id .framer-1f4zj9j, .framer-UB4id .framer-gnqcbe, .framer-UB4id .framer-1kuuhqq, .framer-UB4id .framer-iy0gb3, .framer-UB4id .framer-mexbyx, .framer-UB4id .framer-9std8b, .framer-UB4id .framer-1cv1695, .framer-UB4id .framer-1pxcyg7, .framer-UB4id .framer-7vihj5, .framer-UB4id .framer-hzz50k { gap: 0px; } .framer-UB4id .framer-1i5m91w > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-UB4id .framer-1i5m91w > :first-child, .framer-UB4id .framer-11nnc6b > :first-child, .framer-UB4id .framer-1ml9qxx > :first-child, .framer-UB4id .framer-i2jcen > :first-child, .framer-UB4id .framer-1vdkjx4 > :first-child, .framer-UB4id .framer-9k7rbw > :first-child, .framer-UB4id .framer-c24m48 > :first-child, .framer-UB4id .framer-1o4jcpx > :first-child, .framer-UB4id .framer-1rn6g7w > :first-child, .framer-UB4id .framer-gnqcbe > :first-child, .framer-UB4id .framer-1kuuhqq > :first-child, .framer-UB4id .framer-iy0gb3 > :first-child, .framer-UB4id .framer-mexbyx > :first-child, .framer-UB4id .framer-1cv1695 > :first-child, .framer-UB4id .framer-1pxcyg7 > :first-child, .framer-UB4id .framer-7vihj5 > :first-child, .framer-UB4id .framer-hzz50k > :first-child { margin-top: 0px; } .framer-UB4id .framer-1i5m91w > :last-child, .framer-UB4id .framer-11nnc6b > :last-child, .framer-UB4id .framer-1ml9qxx > :last-child, .framer-UB4id .framer-i2jcen > :last-child, .framer-UB4id .framer-1vdkjx4 > :last-child, .framer-UB4id .framer-9k7rbw > :last-child, .framer-UB4id .framer-c24m48 > :last-child, .framer-UB4id .framer-1o4jcpx > :last-child, .framer-UB4id .framer-1rn6g7w > :last-child, .framer-UB4id .framer-gnqcbe > :last-child, .framer-UB4id .framer-1kuuhqq > :last-child, .framer-UB4id .framer-iy0gb3 > :last-child, .framer-UB4id .framer-mexbyx > :last-child, .framer-UB4id .framer-1cv1695 > :last-child, .framer-UB4id .framer-1pxcyg7 > :last-child, .framer-UB4id .framer-7vihj5 > :last-child, .framer-UB4id .framer-hzz50k > :last-child { margin-bottom: 0px; } .framer-UB4id .framer-15gljcf > *, .framer-UB4id .framer-1f4zj9j > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-UB4id .framer-15gljcf > :first-child, .framer-UB4id .framer-1f4zj9j > :first-child, .framer-UB4id .framer-9std8b > :first-child { margin-left: 0px; } .framer-UB4id .framer-15gljcf > :last-child, .framer-UB4id .framer-1f4zj9j > :last-child, .framer-UB4id .framer-9std8b > :last-child { margin-right: 0px; } .framer-UB4id .framer-11nnc6b > *, .framer-UB4id .framer-i2jcen > *, .framer-UB4id .framer-9k7rbw > *, .framer-UB4id .framer-1o4jcpx > *, .framer-UB4id .framer-gnqcbe > *, .framer-UB4id .framer-iy0gb3 > *, .framer-UB4id .framer-1cv1695 > *, .framer-UB4id .framer-7vihj5 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-UB4id .framer-1ml9qxx > * { margin: 0px; margin-bottom: calc(17px / 2); margin-top: calc(17px / 2); } .framer-UB4id .framer-1vdkjx4 > *, .framer-UB4id .framer-mexbyx > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-UB4id .framer-c24m48 > *, .framer-UB4id .framer-1rn6g7w > *, .framer-UB4id .framer-1kuuhqq > *, .framer-UB4id .framer-1pxcyg7 > *, .framer-UB4id .framer-hzz50k > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-UB4id .framer-9std8b > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\"],T=c(j,N,\"framer-UB4id\");export default T;T.displayName=\"Training Downloads\",T.defaultProps={height:836.5,width:1200},t(T,{w_Fdq1nM6:{title:\"card1\",type:i.ResponsiveImage},q0IjEhx5a:{title:\"card2\",type:i.ResponsiveImage},vyv0OsMnl:{title:\"card3\",type:i.ResponsiveImage},hENUX7x9X:{title:\"card4\",type:i.ResponsiveImage},gmv_GuQYx:{title:\"card5\",type:i.ResponsiveImage},wCVlOPqHu:{title:\"card6\",type:i.ResponsiveImage},rrtagR3Qe:{title:\"Link 6\",type:i.Link},P0s3vbgJk:{title:\"card7\",type:i.ResponsiveImage},IJLBk17u1:{title:\"card8\",type:i.ResponsiveImage},In7L6sAVW:{defaultValue:\"rgb(2, 32, 182)\",title:\"Background\",type:i.Color}}),a(T,[{family:\"Inter\",moduleAsset:{localModuleIdentifier:\"local-module:canvasComponent/H3E953Atk:default\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuGKYMZhrib2Bg-4.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuGKYMZhrib2Bg-4.ttf\",weight:\"600\"},...u]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerH3E953Atk\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"836.5\",\"framerVariables\":\"{\\\"w_Fdq1nM6\\\":\\\"card1\\\",\\\"q0IjEhx5a\\\":\\\"card2\\\",\\\"vyv0OsMnl\\\":\\\"card3\\\",\\\"hENUX7x9X\\\":\\\"card4\\\",\\\"gmv_GuQYx\\\":\\\"card5\\\",\\\"wCVlOPqHu\\\":\\\"card6\\\",\\\"rrtagR3Qe\\\":\\\"link6\\\",\\\"P0s3vbgJk\\\":\\\"card7\\\",\\\"IJLBk17u1\\\":\\\"card8\\\",\\\"In7L6sAVW\\\":\\\"background\\\"}\",\"framerIntrinsicWidth\":\"1200\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./H3E953Atk.map", "// Generated by Framer (38fb4ea)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,Image,PropertyOverrides,RichText,useActiveVariantCallback,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useOverlayState,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import*as ReactDOM from\"react-dom\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/pVNq3gPwiiJPmLV2YSlc/Embed.js\";import VideoGrid from\"#framer/local/canvasComponent/b0g7mm3DW/b0g7mm3DW.js\";import TrainingDownloads from\"#framer/local/canvasComponent/H3E953Atk/H3E953Atk.js\";import FooterEmail from\"#framer/local/canvasComponent/hFTNtlMK_/hFTNtlMK_.js\";import FloatingCharterButton from\"#framer/local/canvasComponent/M97eY3a3V/M97eY3a3V.js\";import Navbar from\"#framer/local/canvasComponent/nT08GBLK7/nT08GBLK7.js\";import CalendlyBooking from\"#framer/local/canvasComponent/PkliOBHza/PkliOBHza.js\";import NCMABOOKYOURCOURSE from\"#framer/local/canvasComponent/T_iDyQOEI/T_iDyQOEI.js\";import CoastalCruisingCourse from\"#framer/local/canvasComponent/wrjM4u0hf/wrjM4u0hf.js\";import metadataProvider from\"#framer/local/webPageMetadata/qBmSG_fmG/qBmSG_fmG.js\";const NavbarFonts=getFonts(Navbar);const CoastalCruisingCourseFonts=getFonts(CoastalCruisingCourse);const FloatingCharterButtonFonts=getFonts(FloatingCharterButton);const ImageWithFX=withFX(Image);const VideoGridFonts=getFonts(VideoGrid);const TrainingDownloadsFonts=getFonts(TrainingDownloads);const EmbedFonts=getFonts(Embed);const NCMABOOKYOURCOURSEFonts=getFonts(NCMABOOKYOURCOURSE);const FooterEmailFonts=getFonts(FooterEmail);const CalendlyBookingFonts=getFonts(CalendlyBooking);const ContainerWithFX=withFX(Container);const cycleOrder=[\"TInsHSv5H\",\"nxrUOo3kt\",\"Vgf29pOW5\",\"jj4dtD8DP\"];const breakpoints={jj4dtD8DP:\"(min-width: 1800px)\",nxrUOo3kt:\"(max-width: 809px)\",TInsHSv5H:\"(min-width: 1200px) and (max-width: 1799px)\",Vgf29pOW5:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-5PAGj\";const variantClassNames={jj4dtD8DP:\"framer-v-f5mrjt\",nxrUOo3kt:\"framer-v-1xhzzk5\",TInsHSv5H:\"framer-v-17f2skt\",Vgf29pOW5:\"framer-v-9mys50\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0};const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transition:transition1,x:0,y:0};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const metadata=metadataProvider();const humanReadableVariantMap={\"Large Desktops\":\"jj4dtD8DP\",Desktop:\"TInsHSv5H\",Phone:\"nxrUOo3kt\",Tablet:\"Vgf29pOW5\"};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:\"TInsHSv5H\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);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);}if(metadata1.bodyClassName){Array.from(document.body.classList).filter(c=>c.startsWith(\"framer-body-\")).map(c=>document.body.classList.remove(c));document.body.classList.add(`${metadata1.bodyClassName}-framer-5PAGj`);return()=>{document.body.classList.remove(`${metadata1.bodyClassName}-framer-5PAGj`);};}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const tap42m929=overlay=>activeVariantCallback(async(...args)=>{overlay.toggle();});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"jj4dtD8DP\")return true;return!isBrowser();};const isDisplayed1=()=>{if(baseVariant===\"jj4dtD8DP\")return!isBrowser();return true;};const isDisplayed2=()=>{if(baseVariant===\"nxrUOo3kt\")return!isBrowser();return true;};const isDisplayed3=()=>{if([\"Vgf29pOW5\",\"jj4dtD8DP\"].includes(baseVariant))return!isBrowser();return true;};const isDisplayed4=()=>{if([\"Vgf29pOW5\",\"jj4dtD8DP\"].includes(baseVariant))return true;return!isBrowser();};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"TInsHSv5H\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-17f2skt\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jj4dtD8DP:{width:\"100vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-u4ef5o-container hidden-17f2skt hidden-1xhzzk5 hidden-9mys50\",children:/*#__PURE__*/_jsx(Navbar,{height:\"100%\",id:\"MnQ8M0sT2\",layoutId:\"MnQ8M0sT2\",style:{height:\"100%\",width:\"100%\"},variant:\"Fdv89Vw02\",width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1e18x9s-container hidden-f5mrjt\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nxrUOo3kt:{variant:\"Lqf7caSsB\"},Vgf29pOW5:{variant:\"hsOY8CxNN\"}},children:/*#__PURE__*/_jsx(Navbar,{height:\"100%\",id:\"KnlyxqIKx\",layoutId:\"KnlyxqIKx\",style:{width:\"100%\"},variant:\"dAIjIRKmW\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kukxow-container\",\"data-framer-name\":\"Training Resources\",name:\"Training Resources\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nxrUOo3kt:{variant:\"gEqGaIp3R\"},Vgf29pOW5:{variant:\"R9hL6Rrzu\"}},children:/*#__PURE__*/_jsx(CoastalCruisingCourse,{header:\"Training Resources\",height:\"100%\",id:\"eCJMADBu_\",image2:addImageAlt({src:\"https://framerusercontent.com/images/sHAliKd6oThoYnYdhDwMqgthI4A.jpg\",srcSet:\"https://framerusercontent.com/images/sHAliKd6oThoYnYdhDwMqgthI4A.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/sHAliKd6oThoYnYdhDwMqgthI4A.jpg 800w\"},\"\"),layoutId:\"eCJMADBu_\",name:\"Training Resources\",style:{width:\"100%\"},text:\"Newport Coast Maritime Academy   Powerboat School\",variant:\"oWYnUNDHj\",width:\"100%\"})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hogpfp-container hidden-1xhzzk5\",layoutScroll:true,children:/*#__PURE__*/_jsx(FloatingCharterButton,{height:\"100%\",id:\"qKGqe9v0T\",layoutId:\"qKGqe9v0T\",title:\"Reserve Now\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-1m62675\",\"data-framer-name\":\"NCMA BOOK YOUR COURSE\",name:\"NCMA BOOK YOUR COURSE\",children:[/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",intrinsicHeight:150,intrinsicWidth:300,pixelHeight:150,pixelWidth:300,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/5WWtBaMwfVFOaDE7dJ5CX6H20.png\"},className:\"framer-4qa2k6\",style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.6px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(2, 32, 182)\"},children:\"Training Resources\"})}),className:\"framer-a4k302\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:[\"Welcome to our Training Resources page!\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"The instructional videos and informative materials below are available\",/*#__PURE__*/_jsx(\"br\",{}),\"as additional resources to supplement your on-the-water training.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})]})}),className:\"framer-1yoasa4\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1khn5cf-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nxrUOo3kt:{variant:\"e7Xo4hBBJ\"},Vgf29pOW5:{variant:\"l2WLht300\"}},children:/*#__PURE__*/_jsx(VideoGrid,{height:\"100%\",id:\"NiUvDZotP\",layoutId:\"NiUvDZotP\",style:{height:\"100%\",width:\"100%\"},variant:\"ZdN5REziK\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-zkzbgz\",\"data-framer-name\":\"NCMA BOOK YOUR COURSE\",name:\"NCMA BOOK YOUR COURSE\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nxrUOo3kt:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:150,intrinsicWidth:300,pixelHeight:150,pixelWidth:300,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/5WWtBaMwfVFOaDE7dJ5CX6H20.png\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",intrinsicHeight:150,intrinsicWidth:300,loading:\"lazy\",pixelHeight:150,pixelWidth:300,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/5WWtBaMwfVFOaDE7dJ5CX6H20.png\"},className:\"framer-8m2tbw\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.6px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(2, 32, 182)\"},children:\"Training Downloads\"})}),className:\"framer-z1zw0l\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Feel free to download our materials for your informational library.\"})}),className:\"framer-4ga77g\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vaduu3-container\",children:/*#__PURE__*/_jsx(TrainingDownloads,{gmv_GuQYx:addImageAlt({src:\"https://framerusercontent.com/images/SSgat2dVSsIeGoyMyAz7T1FSNiY.png\"},\"\"),height:\"100%\",hENUX7x9X:addImageAlt({src:\"https://framerusercontent.com/images/ap8YwSUa5fEvJ2NJ7zH8Zbtk4.png\"},\"\"),id:\"qz0w_mBRs\",IJLBk17u1:addImageAlt({src:\"https://framerusercontent.com/images/ho5dN7b7JO0xZzRXYPs7t0Iao.png\"},\"\"),In7L6sAVW:\"rgb(2, 32, 182)\",layoutId:\"qz0w_mBRs\",P0s3vbgJk:addImageAlt({src:\"https://framerusercontent.com/images/S1s89IHWi0QU51m6btmcssKmBxg.png\"},\"\"),q0IjEhx5a:addImageAlt({src:\"https://framerusercontent.com/images/TfaWnplXTF95IYnuN875W5lv57M.png\",srcSet:\"https://framerusercontent.com/images/TfaWnplXTF95IYnuN875W5lv57M.png?scale-down-to=512 512w,https://framerusercontent.com/images/TfaWnplXTF95IYnuN875W5lv57M.png 870w\"},\"\"),rrtagR3Qe:\"https://marine.weather.gov/MapClick.php?zoneid=PZZ655\",style:{width:\"100%\"},vyv0OsMnl:addImageAlt({src:\"https://framerusercontent.com/images/DAiLOfC1yuny3nDPsXtslnAvu6c.jpeg\"},\"\"),w_Fdq1nM6:addImageAlt({src:\"https://framerusercontent.com/images/TEg6kw2ORvY9NkukT5UUNLA5PwE.png\",srcSet:\"https://framerusercontent.com/images/TEg6kw2ORvY9NkukT5UUNLA5PwE.png?scale-down-to=1024 743w,https://framerusercontent.com/images/TEg6kw2ORvY9NkukT5UUNLA5PwE.png?scale-down-to=2048 1486w,https://framerusercontent.com/images/TEg6kw2ORvY9NkukT5UUNLA5PwE.png 1758w\"},\"power boat school training \"),wCVlOPqHu:addImageAlt({src:\"https://framerusercontent.com/images/HZ7DttFUVOc9X8Sviuk26dulmA.png\"},\"\"),width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1s415tf-container\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<iframe style=\"border: none; margin: 0px; padding: 0px; width: 100%; min-width: 300px; display: block; user-select: none; min-height: 250px; z-index: 9999999;\" src=\"https://app.cloutly.com/widget-cloutly/e432eab9-2d59-4290-9a40-4bbd743dd3af\"></iframe>\\n\\n',id:\"j6hEG1avI\",layoutId:\"j6hEG1avI\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jupbm1-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nxrUOo3kt:{style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(NCMABOOKYOURCOURSE,{height:\"100%\",id:\"q82kbLoDn\",layoutId:\"q82kbLoDn\",style:{width:\"100%\"},title:\"Book Your Training Today!\",width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-tbczoc hidden-17f2skt hidden-1xhzzk5 hidden-9mys50\",\"data-framer-name\":\"Footer\",name:\"Footer\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jj4dtD8DP:{width:\"max(100vw, 0px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-xuflru-container\",children:/*#__PURE__*/_jsx(FooterEmail,{height:\"100%\",id:\"cWupolcsI\",layoutId:\"cWupolcsI\",style:{width:\"100%\"},variant:\"yMYLMUQ8f\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-137rfxu-container\",id:\"137rfxu\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Vgf29pOW5:{style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(CalendlyBooking,{height:\"100%\",id:\"MObAExeFy\",layoutId:\"MObAExeFy\",style:{width:\"100%\"},tap:tap42m929(overlay),width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-tsse5q\",\"data-framer-portal-id\":\"137rfxu\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"lWMRa2Lbp\")}),document.querySelector(\"#overlay\"))})})]})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-iu14w3\",\"data-framer-name\":\"Footer\",name:\"Footer\",children:[isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"min(100vw, 1200px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-pi306e-container hidden-9mys50 hidden-f5mrjt\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nxrUOo3kt:{variant:\"jmW9mI7LS\"}},children:/*#__PURE__*/_jsx(FooterEmail,{height:\"100%\",id:\"IPxJ0ehFX\",layoutId:\"IPxJ0ehFX\",style:{width:\"100%\"},variant:\"yMYLMUQ8f\",width:\"100%\"})})})}),isDisplayed4()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jj4dtD8DP:{width:\"100vw\"},Vgf29pOW5:{width:\"max(min(100vw, 1200px), 0px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-7li8s0-container hidden-17f2skt hidden-1xhzzk5\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Vgf29pOW5:{variant:\"cj9tp__q1\"}},children:/*#__PURE__*/_jsx(FooterEmail,{height:\"100%\",id:\"OwE_Hr0A5\",layoutId:\"OwE_Hr0A5\",style:{width:\"100%\"},variant:\"yMYLMUQ8f\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-5PAGj { background: white; }`,\".framer-5PAGj.framer-3coczd, .framer-5PAGj .framer-3coczd { display: block; }\",\".framer-5PAGj.framer-17f2skt { 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: 1200px; }\",\".framer-5PAGj .framer-u4ef5o-container { flex: none; height: 80px; position: relative; width: 100%; }\",\".framer-5PAGj .framer-1e18x9s-container, .framer-5PAGj .framer-1vaduu3-container, .framer-5PAGj .framer-137rfxu-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-5PAGj .framer-1kukxow-container, .framer-5PAGj .framer-1jupbm1-container { flex: none; height: auto; position: relative; width: 1200px; }\",\".framer-5PAGj .framer-1hogpfp-container { bottom: 100px; flex: none; height: auto; left: 90%; position: fixed; transform: translateX(-50%); width: auto; z-index: 2; }\",\".framer-5PAGj .framer-1m62675, .framer-5PAGj .framer-zkzbgz { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 10px 40px 10px 40px; position: relative; width: 1200px; }\",\".framer-5PAGj .framer-4qa2k6, .framer-5PAGj .framer-8m2tbw { flex: none; height: 181px; overflow: visible; position: relative; width: 368px; }\",\".framer-5PAGj .framer-a4k302, .framer-5PAGj .framer-z1zw0l { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-5PAGj .framer-1yoasa4, .framer-5PAGj .framer-4ga77g { flex: none; height: auto; max-width: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: 94%; word-break: break-word; word-wrap: break-word; }\",\".framer-5PAGj .framer-1khn5cf-container { flex: none; height: 1089px; position: relative; width: 100%; }\",\".framer-5PAGj .framer-1s415tf-container { flex: none; height: 400px; position: relative; width: 100%; }\",\".framer-5PAGj .framer-tbczoc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-5PAGj .framer-xuflru-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; z-index: 1; }\",\".framer-5PAGj .framer-tsse5q { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; }\",\".framer-5PAGj .framer-iu14w3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1200px; overflow: visible; padding: 49px 0px 0px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-5PAGj .framer-pi306e-container, .framer-5PAGj .framer-7li8s0-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-5PAGj.framer-17f2skt, .framer-5PAGj .framer-1m62675, .framer-5PAGj .framer-zkzbgz, .framer-5PAGj .framer-tbczoc { gap: 0px; } .framer-5PAGj.framer-17f2skt > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-5PAGj.framer-17f2skt > :first-child, .framer-5PAGj .framer-1m62675 > :first-child, .framer-5PAGj .framer-zkzbgz > :first-child { margin-top: 0px; } .framer-5PAGj.framer-17f2skt > :last-child, .framer-5PAGj .framer-1m62675 > :last-child, .framer-5PAGj .framer-zkzbgz > :last-child { margin-bottom: 0px; } .framer-5PAGj .framer-1m62675 > *, .framer-5PAGj .framer-zkzbgz > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-5PAGj .framer-tbczoc > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-5PAGj .framer-tbczoc > :first-child { margin-left: 0px; } .framer-5PAGj .framer-tbczoc > :last-child { margin-right: 0px; } }\",\"@media (min-width: 1200px) and (max-width: 1799px) { .framer-5PAGj .hidden-17f2skt { display: none !important; } }\",`@media (max-width: 809px) { .framer-5PAGj .hidden-1xhzzk5 { display: none !important; } .${metadata.bodyClassName}-framer-5PAGj { background: white; } .framer-5PAGj.framer-17f2skt { width: 390px; } .framer-5PAGj .framer-1e18x9s-container { order: 1; } .framer-5PAGj .framer-1kukxow-container { order: 2; width: 100%; } .framer-5PAGj .framer-1m62675 { order: 4; width: 100%; } .framer-5PAGj .framer-4qa2k6, .framer-5PAGj .framer-8m2tbw { width: 331px; } .framer-5PAGj .framer-1khn5cf-container { height: 2136px; order: 5; } .framer-5PAGj .framer-zkzbgz { order: 7; width: 100%; } .framer-5PAGj .framer-1vaduu3-container { order: 6; } .framer-5PAGj .framer-1s415tf-container { order: 10; } .framer-5PAGj .framer-1jupbm1-container { height: 1068px; order: 8; width: 381px; } .framer-5PAGj .framer-137rfxu-container { order: 9; } .framer-5PAGj .framer-iu14w3 { order: 12; padding: 0px; }}`,`@media (min-width: 810px) and (max-width: 1199px) { .framer-5PAGj .hidden-9mys50 { display: none !important; } .${metadata.bodyClassName}-framer-5PAGj { background: white; } .framer-5PAGj.framer-17f2skt { width: 810px; } .framer-5PAGj .framer-1e18x9s-container { order: 1; } .framer-5PAGj .framer-1kukxow-container { order: 2; width: 100%; } .framer-5PAGj .framer-1hogpfp-container { bottom: 15px; left: 88%; order: 4; } .framer-5PAGj .framer-1m62675 { order: 3; width: 100%; } .framer-5PAGj .framer-1yoasa4, .framer-5PAGj .framer-4ga77g { width: 1050px; } .framer-5PAGj .framer-1khn5cf-container { height: 2142px; order: 5; } .framer-5PAGj .framer-zkzbgz { order: 6; width: 100%; } .framer-5PAGj .framer-1vaduu3-container { order: 7; width: 90%; } .framer-5PAGj .framer-1s415tf-container { order: 8; } .framer-5PAGj .framer-1jupbm1-container { order: 9; width: 100%; } .framer-5PAGj .framer-137rfxu-container { height: 812px; order: 11; } .framer-5PAGj .framer-iu14w3 { order: 12; } .framer-5PAGj .framer-7li8s0-container { flex: 1 0 0px; width: 1px; }}`,`@media (min-width: 1800px) { .framer-5PAGj .hidden-f5mrjt { display: none !important; } .${metadata.bodyClassName}-framer-5PAGj { background: white; } .framer-5PAGj.framer-17f2skt, .framer-5PAGj .framer-7li8s0-container { width: 1800px; } .framer-5PAGj .framer-u4ef5o-container, .framer-5PAGj .framer-4qa2k6 { order: 0; } .framer-5PAGj .framer-1kukxow-container { order: 1; width: 100%; } .framer-5PAGj .framer-1hogpfp-container { bottom: 15px; left: unset; order: 4; right: 15px; transform: unset; } .framer-5PAGj .framer-1m62675 { order: 3; } .framer-5PAGj .framer-a4k302 { order: 1; } .framer-5PAGj .framer-1yoasa4 { order: 2; } .framer-5PAGj .framer-1khn5cf-container { order: 5; } .framer-5PAGj .framer-zkzbgz { order: 6; } .framer-5PAGj .framer-1vaduu3-container { order: 7; } .framer-5PAGj .framer-1s415tf-container { order: 8; } .framer-5PAGj .framer-1jupbm1-container { order: 9; } .framer-5PAGj .framer-tbczoc { order: 11; } .framer-5PAGj .framer-137rfxu-container { order: 10; } .framer-5PAGj .framer-iu14w3 { bottom: 0px; flex-wrap: wrap; left: 50%; max-width: 100%; order: 12; padding: 50px 0px 50px 0px; position: absolute; transform: translateX(-50%); }}`];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6220\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"nxrUOo3kt\":{\"layout\":[\"fixed\",\"auto\"]},\"Vgf29pOW5\":{\"layout\":[\"fixed\",\"auto\"]},\"jj4dtD8DP\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerqBmSG_fmG=withCSS(Component,css,\"framer-5PAGj\");export default FramerqBmSG_fmG;FramerqBmSG_fmG.displayName=\"Training Resourses Powerboat School Newport Beach\";FramerqBmSG_fmG.defaultProps={height:6220,width:1200};addFonts(FramerqBmSG_fmG,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"}]},...NavbarFonts,...CoastalCruisingCourseFonts,...FloatingCharterButtonFonts,...VideoGridFonts,...TrainingDownloadsFonts,...EmbedFonts,...NCMABOOKYOURCOURSEFonts,...FooterEmailFonts,...CalendlyBookingFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerqBmSG_fmG\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"6220\",\"framerIntrinsicWidth\":\"1200\",\"framerComponentViewportWidth\":\"true\",\"framerResponsiveScreen\":\"\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nxrUOo3kt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Vgf29pOW5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jj4dtD8DP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["PlayOptions", "ThumbnailOptions", "ThumbnailFormat", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "thumbnailURL", "getThumbnailURL", "getWebPSupported", "searchParams", "u", "wrapperStyle", "videoStyle", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "embedURL1", "videoId2", "embedURL2", "res", "format", "pre", "ext", "_getWebPSupported", "window", "element", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "YouTubeFonts", "getFonts", "Youtube", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "humanReadableVariantMap", "transitions", "Component", "Y", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "restProps", "ref", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "transition", "useVariantState", "layoutDependency", "defaultLayoutId", "ae", "p", "LayoutGroup", "motion", "cx", "u", "RichText2", "x", "css", "Framerb0g7mm3DW", "withCSS", "b0g7mm3DW_default", "addPropertyControls", "ControlType", "addFonts", "IconType", "SrcType", "metaTagSelector", "isPublishedSiteOrSSG", "Download", "props", "styleOptions", "hoverOptions", "iconOptions", "backgroundColor", "color", "borderRadius", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "gap", "isInPublishedSiteOrSSG", "downloadURL", "paddingValue", "getIcon", "ref", "ref1", "iconStyle", "p", "getCursor", "buttonTitle", "u", "motion", "buttonStyles", "flexAlignSwitch", "addPropertyControls", "ControlType", "fontControlStyles", "u", "getFonts", "Download", "y", "B", "w", "R", "k", "e", "a", "t", "re", "MotionConfigContext", "n", "se", "p", "I", "i", "o", "d", "l", "m", "f", "c", "s", "g", "C", "j", "Y", "useLocaleInfo", "x", "u", "v", "U", "N", "T", "D", "L", "z", "S", "F", "A", "O", "M", "q", "H", "E", "P", "X", "useVariantState", "y", "B", "_", "W", "pe", "V", "ae", "LayoutGroup", "motion", "cx", "Image2", "RichText2", "Download", "Link", "withCSS", "H3E953Atk_default", "addPropertyControls", "ControlType", "addFonts", "NavbarFonts", "getFonts", "nT08GBLK7_default", "CoastalCruisingCourseFonts", "wrjM4u0hf_default", "FloatingCharterButtonFonts", "M97eY3a3V_default", "ImageWithFX", "withFX", "Image2", "VideoGridFonts", "b0g7mm3DW_default", "TrainingDownloadsFonts", "H3E953Atk_default", "EmbedFonts", "Embed", "NCMABOOKYOURCOURSEFonts", "T_iDyQOEI_default", "FooterEmailFonts", "hFTNtlMK_default", "CalendlyBookingFonts", "PkliOBHza_default", "ContainerWithFX", "Container", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "addImageAlt", "image", "alt", "animation", "transition1", "animation1", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ie", "metadata1", "_document_querySelector", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "tap42m929", "overlay", "args", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "PropertyOverrides2", "ComponentViewportProvider", "Container", "nT08GBLK7_default", "wrjM4u0hf_default", "M97eY3a3V_default", "ImageWithFX", "RichText2", "x", "b0g7mm3DW_default", "H3E953Atk_default", "Embed", "T_iDyQOEI_default", "hFTNtlMK_default", "l", "ContainerWithFX", "PkliOBHza_default", "AnimatePresence", "Ga", "css", "FramerqBmSG_fmG", "withCSS", "qBmSG_fmG_default", "addFonts", "NavbarFonts", "CoastalCruisingCourseFonts", "FloatingCharterButtonFonts", "VideoGridFonts", "TrainingDownloadsFonts", "EmbedFonts", "NCMABOOKYOURCOURSEFonts", "FooterEmailFonts", "CalendlyBookingFonts", "__FramerMetadata__"]
}
