{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js", "ssg:https://framerusercontent.com/modules/fVOQewA91yvakto5wsC0/AWhCsk6pQHgIzAAYghr6/fOAZ1_0Ey.js", "ssg:https://framerusercontent.com/modules/zsZy1ND6tSZhXdivRbpD/hZcHjk854xhw0S9VfiEn/KS4gy0Ps7.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:// Safari sometimes struggles to render border-radius:\n// - on the canvas when changing from 0 to any other value\n// - or when rendering an iframe\nhasBorderRadius&&(showVideo||onCanvas)?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},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\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"315\",\"framerIntrinsicWidth\":\"560\",\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "import{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-Bold\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Bold.cyrillic-ext-XOTVL7ZR.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Bold.cyrillic-6LOMBC2V.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Bold.greek-ext-WXWSJXLB.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Bold.greek-YRST7ODZ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-Bold.latin-ext-BASA5UL3.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-Bold.latin-UCM45LQF.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-Bold.vietnamese-OEVJMXEP.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Black.cyrillic-ext-TU4ITVTR.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Black.cyrillic-JX7CGTYD.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Black.greek-ext-LS3GCBFI.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Black.greek-ZWCJHBP5.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-Black.latin-ext-BZLEUMX6.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-Black.latin-TETRYDF7.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-Black.vietnamese-RXQCC3EJ.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-BlackItalic.cyrillic-ext-TRM4ITYR.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-BlackItalic.cyrillic-FPHIQVZS.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-BlackItalic.greek-ext-JTGUUSP5.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-BlackItalic.greek-LUNA3RFO.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-BlackItalic.latin-ext-KU7ICFYH.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-BlackItalic.latin-FRVXWQSB.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-BlackItalic.vietnamese-2Q7MQKJX.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-BoldItalic.cyrillic-ext-PEYDHC3S.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-BoldItalic.cyrillic-7EIL6JWG.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-BoldItalic.greek-ext-3DJOYQMH.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-BoldItalic.greek-TJBTLTT7.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-BoldItalic.latin-ext-FVPCPRBJ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-BoldItalic.latin-5ZFQS4XK.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-BoldItalic.vietnamese-W2625PGF.woff2\",weight:\"700\"}]}];export const css=['.framer-GDhvs .framer-styles-preset-11ek3v:not(.rich-text-wrapper), .framer-GDhvs .framer-styles-preset-11ek3v.rich-text-wrapper h2 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 28px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-069d7260-7583-4dc5-b5eb-371dc0a63265, #000000); --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-GDhvs\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (47ebf4a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,withCSS,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Youtube as YouTube1}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js\";import{Spotify}from\"https://framerusercontent.com/modules/tW1ExjbbJRt9YcZ0Gyxk/7xLQ6of7kXWmBUVuRiYG/Spotify.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import SocialBlock from\"#framer/local/canvasComponent/evr_52zeB/evr_52zeB.js\";import SocialIcon from\"#framer/local/canvasComponent/KmDHs10xi/KmDHs10xi.js\";import MetricBlock from\"#framer/local/canvasComponent/simXMV868/simXMV868.js\";import Link1 from\"#framer/local/canvasComponent/Uy6233uCh/Uy6233uCh.js\";import PodcastBlock from\"#framer/local/canvasComponent/yOi3psDYZ/yOi3psDYZ.js\";import*as sharedStyle from\"#framer/local/css/fOAZ1_0Ey/fOAZ1_0Ey.js\";import*as sharedStyle1 from\"#framer/local/css/ol0Y6rgDR/ol0Y6rgDR.js\";import*as sharedStyle3 from\"#framer/local/css/Rh7XdEnjm/Rh7XdEnjm.js\";import*as sharedStyle2 from\"#framer/local/css/tUcSR3C_w/tUcSR3C_w.js\";import metadataProvider from\"#framer/local/webPageMetadata/KS4gy0Ps7/KS4gy0Ps7.js\";const YouTubeFonts=getFonts(YouTube);const PhosphorFonts=getFonts(Phosphor);const MetricBlockFonts=getFonts(MetricBlock);const SocialIconFonts=getFonts(SocialIcon);const Link1Fonts=getFonts(Link1);const SpotifyFonts=getFonts(Spotify);const PodcastBlockFonts=getFonts(PodcastBlock);const MotionSectionWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.section);const YouTube1Fonts=getFonts(YouTube1);const SocialBlockFonts=getFonts(SocialBlock);const breakpoints={ISWWsR_lP:\"(max-width: 809px)\",Ur5p25ftn:\"(min-width: 810px) and (max-width: 1279px)\",YOeuygDX4:\"(min-width: 1280px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-ZpWoZ\";const variantClassNames={ISWWsR_lP:\"framer-v-1emwdwk\",Ur5p25ftn:\"framer-v-1r1nxkk\",YOeuygDX4:\"framer-v-1jrav4g\"};const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.05,skewX:0,skewY:0,transition:transition1};const animation1={backgroundColor:'var(--token-87d54d0d-3313-4e9d-aba5-1b8d7781cb33, rgb(39, 255, 139)) /* {\"name\":\"Electric Green\"} */',opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.95,skewX:0,skewY:0,transition:transition1};const transition2={delay:.3,duration:.8,ease:[.44,0,.56,1],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:4};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"YOeuygDX4\",Phone:\"ISWWsR_lP\",Tablet:\"Ur5p25ftn\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"YOeuygDX4\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"Ur5p25ftn\")return true;return false;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"YOeuygDX4\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-cbe94a89-ed91-4043-a8fd-b0f761c36732, rgb(252, 252, 252)); }\"}),/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1jrav4g\",className),ref:refBinding,style:{...style},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1j3tfgy\",\"data-framer-name\":\"Hero Stack\",children:[/*#__PURE__*/_jsxs(\"header\",{className:\"framer-1tavrtw\",\"data-framer-name\":\"Hero Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1p8af4d\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6i0fdp\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-11ek3v\",\"data-styles-preset\":\"fOAZ1_0Ey\",style:{\"--framer-text-alignment\":\"center\"},children:\"We moved some things around.\"})}),className:\"framer-phhrgz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1r4oama\",\"data-styles-preset\":\"ol0Y6rgDR\",style:{\"--framer-text-alignment\":\"center\"},children:\"Uh oh! Watch this video now\"})}),className:\"framer-1fhtrb6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f3pumo\",children:[/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:706,intrinsicWidth:879,positionX:\"60.2%\",positionY:\"54.4%\"},className:\"framer-1dxp487\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gp9cks-container\",isModuleExternal:true,nodeId:\"gtjwGSg8D\",scopeId:\"KS4gy0Ps7\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"gtjwGSg8D\",isMixedBorderRadius:false,isRed:false,layoutId:\"gtjwGSg8D\",play:\"On\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/_sEe6zlYWfE\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-hrzsm6\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-liyvvd\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ttew7n\",\"data-styles-preset\":\"tUcSR3C_w\",children:\"Join more than 300,000 product creators who grow their sales with these resources below\u2026\"})}),className:\"framer-13fzrlb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i69hy8\",\"data-framer-name\":\"Link Stack\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"V4n6pZhxP\"},motionChild:true,nodeId:\"dAu5eoOME\",openInNewTab:true,scopeId:\"KS4gy0Ps7\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-zyqjur framer-o0v7rp\",\"data-framer-name\":\"Link 1\",whileHover:animation,whileTap:animation1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ISWWsR_lP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS03MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d431646b-c110-412a-a177-df008ee4666f, rgb(0, 17, 52))\"},children:\"\uD83D\uDD10  Get My Newsletter Where I Show Our $1B Journey\"})})},Ur5p25ftn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS03MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d431646b-c110-412a-a177-df008ee4666f, rgb(0, 17, 52))\"},children:\"\uD83D\uDD10  Get My Newsletter Where I Show Our $1B Journey\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS03MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7d3eb00a-c397-4ca3-b879-80f4ffbc80ec, rgb(0, 17, 52))\"},children:\"\uD83D\uDD10  Get My Newsletter Where I Show Our $1B Journey\"})}),className:\"framer-u3n4mn\",fonts:[\"GF;Figtree-700\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://samcart.me/done-for-you\",motionChild:true,nodeId:\"iz3ucygg2\",openInNewTab:true,scopeId:\"KS4gy0Ps7\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-vuvjss framer-o0v7rp\",\"data-framer-name\":\"Link 2\",whileHover:animation,whileTap:animation1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ISWWsR_lP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS03MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d431646b-c110-412a-a177-df008ee4666f, rgb(0, 17, 52))\"},children:\"\uD83E\uDD1D Have My Team Setup SamCart For You\"})})},Ur5p25ftn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS03MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d431646b-c110-412a-a177-df008ee4666f, rgb(0, 17, 52))\"},children:\"\uD83E\uDD1D Have My Team Setup SamCart For You\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS03MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7d3eb00a-c397-4ca3-b879-80f4ffbc80ec, rgb(0, 17, 52))\"},children:\"\uD83E\uDD1D Have My Team Setup SamCart For You\"})}),className:\"framer-nvzujd\",fonts:[\"GF;Figtree-700\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://typeset.com/\",motionChild:true,nodeId:\"SDawWW7Pt\",openInNewTab:true,scopeId:\"KS4gy0Ps7\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-100011a framer-o0v7rp\",\"data-framer-name\":\"Link 3\",whileHover:animation,whileTap:animation1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ISWWsR_lP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS03MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d431646b-c110-412a-a177-df008ee4666f, rgb(0, 17, 52))\"},children:\"\uD83D\uDEE0\uFE0F Check Out Typeset - The AI Marketing Designer\"})})},Ur5p25ftn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS03MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d431646b-c110-412a-a177-df008ee4666f, rgb(0, 17, 52))\"},children:\"\uD83D\uDEE0\uFE0F Check Out Typeset - The AI Marketing Designer\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS03MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7d3eb00a-c397-4ca3-b879-80f4ffbc80ec, rgb(0, 17, 52))\"},children:\"\uD83D\uDEE0\uFE0F Check Out Typeset - The AI Marketing Designer\"})}),className:\"framer-188j6sc\",fonts:[\"GF;Figtree-700\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://the5daycourse.com/\",motionChild:true,nodeId:\"Lo6C_xODl\",openInNewTab:true,scopeId:\"KS4gy0Ps7\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1n4dxhy framer-o0v7rp\",\"data-framer-name\":\"Link 4\",whileHover:animation,whileTap:animation1,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS03MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7d3eb00a-c397-4ca3-b879-80f4ffbc80ec, rgb(0, 17, 52))\"},children:\"\uD83C\uDFAC How To Start A Business From Scratch\"})}),className:\"framer-1sa7a3s\",fonts:[\"GF;Figtree-700\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.youtube.com/user/samcartapp?sub_confirmation=1\",motionChild:true,nodeId:\"CJ6i4RDlG\",openInNewTab:true,scopeId:\"KS4gy0Ps7\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-obwavp framer-o0v7rp\",\"data-framer-name\":\"Link 4\",whileHover:animation,whileTap:animation1,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yp8iwh-container\",isModuleExternal:true,nodeId:\"Eru6u4iQl\",scopeId:\"KS4gy0Ps7\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"youtube\",iconSelection:\"House\",id:\"Eru6u4iQl\",layoutId:\"Eru6u4iQl\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS03MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Subscribe to SamCart\"})}),className:\"framer-g0pw3h\",fonts:[\"GF;Figtree-700\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})]}),/*#__PURE__*/_jsxs(\"main\",{className:\"framer-4pwcgh\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zq9h9u\",\"data-border\":true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10fl690\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-uaeu5a\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-xwxg8w\",\"data-styles-preset\":\"Rh7XdEnjm\",children:\"My Background\u2026\"})}),className:\"framer-zyqhxb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15whxzw\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ipv9x6\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rbxkn3\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ISWWsR_lP:{width:\"180px\",y:(componentViewport?.y||0)+0+0+0+1001+0+0+16+38+0+0+0},Ur5p25ftn:{y:(componentViewport?.y||0)+0+0+0+1134+0+0+16+38+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:124,width:`max((max(max(min(min(${componentViewport?.width||\"100vw\"}, 1100px), 760px), 1px) - 32px, 1px) - 16px) / 3, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-8ma22y-container\",nodeId:\"JPXo_A3VQ\",scopeId:\"KS4gy0Ps7\",children:/*#__PURE__*/_jsx(MetricBlock,{BPhpy3hmO:\"\uD83D\uDCB0\",height:\"100%\",id:\"JPXo_A3VQ\",jRS3DkGwd:\"$300M\",layoutId:\"JPXo_A3VQ\",SPfYOnEBH:\"Biz\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ISWWsR_lP:{width:\"180px\",y:(componentViewport?.y||0)+0+0+0+1001+0+0+16+38+0+0+0},Ur5p25ftn:{y:(componentViewport?.y||0)+0+0+0+1134+0+0+16+38+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:124,width:`max((max(max(min(min(${componentViewport?.width||\"100vw\"}, 1100px), 760px), 1px) - 32px, 1px) - 16px) / 3, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-bp1mo7-container\",nodeId:\"i8yABliVu\",scopeId:\"KS4gy0Ps7\",children:/*#__PURE__*/_jsx(MetricBlock,{BPhpy3hmO:\"\uD83E\uDD1D\",height:\"100%\",id:\"i8yABliVu\",jRS3DkGwd:\"$100M\",layoutId:\"i8yABliVu\",SPfYOnEBH:\"Raised\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ISWWsR_lP:{width:\"180px\",y:(componentViewport?.y||0)+0+0+0+1001+0+0+16+38+0+0+0},Ur5p25ftn:{y:(componentViewport?.y||0)+0+0+0+1134+0+0+16+38+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:124,width:`max((max(max(min(min(${componentViewport?.width||\"100vw\"}, 1100px), 760px), 1px) - 32px, 1px) - 16px) / 3, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1se2gya-container\",nodeId:\"Y3Mv0V1gE\",scopeId:\"KS4gy0Ps7\",children:/*#__PURE__*/_jsx(MetricBlock,{BPhpy3hmO:\"\uD83D\uDE04\",height:\"100%\",id:\"Y3Mv0V1gE\",jRS3DkGwd:\"100k+\",layoutId:\"Y3Mv0V1gE\",SPfYOnEBH:\"Customers\",style:{width:\"100%\"},width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1p1e5i3\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ugmxz2\",style:{rotate:180}})]})]}),/*#__PURE__*/_jsxs(MotionSectionWithOptimizedAppearEffect,{animate:animation2,className:\"framer-10os81t\",\"data-framer-appear-id\":\"10os81t\",\"data-framer-name\":\"Podcast\",initial:animation3,optimized:true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b3p50s\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8uq7cw\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ISWWsR_lP:{y:(componentViewport?.y||0)+0+0+0+1001+0+234+0+0+0+0+2},Ur5p25ftn:{y:(componentViewport?.y||0)+0+0+0+1134+0+234+0+0+0+0+2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:\"24px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-jfg7ru-container\",nodeId:\"e0kznUZzV\",scopeId:\"KS4gy0Ps7\",children:/*#__PURE__*/_jsx(SocialIcon,{akRAt5Bzc:\"\",height:\"100%\",id:\"e0kznUZzV\",IwReA1FWQ:\"0px\",layoutId:\"e0kznUZzV\",style:{height:\"100%\",width:\"100%\"},U5EMkhg6p:{borderColor:\"rgba(235, 235, 235, 0)\",borderStyle:\"solid\",borderWidth:1},variant:\"P3_8pl3sY\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-xwxg8w\",\"data-styles-preset\":\"Rh7XdEnjm\",children:\"The Podcast\"})}),className:\"framer-j8whz5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ISWWsR_lP:{y:(componentViewport?.y||0)+0+0+0+1001+0+234+0+0+0+0+4.5},Ur5p25ftn:{y:(componentViewport?.y||0)+0+0+0+1134+0+234+0+0+0+0+4.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:19,children:/*#__PURE__*/_jsx(Container,{className:\"framer-z6huqt-container\",nodeId:\"LOWBiXVUX\",scopeId:\"KS4gy0Ps7\",children:/*#__PURE__*/_jsx(Link1,{height:\"100%\",id:\"LOWBiXVUX\",layoutId:\"LOWBiXVUX\",n2fTElnh5:\"More\",variant:\"ULLpT4Ok_\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-15u6ufh-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"wMS_wS_NB\",scopeId:\"KS4gy0Ps7\",children:/*#__PURE__*/_jsx(Spotify,{height:\"100%\",id:\"wMS_wS_NB\",layoutId:\"wMS_wS_NB\",style:{height:\"100%\",width:\"100%\"},theme:1,url:\"https://open.spotify.com/episode/69pNLUUw7suejPIlHwxIbw?si=qnDSQmM3Qt-wMergxEIdBw\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yy1iv9\",\"data-framer-name\":\"Podcast Platforms\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ISWWsR_lP:{width:`max(min(min(${componentViewport?.width||\"100vw\"}, 1100px), 760px), 200px)`,y:(componentViewport?.y||0)+0+0+0+1001+0+234+0+230+0+0},Ur5p25ftn:{y:(componentViewport?.y||0)+0+0+0+1134+0+234+0+230+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:75,width:`max((min(min(${componentViewport?.width||\"100vw\"}, 1100px), 760px) - 16px) / 3, 200px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-54bdv-container\",nodeId:\"w4seWo_vR\",scopeId:\"KS4gy0Ps7\",children:/*#__PURE__*/_jsx(PodcastBlock,{height:\"100%\",HVG2Vle40:\"Spotify\",id:\"w4seWo_vR\",layoutId:\"w4seWo_vR\",ncfbMN14S:\"https://open.spotify.com/show/2sYCLoGePAGp0etV2OtI8F?si=4404b01783a34a3c\",QJzdIUw5o:\"Listen on\",style:{width:\"100%\"},thGjwnei5:\"0px\",v62l3X_Br:{borderColor:\"rgba(235, 235, 235, 0)\",borderStyle:\"solid\",borderWidth:1},width:\"100%\",YZueNCRtU:\"P3_8pl3sY\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ISWWsR_lP:{width:`max(min(min(${componentViewport?.width||\"100vw\"}, 1100px), 760px), 200px)`,y:(componentViewport?.y||0)+0+0+0+1001+0+234+0+230+0+83},Ur5p25ftn:{y:(componentViewport?.y||0)+0+0+0+1134+0+234+0+230+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:75,width:`max((min(min(${componentViewport?.width||\"100vw\"}, 1100px), 760px) - 16px) / 3, 200px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1sjvusy-container\",nodeId:\"eoZIEx0sH\",scopeId:\"KS4gy0Ps7\",children:/*#__PURE__*/_jsx(PodcastBlock,{height:\"100%\",HVG2Vle40:\"Apple Podcast\",id:\"eoZIEx0sH\",layoutId:\"eoZIEx0sH\",ncfbMN14S:\"https://podcasts.apple.com/us/podcast/5-minute-marketing-with-brian-moran/id1099540724\",QJzdIUw5o:\"Listen on\",style:{width:\"100%\"},thGjwnei5:\"0px\",v62l3X_Br:{borderColor:\"rgba(235, 235, 235, 0)\",borderStyle:\"solid\",borderWidth:1},width:\"100%\",YZueNCRtU:\"HlyBJHOWZ\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ISWWsR_lP:{width:`max(min(min(${componentViewport?.width||\"100vw\"}, 1100px), 760px), 200px)`,y:(componentViewport?.y||0)+0+0+0+1001+0+234+0+230+0+166},Ur5p25ftn:{y:(componentViewport?.y||0)+0+0+0+1134+0+234+0+230+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:75,width:`max((min(min(${componentViewport?.width||\"100vw\"}, 1100px), 760px) - 16px) / 3, 200px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ycrsex-container\",nodeId:\"jLpM_ywF8\",scopeId:\"KS4gy0Ps7\",children:/*#__PURE__*/_jsx(PodcastBlock,{height:\"100%\",HVG2Vle40:\"YouTube\",id:\"jLpM_ywF8\",layoutId:\"jLpM_ywF8\",ncfbMN14S:\"https://www.youtube.com/@brianmoran13\",QJzdIUw5o:\"Listen on\",style:{width:\"100%\"},thGjwnei5:\"0px\",v62l3X_Br:{borderColor:\"rgba(235, 235, 235, 0)\",borderStyle:\"solid\",borderWidth:1},width:\"100%\",YZueNCRtU:\"S_17Tkmba\"})})})})]})]}),/*#__PURE__*/_jsxs(MotionSectionWithOptimizedAppearEffect,{animate:animation2,className:\"framer-wta3in\",\"data-framer-appear-id\":\"wta3in\",\"data-framer-name\":\"Video\",initial:animation3,optimized:true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bybipo\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ISWWsR_lP:{y:(componentViewport?.y||0)+0+0+0+1001+0+745+0+0+2},Ur5p25ftn:{y:(componentViewport?.y||0)+0+0+0+1134+0+579+0+0+2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:\"24px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-boi744-container\",nodeId:\"nEe_IfhpE\",scopeId:\"KS4gy0Ps7\",children:/*#__PURE__*/_jsx(SocialIcon,{akRAt5Bzc:\"\",height:\"100%\",id:\"nEe_IfhpE\",IwReA1FWQ:\"0px\",layoutId:\"nEe_IfhpE\",style:{height:\"100%\",width:\"100%\"},U5EMkhg6p:{borderColor:\"rgba(235, 235, 235, 0)\",borderStyle:\"solid\",borderWidth:1},variant:\"S_17Tkmba\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-xwxg8w\",\"data-styles-preset\":\"Rh7XdEnjm\",children:\"Youtube Channel\"})}),className:\"framer-3udge3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ISWWsR_lP:{y:(componentViewport?.y||0)+0+0+0+1001+0+745+0+0+4.5},Ur5p25ftn:{y:(componentViewport?.y||0)+0+0+0+1134+0+579+0+0+4.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:19,children:/*#__PURE__*/_jsx(Container,{className:\"framer-9opx7m-container\",nodeId:\"fnZ7dL84g\",scopeId:\"KS4gy0Ps7\",children:/*#__PURE__*/_jsx(Link1,{aoFNWP5M7:\"https://www.youtube.com/@brianmoran13\",height:\"100%\",id:\"fnZ7dL84g\",layoutId:\"fnZ7dL84g\",n2fTElnh5:\"See all videos\",variant:\"ULLpT4Ok_\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nf5ndi\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-k78cz2-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"FYVlP98Pw\",scopeId:\"KS4gy0Ps7\",children:/*#__PURE__*/_jsx(YouTube1,{borderRadius:12,bottomLeftRadius:12,bottomRightRadius:12,height:\"100%\",id:\"FYVlP98Pw\",isMixedBorderRadius:false,isRed:false,layoutId:\"FYVlP98Pw\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:12,topRightRadius:12,url:\"https://www.youtube.com/watch?v=E7a2KqTg8iY\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(MotionSectionWithOptimizedAppearEffect,{animate:animation2,className:\"framer-5sisjg\",\"data-framer-appear-id\":\"5sisjg\",\"data-framer-name\":\"Gallery\",initial:animation3,optimized:true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mb1bt2\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/p/DHG_7PJp_Xa/?img_index=1\",motionChild:true,nodeId:\"dC1R40sED\",scopeId:\"KS4gy0Ps7\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ISWWsR_lP:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1001+0+1035+50+0+0+0),pixelHeight:1268,pixelWidth:1698,sizes:`min(min(${componentViewport?.width||\"100vw\"}, 1100px), 760px)`,src:\"https://framerusercontent.com/images/gvFGCNboVDt5ZRBESSFCtlHfj1I.png\",srcSet:\"https://framerusercontent.com/images/gvFGCNboVDt5ZRBESSFCtlHfj1I.png?scale-down-to=512 512w,https://framerusercontent.com/images/gvFGCNboVDt5ZRBESSFCtlHfj1I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gvFGCNboVDt5ZRBESSFCtlHfj1I.png 1698w\"}},Ur5p25ftn:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1134+0+1039+50+0+0+0),pixelHeight:1268,pixelWidth:1698,sizes:`calc(max((min(min(${componentViewport?.width||\"100vw\"}, 1100px), 760px) - 32px) / 3, 180px) * 2 + 16px)`,src:\"https://framerusercontent.com/images/gvFGCNboVDt5ZRBESSFCtlHfj1I.png\",srcSet:\"https://framerusercontent.com/images/gvFGCNboVDt5ZRBESSFCtlHfj1I.png?scale-down-to=512 512w,https://framerusercontent.com/images/gvFGCNboVDt5ZRBESSFCtlHfj1I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gvFGCNboVDt5ZRBESSFCtlHfj1I.png 1698w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",pixelHeight:1268,pixelWidth:1698,src:\"https://framerusercontent.com/images/gvFGCNboVDt5ZRBESSFCtlHfj1I.png\",srcSet:\"https://framerusercontent.com/images/gvFGCNboVDt5ZRBESSFCtlHfj1I.png?scale-down-to=512 512w,https://framerusercontent.com/images/gvFGCNboVDt5ZRBESSFCtlHfj1I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gvFGCNboVDt5ZRBESSFCtlHfj1I.png 1698w\"},className:\"framer-1abpiiu framer-o0v7rp\",\"data-framer-name\":\"Image 01\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-12r04m4\",\"data-border\":true,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-069d7260-7583-4dc5-b5eb-371dc0a63265, rgb(0, 0, 0))\"},children:\"Instagram\"})}),className:\"framer-ocs2nt\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ISWWsR_lP:{height:199,width:`min(min(${componentViewport?.width||\"100vw\"}, 1100px), 760px)`,y:(componentViewport?.y||0)+0+0+0+1001+0+1035+50+0+0+424},Ur5p25ftn:{width:`max((min(min(${componentViewport?.width||\"100vw\"}, 1100px), 760px) - 32px) / 3, 180px)`,y:(componentViewport?.y||0)+0+0+0+1134+0+1039+50+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,children:/*#__PURE__*/_jsx(Container,{className:\"framer-trz3u1-container\",nodeId:\"fCrfD5FbU\",scopeId:\"KS4gy0Ps7\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ISWWsR_lP:{AFDqIepv4:16,gbumVSzoc:\"row\",o7AwcdwLn:0,style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(SocialBlock,{AFDqIepv4:8,ByUNxmX_j:\"Brian Moran\",gbumVSzoc:\"column\",height:\"100%\",id:\"fCrfD5FbU\",layoutId:\"fCrfD5FbU\",M3xy28ZjF:\"https://www.instagram.com/brianmoran13/\",NbwS2fwe6:\"@brianmoran13\",NFgxBXj7R:true,o7AwcdwLn:12,ojIdT5kyL:true,R9ebMvKPt:\"9K\",style:{height:\"100%\",width:\"100%\"},variant:\"Tz195Q6Q8\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ISWWsR_lP:{height:199,width:`min(min(${componentViewport?.width||\"100vw\"}, 1100px), 760px)`,y:(componentViewport?.y||0)+0+0+0+1001+0+1035+50+0+0+631},Ur5p25ftn:{width:`max((min(min(${componentViewport?.width||\"100vw\"}, 1100px), 760px) - 32px) / 3, 180px)`,y:(componentViewport?.y||0)+0+0+0+1134+0+1039+50+0+0+216}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,children:/*#__PURE__*/_jsx(Container,{className:\"framer-j8zjfy-container\",nodeId:\"gf24kUQV2\",scopeId:\"KS4gy0Ps7\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ISWWsR_lP:{AFDqIepv4:16,gbumVSzoc:\"row\",o7AwcdwLn:0,style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(SocialBlock,{AFDqIepv4:8,ByUNxmX_j:\"Brian Moran\",gbumVSzoc:\"column\",height:\"100%\",id:\"gf24kUQV2\",layoutId:\"gf24kUQV2\",M3xy28ZjF:\"https://www.linkedin.com/in/realbrianmoran/\",NbwS2fwe6:\"/realbrianmoran/\",NFgxBXj7R:true,o7AwcdwLn:12,ojIdT5kyL:true,R9ebMvKPt:\"3k\",style:{height:\"100%\",width:\"100%\"},variant:\"subLTawfn\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cmeyt6\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ISWWsR_lP:{height:199,width:`min(min(${componentViewport?.width||\"100vw\"}, 1100px), 760px)`,y:(componentViewport?.y||0)+0+0+0+1001+0+1035+50+842+0+0},Ur5p25ftn:{width:`max((min(min(${componentViewport?.width||\"100vw\"}, 1100px), 760px) - 32px) / 3, 180px)`,y:(componentViewport?.y||0)+0+0+0+1134+0+1039+50+428+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hxqrnn-container\",nodeId:\"ZxxQmdRTZ\",scopeId:\"KS4gy0Ps7\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ISWWsR_lP:{AFDqIepv4:16,gbumVSzoc:\"row\",o7AwcdwLn:0,style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(SocialBlock,{AFDqIepv4:8,ByUNxmX_j:\"Brian Moran\",gbumVSzoc:\"column\",height:\"100%\",id:\"ZxxQmdRTZ\",layoutId:\"ZxxQmdRTZ\",M3xy28ZjF:\"https://www.instagram.com/brianmoran13/\",NbwS2fwe6:\"@brianmoran13\",NFgxBXj7R:true,o7AwcdwLn:12,ojIdT5kyL:true,R9ebMvKPt:\"9K\",style:{height:\"100%\",width:\"100%\"},variant:\"dkka2bdzK\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://x.com/bricf13/status/1898161906617127280\",motionChild:true,nodeId:\"zi_uRL2yh\",scopeId:\"KS4gy0Ps7\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ISWWsR_lP:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1001+0+1035+50+842+0+207),pixelHeight:1500,pixelWidth:2562,sizes:`min(min(${componentViewport?.width||\"100vw\"}, 1100px), 760px)`,src:\"https://framerusercontent.com/images/ubxkCtMWnGebmu05Y0NjqNRY.png\",srcSet:\"https://framerusercontent.com/images/ubxkCtMWnGebmu05Y0NjqNRY.png?scale-down-to=512 512w,https://framerusercontent.com/images/ubxkCtMWnGebmu05Y0NjqNRY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ubxkCtMWnGebmu05Y0NjqNRY.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ubxkCtMWnGebmu05Y0NjqNRY.png 2562w\"}},Ur5p25ftn:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1134+0+1039+50+428+0+0),pixelHeight:1500,pixelWidth:2562,sizes:`calc(max((min(min(${componentViewport?.width||\"100vw\"}, 1100px), 760px) - 32px) / 3, 180px) * 2 + 16px)`,src:\"https://framerusercontent.com/images/ubxkCtMWnGebmu05Y0NjqNRY.png\",srcSet:\"https://framerusercontent.com/images/ubxkCtMWnGebmu05Y0NjqNRY.png?scale-down-to=512 512w,https://framerusercontent.com/images/ubxkCtMWnGebmu05Y0NjqNRY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ubxkCtMWnGebmu05Y0NjqNRY.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ubxkCtMWnGebmu05Y0NjqNRY.png 2562w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",pixelHeight:1500,pixelWidth:2562,src:\"https://framerusercontent.com/images/ubxkCtMWnGebmu05Y0NjqNRY.png\",srcSet:\"https://framerusercontent.com/images/ubxkCtMWnGebmu05Y0NjqNRY.png?scale-down-to=512 512w,https://framerusercontent.com/images/ubxkCtMWnGebmu05Y0NjqNRY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ubxkCtMWnGebmu05Y0NjqNRY.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ubxkCtMWnGebmu05Y0NjqNRY.png 2562w\"},className:\"framer-ygybkp framer-o0v7rp\",\"data-framer-name\":\"Image 01\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-7o3ypn\",\"data-border\":true,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-069d7260-7583-4dc5-b5eb-371dc0a63265, rgb(0, 0, 0))\"},children:\"SamCamp '24\"})}),className:\"framer-1wf6tr2\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ISWWsR_lP:{height:199,width:`min(min(${componentViewport?.width||\"100vw\"}, 1100px), 760px)`,y:(componentViewport?.y||0)+0+0+0+1001+0+1035+50+842+0+631},Ur5p25ftn:{width:`max((min(min(${componentViewport?.width||\"100vw\"}, 1100px), 760px) - 32px) / 3, 180px)`,y:(componentViewport?.y||0)+0+0+0+1134+0+1039+50+428+0+216}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,children:/*#__PURE__*/_jsx(Container,{className:\"framer-y4xgcp-container\",nodeId:\"zqysAOGSs\",scopeId:\"KS4gy0Ps7\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ISWWsR_lP:{AFDqIepv4:16,gbumVSzoc:\"row\",o7AwcdwLn:0,style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(SocialBlock,{AFDqIepv4:8,ByUNxmX_j:\"Brian Moran\",gbumVSzoc:\"column\",height:\"100%\",id:\"zqysAOGSs\",layoutId:\"zqysAOGSs\",M3xy28ZjF:\"https://www.youtube.com/@brianmoran13\",NbwS2fwe6:\"@brianmoran13\",NFgxBXj7R:true,o7AwcdwLn:12,ojIdT5kyL:true,R9ebMvKPt:\"1.23K\",style:{height:\"100%\",width:\"100%\"},variant:\"qOeH3EeW4\",width:\"100%\"})})})})})]})]}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-16dixsc hidden-1jrav4g hidden-1emwdwk\",\"data-framer-name\":\"Background Overlay\"})]})]})}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ZpWoZ.framer-o0v7rp, .framer-ZpWoZ .framer-o0v7rp { display: block; }\",\".framer-ZpWoZ.framer-1jrav4g { align-content: center; align-items: center; background-color: var(--token-cbe94a89-ed91-4043-a8fd-b0f761c36732, #fcfcfc); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1280px; }\",\".framer-ZpWoZ .framer-1j3tfgy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1100px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ZpWoZ .framer-1tavrtw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 11px; height: min-content; justify-content: center; max-width: 900px; overflow: visible; padding: 73px 50px 73px 50px; position: relative; width: 100%; }\",\".framer-ZpWoZ .framer-1p8af4d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 27px; height: min-content; justify-content: center; max-width: 90%; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 6; }\",\".framer-ZpWoZ .framer-6i0fdp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ZpWoZ .framer-phhrgz { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 80%; word-break: break-word; word-wrap: break-word; }\",\".framer-ZpWoZ .framer-1fhtrb6 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 681px; word-break: break-word; word-wrap: break-word; }\",\".framer-ZpWoZ .framer-1f3pumo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ZpWoZ .framer-1dxp487 { 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; position: relative; width: 100%; z-index: 4; }\",\".framer-ZpWoZ .framer-1gp9cks-container { flex: none; height: 342px; position: relative; width: 608px; }\",\".framer-ZpWoZ .framer-hrzsm6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 3; }\",\".framer-ZpWoZ .framer-liyvvd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; z-index: 4; }\",\".framer-ZpWoZ .framer-13fzrlb { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: 550px; word-break: break-word; word-wrap: break-word; }\",\".framer-ZpWoZ .framer-1i69hy8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 17px; height: min-content; justify-content: center; max-width: 700px; overflow: visible; padding: 10px; position: relative; width: 100%; }\",\".framer-ZpWoZ .framer-zyqjur, .framer-ZpWoZ .framer-vuvjss, .framer-ZpWoZ .framer-100011a, .framer-ZpWoZ .framer-1n4dxhy { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.25); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 20px 15px 20px 15px; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-ZpWoZ .framer-u3n4mn, .framer-ZpWoZ .framer-nvzujd, .framer-ZpWoZ .framer-188j6sc, .framer-ZpWoZ .framer-1sa7a3s { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-text-wrap: balance; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-ZpWoZ .framer-obwavp { align-content: center; align-items: center; background-color: #ff4040; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.25); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 10px; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-ZpWoZ .framer-1yp8iwh-container { flex: none; height: 30px; position: relative; width: 30px; }\",\".framer-ZpWoZ .framer-g0pw3h, .framer-ZpWoZ .framer-ocs2nt, .framer-ZpWoZ .framer-1wf6tr2 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-ZpWoZ .framer-4pwcgh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 760px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ZpWoZ .framer-zq9h9u { --border-bottom-width: 1px; --border-color: var(--token-c144a1e2-bc86-47bf-84fa-552b6647f311, #ebebeb); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-4bc03d94-913b-4e86-9897-2af0c63ad484, #f7f7f7); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 16px 0px 8px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-ZpWoZ .framer-10fl690, .framer-ZpWoZ .framer-15whxzw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ZpWoZ .framer-uaeu5a { -webkit-mask: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%) add; background-color: var(--token-4bc03d94-913b-4e86-9897-2af0c63ad484, #f7f7f7); flex: none; height: 350%; mask: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%) add; overflow: hidden; position: relative; width: 10px; z-index: 1; }\",\".framer-ZpWoZ .framer-zyqhxb, .framer-ZpWoZ .framer-j8whz5, .framer-ZpWoZ .framer-3udge3 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-ZpWoZ .framer-1ipv9x6 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: auto; padding: 0px 16px 0px 16px; position: relative; width: 1px; }\",\".framer-ZpWoZ .framer-1rbxkn3 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 8px 0px; position: relative; width: 1px; }\",\".framer-ZpWoZ .framer-8ma22y-container, .framer-ZpWoZ .framer-bp1mo7-container, .framer-ZpWoZ .framer-1se2gya-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-ZpWoZ .framer-1p1e5i3 { -webkit-mask: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%) add; background-color: var(--token-4bc03d94-913b-4e86-9897-2af0c63ad484, #f7f7f7); flex: none; height: 99%; left: calc(1.7543859649123028% - 24px / 2); mask: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%) add; overflow: hidden; position: absolute; top: calc(49.1935483870968% - 99.19354838709677% / 2); width: 24px; z-index: 1; }\",\".framer-ZpWoZ .framer-ugmxz2 { -webkit-mask: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%) add; background-color: var(--token-4bc03d94-913b-4e86-9897-2af0c63ad484, #f7f7f7); flex: none; height: 99%; left: calc(98.24561403508774% - 24px / 2); mask: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%) add; overflow: hidden; position: absolute; top: calc(50.00000000000002% - 99.19354838709677% / 2); width: 24px; z-index: 1; }\",\".framer-ZpWoZ .framer-10os81t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-ZpWoZ .framer-1b3p50s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ZpWoZ .framer-8uq7cw, .framer-ZpWoZ .framer-bybipo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 8px 0px 8px; position: relative; width: 100%; }\",\".framer-ZpWoZ .framer-jfg7ru-container, .framer-ZpWoZ .framer-boi744-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 24px; }\",\".framer-ZpWoZ .framer-z6huqt-container, .framer-ZpWoZ .framer-9opx7m-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-ZpWoZ .framer-15u6ufh-container { flex: none; height: 152px; position: relative; width: 100%; }\",\".framer-ZpWoZ .framer-yy1iv9 { display: grid; flex: none; gap: 8px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(200px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ZpWoZ .framer-54bdv-container, .framer-ZpWoZ .framer-1sjvusy-container, .framer-ZpWoZ .framer-1ycrsex-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-ZpWoZ .framer-wta3in { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-ZpWoZ .framer-1nf5ndi { align-content: center; align-items: center; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0px 0.3010936508871964px 0.5419685715969536px -1.0833333333333333px rgba(0, 0, 0, 0.08), 0px 1.1442666516217286px 2.0596799729191115px -2.1666666666666665px rgba(0, 0, 0, 0.06976), 0px 5px 9px -3.25px rgba(0, 0, 0, 0.042); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ZpWoZ .framer-k78cz2-container { flex: 1 0 0px; height: 324px; position: relative; width: 1px; }\",\".framer-ZpWoZ .framer-5sisjg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 50px 0px 50px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-ZpWoZ .framer-mb1bt2, .framer-ZpWoZ .framer-1cmeyt6 { display: grid; flex: none; gap: 16px; grid-auto-rows: 200px; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ZpWoZ .framer-1abpiiu, .framer-ZpWoZ .framer-ygybkp { align-self: start; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 0px 0.3010936508871964px 0.5419685715969536px -1.0833333333333333px rgba(0, 0, 0, 0.13), 0px 1.1442666516217286px 2.0596799729191115px -2.1666666666666665px rgba(0, 0, 0, 0.11627), 0px 5px 9px -3.25px rgba(0, 0, 0, 0.07); flex: none; grid-column: auto / span 2; grid-row: auto / span 2; height: 100%; justify-self: start; overflow: hidden; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-ZpWoZ .framer-12r04m4, .framer-ZpWoZ .framer-7o3ypn { --border-bottom-width: 1px; --border-color: var(--token-f21d4e6b-8188-4057-9339-d737600102cf, rgba(245, 245, 245, 0.9)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(5px); align-content: center; align-items: center; backdrop-filter: blur(5px); background-color: var(--token-c7f87bf8-55ba-422c-98ab-4e4ae1f83f16, rgba(242, 242, 242, 0.7)); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; bottom: 8px; box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; left: 8px; overflow: hidden; padding: 6px 10px 6px 10px; position: absolute; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-ZpWoZ .framer-trz3u1-container, .framer-ZpWoZ .framer-j8zjfy-container, .framer-ZpWoZ .framer-1hxqrnn-container, .framer-ZpWoZ .framer-y4xgcp-container { align-self: start; flex: none; height: 200px; justify-self: start; position: relative; width: 100%; }\",\".framer-ZpWoZ .framer-16dixsc { background-color: var(--token-45c9e6ac-7d7b-4a77-8f9e-8870abafe35d, rgba(0, 0, 0, 0.05)); flex: none; height: 5%; opacity: 0; overflow: visible; position: absolute; right: 0px; top: 0px; width: 100%; z-index: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-ZpWoZ.framer-1jrav4g, .framer-ZpWoZ .framer-1j3tfgy, .framer-ZpWoZ .framer-1tavrtw, .framer-ZpWoZ .framer-1p8af4d, .framer-ZpWoZ .framer-6i0fdp, .framer-ZpWoZ .framer-1f3pumo, .framer-ZpWoZ .framer-1dxp487, .framer-ZpWoZ .framer-hrzsm6, .framer-ZpWoZ .framer-liyvvd, .framer-ZpWoZ .framer-1i69hy8, .framer-ZpWoZ .framer-zyqjur, .framer-ZpWoZ .framer-vuvjss, .framer-ZpWoZ .framer-100011a, .framer-ZpWoZ .framer-1n4dxhy, .framer-ZpWoZ .framer-obwavp, .framer-ZpWoZ .framer-4pwcgh, .framer-ZpWoZ .framer-zq9h9u, .framer-ZpWoZ .framer-10fl690, .framer-ZpWoZ .framer-15whxzw, .framer-ZpWoZ .framer-1ipv9x6, .framer-ZpWoZ .framer-1rbxkn3, .framer-ZpWoZ .framer-10os81t, .framer-ZpWoZ .framer-1b3p50s, .framer-ZpWoZ .framer-8uq7cw, .framer-ZpWoZ .framer-wta3in, .framer-ZpWoZ .framer-bybipo, .framer-ZpWoZ .framer-1nf5ndi, .framer-ZpWoZ .framer-5sisjg, .framer-ZpWoZ .framer-12r04m4, .framer-ZpWoZ .framer-7o3ypn { gap: 0px; } .framer-ZpWoZ.framer-1jrav4g > *, .framer-ZpWoZ .framer-hrzsm6 > *, .framer-ZpWoZ .framer-zq9h9u > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-ZpWoZ.framer-1jrav4g > :first-child, .framer-ZpWoZ .framer-1j3tfgy > :first-child, .framer-ZpWoZ .framer-1tavrtw > :first-child, .framer-ZpWoZ .framer-1p8af4d > :first-child, .framer-ZpWoZ .framer-6i0fdp > :first-child, .framer-ZpWoZ .framer-1f3pumo > :first-child, .framer-ZpWoZ .framer-1dxp487 > :first-child, .framer-ZpWoZ .framer-hrzsm6 > :first-child, .framer-ZpWoZ .framer-liyvvd > :first-child, .framer-ZpWoZ .framer-1i69hy8 > :first-child, .framer-ZpWoZ .framer-4pwcgh > :first-child, .framer-ZpWoZ .framer-zq9h9u > :first-child, .framer-ZpWoZ .framer-10os81t > :first-child, .framer-ZpWoZ .framer-1b3p50s > :first-child, .framer-ZpWoZ .framer-wta3in > :first-child, .framer-ZpWoZ .framer-5sisjg > :first-child { margin-top: 0px; } .framer-ZpWoZ.framer-1jrav4g > :last-child, .framer-ZpWoZ .framer-1j3tfgy > :last-child, .framer-ZpWoZ .framer-1tavrtw > :last-child, .framer-ZpWoZ .framer-1p8af4d > :last-child, .framer-ZpWoZ .framer-6i0fdp > :last-child, .framer-ZpWoZ .framer-1f3pumo > :last-child, .framer-ZpWoZ .framer-1dxp487 > :last-child, .framer-ZpWoZ .framer-hrzsm6 > :last-child, .framer-ZpWoZ .framer-liyvvd > :last-child, .framer-ZpWoZ .framer-1i69hy8 > :last-child, .framer-ZpWoZ .framer-4pwcgh > :last-child, .framer-ZpWoZ .framer-zq9h9u > :last-child, .framer-ZpWoZ .framer-10os81t > :last-child, .framer-ZpWoZ .framer-1b3p50s > :last-child, .framer-ZpWoZ .framer-wta3in > :last-child, .framer-ZpWoZ .framer-5sisjg > :last-child { margin-bottom: 0px; } .framer-ZpWoZ .framer-1j3tfgy > *, .framer-ZpWoZ .framer-1dxp487 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-ZpWoZ .framer-1tavrtw > * { margin: 0px; margin-bottom: calc(11px / 2); margin-top: calc(11px / 2); } .framer-ZpWoZ .framer-1p8af4d > * { margin: 0px; margin-bottom: calc(27px / 2); margin-top: calc(27px / 2); } .framer-ZpWoZ .framer-6i0fdp > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-ZpWoZ .framer-1f3pumo > *, .framer-ZpWoZ .framer-10os81t > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-ZpWoZ .framer-liyvvd > *, .framer-ZpWoZ .framer-1b3p50s > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-ZpWoZ .framer-1i69hy8 > * { margin: 0px; margin-bottom: calc(17px / 2); margin-top: calc(17px / 2); } .framer-ZpWoZ .framer-zyqjur > *, .framer-ZpWoZ .framer-vuvjss > *, .framer-ZpWoZ .framer-100011a > *, .framer-ZpWoZ .framer-1n4dxhy > *, .framer-ZpWoZ .framer-obwavp > *, .framer-ZpWoZ .framer-10fl690 > *, .framer-ZpWoZ .framer-15whxzw > *, .framer-ZpWoZ .framer-1nf5ndi > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-ZpWoZ .framer-zyqjur > :first-child, .framer-ZpWoZ .framer-vuvjss > :first-child, .framer-ZpWoZ .framer-100011a > :first-child, .framer-ZpWoZ .framer-1n4dxhy > :first-child, .framer-ZpWoZ .framer-obwavp > :first-child, .framer-ZpWoZ .framer-10fl690 > :first-child, .framer-ZpWoZ .framer-15whxzw > :first-child, .framer-ZpWoZ .framer-1ipv9x6 > :first-child, .framer-ZpWoZ .framer-1rbxkn3 > :first-child, .framer-ZpWoZ .framer-8uq7cw > :first-child, .framer-ZpWoZ .framer-bybipo > :first-child, .framer-ZpWoZ .framer-1nf5ndi > :first-child, .framer-ZpWoZ .framer-12r04m4 > :first-child, .framer-ZpWoZ .framer-7o3ypn > :first-child { margin-left: 0px; } .framer-ZpWoZ .framer-zyqjur > :last-child, .framer-ZpWoZ .framer-vuvjss > :last-child, .framer-ZpWoZ .framer-100011a > :last-child, .framer-ZpWoZ .framer-1n4dxhy > :last-child, .framer-ZpWoZ .framer-obwavp > :last-child, .framer-ZpWoZ .framer-10fl690 > :last-child, .framer-ZpWoZ .framer-15whxzw > :last-child, .framer-ZpWoZ .framer-1ipv9x6 > :last-child, .framer-ZpWoZ .framer-1rbxkn3 > :last-child, .framer-ZpWoZ .framer-8uq7cw > :last-child, .framer-ZpWoZ .framer-bybipo > :last-child, .framer-ZpWoZ .framer-1nf5ndi > :last-child, .framer-ZpWoZ .framer-12r04m4 > :last-child, .framer-ZpWoZ .framer-7o3ypn > :last-child { margin-right: 0px; } .framer-ZpWoZ .framer-4pwcgh > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-ZpWoZ .framer-1ipv9x6 > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-ZpWoZ .framer-1rbxkn3 > *, .framer-ZpWoZ .framer-8uq7cw > *, .framer-ZpWoZ .framer-bybipo > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-ZpWoZ .framer-wta3in > *, .framer-ZpWoZ .framer-5sisjg > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-ZpWoZ .framer-12r04m4 > *, .framer-ZpWoZ .framer-7o3ypn > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,'.framer-ZpWoZ[data-border=\"true\"]::after, .framer-ZpWoZ [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1279px) { .framer-ZpWoZ.framer-1jrav4g { width: 810px; } .framer-ZpWoZ .framer-1fhtrb6 { width: 639px; } .framer-ZpWoZ .framer-k78cz2-container { height: 380px; } .framer-ZpWoZ .framer-mb1bt2, .framer-ZpWoZ .framer-1cmeyt6 { grid-template-columns: repeat(3, minmax(180px, 1fr)); grid-template-rows: repeat(2, 200px); }}\",\"@media (max-width: 809px) { .framer-ZpWoZ.framer-1jrav4g { width: 390px; } .framer-ZpWoZ .framer-1tavrtw { gap: 21px; padding: 48px 20px 79px 20px; } .framer-ZpWoZ .framer-1f3pumo { justify-content: flex-start; } .framer-ZpWoZ .framer-1dxp487 { height: 208px; } .framer-ZpWoZ .framer-1gp9cks-container { height: 198px; width: 352px; } .framer-ZpWoZ .framer-hrzsm6 { gap: 31px; } .framer-ZpWoZ .framer-liyvvd { width: 100%; } .framer-ZpWoZ .framer-g0pw3h { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-ZpWoZ .framer-1ipv9x6 { order: 0; } .framer-ZpWoZ .framer-1rbxkn3 { flex: none; width: min-content; } .framer-ZpWoZ .framer-8ma22y-container, .framer-ZpWoZ .framer-bp1mo7-container, .framer-ZpWoZ .framer-1se2gya-container { flex: none; width: 180px; } .framer-ZpWoZ .framer-1p1e5i3 { order: 1; } .framer-ZpWoZ .framer-ugmxz2 { order: 2; } .framer-ZpWoZ .framer-yy1iv9 { grid-template-columns: repeat(1, minmax(200px, 1fr)); } .framer-ZpWoZ .framer-k78cz2-container { height: 210px; } .framer-ZpWoZ .framer-mb1bt2, .framer-ZpWoZ .framer-1cmeyt6 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 8px; justify-content: flex-start; } .framer-ZpWoZ .framer-1abpiiu, .framer-ZpWoZ .framer-ygybkp { align-self: unset; height: 416px; } .framer-ZpWoZ .framer-trz3u1-container, .framer-ZpWoZ .framer-j8zjfy-container, .framer-ZpWoZ .framer-1hxqrnn-container, .framer-ZpWoZ .framer-y4xgcp-container { align-self: unset; height: auto; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-ZpWoZ .framer-1tavrtw, .framer-ZpWoZ .framer-hrzsm6, .framer-ZpWoZ .framer-mb1bt2, .framer-ZpWoZ .framer-1cmeyt6 { gap: 0px; } .framer-ZpWoZ .framer-1tavrtw > * { margin: 0px; margin-bottom: calc(21px / 2); margin-top: calc(21px / 2); } .framer-ZpWoZ .framer-1tavrtw > :first-child, .framer-ZpWoZ .framer-hrzsm6 > :first-child, .framer-ZpWoZ .framer-mb1bt2 > :first-child, .framer-ZpWoZ .framer-1cmeyt6 > :first-child { margin-top: 0px; } .framer-ZpWoZ .framer-1tavrtw > :last-child, .framer-ZpWoZ .framer-hrzsm6 > :last-child, .framer-ZpWoZ .framer-mb1bt2 > :last-child, .framer-ZpWoZ .framer-1cmeyt6 > :last-child { margin-bottom: 0px; } .framer-ZpWoZ .framer-hrzsm6 > * { margin: 0px; margin-bottom: calc(31px / 2); margin-top: calc(31px / 2); } .framer-ZpWoZ .framer-mb1bt2 > *, .framer-ZpWoZ .framer-1cmeyt6 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 2994\n * @framerIntrinsicWidth 1280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Ur5p25ftn\":{\"layout\":[\"fixed\",\"auto\"]},\"ISWWsR_lP\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerKS4gy0Ps7=withCSS(Component,css,\"framer-ZpWoZ\");export default FramerKS4gy0Ps7;FramerKS4gy0Ps7.displayName=\"Founder\";FramerKS4gy0Ps7.defaultProps={height:2994,width:1280};addFonts(FramerKS4gy0Ps7,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Figtree\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/figtree/v7/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_eYR15bwkEU4HTy.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...YouTubeFonts,...PhosphorFonts,...MetricBlockFonts,...SocialIconFonts,...Link1Fonts,...SpotifyFonts,...PodcastBlockFonts,...YouTube1Fonts,...SocialBlockFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerKS4gy0Ps7\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1280\",\"framerComponentViewportWidth\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Ur5p25ftn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ISWWsR_lP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"2994\"}},\"__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", "fontStore", "fonts", "css", "className", "YouTubeFonts", "getFonts", "Youtube", "PhosphorFonts", "Icon", "MetricBlockFonts", "simXMV868_default", "SocialIconFonts", "KmDHs10xi_default", "Link1Fonts", "Uy6233uCh_default", "SpotifyFonts", "Spotify", "PodcastBlockFonts", "yOi3psDYZ_default", "MotionSectionWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "YouTube1Fonts", "SocialBlockFonts", "evr_52zeB_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "RichText2", "x", "ComponentViewportProvider", "Container", "Link", "PropertyOverrides2", "getLoadingLazyAtYPosition", "Image2", "css", "FramerKS4gy0Ps7", "withCSS", "KS4gy0Ps7_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
