{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/8aCGinfRQO68tQ3QF42d/YouTube.js", "ssg:https://framerusercontent.com/modules/zIUDjkd3kUN30iEfRIoy/rWZR5v0jqNBsnxzodTn6/NSiIibgYS.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));/**\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);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://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(!showVideo){// if a browser does not support `loading=lazy`, make sure the video doesn't start playing in the background\nsearchParams.set(\"autoplay\",\"0\");}else if(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\");}const iframeProps={title:title||\"Youtube Video\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",src:embedURL.href,frameBorder:\"0\",onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp};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(${getThumbnailURL(videoId,thumbnail)}) no-repeat`:undefined}}),!onCanvas?/*#__PURE__*/_jsx(\"iframe\",{loading:!showVideo?\"lazy\":undefined,style:!showVideo?{...videoStyle,display:\"none\"}:videoStyle,...iframeProps}):null,showVideo?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://www.youtube.com/shorts/zwMEhBq4kYM\nif(pathSegments[0]===\"shorts\"){const videoId=pathSegments[1];const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}}// 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){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst pre=\"https://i.ytimg.com/vi_webp/\";const ext=\"webp\";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}`;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/_jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/_jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/_jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/_jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/_jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"315\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"560\",\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "// Generated by Framer (ee31e22)\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,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLoadMorePaginatedQuery,useLocaleCode,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withFX,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Material}from\"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/8aCGinfRQO68tQ3QF42d/YouTube.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import{Icon as Iconoir}from\"https://framerusercontent.com/modules/zL9598C4KbEbqUGvSR14/rI8sPHpnG9XGcCPc0vU4/Iconoir.js\";import Footer from\"#framer/local/canvasComponent/ESu3oqGXa/ESu3oqGXa.js\";import NavigationSimpleTopbarCenter from\"#framer/local/canvasComponent/nq3l9HDWx/nq3l9HDWx.js\";import Button from\"#framer/local/canvasComponent/OeyO6VcAn/OeyO6VcAn.js\";import TranscrobationForBlog from\"#framer/local/canvasComponent/WyzII1e9o/WyzII1e9o.js\";import Blog,{enumToDisplayNameFunctions}from\"#framer/local/collection/ZP3gELwK7/ZP3gELwK7.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle5 from\"#framer/local/css/A1EkkUTpB/A1EkkUTpB.js\";import*as sharedStyle19 from\"#framer/local/css/aah3zoFgP/aah3zoFgP.js\";import*as sharedStyle14 from\"#framer/local/css/ALeoHd2zM/ALeoHd2zM.js\";import*as sharedStyle15 from\"#framer/local/css/CVkyezkMY/CVkyezkMY.js\";import*as sharedStyle18 from\"#framer/local/css/Dg1Fd74x5/Dg1Fd74x5.js\";import*as sharedStyle11 from\"#framer/local/css/djDPEUwhH/djDPEUwhH.js\";import*as sharedStyle17 from\"#framer/local/css/elYhxc7iz/elYhxc7iz.js\";import*as sharedStyle6 from\"#framer/local/css/fkOREF64J/fkOREF64J.js\";import*as sharedStyle3 from\"#framer/local/css/gnqFGDrUR/gnqFGDrUR.js\";import*as sharedStyle1 from\"#framer/local/css/hHsIfsCYN/hHsIfsCYN.js\";import*as sharedStyle9 from\"#framer/local/css/iGUC3fDlu/iGUC3fDlu.js\";import*as sharedStyle16 from\"#framer/local/css/izTQHed73/izTQHed73.js\";import*as sharedStyle23 from\"#framer/local/css/JftXXIuwg/JftXXIuwg.js\";import*as sharedStyle21 from\"#framer/local/css/jrv5bwnyy/jrv5bwnyy.js\";import*as sharedStyle from\"#framer/local/css/kEeWTFB5n/kEeWTFB5n.js\";import*as sharedStyle7 from\"#framer/local/css/N4cH5VlsQ/N4cH5VlsQ.js\";import*as sharedStyle13 from\"#framer/local/css/N74N_0q9y/N74N_0q9y.js\";import*as sharedStyle4 from\"#framer/local/css/rnAUtUryy/rnAUtUryy.js\";import*as sharedStyle10 from\"#framer/local/css/sQzEzqoas/sQzEzqoas.js\";import*as sharedStyle12 from\"#framer/local/css/uy4SSJa58/uy4SSJa58.js\";import*as sharedStyle2 from\"#framer/local/css/V5nk717xE/V5nk717xE.js\";import*as sharedStyle22 from\"#framer/local/css/vL3U1iX3x/vL3U1iX3x.js\";import*as sharedStyle20 from\"#framer/local/css/vqCJJjluc/vqCJJjluc.js\";import*as sharedStyle8 from\"#framer/local/css/vX1jRraFC/vX1jRraFC.js\";import metadataProvider from\"#framer/local/webPageMetadata/NSiIibgYS/NSiIibgYS.js\";const NavigationSimpleTopbarCenterFonts=getFonts(NavigationSimpleTopbarCenter);const PhosphorFonts=getFonts(Phosphor);const MaterialFonts=getFonts(Material);const YouTubeFonts=getFonts(YouTube);const IconoirFonts=getFonts(Iconoir);const TranscrobationForBlogFonts=getFonts(TranscrobationForBlog);const RichTextWithFX=withFX(RichText);const MotionDivWithFX=withFX(motion.div);const ButtonFonts=getFonts(Button);const FooterFonts=getFonts(Footer);const NavigationSimpleTopbarCenterWithVariantAppearEffect=withVariantAppearEffect(NavigationSimpleTopbarCenter);const breakpoints={Dra7Wnk7P:\"(min-width: 1440px)\",j3d5ov1DV:\"(max-width: 630px)\",QO3D1f5Cg:\"(min-width: 810px) and (max-width: 1199px)\",teI_pEnfs:\"(min-width: 1200px) and (max-width: 1439px)\",tUZ0P9pDA:\"(min-width: 631px) and (max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-HRduY\";const variantClassNames={Dra7Wnk7P:\"framer-v-1m6vnqu\",j3d5ov1DV:\"framer-v-1no7j9f\",QO3D1f5Cg:\"framer-v-1lng51k\",teI_pEnfs:\"framer-v-1ps6p5r\",tUZ0P9pDA:\"framer-v-17gb8el\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};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 negate=value=>{return!value;};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:24};const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:24};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:20};const transition2={damping:40,delay:.1,mass:1,stiffness:160,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition1};const QueryData=({query,pageSize,children})=>{const{paginatedQuery,paginationInfo,loadMore}=useLoadMorePaginatedQuery(query,pageSize,\"mTrK0crfJ\");const data=useQueryData(paginatedQuery);return children(data,paginationInfo,loadMore);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Big Phone or small Tablet\":\"tUZ0P9pDA\",\"Desktop 2\":\"teI_pEnfs\",Desktop:\"Dra7Wnk7P\",Phone:\"j3d5ov1DV\",Tablet:\"QO3D1f5Cg\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"Dra7Wnk7P\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"NSiIibgYS\",data:Blog,type:\"Collection\"},select:[{collection:\"NSiIibgYS\",name:\"sFxHfKTDK\",type:\"Identifier\"},{collection:\"NSiIibgYS\",name:\"oYneZrY8k\",type:\"Identifier\"},{collection:\"NSiIibgYS\",name:\"tvuw9aEz1\",type:\"Identifier\"},{collection:\"NSiIibgYS\",name:\"OGfqWuHMh\",type:\"Identifier\"},{collection:\"NSiIibgYS\",name:\"Sj7fl86Zw\",type:\"Identifier\"},{collection:\"NSiIibgYS\",name:\"GpuoaKAX2\",type:\"Identifier\"},{collection:\"NSiIibgYS\",name:\"jhk8FiyWh\",type:\"Identifier\"},{collection:\"NSiIibgYS\",name:\"L3AIKtaMx\",type:\"Identifier\"},{collection:\"NSiIibgYS\",name:\"VUMCFRbL0\",type:\"Identifier\"},{collection:\"NSiIibgYS\",name:\"hZm4mNzgI\",type:\"Identifier\"},{collection:\"NSiIibgYS\",name:\"F2i1LnUTa\",type:\"Identifier\"},{collection:\"NSiIibgYS\",name:\"uhGjpqvWe\",type:\"Identifier\"},{collection:\"NSiIibgYS\",name:\"DwBobqdFr\",type:\"Identifier\"},{collection:\"NSiIibgYS\",name:\"Yc1iGligW\",type:\"Identifier\"},{collection:\"NSiIibgYS\",name:\"cg1ZPluxf\",type:\"Identifier\"},{collection:\"NSiIibgYS\",name:\"AM7Gu3i1W\",type:\"Identifier\"},{collection:\"NSiIibgYS\",name:\"TM5G3DgRB\",type:\"Identifier\"},{collection:\"NSiIibgYS\",name:\"pekyPeqQM\",type:\"Identifier\"},{collection:\"NSiIibgYS\",name:\"gVu633Jl6\",type:\"Identifier\"},{collection:\"NSiIibgYS\",name:\"S2q9WcIlK\",type:\"Identifier\"},{collection:\"NSiIibgYS\",name:\"UwsOpwT5m\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"NSiIibgYS\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,Zqu_0nXnyaxiVGsARC,sFxHfKTDK=getFromCurrentRouteData(\"sFxHfKTDK\")??\"\",F2i1LnUTa=getFromCurrentRouteData(\"F2i1LnUTa\"),uhGjpqvWe=getFromCurrentRouteData(\"uhGjpqvWe\")??\"\",VUMCFRbL0=getFromCurrentRouteData(\"VUMCFRbL0\"),hZm4mNzgI=getFromCurrentRouteData(\"hZm4mNzgI\"),jhk8FiyWh=getFromCurrentRouteData(\"jhk8FiyWh\"),tvuw9aEz1=getFromCurrentRouteData(\"tvuw9aEz1\"),AM7Gu3i1W=getFromCurrentRouteData(\"AM7Gu3i1W\")??true,OGfqWuHMh=getFromCurrentRouteData(\"OGfqWuHMh\")??true,Sj7fl86Zw=getFromCurrentRouteData(\"Sj7fl86Zw\"),TM5G3DgRB=getFromCurrentRouteData(\"TM5G3DgRB\")??true,pekyPeqQM=getFromCurrentRouteData(\"pekyPeqQM\"),gVu633Jl6=getFromCurrentRouteData(\"gVu633Jl6\")??\"\",UwsOpwT5m=getFromCurrentRouteData(\"UwsOpwT5m\")??\"\",S2q9WcIlK=getFromCurrentRouteData(\"S2q9WcIlK\")??\"\",DwBobqdFr=getFromCurrentRouteData(\"DwBobqdFr\")??\"\",Yc1iGligW=getFromCurrentRouteData(\"Yc1iGligW\")??true,cg1ZPluxf=getFromCurrentRouteData(\"cg1ZPluxf\")??\"\",oYneZrY8kmTrK0crfJ,Sj7fl86ZwmTrK0crfJ,oYneZrY8k=getFromCurrentRouteData(\"oYneZrY8k\")??\"\",sFxHfKTDKmTrK0crfJ,GpuoaKAX2mTrK0crfJ,L3AIKtaMx=getFromCurrentRouteData(\"L3AIKtaMx\")??\"\",jhk8FiyWhmTrK0crfJ,tvuw9aEz1mTrK0crfJ,pJiiPe2VqmTrK0crfJ,idmTrK0crfJ,...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 sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className,sharedStyle11.className,sharedStyle12.className,sharedStyle13.className,sharedStyle14.className,sharedStyle15.className,sharedStyle16.className,sharedStyle17.className,sharedStyle18.className,sharedStyle19.className,sharedStyle20.className,sharedStyle21.className,sharedStyle22.className,sharedStyle23.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if([\"teI_pEnfs\",\"QO3D1f5Cg\",\"tUZ0P9pDA\",\"j3d5ov1DV\"].includes(baseVariant))return false;return true;};const elementId=useRouteElementId(\"JTiWrRKpA\");const ref1=React.useRef(null);const textContent=enumToDisplayNameFunctions[\"VUMCFRbL0\"]?.(VUMCFRbL0,activeLocale);const textContent1=enumToDisplayNameFunctions[\"hZm4mNzgI\"]?.(hZm4mNzgI,activeLocale);const textContent2=enumToDisplayNameFunctions[\"jhk8FiyWh\"]?.(jhk8FiyWh,activeLocale);const activeLocaleCode=useLocaleCode();const textContent3=toDateString(tvuw9aEz1,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);const visible=negate(OGfqWuHMh);const visible1=negate(Yc1iGligW);const router=useRouter();const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"QO3D1f5Cg\")return true;return false;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"tUZ0P9pDA\")return true;return false;};const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"j3d5ov1DV\")return true;return false;};const isDisplayed4=()=>{if(!isBrowser())return true;if(baseVariant===\"teI_pEnfs\")return true;return false;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"Dra7Wnk7P\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1m6vnqu\",className),ref:refBinding,style:{...style},children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-h0xjdu hidden-1ps6p5r hidden-1lng51k hidden-17gb8el hidden-1no7j9f\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`min(max(${componentViewport?.width||\"100vw\"} - 200px, 1px), 1440px)`,y:(componentViewport?.y||0)+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-xp60tn-container\",\"data-framer-name\":\"Navbar\",name:\"Navbar\",nodeId:\"v7sSEgZge\",scopeId:\"NSiIibgYS\",children:/*#__PURE__*/_jsx(NavigationSimpleTopbarCenter,{aVyUYHRTs:\"13px 0px 12px 0px\",dVj8wfFOV:true,GEmzVjbqW:\"12px 0px 12px 0px\",gsLRbchcj:true,height:\"100%\",id:\"v7sSEgZge\",k5M83VhtZ:\"0px 100px 0px 100px\",layoutId:\"v7sSEgZge\",lLoNAdAzP:\"12px 100px 12px 100px\",mLeBiUEvu:true,name:\"Navbar\",pUHpanJPw:\"0px 0px 0px 0px\",QZaoCky_z:\"0px 100px 0px 100px\",rbKE1pMvc:\"var(--token-2546f2ec-502d-4b32-8634-ef8a4d8c3ed0, rgb(255, 255, 255))\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"pWX8X6N6R\",wGfEzrnmx:\"12px 0px 12px 0px\",width:\"100%\",yROfF1g1a:\"0px 100px 0px 100px\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1av14yn\",\"data-framer-name\":\"Post\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yqx57i\",children:[/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\":componentPresets.props[\"CpZHK_K6Q\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"VeQAMWgHH\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:Zqu_0nXnyaxiVGsARC,className:\"framer-1erj8n0\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1sbcrqm\",blockquote:\"framer-styles-preset-b88hcb\",code:\"framer-styles-preset-mye2vt\",h1:\"framer-styles-preset-hr5s57\",h2:\"framer-styles-preset-1cimk5v\",h3:\"framer-styles-preset-1pz4uok\",h4:\"framer-styles-preset-15warmh\",h5:\"framer-styles-preset-1ms9q2m\",h6:\"framer-styles-preset-1n8dbyj\",img:\"framer-styles-preset-1moql72\",p:\"framer-styles-preset-1s3cw6b\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ppooqm\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"DPpVZowBE\"},motionChild:true,nodeId:\"SSBdDPl8I\",openInNewTab:false,scopeId:\"NSiIibgYS\",smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1gf1whq framer-12mlwt3\",\"data-framer-name\":\"Dark CTA Copy\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wvdagr-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"XwT7MZ1n9\",scopeId:\"NSiIibgYS\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-61e5ee56-3594-4358-94d0-c3752e3672e3, rgb(15, 15, 16))\",height:\"100%\",iconSearch:\"arrow-left\",iconSelection:\"House\",id:\"XwT7MZ1n9\",layoutId:\"XwT7MZ1n9\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z8z57u\",\"data-styles-preset\":\"djDPEUwhH\",style:{\"--framer-text-color\":\"var(--token-61e5ee56-3594-4358-94d0-c3752e3672e3, rgb(15, 15, 16))\"},children:\"All Articles\"})}),className:\"framer-1r8lw49\",\"data-framer-name\":\"EMAIL ME\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-grhprv\",\"data-styles-preset\":\"uy4SSJa58\",children:\"How to use Clay for Customer Support\"})}),className:\"framer-m9ab6m\",\"data-framer-name\":\"Category\",fonts:[\"Inter\"],text:sFxHfKTDK,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xke8i6\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2levg9\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{j3d5ov1DV:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+100+0+0+0+96+0+971.4+0+0+.2),sizes:\"45px\",...toResponsiveImage(F2i1LnUTa)}},QO3D1f5Cg:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+100+0+0+0+96+0+53.4+0+0+4.7),sizes:\"36px\",...toResponsiveImage(F2i1LnUTa)}},teI_pEnfs:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+100+40+0+0+96+0+53.4+0+0+4.2),sizes:\"37px\",...toResponsiveImage(F2i1LnUTa)}},tUZ0P9pDA:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+100+0+0+0+96+0+971.4+0+0+1.2),sizes:\"43px\",...toResponsiveImage(F2i1LnUTa)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+100+40+0+0+96+0+53.4+0+0+1.2),sizes:\"43px\",...toResponsiveImage(F2i1LnUTa)},className:\"framer-vyxwg7\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u94qyx\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-po9ocu\",\"data-styles-preset\":\"N74N_0q9y\",children:/*#__PURE__*/_jsx(Link,{href:uhGjpqvWe,motionChild:true,nodeId:\"LHhyP0x5p\",openInNewTab:true,scopeId:\"NSiIibgYS\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sbcrqm\",\"data-styles-preset\":\"N4cH5VlsQ\",children:\"Content\"})})})}),className:\"framer-1wdvkij\",\"data-framer-name\":\"Category\",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-1rbq60l\",\"data-styles-preset\":\"ALeoHd2zM\",children:\"Content\"})}),className:\"framer-15bqnod\",\"data-framer-name\":\"Category\",fonts:[\"Inter\"],text:textContent1,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dx3joy\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f5lasi\",\"data-framer-name\":\"Date\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-134r28x-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"LiFdEZvTA\",scopeId:\"NSiIibgYS\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-61e5ee56-3594-4358-94d0-c3752e3672e3, rgb(15, 15, 16))\",height:\"100%\",iconSearch:\"category\",iconSelection:\"Home\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"LiFdEZvTA\",layoutId:\"LiFdEZvTA\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1rbq60l\",\"data-styles-preset\":\"ALeoHd2zM\",style:{\"--framer-text-color\":\"var(--token-4ed96c69-b73a-4721-be25-59addcb9c5d7, rgb(90, 97, 110))\"},children:\"Content\"})}),className:\"framer-1xrm7y2\",\"data-framer-name\":\"Category\",fonts:[\"Inter\"],text:textContent2,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u65e56\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1m8icyg-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"BXZKMlK7x\",scopeId:\"NSiIibgYS\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-61e5ee56-3594-4358-94d0-c3752e3672e3, rgb(15, 15, 16))\",height:\"100%\",iconSearch:\"date\",iconSelection:\"Home\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"BXZKMlK7x\",layoutId:\"BXZKMlK7x\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1rbq60l\",\"data-styles-preset\":\"ALeoHd2zM\",style:{\"--framer-text-color\":\"var(--token-4ed96c69-b73a-4721-be25-59addcb9c5d7, rgb(90, 97, 110))\"},children:\"Content\"})}),className:\"framer-1opbt6h\",\"data-framer-name\":\"Category\",fonts:[\"Inter\"],text:textContent3,verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),AM7Gu3i1W&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-gvn29a-container\",isModuleExternal:true,nodeId:\"YqLcizsJU\",scopeId:\"NSiIibgYS\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"YqLcizsJU\",isMixedBorderRadius:false,isRed:true,layoutId:\"YqLcizsJU\",play:\"On\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://www.youtube.com/watch?v=-ZaDHA4uxUM\",width:\"100%\"})})}),visible&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{j3d5ov1DV:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+100+0+0+0+96+0+53.4),sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1240px)`,...toResponsiveImage(Sj7fl86Zw)}},QO3D1f5Cg:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+100+0+0+0+96+0+448.8),sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1240px) - 80px)`,...toResponsiveImage(Sj7fl86Zw)}},teI_pEnfs:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+100+40+0+0+96+0+448.8),sizes:`min(${componentViewport?.width||\"100vw\"} * 0.7, 1240px)`,...toResponsiveImage(Sj7fl86Zw)}},tUZ0P9pDA:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+100+0+0+0+96+0+53.4),sizes:`min(${componentViewport?.width||\"100vw\"} - 120px, 1240px)`,...toResponsiveImage(Sj7fl86Zw)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+100+40+0+0+96+0+448.8),sizes:`min(${componentViewport?.width||\"100vw\"} * 0.6, 1240px)`,...toResponsiveImage(Sj7fl86Zw)},className:\"framer-11z9w04\",\"data-border\":true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sw62k\",children:[TM5G3DgRB&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1he9fzy\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-rr2b19\",\"data-styles-preset\":\"CVkyezkMY\",style:{\"--framer-text-color\":\"var(--token-14022b6a-3d36-4010-855b-7a06980af434, rgb(19, 19, 22))\"},children:\"Speakers\"})}),className:\"framer-1r9dpef\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pqumv8\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c7s0eo\",\"data-border\":true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{j3d5ov1DV:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+100+0+0+0+1002.8+60+-528.2+0+55.2+0+0+0+0),sizes:`max((min(${componentViewport?.width||\"100vw\"} - 40px, 1240px) - 20px) / 2, 50px)`,...toResponsiveImage(pekyPeqQM)}},QO3D1f5Cg:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+100+0+0+0+957.8+60+-524.2+0+55.2+0+0+0+0),sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1240px) - 110px) / 4, 50px)`,...toResponsiveImage(pekyPeqQM)}},teI_pEnfs:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+100+40+0+0+957.8+60+-538.7+0+55.2+0+0+0+0),sizes:`max((min(${componentViewport?.width||\"100vw\"} * 0.7, 1240px) - 30px) / 4, 50px)`,...toResponsiveImage(pekyPeqQM)}},tUZ0P9pDA:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+100+0+0+0+957.8+60+-538.7+0+55.2+0+0+0+0),sizes:`max((min(${componentViewport?.width||\"100vw\"} - 120px, 1240px) - 24px) / 2, 50px)`,...toResponsiveImage(pekyPeqQM)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+100+40+0+0+957.8+60+-532.7+0+55.2+0+0+0+0),sizes:`max((min(${componentViewport?.width||\"100vw\"} * 0.6, 1240px) - 30px) / 4, 50px)`,...toResponsiveImage(pekyPeqQM)},className:\"framer-x76w1q\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ccgd5q\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ttennt\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-zbxqo5\",\"data-styles-preset\":\"izTQHed73\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-14022b6a-3d36-4010-855b-7a06980af434, rgb(19, 19, 22))\"},children:\"Jessica Herbert\"})}),className:\"framer-szdai3\",fonts:[\"Inter\"],text:gVu633Jl6,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3bmuye\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1rbq60l\",\"data-styles-preset\":\"ALeoHd2zM\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-61e5ee56-3594-4358-94d0-c3752e3672e3, rgb(15, 15, 16))\"},children:\"Canvas Medical\"})}),className:\"framer-17zwjxz\",fonts:[\"Inter\"],text:UwsOpwT5m,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1rbq60l\",\"data-styles-preset\":\"ALeoHd2zM\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4ed96c69-b73a-4721-be25-59addcb9c5d7, rgb(90, 97, 110))\"},children:\"Sr. Manager of Customer Experience\"})}),className:\"framer-w904st\",fonts:[\"Inter\"],text:S2q9WcIlK,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1i7n9ah\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-15knphj-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ZfmRuSvIW\",scopeId:\"NSiIibgYS\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"rgb(0, 0, 0)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"LinkedIn\",id:\"ZfmRuSvIW\",layoutId:\"ZfmRuSvIW\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})]})})]}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\":componentPresets.props[\"CpZHK_K6Q\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"VeQAMWgHH\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:DwBobqdFr,className:\"framer-1u3ju0l\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-pck3oo\",blockquote:\"framer-styles-preset-b88hcb\",code:\"framer-styles-preset-mye2vt\",h2:\"framer-styles-preset-kplu\",h3:\"framer-styles-preset-1pz4uok\",h4:\"framer-styles-preset-15warmh\",h5:\"framer-styles-preset-1ms9q2m\",h6:\"framer-styles-preset-1n8dbyj\",img:\"framer-styles-preset-1moql72\",p:\"framer-styles-preset-1s3cw6b\"},verticalAlignment:\"top\",withExternalLayout:true})}),visible1&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-94ikxl\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-rr2b19\",\"data-styles-preset\":\"CVkyezkMY\",style:{\"--framer-text-color\":\"var(--token-14022b6a-3d36-4010-855b-7a06980af434, rgb(19, 19, 22))\"},children:\"Transcription\"})}),className:\"framer-18xxxdj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{j3d5ov1DV:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1240px)`,y:(componentViewport?.y||0)+0+100+0+0+0+1002.8+60+46+0+55.2},QO3D1f5Cg:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1240px) - 80px)`,y:(componentViewport?.y||0)+0+100+0+0+0+957.8+60+42+0+55.2},teI_pEnfs:{width:`min(${componentViewport?.width||\"100vw\"} * 0.7, 1240px)`,y:(componentViewport?.y||0)+0+100+40+0+0+957.8+60+56.5+0+55.2},tUZ0P9pDA:{width:`min(${componentViewport?.width||\"100vw\"} - 120px, 1240px)`,y:(componentViewport?.y||0)+0+100+0+0+0+957.8+60+56.5+0+55.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:443,width:`min(${componentViewport?.width||\"100vw\"} * 0.6, 1240px)`,y:(componentViewport?.y||0)+0+100+40+0+0+957.8+60+50.5+0+55.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-15flks-container\",nodeId:\"M1RIWwnsK\",scopeId:\"NSiIibgYS\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{j3d5ov1DV:{xrqqwbKCM:\"20px\"}},children:/*#__PURE__*/_jsx(TranscrobationForBlog,{height:\"100%\",id:\"M1RIWwnsK\",layoutId:\"M1RIWwnsK\",style:{width:\"100%\"},variant:\"kxSdBJxpZ\",width:\"100%\",xrqqwbKCM:\"40px\",zqbzgjuUF:cg1ZPluxf})})})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dxqonk\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-kplu\",\"data-styles-preset\":\"elYhxc7iz\",children:\"Explore more\"})}),className:\"framer-g4lbbn\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-v0hl2r\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1xbjcxg\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QO3D1f5Cg:{pageSize:2,query:{from:{alias:\"mTrK0crfJ\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:5},orderBy:[{collection:\"mTrK0crfJ\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{collection:\"mTrK0crfJ\",name:\"oYneZrY8k\",type:\"Identifier\"},{collection:\"mTrK0crfJ\",name:\"Sj7fl86Zw\",type:\"Identifier\"},{collection:\"mTrK0crfJ\",name:\"sFxHfKTDK\",type:\"Identifier\"},{collection:\"mTrK0crfJ\",name:\"GpuoaKAX2\",type:\"Identifier\"},{collection:\"mTrK0crfJ\",name:\"jhk8FiyWh\",type:\"Identifier\"},{collection:\"mTrK0crfJ\",name:\"tvuw9aEz1\",type:\"Identifier\"},{collection:\"mTrK0crfJ\",name:\"pJiiPe2Vq\",type:\"Identifier\"},{collection:\"mTrK0crfJ\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"mTrK0crfJ\",name:\"jhk8FiyWh\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:jhk8FiyWh},type:\"BinaryOperation\"}}},tUZ0P9pDA:{pageSize:2,query:{from:{alias:\"mTrK0crfJ\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:5},orderBy:[{collection:\"mTrK0crfJ\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{collection:\"mTrK0crfJ\",name:\"oYneZrY8k\",type:\"Identifier\"},{collection:\"mTrK0crfJ\",name:\"Sj7fl86Zw\",type:\"Identifier\"},{collection:\"mTrK0crfJ\",name:\"sFxHfKTDK\",type:\"Identifier\"},{collection:\"mTrK0crfJ\",name:\"GpuoaKAX2\",type:\"Identifier\"},{collection:\"mTrK0crfJ\",name:\"jhk8FiyWh\",type:\"Identifier\"},{collection:\"mTrK0crfJ\",name:\"tvuw9aEz1\",type:\"Identifier\"},{collection:\"mTrK0crfJ\",name:\"pJiiPe2Vq\",type:\"Identifier\"},{collection:\"mTrK0crfJ\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"mTrK0crfJ\",name:\"jhk8FiyWh\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:jhk8FiyWh},type:\"BinaryOperation\"}}}},children:/*#__PURE__*/_jsx(QueryData,{pageSize:3,query:{from:{alias:\"mTrK0crfJ\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:5},orderBy:[{collection:\"mTrK0crfJ\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{collection:\"mTrK0crfJ\",name:\"oYneZrY8k\",type:\"Identifier\"},{collection:\"mTrK0crfJ\",name:\"Sj7fl86Zw\",type:\"Identifier\"},{collection:\"mTrK0crfJ\",name:\"sFxHfKTDK\",type:\"Identifier\"},{collection:\"mTrK0crfJ\",name:\"GpuoaKAX2\",type:\"Identifier\"},{collection:\"mTrK0crfJ\",name:\"jhk8FiyWh\",type:\"Identifier\"},{collection:\"mTrK0crfJ\",name:\"tvuw9aEz1\",type:\"Identifier\"},{collection:\"mTrK0crfJ\",name:\"pJiiPe2Vq\",type:\"Identifier\"},{collection:\"mTrK0crfJ\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"mTrK0crfJ\",name:\"jhk8FiyWh\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:jhk8FiyWh},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({GpuoaKAX2:GpuoaKAX2mTrK0crfJ,id:idmTrK0crfJ,jhk8FiyWh:jhk8FiyWhmTrK0crfJ,oYneZrY8k:oYneZrY8kmTrK0crfJ,pJiiPe2Vq:pJiiPe2VqmTrK0crfJ,sFxHfKTDK:sFxHfKTDKmTrK0crfJ,Sj7fl86Zw:Sj7fl86ZwmTrK0crfJ,tvuw9aEz1:tvuw9aEz1mTrK0crfJ},index)=>{oYneZrY8kmTrK0crfJ??=\"\";sFxHfKTDKmTrK0crfJ??=\"\";GpuoaKAX2mTrK0crfJ??=\"\";pJiiPe2VqmTrK0crfJ??=\"\";const textContent4=enumToDisplayNameFunctions[\"jhk8FiyWh\"]?.(jhk8FiyWhmTrK0crfJ,activeLocale);const textContent5=toDateString(tvuw9aEz1mTrK0crfJ,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);return /*#__PURE__*/_jsx(LayoutGroup,{id:`mTrK0crfJ-${idmTrK0crfJ}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{pJiiPe2Vq:pJiiPe2VqmTrK0crfJ},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jpldpv\",children:[/*#__PURE__*/_jsx(Link,{href:oYneZrY8kmTrK0crfJ,motionChild:true,nodeId:\"m0bwCMTUV\",scopeId:\"NSiIibgYS\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1fbnpih framer-12mlwt3\",\"data-framer-name\":\"banner\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{j3d5ov1DV:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+100+0+1318.8+32+74.4+0+0+0+0+0+0),sizes:`max(min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1240px), 1px)`,...toResponsiveImage(Sj7fl86ZwmTrK0crfJ)}},QO3D1f5Cg:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+100+0+1233.8+32+74.4+0+0+0+0+0),sizes:`max(min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1240px), 1px)`,...toResponsiveImage(Sj7fl86ZwmTrK0crfJ)}},teI_pEnfs:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+100+40+1253.8+32+74.4+0+0+0+0+0),sizes:`max(min(max(${componentViewport?.width||\"100vw\"} - 180px, 1px), 1240px), 1px)`,...toResponsiveImage(Sj7fl86ZwmTrK0crfJ)}},tUZ0P9pDA:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+100+0+1233.8+32+74.4+0+0+0+0+0),sizes:`max(min(max(${componentViewport?.width||\"100vw\"} - 120px, 1px), 1240px), 1px)`,...toResponsiveImage(Sj7fl86ZwmTrK0crfJ)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+100+40+1233.8+32+74.4+0+0+0+0+0),sizes:`max(min(max(${componentViewport?.width||\"100vw\"} - 200px, 1px), 1240px), 1px)`,...toResponsiveImage(Sj7fl86ZwmTrK0crfJ)},className:\"framer-1q3s0c3\",\"data-border\":true,whileHover:animation3})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k3urra\",\"data-framer-name\":\"Post\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fy6t1w\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-lc0y5a\",\"data-styles-preset\":\"aah3zoFgP\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(Link,{href:oYneZrY8k,motionChild:true,nodeId:\"TaAmoOvtX\",openInNewTab:false,scopeId:\"NSiIibgYS\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sbcrqm\",\"data-styles-preset\":\"N4cH5VlsQ\",children:\"David Yang, Founding Engineer\"})})})}),className:\"framer-mi3glq\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:sFxHfKTDKmTrK0crfJ,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-l7lhsi\",\"data-styles-preset\":\"vqCJJjluc\",style:{\"--framer-text-color\":\"var(--token-61e5ee56-3594-4358-94d0-c3752e3672e3, rgb(15, 15, 16))\"},children:/*#__PURE__*/_jsx(Link,{href:oYneZrY8kmTrK0crfJ,motionChild:true,nodeId:\"RGGIB_E52\",openInNewTab:false,scopeId:\"NSiIibgYS\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sbcrqm\",\"data-styles-preset\":\"N4cH5VlsQ\",children:\"We're very excited for Alex Wu to be joining Pylon as a founding engineer after nearly 4.5 years at Samsara.\"})})})}),className:\"framer-40rlen\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],text:GpuoaKAX2mTrK0crfJ,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1um55yb\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ky26yo\",\"data-framer-name\":\"Date\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-zgaovv-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"PyEMbs35f\",scopeId:\"NSiIibgYS\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-61e5ee56-3594-4358-94d0-c3752e3672e3, rgb(15, 15, 16))\",height:\"100%\",iconSearch:\"category\",iconSelection:\"Home\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"PyEMbs35f\",layoutId:\"PyEMbs35f\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-iyz54d\",\"data-styles-preset\":\"jrv5bwnyy\",style:{\"--framer-text-color\":\"var(--token-61e5ee56-3594-4358-94d0-c3752e3672e3, rgb(15, 15, 16))\"},children:/*#__PURE__*/_jsx(Link,{href:L3AIKtaMx,motionChild:true,nodeId:\"zkf5LVdjY\",openInNewTab:false,scopeId:\"NSiIibgYS\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sbcrqm\",\"data-styles-preset\":\"N4cH5VlsQ\",children:\"Content\"})})})}),className:\"framer-11shjk8\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],text:textContent4,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-omdc25\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-16mrle9-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"NMhEub2Fk\",scopeId:\"NSiIibgYS\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-61e5ee56-3594-4358-94d0-c3752e3672e3, rgb(15, 15, 16))\",height:\"100%\",iconSearch:\"date\",iconSelection:\"Home\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"NMhEub2Fk\",layoutId:\"NMhEub2Fk\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-iyz54d\",\"data-styles-preset\":\"jrv5bwnyy\",children:\"Content\"})}),className:\"framer-vp8e02\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],text:textContent5,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})})},idmTrK0crfJ);})})})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12grlyk\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yj9rds\",\"data-framer-name\":\"Content Section\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-19rifjp\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pw3pd\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1kir7o6\",\"data-styles-preset\":\"vL3U1iX3x\",style:{\"--framer-text-alignment\":\"center\"},children:\"Get started today\"})}),className:\"framer-agleii\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-m2k7pp\",\"data-styles-preset\":\"JftXXIuwg\",style:{\"--framer-text-alignment\":\"center\"},children:\"We'll walk you through how you can get started and provide recommendations on how to scale your team and setup.\"})}),className:\"framer-4844od\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"dfTgosa3H\"},implicitPathVariables:undefined},{href:{webPageId:\"dfTgosa3H\"},implicitPathVariables:undefined},{href:{webPageId:\"dfTgosa3H\"},implicitPathVariables:undefined},{href:{webPageId:\"dfTgosa3H\"},implicitPathVariables:undefined},{href:{webPageId:\"dfTgosa3H\"},implicitPathVariables:undefined},{href:{webPageId:\"dfTgosa3H\"},implicitPathVariables:undefined},{href:{webPageId:\"dfTgosa3H\"},implicitPathVariables:undefined},{href:{webPageId:\"dfTgosa3H\"},implicitPathVariables:undefined},{href:{webPageId:\"dfTgosa3H\"},implicitPathVariables:undefined},{href:{webPageId:\"dfTgosa3H\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{j3d5ov1DV:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 40px, 1240px) - 40px)`,y:(componentViewport?.y||0)+0+2119+0+0+40+0+60+237},QO3D1f5Cg:{y:(componentViewport?.y||0)+0+2040+0+0+80+0+60+237},teI_pEnfs:{y:(componentViewport?.y||0)+0+2039+0+0+100+0+60+237},tUZ0P9pDA:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 120px, 1240px) - 120px)`,y:(componentViewport?.y||0)+0+1943+0+0+80+0+60+237}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,y:(componentViewport?.y||0)+0+2069.5+0+0+100+0+60+237,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1h0zsxh-container\",nodeId:\"fAVg7LPfS\",scopeId:\"NSiIibgYS\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{j3d5ov1DV:{FUV_q1B9O:resolvedLinks[9],kjcDQwKQq:resolvedLinks[8],style:{width:\"100%\"}},QO3D1f5Cg:{FUV_q1B9O:resolvedLinks[5],kjcDQwKQq:resolvedLinks[4]},teI_pEnfs:{FUV_q1B9O:resolvedLinks[3],kjcDQwKQq:resolvedLinks[2]},tUZ0P9pDA:{FUV_q1B9O:resolvedLinks[7],kjcDQwKQq:resolvedLinks[6],style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Button,{e1CYkKEeP:false,eVPt1wxpk:false,FUV_q1B9O:resolvedLinks[1],height:\"100%\",id:\"fAVg7LPfS\",iMWcXWUdC:\"Get Started\",kjcDQwKQq:resolvedLinks[0],layoutId:\"fAVg7LPfS\",mqhaB0S9o:\"Book a demo\",variant:\"EfFSgt2rN\",width:\"100%\"})})})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{j3d5ov1DV:{y:(componentViewport?.y||0)+0+2119+0+496},QO3D1f5Cg:{y:(componentViewport?.y||0)+0+2040+0+566},teI_pEnfs:{y:(componentViewport?.y||0)+0+2039+0+646},tUZ0P9pDA:{y:(componentViewport?.y||0)+0+1943+0+566}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:584,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+2069.5+0+626,children:/*#__PURE__*/_jsx(Container,{className:\"framer-52jtjd-container\",nodeId:\"Jd0pLa2cJ\",scopeId:\"NSiIibgYS\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{j3d5ov1DV:{variant:\"tLzMEVSLC\"},QO3D1f5Cg:{variant:\"lgFKOaZKZ\"},tUZ0P9pDA:{variant:\"lgFKOaZKZ\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"Jd0pLa2cJ\",layoutId:\"Jd0pLa2cJ\",style:{width:\"100%\"},variant:\"fsbDkEBUv\",width:\"100%\"})})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QO3D1f5Cg:{height:60,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-119pmzl-container hidden-1m6vnqu hidden-1ps6p5r hidden-17gb8el hidden-1no7j9f\",\"data-framer-name\":\"Navbar\",name:\"Navbar\",nodeId:\"b5XBerZ93\",rendersWithMotion:true,scopeId:\"NSiIibgYS\",children:/*#__PURE__*/_jsx(NavigationSimpleTopbarCenterWithVariantAppearEffect,{__framer__animateOnce:false,__framer__threshold:0,__framer__variantAppearEffectEnabled:true,aVyUYHRTs:\"13px 0px 0px 0px\",dVj8wfFOV:true,GEmzVjbqW:\"12px 0px 12px 0px\",gsLRbchcj:true,height:\"100%\",id:\"b5XBerZ93\",k5M83VhtZ:\"0px 60px 0px 60px\",layoutId:\"b5XBerZ93\",lLoNAdAzP:\"12px 60px 12px 60px\",mLeBiUEvu:true,name:\"Navbar\",pUHpanJPw:\"0px 0px 0px 0px\",QZaoCky_z:\"0px 0px 0px 0px\",rbKE1pMvc:\"var(--token-2546f2ec-502d-4b32-8634-ef8a4d8c3ed0, rgb(255, 255, 255))\",style:{width:\"100%\"},variant:\"AWLaxeuic\",wGfEzrnmx:\"12px 40px 12px 40px\",width:\"100%\",yROfF1g1a:\"0px\"})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tUZ0P9pDA:{height:60,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-7dg0pu-container hidden-1m6vnqu hidden-1ps6p5r hidden-1lng51k hidden-1no7j9f\",\"data-framer-name\":\"Navbar\",name:\"Navbar\",nodeId:\"FlAMXWviK\",rendersWithMotion:true,scopeId:\"NSiIibgYS\",children:/*#__PURE__*/_jsx(NavigationSimpleTopbarCenterWithVariantAppearEffect,{__framer__animateOnce:false,__framer__threshold:0,__framer__variantAppearEffectEnabled:true,aVyUYHRTs:\"13px 0px 0px 0px\",dVj8wfFOV:true,GEmzVjbqW:\"12px 0px 12px 0px\",gsLRbchcj:true,height:\"100%\",id:\"FlAMXWviK\",k5M83VhtZ:\"0px 60px 0px 60px\",layoutId:\"FlAMXWviK\",lLoNAdAzP:\"12px 60px 12px 60px\",mLeBiUEvu:true,name:\"Navbar\",pUHpanJPw:\"0px 0px 0px 0px\",QZaoCky_z:\"0px 0px 0px 0px\",rbKE1pMvc:\"var(--token-2546f2ec-502d-4b32-8634-ef8a4d8c3ed0, rgb(255, 255, 255))\",style:{width:\"100%\"},variant:\"AWLaxeuic\",wGfEzrnmx:\"12px 60px 12px 60px\",width:\"100%\",yROfF1g1a:\"0px\"})})})}),isDisplayed3()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{j3d5ov1DV:{height:60,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1s51cp4-container hidden-1m6vnqu hidden-1ps6p5r hidden-1lng51k hidden-17gb8el\",\"data-framer-name\":\"Navbar\",name:\"Navbar\",nodeId:\"njMnZK2bS\",rendersWithMotion:true,scopeId:\"NSiIibgYS\",children:/*#__PURE__*/_jsx(NavigationSimpleTopbarCenterWithVariantAppearEffect,{__framer__animateOnce:false,__framer__threshold:0,__framer__variantAppearEffectEnabled:true,aVyUYHRTs:\"13px 0px 0px 0px\",dVj8wfFOV:true,GEmzVjbqW:\"12px 0px 12px 0px\",gsLRbchcj:true,height:\"100%\",id:\"njMnZK2bS\",k5M83VhtZ:\"0px 60px 0px 60px\",layoutId:\"njMnZK2bS\",lLoNAdAzP:\"12px 60px 12px 60px\",mLeBiUEvu:true,name:\"Navbar\",pUHpanJPw:\"0px 0px 0px 0px\",QZaoCky_z:\"0px 0px 0px 0px\",rbKE1pMvc:\"var(--token-2546f2ec-502d-4b32-8634-ef8a4d8c3ed0, rgb(255, 255, 255))\",style:{width:\"100%\"},variant:\"AWLaxeuic\",wGfEzrnmx:\"12px 20px 12px 20px\",width:\"100%\",yROfF1g1a:\"0px\"})})})}),isDisplayed4()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-u9n51r hidden-1m6vnqu hidden-1lng51k hidden-17gb8el hidden-1no7j9f\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{teI_pEnfs:{width:`min(max(${componentViewport?.width||\"100vw\"} - 120px, 1px), 1440px)`,y:(componentViewport?.y||0)+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10mw69e-container\",\"data-framer-name\":\"Navbar\",name:\"Navbar\",nodeId:\"yAGfVBsta\",rendersWithMotion:true,scopeId:\"NSiIibgYS\",children:/*#__PURE__*/_jsx(NavigationSimpleTopbarCenterWithVariantAppearEffect,{__framer__animateOnce:false,__framer__threshold:0,__framer__variantAppearEffectEnabled:true,aVyUYHRTs:\"12px 0px 12px 0px\",dVj8wfFOV:true,GEmzVjbqW:\"12px 0px 12px 0px\",gsLRbchcj:true,height:\"100%\",id:\"yAGfVBsta\",k5M83VhtZ:\"0px 60px 0px 60px\",layoutId:\"yAGfVBsta\",lLoNAdAzP:\"12px 60px 12px 60px\",mLeBiUEvu:true,name:\"Navbar\",pUHpanJPw:\"0px 0px 0px 0px\",QZaoCky_z:\"0px 60px 0px 60px\",rbKE1pMvc:\"var(--token-2546f2ec-502d-4b32-8634-ef8a4d8c3ed0, rgb(255, 255, 255))\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"pWX8X6N6R\",wGfEzrnmx:\"12px 0px 12px 0px\",width:\"100%\",yROfF1g1a:\"0px 60px 0px 60px\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-HRduY.framer-12mlwt3, .framer-HRduY .framer-12mlwt3 { display: block; }\",\".framer-HRduY.framer-1m6vnqu { align-content: flex-start; align-items: flex-start; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-HRduY .framer-h0xjdu { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 100px 0px 100px; position: sticky; top: 0px; width: 100%; z-index: 1; }\",\".framer-HRduY .framer-xp60tn-container, .framer-HRduY .framer-10mw69e-container { flex: 1 0 0px; height: auto; max-width: 1440px; position: relative; width: 1px; z-index: 5; }\",\".framer-HRduY .framer-1av14yn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 40px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-HRduY .framer-1yqx57i { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1240px; overflow: hidden; padding: 0px; position: relative; width: 60%; }\",\".framer-HRduY .framer-1erj8n0, .framer-HRduY .framer-m9ab6m, .framer-HRduY .framer-mi3glq { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-HRduY .framer-ppooqm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HRduY .framer-1gf1whq { align-content: center; align-items: center; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: hidden; padding: 12px 20px 12px 0px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-HRduY .framer-1wvdagr-container { flex: none; height: 19px; position: relative; width: 19px; }\",\".framer-HRduY .framer-1r8lw49 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-HRduY .framer-xke8i6 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HRduY .framer-2levg9 { 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: min-content; }\",\".framer-HRduY .framer-vyxwg7 { aspect-ratio: 1 / 1; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; flex: none; height: var(--framer-aspect-ratio-supported, 43px); position: relative; width: 43px; }\",\".framer-HRduY .framer-u94qyx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-HRduY .framer-1wdvkij, .framer-HRduY .framer-15bqnod, .framer-HRduY .framer-1xrm7y2, .framer-HRduY .framer-1opbt6h { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-HRduY .framer-dx3joy, .framer-HRduY .framer-1um55yb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-HRduY .framer-1f5lasi, .framer-HRduY .framer-u65e56, .framer-HRduY .framer-ky26yo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-HRduY .framer-134r28x-container, .framer-HRduY .framer-1m8icyg-container, .framer-HRduY .framer-zgaovv-container, .framer-HRduY .framer-16mrle9-container { flex: none; height: 20px; opacity: 0.5; position: relative; width: 20px; }\",\".framer-HRduY .framer-gvn29a-container { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 486px); position: relative; width: 100%; }\",\".framer-HRduY .framer-11z9w04 { --border-bottom-width: 1px; --border-color: var(--token-3f7399b3-425b-4607-9520-05ba1c73ae14, #cfd1d5); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1.5211267605633803 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 568px); position: relative; width: 100%; }\",\".framer-HRduY .framer-sw62k { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 60px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-HRduY .framer-1he9fzy { 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; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HRduY .framer-1r9dpef, .framer-HRduY .framer-18xxxdj { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-HRduY .framer-1pqumv8 { display: grid; flex: none; gap: 10px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(4, minmax(50px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 6px 0px; position: relative; width: 100%; }\",\".framer-HRduY .framer-1c7s0eo { --border-bottom-width: 1px; --border-color: var(--token-c53d836b-5706-468a-b8e6-ae61d5338acb, #ebeced); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; align-self: start; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 346px; justify-content: center; justify-self: start; overflow: hidden; padding: 0px 0px 16px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-HRduY .framer-x76w1q { flex: none; height: 173px; position: relative; width: 100%; }\",\".framer-HRduY .framer-1ccgd5q { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 1px; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HRduY .framer-ttennt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 8px 0px 8px; position: relative; width: 100%; }\",\".framer-HRduY .framer-szdai3, .framer-HRduY .framer-17zwjxz, .framer-HRduY .framer-w904st, .framer-HRduY .framer-agleii, .framer-HRduY .framer-4844od { --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-HRduY .framer-3bmuye { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HRduY .framer-1i7n9ah, .framer-HRduY .framer-omdc25 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-HRduY .framer-15knphj-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-HRduY .framer-1u3ju0l { --framer-paragraph-spacing: 35px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-HRduY .framer-94ikxl { 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; overflow: hidden; padding: 0px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-HRduY .framer-15flks-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-HRduY .framer-1dxqonk { 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: 32px 100px 0px 100px; position: relative; width: 100%; }\",\".framer-HRduY .framer-g4lbbn { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 1240px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-HRduY .framer-v0hl2r { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HRduY .framer-1xbjcxg { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 1240px; padding: 0px; position: relative; width: 1px; }\",\".framer-HRduY .framer-1jpldpv { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: wrap; gap: 24px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-HRduY .framer-1fbnpih { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-HRduY .framer-1q3s0c3 { --border-bottom-width: 1px; --border-color: var(--token-c53d836b-5706-468a-b8e6-ae61d5338acb, #ebeced); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1.5860655737704918 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 379px); position: relative; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-HRduY .framer-1k3urra { 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: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-HRduY .framer-1fy6t1w { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HRduY .framer-40rlen { flex: none; height: auto; opacity: 0.5; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-HRduY .framer-11shjk8, .framer-HRduY .framer-vp8e02 { flex: none; height: auto; opacity: 0.5; position: relative; white-space: pre; width: auto; }\",\".framer-HRduY .framer-12grlyk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HRduY .framer-1yj9rds { align-content: center; align-items: center; background-color: #f7f7f8; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 100px 120px 100px; position: relative; width: 100%; }\",\".framer-HRduY .framer-19rifjp { align-content: center; align-items: center; background-color: var(--token-2546f2ec-502d-4b32-8634-ef8a4d8c3ed0, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1240px; overflow: hidden; padding: 60px 120px 60px 120px; position: relative; width: 100%; }\",\".framer-HRduY .framer-1pw3pd { 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; position: relative; width: 100%; }\",\".framer-HRduY .framer-1h0zsxh-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-HRduY .framer-52jtjd-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\".framer-HRduY .framer-119pmzl-container, .framer-HRduY .framer-7dg0pu-container, .framer-HRduY .framer-1s51cp4-container { flex: none; height: auto; position: sticky; top: 0px; width: 100%; z-index: 5; }\",\".framer-HRduY .framer-u9n51r { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 60px 0px 60px; position: sticky; top: 0px; width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-HRduY.framer-1m6vnqu, .framer-HRduY .framer-h0xjdu, .framer-HRduY .framer-1av14yn, .framer-HRduY .framer-1yqx57i, .framer-HRduY .framer-ppooqm, .framer-HRduY .framer-1gf1whq, .framer-HRduY .framer-2levg9, .framer-HRduY .framer-u94qyx, .framer-HRduY .framer-dx3joy, .framer-HRduY .framer-1f5lasi, .framer-HRduY .framer-u65e56, .framer-HRduY .framer-sw62k, .framer-HRduY .framer-1he9fzy, .framer-HRduY .framer-1c7s0eo, .framer-HRduY .framer-ttennt, .framer-HRduY .framer-3bmuye, .framer-HRduY .framer-1i7n9ah, .framer-HRduY .framer-94ikxl, .framer-HRduY .framer-1dxqonk, .framer-HRduY .framer-v0hl2r, .framer-HRduY .framer-1xbjcxg, .framer-HRduY .framer-1jpldpv, .framer-HRduY .framer-1fbnpih, .framer-HRduY .framer-1k3urra, .framer-HRduY .framer-1fy6t1w, .framer-HRduY .framer-1um55yb, .framer-HRduY .framer-ky26yo, .framer-HRduY .framer-omdc25, .framer-HRduY .framer-12grlyk, .framer-HRduY .framer-1yj9rds, .framer-HRduY .framer-19rifjp, .framer-HRduY .framer-1pw3pd, .framer-HRduY .framer-u9n51r { gap: 0px; } .framer-HRduY.framer-1m6vnqu > *, .framer-HRduY .framer-1av14yn > *, .framer-HRduY .framer-ppooqm > *, .framer-HRduY .framer-sw62k > *, .framer-HRduY .framer-1yj9rds > *, .framer-HRduY .framer-19rifjp > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-HRduY.framer-1m6vnqu > :first-child, .framer-HRduY .framer-1av14yn > :first-child, .framer-HRduY .framer-1yqx57i > :first-child, .framer-HRduY .framer-ppooqm > :first-child, .framer-HRduY .framer-u94qyx > :first-child, .framer-HRduY .framer-sw62k > :first-child, .framer-HRduY .framer-1he9fzy > :first-child, .framer-HRduY .framer-1c7s0eo > :first-child, .framer-HRduY .framer-ttennt > :first-child, .framer-HRduY .framer-3bmuye > :first-child, .framer-HRduY .framer-94ikxl > :first-child, .framer-HRduY .framer-1dxqonk > :first-child, .framer-HRduY .framer-1jpldpv > :first-child, .framer-HRduY .framer-1k3urra > :first-child, .framer-HRduY .framer-1fy6t1w > :first-child, .framer-HRduY .framer-12grlyk > :first-child, .framer-HRduY .framer-1yj9rds > :first-child, .framer-HRduY .framer-19rifjp > :first-child, .framer-HRduY .framer-1pw3pd > :first-child { margin-top: 0px; } .framer-HRduY.framer-1m6vnqu > :last-child, .framer-HRduY .framer-1av14yn > :last-child, .framer-HRduY .framer-1yqx57i > :last-child, .framer-HRduY .framer-ppooqm > :last-child, .framer-HRduY .framer-u94qyx > :last-child, .framer-HRduY .framer-sw62k > :last-child, .framer-HRduY .framer-1he9fzy > :last-child, .framer-HRduY .framer-1c7s0eo > :last-child, .framer-HRduY .framer-ttennt > :last-child, .framer-HRduY .framer-3bmuye > :last-child, .framer-HRduY .framer-94ikxl > :last-child, .framer-HRduY .framer-1dxqonk > :last-child, .framer-HRduY .framer-1jpldpv > :last-child, .framer-HRduY .framer-1k3urra > :last-child, .framer-HRduY .framer-1fy6t1w > :last-child, .framer-HRduY .framer-12grlyk > :last-child, .framer-HRduY .framer-1yj9rds > :last-child, .framer-HRduY .framer-19rifjp > :last-child, .framer-HRduY .framer-1pw3pd > :last-child { margin-bottom: 0px; } .framer-HRduY .framer-h0xjdu > *, .framer-HRduY .framer-1i7n9ah > *, .framer-HRduY .framer-1fbnpih > *, .framer-HRduY .framer-omdc25 > *, .framer-HRduY .framer-u9n51r > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-HRduY .framer-h0xjdu > :first-child, .framer-HRduY .framer-1gf1whq > :first-child, .framer-HRduY .framer-2levg9 > :first-child, .framer-HRduY .framer-dx3joy > :first-child, .framer-HRduY .framer-1f5lasi > :first-child, .framer-HRduY .framer-u65e56 > :first-child, .framer-HRduY .framer-1i7n9ah > :first-child, .framer-HRduY .framer-v0hl2r > :first-child, .framer-HRduY .framer-1xbjcxg > :first-child, .framer-HRduY .framer-1fbnpih > :first-child, .framer-HRduY .framer-1um55yb > :first-child, .framer-HRduY .framer-ky26yo > :first-child, .framer-HRduY .framer-omdc25 > :first-child, .framer-HRduY .framer-u9n51r > :first-child { margin-left: 0px; } .framer-HRduY .framer-h0xjdu > :last-child, .framer-HRduY .framer-1gf1whq > :last-child, .framer-HRduY .framer-2levg9 > :last-child, .framer-HRduY .framer-dx3joy > :last-child, .framer-HRduY .framer-1f5lasi > :last-child, .framer-HRduY .framer-u65e56 > :last-child, .framer-HRduY .framer-1i7n9ah > :last-child, .framer-HRduY .framer-v0hl2r > :last-child, .framer-HRduY .framer-1xbjcxg > :last-child, .framer-HRduY .framer-1fbnpih > :last-child, .framer-HRduY .framer-1um55yb > :last-child, .framer-HRduY .framer-ky26yo > :last-child, .framer-HRduY .framer-omdc25 > :last-child, .framer-HRduY .framer-u9n51r > :last-child { margin-right: 0px; } .framer-HRduY .framer-1yqx57i > *, .framer-HRduY .framer-12grlyk > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-HRduY .framer-1gf1whq > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-HRduY .framer-2levg9 > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-HRduY .framer-u94qyx > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } .framer-HRduY .framer-dx3joy > *, .framer-HRduY .framer-v0hl2r > *, .framer-HRduY .framer-1um55yb > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-HRduY .framer-1f5lasi > *, .framer-HRduY .framer-u65e56 > *, .framer-HRduY .framer-ky26yo > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-HRduY .framer-1he9fzy > *, .framer-HRduY .framer-94ikxl > *, .framer-HRduY .framer-1dxqonk > *, .framer-HRduY .framer-1jpldpv > *, .framer-HRduY .framer-1k3urra > *, .framer-HRduY .framer-1pw3pd > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-HRduY .framer-1c7s0eo > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-HRduY .framer-ttennt > *, .framer-HRduY .framer-3bmuye > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-HRduY .framer-1xbjcxg > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-HRduY .framer-1fy6t1w > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,...sharedStyle11.css,...sharedStyle12.css,...sharedStyle13.css,...sharedStyle14.css,...sharedStyle15.css,...sharedStyle16.css,...sharedStyle17.css,...sharedStyle18.css,...sharedStyle19.css,...sharedStyle20.css,...sharedStyle21.css,...sharedStyle22.css,...sharedStyle23.css,'.framer-HRduY[data-border=\"true\"]::after, .framer-HRduY [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 1200px) and (max-width: 1439px) { .framer-HRduY.framer-1m6vnqu { width: 1200px; } .framer-HRduY .framer-1av14yn { order: 1; } .framer-HRduY .framer-1yqx57i { width: 70%; } .framer-HRduY .framer-vyxwg7 { height: var(--framer-aspect-ratio-supported, 37px); width: 37px; } .framer-HRduY .framer-gvn29a-container { height: var(--framer-aspect-ratio-supported, 473px); } .framer-HRduY .framer-11z9w04 { height: var(--framer-aspect-ratio-supported, 553px); } .framer-HRduY .framer-sw62k { padding: 60px 0px 100px 0px; } .framer-HRduY .framer-1he9fzy { padding: 0px 0px 12px 0px; } .framer-HRduY .framer-1dxqonk { padding: 32px 90px 0px 90px; } .framer-HRduY .framer-1q3s0c3 { height: var(--framer-aspect-ratio-supported, 309px); } .framer-HRduY .framer-12grlyk { order: 2; } .framer-HRduY .framer-1yj9rds { padding: 100px 90px 140px 90px; } .framer-HRduY .framer-19rifjp { padding: 60px 90px 60px 90px; } .framer-HRduY .framer-u9n51r { order: 0; }}\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-HRduY.framer-1m6vnqu { width: 810px; } .framer-HRduY .framer-1av14yn { order: 1; padding: 0px 0px 80px 0px; } .framer-HRduY .framer-1yqx57i { padding: 0px 40px 0px 40px; width: 100%; } .framer-HRduY .framer-vyxwg7 { height: var(--framer-aspect-ratio-supported, 36px); width: 36px; } .framer-HRduY .framer-gvn29a-container { height: var(--framer-aspect-ratio-supported, 411px); } .framer-HRduY .framer-11z9w04 { height: var(--framer-aspect-ratio-supported, 480px); } .framer-HRduY .framer-1he9fzy { padding: 0px 0px 12px 0px; } .framer-HRduY .framer-1c7s0eo { height: 317px; } .framer-HRduY .framer-1dxqonk { padding: 32px 40px 0px 40px; } .framer-HRduY .framer-1xbjcxg { padding: 0px 0px 40px 0px; } .framer-HRduY .framer-1q3s0c3 { height: var(--framer-aspect-ratio-supported, 218px); } .framer-HRduY .framer-12grlyk { order: 2; } .framer-HRduY .framer-1yj9rds { padding: 80px 40px 80px 40px; } .framer-HRduY .framer-19rifjp { padding: 60px; } .framer-HRduY .framer-119pmzl-container { order: 0; }}\",\"@media (min-width: 631px) and (max-width: 809px) { .framer-HRduY.framer-1m6vnqu { width: 631px; } .framer-HRduY .framer-1av14yn { order: 1; padding: 0px 60px 40px 60px; } .framer-HRduY .framer-1yqx57i { padding: 0px 0px 80px 0px; width: 100%; } .framer-HRduY .framer-1gf1whq, .framer-HRduY .framer-2levg9, .framer-HRduY .framer-7dg0pu-container { order: 0; } .framer-HRduY .framer-m9ab6m, .framer-HRduY .framer-dx3joy { order: 1; } .framer-HRduY .framer-xke8i6 { order: 4; } .framer-HRduY .framer-gvn29a-container { height: var(--framer-aspect-ratio-supported, 288px); order: 3; } .framer-HRduY .framer-11z9w04 { height: var(--framer-aspect-ratio-supported, 336px); order: 2; } .framer-HRduY .framer-sw62k { padding: 60px 0px 0px 0px; } .framer-HRduY .framer-1he9fzy { padding: 0px 0px 12px 0px; } .framer-HRduY .framer-1pqumv8 { gap: 24px; grid-template-columns: repeat(2, minmax(50px, 1fr)); } .framer-HRduY .framer-x76w1q { height: 204px; } .framer-HRduY .framer-1dxqonk { padding: 32px 0px 0px 0px; } .framer-HRduY .framer-1xbjcxg { gap: 20px; padding: 0px 0px 40px 0px; } .framer-HRduY .framer-1q3s0c3 { height: var(--framer-aspect-ratio-supported, 155px); } .framer-HRduY .framer-12grlyk { order: 2; } .framer-HRduY .framer-1yj9rds { padding: 80px 60px 80px 60px; } .framer-HRduY .framer-19rifjp { padding: 60px; } .framer-HRduY .framer-1h0zsxh-container { width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-HRduY .framer-1pqumv8, .framer-HRduY .framer-1xbjcxg { gap: 0px; } .framer-HRduY .framer-1pqumv8 > *, .framer-HRduY .framer-1pqumv8 > :first-child, .framer-HRduY .framer-1pqumv8 > :last-child { margin: 0px; } .framer-HRduY .framer-1xbjcxg > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-HRduY .framer-1xbjcxg > :first-child { margin-left: 0px; } .framer-HRduY .framer-1xbjcxg > :last-child { margin-right: 0px; } }}\",\"@media (max-width: 630px) { .framer-HRduY.framer-1m6vnqu { width: 390px; } .framer-HRduY .framer-1av14yn { order: 1; padding: 0px 20px 80px 20px; } .framer-HRduY .framer-1yqx57i, .framer-HRduY .framer-1h0zsxh-container { width: 100%; } .framer-HRduY .framer-1gf1whq, .framer-HRduY .framer-1s51cp4-container { order: 0; } .framer-HRduY .framer-m9ab6m, .framer-HRduY .framer-1ccgd5q { order: 1; } .framer-HRduY .framer-xke8i6 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 24px; justify-content: flex-start; order: 4; } .framer-HRduY .framer-2levg9 { justify-content: flex-start; width: 100%; } .framer-HRduY .framer-vyxwg7 { height: var(--framer-aspect-ratio-supported, 45px); width: 45px; } .framer-HRduY .framer-gvn29a-container { height: var(--framer-aspect-ratio-supported, 197px); order: 3; } .framer-HRduY .framer-11z9w04 { height: var(--framer-aspect-ratio-supported, 230px); order: 2; } .framer-HRduY .framer-sw62k { padding: 60px 0px 120px 0px; } .framer-HRduY .framer-1he9fzy { padding: 0px 0px 12px 0px; } .framer-HRduY .framer-1pqumv8 { gap: 20px; grid-template-columns: repeat(2, minmax(50px, 1fr)); } .framer-HRduY .framer-1c7s0eo { height: 325px; } .framer-HRduY .framer-x76w1q { height: 152px; order: 0; } .framer-HRduY .framer-1dxqonk { padding: 32px 0px 0px 0px; } .framer-HRduY .framer-1xbjcxg { flex-direction: column; padding: 0px 0px 40px 0px; } .framer-HRduY .framer-1jpldpv { flex: none; gap: 20px; width: 100%; } .framer-HRduY .framer-1q3s0c3 { height: var(--framer-aspect-ratio-supported, 221px); } .framer-HRduY .framer-12grlyk { order: 2; } .framer-HRduY .framer-1yj9rds { padding: 40px 20px 50px 20px; } .framer-HRduY .framer-19rifjp { padding: 60px 20px 60px 20px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-HRduY .framer-xke8i6, .framer-HRduY .framer-1pqumv8, .framer-HRduY .framer-1xbjcxg, .framer-HRduY .framer-1jpldpv { gap: 0px; } .framer-HRduY .framer-xke8i6 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-HRduY .framer-xke8i6 > :first-child, .framer-HRduY .framer-1xbjcxg > :first-child, .framer-HRduY .framer-1jpldpv > :first-child { margin-top: 0px; } .framer-HRduY .framer-xke8i6 > :last-child, .framer-HRduY .framer-1xbjcxg > :last-child, .framer-HRduY .framer-1jpldpv > :last-child { margin-bottom: 0px; } .framer-HRduY .framer-1pqumv8 > *, .framer-HRduY .framer-1pqumv8 > :first-child, .framer-HRduY .framer-1pqumv8 > :last-child { margin: 0px; } .framer-HRduY .framer-1xbjcxg > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-HRduY .framer-1jpldpv > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 3929\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"teI_pEnfs\":{\"layout\":[\"fixed\",\"auto\"]},\"QO3D1f5Cg\":{\"layout\":[\"fixed\",\"auto\"]},\"tUZ0P9pDA\":{\"layout\":[\"fixed\",\"auto\"]},\"j3d5ov1DV\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"JTiWrRKpA\":{\"pattern\":\":JTiWrRKpA\",\"name\":\"this-section\"}}\n * @framerResponsiveScreen\n */const FramerNSiIibgYS=withCSS(Component,css,\"framer-HRduY\");export default FramerNSiIibgYS;FramerNSiIibgYS.displayName=\"Blog\";FramerNSiIibgYS.defaultProps={height:3929,width:1440};addFonts(FramerNSiIibgYS,[{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\"}]},...NavigationSimpleTopbarCenterFonts,...PhosphorFonts,...MaterialFonts,...YouTubeFonts,...IconoirFonts,...TranscrobationForBlogFonts,...ButtonFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts),...getFontsFromSharedStyle(sharedStyle11.fonts),...getFontsFromSharedStyle(sharedStyle12.fonts),...getFontsFromSharedStyle(sharedStyle13.fonts),...getFontsFromSharedStyle(sharedStyle14.fonts),...getFontsFromSharedStyle(sharedStyle15.fonts),...getFontsFromSharedStyle(sharedStyle16.fonts),...getFontsFromSharedStyle(sharedStyle17.fonts),...getFontsFromSharedStyle(sharedStyle18.fonts),...getFontsFromSharedStyle(sharedStyle19.fonts),...getFontsFromSharedStyle(sharedStyle20.fonts),...getFontsFromSharedStyle(sharedStyle21.fonts),...getFontsFromSharedStyle(sharedStyle22.fonts),...getFontsFromSharedStyle(sharedStyle23.fonts),...componentPresets.fonts?.[\"CpZHK_K6Q\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"CpZHK_K6Q\"]):[],...componentPresets.fonts?.[\"VeQAMWgHH\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"VeQAMWgHH\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerNSiIibgYS\",\"slots\":[],\"annotations\":{\"framerResponsiveScreen\":\"\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"teI_pEnfs\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QO3D1f5Cg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tUZ0P9pDA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"j3d5ov1DV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerScrollSections\":\"{\\\"JTiWrRKpA\\\":{\\\"pattern\\\":\\\":JTiWrRKpA\\\",\\\"name\\\":\\\"this-section\\\"}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"3929\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1440\",\"framerColorSyntax\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["PlayOptions", "ThumbnailOptions", "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", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "searchParams", "iframeProps", "u", "wrapperStyle", "videoStyle", "getThumbnailURL", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "res", "pre", "ext", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "NavigationSimpleTopbarCenterFonts", "getFonts", "nq3l9HDWx_default", "PhosphorFonts", "Icon", "MaterialFonts", "YouTubeFonts", "Youtube", "IconoirFonts", "TranscrobationForBlogFonts", "WyzII1e9o_default", "RichTextWithFX", "withFX", "RichText2", "MotionDivWithFX", "motion", "ButtonFonts", "OeyO6VcAn_default", "FooterFonts", "ESu3oqGXa_default", "NavigationSimpleTopbarCenterWithVariantAppearEffect", "withVariantAppearEffect", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "toResponsiveImage", "value", "toDateString", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "locale", "negate", "animation", "transition1", "animation1", "animation2", "transition2", "animation3", "QueryData", "query", "pageSize", "children", "paginatedQuery", "paginationInfo", "loadMore", "useLoadMorePaginatedQuery", "data", "useQueryData", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "ZP3gELwK7_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "Zqu_0nXnyaxiVGsARC", "sFxHfKTDK", "F2i1LnUTa", "uhGjpqvWe", "VUMCFRbL0", "hZm4mNzgI", "jhk8FiyWh", "tvuw9aEz1", "AM7Gu3i1W", "OGfqWuHMh", "Sj7fl86Zw", "TM5G3DgRB", "pekyPeqQM", "gVu633Jl6", "UwsOpwT5m", "S2q9WcIlK", "DwBobqdFr", "Yc1iGligW", "cg1ZPluxf", "oYneZrY8kmTrK0crfJ", "Sj7fl86ZwmTrK0crfJ", "oYneZrY8k", "sFxHfKTDKmTrK0crfJ", "GpuoaKAX2mTrK0crfJ", "L3AIKtaMx", "jhk8FiyWhmTrK0crfJ", "tvuw9aEz1mTrK0crfJ", "pJiiPe2VqmTrK0crfJ", "idmTrK0crfJ", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "elementId", "useRouteElementId", "ref1", "textContent", "enumToDisplayNameFunctions", "textContent1", "textContent2", "activeLocaleCode", "useLocaleCode", "textContent3", "visible", "visible1", "router", "useRouter", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "Container", "ComponentPresetsProvider", "Link", "x", "PropertyOverrides2", "getLoadingLazyAtYPosition", "Image2", "ChildrenCanSuspend", "collection", "l", "index", "textContent4", "textContent5", "PathVariablesContext", "ResolveLinks", "resolvedLinks", "css", "FramerNSiIibgYS", "withCSS", "NSiIibgYS_default", "addFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "__FramerMetadata__"]
}
