{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/9rhBPUZttCbLCWqJEL42/YouTube.js", "ssg:https://framerusercontent.com/modules/9qoYmhbbeE3f0U4i5SkF/dzYtNHetkySSWDjnAc5S/LD01iK6yS.js", "ssg:https://framerusercontent.com/modules/neiPqpGCvlQqefcFnMUU/3OIyi85MHcthrdi71vvT/Rzjr5zmWY.js", "ssg:https://framerusercontent.com/modules/izNSZ042xIcz4wlLC99u/O4ZW5BjOvCXLZ1tbMhQs/Vo_RFB5iA.js", "ssg:https://framerusercontent.com/modules/AfH1ZU1DTwVMwasRK6g4/AyL3VTQIwZMDvbCdzMp0/componentPresets.js", "ssg:https://framerusercontent.com/modules/1lA5Q8Us5nNCAsm0cx5l/HdnuSxtjJzQqD9irx9UY/LcKHimqRE.js", "ssg:https://framerusercontent.com/modules/foGhCYJxjVOTnelowr1a/fIgySTDr8sNGRq2ksn4O/rXXlR3ztA.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState,useSyncExternalStore}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={}));let _isBot=null;function isBot(){if(_isBot===null)_isBot=/bot|-Google|Google-|yandex|ia_archiver/iu.test(navigator.userAgent);return _isBot;}const emptySubscribe=()=>()=>{};/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,title,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==\"Off\";const showThumbnail=onCanvas||thumbnail!==\"Off\"&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);// https://tkdodo.eu/blog/avoiding-hydration-mismatches-with-use-sync-external-store#usesyncexternalstore\nconst iframeIsDefaultVisible=useSyncExternalStore(emptySubscribe,// bots should not have display:none on the iframe\n()=>isBot(),()=>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()?\"webp\":\"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(// bots shouldn't autoplay the video but see the iframe in the DOM\n!iframeIsDefaultVisible&&(isAutoplay||// when there is no thumbnail, we don't want to autoplay, unless video is started\nshowThumbnail&&showVideo)){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===\"Loop\"){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}return /*#__PURE__*/_jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onKeyDown:startVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:// Safari sometimes struggles to render border-radius:\n// - on the canvas when changing from 0 to any other value\n// - or when rendering an iframe\nhasBorderRadius&&(showVideo||onCanvas)?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},role:\"presentation\",children:[isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),/*#__PURE__*/_jsx(\"div\",{style:{...videoStyle,background:showThumbnail?`center / cover url(${thumbnailURL}) no-repeat`:undefined}}),!onCanvas?/*#__PURE__*/_jsx(\"iframe\",{title:title||\"Youtube Video\",style:{...videoStyle,display:showVideo||iframeIsDefaultVisible?undefined:\"none\"},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,loading:\"lazy\"}):null,showVideo||iframeIsDefaultVisible?null:/*#__PURE__*/_jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===\"Off\";}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==\"Off\";}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:\"Off\",shouldMute:true,thumbnail:\"Medium Quality\",isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL];}if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");// https://www.youtube.com/watch?v=Fop2oskTug8\nif(pathSegments[0]===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId=pathSegments[1];return[videoId,url];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId=url.pathname.slice(1);const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res,format=\"jpg\"){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst useWebP=format===\"webp\";const pre=useWebP?\"https://i.ytimg.com/vi_webp/\":\"https://i.ytimg.com/vi/\";const ext=useWebP?\"webp\":\"jpg\";switch(res){case\"Low Quality\":return`${pre}${videoId}/hqdefault.${ext}`;case\"Medium Quality\":return`${pre}${videoId}/sddefault.${ext}`;case\"High Quality\":return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}let _getWebPSupported;// https://stackoverflow.com/a/27232658\nfunction getWebPSupported(){// We're going to default to webp because it's pretty widely supported by now\nif(!window){return true;}if(_getWebPSupported!==undefined){return _getWebPSupported;}const element=document.createElement(\"canvas\");if(element.getContext&&element.getContext(\"2d\")){// was able or not to get WebP representation\nreturn 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\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerIntrinsicWidth\":\"560\",\"framerIntrinsicHeight\":\"315\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "// Generated by Framer (5eef525)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/rYhYnORyHhbupG1N1124/Kw4JuOADciHNjFrYXEdf/xYyeMtAzT.js\";const PhosphorFonts=getFonts(Phosphor);const cycleOrder=[\"UOR59_4OF\"];const serializationHash=\"framer-Qxwue\";const variantClassNames={UOR59_4OF:\"framer-v-q50sgx\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,link,title,width,...props})=>{var _ref;return{...props,dwcCbmlH0:link!==null&&link!==void 0?link:props.dwcCbmlH0,ekVCLgKMP:(_ref=title!==null&&title!==void 0?title:props.ekVCLgKMP)!==null&&_ref!==void 0?_ref:\"Back\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,dwcCbmlH0,ekVCLgKMP,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"UOR59_4OF\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:dwcCbmlH0,openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-q50sgx\",className,classNames)} framer-1vwzqpb`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"UOR59_4OF\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-44vmfm-container\",layoutDependency:layoutDependency,layoutId:\"PJyc7K9EL-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-806a3e8b-537f-422d-88d8-4b9f1a8fbacd, rgb(38, 38, 38))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowLeft\",id:\"PJyc7K9EL\",layoutId:\"PJyc7K9EL\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-e4nb0r\",\"data-styles-preset\":\"xYyeMtAzT\",children:\"Back\"})}),className:\"framer-1rkptd7\",\"data-framer-name\":\"Back\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"XsnCtYRX5\",text:ekVCLgKMP,verticalAlignment:\"top\",withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Qxwue.framer-1vwzqpb, .framer-Qxwue .framer-1vwzqpb { display: block; }\",\".framer-Qxwue.framer-q50sgx { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-Qxwue .framer-44vmfm-container { flex: none; height: 16px; position: relative; width: 16px; }\",\".framer-Qxwue .framer-1rkptd7 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Qxwue.framer-q50sgx { gap: 0px; } .framer-Qxwue.framer-q50sgx > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-Qxwue.framer-q50sgx > :first-child { margin-left: 0px; } .framer-Qxwue.framer-q50sgx > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 200\n * @framerIntrinsicWidth 200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"dwcCbmlH0\":\"link\",\"ekVCLgKMP\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerLD01iK6yS=withCSS(Component,css,\"framer-Qxwue\");export default FramerLD01iK6yS;FramerLD01iK6yS.displayName=\"Back\";FramerLD01iK6yS.defaultProps={height:200,width:200};addPropertyControls(FramerLD01iK6yS,{dwcCbmlH0:{title:\"Link\",type:ControlType.Link},ekVCLgKMP:{defaultValue:\"Back\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(FramerLD01iK6yS,[{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\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerLD01iK6yS\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"200\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"200\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"dwcCbmlH0\\\":\\\"link\\\",\\\"ekVCLgKMP\\\":\\\"title\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./LD01iK6yS.map", "// Generated by Framer (5eef525)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Image,Link,RichText,useComponentViewport,useLocaleCode,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/Add9tkZg2HULOCINERyX/PbLJ8PCqE9Jeh6xPfRk4/LcKHimqRE.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/rYhYnORyHhbupG1N1124/Kw4JuOADciHNjFrYXEdf/xYyeMtAzT.js\";import Play from\"https://framerusercontent.com/modules/v2wpihWbukrLA06FEW1V/a6KIy5BftIL07vJD8sNV/by24wNCSt.js\";const PlayFonts=getFonts(Play);const PhosphorFonts=getFonts(Phosphor);const enabledGestures={oa5ue5XBG:{hover:true},pjeT3OZBh:{hover:true}};const cycleOrder=[\"oa5ue5XBG\",\"pjeT3OZBh\"];const serializationHash=\"framer-n0uFn\";const variantClassNames={oa5ue5XBG:\"framer-v-1sbsfxw\",pjeT3OZBh:\"framer-v-uy6nuo\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;const dateStyle=options.dateStyle;const timeZone=\"UTC\";try{return date.toLocaleDateString(locale,{dateStyle,timeZone});}catch{return date.toLocaleDateString(fallbackLocale,{dateStyle,timeZone});}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Default:\"oa5ue5XBG\",Locked:\"pjeT3OZBh\"};const getProps=({cursorLock,cursorPlay,date,default1,duration,height,id,image,locked,title,width,...props})=>{var _ref,_ref1,_ref2,_humanReadableVariantMap_props_variant,_ref3,_ref4;return{...props,A3j2_NnFs:(_ref=date!==null&&date!==void 0?date:props.A3j2_NnFs)!==null&&_ref!==void 0?_ref:\"1970-01-01T00:00:00.000Z\",b9rsAYzfQ:cursorPlay!==null&&cursorPlay!==void 0?cursorPlay:props.b9rsAYzfQ,EQ5JpLptX:cursorLock!==null&&cursorLock!==void 0?cursorLock:props.EQ5JpLptX,FlcfA6b8n:(_ref1=title!==null&&title!==void 0?title:props.FlcfA6b8n)!==null&&_ref1!==void 0?_ref1:\"Title\",iTWADHo7d:default1!==null&&default1!==void 0?default1:props.iTWADHo7d,M2YC2lU0d:(_ref2=duration!==null&&duration!==void 0?duration:props.M2YC2lU0d)!==null&&_ref2!==void 0?_ref2:\"Duration\",variant:(_ref3=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref3!==void 0?_ref3:\"oa5ue5XBG\",vVcroSUuC:locked!==null&&locked!==void 0?locked:props.vVcroSUuC,xqUglY9Ez:(_ref4=image!==null&&image!==void 0?image:props.xqUglY9Ez)!==null&&_ref4!==void 0?_ref4:{src:\"https://framerusercontent.com/images/WBmp3IgmU4ACV3Ya6du6fJLgA.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/WBmp3IgmU4ACV3Ya6du6fJLgA.jpg?scale-down-to=1024 717w,https://framerusercontent.com/images/WBmp3IgmU4ACV3Ya6du6fJLgA.jpg?scale-down-to=2048 1434w,https://framerusercontent.com/images/WBmp3IgmU4ACV3Ya6du6fJLgA.jpg 2650w\"}};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,iTWADHo7d,xqUglY9Ez,FlcfA6b8n,A3j2_NnFs,M2YC2lU0d,vVcroSUuC,b9rsAYzfQ,EQ5JpLptX,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"oa5ue5XBG\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"oa5ue5XBG-hover\",\"pjeT3OZBh-hover\"].includes(gestureVariant))return false;return true;};const activeLocaleCode=useLocaleCode();const textContent=toDateString(A3j2_NnFs,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:iTWADHo7d,smoothScroll:true,...addPropertyOverrides({pjeT3OZBh:{href:vVcroSUuC}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1sbsfxw\",className,classNames)} framer-5roaq1`,\"data-framer-cursor\":b9rsAYzfQ,\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"oa5ue5XBG\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-67f46c62-dabf-4520-93ef-2989d3567173, rgb(255, 255, 255))\",borderBottomLeftRadius:18,borderBottomRightRadius:18,borderTopLeftRadius:18,borderTopRightRadius:18,...style},...addPropertyOverrides({\"oa5ue5XBG-hover\":{\"data-framer-name\":undefined},\"pjeT3OZBh-hover\":{\"data-framer-name\":undefined},pjeT3OZBh:{\"data-framer-cursor\":EQ5JpLptX,\"data-framer-name\":\"Locked\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-oemvux\",\"data-framer-name\":\"Photo Stack\",layoutDependency:layoutDependency,layoutId:\"wgdTi08BB\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(xqUglY9Ez)},className:\"framer-u8dnmt\",layoutDependency:layoutDependency,layoutId:\"Nozha7bAz\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-afv7la\",\"data-framer-name\":\"Lock Stack\",layoutDependency:layoutDependency,layoutId:\"ALRSnmTZV\",style:{backdropFilter:\"blur(0px)\",backgroundColor:\"rgba(0, 0, 0, 0)\",WebkitBackdropFilter:\"blur(0px)\"},variants:{pjeT3OZBh:{backgroundColor:\"rgba(38, 38, 38, 0.75)\"}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-777tzp\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"hW9nvEthU\",transformTemplate:transformTemplate1,children:isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"60px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-lseef2-container\",layoutDependency:layoutDependency,layoutId:\"TqHFi0ugL-container\",children:/*#__PURE__*/_jsx(Play,{height:\"100%\",id:\"TqHFi0ugL\",layoutId:\"TqHFi0ugL\",style:{height:\"100%\",width:\"100%\"},variant:\"uX2HWhhgC\",width:\"100%\",...addPropertyOverrides({pjeT3OZBh:{variant:\"mpGobQ1wD\"}},baseVariant,gestureVariant)})})})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-632xje\",\"data-framer-name\":\"Post\",layoutDependency:layoutDependency,layoutId:\"lblNAKk6N\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13lmeum\",layoutDependency:layoutDependency,layoutId:\"Q_oG7SrkG\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-gnr09a\",\"data-styles-preset\":\"LcKHimqRE\",children:\"Title\"})}),className:\"framer-13w6po\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Jzl35yc7_\",text:FlcfA6b8n,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wa4nbd\",layoutDependency:layoutDependency,layoutId:\"vNCG4ug7P\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-85l5yi\",\"data-framer-name\":\"Date\",layoutDependency:layoutDependency,layoutId:\"HwrlNIFDv\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dz8ngx-container\",layoutDependency:layoutDependency,layoutId:\"BIy74DC7a-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-806a3e8b-537f-422d-88d8-4b9f1a8fbacd, rgb(38, 38, 38))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CalendarBlank\",id:\"BIy74DC7a\",layoutId:\"BIy74DC7a\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-e4nb0r\",\"data-styles-preset\":\"xYyeMtAzT\",children:\"Jan 1, 1970\"})}),className:\"framer-1jcpqfd\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"c2IrOQO9I\",text:textContent,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13bbycx\",\"data-framer-name\":\"Duration\",layoutDependency:layoutDependency,layoutId:\"D7WYMMHIz\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1m84ico-container\",layoutDependency:layoutDependency,layoutId:\"BteFpzarv-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-806a3e8b-537f-422d-88d8-4b9f1a8fbacd, rgb(38, 38, 38))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Timer\",id:\"BteFpzarv\",layoutId:\"BteFpzarv\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-e4nb0r\",\"data-styles-preset\":\"xYyeMtAzT\",style:{\"--framer-text-alignment\":\"right\"},children:\"Duration\"})}),className:\"framer-u04222\",\"data-framer-name\":\"Duration\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"fXshDTRZk\",text:M2YC2lU0d,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-n0uFn.framer-5roaq1, .framer-n0uFn .framer-5roaq1 { display: block; }\",\".framer-n0uFn.framer-1sbsfxw { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: wrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 480px; will-change: var(--framer-will-change-override, transform); }\",\".framer-n0uFn .framer-oemvux { align-content: center; align-items: center; aspect-ratio: 2 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 100px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-n0uFn .framer-u8dnmt { aspect-ratio: 2 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 234px); left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-n0uFn .framer-afv7la { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; justify-content: center; left: 0px; overflow: visible; padding: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-n0uFn .framer-777tzp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 50%; width: min-content; z-index: 1; }\",\".framer-n0uFn .framer-lseef2-container { flex: none; height: 60px; position: relative; width: 60px; z-index: 1; }\",\".framer-n0uFn .framer-632xje { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; min-width: 200px; padding: 0px; position: relative; width: 100%; }\",\".framer-n0uFn .framer-13lmeum { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 24px 24px 24px; position: relative; width: 100%; }\",\".framer-n0uFn .framer-13w6po { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-n0uFn .framer-1wa4nbd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-n0uFn .framer-85l5yi, .framer-n0uFn .framer-13bbycx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: 17px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-n0uFn .framer-1dz8ngx-container, .framer-n0uFn .framer-1m84ico-container { flex: none; height: 17px; position: relative; width: 17px; }\",\".framer-n0uFn .framer-1jcpqfd, .framer-n0uFn .framer-u04222 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-n0uFn.framer-1sbsfxw, .framer-n0uFn .framer-oemvux, .framer-n0uFn .framer-afv7la, .framer-n0uFn .framer-777tzp, .framer-n0uFn .framer-632xje, .framer-n0uFn .framer-13lmeum, .framer-n0uFn .framer-85l5yi, .framer-n0uFn .framer-13bbycx { gap: 0px; } .framer-n0uFn.framer-1sbsfxw > *, .framer-n0uFn .framer-13lmeum > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-n0uFn.framer-1sbsfxw > :first-child, .framer-n0uFn .framer-777tzp > :first-child, .framer-n0uFn .framer-632xje > :first-child, .framer-n0uFn .framer-13lmeum > :first-child { margin-top: 0px; } .framer-n0uFn.framer-1sbsfxw > :last-child, .framer-n0uFn .framer-777tzp > :last-child, .framer-n0uFn .framer-632xje > :last-child, .framer-n0uFn .framer-13lmeum > :last-child { margin-bottom: 0px; } .framer-n0uFn .framer-oemvux > *, .framer-n0uFn .framer-afv7la > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-n0uFn .framer-oemvux > :first-child, .framer-n0uFn .framer-afv7la > :first-child, .framer-n0uFn .framer-85l5yi > :first-child, .framer-n0uFn .framer-13bbycx > :first-child { margin-left: 0px; } .framer-n0uFn .framer-oemvux > :last-child, .framer-n0uFn .framer-afv7la > :last-child, .framer-n0uFn .framer-85l5yi > :last-child, .framer-n0uFn .framer-13bbycx > :last-child { margin-right: 0px; } .framer-n0uFn .framer-777tzp > *, .framer-n0uFn .framer-632xje > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-n0uFn .framer-85l5yi > *, .framer-n0uFn .framer-13bbycx > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } }\",\".framer-n0uFn.framer-v-uy6nuo .framer-lseef2-container { order: 0; }\",\".framer-n0uFn.framer-v-1sbsfxw.hover .framer-777tzp { min-height: 96px; min-width: 96px; }\",\".framer-n0uFn.framer-v-uy6nuo.hover .framer-777tzp { min-height: 72px; min-width: 72px; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 355\n * @framerIntrinsicWidth 480\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"pjeT3OZBh\":{\"layout\":[\"fixed\",\"auto\"]},\"XUjWXihLH\":{\"layout\":[\"fixed\",\"auto\"]},\"NfYiEFz7j\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"iTWADHo7d\":\"default1\",\"xqUglY9Ez\":\"image\",\"FlcfA6b8n\":\"title\",\"A3j2_NnFs\":\"date\",\"M2YC2lU0d\":\"duration\",\"vVcroSUuC\":\"locked\",\"b9rsAYzfQ\":\"cursorPlay\",\"EQ5JpLptX\":\"cursorLock\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerRzjr5zmWY=withCSS(Component,css,\"framer-n0uFn\");export default FramerRzjr5zmWY;FramerRzjr5zmWY.displayName=\"Video Card\";FramerRzjr5zmWY.defaultProps={height:355,width:480};addPropertyControls(FramerRzjr5zmWY,{variant:{options:[\"oa5ue5XBG\",\"pjeT3OZBh\"],optionTitles:[\"Default\",\"Locked\"],title:\"Variant\",type:ControlType.Enum},iTWADHo7d:{title:\"Default\",type:ControlType.Link},xqUglY9Ez:{__defaultAssetReference:\"data:framer/asset-reference,WBmp3IgmU4ACV3Ya6du6fJLgA.jpg?originalFilename=photo-1563291074-2bf8677ac0e5%3Fcrop%3Dentropy%26cs%3Dsrgb%26fm%3Djpg%26ixid%3DM3wxMzc5NjJ8MHwxfHNlYXJjaHw0MXx8YmFja2dyb3VuZHxlbnwwfHx8fDE3MDY4NzI5NDV8MA%26ixlib%3Drb-4.0.jpg&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},FlcfA6b8n:{defaultValue:\"Title\",title:\"Title\",type:ControlType.String},A3j2_NnFs:{defaultValue:\"1970-01-01T00:00:00.000Z\",title:\"Date\",type:ControlType.Date},M2YC2lU0d:{defaultValue:\"Duration\",title:\"Duration\",type:ControlType.String},vVcroSUuC:{title:\"Locked\",type:ControlType.Link},b9rsAYzfQ:{title:\"Cursor Play\",type:ControlType.CustomCursor},EQ5JpLptX:{title:\"Cursor Lock\",type:ControlType.CustomCursor}});addFonts(FramerRzjr5zmWY,[{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\"}]},...PlayFonts,...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerRzjr5zmWY\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pjeT3OZBh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XUjWXihLH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NfYiEFz7j\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"480\",\"framerVariables\":\"{\\\"iTWADHo7d\\\":\\\"default1\\\",\\\"xqUglY9Ez\\\":\\\"image\\\",\\\"FlcfA6b8n\\\":\\\"title\\\",\\\"A3j2_NnFs\\\":\\\"date\\\",\\\"M2YC2lU0d\\\":\\\"duration\\\",\\\"vVcroSUuC\\\":\\\"locked\\\",\\\"b9rsAYzfQ\\\":\\\"cursorPlay\\\",\\\"EQ5JpLptX\\\":\\\"cursorLock\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"355\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (5eef525)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getPropertyControls,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/rYhYnORyHhbupG1N1124/Kw4JuOADciHNjFrYXEdf/xYyeMtAzT.js\";const PhosphorFonts=getFonts(Phosphor);const PhosphorControls=getPropertyControls(Phosphor);const cycleOrder=[\"wDHBuRDAJ\"];const serializationHash=\"framer-0tgdq\";const variantClassNames={wDHBuRDAJ:\"framer-v-w5cofo\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableEnumMap={Bold:\"bold\",Duotone:\"duotone\",Fill:\"fill\",Light:\"light\",Regular:\"regular\",Thin:\"thin\"};const getProps=({background,height,icon,iconColor,iconVisible,id,textColor,title,weightType,width,...props})=>{var _humanReadableEnumMap_weightType,_ref,_ref1,_ref2,_ref3,_ref4,_ref5,_ref6,_ref7;return{...props,AsruFoOGP:(_ref1=(_ref=(_humanReadableEnumMap_weightType=humanReadableEnumMap[weightType])!==null&&_humanReadableEnumMap_weightType!==void 0?_humanReadableEnumMap_weightType:weightType)!==null&&_ref!==void 0?_ref:props.AsruFoOGP)!==null&&_ref1!==void 0?_ref1:\"fill\",k3olZMtHz:(_ref2=background!==null&&background!==void 0?background:props.k3olZMtHz)!==null&&_ref2!==void 0?_ref2:\"var(--token-42c6ed86-f6d1-4897-8c22-56269784d8ca, rgb(235, 250, 255))\",ndRnwgfE7:(_ref3=title!==null&&title!==void 0?title:props.ndRnwgfE7)!==null&&_ref3!==void 0?_ref3:\"Expert\",OnJjI0g12:(_ref4=iconVisible!==null&&iconVisible!==void 0?iconVisible:props.OnJjI0g12)!==null&&_ref4!==void 0?_ref4:true,PCDwmC1gd:(_ref5=iconColor!==null&&iconColor!==void 0?iconColor:props.PCDwmC1gd)!==null&&_ref5!==void 0?_ref5:\"var(--token-150fa150-05bb-4b2e-8421-72c9ff4d8731, rgb(0, 77, 102))\",tAvmrAfOS:(_ref6=icon!==null&&icon!==void 0?icon:props.tAvmrAfOS)!==null&&_ref6!==void 0?_ref6:\"House\",vM_dLyoOf:(_ref7=textColor!==null&&textColor!==void 0?textColor:props.vM_dLyoOf)!==null&&_ref7!==void 0?_ref7:\"var(--token-150fa150-05bb-4b2e-8421-72c9ff4d8731, rgb(0, 115, 153))\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,ndRnwgfE7,vM_dLyoOf,k3olZMtHz,tAvmrAfOS,PCDwmC1gd,AsruFoOGP,OnJjI0g12,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"wDHBuRDAJ\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-w5cofo\",className,classNames),\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"wDHBuRDAJ\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:k3olZMtHz,borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,...style},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-styles-preset-e4nb0r\",\"data-styles-preset\":\"xYyeMtAzT\",style:{\"--framer-text-color\":\"var(--extracted-tcooor, var(--variable-reference-vM_dLyoOf-Vo_RFB5iA))\"},children:\"Expert\"})}),className:\"framer-692p23\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"iYa1U78_O\",style:{\"--extracted-tcooor\":\"var(--variable-reference-vM_dLyoOf-Vo_RFB5iA)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-vM_dLyoOf-Vo_RFB5iA\":vM_dLyoOf},text:ndRnwgfE7,verticalAlignment:\"top\",withExternalLayout:true}),OnJjI0g12&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-kfk87q-container\",layoutDependency:layoutDependency,layoutId:\"EzV84DKEt-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:PCDwmC1gd,height:\"100%\",iconSearch:\"House\",iconSelection:tAvmrAfOS,id:\"EzV84DKEt\",layoutId:\"EzV84DKEt\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:AsruFoOGP,width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-0tgdq.framer-xlhr2d, .framer-0tgdq .framer-xlhr2d { display: block; }\",\".framer-0tgdq.framer-w5cofo { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 6px 12px 6px 12px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-0tgdq .framer-692p23 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-0tgdq .framer-kfk87q-container { flex: none; height: 16px; position: relative; width: 16px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0tgdq.framer-w5cofo { gap: 0px; } .framer-0tgdq.framer-w5cofo > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-0tgdq.framer-w5cofo > :first-child { margin-left: 0px; } .framer-0tgdq.framer-w5cofo > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 29\n * @framerIntrinsicWidth 87\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"ndRnwgfE7\":\"title\",\"vM_dLyoOf\":\"textColor\",\"k3olZMtHz\":\"background\",\"tAvmrAfOS\":\"icon\",\"PCDwmC1gd\":\"iconColor\",\"AsruFoOGP\":\"weightType\",\"OnJjI0g12\":\"iconVisible\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerVo_RFB5iA=withCSS(Component,css,\"framer-0tgdq\");export default FramerVo_RFB5iA;FramerVo_RFB5iA.displayName=\"Badge\";FramerVo_RFB5iA.defaultProps={height:29,width:87};addPropertyControls(FramerVo_RFB5iA,{ndRnwgfE7:{defaultValue:\"Expert\",displayTextArea:false,title:\"Title\",type:ControlType.String},vM_dLyoOf:{defaultValue:\"var(--token-150fa150-05bb-4b2e-8421-72c9ff4d8731, rgb(0, 115, 153))\",title:\"Text Color\",type:ControlType.Color},k3olZMtHz:{defaultValue:'var(--token-42c6ed86-f6d1-4897-8c22-56269784d8ca, rgb(235, 250, 255)) /* {\"name\":\"Blue\"} */',title:\"Background\",type:ControlType.Color},tAvmrAfOS:(PhosphorControls===null||PhosphorControls===void 0?void 0:PhosphorControls[\"iconSelection\"])&&{...PhosphorControls[\"iconSelection\"],defaultValue:\"House\",description:undefined,hidden:undefined,title:\"Icon\"},PCDwmC1gd:{defaultValue:'var(--token-150fa150-05bb-4b2e-8421-72c9ff4d8731, rgb(0, 77, 102)) /* {\"name\":\"Blue/20\"} */',title:\"Icon Color\",type:ControlType.Color},AsruFoOGP:(PhosphorControls===null||PhosphorControls===void 0?void 0:PhosphorControls[\"weight\"])&&{...PhosphorControls[\"weight\"],defaultValue:\"fill\",description:undefined,hidden:undefined,title:\"Weight Type\"},OnJjI0g12:{defaultValue:true,title:\"Icon Visible\",type:ControlType.Boolean}});addFonts(FramerVo_RFB5iA,[{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\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerVo_RFB5iA\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"ndRnwgfE7\\\":\\\"title\\\",\\\"vM_dLyoOf\\\":\\\"textColor\\\",\\\"k3olZMtHz\\\":\\\"background\\\",\\\"tAvmrAfOS\\\":\\\"icon\\\",\\\"PCDwmC1gd\\\":\\\"iconColor\\\",\\\"AsruFoOGP\\\":\\\"weightType\\\",\\\"OnJjI0g12\\\":\\\"iconVisible\\\"}\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"87\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"29\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Vo_RFB5iA.map", "// Generated by Framer (5eef525)\nexport const props={SqClX_ynQ:{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,isMixedBorderRadius:false,isRed:true,topLeftRadius:0,topRightRadius:0}};export const fonts={};\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"props\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-Medium\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-MediumItalic\"]);export const fonts=[];export const css=['.framer-EjUdq .framer-styles-preset-gnr09a:not(.rich-text-wrapper), .framer-EjUdq .framer-styles-preset-gnr09a.rich-text-wrapper h3 { --framer-font-family: \"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter-BoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter-MediumItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 22px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: -0.02em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-806a3e8b-537f-422d-88d8-4b9f1a8fbacd, #262626); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-EjUdq .framer-styles-preset-gnr09a:not(.rich-text-wrapper), .framer-EjUdq .framer-styles-preset-gnr09a.rich-text-wrapper h3 { --framer-font-family: \"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter-BoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter-MediumItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: -0.02em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-806a3e8b-537f-422d-88d8-4b9f1a8fbacd, #262626); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-EjUdq .framer-styles-preset-gnr09a:not(.rich-text-wrapper), .framer-EjUdq .framer-styles-preset-gnr09a.rich-text-wrapper h3 { --framer-font-family: \"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter-BoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter-MediumItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: -0.02em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-806a3e8b-537f-422d-88d8-4b9f1a8fbacd, #262626); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-EjUdq\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (6d82f59)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getWhereExpressionFromPathVariables,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useActiveVariantCallback,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useOverlayState,useQueryData,useRouteElementId,useRouter,withCSS,withMappedReactProps}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import*as ReactDOM from\"react-dom\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/9rhBPUZttCbLCWqJEL42/YouTube.js\";import Particles from\"https://framerusercontent.com/modules/wb6ZrZlCLNQ5HHBJtNND/c1GLxCsQBQvlLXhkz7er/Particles.js\";import Play from\"#framer/local/canvasComponent/by24wNCSt/by24wNCSt.js\";import Button from\"#framer/local/canvasComponent/iM3vHV3bS/iM3vHV3bS.js\";import Back from\"#framer/local/canvasComponent/LD01iK6yS/LD01iK6yS.js\";import Newsletter from\"#framer/local/canvasComponent/n67m2Xmei/n67m2Xmei.js\";import VideoCard,*as VideoCardInfo from\"#framer/local/canvasComponent/Rzjr5zmWY/Rzjr5zmWY.js\";import GetTemplateButton from\"#framer/local/canvasComponent/siPxZcsje/siPxZcsje.js\";import Footer from\"#framer/local/canvasComponent/vfGWeq_Dz/vfGWeq_Dz.js\";import Badge from\"#framer/local/canvasComponent/Vo_RFB5iA/Vo_RFB5iA.js\";import{withVariant}from\"#framer/local/codeFile/bzt84cT/FramerAuth.js\";import Tutorials,{enumToDisplayNameFunctions}from\"#framer/local/collection/OqEqbB44z/OqEqbB44z.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle5 from\"#framer/local/css/AgWf5lBNb/AgWf5lBNb.js\";import*as sharedStyle3 from\"#framer/local/css/LcKHimqRE/LcKHimqRE.js\";import*as sharedStyle2 from\"#framer/local/css/r3TiILItB/r3TiILItB.js\";import*as sharedStyle from\"#framer/local/css/RlWWoPe3y/RlWWoPe3y.js\";import*as sharedStyle4 from\"#framer/local/css/s6ZtA6BGi/s6ZtA6BGi.js\";import*as sharedStyle1 from\"#framer/local/css/xYyeMtAzT/xYyeMtAzT.js\";import metadataProvider from\"#framer/local/webPageMetadata/rXXlR3ztA/rXXlR3ztA.js\";const ParticlesFonts=getFonts(Particles);const BackFonts=getFonts(Back);const BadgeFonts=getFonts(Badge);const YouTubeFonts=getFonts(YouTube);const VideoCardFonts=getFonts(VideoCard);const VideoCardWithVariantWithMappedReactPropsb4rstc=withMappedReactProps(withVariant(VideoCard),VideoCardInfo);const ButtonFonts=getFonts(Button);const NewsletterFonts=getFonts(Newsletter);const FooterFonts=getFonts(Footer);const GetTemplateButtonFonts=getFonts(GetTemplateButton);const PlayFonts=getFonts(Play);const breakpoints={CFSbFLyCP:\"(min-width: 810px) and (max-width: 1199px)\",kYbSW7jTu:\"(min-width: 1200px)\",Q8uYhW_ki:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-Q1xET\";const variantClassNames={CFSbFLyCP:\"framer-v-6rxiza\",kYbSW7jTu:\"framer-v-l0s4sc\",Q8uYhW_ki:\"framer-v-6u6oyk\"};const convertFromEnum=(value,activeLocale)=>{switch(value){case\"vC2nJatlG\":return'var(--token-e74cd5ed-5eb7-43ac-bb0a-5374432ecd26, rgb(0, 128, 94)) /* {\"name\":\"Green/25\"} */';case\"XkPu8BsKu\":return'var(--token-67f46c62-dabf-4520-93ef-2989d3567173, rgb(255, 255, 255)) /* {\"name\":\"Light/100\"} */';default:return'var(--token-67f46c62-dabf-4520-93ef-2989d3567173, rgb(255, 255, 255)) /* {\"name\":\"Light/100\"} */';}};const toString=value=>{return typeof value===\"string\"?value:String(value);};const convertFromEnum1=(value,activeLocale)=>{switch(value){case\"vC2nJatlG\":return'var(--token-34a7d2a0-df87-4e92-b5ba-bee7cf2232ce, rgb(194, 255, 239)) /* {\"name\":\"Green/88\"} */';case\"XkPu8BsKu\":return'var(--token-806a3e8b-537f-422d-88d8-4b9f1a8fbacd, rgb(38, 38, 38)) /* {\"name\":\"Dark/15\"} */';default:return'var(--token-806a3e8b-537f-422d-88d8-4b9f1a8fbacd, rgb(38, 38, 38)) /* {\"name\":\"Dark/15\"} */';}};const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const display=options.display?options.display:\"date\";const dateOptions={dateStyle:display!==\"time\"?options.dateStyle:undefined,timeStyle:display===\"date\"?undefined:\"short\",timeZone:\"UTC\"};const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;// We add a try block because an invalid language code results in a crash\ntry{return date.toLocaleString(locale,dateOptions);}catch{return date.toLocaleString(fallbackLocale,dateOptions);}};const convertFromEnum2=(value,activeLocale)=>{switch(value){case\"oPa82KAx9\":return\"Free for All\";case\"aSPZsNdHs\":return\"Members Only\";default:return\"\";}};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};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 HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"kYbSW7jTu\",Phone:\"Q8uYhW_ki\",Tablet:\"CFSbFLyCP\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"kYbSW7jTu\"};};const cursor={component:Play,variant:\"uX2HWhhgC\"};const cursor1={component:Play,variant:\"P3OcxEnSa\"};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"rXXlR3ztA\",data:Tutorials,type:\"Collection\"},select:[{collection:\"rXXlR3ztA\",name:\"uy9pdr_hF\",type:\"Identifier\"},{collection:\"rXXlR3ztA\",name:\"v78oG3Vbv\",type:\"Identifier\"},{collection:\"rXXlR3ztA\",name:\"v1Y5eHFOT\",type:\"Identifier\"},{collection:\"rXXlR3ztA\",name:\"pxGDUFg82\",type:\"Identifier\"},{collection:\"rXXlR3ztA\",name:\"vj5ske06K\",type:\"Identifier\"},{collection:\"rXXlR3ztA\",name:\"eK7pw2kSs\",type:\"Identifier\"},{collection:\"rXXlR3ztA\",name:\"bryr9wyrW\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"rXXlR3ztA\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,eK7pw2kSs=getFromCurrentRouteData(\"eK7pw2kSs\"),pxGDUFg82=getFromCurrentRouteData(\"pxGDUFg82\"),uy9pdr_hF=getFromCurrentRouteData(\"uy9pdr_hF\")??\"\",v1Y5eHFOT=getFromCurrentRouteData(\"v1Y5eHFOT\")??\"\",v78oG3Vbv=getFromCurrentRouteData(\"v78oG3Vbv\"),vj5ske06K=getFromCurrentRouteData(\"vj5ske06K\")??\"\",bryr9wyrW=getFromCurrentRouteData(\"bryr9wyrW\")??\"\",mZnAWOsWyggyCONaS0,BuB4roo0UggyCONaS0,uy9pdr_hFggyCONaS0,v78oG3VbvggyCONaS0,vj5ske06KggyCONaS0,idggyCONaS0,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(currentRouteData,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);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const t0KbldIPS3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const o4ybBFUHc1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const router=useRouter();const activeLocaleCode=useLocaleCode();const textContent=toDateString(v78oG3Vbv,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);const textContent1=toString(convertFromEnum2(eK7pw2kSs,activeLocale));const elementId=useRouteElementId(\"ppUYM3wNj\");const ref2=React.useRef(null);const defaultLayoutId=React.useId();useCustomCursors({ls130f:cursor1,lvk0cc:cursor});const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"kYbSW7jTu\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-70b4ec78-49dc-41e9-9c77-ce3c1e522591, rgb(250, 250, 250)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-l0s4sc\",className),ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f1yzq5\",\"data-framer-name\":\"Heading Section\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-tpon7d-container\",children:/*#__PURE__*/_jsx(Particles,{background:\"var(--token-67f46c62-dabf-4520-93ef-2989d3567173, rgb(255, 255, 255))\",clickOptions:{clickEnabled:false,clickModes:\"push\"},color:\"rgb(38, 38, 38)\",colors:[\"rgb(51, 78, 255)\",\"rgb(0, 128, 94)\",\"rgb(255, 82, 51)\",\"rgb(38, 38, 38)\"],densityOptions:{densityArea:5e3,densityEnable:false,densityFactor:50},fpsOptions:30,height:\"100%\",hoverOptions:{hoverEnabled:true,hoverForce:10,hoverModes:\"none\",hoverParallax:false,hoverSmooth:10},id:\"kEOQfdg2c\",layoutId:\"kEOQfdg2c\",linksOptions:{linksColor:\"rgb(255, 255, 255)\",linksDistance:100,linksEnabled:false,linksOpacity:.2,linksWidth:1},modeOptions:{bubbleDistance:100,bubbleDuration:.4,bubbleSize:40,connectDistance:100,connectLinksOpacity:.2,connectRadius:50,grabDistance:100,grabLinksOpacity:.2,pushQuantity:4,removeQuantity:4,repulseDistance:200,repulseDuration:1.2,trailDelay:.1,trailQuantity:10},moveOptions:{moveAttractDistance:100,moveAttractEnabled:false,moveDirection:\"none\",moveEnabled:true,moveGravityAcceleration:1,moveGravityEnabled:false,moveGravityMaxSpeed:2,moveOut:\"bounce\",moveRandom:false,moveSpeed:1,moveSpinAcceleration:1,moveSpinEnabled:false,moveStraight:false,moveTrailAmount:100,moveTrailEnabled:false,moveVibrate:false},number:200,opacityOptions:{opacity:1,opacityMax:1,opacityMin:0,opacityType:true},particlesID:\"One\",radius:0,rotateOptions:{rotateAnimation:false,rotateDirection:\"random\",rotateSpeed:5,rotateSync:false,rotateValue:0},shapeOptions:{characterType:\"\uD83D\uDE0E\",imageHeight:100,imageWidth:100,shapeType:\"circle\"},sizeOptions:{size:1,sizeMax:10,sizeMin:1,sizeType:true},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rkaj2o\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hpz57p\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":uBo4qsUPz\",webPageId:\"UujaUTJEL\"},implicitPathVariables:undefined},{href:{hash:\":uBo4qsUPz\",webPageId:\"UujaUTJEL\"},implicitPathVariables:undefined},{href:{hash:\":uBo4qsUPz\",webPageId:\"UujaUTJEL\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,y:(componentViewport?.y||0)+0+0+172+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-cnnbc3-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CFSbFLyCP:{dwcCbmlH0:resolvedLinks[1]},Q8uYhW_ki:{dwcCbmlH0:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(Back,{dwcCbmlH0:resolvedLinks[0],ekVCLgKMP:\"Back\",height:\"100%\",id:\"Ew9OdxPrc\",layoutId:\"Ew9OdxPrc\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7qgh2t\",\"data-framer-name\":\"Date\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:29,y:(componentViewport?.y||0)+0+0+172+0+0+0+85.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-9iimdl-container\",children:/*#__PURE__*/_jsx(Badge,{AsruFoOGP:\"fill\",height:\"100%\",id:\"LtKB5QU38\",k3olZMtHz:toString(convertFromEnum1(pxGDUFg82,activeLocale)),layoutId:\"LtKB5QU38\",ndRnwgfE7:enumToDisplayNameFunctions[\"eK7pw2kSs\"]?.(eK7pw2kSs,activeLocale),OnJjI0g12:false,PCDwmC1gd:\"var(--token-150fa150-05bb-4b2e-8421-72c9ff4d8731, rgb(0, 77, 102))\",tAvmrAfOS:\"House\",vM_dLyoOf:toString(convertFromEnum(pxGDUFg82,activeLocale)),width:\"100%\"})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1um2w9\",\"data-styles-preset\":\"RlWWoPe3y\",style:{\"--framer-text-alignment\":\"left\"},children:\"Mastering Framer Basics: A Step-by-Step Guide for Beginners\"})}),className:\"framer-1l3vp5b\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:uy9pdr_hF,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"article\",{className:\"framer-1165ije\",\"data-framer-name\":\"Post\",children:/*#__PURE__*/_jsxs(\"article\",{className:\"framer-1a4eq3b\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1it17qf-container\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"qlATWQ_bv\",isMixedBorderRadius:false,isRed:true,layoutId:\"qlATWQ_bv\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:v1Y5eHFOT,width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-j2bpad\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-e4nb0r\",\"data-styles-preset\":\"xYyeMtAzT\",children:\"Content\"})}),className:\"framer-1r9d98z\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-e4nb0r\",\"data-styles-preset\":\"xYyeMtAzT\",children:\"Content\"})}),className:\"framer-1a69d3c\",\"data-framer-name\":\"Duration\",fonts:[\"Inter\"],text:vj5ske06K,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\":componentPresets.props[\"SqClX_ynQ\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:bryr9wyrW,className:\"framer-1dnsgwm\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-fqocxb\",h1:\"framer-styles-preset-1um2w9\",h2:\"framer-styles-preset-39u9gt\",h3:\"framer-styles-preset-gnr09a\",p:\"framer-styles-preset-rlrs9g\"},verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-sv31wm\",\"data-framer-name\":\"Other Posts\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1aqw644\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17bqwe\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-39u9gt\",\"data-styles-preset\":\"r3TiILItB\",style:{\"--framer-text-alignment\":\"center\"},children:\"Other\"})}),className:\"framer-wfnp9g\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-39u9gt\",\"data-styles-preset\":\"r3TiILItB\",style:{\"--framer-text-alignment\":\"center\"},children:\"Access\"})}),className:\"framer-10iuvry\",fonts:[\"Inter\"],text:textContent1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-39u9gt\",\"data-styles-preset\":\"r3TiILItB\",style:{\"--framer-text-alignment\":\"center\"},children:\"Tutorials\"})}),className:\"framer-181h65g\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14biksh\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"ggyCONaS0\",data:Tutorials,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"ggyCONaS0\",name:\"mZnAWOsWy\",type:\"Identifier\"},{collection:\"ggyCONaS0\",name:\"BuB4roo0U\",type:\"Identifier\"},{collection:\"ggyCONaS0\",name:\"uy9pdr_hF\",type:\"Identifier\"},{collection:\"ggyCONaS0\",name:\"v78oG3Vbv\",type:\"Identifier\"},{collection:\"ggyCONaS0\",name:\"vj5ske06K\",type:\"Identifier\"},{collection:\"ggyCONaS0\",name:\"id\",type:\"Identifier\"}],where:{left:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"ggyCONaS0\",name:\"uy9pdr_hF\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:uy9pdr_hF},type:\"BinaryOperation\"}},operator:\"and\",right:{left:{collection:\"ggyCONaS0\",name:\"eK7pw2kSs\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:eK7pw2kSs},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({BuB4roo0U:BuB4roo0UggyCONaS0,id:idggyCONaS0,mZnAWOsWy:mZnAWOsWyggyCONaS0,uy9pdr_hF:uy9pdr_hFggyCONaS0,v78oG3Vbv:v78oG3VbvggyCONaS0,vj5ske06K:vj5ske06KggyCONaS0},index)=>{mZnAWOsWyggyCONaS0??=\"\";uy9pdr_hFggyCONaS0??=\"\";vj5ske06KggyCONaS0??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`ggyCONaS0-${idggyCONaS0}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{mZnAWOsWy:mZnAWOsWyggyCONaS0},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{mZnAWOsWy:mZnAWOsWyggyCONaS0},webPageId:\"rXXlR3ztA\"},implicitPathVariables:undefined},{href:{webPageId:\"JAXsFR_eH\"},implicitPathVariables:undefined},{href:{pathVariables:{mZnAWOsWy:mZnAWOsWyggyCONaS0},webPageId:\"rXXlR3ztA\"},implicitPathVariables:undefined},{href:{webPageId:\"JAXsFR_eH\"},implicitPathVariables:undefined},{href:{pathVariables:{mZnAWOsWy:mZnAWOsWyggyCONaS0},webPageId:\"rXXlR3ztA\"},implicitPathVariables:undefined},{href:{webPageId:\"JAXsFR_eH\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Q8uYhW_ki:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 960px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:355,width:`max((min(${componentViewport?.width||\"100vw\"} - 48px, 960px) - 24px) / 2, 200px)`,y:(componentViewport?.y||0)+0+1228.8+96+0+0+67.19999999999999+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-m2pnkv-container\",\"data-framer-cursor\":\"lvk0cc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CFSbFLyCP:{iTWADHo7d:resolvedLinks1[2],vVcroSUuC:resolvedLinks1[3]},Q8uYhW_ki:{iTWADHo7d:resolvedLinks1[4],vVcroSUuC:resolvedLinks1[5]}},children:/*#__PURE__*/_jsx(VideoCardWithVariantWithMappedReactPropsb4rstc,{A3j2_NnFs:v78oG3VbvggyCONaS0,b9rsAYzfQ:\"lvk0cc\",EQ5JpLptX:\"ls130f\",FlcfA6b8n:uy9pdr_hFggyCONaS0,height:\"100%\",id:\"cHu8Ng1CO\",iTWADHo7d:resolvedLinks1[0],layoutId:\"cHu8Ng1CO\",M2YC2lU0d:vj5ske06KggyCONaS0,style:{width:\"100%\"},variant:\"oa5ue5XBG\",vVcroSUuC:resolvedLinks1[1],width:\"100%\",xqUglY9Ez:toResponsiveImage(BuB4roo0UggyCONaS0)})})})})})})})},idggyCONaS0);})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"UujaUTJEL\"},implicitPathVariables:undefined},{href:{webPageId:\"UujaUTJEL\"},implicitPathVariables:undefined},{href:{webPageId:\"UujaUTJEL\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Q8uYhW_ki:{y:(componentViewport?.y||0)+0+1228.8+96+0+0+446.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:`min(${componentViewport?.width||\"100vw\"} - 48px, 960px)`,y:(componentViewport?.y||0)+0+1228.8+96+0+0+825.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jwz61m-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CFSbFLyCP:{UyQItdSDN:resolvedLinks2[1]},Q8uYhW_ki:{UyQItdSDN:resolvedLinks2[2]}},children:/*#__PURE__*/_jsx(Button,{Dgk3iLgOZ:false,GWn5aWLcs:\"View All Tutorials\",height:\"100%\",id:\"dkRpInoSy\",layoutId:\"dkRpInoSy\",SJ9xVBa21:\"var(--token-67f46c62-dabf-4520-93ef-2989d3567173, rgb(255, 255, 255))\",style:{height:\"100%\",width:\"100%\"},Tsjpo6rrw:\"TwitterLogo\",UyQItdSDN:resolvedLinks2[0],variant:\"r0F1IQzDN\",width:\"100%\"})})})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2ifnun\",\"data-framer-name\":\"Newsletter Section\",id:elementId,ref:ref2,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-6e048f-container\",children:/*#__PURE__*/_jsx(Particles,{background:\"var(--token-67f46c62-dabf-4520-93ef-2989d3567173, rgb(255, 255, 255))\",clickOptions:{clickEnabled:false,clickModes:\"push\"},color:\"rgb(38, 38, 38)\",colors:[\"rgb(51, 78, 255)\",\"rgb(0, 128, 94)\",\"rgb(255, 82, 51)\",\"rgb(38, 38, 38)\"],densityOptions:{densityArea:5e3,densityEnable:false,densityFactor:50},fpsOptions:30,height:\"100%\",hoverOptions:{hoverEnabled:true,hoverForce:10,hoverModes:\"none\",hoverParallax:false,hoverSmooth:10},id:\"GF5LOjb1t\",layoutId:\"GF5LOjb1t\",linksOptions:{linksColor:\"rgb(255, 255, 255)\",linksDistance:100,linksEnabled:false,linksOpacity:.2,linksWidth:1},modeOptions:{bubbleDistance:100,bubbleDuration:.4,bubbleSize:40,connectDistance:100,connectLinksOpacity:.2,connectRadius:50,grabDistance:100,grabLinksOpacity:.2,pushQuantity:4,removeQuantity:4,repulseDistance:200,repulseDuration:1.2,trailDelay:.1,trailQuantity:10},moveOptions:{moveAttractDistance:100,moveAttractEnabled:false,moveDirection:\"none\",moveEnabled:true,moveGravityAcceleration:1,moveGravityEnabled:false,moveGravityMaxSpeed:2,moveOut:\"bounce\",moveRandom:false,moveSpeed:1,moveSpinAcceleration:1,moveSpinEnabled:false,moveStraight:false,moveTrailAmount:100,moveTrailEnabled:false,moveVibrate:false},number:300,opacityOptions:{opacity:1,opacityMax:1,opacityMin:0,opacityType:true},particlesID:\"Two\",radius:0,rotateOptions:{rotateAnimation:false,rotateDirection:\"random\",rotateSpeed:5,rotateSync:false,rotateValue:0},shapeOptions:{characterType:\"\uD83D\uDE0E\",imageHeight:100,imageWidth:100,shapeType:\"circle\"},sizeOptions:{size:1,sizeMax:10,sizeMin:1,sizeType:true},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Q8uYhW_ki:{y:(componentViewport?.y||0)+0+1907+96+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:148,width:`min(${componentViewport?.width||\"100vw\"} - 48px, 960px)`,y:(componentViewport?.y||0)+0+2286+96+0,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-1jmyazb-container\",id:\"1jmyazb\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Q8uYhW_ki:{variant:\"NhqJtwwLy\"}},children:/*#__PURE__*/_jsx(Newsletter,{height:\"100%\",id:\"d9XApKrdA\",IjtNsY2cH:\"overlay\",layoutId:\"d9XApKrdA\",style:{maxWidth:\"100%\",width:\"100%\"},t0KbldIPS:t0KbldIPS3bnx0g({overlay}),variant:\"q1AAFRcrW\",width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-mqkpo1\"),\"data-framer-portal-id\":\"1jmyazb\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"fzzjPYI55\"),/*#__PURE__*/_jsxs(\"div\",{className:cx(scopingClassNames,\"framer-tvfanm\"),\"data-framer-portal-id\":\"1jmyazb\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-39u9gt\",\"data-styles-preset\":\"r3TiILItB\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Thank You for Subscribing\",/*#__PURE__*/_jsx(\"br\",{}),\"to My Newsletter!\"]})}),className:\"framer-1v8xjfr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-rlrs9g\",\"data-styles-preset\":\"s6ZtA6BGi\",style:{\"--framer-text-alignment\":\"center\"},children:\"I'm thrilled to have you join Learny's community.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-rlrs9g\",\"data-styles-preset\":\"s6ZtA6BGi\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-rlrs9g\",\"data-styles-preset\":\"s6ZtA6BGi\",style:{\"--framer-text-alignment\":\"center\"},children:\"Get ready to receive a dose of inspiration, the latest design insights, and exclusive updates directly to your inbox.\"})]}),className:\"framer-ls086t\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-28keij-container\",children:/*#__PURE__*/_jsx(Button,{Dgk3iLgOZ:false,GWn5aWLcs:\"Go Back to Website\",height:\"100%\",id:\"mZEczJFi7\",layoutId:\"mZEczJFi7\",o4ybBFUHc:o4ybBFUHc1wnntms({overlay}),SJ9xVBa21:\"var(--token-67f46c62-dabf-4520-93ef-2989d3567173, rgb(255, 255, 255))\",style:{height:\"100%\"},Tsjpo6rrw:\"TwitterLogo\",variant:\"PzDaXq6jz\",width:\"100%\"})})})]})]}),getContainer())})})]})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-i2cwuw\",\"data-framer-name\":\"Footer Section\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Q8uYhW_ki:{y:(componentViewport?.y||0)+0+2247+96+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:312,width:`min(${componentViewport?.width||\"100vw\"} - 48px, 960px)`,y:(componentViewport?.y||0)+0+2626+96+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-14b9aws-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Q8uYhW_ki:{variant:\"vC5Trc1xt\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"sICr3lDT8\",layoutId:\"sICr3lDT8\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"qxDXfZrI0\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,width:\"142px\",y:900,children:/*#__PURE__*/_jsx(Container,{className:\"framer-9wnnvn-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(GetTemplateButton,{height:\"100%\",id:\"IRR6iGvMz\",layoutId:\"IRR6iGvMz\",style:{height:\"100%\",width:\"100%\"},variant:\"flgjtgER6\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,width:\"142px\",y:944,children:/*#__PURE__*/_jsx(Container,{className:\"framer-jomc2h-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(GetTemplateButton,{height:\"100%\",id:\"WRb6B8xHD\",layoutId:\"WRb6B8xHD\",style:{height:\"100%\",width:\"100%\"},variant:\"ziPC_dTCL\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Q1xET.framer-1xb54y7, .framer-Q1xET .framer-1xb54y7 { display: block; }\",\".framer-Q1xET.framer-l0s4sc { align-content: center; align-items: center; background-color: var(--token-70b4ec78-49dc-41e9-9c77-ce3c1e522591, #fafafa); 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-Q1xET .framer-1f1yzq5 { align-content: center; align-items: center; background-color: var(--token-67f46c62-dabf-4520-93ef-2989d3567173, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 172px 24px 24px 24px; position: relative; width: 100%; }\",\".framer-Q1xET .framer-tpon7d-container, .framer-Q1xET .framer-6e048f-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-Q1xET .framer-1rkaj2o { align-content: flex-start; align-items: flex-start; background-color: var(--token-67f46c62-dabf-4520-93ef-2989d3567173, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 960px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-Q1xET .framer-1hpz57p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Q1xET .framer-cnnbc3-container, .framer-Q1xET .framer-9iimdl-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-Q1xET .framer-7qgh2t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; min-height: 17px; min-width: 151px; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-Q1xET .framer-1l3vp5b { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Q1xET .framer-1165ije { align-content: center; align-items: center; background-color: var(--token-67f46c62-dabf-4520-93ef-2989d3567173, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px 24px 96px 24px; position: relative; width: 100%; }\",\".framer-Q1xET .framer-1a4eq3b { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 960px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Q1xET .framer-1it17qf-container { aspect-ratio: 2 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 480px); position: relative; width: 100%; }\",\".framer-Q1xET .framer-j2bpad { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Q1xET .framer-1r9d98z, .framer-Q1xET .framer-1a69d3c { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Q1xET .framer-1dnsgwm { --framer-paragraph-spacing: 32px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Q1xET .framer-sv31wm { align-content: center; align-items: center; background-color: var(--token-70b4ec78-49dc-41e9-9c77-ce3c1e522591, #fafafa); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 96px 24px 96px 24px; position: relative; width: 100%; }\",\".framer-Q1xET .framer-1aqw644 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 960px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Q1xET .framer-17bqwe { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 960px; }\",\".framer-Q1xET .framer-wfnp9g, .framer-Q1xET .framer-10iuvry, .framer-Q1xET .framer-181h65g { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-Q1xET .framer-14biksh { display: grid; flex: none; gap: 24px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(200px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-Q1xET .framer-m2pnkv-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 1fr; }\",\".framer-Q1xET .framer-1jwz61m-container { flex: none; height: 40px; position: relative; width: 100%; }\",\".framer-Q1xET .framer-2ifnun, .framer-Q1xET .framer-i2cwuw { align-content: center; align-items: center; background-color: var(--token-67f46c62-dabf-4520-93ef-2989d3567173, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 96px 24px 96px 24px; position: relative; width: 100%; }\",\".framer-Q1xET .framer-1jmyazb-container { flex: none; height: auto; max-width: 960px; position: relative; width: 100%; z-index: 1; }\",\".framer-Q1xET.framer-mqkpo1 { background-color: var(--token-67f46c62-dabf-4520-93ef-2989d3567173, #ffffff); inset: 0px; position: fixed; user-select: none; z-index: 9; }\",\".framer-Q1xET.framer-tvfanm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px; position: fixed; top: 172px; transform: translateX(-50%); width: 520px; z-index: 9; }\",\".framer-Q1xET .framer-1v8xjfr { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Q1xET .framer-ls086t { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Q1xET .framer-28keij-container { flex: none; height: 40px; position: relative; width: auto; }\",\".framer-Q1xET .framer-14b9aws-container { flex: none; height: auto; max-width: 960px; position: relative; width: 100%; }\",\".framer-Q1xET .framer-9wnnvn-container { bottom: 64px; flex: none; height: 36px; position: fixed; right: 20px; width: 142px; z-index: 3; }\",\".framer-Q1xET .framer-jomc2h-container { bottom: 20px; flex: none; height: 36px; position: fixed; right: 20px; width: 142px; z-index: 10; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Q1xET.framer-l0s4sc, .framer-Q1xET .framer-1f1yzq5, .framer-Q1xET .framer-1rkaj2o, .framer-Q1xET .framer-7qgh2t, .framer-Q1xET .framer-1165ije, .framer-Q1xET .framer-1a4eq3b, .framer-Q1xET .framer-sv31wm, .framer-Q1xET .framer-1aqw644, .framer-Q1xET .framer-17bqwe, .framer-Q1xET .framer-2ifnun, .framer-Q1xET.framer-tvfanm, .framer-Q1xET .framer-i2cwuw { gap: 0px; } .framer-Q1xET.framer-l0s4sc > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Q1xET.framer-l0s4sc > :first-child, .framer-Q1xET .framer-1f1yzq5 > :first-child, .framer-Q1xET .framer-1rkaj2o > :first-child, .framer-Q1xET .framer-1165ije > :first-child, .framer-Q1xET .framer-1a4eq3b > :first-child, .framer-Q1xET .framer-sv31wm > :first-child, .framer-Q1xET .framer-1aqw644 > :first-child, .framer-Q1xET .framer-2ifnun > :first-child, .framer-Q1xET.framer-tvfanm > :first-child, .framer-Q1xET .framer-i2cwuw > :first-child { margin-top: 0px; } .framer-Q1xET.framer-l0s4sc > :last-child, .framer-Q1xET .framer-1f1yzq5 > :last-child, .framer-Q1xET .framer-1rkaj2o > :last-child, .framer-Q1xET .framer-1165ije > :last-child, .framer-Q1xET .framer-1a4eq3b > :last-child, .framer-Q1xET .framer-sv31wm > :last-child, .framer-Q1xET .framer-1aqw644 > :last-child, .framer-Q1xET .framer-2ifnun > :last-child, .framer-Q1xET.framer-tvfanm > :last-child, .framer-Q1xET .framer-i2cwuw > :last-child { margin-bottom: 0px; } .framer-Q1xET .framer-1f1yzq5 > *, .framer-Q1xET .framer-2ifnun > *, .framer-Q1xET .framer-i2cwuw > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Q1xET .framer-1rkaj2o > *, .framer-Q1xET .framer-1a4eq3b > *, .framer-Q1xET .framer-1aqw644 > *, .framer-Q1xET.framer-tvfanm > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Q1xET .framer-7qgh2t > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-Q1xET .framer-7qgh2t > :first-child, .framer-Q1xET .framer-17bqwe > :first-child { margin-left: 0px; } .framer-Q1xET .framer-7qgh2t > :last-child, .framer-Q1xET .framer-17bqwe > :last-child { margin-right: 0px; } .framer-Q1xET .framer-1165ije > *, .framer-Q1xET .framer-sv31wm > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-Q1xET .framer-17bqwe > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,\"@media (min-width: 810px) and (max-width: 1199px) { .framer-Q1xET.framer-l0s4sc { width: 810px; } .framer-Q1xET .framer-1it17qf-container { height: var(--framer-aspect-ratio-supported, 381px); } .framer-Q1xET .framer-17bqwe { gap: 8px; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Q1xET .framer-17bqwe { gap: 0px; } .framer-Q1xET .framer-17bqwe > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-Q1xET .framer-17bqwe > :first-child { margin-left: 0px; } .framer-Q1xET .framer-17bqwe > :last-child { margin-right: 0px; } }}\",\"@media (max-width: 809px) { .framer-Q1xET.framer-l0s4sc { width: 390px; } .framer-Q1xET .framer-1it17qf-container { height: var(--framer-aspect-ratio-supported, 171px); } .framer-Q1xET .framer-17bqwe { gap: 8px; width: 100%; } .framer-Q1xET .framer-14biksh { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; justify-content: flex-start; } .framer-Q1xET .framer-m2pnkv-container { align-self: unset; width: 100%; } .framer-Q1xET.framer-tvfanm { left: 24px; right: 24px; transform: unset; width: unset; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Q1xET .framer-17bqwe, .framer-Q1xET .framer-14biksh { gap: 0px; } .framer-Q1xET .framer-17bqwe > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-Q1xET .framer-17bqwe > :first-child { margin-left: 0px; } .framer-Q1xET .framer-17bqwe > :last-child { margin-right: 0px; } .framer-Q1xET .framer-14biksh > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Q1xET .framer-14biksh > :first-child { margin-top: 0px; } .framer-Q1xET .framer-14biksh > :last-child { margin-bottom: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4292.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"CFSbFLyCP\":{\"layout\":[\"fixed\",\"auto\"]},\"Q8uYhW_ki\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"ppUYM3wNj\":{\"pattern\":\":ppUYM3wNj\",\"name\":\"newsletter\"}}\n * @framerResponsiveScreen\n */const FramerrXXlR3ztA=withCSS(Component,css,\"framer-Q1xET\");export default FramerrXXlR3ztA;FramerrXXlR3ztA.displayName=\"Blog\";FramerrXXlR3ztA.defaultProps={height:4292.5,width:1200};addFonts(FramerrXXlR3ztA,[{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\"}]},...ParticlesFonts,...BackFonts,...BadgeFonts,...YouTubeFonts,...VideoCardFonts,...ButtonFonts,...NewsletterFonts,...FooterFonts,...GetTemplateButtonFonts,...PlayFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...componentPresets.fonts?.[\"SqClX_ynQ\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"SqClX_ynQ\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerrXXlR3ztA\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1200\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CFSbFLyCP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Q8uYhW_ki\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerResponsiveScreen\":\"\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerScrollSections\":\"{\\\"ppUYM3wNj\\\":{\\\"pattern\\\":\\\":ppUYM3wNj\\\",\\\"name\\\":\\\"newsletter\\\"}}\",\"framerIntrinsicHeight\":\"4292.5\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["PlayOptions", "ThumbnailOptions", "ThumbnailFormat", "_isBot", "isBot", "navigator", "emptySubscribe", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "title", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "iframeIsDefaultVisible", "de", "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", "res", "format", "useWebP", "pre", "ext", "_getWebPSupported", "window", "element", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "PhosphorFonts", "getFonts", "Icon", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "p", "Variants", "motion", "x", "getProps", "height", "id", "link", "title", "width", "props", "_ref", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "dwcCbmlH0", "ekVCLgKMP", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "serializationHash", "ComponentViewportProvider", "Icon", "RichText2", "css", "FramerLD01iK6yS", "withCSS", "LD01iK6yS_default", "addPropertyControls", "ControlType", "addFonts", "PhosphorFonts", "getFontsFromSharedStyle", "fonts", "Rzjr5zmWY_exports", "__export", "__FramerMetadata__", "Rzjr5zmWY_default", "PlayFonts", "getFonts", "by24wNCSt_default", "PhosphorFonts", "Icon", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "transformTemplate1", "_", "t", "toDateString", "options", "activeLocale", "date", "fallbackLocale", "locale", "dateStyle", "timeZone", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "cursorLock", "cursorPlay", "default1", "duration", "height", "id", "image", "locked", "title", "width", "props", "_ref", "_ref1", "_ref2", "_humanReadableVariantMap_props_variant", "_ref3", "_ref4", "createLayoutDependency", "Component", "Y", "ref", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "iTWADHo7d", "xqUglY9Ez", "FlcfA6b8n", "A3j2_NnFs", "M2YC2lU0d", "vVcroSUuC", "b9rsAYzfQ", "EQ5JpLptX", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "activeLocaleCode", "useLocaleCode", "textContent", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "Image2", "ComponentViewportProvider", "RichText2", "css", "FramerRzjr5zmWY", "withCSS", "Rzjr5zmWY_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__", "PhosphorFonts", "getFonts", "Icon", "PhosphorControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "p", "Variants", "motion", "x", "humanReadableEnumMap", "getProps", "background", "height", "icon", "iconColor", "iconVisible", "id", "textColor", "title", "weightType", "width", "props", "_humanReadableEnumMap_weightType", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_ref5", "_ref6", "_ref7", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "ndRnwgfE7", "vM_dLyoOf", "k3olZMtHz", "tAvmrAfOS", "PCDwmC1gd", "AsruFoOGP", "OnJjI0g12", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "RichText2", "ComponentViewportProvider", "Icon", "css", "FramerVo_RFB5iA", "withCSS", "Vo_RFB5iA_default", "addPropertyControls", "ControlType", "PhosphorControls", "addFonts", "PhosphorFonts", "getFontsFromSharedStyle", "fonts", "props", "fonts", "fontStore", "fonts", "css", "className", "ParticlesFonts", "getFonts", "ParticleWrapper", "BackFonts", "LD01iK6yS_default", "BadgeFonts", "Vo_RFB5iA_default", "YouTubeFonts", "Youtube", "VideoCardFonts", "Rzjr5zmWY_default", "VideoCardWithVariantWithMappedReactPropsb4rstc", "withMappedReactProps", "withVariant", "Rzjr5zmWY_exports", "ButtonFonts", "iM3vHV3bS_default", "NewsletterFonts", "n67m2Xmei_default", "FooterFonts", "vfGWeq_Dz_default", "GetTemplateButtonFonts", "siPxZcsje_default", "PlayFonts", "by24wNCSt_default", "breakpoints", "serializationHash", "variantClassNames", "convertFromEnum", "value", "activeLocale", "toString", "convertFromEnum1", "toDateString", "options", "date", "display", "dateOptions", "fallbackLocale", "locale", "convertFromEnum2", "toResponsiveImage", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "getContainer", "Overlay", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "cursor", "by24wNCSt_default", "cursor1", "Component", "Y", "ref", "setLocale", "useLocaleInfo", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "OqEqbB44z_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "eK7pw2kSs", "pxGDUFg82", "uy9pdr_hF", "v1Y5eHFOT", "v78oG3Vbv", "vj5ske06K", "bryr9wyrW", "mZnAWOsWyggyCONaS0", "BuB4roo0UggyCONaS0", "uy9pdr_hFggyCONaS0", "v78oG3VbvggyCONaS0", "vj5ske06KggyCONaS0", "idggyCONaS0", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "t0KbldIPS3bnx0g", "overlay", "loadMore", "args", "o4ybBFUHc1wnntms", "scopingClassNames", "cx", "ref1", "pe", "router", "useRouter", "activeLocaleCode", "useLocaleCode", "textContent", "textContent1", "elementId", "useRouteElementId", "ref2", "defaultLayoutId", "ae", "useCustomCursors", "componentViewport", "useComponentViewport", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "ParticleWrapper", "ResolveLinks", "resolvedLinks", "PropertyOverrides2", "LD01iK6yS_default", "Vo_RFB5iA_default", "enumToDisplayNameFunctions", "RichText2", "x", "Youtube", "ComponentPresetsProvider", "ChildrenCanSuspend", "collection", "paginationInfo", "l", "index", "PathVariablesContext", "resolvedLinks1", "VideoCardWithVariantWithMappedReactPropsb4rstc", "resolvedLinks2", "iM3vHV3bS_default", "n67m2Xmei_default", "AnimatePresence", "Ga", "vfGWeq_Dz_default", "siPxZcsje_default", "css", "FramerrXXlR3ztA", "withCSS", "rXXlR3ztA_default", "addFonts", "ParticlesFonts", "BackFonts", "BadgeFonts", "YouTubeFonts", "VideoCardFonts", "ButtonFonts", "NewsletterFonts", "FooterFonts", "GetTemplateButtonFonts", "PlayFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "__FramerMetadata__"]
}
